Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f0997bfe0d | ||
|
|
8b67dad456 | ||
|
|
53fdac1038 | ||
|
|
534a7602e6 | ||
|
|
30f329fe43 | ||
|
|
4ce39951a9 | ||
|
|
0e9eb34626 | ||
|
|
0ff299c425 | ||
|
|
6366258ce9 | ||
|
|
bca69a026e | ||
|
|
adc26ea42a | ||
|
|
b16e8d84d7 | ||
|
|
5ee405d5a0 | ||
|
|
a5b9470636 | ||
|
|
16a3d54cb6 | ||
|
|
9677dcd978 | ||
|
|
17ea42f918 | ||
|
|
bd8915918d | ||
|
|
91db6773a0 | ||
|
|
f50680b61f | ||
|
|
3fb5d33333 | ||
|
|
f70bbb2660 | ||
|
|
589c1ac9bb | ||
|
|
d458fa1b89 | ||
|
|
dc2c99434f | ||
|
|
bbf36562d0 | ||
|
|
c458edf3e4 | ||
|
|
99c2aaef7a | ||
|
|
921096ca10 | ||
|
|
b0fbd6fa36 | ||
|
|
21bd67c44f | ||
|
|
4f142985a2 | ||
|
|
bfa89b44bc | ||
|
|
eba876e72b | ||
|
|
f1a7413e20 |
@@ -10,6 +10,8 @@ LineLength:
|
||||
Max: 120
|
||||
MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Metrics/AbcSize:
|
||||
@@ -19,6 +21,8 @@ Metrics/BlockLength:
|
||||
- 'spec/**/*'
|
||||
Metrics/ClassLength:
|
||||
Max: 150
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 8
|
||||
Style/Documentation:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM ruby:2.6.2-alpine3.9 AS builder
|
||||
FROM ruby:2.6.3-alpine AS builder
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
ARG BUNDLER_ARGS="--jobs=8 --without test development"
|
||||
@@ -19,7 +19,7 @@ RUN rake install --trace
|
||||
RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
|
||||
FROM ruby:2.6.2-alpine3.9
|
||||
FROM ruby:2.6.3-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
<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://codeclimate.com/github/wpscanteam/wpscan" target="_blank"><img src="https://codeclimate.com/github/wpscanteam/wpscan/badges/gpa.svg"></a>
|
||||
<a href="https://www.patreon.com/wpscan" target="_blank"><img src="https://img.shields.io/badge/patreon-donate-green.svg"></a>
|
||||
</p>
|
||||
|
||||
# INSTALL
|
||||
|
||||
@@ -7,15 +7,6 @@ module WPScan
|
||||
module Controller
|
||||
# Enumeration Controller
|
||||
class Enumeration < CMSScanner::Controller::Base
|
||||
def before_scan
|
||||
DB::DynamicFinders::Plugin.create_versions_finders
|
||||
DB::DynamicFinders::Theme.create_versions_finders
|
||||
|
||||
# Force the Garbage Collector to run due to the above method being
|
||||
# quite heavy in objects allocation
|
||||
GC.start
|
||||
end
|
||||
|
||||
def run
|
||||
enum = ParsedCli.enumerate || {}
|
||||
|
||||
|
||||
@@ -11,7 +11,6 @@ module WPScan
|
||||
end
|
||||
|
||||
# @return [ Array<OptParseValidator::OptBase> ]
|
||||
# rubocop:disable Metrics/MethodLength
|
||||
def cli_enum_choices
|
||||
[
|
||||
OptMultiChoices.new(
|
||||
@@ -45,7 +44,6 @@ module WPScan
|
||||
)
|
||||
]
|
||||
end
|
||||
# rubocop:enable Metrics/MethodLength
|
||||
|
||||
# @return [ Array<OptParseValidator::OptBase> ]
|
||||
def cli_plugins_opts
|
||||
@@ -67,6 +65,11 @@ module WPScan
|
||||
'Use the supplied mode to check plugins versions instead of the --detection-mode ' \
|
||||
'or --plugins-detection modes.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :mixed
|
||||
),
|
||||
OptInteger.new(
|
||||
['--plugins-threshold THRESHOLD',
|
||||
'Raise an error when the number of detected plugins via known locations reaches the threshold. ' \
|
||||
'Set to 0 to ignore the threshold.'], default: 100
|
||||
)
|
||||
]
|
||||
end
|
||||
@@ -91,6 +94,11 @@ module WPScan
|
||||
'Use the supplied mode to check themes versions instead of the --detection-mode ' \
|
||||
'or --themes-detection modes.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
),
|
||||
OptInteger.new(
|
||||
['--themes-threshold THRESHOLD',
|
||||
'Raise an error when the number of detected themes via known locations reaches the threshold. ' \
|
||||
'Set to 0 to ignore the threshold.'], default: 20
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -62,6 +62,7 @@ module WPScan
|
||||
def enum_plugins
|
||||
opts = default_opts('plugins').merge(
|
||||
list: plugins_list_from_opts(ParsedCli.options),
|
||||
threshold: ParsedCli.plugins_threshold,
|
||||
sort: true
|
||||
)
|
||||
|
||||
@@ -108,6 +109,7 @@ module WPScan
|
||||
def enum_themes
|
||||
opts = default_opts('themes').merge(
|
||||
list: themes_list_from_opts(ParsedCli.options),
|
||||
threshold: ParsedCli.themes_threshold,
|
||||
sort: true
|
||||
)
|
||||
|
||||
|
||||
@@ -20,9 +20,9 @@ module WPScan
|
||||
|
||||
enumerate(potential_urls(opts), opts.merge(check_full_response: 200)) do |res|
|
||||
if res.effective_url.end_with?('.zip')
|
||||
next unless res.headers['Content-Type'] =~ %r{\Aapplication/zip}i
|
||||
next unless %r{\Aapplication/zip}i.match?(res.headers['Content-Type'])
|
||||
else
|
||||
next unless res.body =~ SQL_PATTERN
|
||||
next unless SQL_PATTERN.match?(res.body)
|
||||
end
|
||||
|
||||
found << Model::DbExport.new(res.request.url, found_by: DIRECT_ACCESS, confidence: 100)
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
def aggressive(_opts = {})
|
||||
path = 'installer-log.txt'
|
||||
|
||||
return unless target.head_and_get(path).body =~ /DUPLICATOR INSTALL-LOG/
|
||||
return unless /DUPLICATOR INSTALL-LOG/.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::DuplicatorInstallerLog.new(
|
||||
target.url(path),
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
pattern = %r{#{target.content_dir}/mu\-plugins/}i
|
||||
|
||||
target.in_scope_uris(target.homepage_res) do |uri|
|
||||
next unless uri.path =~ pattern
|
||||
next unless uri.path&.match?(pattern)
|
||||
|
||||
url = target.url('wp-content/mu-plugins/')
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
path = 'wp-content/uploads/dump.sql'
|
||||
res = target.head_and_get(path, [200], get: { headers: { 'Range' => 'bytes=0-3000' } })
|
||||
|
||||
return unless res.body =~ SQL_PATTERN
|
||||
return unless SQL_PATTERN.match?(res.body)
|
||||
|
||||
Model::UploadSQLDump.new(
|
||||
target.url(path),
|
||||
|
||||
@@ -13,25 +13,15 @@ module WPScan
|
||||
def initialize(plugin)
|
||||
finders << PluginVersion::Readme.new(plugin)
|
||||
|
||||
load_specific_finders(plugin)
|
||||
create_and_load_dynamic_versions_finders(plugin)
|
||||
end
|
||||
|
||||
# Load the finders associated with the plugin
|
||||
# Create the dynamic version finders related to the plugin and register them
|
||||
#
|
||||
# @param [ Model::Plugin ] plugin
|
||||
def load_specific_finders(plugin)
|
||||
module_name = plugin.classify
|
||||
|
||||
return unless Finders::PluginVersion.constants.include?(module_name)
|
||||
|
||||
mod = Finders::PluginVersion.const_get(module_name)
|
||||
|
||||
mod.constants.each do |constant|
|
||||
c = mod.const_get(constant)
|
||||
|
||||
next unless c.is_a?(Class)
|
||||
|
||||
finders << c.new(plugin)
|
||||
def create_and_load_dynamic_versions_finders(plugin)
|
||||
DB::DynamicFinders::Plugin.create_versions_finders(plugin.slug).each do |finder|
|
||||
finders << finder.new(plugin)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
# The target(plugin)#readme_url can't be used directly here
|
||||
# as if the --detection-mode is passive, it will always return nil
|
||||
Model::WpItem::READMES.each do |file|
|
||||
target.potential_readme_filenames.each do |file|
|
||||
res = target.head_and_get(file)
|
||||
|
||||
next unless res.code == 200 && !(numbers = version_numbers(res.body)).empty?
|
||||
@@ -52,7 +52,7 @@ module WPScan
|
||||
|
||||
number = Regexp.last_match[1]
|
||||
|
||||
number if number =~ /[0-9]+/
|
||||
number if /[0-9]+/.match?(number)
|
||||
end
|
||||
|
||||
# @param [ String ] body
|
||||
|
||||
@@ -15,7 +15,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Plugin ] The detected plugin in the response, related to the config
|
||||
def process_response(opts, response, slug, klass, config)
|
||||
return unless response.body =~ config['pattern']
|
||||
return unless response.body&.match?(config['pattern'])
|
||||
|
||||
Model::Plugin.new(
|
||||
slug,
|
||||
|
||||
@@ -18,7 +18,7 @@ module WPScan
|
||||
response.html.xpath(config['xpath'] || '//comment()').each do |node|
|
||||
comment = node.text.to_s.strip
|
||||
|
||||
next unless comment =~ config['pattern']
|
||||
next unless comment&.match?(config['pattern'])
|
||||
|
||||
return Model::Plugin.new(
|
||||
slug,
|
||||
|
||||
@@ -21,6 +21,8 @@ module WPScan
|
||||
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: true)) do |_res, slug|
|
||||
found << Model::Plugin.new(slug, target, opts.merge(found_by: found_by, confidence: 80))
|
||||
|
||||
raise Error::PluginsThresholdReached if opts[:threshold].positive? && found.size >= opts[:threshold]
|
||||
end
|
||||
|
||||
found
|
||||
|
||||
@@ -16,25 +16,15 @@ module WPScan
|
||||
ThemeVersion::Style.new(theme) <<
|
||||
ThemeVersion::WooFrameworkMetaGenerator.new(theme)
|
||||
|
||||
load_specific_finders(theme)
|
||||
create_and_load_dynamic_versions_finders(theme)
|
||||
end
|
||||
|
||||
# Load the finders associated with the theme
|
||||
# Create the dynamic version finders related to the theme and register them
|
||||
#
|
||||
# @param [ Model::Theme ] theme
|
||||
def load_specific_finders(theme)
|
||||
module_name = theme.classify
|
||||
|
||||
return unless Finders::ThemeVersion.constants.include?(module_name)
|
||||
|
||||
mod = Finders::ThemeVersion.const_get(module_name)
|
||||
|
||||
mod.constants.each do |constant|
|
||||
c = mod.const_get(constant)
|
||||
|
||||
next unless c.is_a?(Class)
|
||||
|
||||
finders << c.new(theme)
|
||||
def create_and_load_dynamic_versions_finders(theme)
|
||||
DB::DynamicFinders::Theme.create_versions_finders(theme.slug).each do |finder|
|
||||
finders << finder.new(theme)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -21,6 +21,8 @@ module WPScan
|
||||
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: true)) do |_res, slug|
|
||||
found << Model::Theme.new(slug, target, opts.merge(found_by: found_by, confidence: 80))
|
||||
|
||||
raise Error::ThemesThresholdReached if opts[:threshold].positive? && found.size >= opts[:threshold]
|
||||
end
|
||||
|
||||
found
|
||||
|
||||
@@ -22,7 +22,7 @@ module WPScan
|
||||
found = []
|
||||
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: 400)) do |res|
|
||||
next unless res.body =~ /no image specified/i
|
||||
next unless /no image specified/i.match?(res.body)
|
||||
|
||||
found << Model::Timthumb.new(res.request.url, opts.merge(found_by: found_by, confidence: 100))
|
||||
end
|
||||
|
||||
@@ -24,7 +24,7 @@ module WPScan
|
||||
|
||||
return found if error.empty? # Protection plugin / error disabled
|
||||
|
||||
next unless error =~ /The password you entered for the username|Incorrect Password/i
|
||||
next unless /The password you entered for the username|Incorrect Password/i.match?(error)
|
||||
|
||||
found << Model::User.new(username, found_by: found_by, confidence: 100)
|
||||
end
|
||||
|
||||
@@ -28,6 +28,11 @@ module WPScan
|
||||
|
||||
@version
|
||||
end
|
||||
|
||||
# @return [ Array<String> ]
|
||||
def potential_readme_filenames
|
||||
@potential_readme_filenames ||= [*(DB::DynamicFinders::Plugin.df_data.dig(slug, 'Readme', 'path') || super)]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -9,6 +9,7 @@ module WPScan
|
||||
include CMSScanner::Target::Platform::PHP
|
||||
include CMSScanner::Target::Server::Generic
|
||||
|
||||
# Most common readme filenames, based on checking all public plugins and themes.
|
||||
READMES = %w[readme.txt README.txt README.md readme.md Readme.txt].freeze
|
||||
|
||||
attr_reader :uri, :slug, :detection_opts, :version_detection_opts, :blog, :path_from_blog, :db_data
|
||||
@@ -117,7 +118,7 @@ module WPScan
|
||||
|
||||
return @readme_url unless @readme_url.nil?
|
||||
|
||||
READMES.each do |path|
|
||||
potential_readme_filenames.each do |path|
|
||||
t_url = url(path)
|
||||
|
||||
return @readme_url = t_url if Browser.forge_request(t_url, blog.head_or_get_params).run.code == 200
|
||||
@@ -126,6 +127,10 @@ module WPScan
|
||||
@readme_url = false
|
||||
end
|
||||
|
||||
def potential_readme_filenames
|
||||
@potential_readme_filenames ||= READMES
|
||||
end
|
||||
|
||||
# @param [ String ] path
|
||||
# @param [ Hash ] params The request params
|
||||
#
|
||||
|
||||
@@ -5,18 +5,19 @@ module WPScan
|
||||
module DynamicFinders
|
||||
class Base
|
||||
# @return [ String ]
|
||||
def self.db_file
|
||||
@db_file ||= DB_DIR.join('dynamic_finders.yml').to_s
|
||||
def self.df_file
|
||||
@df_file ||= DB_DIR.join('dynamic_finders.yml').to_s
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.db_data
|
||||
# true allows aliases to be loaded
|
||||
@db_data ||= YAML.safe_load(File.read(db_file), [Regexp], [], true)
|
||||
def self.all_df_data
|
||||
@all_df_data ||= YAML.safe_load(File.read(df_file), [Regexp])
|
||||
end
|
||||
|
||||
# @return [ Array<Symbol> ]
|
||||
def self.allowed_classes
|
||||
# The Readme is not put in there as it's not a Real DF, but rather using the DF system
|
||||
# to get the list of potential filenames for a given slug
|
||||
@allowed_classes ||= %i[Comment Xpath HeaderPattern BodyPattern JavascriptVar QueryParameter ConfigParser]
|
||||
end
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@ module WPScan
|
||||
module DynamicFinders
|
||||
class Plugin < Base
|
||||
# @return [ Hash ]
|
||||
def self.db_data
|
||||
@db_data ||= super['plugins'] || {}
|
||||
def self.df_data
|
||||
@df_data ||= all_df_data['plugins'] || {}
|
||||
end
|
||||
|
||||
def self.version_finder_module
|
||||
@@ -21,7 +21,7 @@ module WPScan
|
||||
|
||||
return configs unless allowed_classes.include?(finder_class)
|
||||
|
||||
db_data.each do |slug, finders|
|
||||
df_data.each do |slug, finders|
|
||||
# Quite sure better can be done with some kind of logic statement in the select
|
||||
fs = if aggressive
|
||||
finders.reject { |_f, c| c['path'].nil? }
|
||||
@@ -48,7 +48,7 @@ module WPScan
|
||||
|
||||
@versions_finders_configs = {}
|
||||
|
||||
db_data.each do |slug, finders|
|
||||
df_data.each do |slug, finders|
|
||||
finders.each do |finder_name, config|
|
||||
next unless config.key?('version')
|
||||
|
||||
@@ -73,23 +73,33 @@ module WPScan
|
||||
version_finder_module.const_get(constant_name)
|
||||
end
|
||||
|
||||
def self.create_versions_finders
|
||||
versions_finders_configs.each do |slug, finders|
|
||||
mod = maybe_create_module(slug)
|
||||
# Create the dynamic finders related to the given slug, and return the created classes
|
||||
#
|
||||
# @param [ String ] slug
|
||||
#
|
||||
# @return [ Array<Class> ] The created classes
|
||||
def self.create_versions_finders(slug)
|
||||
created = []
|
||||
mod = maybe_create_module(slug)
|
||||
|
||||
finders.each do |finder_class, config|
|
||||
klass = config['class'] || finder_class
|
||||
versions_finders_configs[slug]&.each do |finder_class, config|
|
||||
klass = config['class'] || finder_class
|
||||
|
||||
# Instead of raising exceptions, skip unallowed/already defined finders
|
||||
# So that, when new DF configs are put in the .yml
|
||||
# users with old version of WPScan will still be able to scan blogs
|
||||
# when updating the DB but not the tool
|
||||
next if mod.constants.include?(finder_class.to_sym) ||
|
||||
!allowed_classes.include?(klass.to_sym)
|
||||
# Instead of raising exceptions, skip unallowed/already defined finders
|
||||
# So that, when new DF configs are put in the .yml
|
||||
# users with old version of WPScan will still be able to scan blogs
|
||||
# when updating the DB but not the tool
|
||||
|
||||
version_finder_super_class(klass).create_child_class(mod, finder_class.to_sym, config)
|
||||
end
|
||||
next unless allowed_classes.include?(klass.to_sym)
|
||||
|
||||
created << if mod.constants.include?(finder_class.to_sym)
|
||||
mod.const_get(finder_class.to_sym)
|
||||
else
|
||||
version_finder_super_class(klass).create_child_class(mod, finder_class.to_sym, config)
|
||||
end
|
||||
end
|
||||
|
||||
created
|
||||
end
|
||||
|
||||
# The idea here would be to check if the class exist in
|
||||
|
||||
@@ -5,8 +5,8 @@ module WPScan
|
||||
module DynamicFinders
|
||||
class Theme < Plugin
|
||||
# @return [ Hash ]
|
||||
def self.db_data
|
||||
@db_data ||= super['themes'] || {}
|
||||
def self.df_data
|
||||
@df_data ||= all_df_data['themes'] || {}
|
||||
end
|
||||
|
||||
def self.version_finder_module
|
||||
|
||||
@@ -5,8 +5,8 @@ module WPScan
|
||||
module DynamicFinders
|
||||
class Wordpress < Base
|
||||
# @return [ Hash ]
|
||||
def self.db_data
|
||||
@db_data ||= super['wordpress'] || {}
|
||||
def self.df_data
|
||||
@df_data ||= all_df_data['wordpress'] || {}
|
||||
end
|
||||
|
||||
# @return [ Constant ]
|
||||
@@ -30,9 +30,9 @@ module WPScan
|
||||
return configs unless allowed_classes.include?(finder_class)
|
||||
|
||||
finders = if aggressive
|
||||
db_data.reject { |_f, c| c['path'].nil? }
|
||||
df_data.reject { |_f, c| c['path'].nil? }
|
||||
else
|
||||
db_data.select { |_f, c| c['path'].nil? }
|
||||
df_data.select { |_f, c| c['path'].nil? }
|
||||
end
|
||||
|
||||
finders.each do |finder_name, config|
|
||||
@@ -48,7 +48,7 @@ module WPScan
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.versions_finders_configs
|
||||
@versions_finders_configs ||= db_data.select { |_finder_name, config| config.key?('version') }
|
||||
@versions_finders_configs ||= df_data.select { |_finder_name, config| config.key?('version') }
|
||||
end
|
||||
|
||||
def self.create_versions_finders
|
||||
|
||||
@@ -64,11 +64,12 @@ module WPScan
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
{
|
||||
@request_params ||= {
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
cache_ttl: 0
|
||||
cache_ttl: 0,
|
||||
headers: { 'User-Agent' => Browser.instance.default_user_agent, 'Referer' => nil }
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@ module WPScan
|
||||
end
|
||||
end
|
||||
|
||||
require_relative 'errors/enumeration'
|
||||
require_relative 'errors/http'
|
||||
require_relative 'errors/update'
|
||||
require_relative 'errors/wordpress'
|
||||
|
||||
21
lib/wpscan/errors/enumeration.rb
Normal file
21
lib/wpscan/errors/enumeration.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Error
|
||||
class PluginsThresholdReached < Standard
|
||||
def to_s
|
||||
"The number of plugins detected reached the threshold of #{ParsedCli.plugins_threshold} " \
|
||||
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
|
||||
'option to ignore the bad responses.'
|
||||
end
|
||||
end
|
||||
|
||||
class ThemesThresholdReached < Standard
|
||||
def to_s
|
||||
"The number of themes detected reached the threshold of #{ParsedCli.themes_threshold} " \
|
||||
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
|
||||
'option to ignore the bad responses.'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -6,13 +6,15 @@ rescue StandardError => e
|
||||
raise "JSON parsing error in #{file} #{e}"
|
||||
end
|
||||
|
||||
# @return [ Symbol ]
|
||||
# Sanitize and classify a slug
|
||||
# @note As a class can not start with a digit or underscore, a D_ is
|
||||
# put as a prefix in such case. Ugly but well :x
|
||||
# Not only used to classify slugs though, but Dynamic Finder names as well
|
||||
# put as a prefix in such case. Ugly but well :x
|
||||
# Not only used to classify slugs though, but Dynamic Finder names as well
|
||||
#
|
||||
# @return [ Symbol ]
|
||||
def classify_slug(slug)
|
||||
classified = slug.to_s.tr('-', '_').camelize.to_s
|
||||
classified = "D_#{classified}" if classified[0] =~ /\d/
|
||||
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/\-{1,}/, '_').camelize.to_s
|
||||
classified = "D_#{classified}" if /\d/.match?(classified[0])
|
||||
|
||||
classified.to_sym
|
||||
end
|
||||
|
||||
@@ -29,7 +29,7 @@ module WPScan
|
||||
end
|
||||
|
||||
homepage_res.html.css('meta[name="generator"]').each do |node|
|
||||
return true if node['content'] =~ /wordpress/i
|
||||
return true if /wordpress/i.match?(node['content'])
|
||||
end
|
||||
|
||||
return true unless comments_from_page(/wordpress/i, homepage_res).empty?
|
||||
|
||||
@@ -99,20 +99,19 @@ module WPScan
|
||||
|
||||
# @return [ String, False ] String of the sub_dir found, false otherwise
|
||||
# @note: nil can not be returned here, otherwise if there is no sub_dir
|
||||
# the check would be done each time
|
||||
# the check would be done each time, which would make enumeration of
|
||||
# long list of items very slow to generate
|
||||
def sub_dir
|
||||
unless @sub_dir
|
||||
# url_pattern is from CMSScanner::Target
|
||||
pattern = %r{#{url_pattern}(.+?)/(?:xmlrpc\.php|wp\-includes/)}i
|
||||
return @sub_dir unless @sub_dir.nil?
|
||||
|
||||
in_scope_uris(homepage_res) do |uri|
|
||||
return @sub_dir = Regexp.last_match[1] if uri.to_s.match(pattern)
|
||||
end
|
||||
# url_pattern is from CMSScanner::Target
|
||||
pattern = %r{#{url_pattern}(.+?)/(?:xmlrpc\.php|wp\-includes/)}i
|
||||
|
||||
@sub_dir = false
|
||||
in_scope_uris(homepage_res) do |uri|
|
||||
return @sub_dir = Regexp.last_match[1] if uri.to_s.match(pattern)
|
||||
end
|
||||
|
||||
@sub_dir
|
||||
@sub_dir = false
|
||||
end
|
||||
|
||||
# Override of the WebSite#url to consider the custom WP directories
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.5.5'
|
||||
VERSION = '3.6.2'
|
||||
end
|
||||
|
||||
@@ -70,8 +70,8 @@ describe WPScan::Controller::Enumeration do
|
||||
it 'contains the correct options' do
|
||||
expect(controller.cli_options.map(&:to_sym)).to eql(
|
||||
%i[enumerate exclude_content_based
|
||||
plugins_list plugins_detection plugins_version_all plugins_version_detection
|
||||
themes_list themes_detection themes_version_all themes_version_detection
|
||||
plugins_list plugins_detection plugins_version_all plugins_version_detection plugins_threshold
|
||||
themes_list themes_detection themes_version_all themes_version_detection themes_threshold
|
||||
timthumbs_list timthumbs_detection
|
||||
config_backups_list config_backups_detection
|
||||
db_exports_list db_exports_detection
|
||||
@@ -102,15 +102,6 @@ describe WPScan::Controller::Enumeration do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#before_scan' do
|
||||
it 'creates the Dynamic Finders' do
|
||||
expect(WPScan::DB::DynamicFinders::Plugin).to receive(:create_versions_finders)
|
||||
expect(WPScan::DB::DynamicFinders::Theme).to receive(:create_versions_finders)
|
||||
|
||||
controller.before_scan
|
||||
end
|
||||
end
|
||||
|
||||
describe '#run' do
|
||||
context 'when no :enumerate' do
|
||||
before do
|
||||
|
||||
@@ -1,8 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# If this file is tested alone (rspec path-to-this-file), then there will be an error about
|
||||
# constants not being intilialized. This is due to the Dynamic Finders.
|
||||
|
||||
describe WPScan::Finders::PluginVersion::Base do
|
||||
subject(:plugin_version) { described_class.new(plugin) }
|
||||
let(:plugin) { WPScan::Model::Plugin.new(slug, target) }
|
||||
@@ -15,7 +12,7 @@ describe WPScan::Finders::PluginVersion::Base do
|
||||
expect(plugin_version.finders.map { |f| f.class.to_s.demodulize }).to match_array @expected
|
||||
end
|
||||
|
||||
context 'when no related specific finders' do
|
||||
context 'when no related dynamic finders' do
|
||||
let(:slug) { 'spec' }
|
||||
|
||||
it 'contains the default finders' do
|
||||
@@ -25,19 +22,13 @@ describe WPScan::Finders::PluginVersion::Base do
|
||||
|
||||
# Dynamic Version Finders are not tested here, they are in
|
||||
# spec/lib/finders/dynamic_finder/plugin_versions_spec
|
||||
context 'when specific finders' do
|
||||
let(:specific) do
|
||||
{
|
||||
# None so far
|
||||
}
|
||||
end
|
||||
|
||||
context 'when dynamic finders' do
|
||||
WPScan::DB::DynamicFinders::Plugin.versions_finders_configs.each do |plugin_slug, configs|
|
||||
context "when #{plugin_slug} plugin" do
|
||||
let(:slug) { plugin_slug }
|
||||
|
||||
it 'contains the expected finders (default + specific + the dynamic ones)' do
|
||||
@expected = default_finders + [*specific[plugin_slug]] + configs.keys
|
||||
it 'contains the expected finders (default + the dynamic ones)' do
|
||||
@expected = default_finders + configs.keys
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -13,20 +13,21 @@ describe WPScan::Finders::ThemeVersion::Base do
|
||||
expect(theme_version.finders.map { |f| f.class.to_s.demodulize }).to eql @expected
|
||||
end
|
||||
|
||||
context 'when no related specific finders' do
|
||||
context 'when no related dynamic finders' do
|
||||
it 'contains the default finders' do
|
||||
@expected = default_finders
|
||||
end
|
||||
end
|
||||
|
||||
context 'when specific finders' do
|
||||
{
|
||||
}.each do |theme_slug, specific_finders|
|
||||
# Dynamic Version Finders are not tested here, they are in
|
||||
# spec/lib/finders/dynamic_finder/theme_versions_spec
|
||||
context 'when dynamic finders' do
|
||||
WPScan::DB::DynamicFinders::Theme.versions_finders_configs.each do |theme_slug, configs|
|
||||
context "when #{theme_slug} theme" do
|
||||
let(:slug) { theme_slug }
|
||||
|
||||
it 'contains the expected finders' do
|
||||
@expected = default_finders + specific_finders
|
||||
it 'contains the expected finders (default + the dynamic ones)' do
|
||||
@expected = default_finders + configs.keys
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -60,6 +60,26 @@ describe WPScan::Model::Plugin do
|
||||
end
|
||||
end
|
||||
|
||||
describe 'potential_readme_filenames' do
|
||||
context 'when not set in the DF file' do
|
||||
its(:potential_readme_filenames) { should eql described_class::READMES }
|
||||
end
|
||||
|
||||
context 'when set in the DF file' do
|
||||
context 'as a string' do
|
||||
let(:slug) { 'photoblocks-grid-gallery' }
|
||||
|
||||
its(:potential_readme_filenames) { should eql %w[README.txt] }
|
||||
end
|
||||
|
||||
context 'as an array' do
|
||||
let(:slug) { 'customerlabs-actionrecorder' }
|
||||
|
||||
its(:potential_readme_filenames) { should eql %w[Readme.txt Readme.md] }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#latest_version, #last_updated, #popular' do
|
||||
context 'when none' do
|
||||
let(:slug) { 'vulnerable-not-popular' }
|
||||
|
||||
5816
spec/fixtures/db/dynamic_finders.yml
vendored
5816
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1094
spec/fixtures/dynamic_finders/expected.yml
vendored
1094
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2019 Jörn Lund
|
||||
# This file is distributed under the same license as the ACF Dropzone plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ACF Dropzone 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-dropzone\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-04T10:29:43+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: acf-dropzone\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "ACF Dropzone"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/mcguffin/acf-dropzone"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Drag and drop file upload for ACF-Fields."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jörn Lund"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/mcguffin"
|
||||
msgstr ""
|
||||
|
||||
#: include/AcfDropzone/Compat/ACF.php:47
|
||||
#: tmp/svn/tags/1.0.0/include/AcfDropzone/Compat/ACF.php:47
|
||||
#: tmp/svn/trunk/include/AcfDropzone/Compat/ACF.php:47
|
||||
#: tmp/git/include/AcfDropzone/Compat/ACF.php:47
|
||||
msgid "Enable Dropzone"
|
||||
msgstr ""
|
||||
|
||||
#: include/AcfDropzone/Compat/ACF.php:103
|
||||
#: tmp/svn/tags/1.0.0/include/AcfDropzone/Compat/ACF.php:103
|
||||
#: tmp/svn/trunk/include/AcfDropzone/Compat/ACF.php:103
|
||||
#: tmp/git/include/AcfDropzone/Compat/ACF.php:103
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: include/AcfDropzone/Compat/ACF.php:107
|
||||
#: tmp/svn/tags/1.0.0/include/AcfDropzone/Compat/ACF.php:107
|
||||
#: tmp/svn/trunk/include/AcfDropzone/Compat/ACF.php:107
|
||||
#: tmp/git/include/AcfDropzone/Compat/ACF.php:107
|
||||
msgid "Drop files here"
|
||||
msgstr ""
|
||||
|
||||
#: include/AcfDropzone/Compat/ACF.php:108
|
||||
#: tmp/svn/tags/1.0.0/include/AcfDropzone/Compat/ACF.php:108
|
||||
#: tmp/svn/trunk/include/AcfDropzone/Compat/ACF.php:108
|
||||
#: tmp/git/include/AcfDropzone/Compat/ACF.php:108
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,225 @@
|
||||
# Copyright (C) 2019 Jörn Lund
|
||||
# This file is distributed under the same license as the ACF OpenStreetMap Field plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ACF OpenStreetMap Field 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-field-openstreetmap\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-05T08:37:19+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: acf-openstreetmap-field\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "ACF OpenStreetMap Field"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/acf-openstreetmap-field"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A configurable OpenStreetMap Field for ACF."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jörn Lund"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/mcguffin"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
msgid "OpenStreetMap Settings"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:51
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:51
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:51
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:37
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:51
|
||||
msgid "OpenStreetMap"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:51
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:51
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:51
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:51
|
||||
msgid "acf-openstreetmap-field Settings"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:57
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:57
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:57
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:57
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:86
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:86
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:86
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:86
|
||||
msgid "Access Tokens"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:139
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:139
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:139
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Settings/SettingsOpenStreetMap.php:139
|
||||
msgid "Enter Access Tokens for various Map Tile providers."
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:125
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:125
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:125
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:125
|
||||
msgid "Raw Data"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:126
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:126
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:126
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:126
|
||||
msgid "Leaflet JS"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:127
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:127
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:127
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:127
|
||||
msgid "iFrame (OpenStreetMap.org)"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:146
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:146
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:146
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:146
|
||||
msgid "Map Appearance"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:147
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:147
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:147
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:147
|
||||
msgid "Set zoom, center and select layers being displayed."
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:167
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:167
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:167
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:167
|
||||
msgid "Map Position"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:168
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:179
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:168
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:179
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:168
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:179
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:168
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:179
|
||||
msgid "Center the initial map"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:171
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:171
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:171
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:171
|
||||
msgid "lat"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:178
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:178
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:178
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:178
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:182
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:182
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:182
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:182
|
||||
msgid "lng"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:190
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:190
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:190
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:190
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:191
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:191
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:191
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:191
|
||||
msgid "Set the initial zoom level"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:196
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:196
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:196
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:196
|
||||
msgid "zoom"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:203
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:203
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:203
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:203
|
||||
msgid "Allow layer selection"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:213
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:213
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:213
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:213
|
||||
msgid "Customise the map height"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:222
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:222
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:222
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:222
|
||||
msgid "Max. number of Markers"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:223
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:223
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:223
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:223
|
||||
msgid "Leave empty for infinite markers"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:380
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:380
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:380
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:380
|
||||
msgid "Locate Marker"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:407
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:407
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:407
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:407
|
||||
msgid "Remove Marker"
|
||||
msgstr ""
|
||||
|
||||
#: include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:734
|
||||
#: tmp/svn/tags/1.0.0/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:734
|
||||
#: tmp/svn/trunk/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:734
|
||||
#: tmp/git/include/ACFFieldOpenstreetmap/Field/OpenStreetMap.php:734
|
||||
msgid "View Larger Map"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,238 @@
|
||||
# Copyright (C) 2019 Palbo Capello
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Custom Types for Divi 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/advanced-custom-types-divi\n"
|
||||
"POT-Creation-Date: 2019-06-29 00:00:14+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: advanced-custom-types-divi.php:32
|
||||
msgid ""
|
||||
"Advanced Custom Types for Divi was deactivated because <span "
|
||||
"style='font-weight: bold;'>ACT for Divi PRO</span> is active"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-act-divi.php:266
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-act-divi.php:267
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:15
|
||||
msgid "ACT Post Type Grid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:81
|
||||
msgid "View more button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:116
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:124
|
||||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:127
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:153
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:157
|
||||
msgid "Query"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:165
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:339
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:169
|
||||
msgid "Card"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:182
|
||||
msgid "Show title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:185
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:201
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:233
|
||||
msgid "Toggle whether mushroom will be added to the pizza."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:189
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:205
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:237
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:396
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:190
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:206
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:238
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:397
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:198
|
||||
msgid "Show thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:213
|
||||
msgid "Thumbnail size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:218
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:250
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:269
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:343
|
||||
msgid "Content entered here will appear inside the module."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:230
|
||||
msgid "Show content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:245
|
||||
msgid "Content length"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:265
|
||||
msgid "Post type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:276
|
||||
msgid "Posts limit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:279
|
||||
msgid "Posts limit."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:286
|
||||
msgid "Posts offset"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:289
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:301
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:313
|
||||
msgid "Posts offset."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:296
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:308
|
||||
msgid "Order by"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:323
|
||||
msgid "View more text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:326
|
||||
msgid "Post button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:352
|
||||
msgid "Heading Level"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:356
|
||||
msgid "H1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:357
|
||||
msgid "H2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:358
|
||||
msgid "H3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:359
|
||||
msgid "H4"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:360
|
||||
msgid "H5"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:361
|
||||
msgid "H6"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:371
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:375
|
||||
msgid "1 Column"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:376
|
||||
msgid "2 Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:377
|
||||
msgid "3 Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:378
|
||||
msgid "4 Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:389
|
||||
msgid "Card inner padding"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/ACTPostTypeGrid/ACTPostTypeGrid.php:392
|
||||
msgid "Card inner padding."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Advanced Custom Types for Divi"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.advancedcustomtypes.io"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Advanced custom types for Divi theme and Divi builder."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Palbo Capello"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://capellopablo.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,231 @@
|
||||
# Copyright (C) 2019 Idenovasi
|
||||
# This file is distributed under the same license as the Advanced Random Posts Widget package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Random Posts Widget 2.2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://idenovasi.com/contact/\n"
|
||||
"POT-Creation-Date: 2019-03-07 16:09:37+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Idenovasi\n"
|
||||
"Language-Team: Idenovasi\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-Language: English\n"
|
||||
"X-Poedit-Country: UNITED STATES\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: .\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-Textdomain-Support: yes\n"
|
||||
|
||||
#: includes/form.php:48
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:55
|
||||
msgid "Title URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:62
|
||||
msgid "CSS Class"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:69
|
||||
msgid "HTML or text before the random posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:76
|
||||
msgid "HTML or text after the random posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:88
|
||||
msgid "Ignore sticky posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:94
|
||||
msgid "Number of posts to show"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:97
|
||||
msgid "to show all posts."
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:102
|
||||
msgid "Offset"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:105
|
||||
msgid "The number of posts to skip"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:110
|
||||
msgid "Post type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:121
|
||||
msgid "Post status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:136
|
||||
msgid "Limit to Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:152
|
||||
msgid "Limit to Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:168
|
||||
msgid "Limit to Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:171
|
||||
msgid "Ex: category=1,2,4&post_tag=6,12"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:172
|
||||
msgid "Available: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:184
|
||||
msgid "Display thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:190
|
||||
msgid "Thumbnail Size "
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:197
|
||||
msgid "Please read %1$sFAQ%2$s for more information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:203
|
||||
msgid "Use custom thumbnail sizes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:209
|
||||
msgid "Width & Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:217
|
||||
msgid "Thumbnail Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:220
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:221
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:222
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:227
|
||||
msgid ""
|
||||
"Your theme does not support Post Thumbnail feature, please go to "
|
||||
"%1$shttp://codex.wordpress.org/Post_Thumbnails%2$s to read more info and "
|
||||
"how to activate it in your theme."
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:237
|
||||
msgid "Display full post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:244
|
||||
msgid "Display excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:250
|
||||
msgid "Excerpt Length"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:258
|
||||
msgid "Display Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:265
|
||||
msgid "Display Modified Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:272
|
||||
msgid "Use Relative Date. eg: 5 days ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:282
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:285
|
||||
msgid "You can find the plugin css selector on %1$sFAQ page%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:14 includes/widget.php:27
|
||||
msgid "Random Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/posts.php:101 includes/posts.php:107
|
||||
msgid "%s ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget.php:17
|
||||
msgid ""
|
||||
"An advanced widget that gives you total control over the output of the "
|
||||
"random posts."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Advanced Random Posts Widget"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/idenovasi/advanced-random-posts-widget"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Easily to display advanced random posts via shortcode or widget."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Idenovasi"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://idenovasi.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:34
|
||||
msgctxt "widget tab name"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:35
|
||||
msgctxt "widget tab name"
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:36
|
||||
msgctxt "widget tab name"
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:37
|
||||
msgctxt "widget tab name"
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:38
|
||||
msgctxt "widget tab name"
|
||||
msgid "Extras"
|
||||
msgstr ""
|
||||
|
||||
#: includes/form.php:39
|
||||
msgctxt "widget tab name"
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
9
spec/fixtures/dynamic_finders/plugin_version/astra-widgets/change_log/changelog.txt
vendored
Normal file
9
spec/fixtures/dynamic_finders/plugin_version/astra-widgets/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
v1.1.1
|
||||
- Fix: PHP Notice for address fixed.
|
||||
|
||||
v1.1.0
|
||||
- New: Add support for full FontAwesome library in widgets.
|
||||
- Fix: JS error in the WordPress admin panel causing errors in
|
||||
|
||||
v1.0.0
|
||||
- Initial release
|
||||
File diff suppressed because it is too large
Load Diff
258
spec/fixtures/dynamic_finders/plugin_version/avaibook/translation_file/languages/avaibook-pt_PT.po
vendored
Normal file
258
spec/fixtures/dynamic_finders/plugin_version/avaibook/translation_file/languages/avaibook-pt_PT.po
vendored
Normal file
@@ -0,0 +1,258 @@
|
||||
# Copyright (C) 2019 Carlos G. Cerro cgcerro@gmail.com
|
||||
# This file is distributed under the same license as the AvaiBook plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AvaiBook 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/avaibook\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-06-25T12:50:01+02:00\n"
|
||||
"PO-Revision-Date: 2019-06-28 09:34+0200\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Domain: avaibook\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: pt_PT\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "AvaiBook"
|
||||
msgstr "AvaiBook"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://wordpress.org/plugins/avaibook/"
|
||||
msgstr "http://wordpress.org/plugins/avaibook/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Show Avaibook booking form in your wordpress"
|
||||
msgstr "Mostre o formulário de reserva Avaibook no seu Wordpress"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Carlos G. Cerro cgcerro@gmail.com"
|
||||
msgstr ""
|
||||
|
||||
#: avaibook.php:239
|
||||
msgid "Show Avaibook book form 1"
|
||||
msgstr "Mostrar formulário AvaiBook 1"
|
||||
|
||||
#: avaibook.php:260
|
||||
msgid "Show Avaibook book form 2"
|
||||
msgstr "Mostrar formulário AvaiBook 2"
|
||||
|
||||
#: avaibook.php:282
|
||||
msgid "Show Avaibook book form 3"
|
||||
msgstr "Mostrar formulário AvaiBook 3"
|
||||
|
||||
#: includes/admin.php:3
|
||||
msgid "Form 1"
|
||||
msgstr "Formulário 1"
|
||||
|
||||
#: includes/admin.php:3
|
||||
msgid "Form 2"
|
||||
msgstr "Formulário 2"
|
||||
|
||||
#: includes/admin.php:3
|
||||
msgid "Form 3"
|
||||
msgstr "Formulário 3"
|
||||
|
||||
#: includes/admin.php:15
|
||||
msgid ""
|
||||
"You can define three types of form. Each one can have a different "
|
||||
"configuration or presentation."
|
||||
msgstr ""
|
||||
"É possível definir três tipos diferentes de formulários. Cada um com uma "
|
||||
"configuração ou apresentação diferente."
|
||||
|
||||
#: includes/admin.php:33
|
||||
msgid "Rental Id is mandatory with \"single\" rental type."
|
||||
msgstr ""
|
||||
"A identificação do alojamento é obrigatória no tipo de motor \"simples\"."
|
||||
|
||||
#: includes/admin.php:37
|
||||
msgid "Owner Id is mandatory with \"multiple\" rental type."
|
||||
msgstr ""
|
||||
"A identificação do alojamento é obrigatória no tipo de motor \"múltiplo\"."
|
||||
|
||||
#: includes/admin.php:41
|
||||
msgid "Configuration saved."
|
||||
msgstr "Configuração gravada."
|
||||
|
||||
#: includes/admin.php:47
|
||||
msgid "Form"
|
||||
msgstr "Formulário"
|
||||
|
||||
#: includes/admin.php:54
|
||||
msgid "AvaiBook configuration"
|
||||
msgstr "Configuração AvaiBook"
|
||||
|
||||
#: includes/admin.php:56
|
||||
msgid ""
|
||||
"Choose the type of Booking Engine you wish to link, and fill in the "
|
||||
"requested parameters (those marked with * are mandatory and you will find "
|
||||
"their value in your private area of AvaiBook)"
|
||||
msgstr ""
|
||||
"Escolha o tipo de motor de reservas que pretende utilizar. Preencha os "
|
||||
"campos obrigatórios (aqueles marcados com * são obrigatórios e encontrará o "
|
||||
"valor em sua área privada AvaiBook)"
|
||||
|
||||
#: includes/admin.php:61
|
||||
msgid "Booking Engine type"
|
||||
msgstr "Tipo de motor AvaiBook"
|
||||
|
||||
#: includes/admin.php:64
|
||||
msgid "Single"
|
||||
msgstr "Simples"
|
||||
|
||||
#: includes/admin.php:65
|
||||
msgid "Multiple"
|
||||
msgstr "Múltiplo"
|
||||
|
||||
#: includes/admin.php:67
|
||||
msgid ""
|
||||
"Choose the type of booking engine you want to use. To a single accommodation "
|
||||
"or to all your accommodations"
|
||||
msgstr ""
|
||||
"Escolha o tipo de motor de reservas que pretende utilizar. Para um único "
|
||||
"alojamento ou para todos os alojamentos"
|
||||
|
||||
#: includes/admin.php:73
|
||||
msgid "Rental Id"
|
||||
msgstr "ID de Alojamento"
|
||||
|
||||
#: includes/admin.php:75
|
||||
msgid "This is the AvaiBook accommodation Id"
|
||||
msgstr "Este é o identificador do alojamento"
|
||||
|
||||
#: includes/admin.php:79
|
||||
msgid "Reference"
|
||||
msgstr "Referência"
|
||||
|
||||
#: includes/admin.php:81 includes/admin.php:99
|
||||
msgid ""
|
||||
"(optional) the generated reserves will have this reference so that you can "
|
||||
"distinguish them"
|
||||
msgstr ""
|
||||
"(opcional) as reservas geradas terão esta referência anotada para que possa "
|
||||
"distingui-las"
|
||||
|
||||
#: includes/admin.php:92
|
||||
msgid "This is your customer id in AvaiBook"
|
||||
msgstr "Este é o seu ID de cliente no AvaiBook"
|
||||
|
||||
#: includes/admin.php:105
|
||||
msgid "Show rental units"
|
||||
msgstr "Mostrar unidades habitacionais"
|
||||
|
||||
#: includes/admin.php:106
|
||||
msgid "Show zones"
|
||||
msgstr "Mostrar zonas"
|
||||
|
||||
#: includes/admin.php:107
|
||||
msgid "Show people"
|
||||
msgstr "Mostrar pessoas"
|
||||
|
||||
#: includes/admin.php:108
|
||||
msgid "Behavior in the booking engine"
|
||||
msgstr "Comportamento no motor de reservas"
|
||||
|
||||
#: includes/admin.php:116
|
||||
msgid "Display options"
|
||||
msgstr "Opções de apresentação"
|
||||
|
||||
#: includes/admin.php:118
|
||||
msgid ""
|
||||
"Choose how you want your widget to be and what colors you want it to have. "
|
||||
"If you do not mark any of the options below your widget will only be a "
|
||||
"button."
|
||||
msgstr ""
|
||||
"Escolha como quer que seja o seu widget e que cores quer que ele tenha. Se "
|
||||
"não marcar nenhuma das opções, o widget será apenas um botão."
|
||||
|
||||
#: includes/admin.php:121
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
#: includes/admin.php:122
|
||||
msgid "This text title will be showed in your form"
|
||||
msgstr "Este título será exibido no seu formulário"
|
||||
|
||||
#: includes/admin.php:127
|
||||
msgid "Request dates"
|
||||
msgstr "Pedir datas"
|
||||
|
||||
#: includes/admin.php:128
|
||||
msgid "show dates request's fields"
|
||||
msgstr "exibir campos de datas"
|
||||
|
||||
#: includes/admin.php:135
|
||||
msgid "Request guest number"
|
||||
msgstr "Pedir número de clientes"
|
||||
|
||||
#: includes/admin.php:136
|
||||
msgid "show guest's numbers field"
|
||||
msgstr "mostrar no campo o número de pessoas"
|
||||
|
||||
#: includes/admin.php:140
|
||||
msgid "Colour settings"
|
||||
msgstr "Configuração de cores"
|
||||
|
||||
#: includes/admin.php:141
|
||||
msgid "Set empty for keep your default style."
|
||||
msgstr "Mantenha a caixa vazia para deixar o seu estilo por defeito."
|
||||
|
||||
#: includes/admin.php:144
|
||||
msgid "Background colour"
|
||||
msgstr "Cor de fundo"
|
||||
|
||||
#: includes/admin.php:153
|
||||
msgid "Main colour"
|
||||
msgstr "Cor principal"
|
||||
|
||||
#: includes/admin.php:162
|
||||
msgid "Text colour"
|
||||
msgstr "Cor do texto"
|
||||
|
||||
#: includes/admin.php:176
|
||||
msgid "Save changes"
|
||||
msgstr "Guardar modificações"
|
||||
|
||||
#: includes/admin.php:181
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: includes/admin.php:183
|
||||
msgid "You can use this shortcode"
|
||||
msgstr "Pode usar o seguinte shortcode"
|
||||
|
||||
#: includes/admin.php:185
|
||||
msgid "Only copy this code, and put it where you want in your post or pages."
|
||||
msgstr "Basta copiar o código e colá-lo onde quiser nos seus posts ou páginas."
|
||||
|
||||
#: includes/admin.php:187
|
||||
msgid "Or you can use our widget"
|
||||
msgstr "Ou pode usar o nosso widget"
|
||||
|
||||
#: includes/admin.php:189
|
||||
msgid ""
|
||||
"Go to <a href=\"%s\">widgets section</a> and drag our widget \"avaibook%s\" "
|
||||
"where you want."
|
||||
msgstr ""
|
||||
"Vá até a seção <a href=\"%s\">widget </a> e arraste o nosso widget \"avaibook"
|
||||
"%s\" onde quiser."
|
||||
|
||||
#: includes/front.php:11
|
||||
msgid "Arrive date"
|
||||
msgstr "Data de chegada"
|
||||
|
||||
#: includes/front.php:16
|
||||
msgid "Departure date"
|
||||
msgstr "Data saída"
|
||||
|
||||
#: includes/front.php:24 includes/front.php:25
|
||||
msgid "Guest Num."
|
||||
msgstr "Número de pessoas."
|
||||
|
||||
#: includes/front.php:29
|
||||
msgid "search"
|
||||
msgstr "procurar"
|
||||
@@ -0,0 +1,947 @@
|
||||
# Copyright (C) 2019 blossomthemes
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BlossomThemes Toolkit 2.1.2\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/blossomthemes-toolkit\n"
|
||||
"POT-Creation-Date: 2019-05-13 06:01: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: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:104
|
||||
#: includes/class-blossomthemes-toolkit-functions.php:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:105
|
||||
#: includes/class-blossomthemes-toolkit-functions.php:126
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:106
|
||||
#: includes/class-blossomthemes-toolkit-functions.php:147
|
||||
msgid "Please upload valid image file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:109
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:110
|
||||
msgid "Select Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:115
|
||||
msgid "Are you sure you want to delete this Social Media?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:164
|
||||
msgid "Portfolio Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:202
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:231
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:206
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:242
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:207
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:243
|
||||
#: includes/class-blossomthemes-toolkit-functions.php:135
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:337
|
||||
#: includes/widgets/widget-advertisement.php:127
|
||||
#: includes/widgets/widget-client-logo.php:160
|
||||
#: includes/widgets/widget-cta.php:251
|
||||
#: includes/widgets/widget-icon-text.php:124
|
||||
#: includes/widgets/widget-image-text.php:37
|
||||
#: includes/widgets/widget-image-text.php:160
|
||||
#: includes/widgets/widget-testimonial.php:120
|
||||
msgid "Upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:343
|
||||
#: includes/widgets/widget-advertisement.php:135
|
||||
#: includes/widgets/widget-client-logo.php:163
|
||||
#: includes/widgets/widget-image-text.php:44
|
||||
#: includes/widgets/widget-image-text.php:167
|
||||
msgid "Featured Link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:357
|
||||
#: includes/widgets/widget-faqs.php:105
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:359
|
||||
#: includes/widgets/widget-faqs.php:107
|
||||
msgid "Answer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:410
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:417
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:418
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:419
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:420
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:421
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:422
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:467
|
||||
msgid "Search Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:468
|
||||
msgid "All Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:469
|
||||
msgid "Parent Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:470
|
||||
msgid "Parent Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:471
|
||||
msgid "Edit Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:472
|
||||
msgid "Update Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:473
|
||||
msgid "Add New Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blossomthemes-toolkit-admin.php:474
|
||||
msgid "New Categories Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-blossomthemes-toolkit-functions.php:121
|
||||
msgid "No file chosen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-blossomthemes-toolkit-functions.php:129
|
||||
msgid "Upgrade your version of WordPress for full media support."
|
||||
msgstr ""
|
||||
|
||||
#: includes/templates/blossom-portfolio.php:22
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/templates/single-blossom-portfolio.php:40
|
||||
msgid "Related Projects"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:25
|
||||
msgid "Blossom: Advertisement Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:26
|
||||
msgid "An Advertisement Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:115
|
||||
#: includes/widgets/widget-author-bio.php:347
|
||||
#: includes/widgets/widget-client-logo.php:138
|
||||
#: includes/widgets/widget-contact.php:240 includes/widgets/widget-cta.php:187
|
||||
#: includes/widgets/widget-facebook-page.php:107
|
||||
#: includes/widgets/widget-icon-text.php:115
|
||||
#: includes/widgets/widget-image-text.php:140
|
||||
#: includes/widgets/widget-popular-post.php:213
|
||||
#: includes/widgets/widget-recent-post.php:144
|
||||
#: includes/widgets/widget-socialmedia.php:219
|
||||
#: includes/widgets/widget-stat-counter.php:132
|
||||
#: includes/widgets/widget-twitter-feeds.php:139
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:120
|
||||
msgid "Display Advertisement from:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:122
|
||||
#: includes/widgets/widget-advertisement.php:140
|
||||
msgid "Ad Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:124
|
||||
#: includes/widgets/widget-author-bio.php:361
|
||||
#: includes/widgets/widget-author-bio.php:382
|
||||
msgid "Uploaded Photo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:131
|
||||
#: includes/widgets/widget-client-logo.php:151
|
||||
#: includes/widgets/widget-featured-page.php:187
|
||||
#: includes/widgets/widget-icon-text.php:147
|
||||
#: includes/widgets/widget-image-text.php:145
|
||||
#: includes/widgets/widget-team-member.php:199
|
||||
msgid "Open in Same Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:33
|
||||
msgid "Blossom: Author Bio"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:34
|
||||
msgid "An Author Bio Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:108
|
||||
#: includes/widgets/widget-author-bio.php:437
|
||||
#: includes/widgets/widget-contact.php:60
|
||||
#: includes/widgets/widget-contact.php:299
|
||||
#: includes/widgets/widget-socialmedia.php:60
|
||||
#: includes/widgets/widget-socialmedia.php:256
|
||||
msgid "Social Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:110
|
||||
#: includes/widgets/widget-contact.php:62
|
||||
#: includes/widgets/widget-socialmedia.php:62
|
||||
msgid "Search Social Icons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:111
|
||||
#: includes/widgets/widget-author-bio.php:440
|
||||
#: includes/widgets/widget-contact.php:63
|
||||
#: includes/widgets/widget-contact.php:302
|
||||
#: includes/widgets/widget-socialmedia.php:63
|
||||
#: includes/widgets/widget-socialmedia.php:259
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:352
|
||||
msgid "Author Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:357
|
||||
msgid "Display photo from:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:359
|
||||
msgid "Gravatar"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:364
|
||||
msgid "Upload Author Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:367
|
||||
msgid "Author Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:370
|
||||
msgid ""
|
||||
"You can show your %1$s image instead of manually uploading your photo. Just "
|
||||
"add your gravatar registered email address here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:373
|
||||
#: includes/widgets/widget-contact.php:245 includes/widgets/widget-cta.php:192
|
||||
#: includes/widgets/widget-icon-text.php:120
|
||||
#: includes/widgets/widget-team-member.php:193
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:378
|
||||
msgid "Display Signature from:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:380
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:385
|
||||
msgid "Upload Signature Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:389
|
||||
msgid "Signature Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:393
|
||||
msgid "Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:398
|
||||
msgid "Button Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:405
|
||||
#: includes/widgets/widget-popular-post.php:257
|
||||
#: includes/widgets/widget-posts-category-slider.php:250
|
||||
#: includes/widgets/widget-recent-post.php:179
|
||||
#: includes/widgets/widget-socialmedia.php:224
|
||||
msgid "Open in New Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:454
|
||||
msgid "Add Social Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-author-bio.php:455
|
||||
#: includes/widgets/widget-contact.php:318
|
||||
#: includes/widgets/widget-socialmedia.php:275
|
||||
msgid ""
|
||||
"Click on the above button to add social media icons. You can also change "
|
||||
"the order of the social icons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:25
|
||||
msgid "Blossom: Client Logo Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:26
|
||||
msgid "A Client Logo Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:145
|
||||
msgid "Display logo in black and white"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:175
|
||||
msgid "Add Another Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:44
|
||||
msgid "Blossom: Contact Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:45
|
||||
msgid "A Contact Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:250
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:255
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:260
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:267
|
||||
msgid "Open Social Links in New Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:317
|
||||
#: includes/widgets/widget-socialmedia.php:274
|
||||
msgid "Add Social Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:26
|
||||
msgid "Blossom: Call To Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:27
|
||||
msgid "A Call To Action Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:34
|
||||
#: includes/widgets/widget-featured-page.php:33
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:35
|
||||
#: includes/widgets/widget-featured-page.php:35
|
||||
msgid "Centered"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:197
|
||||
msgid "Number of Call-to-Action Buttons:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:211
|
||||
msgid "Button 1 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:215
|
||||
msgid "Button 1 Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:222
|
||||
msgid "Button 2 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:226
|
||||
msgid "Button 2 Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:232
|
||||
msgid "Button Alignment:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:243
|
||||
#: includes/widgets/widget-custom-categories.php:105
|
||||
msgid "Open in new Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:246
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:16
|
||||
msgid "Blossom: Custom Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:19
|
||||
msgid "Widget to display categories with Image and Posts Count"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:70
|
||||
msgid " Post(s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:88
|
||||
#: includes/widgets/widget-posts-category-slider.php:179
|
||||
msgid "New title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:100
|
||||
#: includes/widgets/widget-pinterest.php:69
|
||||
#: includes/widgets/widget-posts-category-slider.php:214
|
||||
#: includes/widgets/widget-snapchat.php:101
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:153
|
||||
msgid ""
|
||||
"To set thumbnail for categories, go to %1$sPosts > Categories%2$s and "
|
||||
"%3$sEdit%4$s the categories."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:25
|
||||
msgid "Blossom: Facebook Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:26
|
||||
msgid "A widget that shows Facebook Page Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:112
|
||||
msgid "Facebook Page URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:117
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:123
|
||||
msgid "Show Friend's Faces"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:128
|
||||
msgid "Use Small Header"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:133
|
||||
msgid "Hide Cover Photo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:138
|
||||
msgid "Show Timeline Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:143
|
||||
msgid "Show Event Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:148
|
||||
msgid "Show Message Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:25
|
||||
msgid "Blossom: FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:26
|
||||
msgid "A Widget for FAQs."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:52
|
||||
msgid "Expand/Close"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:91
|
||||
msgid "Enable FAQs Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:118
|
||||
msgid "Add FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:25
|
||||
msgid "Blossom: Featured Page Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:26
|
||||
msgid "A Featured Page Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:34
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:48
|
||||
#: includes/widgets/widget-featured-page.php:131
|
||||
#: includes/widgets/widget-featured-page.php:228
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:119
|
||||
msgid "--Choose--"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:142
|
||||
msgid "Page:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:154
|
||||
msgid "Show Page Full Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:161
|
||||
msgid "Show Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:166
|
||||
msgid "Image Alignment:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:181
|
||||
msgid "Show Read More"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:191
|
||||
msgid "Read More Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:25
|
||||
msgid "Blossom: Icon Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:26
|
||||
msgid "An Icon Text Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:126
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:129
|
||||
#: includes/widgets/widget-stat-counter.php:147
|
||||
msgid "Icons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:141
|
||||
msgid "search icons here..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:151
|
||||
msgid "Read More Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:156
|
||||
msgid "Read More Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:26
|
||||
msgid "Blossom: Image Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:27
|
||||
msgid "An Image Text Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:40
|
||||
#: includes/widgets/widget-image-text.php:163
|
||||
msgid "Link Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:179
|
||||
msgid "Add Image Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-pinterest.php:15
|
||||
msgid "Add your latest pins form Pinterest."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-pinterest.php:16
|
||||
msgid "Blossom: Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-pinterest.php:73
|
||||
msgid "Pinterest URL:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-pinterest.php:77
|
||||
msgid "Height: (px)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:28
|
||||
msgid "Blossom: Popular Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:29
|
||||
msgid "A Popular Post Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:65
|
||||
msgid "0 View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:67
|
||||
msgid " View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:69
|
||||
msgid " Views"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:83
|
||||
#: includes/widgets/widget-popular-post.php:201
|
||||
msgid "Popular Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:146
|
||||
#: includes/widgets/widget-posts-category-slider.php:96
|
||||
#: includes/widgets/widget-recent-post.php:89
|
||||
msgid "View all posts in %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:185
|
||||
#: includes/widgets/widget-recent-post.php:119
|
||||
msgid "Style One"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:186
|
||||
#: includes/widgets/widget-recent-post.php:120
|
||||
msgid "Style Two"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:187
|
||||
#: includes/widgets/widget-recent-post.php:121
|
||||
msgid "Style Three"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:218
|
||||
#: includes/widgets/widget-recent-post.php:149
|
||||
msgid "Number of Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:223
|
||||
msgid "Popular based on:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:225
|
||||
msgid "Post Views"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:226
|
||||
msgid "Comment Count"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:231
|
||||
#: includes/widgets/widget-recent-post.php:164
|
||||
msgid "Layout:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:247
|
||||
#: includes/widgets/widget-recent-post.php:155
|
||||
msgid "Show Post Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:252
|
||||
#: includes/widgets/widget-recent-post.php:160
|
||||
msgid "Show Post Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:276
|
||||
#: includes/widgets/widget-recent-post.php:39
|
||||
#: includes/widgets/widget-recent-post.php:135
|
||||
#: includes/widgets/widget-recent-post.php:198
|
||||
msgid "Recent Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:18
|
||||
msgid "Blossom: Posts Category Slider"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:21
|
||||
msgid "Simple posts slider from category."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:219
|
||||
msgid "Category:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:228
|
||||
msgid "Number of Slides:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:230
|
||||
msgid ""
|
||||
"Total number of posts available in the selected category will be the "
|
||||
"maximum number of slides."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:235
|
||||
msgid "Show Slider Arrows"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:240
|
||||
msgid "Show Slider Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:245
|
||||
msgid "Change Direction"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-posts-category-slider.php:246
|
||||
msgid ""
|
||||
"Enabling this will change slider direction from 'right to left' to 'left to "
|
||||
"right'."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-recent-post.php:25
|
||||
msgid "Blossom: Recent Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-recent-post.php:26
|
||||
msgid "A Recent Post Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-recent-post.php:97
|
||||
msgid "%1$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:29
|
||||
msgid "Display your Snapchat Snapcode."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:52
|
||||
msgid "Please upload your Snapchat image."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:71
|
||||
msgid "Follow <b>%s</b> on Snapchat!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:105
|
||||
msgid "Step 1. Download your Snapcode PNG image from"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:105
|
||||
msgid "this link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:106
|
||||
msgid "Step 2. Upload your Snapcode PNG image using the button below."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:118
|
||||
msgid "Upload Snapchat Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:124
|
||||
msgid "Snapchat Account Name:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-snapchat.php:125
|
||||
msgid "For example:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-socialmedia.php:44
|
||||
msgid "Blossom: Social Media"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-socialmedia.php:45
|
||||
msgid "A Social Links Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-socialmedia.php:205
|
||||
msgid "Subscribe and Follow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:26
|
||||
msgid "Blossom: Stat Counter Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:27
|
||||
msgid "Widget for stat counter."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:137
|
||||
msgid "Counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:143
|
||||
msgid "Show Comma"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:158
|
||||
msgid "Search Icons Here..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:25
|
||||
msgid "Blossom: Team Member"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:26
|
||||
msgid "A Team Member Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:183
|
||||
#: includes/widgets/widget-testimonial.php:105
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:188
|
||||
#: includes/widgets/widget-testimonial.php:110
|
||||
msgid "Designation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:202
|
||||
msgid "Upload Photo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:205
|
||||
msgid "LinkedIn Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:211
|
||||
msgid "Twitter Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:215
|
||||
msgid "Facebook Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:219
|
||||
msgid "Instagram Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:223
|
||||
msgid "YouTube Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:227
|
||||
msgid "Dribbble Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:231
|
||||
msgid "Behance Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-testimonial.php:25
|
||||
msgid "Blossom: Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-testimonial.php:26
|
||||
msgid "A Testimonial Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-testimonial.php:115
|
||||
msgid "Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:28
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:29
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:39
|
||||
msgid "Blossom: Twitter Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:40
|
||||
msgid "A widget that shows latest tweets"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:143
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:144
|
||||
#: includes/widgets/widget-twitter-feeds.php:145
|
||||
msgid "Choose a theme…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:157
|
||||
msgid "Twitter Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:162
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:167
|
||||
msgid "Link Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:173
|
||||
msgid "Number of tweets"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "BlossomThemes Toolkit"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/blossomthemes-toolkit/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"BlossomThemes Toolkit provides you necessary widgets for better and "
|
||||
"effective blogging."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "blossomthemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://blossomthemes.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,8 @@
|
||||
Version 1.2.0 - 20th July 2019
|
||||
New: Countdown animation effect added.
|
||||
|
||||
Version 1.1.0 - 16th July 2019
|
||||
New: When to apply animation option added in admin settings.
|
||||
|
||||
Version 1.0.0 - 15th July 2019
|
||||
- Initial Release
|
||||
@@ -0,0 +1,191 @@
|
||||
# Copyright (C) 2019 Sandesh
|
||||
# This file is distributed under the same license as the Browser Title Bar Animation package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Browser Title Bar Animation 1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/browser-title-bar-animation\n"
|
||||
"POT-Creation-Date: 2019-07-20 06:55:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-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/class-tbas-admin.php:42
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:55 classes/class-tbas-admin.php:56
|
||||
#: classes/class-tbas-admin.php:72 classes/class-tbas-metabox.php:76
|
||||
msgid "Title Bar Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:85
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:86
|
||||
msgid "Got a question? I'm happy to help!"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:87
|
||||
msgid "Submit a Ticket »"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:103
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:111 classes/class-tbas-metabox.php:122
|
||||
msgid "Enable Title Bar Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:118
|
||||
msgid "Enable Title Bar Animation Globally"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:125
|
||||
msgid "Apply Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:132 classes/class-tbas-metabox.php:142
|
||||
msgid "When to apply animation?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:134 classes/class-tbas-metabox.php:139
|
||||
msgid "Always"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:135 classes/class-tbas-metabox.php:140
|
||||
msgid "When user switch to another tab"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:143 classes/class-tbas-admin.php:150
|
||||
#: classes/class-tbas-metabox.php:149
|
||||
msgid "Animation Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:152 classes/class-tbas-metabox.php:153
|
||||
msgid "Typing"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:153 classes/class-tbas-metabox.php:154
|
||||
msgid "Scrolling"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:154 classes/class-tbas-metabox.php:155
|
||||
msgid "Blinking"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:155 classes/class-tbas-metabox.php:156
|
||||
msgid "Countdown"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:169
|
||||
msgid "Animation Examples"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:176 classes/class-tbas-metabox.php:163
|
||||
msgid "Animation Speed"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:183
|
||||
msgid "Animation speed"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:190 classes/class-tbas-metabox.php:172
|
||||
msgid "Animation Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:197 classes/class-tbas-admin.php:225
|
||||
#: classes/class-tbas-metabox.php:175
|
||||
msgid ""
|
||||
"Animation will apply on this title. If empty, default title will consider "
|
||||
"as animation title."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:204 classes/class-tbas-metabox.php:180
|
||||
msgid "Countdown Duration"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:211
|
||||
msgid "Time in minutes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:217 classes/class-tbas-metabox.php:189
|
||||
msgid "Countdown Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:224
|
||||
msgid "{{countdown}}"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:112
|
||||
msgid "Override Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:115
|
||||
msgid "Enable this to override global settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:126
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:127
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:135
|
||||
msgid "Animation Show"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:166
|
||||
msgid "Animation speed. eg. 1000 for 1second"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:183
|
||||
msgid "Duration in minutes."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:192
|
||||
msgid "User {{countdown}} tag."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:193
|
||||
msgid "You can use {{countdown}} tag in string."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Browser Title Bar Animation"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.techiesandesh.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Don't lose visitors. Catch the user's attention."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sandesh"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sandeshjangam.com/"
|
||||
msgstr ""
|
||||
348
spec/fixtures/dynamic_finders/plugin_version/clicky/translation_file/languages/clicky.pot
vendored
Normal file
348
spec/fixtures/dynamic_finders/plugin_version/clicky/translation_file/languages/clicky.pot
vendored
Normal file
@@ -0,0 +1,348 @@
|
||||
# Copyright (C) 2019 Team Yoast
|
||||
# This file is distributed under the same license as the Clicky for WordPress package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Clicky for WordPress 1.8\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/yoast/clicky/issues\n"
|
||||
"POT-Creation-Date: 2019-06-17 19:17:03+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Yoast Translate Team <translations@yoast.com>\n"
|
||||
"Language-Team: Yoast Translate <translations@yoast.com>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: admin/class-clicky-admin-page.php:64
|
||||
#: admin/class-clicky-options-admin.php:246
|
||||
#: artifact/admin/class-clicky-admin-page.php:64
|
||||
#: artifact/admin/class-clicky-options-admin.php:246
|
||||
#. translators: 1: link open tag to clicky forum website; 2: link close tag.
|
||||
msgid ""
|
||||
"If you're in need of support with Clicky and / or this plugin, please visit "
|
||||
"the %1$sClicky forums%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:65
|
||||
#: artifact/admin/class-clicky-admin-page.php:65
|
||||
msgid "Need Support?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:80
|
||||
#: artifact/admin/class-clicky-admin-page.php:80
|
||||
msgid "No news items, feed might be broken..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:96
|
||||
#: artifact/admin/class-clicky-admin-page.php:96
|
||||
msgid "Subscribe with RSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:107
|
||||
#: artifact/admin/class-clicky-admin-page.php:107
|
||||
msgid "Latest news from Clicky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:114
|
||||
#: artifact/admin/class-clicky-admin-page.php:114
|
||||
msgid "Like Yoast on Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:115
|
||||
#: artifact/admin/class-clicky-admin-page.php:115
|
||||
msgid "Follow Yoast on Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:116
|
||||
#: artifact/admin/class-clicky-admin-page.php:116
|
||||
msgid "Subscribe by email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:118
|
||||
#: artifact/admin/class-clicky-admin-page.php:118
|
||||
msgid "Latest news from Yoast"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Clicky for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin-page.php:132
|
||||
#: artifact/admin/class-clicky-admin-page.php:132
|
||||
msgid "Yoast Translate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin.php:54 artifact/admin/class-clicky-admin.php:54
|
||||
msgid "Clicky Goal Tracking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin.php:72 artifact/admin/class-clicky-admin.php:72
|
||||
msgid "Clicky settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin.php:73 artifact/admin/class-clicky-admin.php:73
|
||||
msgid "Clicky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin.php:80 admin/class-clicky-admin.php:81
|
||||
#: artifact/admin/class-clicky-admin.php:80
|
||||
#: artifact/admin/class-clicky-admin.php:81
|
||||
msgid "Clicky Stats"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin.php:108 artifact/admin/class-clicky-admin.php:108
|
||||
msgid "Clicky is almost ready. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin.php:112 artifact/admin/class-clicky-admin.php:112
|
||||
#. translators: 1: link open tag to the plugin settings page; 2: link close
|
||||
#. tag.
|
||||
msgid ""
|
||||
"You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s "
|
||||
"for it to work."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-admin.php:185 artifact/admin/class-clicky-admin.php:185
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:46 admin/views/admin-page.php:19
|
||||
#: artifact/admin/class-clicky-options-admin.php:46
|
||||
#: artifact/admin/views/admin-page.php:19
|
||||
msgid "Basic settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:52
|
||||
#: artifact/admin/class-clicky-options-admin.php:52
|
||||
msgid "Site ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:53
|
||||
#: artifact/admin/class-clicky-options-admin.php:53
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:54
|
||||
#: artifact/admin/class-clicky-options-admin.php:54
|
||||
msgid "Admin Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:73
|
||||
#: artifact/admin/class-clicky-options-admin.php:73
|
||||
msgid "Like this plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:80
|
||||
#: artifact/admin/class-clicky-options-admin.php:80
|
||||
msgid "Need support?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:90
|
||||
#: artifact/admin/class-clicky-options-admin.php:90
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:94
|
||||
#: artifact/admin/class-clicky-options-admin.php:94
|
||||
msgid "Disable Admin Bar stats"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:95
|
||||
#: artifact/admin/class-clicky-options-admin.php:95
|
||||
msgid "If you don't want to display the stats in your admin menu, check this box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:98
|
||||
#: artifact/admin/class-clicky-options-admin.php:98
|
||||
msgid "Ignore Admin users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:99
|
||||
#: artifact/admin/class-clicky-options-admin.php:99
|
||||
msgid ""
|
||||
"If you are using a caching plugin, such as W3 Total Cache or WP-Supercache, "
|
||||
"please ensure that you have it configured to NOT use the cache for logged "
|
||||
"in users. Otherwise, admin users <em>will still</em> be tracked."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:102
|
||||
#: artifact/admin/class-clicky-options-admin.php:102
|
||||
msgid "Disable cookies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:103
|
||||
#: artifact/admin/class-clicky-options-admin.php:103
|
||||
msgid ""
|
||||
"If you don't want Clicky to use cookies on your site, check this button. By "
|
||||
"doing so, uniqueness will instead be determined based on their IP address."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:106
|
||||
#: artifact/admin/class-clicky-options-admin.php:106
|
||||
msgid "Track names of commenters"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:132
|
||||
#: artifact/admin/class-clicky-options-admin.php:132
|
||||
msgid "Outbound Links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:140
|
||||
#: artifact/admin/class-clicky-options-admin.php:140
|
||||
msgid "For instance: <code>/out/,/go/</code>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:144
|
||||
#: artifact/admin/class-clicky-options-admin.php:144
|
||||
msgid "Outbound Link Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:218
|
||||
#: artifact/admin/class-clicky-options-admin.php:218
|
||||
#. translators: 1: link open tag to the clicky user homepage; 2: link close
|
||||
#. tag.
|
||||
msgid ""
|
||||
"Go to your %1$suser homepage on Clicky%2$s and click "
|
||||
""Preferences" under the name of the domain, you will find the "
|
||||
"Site ID, Site Key, Admin Site Key and Database Server under Site "
|
||||
"information."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-clicky-options-admin.php:232
|
||||
#: artifact/admin/class-clicky-options-admin.php:232
|
||||
#. translators: 1: link open tag to the clicky knowledge base article; 2: link
|
||||
#. close tag.
|
||||
msgid ""
|
||||
"If your site uses redirects for outbound links, instead of links that point "
|
||||
"directly to their external source (this is popular with affiliate links, "
|
||||
"for example), then you'll need to use this variable to tell our tracking "
|
||||
"code additional patterns to look for when automatically tracking outbound "
|
||||
"links. %1$sRead more here%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/admin-page.php:10 artifact/admin/views/admin-page.php:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/admin-page.php:20 artifact/admin/views/admin-page.php:20
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/admin-page.php:32 artifact/admin/views/admin-page.php:32
|
||||
msgid "Save Clicky settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/like-box.php:8 artifact/admin/views/like-box.php:8
|
||||
msgid "Why not do any or all of the following:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/like-box.php:10 artifact/admin/views/like-box.php:10
|
||||
msgid "Link to it so other folks can find out about it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/like-box.php:11 artifact/admin/views/like-box.php:11
|
||||
msgid "Give it a 5 star rating on WordPress.org."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/like-box.php:12 artifact/admin/views/like-box.php:12
|
||||
msgid "Let other people know that it works with your WordPress setup."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/meta-box.php:12 artifact/admin/views/meta-box.php:12
|
||||
#. translators: 1: link open tag to clicky website tracking page; 2: link close
|
||||
#. tag.
|
||||
msgid ""
|
||||
"Clicky can track Goals for you too, %1$syou can create them here%2$s. To be "
|
||||
"able to track a goal on this post, you need to specify the goal ID here. "
|
||||
"Optionally, you can also provide the goal revenue."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/meta-box.php:20 artifact/admin/views/meta-box.php:20
|
||||
msgid "Goal ID:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/meta-box.php:24 artifact/admin/views/meta-box.php:24
|
||||
msgid "Goal Revenue:"
|
||||
msgstr ""
|
||||
|
||||
#: artifact/frontend/class-clicky-frontend.php:46
|
||||
#: frontend/class-clicky-frontend.php:46
|
||||
msgid ""
|
||||
"Clicky tracking not shown because you're an administrator and you've "
|
||||
"configured Clicky to ignore administrators."
|
||||
msgstr ""
|
||||
|
||||
#: artifact/frontend/class-clicky-frontend.php:139
|
||||
#: frontend/class-clicky-frontend.php:139
|
||||
msgid "Posted a comment"
|
||||
msgstr ""
|
||||
|
||||
#: artifact/frontend/class-clicky-visitor-graph.php:131
|
||||
#: frontend/class-clicky-visitor-graph.php:131
|
||||
msgid "Visitors over 48 hours. Click for more Clicky Site Stats."
|
||||
msgstr ""
|
||||
|
||||
#: artifact/vendor/yoast/i18n-module/i18n-module.php:189
|
||||
#: vendor/yoast/i18n-module/i18n-module.php:189
|
||||
msgid ""
|
||||
"As you can see, there is a translation of this plugin in %1$s. This "
|
||||
"translation is currently %3$d%% complete. We need your help to make it "
|
||||
"complete and to fix any errors. Please register at %4$s to help complete "
|
||||
"the translation to %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: artifact/vendor/yoast/i18n-module/i18n-module.php:191
|
||||
#: vendor/yoast/i18n-module/i18n-module.php:191
|
||||
msgid ""
|
||||
"You're using WordPress in %1$s. While %2$s has been translated to %1$s for "
|
||||
"%3$d%%, it's not been shipped with the plugin yet. You can help! Register "
|
||||
"at %4$s to help complete the translation to %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: artifact/vendor/yoast/i18n-module/i18n-module.php:193
|
||||
#: vendor/yoast/i18n-module/i18n-module.php:193
|
||||
msgid ""
|
||||
"You're using WordPress in a language we don't support yet. We'd love for "
|
||||
"%2$s to be translated in that language too, but unfortunately, it isn't "
|
||||
"right now. You can change that! Register at %4$s to help translate it!"
|
||||
msgstr ""
|
||||
|
||||
#: artifact/vendor/yoast/i18n-module/i18n-module.php:213
|
||||
#: vendor/yoast/i18n-module/i18n-module.php:213
|
||||
msgid "Translation of %s"
|
||||
msgstr ""
|
||||
|
||||
#: artifact/vendor/yoast/i18n-module/i18n-module.php:218
|
||||
#: vendor/yoast/i18n-module/i18n-module.php:218
|
||||
msgid "Register now »"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://yoast.com/wordpress/plugins/clicky/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"The Clicky for WordPress plugin by Yoast makes it easy for you to add your "
|
||||
"Clicky analytics tracking code to your WordPress install, while also giving "
|
||||
"you some advanced tracking options."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Team Yoast"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://yoast.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,648 @@
|
||||
# Copyright (C) 2019 Colorlib
|
||||
# This file is distributed under the GPLv3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Colorlib Login Customizer 1.2.91\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/colorlib-login-customizer\n"
|
||||
"POT-Creation-Date: 2019-06-13 11:18:57+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-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"
|
||||
|
||||
#: includes/class-colorlib-login-customizer-review.php:22
|
||||
msgid ""
|
||||
"Hey, I noticed you have installed our plugin for %s day(s) - that's "
|
||||
"awesome! Could you please do me a BIG favor and give it a 5-star rating on "
|
||||
"WordPress? Just to help us spread the word and boost our motivation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-colorlib-login-customizer-review.php:23
|
||||
msgid "Ok, you deserve it"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-colorlib-login-customizer-review.php:24
|
||||
msgid "I already did"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-colorlib-login-customizer-review.php:25
|
||||
msgid "No, not good enough"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-colorlib-login-customizer.php:216
|
||||
#: includes/class-colorlib-login-customizer.php:225
|
||||
#: includes/lib/class-colorlib-login-customizer-settings.php:130
|
||||
#: includes/lib/class-colorlib-login-customizer-settings.php:139
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:62
|
||||
msgid "Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:67
|
||||
msgid "Temapltes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:256
|
||||
msgid "Logo options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:261
|
||||
msgid "Hide Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:262
|
||||
msgid "Show/Hide the logo from login page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:268
|
||||
msgid "Use Text Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:269
|
||||
msgid "Show/Hide the logo text from login page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:275
|
||||
msgid "Logo URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:276
|
||||
msgid "This is where the logo will link to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:282
|
||||
msgid "Logo Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:283
|
||||
msgid ""
|
||||
"The tooltip that will be displayed when hovering over the logo. Also this "
|
||||
"is used as Logo text when you select \"Use Text Logo\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:289
|
||||
msgid "Login Page Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:290
|
||||
msgid "Login page title that is shown when you access the admin login page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:296
|
||||
msgid "Logo text color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:297
|
||||
msgid "This will change the color text property."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:304
|
||||
msgid "Logo text color hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:305
|
||||
msgid "This will change the color text property on hover."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:312
|
||||
msgid "Logo text size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:313
|
||||
msgid "This will change the text size of logo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:325
|
||||
msgid "Custom logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:326
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:473
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:488
|
||||
msgid ""
|
||||
"This will upload an image to your media library and store the attachment ID "
|
||||
"in the option field. Once you have uploaded an imge the thumbnail will "
|
||||
"display above these buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:333
|
||||
msgid "Logo Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:334
|
||||
msgid "Make sure you set the logo width to match your image."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:346
|
||||
msgid "Logo Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:347
|
||||
msgid "Make sure you set the logo height to match your image."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:361
|
||||
msgid "Layout options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:366
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:383
|
||||
msgid "Columns Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:390
|
||||
msgid "Form Column Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:416
|
||||
msgid "Form Vertical Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:437
|
||||
msgid "Form Horizontal Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:460
|
||||
msgid "Background options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:465
|
||||
msgid "Custom background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:466
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:480
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:534
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:597
|
||||
msgid "This will change the background color property."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:472
|
||||
msgid "Custom background"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:479
|
||||
msgid "Form Column background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:487
|
||||
msgid "Form Column background"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:497
|
||||
msgid "General Form options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:502
|
||||
msgid "Form Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:503
|
||||
msgid "Please input the desired width for the login form in pixels. Example: 20"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:514
|
||||
msgid "Form Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:515
|
||||
msgid "Please input the desired height for the login form in pixels. Example: 20"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:526
|
||||
msgid "Form background image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:527
|
||||
msgid "This will change the background image property of login form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:533
|
||||
msgid "Form background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:540
|
||||
msgid "Form padding"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:541
|
||||
msgid "This will change the padding property. Example: 26px 24px 46px 30px"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:547
|
||||
msgid "Form border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:548
|
||||
msgid "This will change the border property. Example: 2px dotted black"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:554
|
||||
msgid "Form border radius"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:555
|
||||
msgid "This will change the border radius property. Example: 2px 2px 2px 2px"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:561
|
||||
msgid "Form shadow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:562
|
||||
msgid "This will change the form's shadow property. Example: 0 1px 0 #006799"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:568
|
||||
msgid "Form field width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:569
|
||||
msgid "Please input the desired width for the form field in pixels. Example: 20"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:575
|
||||
msgid "Form field margin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:576
|
||||
msgid "This will change the margin property. Example: 26px 24px 46px 30px"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:582
|
||||
msgid "Form field border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:583
|
||||
msgid ""
|
||||
"Please input the desired border for the form field. Example: 2px dotted "
|
||||
"black"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:589
|
||||
msgid "Form field border radius"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:590
|
||||
msgid ""
|
||||
"Please input the desired border radiuse for the form field. Example: 5px "
|
||||
"5px 5px 5px"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:596
|
||||
msgid "Form field background"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:603
|
||||
msgid "Form field color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:604
|
||||
msgid "This will change the text color property."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:610
|
||||
msgid "Form label color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:611
|
||||
msgid "This will change the label text color property."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:617
|
||||
msgid "Lost Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:618
|
||||
msgid "You can change the default text for \"Lost your password\" "
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:624
|
||||
msgid "Back to site text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:625
|
||||
msgid "You can change the default text for \"Back to\" site "
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:631
|
||||
msgid "Hide Extra Links"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:632
|
||||
msgid "Show/Hide the links under the login form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:640
|
||||
msgid "Login Form Texts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:645
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:688
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:735
|
||||
msgid "Username label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:646
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:689
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:736
|
||||
msgid "You can change the default text for username label or just delete it."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:652
|
||||
msgid "Password label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:653
|
||||
msgid "You can change the default text for password label or just delete it."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:659
|
||||
msgid "Remember Me label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:660
|
||||
msgid "You can change the default remember me text."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:666
|
||||
msgid "Login label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:667
|
||||
msgid "You can change the default text for the log in button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:673
|
||||
msgid "Register link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:674
|
||||
msgid ""
|
||||
"You can change the default text for the register link at the end of the "
|
||||
"form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:683
|
||||
msgid "Register Form Texts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:696
|
||||
msgid "Email label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:697
|
||||
msgid "You can change the default text for email label or just delete it."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:704
|
||||
msgid "Registration confirmation text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:705
|
||||
msgid "You can change the default registration confirmation text."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:712
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:742
|
||||
msgid "Button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:713
|
||||
msgid "You can change the default text for the register button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:720
|
||||
msgid "Login link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:721
|
||||
msgid "You can change the default text for the login link at the end of the form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:730
|
||||
msgid "Lost Password Form Texts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:743
|
||||
msgid "You can change the default text for the lost password button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:752
|
||||
msgid "Form Button & Links"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:757
|
||||
msgid "Button background"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:758
|
||||
msgid "This will change the submit button's background property"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:764
|
||||
msgid "Button background hover state"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:765
|
||||
msgid "This will change the submit button's background property on hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:771
|
||||
msgid "Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:772
|
||||
msgid "This will change the submit button's border color property"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:778
|
||||
msgid "Button border hover state"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:779
|
||||
msgid "This will change the submit button's border property on hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:785
|
||||
msgid "Button shadow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:786
|
||||
msgid ""
|
||||
"This will change the submit button's shadow property. Example: 0 1px 0 "
|
||||
"#006799"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:792
|
||||
msgid "Button text shadow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:793
|
||||
msgid ""
|
||||
"This will change the submit button text's shadow property. Example: 0 -1px "
|
||||
"1px #006799"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:799
|
||||
msgid "Button color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:800
|
||||
msgid "This will change the submit button's text color property"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:806
|
||||
msgid "Link color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:807
|
||||
msgid "This will change the text color of links that are underneath the login form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:813
|
||||
msgid "Link color hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:814
|
||||
msgid ""
|
||||
"This will change the text color of links, that are underneath the login "
|
||||
"form, on hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:820
|
||||
msgid "Hide \"Remember Me\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:821
|
||||
msgid "Show/Hide the \"Remember Me\" checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:829
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-customizer.php:834
|
||||
msgid "CSS code"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Colorlib Login Customizer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-settings.php:68
|
||||
msgid "Login Customizer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-settings.php:83
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-settings.php:99
|
||||
msgid ""
|
||||
"Login Customizer plugin allows you to easily customize your login page "
|
||||
"straight from your WordPress Customizer! You can preview your changes "
|
||||
"before you save them! Awesome, right?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/class-colorlib-login-customizer-settings.php:100
|
||||
msgid "Start Customizing!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/controls/class-colorlib-login-customizer-control-color-picker.php:74
|
||||
msgid "(clear)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:34
|
||||
#. translators: Login screen title. 1: Login screen name, 2: Network or site
|
||||
#. name
|
||||
msgid "%1$s ‹ %2$s — WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:101 includes/login-template.php:190
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:103
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:104
|
||||
msgid "Powered by WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:174 includes/login-template.php:216
|
||||
msgid "Username or Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:178
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:189
|
||||
msgid "Remember Me"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:195
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:199
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:210
|
||||
msgid "Registration confirmation will be emailed to you."
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:211
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:227
|
||||
msgid "Get New Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:247
|
||||
msgid "Lost your password?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/login-template.php:253
|
||||
msgid "Back to"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Colorlib Login Customizer is an awesome and intuitive plugin that helps you "
|
||||
"personalize your login form directly from the Customizer. The plugin fully "
|
||||
"supports the Live Customizer feature and you can see all the changes in "
|
||||
"real time and edit them."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Colorlib"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://colorlib.com/"
|
||||
msgstr ""
|
||||
@@ -409,6 +409,7 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
|
||||
<!-- wonderm00ns-simple-facebook-open-graph-tags -->
|
||||
<!-- START - Facebook Open Graph, Google+ and Twitter Card Tags 2.1.5 -->
|
||||
<!-- START - Open Graph for Facebook, Google+ and Twitter Card Tags 2.2.6.1 -->
|
||||
|
||||
|
||||
<!-- wp-performance-score-booster -->
|
||||
@@ -1006,3 +1007,8 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
|
||||
|
||||
|
||||
<!-- leadin -->
|
||||
<!-- HubSpot WordPress Plugin v7.5.4: embed JS disabled as a portalId has not yet been configured -->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
# Copyright (C) 2019 DigitalPUSH
|
||||
# This file is distributed under the same license as the DigitalPUSH plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DigitalPUSH 1.4.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/digitalpush-notifications\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-05-08T12:58:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: digitalpush-notifications\n"
|
||||
|
||||
133
spec/fixtures/dynamic_finders/plugin_version/disable-search/change_log/CHANGELOG.md
vendored
Normal file
133
spec/fixtures/dynamic_finders/plugin_version/disable-search/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
# Changelog
|
||||
|
||||
## 1.7.1 _(2019-06-17)_
|
||||
* Unit tests:
|
||||
* Change: Update unit test install script and bootstrap to use latest WP unit test repo
|
||||
* New: Test that the plugin hooks `plugins_loaded` for initialization
|
||||
* Change: Note compatibility through WP 5.2+
|
||||
* Change: Add link to CHANGELOG.md in README.md
|
||||
|
||||
## 1.7 _(2019-03-27)_
|
||||
* New: Add CHANGELOG.md file and move all but most recent changelog entries into it
|
||||
* Change: Initialize plugin on 'plugins_loaded' action instead of on load
|
||||
* Change: Merge `do_init()` into `init()`
|
||||
* Unit tests:
|
||||
* Fix: Discontinue testing deprecated `is_comments_popup` condition
|
||||
* Fix: Use `file_exists()` instead of `locate_template()` to verify presence of file in theme (the latter is unreliable since it is based on constants)
|
||||
* Change: Note compatibility through WP 5.1+
|
||||
* Change: Add README.md link to plugin's page in Plugin Directory
|
||||
* Change: Update copyright date (2019)
|
||||
* Change: Update License URI to be HTTPS
|
||||
* Change: Split paragraph in README.md's "Support" section into two
|
||||
|
||||
## 1.6.1 _(2018-05-19)_
|
||||
* New: Add README.md
|
||||
* New: Add FAQ indicating that the plugin is GDPR-compliant
|
||||
* Unit tests:
|
||||
* Change: Make local copy of `assertQueryTrue()`; apparently it's (now?) a test-specific assertion and not a globally aware assertion
|
||||
* Change: Enable and update `test_no_search_form_appears_even_if_searchform_php_exists()` to use TwentySeventeen theme, since it has searchform.php
|
||||
* Change: Minor whitespace tweaks to bootstrap
|
||||
* Change: Add GitHub link to readme
|
||||
* Change: Note compatibility through WP 4.9+
|
||||
* Change: Update copyright date (2018)
|
||||
* Change: Update installation instruction to prefer built-in installer over .zip file
|
||||
|
||||
## 1.6 _(2017-02-21)_
|
||||
* New: Disable search item from front-end admin bar
|
||||
* Change: Prevent object instantiation
|
||||
* Add private `__construct()`
|
||||
* Add private `__wakeup()`
|
||||
* Change: Update unit test bootstrap
|
||||
* Default `WP_TESTS_DIR` to `/tmp/wordpress-tests-lib` rather than erroring out if not defined via environment variable
|
||||
* Enable more error output for unit tests
|
||||
* Change: Note compatibility through WP 4.7+
|
||||
* Change: Remove support for WordPress older than 4.6 (should still work for earlier versions back to WP 3.6)
|
||||
* Change: Update copyright date (2017)
|
||||
* New: Add LICENSE file
|
||||
|
||||
## 1.5.1 _(2016-01-15)_
|
||||
* Bugfix: Declare `do_init()` as public.
|
||||
|
||||
## 1.5 _(2016-01-14)_
|
||||
* Add: Set 404 HTTP status header for disabled search requests.
|
||||
* Add: Define 'Text Domain' in plugin header and load it.
|
||||
* Add: Create empty index.php to prevent files from being listed if web server has enabled directory listings.
|
||||
* Change: Perform all hook registering during plugins_loaded action.
|
||||
* Change: Explicitly declare methods in unit tests as public.
|
||||
* Change: Note compatibility through WP 4.4+.
|
||||
* Change: Update copyright date (2016).
|
||||
|
||||
## 1.4.2 _(2015-08-23)_
|
||||
* Change: Note compatibility through WP 4.3+.
|
||||
* Change: Minor inline docs changes.
|
||||
|
||||
## 1.4.1 _(2015-02-15)_
|
||||
* Add trivial unit tests for plugin version and class name
|
||||
* Note compatibility through WP 4.1+
|
||||
* Update copyright date (2015)
|
||||
* Add plugin icon
|
||||
|
||||
## 1.4 _(2013-12-15)_
|
||||
* Change to hook `get_search_form` at lower priority so it runs after anything else also using the filter
|
||||
* Change to only affect main query
|
||||
* Remove admin nag for alerting about the presence of searchform.php in a theme since this no longer matters
|
||||
* Add unit tests
|
||||
* Note compatibility through WP 3.8+
|
||||
* Change minimum required compatibility to WP 3.6
|
||||
* Update copyright date (2014)
|
||||
* Add banner
|
||||
* Many changes to readme.txt documentation (namely to pare out a lot of stuff relating to suppression of searchform.php which has since been made possible in WP core)
|
||||
* Change description
|
||||
* Change donate link
|
||||
|
||||
## 1.3.1 _(unreleased)_
|
||||
* Don't show searchform.php admin nag if user doesn't have `edit_themes` cap
|
||||
* Add check to prevent execution of code if file is directly accessed
|
||||
* Re-license as GPLv2 or later (from X11)
|
||||
* Add 'License' and 'License URI' header tags to readme.txt and plugin file
|
||||
* Remove ending PHP close tag
|
||||
* Note compatibility through WP 3.5+
|
||||
* Update copyright date (2013)
|
||||
|
||||
## 1.3
|
||||
* Add notice to main themes and plugins admin pages if active theme has searchform.php template
|
||||
* Note compatibility through WP 3.3+
|
||||
* Add `version()` to return plugin version
|
||||
* Add more documentation and FAQ questions to readme.txt
|
||||
* Add link to plugin directory page to readme.txt
|
||||
* Update copyright date (2012)
|
||||
|
||||
## 1.2.1
|
||||
* Note compatibility through WP 3.2+
|
||||
* Tiny code formatting change (spacing)
|
||||
* Fix plugin homepage and author links in description in readme.txt
|
||||
|
||||
## 1.2
|
||||
* Switch from object instantiation to direct class function invocation
|
||||
* Explicitly declare all functions public static
|
||||
* Add development note
|
||||
* Add additional FAQ question
|
||||
* Note compatibility through WP 3.1+
|
||||
* Update copyright date (2011)
|
||||
|
||||
## 1.1.1
|
||||
* Fix disabling of search widget
|
||||
* Move class instantiation inside of `if(!class_exists())` check
|
||||
* Rename class from `DisableSearch` to `c2c_DisableSearch`
|
||||
* Store object instance in global variable `c2c_disable_search` for possible external manipulation
|
||||
* Note compatibility with WP 3.0+
|
||||
* Minor code reformatting (spacing)
|
||||
* Remove documentation and instructions from top of plugin file (all of that and more are contained in readme.txt)
|
||||
* Add Upgrade Notice section to readme.txt
|
||||
|
||||
## 1.1
|
||||
* Disable/unregister search widget
|
||||
* Add PHPDoc documentation
|
||||
* Minor formatting tweaks
|
||||
* Note compatibility with WP 2.9+
|
||||
* Drop compatibility with WP older than 2.8
|
||||
* Update copyright date
|
||||
* Update readme.txt (including adding Changelog)
|
||||
|
||||
## 1.0
|
||||
* Initial release
|
||||
6021
spec/fixtures/dynamic_finders/plugin_version/dokan-lite/translation_file/languages/dokan-lite.pot
vendored
Normal file
6021
spec/fixtures/dynamic_finders/plugin_version/dokan-lite/translation_file/languages/dokan-lite.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,302 @@
|
||||
# Copyright (C) 2018 Awsm Innovations
|
||||
# This file is distributed under the same license as the Embed Any Document plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Embed Any Document 2.4.1\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Awsm Innovations <hello@awsm.in>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2018-12-10T12:59:35+00:00\n"
|
||||
"PO-Revision-Date: 2018-12-10T12:59:35+00:00\n"
|
||||
"X-Generator: WP-CLI 2.0.1\n"
|
||||
"X-Domain: embed-any-document\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: awsm-embed.php:283
|
||||
msgid "Embed Any Document"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://awsm.in/embed-any-documents"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Embed Any Document WordPress plugin lets you upload and embed your documents easily in your WordPress website without any additional browser plugins like Flash or Acrobat reader. The plugin lets you choose between Google Docs Viewer and Microsoft Office Online to display your documents."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Awsm Innovations"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://awsm.in"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:10
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:15
|
||||
msgid "Default Size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:17
|
||||
#: inc/popup.php:46
|
||||
#: blocks/document/modules/inspector.js:50
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:21
|
||||
#: inc/popup.php:49
|
||||
#: blocks/document/modules/inspector.js:54
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:25
|
||||
msgid "Enter values in pixels or percentage (Example: 500px or 100%)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:29
|
||||
#: inc/popup.php:53
|
||||
#: blocks/document/modules/inspector.js:58
|
||||
msgid "Show Download Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:32
|
||||
#: inc/popup.php:55
|
||||
#: blocks/document/modules/inspector.js:59
|
||||
msgid "For all users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:32
|
||||
#: inc/popup.php:55
|
||||
#: blocks/document/modules/inspector.js:60
|
||||
msgid "For Logged-in users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:32
|
||||
#: inc/popup.php:55
|
||||
#: blocks/document/modules/inspector.js:61
|
||||
msgid "No Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:38
|
||||
#: inc/popup.php:60
|
||||
#: blocks/document/modules/inspector.js:42
|
||||
msgid "Download Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:59
|
||||
msgid "Designed and developed by"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:62
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:63
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:64
|
||||
msgid "Github"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:73
|
||||
msgid "Like the plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:73
|
||||
msgid "Rate Now!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:79
|
||||
msgid "Need Help?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:79
|
||||
msgid "Open a Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:86
|
||||
msgid "Quick Help"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:89
|
||||
#: inc/settings.php:90
|
||||
msgid "How to Embed Documents?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:94
|
||||
#: inc/settings.php:95
|
||||
msgid "About Viewers"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:99
|
||||
#: inc/settings.php:100
|
||||
msgid "Shortcode & Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:104
|
||||
#: inc/settings.php:105
|
||||
msgid "FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:6
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:8
|
||||
#: awsm-embed.php:106
|
||||
#: blocks/document/main.js:71
|
||||
msgid "Add Document"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:16
|
||||
msgid "Upload Document"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:19
|
||||
msgid "Add from URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:26
|
||||
msgid "Enter document URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:28
|
||||
#: awsm-embed.php:175
|
||||
msgid "Add URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:30
|
||||
msgid "back"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:43
|
||||
msgid "Advanced Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:64
|
||||
#: inc/popup.php:71
|
||||
#: blocks/document/modules/inspector.js:66
|
||||
msgid "Viewer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:66
|
||||
#: blocks/document/modules/inspector.js:38
|
||||
msgid "Google Docs Viewer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:66
|
||||
#: blocks/document/modules/inspector.js:40
|
||||
msgid "Microsoft Office Online"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:73
|
||||
msgid "Box"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:74
|
||||
msgid "Drive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:81
|
||||
msgid "Shortcode Preview"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:90
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:90
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/popup.php:94
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:133
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:167
|
||||
#: awsm-embed.php:194
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:173
|
||||
msgid "Nothing to insert"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:174
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:176
|
||||
msgid "Verifying..."
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:177
|
||||
msgid "From URL"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:178
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:268
|
||||
msgid "Embedded Document"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:272
|
||||
msgid "No Url Found"
|
||||
msgstr ""
|
||||
|
||||
#: awsm-embed.php:342
|
||||
msgid "Buy Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Service provider
|
||||
#: awsm-embed.php:345
|
||||
msgid "Add From %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/main.js:24
|
||||
msgid "Document"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/main.js:25
|
||||
msgid "Upload and Embed your documents."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/main.js:28
|
||||
msgid "add document"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/main.js:28
|
||||
msgid "embed document"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/main.js:28
|
||||
msgid "embed any document"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/modules/inspector.js:42
|
||||
msgid "Default download button text"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/modules/inspector.js:50
|
||||
msgid "Width of document either in px or in %"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/modules/inspector.js:54
|
||||
msgid "Height of document either in px or in %"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/document/modules/inspector.js:70
|
||||
msgid "Cache"
|
||||
msgstr ""
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/enter-title-here-changer/change_log/CHANGELOG.MD
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/enter-title-here-changer/change_log/CHANGELOG.MD
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# Enter Title Here Changer Changelog
|
||||
|
||||
## [0.3.0] - July 9, 2019
|
||||
- Improved: More information is added to readme.txt files
|
||||
- Removed: Remove support for GitHub Updater
|
||||
- Changed: Plugin URI has been change to the WordPress repos URI
|
||||
- Fixed: Fix the undefined error when trying to create a new quick draft in dashboard
|
||||
|
||||
[0.3.0]: https://github.com/TremiDkhar/enter-title-here-changer/compare/0.2.0...0.3.0
|
||||
|
||||
## [0.2.0] - July 8, 2019
|
||||
- Uploaded to WordPress.org - `Birthday of Enter Title Here Changer`
|
||||
- Improved: Club all the settings functions inside settings class
|
||||
- Removed: Remove unnecessary methods
|
||||
|
||||
[0.2.0]: https://github.com/TremiDkhar/enter-title-here-changer/compare/0.1.1...0.2.0
|
||||
|
||||
## [0.1.1] - July 7, 2019
|
||||
- Added: Add support for Custom Post Type
|
||||
- Added: Add uninstaller settings to delete data when plugin is removed
|
||||
- Added: Add default plugin data
|
||||
- Fixed: Check the settings is set before output in the settings field
|
||||
|
||||
[0.1.1]: https://github.com/TremiDkhar/enter-title-here-changer/compare/0.1.0...0.1.1
|
||||
|
||||
## 0.1.0 - July 5, 2019
|
||||
- Initial Release
|
||||
@@ -0,0 +1,141 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GDPR Cookie Banner 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-06-25 15:36+0530\n"
|
||||
"PO-Revision-Date: 2019-06-25 15:39+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_x;_ex;_n;_nx;_n_noop;_nx_noop;"
|
||||
"translate_nooped_plural;esc_html__;esc_html_e;esc_html_x;"
|
||||
"esc_attr__;esc_attr_e;esc_attr_x\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:117
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:137
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:138
|
||||
msgid "Banner Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:139
|
||||
msgid "Banner Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:140
|
||||
msgid "Banner Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:141
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:142
|
||||
msgid "Banner Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:143
|
||||
msgid "Banner Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:154
|
||||
msgid "Settings For GDPR Cookie Banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:170
|
||||
msgid "Banner Message Goes Here....."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:192
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:198
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:193
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:199
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:215
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:222
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:229
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:216
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:223
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:230
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:217
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:224
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:231
|
||||
msgid "Small"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:248
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:257
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:249
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:258
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:312
|
||||
msgid "GDPR Cookie Banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:353
|
||||
msgid "Banner Message cannot be blank"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:371
|
||||
msgid "Banner Position field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:375
|
||||
msgid "Banner Position field is not valid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:393
|
||||
msgid "Banner Size field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:397
|
||||
msgid "Banner Size field is not valid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:424
|
||||
msgid "Banner Font field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:439
|
||||
msgid "Banner Font Size field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:49
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:55
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:59
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:60
|
||||
msgid "Link Copied!!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,313 @@
|
||||
# Copyright (C) 2019 StudioPress
|
||||
# This file is distributed under the GNU General Public License v2.0 (or later).
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Genesis Responsive Slider 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: StudioPress <translations@studiopress.com>\n"
|
||||
"POT-Creation-Date: 2019-03-18 23:18:31+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: StudioPress <translations@studiopress.com>\n"
|
||||
"Language-Team: English <translations@studiopress.com>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.4.4\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: English\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-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:58
|
||||
msgid "Settings reset."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:60
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:73
|
||||
msgid "Slider Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:95
|
||||
msgid "Genesis Responsive Slider Settings_Admin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:135
|
||||
#: includes/class-genesis-responsive-slider-widget.php:27
|
||||
msgid "Genesis - Responsive Slider"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:136
|
||||
#: includes/class-genesis-responsive-slider-admin.php:147
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:137
|
||||
#: includes/class-genesis-responsive-slider-admin.php:148
|
||||
msgid "Reset Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:137
|
||||
msgid "Are you sure you want to reset?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:179
|
||||
msgid "Type of Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:181
|
||||
msgid "Would you like to use posts or pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:201
|
||||
msgid "By Taxonomy and Terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:201
|
||||
msgid "Choose a term to determine what slides to include"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:205
|
||||
msgid "All Taxonomies and Terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:233
|
||||
msgid "Include or Exclude by Taxonomy ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:236
|
||||
msgid ""
|
||||
"List which category, tag or other taxonomy IDs to exclude. (1,2,3,4 for "
|
||||
"example)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:247
|
||||
#. Translators: %s is the ID.
|
||||
msgid "Include or Exclude by %s ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:250
|
||||
msgid ""
|
||||
"Choose the include / exclude slides using their post / page ID in a "
|
||||
"comma-separated list. (1,2,3,4 for example)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:254
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:255
|
||||
msgid "Include"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:256
|
||||
msgid "Exclude"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:261
|
||||
msgid "List which"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:261
|
||||
#: includes/class-genesis-responsive-slider-admin.php:281
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:261
|
||||
msgid "to include / exclude. (1,2,3,4 for example)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:267
|
||||
msgid "Number of Slides to Show"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:272
|
||||
msgid "Number of Posts to Offset"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:277
|
||||
msgid "Order By"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:279
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:280
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:282
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:290
|
||||
msgid "Transition Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:293
|
||||
msgid "Time Between Slides (in milliseconds)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:298
|
||||
msgid "Slide Transition Speed (in milliseconds)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:303
|
||||
msgid "Slider Effect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:304
|
||||
#: includes/class-genesis-responsive-slider-admin.php:353
|
||||
msgid "Select one of the following:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:306
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:307
|
||||
msgid "Fade"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:313
|
||||
msgid "Display Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:316
|
||||
msgid "Maximum Slider Width (in pixels)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:321
|
||||
msgid "Maximum Slider Height (in pixels)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:326
|
||||
msgid "Display Next / Previous Arrows in Slider?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:330
|
||||
msgid "Display Pagination in Slider?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:335
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:338
|
||||
msgid "Do not link Slider image to Post/Page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:342
|
||||
msgid "Display Post/Page Title in Slider?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:345
|
||||
msgid "Display Content in Slider?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:349
|
||||
msgid "Hide Title & Content on Mobile Devices"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:355
|
||||
msgid "Display post content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:356
|
||||
msgid "Display post excerpts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:361
|
||||
msgid "More Text (if applicable)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:366
|
||||
msgid "Limit content to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:368
|
||||
msgid "characters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:371
|
||||
msgid ""
|
||||
"Using this option will limit the text and strip all formatting from the "
|
||||
"text displayed. To use this option, choose \"Display post content\" in the "
|
||||
"select box above."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:374
|
||||
msgid "Slider Excerpt Width (in percentage)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:379
|
||||
msgid "Excerpt Location (vertical)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:381
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:382
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:387
|
||||
msgid "Excerpt Location (horizontal)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:389
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:390
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-admin.php:438
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-widget.php:19
|
||||
msgid "Displays a slideshow inside a widget area"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-widget.php:221
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider-widget.php:230
|
||||
#. Translators: %s Link to the Slider settings.
|
||||
msgid ""
|
||||
"To configure slider options, please go to the <a href=\"%s\">Slider "
|
||||
"Settings</a> page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-genesis-responsive-slider.php:237
|
||||
msgid "[Continue Reading]"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Genesis Responsive Slider"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.studiopress.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "A responsive featured slider for the Genesis Framework."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "StudioPress"
|
||||
msgstr ""
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/genesis-simple-edits/composer_file/package.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/genesis-simple-edits/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "genesis-simple-edits",
|
||||
"description": "Development files for the Genesis Simple Edits plugin.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/copyblogger/genesis-simple-edits"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"grunt": "*",
|
||||
"grunt-autoprefixer": "*",
|
||||
"grunt-checktextdomain": "*",
|
||||
"grunt-contrib-cssmin": "*",
|
||||
"grunt-contrib-imagemin": "*",
|
||||
"grunt-contrib-jshint": "*",
|
||||
"grunt-contrib-uglify": "*",
|
||||
"grunt-contrib-watch": "*",
|
||||
"grunt-csscomb": "*",
|
||||
"grunt-jsbeautifier": "*",
|
||||
"grunt-jsvalidate": "*",
|
||||
"grunt-phplint": "*",
|
||||
"grunt-styledocco": "*",
|
||||
"grunt-wp-i18n": "*",
|
||||
"load-grunt-tasks": "*"
|
||||
},
|
||||
"plugin": {
|
||||
"name": "Genesis Simple Edits",
|
||||
"uri": "https://github.com/copyblogger/genesis-simple-edits",
|
||||
"description": "Genesis Simple Edits lets you edit the three most commonly modified areas in any Genesis theme: the post-info, the post-meta, and the footer area.",
|
||||
"author": "StudioPress",
|
||||
"authoruri": "http://www.studiopress.com/",
|
||||
"version": "2.2.1",
|
||||
"license": "GPL-2.0+",
|
||||
"licenseuri": "http://www.gnu.org/licenses/gpl-2.0.html",
|
||||
"textdomain": "genesis-simple-edits"
|
||||
}
|
||||
}
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/geoip-detect/composer_file/package.json
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/geoip-detect/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "geoip-detect",
|
||||
"version": "2.11.0",
|
||||
"description": "Geoip Detection - Wordpress Plugin (JS)",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:yellowtree/geoip-detect.git",
|
||||
"author": "Benjamin Pick <benjaminpick@github.com>",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"clean": "rm -rf .cache",
|
||||
"start": "rm -rf js/dist && parcel parcel.urls --out-dir js/dist",
|
||||
"build": "rm -rf js/dist && parcel build parcel.urls --out-dir js/dist"
|
||||
},
|
||||
"private": false,
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.4.3",
|
||||
"babel-plugin-transform-class-properties": "^6.24.1",
|
||||
"lodash.get": "^4.4.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.0.0-0",
|
||||
"@babel/plugin-transform-runtime": "^7.4.3",
|
||||
"babel-plugin-transform-runtime": "^6.23.0",
|
||||
"parcel-bundler": "^1.11.0",
|
||||
"parcel-plugin-assets-list": "^1.7.0"
|
||||
}
|
||||
}
|
||||
2576
spec/fixtures/dynamic_finders/plugin_version/groovy-menu-free/translation_file/languages/groovy-menu.pot
vendored
Normal file
2576
spec/fixtures/dynamic_finders/plugin_version/groovy-menu-free/translation_file/languages/groovy-menu.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4394
spec/fixtures/dynamic_finders/plugin_version/happyforms/translation_file/languages/happyforms.pot
vendored
Normal file
4394
spec/fixtures/dynamic_finders/plugin_version/happyforms/translation_file/languages/happyforms.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
20
spec/fixtures/dynamic_finders/plugin_version/imagify/composer_file/package.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/imagify/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "imagify",
|
||||
"description": "Imagify Image Optimizer. Dramatically reduce image file sizes without losing quality, make your website load faster, boost your SEO and save money on your bandwidth.",
|
||||
"version": "1.9.3.1",
|
||||
"homepage": "https://wordpress.org/plugins/imagify/",
|
||||
"license": "GPL-2.0",
|
||||
"private": true,
|
||||
"author": {
|
||||
"name": "WP Media",
|
||||
"url": "http://wp-media.me"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^7.0.1",
|
||||
"grunt": "^1.0.1",
|
||||
"grunt-contrib-cssmin": "^1.0.1",
|
||||
"grunt-contrib-uglify": "^2.1.0",
|
||||
"grunt-eslint": "^20.0.0",
|
||||
"grunt-postcss": "^0.8.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
# Copyright (C) 2019 WPBeginner
|
||||
# This file is distributed under the same license as the Insert Headers and Footers plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Insert Headers and Footers 1.4.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/insert-headers-and-footers\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-05-08T12:58:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: insert-headers-and-footers\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Insert Headers and Footers"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpbeginner.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows you to insert code or text in the header or footer of your WordPress blog"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPBeginner"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:2
|
||||
#: views/settings.php:23
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:28
|
||||
msgid "Scripts in Header"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:30
|
||||
msgid "These scripts will be printed in the <code><head></code> section."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:33
|
||||
msgid "Scripts in Footer"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:35
|
||||
msgid "These scripts will be printed above the <code></body></code> tag."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:39
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of this plugin
|
||||
#: views/dashboard-notices.php:11
|
||||
msgid "Thank you for installing %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: views/dashboard-notices.php:14
|
||||
msgid "Click here"
|
||||
msgstr ""
|
||||
|
||||
#: views/dashboard-notices.php:14
|
||||
msgid "to configure the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:9
|
||||
msgid "Improve Your Site"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:14
|
||||
msgid "Want to take your site to the next level? Check out our daily free WordPress tutorials on "
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:15
|
||||
msgid "WPBeginner blog"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:19
|
||||
msgid "Some of our popular guides:"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:24
|
||||
msgid "Speed Up WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:27
|
||||
msgid "Improve WordPress Security"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:31
|
||||
msgid "Boost Your WordPress SEO"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:41
|
||||
msgid "Our WordPress Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:45
|
||||
msgid "Like this plugin? Check out our other WordPress plugins:"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:49
|
||||
msgid "WPForms"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:51
|
||||
msgid " - Drag & Drop WordPress Form Builder"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:55
|
||||
msgid "MonsterInsights"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:57
|
||||
msgid " - Google Analytics Made Easy for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:61
|
||||
msgid "OptinMonster"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:63
|
||||
msgid " - Best WordPress Lead Generation Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:67
|
||||
msgid "SeedProd"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:69
|
||||
msgid " - Get the best WordPress Coming Soon Page plugin"
|
||||
msgstr ""
|
||||
|
||||
#: ihaf.php:145
|
||||
msgid "Sorry, you are not allowed to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: ihaf.php:154
|
||||
msgid "nonce field is missing. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: ihaf.php:157
|
||||
msgid "Invalid nonce specified. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: ihaf.php:165
|
||||
msgid "Settings Saved."
|
||||
msgstr ""
|
||||
623
spec/fixtures/dynamic_finders/plugin_version/ithemes-sync/translation_file/lang/ithemes-sync.pot
vendored
Normal file
623
spec/fixtures/dynamic_finders/plugin_version/ithemes-sync/translation_file/lang/ithemes-sync.pot
vendored
Normal file
@@ -0,0 +1,623 @@
|
||||
# Copyright (C) 2019 iThemes Sync
|
||||
# This file is distributed under the same license as the iThemes Sync package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: iThemes Sync 2.0.15\n"
|
||||
"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
|
||||
"POT-Creation-Date: 2019-02-25 15:38:37+00:00\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: admin.php:129
|
||||
msgid ""
|
||||
"iThemes Sync is active. <a class=\"ithemes-sync-notice-button\" href=\"%s"
|
||||
"\">Manage Sync</a> <a class=\"ithemes-sync-notice-dismiss\" href=\"#\">×</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:143
|
||||
msgid ""
|
||||
"iThemes Sync is almost ready. <a class=\"ithemes-sync-notice-button\" href="
|
||||
"\"%s\">Set Up Sync</a> <a class=\"ithemes-sync-notice-hide\" href=\"#\">×</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:158
|
||||
msgid ""
|
||||
"iThemes Sync will show for your user for the next %1$s. Click <a href=\"%2$s"
|
||||
"\">here</a> to hide iThemes Sync again."
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:168
|
||||
msgid "iThemes Sync is now hidden from your user again."
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# ithemes-sync.pot (iThemes Sync 2.0.15) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: admin.php:179 admin.php:185 settings-page.php:268
|
||||
msgid "iThemes Sync"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:213 lib/updater/admin.php:218
|
||||
msgid "Manage iThemes product licenses to receive automatic upgrade support"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:213 lib/updater/admin.php:218
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:254
|
||||
msgid "Where we send your data"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:255
|
||||
msgid ""
|
||||
"%s%sSuggested text:%s This web site uses a third party service to manage "
|
||||
"administrative tasks. If you leave a comment, submit personal information "
|
||||
"via a contact form, or otherwise exchange personal details with us, it is "
|
||||
"possible that we may use this service to manage that data. Please visit the "
|
||||
"%siThemes Privacy Policy%s for more information regarding the way they "
|
||||
"handle their data.%s%s"
|
||||
msgstr ""
|
||||
|
||||
#: client-dashboard.php:366
|
||||
msgctxt "Welcome panel"
|
||||
msgid "Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: duplicator.php:31
|
||||
msgid "Duplicate Post"
|
||||
msgstr ""
|
||||
|
||||
#: duplicator.php:71
|
||||
msgid "copy"
|
||||
msgstr ""
|
||||
|
||||
#: init.php:19
|
||||
msgid ""
|
||||
"Only one iThemes Sync plugin can be active at a time. The plugin at <code>"
|
||||
"%1$s</code> is running while the plugin at <code>%2$s</code> was skipped in "
|
||||
"order to prevent errors. Please deactivate the plugin that you do not wish "
|
||||
"to use."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/admin.php:177
|
||||
msgid ""
|
||||
"To receive automatic updates for %l, use the <a href=\"%s\">iThemes "
|
||||
"Licensing</a> page found in the Settings menu."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/admin.php:184 lib/updater/admin.php:190
|
||||
#: lib/updater/settings-page.php:268
|
||||
msgid "iThemes Licensing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:45
|
||||
msgid "Unrecognized response from <code>wp_remote_get</code>."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:61
|
||||
msgid "Unrecognized response from iThemes API server."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:309
|
||||
msgid ""
|
||||
"Incorrect password. Please make sure that you are supplying your iThemes "
|
||||
"membership username and password details."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:313
|
||||
msgid ""
|
||||
"Invalid username. Please make sure that you are supplying your iThemes "
|
||||
"membership username and password details."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:316
|
||||
msgid ""
|
||||
"The licensing server reports that the %1$s (%2$s) product is unknown. Please "
|
||||
"contact support for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:319
|
||||
msgid ""
|
||||
"%1$s could not be licensed since the membership account is out of available "
|
||||
"licenses for this product. You can unlicense the product on other sites or "
|
||||
"upgrade your membership to one with a higher number of licenses in order to "
|
||||
"increase the amount of available licenses."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:322
|
||||
msgid ""
|
||||
"%s could not be licensed due to an internal error. Please try to license %s "
|
||||
"again at a later time. If this problem continues, please contact iThemes "
|
||||
"support."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:328
|
||||
msgid ""
|
||||
"An unknown error relating to the %1$s product occurred. Please contact "
|
||||
"iThemes support. Error details: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/api.php:330
|
||||
msgid ""
|
||||
"An unknown error occurred. Please contact iThemes support. Error details: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. Error message, 2. Error code
|
||||
#: lib/updater/information.php:42
|
||||
msgid "<p>Unable to get changelog data at this time.</p><p>%1$s (%2$s)</p>"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/server.php:80
|
||||
msgid ""
|
||||
"The server could not be contacted. Requests are delayed for %d minute to "
|
||||
"allow the server to recover."
|
||||
msgid_plural ""
|
||||
"The server could not be contacted. Requests are delayed for %d minutes to "
|
||||
"allow the server to recover."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: lib/updater/server.php:157
|
||||
msgid "The server was unable to be contacted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/server.php:167
|
||||
msgid ""
|
||||
"An error occurred when communicating with the iThemes update server: %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:95 settings-page.php:239
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:102
|
||||
msgid ""
|
||||
"You must supply an iThemes membership username and password in order to "
|
||||
"license products."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:104
|
||||
msgid ""
|
||||
"You must supply an iThemes membership username in order to license products."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:106
|
||||
msgid ""
|
||||
"You must supply an iThemes membership password in order to license products."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:108
|
||||
msgid ""
|
||||
"You must select at least one product to license. Ensure that you select the "
|
||||
"products that you wish to license in the listing below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:123
|
||||
msgid ""
|
||||
"An unknown server error occurred. Please try to license your products again "
|
||||
"at another time."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:143
|
||||
msgid "Your product subscription has expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:150
|
||||
msgid "Successfully licensed %l."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:154 lib/updater/settings-page.php:159
|
||||
msgid "Unable to license %1$s. Reason: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:167
|
||||
msgid ""
|
||||
"You must supply an iThemes membership username and password in order to "
|
||||
"remove licenses."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:169
|
||||
msgid ""
|
||||
"You must supply an iThemes membership username in order to remove licenses."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:171
|
||||
msgid ""
|
||||
"You must supply an iThemes membership password in order to remove licenses."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:173
|
||||
msgid ""
|
||||
"You must select at least one license to remove. Ensure that you select the "
|
||||
"licenses that you wish to remove in the listing below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:188
|
||||
msgid ""
|
||||
"An unknown server error occurred. Please try to remove licenses from your "
|
||||
"products again at another time."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:209
|
||||
msgid "Unknown server error."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:214
|
||||
msgid "Successfully removed license from %l."
|
||||
msgid_plural "Successfully removed licenses from %l."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: lib/updater/settings-page.php:218
|
||||
msgid "Unable to remove license from %1$s. Reason: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:290
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:296
|
||||
msgid "Quick Release Updates"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:303
|
||||
msgid "Enable quick release updates"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:306
|
||||
msgid ""
|
||||
"Some products have quick releases that are created to solve specific issues "
|
||||
"that some users experience. In order to avoid causing users to have updates "
|
||||
"show up too frequently, automatic updates to these quick releases are "
|
||||
"disabled by default. Enabling this feature allows quick releases to be "
|
||||
"available to the automatic update system. Using this option is only "
|
||||
"recommended if support has requested that you enable it in order to receive "
|
||||
"a quick release. You should disable this option at a later time after "
|
||||
"confirming that the quick release solves the issue for you."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:313
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:332 lib/updater/settings-page.php:363
|
||||
#: lib/updater/settings-page.php:487 lib/updater/settings-page.php:555
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:333 lib/updater/settings-page.php:365
|
||||
msgid "Member"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:334 lib/updater/settings-page.php:367
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:335 lib/updater/settings-page.php:368
|
||||
msgid "Remaining Licenses"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:351
|
||||
msgid "Licensed Products"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:357 lib/updater/settings-page.php:481
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:366
|
||||
msgid "Product Status"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:376
|
||||
msgid "unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:417 lib/updater/settings-page.php:511
|
||||
msgid "Select %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:437
|
||||
msgid "Remove Licenses"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:471
|
||||
msgid "Unlicensed Products"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:473
|
||||
msgid ""
|
||||
"The following products have not been licensed. Licensing a product gives you "
|
||||
"access to automatic updates from within WordPress."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:474
|
||||
msgid ""
|
||||
"To license products, select the products you wish to license, enter your "
|
||||
"iThemes membership username and password, and press the License Products "
|
||||
"button."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:475
|
||||
msgid "Need help? <a href=\"%s\">Click here for a quick video tutorial</a>."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:527
|
||||
msgid "License Products"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:547
|
||||
msgid "Unrecognized Products"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:549
|
||||
msgid ""
|
||||
"The following products were not recognized by the licensing system. This can "
|
||||
"be due to a bug in the product code, a temporary server issue, or because "
|
||||
"the product is no longer supported."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:550
|
||||
msgid ""
|
||||
"Please check this page again at a later time to see if the problem resolves "
|
||||
"itself. If the product remains, please contact <a href=\"%s\">iThemes "
|
||||
"support</a> and provide them with the details given below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:556
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:557
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:558
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:559
|
||||
msgid "Server Response"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:569
|
||||
msgid "Unknown Error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/updater/settings-page.php:608
|
||||
msgid "%d day"
|
||||
msgid_plural "%d days"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: lib/updater/settings-page.php:610
|
||||
msgid "%d hour"
|
||||
msgid_plural "%d hours"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: lib/updater/settings-page.php:612
|
||||
msgid "%d minute"
|
||||
msgid_plural "%d minutes"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: lib/updater/settings-page.php:614
|
||||
msgid "%d second"
|
||||
msgid_plural "%d seconds"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: lib/updater/settings-page.php:617
|
||||
msgid "%s ago"
|
||||
msgstr ""
|
||||
|
||||
#: notice-handler.php:89
|
||||
msgid "The Sync server returned an unknown response."
|
||||
msgstr ""
|
||||
|
||||
#: server.php:188
|
||||
msgid ""
|
||||
"An unrecognized server response format was received from the iThemes Sync "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:54
|
||||
msgid "Are you sure that you wish to unsync this user?"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:91 settings-page.php:108 settings-page.php:117
|
||||
#: settings-page.php:129
|
||||
msgid "The user could not be synced."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:96
|
||||
msgid ""
|
||||
"<p>The iThemes Sync server was unable to be contacted. WordPress returned "
|
||||
"the following error when trying to contact the server:</p><p>%1$s</p><p>If "
|
||||
"you continue to experience problems, please contact <a target=\"_blank\" "
|
||||
"href=\"%2$s\">iThemes support</a>.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:98
|
||||
msgid ""
|
||||
"<p>The iThemes Sync server was unable to process the request at this time. "
|
||||
"Please try again in a few minutes.</p><p>If you continue to experience "
|
||||
"problems, please contact <a target=\"_blank\" href=\"%s\">iThemes support</"
|
||||
"a>.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:109
|
||||
msgid ""
|
||||
"The sync request failed due to a server communication error. The server sent "
|
||||
"a response that did not include a authentication key."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:118
|
||||
msgid ""
|
||||
"The sync request failed due to a server communication error. The server sent "
|
||||
"a response that did not include a user ID."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:138
|
||||
msgid "Woohoo! Your site has been synced."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:142
|
||||
msgid ""
|
||||
"Your user has now used all of the sites available to be added to Sync. More "
|
||||
"information can be found on the <a href=\"%s\" target=\"_blank\">iThemes "
|
||||
"membership panel</a>."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:144
|
||||
msgid "Your user can Sync 1 additional site."
|
||||
msgid_plural "Your user can sync %d additional sites."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: settings-page.php:160 settings-page.php:172
|
||||
msgid "The user could not be unsynced."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:181
|
||||
msgid "The user was successfully unsynced."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:266
|
||||
msgid "Sync This Site"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:276
|
||||
msgid "Go Manage Your Synced Sites"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:279
|
||||
msgid "Manage Synced Users"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:281
|
||||
msgid ""
|
||||
"Sync allows you to sync your site with multiple users.<br>View the list of "
|
||||
"synced users below, unsync users if needed, or add additional users below."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:285
|
||||
msgid "Synced Users"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:300
|
||||
msgid "Invalid Users"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:302
|
||||
msgid ""
|
||||
"The following users were not recognized by the server. Unsync them and "
|
||||
"resync them again to fix this error."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:320
|
||||
msgid "Enter your iThemes username & password to sync this site."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:322
|
||||
msgid "Add Users"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:323
|
||||
msgid ""
|
||||
"Add additional users if more than one person will be managing updates for "
|
||||
"this site.<br>To sync an additional user, enter their iThemes username and "
|
||||
"password below."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:327
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:330
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:333
|
||||
msgid "Sync"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:133
|
||||
msgid ""
|
||||
"The user is not authenticated. Could not remove authentication for the user."
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:199
|
||||
msgid ""
|
||||
"A valid user was unable to be found. A valid user is required in order to do "
|
||||
"a successful ping."
|
||||
msgstr ""
|
||||
|
||||
#: social.php:86
|
||||
msgid "Social"
|
||||
msgstr ""
|
||||
|
||||
#: social.php:102
|
||||
msgid "This post is already published."
|
||||
msgstr ""
|
||||
|
||||
#: social.php:119
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: social.php:123
|
||||
msgid "Template Tags"
|
||||
msgstr ""
|
||||
|
||||
#: verbs/db-optimization.php:96
|
||||
msgid "Delete Trackback URLs"
|
||||
msgstr ""
|
||||
|
||||
#: verbs/db-optimization.php:97
|
||||
msgid ""
|
||||
"Deletes URLs added to the \"pinged\" and \"to_ping\" columns in your posts "
|
||||
"table."
|
||||
msgstr ""
|
||||
|
||||
#: verbs/db-optimization.php:382
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: verbs/get-wordpress-settings.php:141
|
||||
msgctxt "timezone date format"
|
||||
msgid "Y-m-d H:i:s"
|
||||
msgstr ""
|
||||
|
||||
#: verbs/get-wordpress-settings.php:184
|
||||
msgid "F j, Y"
|
||||
msgstr ""
|
||||
|
||||
#: verbs/get-wordpress-settings.php:198
|
||||
msgid "g:i a"
|
||||
msgstr ""
|
||||
|
||||
#: verbs/get-wordpress-settings.php:239 verbs/get-wordpress-settings.php:246
|
||||
msgid "— Select —"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://ithemes.com/sync"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Manage updates to your WordPress sites easily in one place."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "iThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://ithemes.com/"
|
||||
msgstr ""
|
||||
1276
spec/fixtures/dynamic_finders/plugin_version/kirki/change_log/CHANGELOG.md
vendored
Normal file
1276
spec/fixtures/dynamic_finders/plugin_version/kirki/change_log/CHANGELOG.md
vendored
Normal file
File diff suppressed because it is too large
Load Diff
798
spec/fixtures/dynamic_finders/plugin_version/leadin/change_log/changelog.txt
vendored
Normal file
798
spec/fixtures/dynamic_finders/plugin_version/leadin/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,798 @@
|
||||
= 7.5.4 (2019.06.26) =
|
||||
- Hotfix
|
||||
|
||||
= 7.5.3 (2019.06.26) =
|
||||
- Rename "chatflow" to "live chat"
|
||||
- Update readme.txt
|
||||
- Update banners
|
||||
- Fix themes colors
|
||||
- Refactor code style
|
||||
|
||||
= 7.5.2 (2019.06.14) =
|
||||
- Add webpack and use ES6
|
||||
- Show "complete your signup" banner for WPEngine themes
|
||||
- Auto-generate assets and update styles for WPEngine themes
|
||||
- Handle messages timeout errors
|
||||
- Fix navigation in single page app
|
||||
- Enable non-HubSpot forms by default
|
||||
- Add forms tab in settings
|
||||
- Add form builder to WordPress
|
||||
|
||||
= 7.5.1 (2019.05.29) =
|
||||
- Fix version flags
|
||||
- Add unit tests
|
||||
- Add languages
|
||||
|
||||
= 7.5.0 (2019.05.22) =
|
||||
- Add banner to inform users if the version is outdated
|
||||
- Add notification that informs user if something is not working on our
|
||||
servers
|
||||
- Reload window when connection happens on a different tab
|
||||
- Reduce loading time for non authenticated users
|
||||
- Improve performances when navigating between pages
|
||||
- Add tests
|
||||
|
||||
= 7.4.1 (2019.05.07) =
|
||||
- Implement faster navigation
|
||||
- Fix signup url
|
||||
- Use i18n on PHP
|
||||
|
||||
= 7.4.0 (2019.04.30) =
|
||||
- Improve performances
|
||||
- Remove dependencies from HubSpot's CDN
|
||||
- Update license
|
||||
|
||||
= 7.3.2 (2019.04.24) =
|
||||
- Move assets to /assets folder
|
||||
- New settings page
|
||||
- Improve forms page loading time
|
||||
|
||||
= 7.3.1 (2019.04.17) =
|
||||
- Fix missing assets
|
||||
|
||||
= 7.3.0 (2019.04.17) =
|
||||
- Drop support for PHP<5.6
|
||||
- Drop support for WP<4
|
||||
- Removed hubspot from admin top bar
|
||||
|
||||
= 7.2.2 (2019.04.09) =
|
||||
- Fix for whitespace bug
|
||||
|
||||
= 7.2.1 (2019.04.08) =
|
||||
- Added link to Chatflows
|
||||
|
||||
= 7.2.0 (2019.04.03) =
|
||||
- Add background iframe
|
||||
|
||||
= 7.1.1 (2019.04.03) =
|
||||
- Remove OAuth step from signup
|
||||
- Fix assets in listing
|
||||
|
||||
= 7.1.0 (2019.04.01) =
|
||||
- Remove slumber/oauth mode
|
||||
- Fix icon in top menu
|
||||
- Add help widget
|
||||
- Update message on connection error
|
||||
- April fool prank
|
||||
|
||||
= 7.0.7 (2019.03.25) =
|
||||
- Add helpers for acceptance tests
|
||||
- Remove dialog on settings page
|
||||
- Load forms script from right environment
|
||||
- Test on PHP 5.6
|
||||
- Design fixes on the intro page
|
||||
|
||||
= 7.0.6 (2019.03.08) =
|
||||
- Add debug helpers
|
||||
|
||||
= 7.0.5 (2019.03.05) =
|
||||
- Update description to explain how plugin provides WordPress CRM
|
||||
- Fix connection to wrong portal id
|
||||
- Add pop-up on login page
|
||||
- Add intro screen for un-logged users
|
||||
- Update HubSpot forms script
|
||||
- Disable "Create form" when user has no permissions
|
||||
- Skip authorization token verification
|
||||
- Test with most popular plugins
|
||||
|
||||
= 7.0.4 (2019.02.19) =
|
||||
- Show welcome dialog after connection
|
||||
- Remove extra navigation in connection flow
|
||||
- Add pre-fill to signup form
|
||||
- Add plugin version to HTML comment
|
||||
- Fix enqueue style error
|
||||
|
||||
= 7.0.3 (2019.02.12) =
|
||||
- Update HubSpot logos
|
||||
|
||||
= 7.0.2 (2019.01.22) =
|
||||
- Plugin readme update
|
||||
- Fix wrong settings link
|
||||
|
||||
= 7.0.1 (2018.10.12) =
|
||||
- Send page analytics data into HubSpot
|
||||
|
||||
= 7.0.0 (2018.10.03) =
|
||||
- Add deeper integration with HubSpot. Starts a new release of a new forms integration within WordPress. Released progressively for some users.
|
||||
|
||||
= 6.1.12 (2018.09.14) =
|
||||
- Internal update
|
||||
|
||||
= 6.1.11 (2018.08.30) =
|
||||
- Plugin description update
|
||||
|
||||
= 6.1.10 (2018.08.28) =
|
||||
- Plugin readme update
|
||||
|
||||
= 6.1.9 (2018.07.27) =
|
||||
- New product screenshots with HubSpot Form Builder redesign
|
||||
|
||||
= 6.1.8 (2018.07.27) =
|
||||
- Plugin description updated to describe HubSpot Conversion Tools
|
||||
|
||||
= 6.1.7 (2018.06.26) =
|
||||
- Plugin description updated to describe HubSpot Form Builder
|
||||
|
||||
= 6.1.6 (2018.06.22) =
|
||||
- Add shortcodes to use forms and CTA tools
|
||||
|
||||
= 6.1.5 (2018.05.22) =
|
||||
- Code cleanup
|
||||
|
||||
= 6.1.4 (2017.07.25) =
|
||||
- Updated supported version of WordPress
|
||||
- Provide more accurate readme
|
||||
|
||||
= 6.1.3 (2016.11.22) =
|
||||
- Fix issue where accounts could not reconnect
|
||||
|
||||
= 6.1.0 (2016.11.16) =
|
||||
- Fix an issue where accounts could not be disconnected
|
||||
|
||||
= 6.0.0 (2016.11.10) =
|
||||
- Leadin is now HubSpot Marketing Free - learn more at http://www.hubspot.com/products/marketing
|
||||
|
||||
= 5.5.3 (2016.09.01) =
|
||||
- Clean up remaining deployment issues
|
||||
|
||||
= 5.5.1 (2016.08.30) =
|
||||
- Added a new endpoint handler to remove hapikey and portalId from the database when removing the account.
|
||||
|
||||
= 5.4.1 (2016.08.17) =
|
||||
- Moved all embed loads to the new unified script loader, which has been in beta since v5.2.1.
|
||||
|
||||
= 5.3.1 (2016.08.11) =
|
||||
- Added "collected forms" screen to the navigation, a new way to manage your collected forms
|
||||
- Shifted more accounts to the new unified script loader following a beta release in 5.2.1. Now all "existing app" customers, and all new customers use the unified loader.
|
||||
|
||||
= 5.2.1 (2016.08.04) =
|
||||
- New "existing app" customers use the new unified script loader
|
||||
|
||||
= 5.1.1 (2016.06.20) =
|
||||
- Rebranding "Flows" to "Lead Flows"
|
||||
- Correcting the settings link in Plugins when Leadin is connected to an existing Leadin web app account
|
||||
|
||||
= 5.0.2 (2016.06.02) =
|
||||
- Update deployment script
|
||||
|
||||
= 5.0.1 (2016.06.02) =
|
||||
- The Leadin plugin can now be installed for an existing Leadin web app account
|
||||
|
||||
= 4.8.2 (2016.05.30) =
|
||||
- Added 'Flows' to the WordPress navigation - all-in-one lead conversion widgets - http://leadin.hubspot.com/flows
|
||||
|
||||
= 4.7.1 (2016.04.14) =
|
||||
- Stopped using get_currentuserinfo(), which was deprecated in WordPress 4.5 in favor of wp_get_current_user()
|
||||
|
||||
= 4.6.8 (2016.04.01) =
|
||||
- Updated supported version of WordPress
|
||||
|
||||
= 4.6.6 (2016.03.23) =
|
||||
- Changed URL where Leadin's JavaScript loads from. This should help with customers who were experiencing blank screens due to overzealous adblocking
|
||||
- Updated readme
|
||||
|
||||
= 4.5.0 (2016.01.14) =
|
||||
- Renamed "stats" to "dashboard" in the menu
|
||||
- Fixed a bug where deactivating the plugin in multisite mode would cause a PHP error
|
||||
- Removed old PHP that was used before Leadin was hosted in an iFrame, as it is now
|
||||
- Updated screenshots
|
||||
|
||||
= 4.4.0 (2015.12.14) =
|
||||
- Remove migration code
|
||||
|
||||
= 4.3.2 (2015.12.02) =
|
||||
- Wordpress assets update
|
||||
|
||||
= 4.3.1 (2015.11.26) =
|
||||
- Logo updates
|
||||
|
||||
= 4.3.0 (2015.09.30) =
|
||||
- Load time improvements to the tracking script
|
||||
|
||||
= 4.2.3 (2015.08.20) =
|
||||
- Support widget improvements
|
||||
|
||||
= 4.2.2 (2015.08.14) =
|
||||
- Correctly set the version number in PHP
|
||||
|
||||
= 4.2.1 (2015.08.13) =
|
||||
- Fix detection of front page for popup triggering
|
||||
- Update screenshots
|
||||
|
||||
= 4.2.0 (2015.08.13) =
|
||||
- Migration improvements
|
||||
- Bug fix to stop showing the setup dialog when setup is in progress
|
||||
- Preparatory work to send notification emails in the timezone WordPress is configured in
|
||||
|
||||
= 4.1.1 (2015.07.14) =
|
||||
- Bug fix for upgraded installs from the plugin directory running through the migration process
|
||||
|
||||
= 4.1.0 (2015.07.10) =
|
||||
- Migration script added to move data from MySQL to Leadin Cloud
|
||||
|
||||
= 4.0.2 (2015.07.09) =
|
||||
|
||||
- Bug fixes
|
||||
|
||||
- Current version: 4.0.1
|
||||
- Current version release: 2015-06-24
|
||||
|
||||
= 4.0.1 (2015.06.24) =
|
||||
|
||||
- Bug fixes
|
||||
- Added support for custom page types
|
||||
- Stopped using SVG icons due to performance problems
|
||||
- Fixed signup error in PHP < 5.4 on browsers that don't support CORS
|
||||
|
||||
= 4.0.0 (2015.05.20) =
|
||||
|
||||
- Leadin Cloud launched
|
||||
|
||||
= 3.1.8 (2015.05.15) =
|
||||
|
||||
- Added email connector sync to onboarding
|
||||
- Sources now check the UTM tags on the first page view visit
|
||||
- Privacy policy added to plugin
|
||||
|
||||
- Bug fixes
|
||||
- Fixed dismiss button conflict on WordPress notifications
|
||||
- Icon styles no longer conflict with other plugins
|
||||
- Deleted contacts no longer show up in the dashboard
|
||||
- Popup sync now looks at the actual inputs instead of the field names so it’ll work in other languages
|
||||
- Popup labels now work in IE
|
||||
- Fixed bug with SendGrid email delivery for Leadin Pro
|
||||
|
||||
= 3.1.7 (2015.04.15) =
|
||||
= Enhancements =
|
||||
- Added debug mode
|
||||
- Default subscribe confirmation to off
|
||||
|
||||
- Bug fixes
|
||||
- Fixed overly large Leadin icon in admin bar on front end for logged in users
|
||||
|
||||
= 3.1.6 (2015.03.31) =
|
||||
= Enhancements =
|
||||
- Show name on contact timeline instead of email address if available
|
||||
- New contact timeline page styles
|
||||
- Ability to change color in popup
|
||||
- Popup now works on mobile
|
||||
|
||||
- Bug fixes
|
||||
- Fixed dashicons not loading in < WP 3.7
|
||||
- Completely fix all the default object warnings for the contact lookups
|
||||
- Swap in non-svg logo if allow_url_fopen not toggled on in php.ini
|
||||
- Fixed Pro email delivery bugs
|
||||
|
||||
= 3.1.5 (2015.03.20) =
|
||||
- Bug fixes
|
||||
- Changed out call to __DIR__ magic constant which wasn’t implemented until PHP 5.3 in favor of dirname(__FILE__)
|
||||
|
||||
= 3.1.4 (2015.03.17) =
|
||||
= Enhancements =
|
||||
- Intercom added to plugin for in-app support
|
||||
- Onboarding improved for non-setup installs
|
||||
- Contact notifications are now sent through email delivery service to improve deliverability
|
||||
|
||||
- Bug fixes
|
||||
- Namespaced AWeber oauth libraries with LI_ prefix to avoid duplicate class warnings
|
||||
- SVG icon permanently fixed for servers that don't natively support that file type
|
||||
- Check if database options are set for subscribe preview button
|
||||
- Added in check for default leadin_options in case they were deleted and recreate them if they are not there
|
||||
- Add in checks for the contact lookups to account for default object warnings
|
||||
-
|
||||
|
||||
= 3.1.3 (2015.02.19) =
|
||||
= Enhancements =
|
||||
- Don't show the "You should receive a confirmation email shortly" message in the popup thank you if the confirmation email setting is toggled off
|
||||
|
||||
- Bug fixes
|
||||
- Fixed SVG icon
|
||||
- Fixed the default object warnings in class-leadin-contact for the enrichment lookups
|
||||
- Tested NinjaPopups and added to readme as unsupported form plugin
|
||||
- "Namespace" AWeber with "LI_" prefix to avoid conflicts
|
||||
|
||||
= 3.1.2 (2015.01.26) =
|
||||
= Enhancements =
|
||||
- Tested JotForm + added compatibility to the ReadMe file
|
||||
|
||||
- Bug fixes
|
||||
- Add in support for like_escape for < WordPress 4.0
|
||||
- Add first + last names to bulk MailChimp connector
|
||||
- Remove rogue WPDB prepare in tag list table
|
||||
- Check for existence of ESP connector when pushing to an email list
|
||||
- Bug fix for multisite installs with broken onboarding
|
||||
|
||||
= 3.1.1 (2014.01.20) =
|
||||
= Enhancements =
|
||||
- Added ability to toggle Leadin data access by user role
|
||||
- Hide Leadin nav menu item for user roles without access to Leadin data
|
||||
- Discontinued and disabled the beta program
|
||||
|
||||
- Bug fixes
|
||||
- Fixed broken onboarding in WordPress Multisite after adding a new site to the network
|
||||
- Contact totals in tag editor now link to tagged list
|
||||
|
||||
= 3.1.0 (2015.1.16) =
|
||||
= Enhancements =
|
||||
- GetResponse, Campaign Monitor and AWeber integrations launched
|
||||
|
||||
= 3.0.0 (2014.12.10) =
|
||||
= Enhancements =
|
||||
- Jumping to version 3.0.0 to indefinitely override repository version of Leadin
|
||||
|
||||
= Leadin 2.2.7 - 2.2.11 =
|
||||
|
||||
*Leadin was split into Leadin and <a href="http://leadin.com/pro-upgrade" target="_blank">Leadin Pro</a> after version 2.2.6 and later merged back together, so versions 2.2.7 - 2.2.11 and 3.0.0 - 3.1.3 share similar updates.*
|
||||
|
||||
= 2.2.11 (2015.02.18) =
|
||||
|
||||
= Enhancements =
|
||||
- Don't show the "You should receive a confirmation email shortly" message in the popup thank you if the confirmation email setting is toggled off
|
||||
|
||||
- Bug fixes
|
||||
- Fixed SVG icon
|
||||
- Fixed the default object warnings in class-leadin-contact for the enrichment lookups
|
||||
- Tested NinjaPopups and added to readme as unsupported form plugin
|
||||
|
||||
|
||||
= 2.2.10 (2015.01.26) =
|
||||
= Enhancements =
|
||||
- Tested JotForm + added compatibility to the ReadMe file
|
||||
|
||||
- Bug fixes
|
||||
- Add in support for like_escape for < WordPress 4.0
|
||||
- Add first + last names to bulk MailChimp connector
|
||||
- Remove rogue WPDB prepare in tag list table
|
||||
- Check for existence of ESP connector when pushing to an email list
|
||||
- Bug fix for multisite installs with broken onboarding
|
||||
|
||||
= 2.2.9 (2014.01.20) =
|
||||
= Enhancements =
|
||||
- Added ability to toggle Leadin data access by user role
|
||||
- Hide Leadin nav menu item for user roles without access to Leadin data
|
||||
- Discountinued and disabled the beta program
|
||||
|
||||
- Bug fixes
|
||||
- Fixed broken onboarding in WordPress Multisite after adding a new site to the network
|
||||
- Contact totals in tag editor now link to tagged list
|
||||
|
||||
= 2.2.8 (2014.12.15) =
|
||||
= Enhancements =
|
||||
- Added in CTAs for Leadin Pro
|
||||
|
||||
= 2.2.7 (2014.12.09) =
|
||||
- Bug fixes
|
||||
- Fixing upgrade process from 2.2.6
|
||||
|
||||
= 2.2.6 (2014.12.08) =
|
||||
= Enhancements =
|
||||
- Added names to contact export
|
||||
- Added “tagged as” to contact notification email subject lines
|
||||
|
||||
- Bug fixes
|
||||
- Fixed bug with non-tagged contacts being added to tagged lists
|
||||
|
||||
= 2.2.6 (2014.12.08) =
|
||||
= Enhancements =
|
||||
- Contact Lookup power-up
|
||||
- Added names to contact exports
|
||||
- Added “tagged as” to the email subject lines
|
||||
|
||||
- Bug fixes
|
||||
- Fixed bug where Leadin would add non-tagged emails to ESP lists when it was not supposed to do those contacts
|
||||
|
||||
= 2.2.5 (2014.11.20) =
|
||||
- Bug fixes
|
||||
- Fixes to bulk action labels
|
||||
- Fixed Add Tag button
|
||||
|
||||
= 2.2.4 (2014.10.31) =
|
||||
- Bug fixes
|
||||
- Patch for 2.2.3 database structure. We forgot to include the new form_hashkey field in the database upgrade
|
||||
|
||||
= 2.2.3 (2014.10.31) =
|
||||
= Enhancements =
|
||||
- Added "Tags" link to sidebar menu
|
||||
- Added the applied tags on form submission timeline events
|
||||
- Added the form selector on submission events in the timeline
|
||||
- Added language in the subject of the contact notification emails to indicate returning vs. new visitors
|
||||
- Leadin will now detect first names + last names and store them on the contact + push to ESP connectors
|
||||
- Retroactively apply names to all contacts where possible
|
||||
|
||||
- Bug fixes
|
||||
- If a contact changes their email, Leadin will now push the new email to the ESP connectors
|
||||
- Added safeguards into all third party libraries to see if they are included already in the WordPress admin
|
||||
- Added default Javascript values to the popup form if the get_footer function isn't being called
|
||||
|
||||
= 2.2.2 (2014.10.16) =
|
||||
= Enhancements =
|
||||
- Leadin now include the utm_ tags from the original first page view when parsing the sources
|
||||
|
||||
- Bug fixes
|
||||
- Unchecking all the template checkboxes for the popup then saving no longer rechecks them all
|
||||
- Added in current_time fix for older versions of WordPress
|
||||
- Retooled tag editor to only pull down unique selectors
|
||||
- Contact list now will go back to the previous page when clicking the back link
|
||||
- Fixed mysterious bug where popup ignored new visitors
|
||||
- NOW the subscription confirmation stays checked/unchecked on save (Thanks Kate!)
|
||||
|
||||
= 2.2.1 (2014.10.01) =
|
||||
= Enhancements =
|
||||
- Added video from WPApplied to readme file
|
||||
|
||||
- Bug fixes
|
||||
- Page view filters now work in the all contacts list
|
||||
- Subscription confirmation box didn't work in settings page if the "homepage" checkbox was unchecked
|
||||
- Leadin menu link no longer shows up in the front-end menu bar for non-logged in users
|
||||
- Stopped selecting duplicate tags on a contact in the timeline view
|
||||
- Select inputs did not pull down the text and instead used the value. Fixed and use text now for selected option
|
||||
- Timezones with a database offset on the contact timeline were not correctly fixed in last update
|
||||
- Fix to ignore all cURL calls if script isn't present on the server
|
||||
- Disable beta program is cURL does not exist on the server
|
||||
- Fixed “<- All contacts” link showing up next to back link on a specific contact type in timeline view
|
||||
|
||||
= 2.2.0 (2014.09.25) =
|
||||
= Enhancements =
|
||||
- Added ability to ignore logged in user roles from tracking
|
||||
- Popup can be previewed on the front end site before saving changes
|
||||
- MailChimp Connect checks for faulty API keys and prompts the user to enter in one that works on the tag editor page
|
||||
- Email headers for contact notificaitons come from the person who filled in the form
|
||||
- Added traffic source URL parameters to contact notification emails
|
||||
|
||||
- Bug fixes
|
||||
- Leadin now accounts for timezones discrepancy on some MySQL databases and offsets to local time
|
||||
- Filters are now persistent when clicking the link back to the contact list from a contact timeline
|
||||
- cURL dependency no longer prints the raw error to the screen on installation and gracefully disables cURL-dependant features
|
||||
- Stats page and contact list totals didn't match up - fixed
|
||||
|
||||
= 2.1.0 (2014.09.19) =
|
||||
= Enhancements =
|
||||
- Improved onboarding
|
||||
- Added setting include a short description to the popup under the form heading
|
||||
- General style improvements to the popup form power-up
|
||||
|
||||
- Bug fixes
|
||||
- Contact filters are now persistent when navigating back to the main contact list from the contact timeline
|
||||
|
||||
= 2.0.2 (2014.09.09) =
|
||||
|
||||
- Bug fixes
|
||||
- Fix inconsistent sources on stats widgets and contact timeline widgets
|
||||
- Onboarding tooltip popup for setting up settings now works correctly
|
||||
- Parse out get vars for traffic sources in the contact timeline
|
||||
|
||||
= 2.0.1 (2014.09.01) =
|
||||
= Enhancements =
|
||||
- Removed "Who read my post" widget analytics from the post editor
|
||||
- Separated backend from frontend code to speed up ajax calls on both sides
|
||||
|
||||
- Bug fixes
|
||||
- Fixed bug when deleting specifically selected contacts looked like all the contacts were deleted on the page refresh
|
||||
- Organic traffic and paid traffic sources are now parsing more accurately
|
||||
- Credit card forms will add to the timeline now but will block all credit card information
|
||||
- Bulk edited tags now push contacts to ESP lists when added
|
||||
- Lists with existing contacts retroactively push email addresses to corresponding ESP list
|
||||
- Renamed MailChimp Contact Sync + Constant Contact Sync to MailChimp Connect + Constant Contact Connect
|
||||
- Fixed returning contacts vs. new contacts in dashboard widget
|
||||
- Contact export works again
|
||||
- Fixed insecure content warning on SSL
|
||||
- Non-administrators no longer can see the Leadin menu links or pages
|
||||
- Settings link missing from plugins list page
|
||||
- Line break contact notifications previews
|
||||
- Setup a mailto link on the contact notification email in the details header
|
||||
|
||||
= 2.0.0 (2014.08.11) =
|
||||
= Enhancements =
|
||||
- Create a custom tagged list based on form submission rules
|
||||
- Ability to sync tagged contacts to a specific ESP list
|
||||
- Filter lists by form selectors
|
||||
|
||||
- Bug fixes
|
||||
- Fix contact export for selected contacts
|
||||
- Text area line breaks in the contact notifications now show properly
|
||||
- Contact numbers at top of list did not always match number in sidebar - fixed
|
||||
|
||||
= 1.3.0 (2014.07.14) =
|
||||
= Enhancements =
|
||||
- Multisite compatibility
|
||||
|
||||
= 1.2.0 (2014.06.25) =
|
||||
- Bug fixes
|
||||
- Contacts with default "contact status" were not showing up in the contact list
|
||||
- WordPress admin backends secured with SSL can now be used with Leadin
|
||||
- Namespaced the referrer parsing library for the Sources widget
|
||||
|
||||
= Enhancements =
|
||||
- Leadin VIP program
|
||||
|
||||
= 1.1.1 (2014.06.20) =
|
||||
- Bug fixes
|
||||
- Emergency bug fix on activation caused by broken SVN merging
|
||||
|
||||
= 1.1.0 (2014.06.20) =
|
||||
- Bug fixes
|
||||
- Leadin subscriber email confirmations were not sending
|
||||
- Removed smart contact segmenting for leads
|
||||
|
||||
= Enhancements =
|
||||
- Added more contact status types for contacted + customer
|
||||
- Setup collection for form IDs + classes
|
||||
|
||||
= 1.0.0 (2014.06.12) =
|
||||
- Bug fixes
|
||||
- Fixed sort by visits in the contacts list
|
||||
|
||||
= Enhancements =
|
||||
- Contacts filtering
|
||||
- Stats dashboard
|
||||
- Sources
|
||||
|
||||
= 0.10.0 (2014.06.03) =
|
||||
- Bug fixes
|
||||
- Fixed original referrer in contact timeline
|
||||
- Fixed unnecessary queries on contact timeline
|
||||
- Only run the update check if the version number is different than the saved number
|
||||
- Remove "fakepath" from file path text in uploaded file input types
|
||||
|
||||
= Enhancements =
|
||||
- Expire the subscribe cookie after a few weeks
|
||||
- Ability to disable a subscribe notification
|
||||
- Added jQuery validation to the subscribe pop-up
|
||||
- Multi-select input support
|
||||
- Block forms with credit card fields from capturing contact information
|
||||
- Updated contact timeline views
|
||||
- Updated new contact notification emails
|
||||
|
||||
= 0.9.3 (2014.05.19) =
|
||||
- Bug fixes
|
||||
- Fix for duplicate values being stored in the active power-ups option
|
||||
|
||||
= 0.9.2 (2014.05.16) =
|
||||
|
||||
= Enhancements =
|
||||
- Overhaul of settings page to make it easier to see which settings go with each power-up
|
||||
- Launched Leadin Beta Program
|
||||
|
||||
= 0.9.1 (2014.05.14) =
|
||||
- Bug fixes
|
||||
- Fixed pop-up location dropdown not defaulting to saved options value
|
||||
- Hooked subscribe widget into get_footer action instead of loop_end filter
|
||||
|
||||
= 0.9.0 (2014.05.12) =
|
||||
- Bug fixes
|
||||
- Remove leadin-css file enqueue call
|
||||
|
||||
= Enhancements =
|
||||
- Show faces of people who viewed a post/page in the editor
|
||||
- Add background color to avatars so they are easier to see
|
||||
- Various UI fixes
|
||||
|
||||
= 0.8.5 (2014.05.08) =
|
||||
- Bug fixes
|
||||
- Fixed broken contact notification emails
|
||||
|
||||
= 0.8.4 (2014.05.07) =
|
||||
- Bug fixes
|
||||
- Fixed HTML encoding of apostrophes and special characters in the database for page titles
|
||||
|
||||
= Enhancements =
|
||||
- Added ability to toggle subscribe widget on posts, pages, archives or the home page
|
||||
- Sort contacts by last visit
|
||||
|
||||
= 0.8.3 (2014.05.06) =
|
||||
- Bug fixes
|
||||
- Merge duplicate contacts into one record
|
||||
- Remove url parameters from source links in contact list
|
||||
- Downgrade use of singletons so classes are compatible with PHP 5.2
|
||||
|
||||
= Enhancements =
|
||||
- Swap out delete statements in favor of binary "deleted" flags to minimize data loss risk
|
||||
- Sort contacts by last visit
|
||||
|
||||
= 0.8.2 (2014.05.02) =
|
||||
- Bug fixes
|
||||
- Removed namespace usage in favor or a low-tech work around to be compliant with PHP 5.2 and lower
|
||||
|
||||
= 0.8.1 (2014.04.30) =
|
||||
- Bug fixes
|
||||
- Namespaced duplicate classes
|
||||
|
||||
= 0.8.0 (2014.04.30) =
|
||||
- Bug fixes
|
||||
- Fix scrolling issue with subscribe pop-up
|
||||
- Duplicate class bug fixes
|
||||
|
||||
= Enhancements =
|
||||
- Add optional first name, last name and phone fields for subscribe pop-up
|
||||
- Change out contact notification emails to be from settings email address
|
||||
- Ability to disable contact notification emails
|
||||
- Constant Contact list sync power-up
|
||||
- Sync optional contact fields (name + phone) to email service provider power-ups
|
||||
|
||||
= 0.7.2 (2014.04.18) =
|
||||
- Bug fixes
|
||||
- Fix contact deletion bug
|
||||
- Implement data recovery fix for contacts
|
||||
- Bug fixes to contact merging
|
||||
|
||||
|
||||
= 0.7.1 (2014.04.11) =
|
||||
- Bug fixes
|
||||
- SVN bug fix that did not add the MailChimp List sync power-up
|
||||
|
||||
= 0.7.0 (2014.04.10) =
|
||||
|
||||
= Enhancements =
|
||||
- MailChimp List Sync power-up
|
||||
- Added new themes (bottom right, bottom left, top and pop-up) to the WordPress Subscribe Widget power-up
|
||||
|
||||
= 0.6.2 (2014.04.07) =
|
||||
- Bug fixes
|
||||
- Fixed activation error for some installs by removing error output
|
||||
- MySQL query optimizations
|
||||
- Fixed bug with MySQL V5.0+ by adding default NULL values for insert statements on contacts table
|
||||
- Changed title for returning lead email notifications
|
||||
- Setting to change button label on
|
||||
|
||||
= Enhancements =
|
||||
- Added ability to change button label on subscribe widget
|
||||
|
||||
= 0.6.1 (2014.03.12) =
|
||||
- Bug fixes
|
||||
- Updated read me.txt file
|
||||
- Updated screenshots
|
||||
|
||||
= 0.6.0 (2014.03.07) =
|
||||
- Bug fixes
|
||||
- Remove in-house plugin updating functionality
|
||||
- Original referrer is always the server url, not the HTTP referrer
|
||||
- Strip slashes from title tags
|
||||
- Number of contacts does not equal leads + commenters + subscribers
|
||||
- Modals aren't bound to forms after page load
|
||||
- Fix bug with activating + reactivating the plugin overwriting the saved settings
|
||||
- Override button styles for Subscribe Pop-up widget
|
||||
|
||||
= Enhancements =
|
||||
- Improved readability on new lead notification emails
|
||||
- Confirmation email added for new subscribers to the Leadin Subscribe Pop-up
|
||||
- Updated screenshots
|
||||
- Improved onboarding flow
|
||||
- Deleted unused and deprecated files
|
||||
|
||||
= 0.5.1 (2014.03.03) =
|
||||
- Bug fixes
|
||||
- Fixed Subscribe Pop-up automatically enabling itself
|
||||
|
||||
= 0.5.0 (2014.02.25) =
|
||||
- Bug fixes
|
||||
- Add (blank page title tag) to emails and contact timeline for blank page titles
|
||||
- Fix link on admin nav menu bar to link to contact list
|
||||
- Ignore lead notifications and subscribe popup on login page
|
||||
- Saving an email no longer overwrites all the Leadin options
|
||||
- Added live chat support
|
||||
|
||||
= Enhancements =
|
||||
- New power-ups page
|
||||
- Leadin Subscribe integrated into plugin as a power-up
|
||||
- Improved contact history styling + interface
|
||||
- Added visit, pageview and submission stats to the contact view
|
||||
- Added Live Chat into the Leadin WordPress admin screens
|
||||
- New Leadin icons for WordPress sidebar and admin nav menu
|
||||
|
||||
= 0.4.6 (2013.02.11) =
|
||||
- Bug fixes
|
||||
- Fix table sorting for integers
|
||||
- Bug fixes to contact type headings
|
||||
- Bug fix "Select All" export
|
||||
- Bug fix for CSS "page views" hover triangle breaking to next line
|
||||
- Backwards compatibility for < jQuery 1.7.0
|
||||
- Add Leadin link to admin bar
|
||||
|
||||
= Enhancements =
|
||||
- New onboarding flow
|
||||
|
||||
= 0.4.5 (2013.01.30) =
|
||||
= Enhancements =
|
||||
- Integration with Leadin Subscribe
|
||||
|
||||
= 0.4.4 (2013.01.24) =
|
||||
- Bug fixes
|
||||
- Bind submission tracking on buttons and images inside of forms instead of just submit input types
|
||||
|
||||
= Enhancements =
|
||||
- Change out screenshots to obfiscate personal information
|
||||
|
||||
= 0.4.3 (2013.01.13) =
|
||||
- Bug fixes
|
||||
- Fixed Leadin form submission inserts for comments
|
||||
- Resolved various silent PHP warnings in administrative dashboard
|
||||
- Fixed Leadin updater class to be compatible with WP3.8
|
||||
- Improved contact merging logic to be more reliable
|
||||
|
||||
= Enhancements =
|
||||
- Improved onboarding flow
|
||||
- Optimized form submission catching + improved performance
|
||||
|
||||
= 0.4.2 (2013.12.30) =
|
||||
- Bug fixes
|
||||
- Change 'contact' to 'lead' in the contacts table
|
||||
- Fixed emails always sending to the admin_email
|
||||
- Tie historical events to new lead when an email is submitted multiple times with different tracking codes
|
||||
- Select leads, commenters and subscribers on distinct email addresses
|
||||
- Fixed timeline order to show visit, then a form submission, then subsequent visits
|
||||
|
||||
= Enhancements =
|
||||
- Added url for each page views in the contact timeline
|
||||
- Added source for each visit event
|
||||
- Tweak colors for contact timeline
|
||||
- Default the Leadin menu to the contacts page
|
||||
|
||||
= 0.4.1 (2013.12.18) =
|
||||
- Bug fixes
|
||||
- Removed Leadin header from the contact timeline view
|
||||
- Updated the wording on the menu view picker above contacts list
|
||||
- Remove pre-mp6 styles if MP6 plugin is activated
|
||||
- Default totals leads/comments = 0 when leads table is empty instead of printing blank integer
|
||||
- Legacy visitors in table have 0 visits because session support did not exist. Default to 1
|
||||
- Update ouput for the number of comments to be equal to total_comments, not total_leads
|
||||
- Added border to pre-mp6 timeline events
|
||||
|
||||
= 0.4.0 (2013.12.16) =
|
||||
- Bug fixes
|
||||
- Block admin comment replies from creating a contact
|
||||
- Fixed faulty sorting by Last visit + Created on dates in contacts list
|
||||
|
||||
= Enhancements =
|
||||
- Timeline view of a contact history
|
||||
- New CSS styles for contacts table
|
||||
- Multiple email address support for new lead/comment emails
|
||||
- Integration + testing for popular WordPress form builder plugins
|
||||
- One click updates for manually hosted plugin
|
||||
|
||||
= 0.3.0 (2013.12.09) =
|
||||
- Bug fixes
|
||||
- HTML encoded page titles to fix broken HTML characters
|
||||
- Strip slashes from page titles in emails
|
||||
|
||||
= Enhancements =
|
||||
- Created separate Leadin menu in WordPress admin
|
||||
- CRM list of all contacts
|
||||
- Added ability to export list of contacts
|
||||
- Leadin now distinguishes between a contact requests and comment submissions
|
||||
- Added link to CRM list inside each contact/comment email
|
||||
|
||||
= 0.2.0 (2013.11.26) =
|
||||
- Bug fixes
|
||||
- Broke up page view history by session instead of days
|
||||
- Fixed truncated form submission titles
|
||||
- Updated email headers
|
||||
|
||||
= Enhancements =
|
||||
- Plugin now updates upon activation and keeps record of version
|
||||
- Added referral source to each session
|
||||
- Added link to page for form submissions
|
||||
- Updated email subject line
|
||||
- Added social media avatars to emails
|
||||
|
||||
= 0.1.0 (2013.11.22) =
|
||||
- Plugin released
|
||||
410
spec/fixtures/dynamic_finders/plugin_version/mailoptin/change_log/changelog.txt
vendored
Normal file
410
spec/fixtures/dynamic_finders/plugin_version/mailoptin/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,410 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.2.17.0 =
|
||||
* Added Ontraport integration.
|
||||
* Added Mailjet integration.
|
||||
* Added Vertical Response integration.
|
||||
* Updated Mailpoet integration to use it's API for every operation.
|
||||
* Fixed sender name and email not injected on autoresponder emails.
|
||||
* Added doc link on how to fix the popular no email list found error.
|
||||
* Added stripslash support for from name.
|
||||
|
||||
= 1.2.16.1 =
|
||||
* Added option to change optin theme.
|
||||
* Added unsubscribe support for emails sent to registered users.
|
||||
|
||||
= 1.2.16.0 =
|
||||
* Added one-off newsletter support.
|
||||
* Added ninja forms support for custom html feature.
|
||||
* Fixed: conditional display in optin customizer.
|
||||
|
||||
= 1.2.15.1 =
|
||||
* Added link to view integrations error log.
|
||||
* Added option to target users by their role.
|
||||
* Fixed: when click launch is activated, query string section is not hidden.
|
||||
* Fixed Uncaught TypeError: Cannot read property 'active' of undefined.
|
||||
* Added customizer option to remove post body in email automation.
|
||||
* Increase maximum post range slider to 1000 in email automation settings.
|
||||
* Added split test support for shortcode optin embed.
|
||||
|
||||
= 1.2.15.0 =
|
||||
* Added new optin themes.
|
||||
* Added ability to replace the default fields with a shortcode and/or HTML content.
|
||||
* Added query string targeting display rule.
|
||||
* Added feature to hide optins on urls with the mohide=true query string.
|
||||
* Added categories and tax support to [posts-loop] email digest shortcode.
|
||||
* Allow users access to MailOptin with with manage_mailoptin capability.
|
||||
* Fixed bug where optin theme customizer config override another theme.
|
||||
* Fixed compatibility with Windows server.
|
||||
* Fixed bug with replacement of name and address placeholder tags in email automation.
|
||||
* Only load optin theme dependent script on mailoptin customizer UI.
|
||||
|
||||
= 1.2.14.0 =
|
||||
* New: Disable closing of lightbox on backdrop click.
|
||||
* Added filter to use excerpt instead of post content in email automation.
|
||||
* Added Gutenberg block form embedding optin forms.
|
||||
|
||||
= 1.2.13.2 =
|
||||
* Fixed bug with custom taxonomies settings not saving in email automation.
|
||||
* Fixed issues with email automation custom template shortcode tags not working.
|
||||
* Fixed bug where post with full content wasn't triggering email automation.
|
||||
* Fixed issue where ESP with default static fields returned empty because no custom user created field was found.
|
||||
|
||||
= 1.2.13.1 =
|
||||
* Fixed issue where youtube/vimeo embed wasn't correctly showing in email.
|
||||
* Fixed PHP Deprecated: define(): Declaration of case-insensitive constants is deprecated.
|
||||
* Core files are now included in parent plugin folder instead of composer vendor directory.
|
||||
|
||||
= 1.2.13.0 =
|
||||
* Design refresh of the dashboard.
|
||||
* Added setting to disable impression tracking.
|
||||
* Lead bank now has its own settings page.
|
||||
|
||||
= 1.2.12.2 =
|
||||
* Added support for windows hosting.
|
||||
* Added advance settings to name field for ESP mapping.
|
||||
* Made all tinymce control text/visual.
|
||||
|
||||
= 1.2.12.1 =
|
||||
* Fixed issue where sending new post notification failed in some rare cases.
|
||||
* Fixed sendinblue bug where email address belonging to another list failed to be subscribed.
|
||||
|
||||
= 1.2.12.0 =
|
||||
* Removed optin campaigns and conversion limit.
|
||||
* Added shortcode support for optin forms.
|
||||
* Fixed bug where email automation customizer wasn't saving.
|
||||
* Made headline in optin customizer visual/text.
|
||||
* Added shortcode support to success message.
|
||||
* Reduced inline js object added to frontend.
|
||||
* Added better explanation to re-authorize connection button.
|
||||
* Subscriber name is now split into name and lastname for Mailerlite connection.
|
||||
* Updated Convertfox to Gist.
|
||||
* Fixed bug with mailchimp interest user input.
|
||||
* Added sendinblue list sync where by user are not removed from their previous joined list.
|
||||
* Fix for mailchimp GDPR optin consent not working.
|
||||
|
||||
= 1.2.11.4 =
|
||||
* Removed unused file.
|
||||
|
||||
= 1.2.11.3 =
|
||||
* Remove lite upgrade in compliance with WP.org rule.
|
||||
|
||||
= 1.2.11.2 =
|
||||
* Sendinblue optin fix when automation is active.
|
||||
* Remove IP address from ActiveCampaign payload if ip is not ip4.
|
||||
* More tighter customizer cleanup for improve compatibility with most themes and plugins.
|
||||
* Fix support for youtube and vimeo embed.
|
||||
* Made description wysiwyg to be text/visual.
|
||||
|
||||
= 1.2.11.1 =
|
||||
* Responsive font size fixes for optin forms.
|
||||
* Fixed a number of PHP notice errors.
|
||||
* Added filter to disable sending optin errors email.
|
||||
|
||||
= 1.2.11.0 =
|
||||
* Added support for custom post type to email automation.
|
||||
* Optin branding now disabled by default.
|
||||
* Better control over google fonts to load when not necessary.
|
||||
* Improve optin themes compatibility with most WP themes.
|
||||
|
||||
= 1.2.10.1 =
|
||||
* Fixed bug with Mailerlite subscription not working.
|
||||
* Fixed bug where hiding note wasn’t working.
|
||||
* Fixed bug where effects wasn’t working in customizer preview.
|
||||
* Fixed: Uncaught TypeError: Cannot read property 'scrollHeight' of undefined.
|
||||
* Fixed bug with scripts not being cleaned up in customizer.
|
||||
|
||||
= 1.2.10.0 =
|
||||
* Added support for changing optin font sizes.
|
||||
* Added support to inherit theme font in optins.
|
||||
* Added support for MailChimp GDPR tool for saving consent.
|
||||
* Optin no longer load an external css stylesheet.
|
||||
* Remove quoted slash from campaign names.
|
||||
* Some performance enhancements.
|
||||
|
||||
= 1.2.9.0 =
|
||||
* Added Mailster Integration.
|
||||
* Added new switch customizer loader method.
|
||||
* Added confirmation prompt before deleting optin and email campaigns.
|
||||
* Added after main content control to email template.
|
||||
* Added easy google font plugin compatibility.
|
||||
* Fixed issue with urlencode happening to urls in email campaign.
|
||||
* Deactivate cloned optin and email campaign by default.
|
||||
* Test mode now ignore display rules.
|
||||
|
||||
= 1.2.8.2 =
|
||||
* Only return untrashed and default type list for mailpoet.
|
||||
* Now obfuscating sendlane hash field.
|
||||
* Added timeout to MC HTTP client instance
|
||||
|
||||
= 1.2.8.1 =
|
||||
* Fixed bug with curl not working on some host
|
||||
* Fixed bug with MailChimp email automation not sending
|
||||
|
||||
= 1.2.8.0 =
|
||||
* Added headers to email customizer.
|
||||
* Metabox settings to skip a post from being included in new post notification.
|
||||
* Added Sendlane integration.
|
||||
|
||||
= 1.2.7.1 =
|
||||
* Fixed bug with sendinblue not adding contact to list
|
||||
* Displays email template un-emogrified in customizer so custom css ish can be targeted and used.
|
||||
* Filter for adding custom page targeting rules added.
|
||||
* Fixed mini headline preview not working in some themes.
|
||||
* Added compatibility with flatbase theme
|
||||
* Ensure optin_type exist for the campaign before adding to DB to prevent PHP error.
|
||||
|
||||
= 1.2.7.0 =
|
||||
* New dashboard redesign. Yay! Connections is now called integrations.
|
||||
* New: Email digest of published post [paid feature].
|
||||
* You can now edit automation campaign name.
|
||||
* Improve optin customization option.
|
||||
* Bug fix where name field required wasn’t hidden when name field is set to hidden.
|
||||
* Improve compatibility with nextgen gallery.
|
||||
|
||||
= 1.2.6.0 =
|
||||
* Fixed bug where upgrade from lite to premium wasn't working.
|
||||
* Added tabs to sort controls into General and Style.
|
||||
* Added option to remove feature image from email campaign
|
||||
* Added before main content body editor control to email automation
|
||||
* Send test email feature is now retried without header.
|
||||
* Contextual naming of connection service list label re-added.
|
||||
* Added contextual display of some controls in email campaign customizer
|
||||
|
||||
= 1.2.5.1 =
|
||||
* Enhance compatibility with more themes such as the popular Newspaper theme.
|
||||
* Added more optin form themes for lite users.
|
||||
|
||||
= 1.2.5.0 =
|
||||
* Lite lightbox now load after about 3 seconds
|
||||
* Performance improvements.
|
||||
|
||||
= 1.2.4.2 =
|
||||
* Added filter sorting to connections.
|
||||
* Performance improvements.
|
||||
|
||||
= 1.2.4.1 =
|
||||
* Restricted removal of admin notice from other plugin to just mailoptin settings pages.
|
||||
* Fix for IP address getter.
|
||||
* [GDPR] Consent is now passed to MailChimp as custom field.
|
||||
* [GDPR] Consent is now passed to EmailOctopus as custom field.
|
||||
|
||||
= 1.2.4.0 =
|
||||
* [GDPR] Added checkbox to optin form and save consent in ESP mostly as tags and custom field.
|
||||
* [GDPR] Added control to make name field in optin required or not
|
||||
* Fixed incorrect IP address label for Klaviyo integration
|
||||
* Fixed bug where Klaviyo included segment in list fetch
|
||||
* Form and email template builder URL now shortened.
|
||||
* Improve button to add new campaigns to be more visible.
|
||||
* Added notice when no connection is available in optin form builder.
|
||||
* Added optin type flag to optin name.
|
||||
* Fixed bug where specifying custom listing number in wp list wasn’t working.
|
||||
|
||||
= 1.2.3.1 =
|
||||
* Fixed issue where Elegance Lightbox wasn't showing in optin listing.
|
||||
|
||||
= 1.2.3.0 =
|
||||
* Added Klaviyo integration
|
||||
* Added Elegance lightbox optin theme.
|
||||
* Added some toast notifications to the form builder to remind you of things to do.
|
||||
* Added filtering of new post notification by post tags and categories.
|
||||
* Added auto-detect and convert vimeo & youtube embed to image link.
|
||||
* Added: New post notification can now be sent to users with specific roles.
|
||||
* Sendy optin subscription now include leads ip-address and referrer.
|
||||
* Improved compatibility with most WP themes in customizer.
|
||||
* Fixed bug where contextual display of integrations wasn’t properly working.
|
||||
* Fixed usage tracking not dismissing.
|
||||
* Moved success message to after conversion panel.
|
||||
* Update tinymce control to use the latest API.
|
||||
* Added filter customize/edit url.
|
||||
|
||||
= 1.2.2.2 =
|
||||
* Fixed bug where ConvertFox was failing to add leads.
|
||||
|
||||
= 1.2.2.1 =
|
||||
* Fixed bug where 'Globally load optin' wasn't kicking in.
|
||||
|
||||
= 1.2.2.0 =
|
||||
* Added ConvertFox integration.
|
||||
* Added SendinBlue integration.
|
||||
* Switched from wp-admin-ajax to a custom ajax handler.
|
||||
* Fixed bug where GetResponse optin without name field was failing.
|
||||
* Remove all custom media button added by plugins and core to wp_editor.
|
||||
* Re-arrangement of display rules and page-level targeting.
|
||||
* Moved controls for hiding of note, headline, description to their panels.
|
||||
* Added check to prevent sidebar aside tag from being included in markup when state after conversion is optin form hidden.
|
||||
* Added filters to optin form components.
|
||||
* Ensure customization save changes is publishing and not saving draft. Fixed bug in wordpress.com hosting.
|
||||
* Swap out previous bulk activation of optin and automation to new queue system.
|
||||
* Added filter to disable optin impression count.
|
||||
* Added filter to optin form shortcode structure.
|
||||
* Added: send email to admin when optin is failing to subscribe leads.
|
||||
* Rebuilt settings setting page with tab.
|
||||
|
||||
= 1.2.1.0 =
|
||||
* Fixed bug where impression wasn’t counting for sidebar/inpost optin forms.
|
||||
* Fixed bug where impression count was doubling for popups, notification bar and slide in optins.
|
||||
* Added activation of email campaign as toggle switches.
|
||||
* Added support for background color for optin form fields.
|
||||
* Fixed bug in OptinCampaignsRepository::get_optin_campaign_ids() working incorrectly.
|
||||
* Fixed bug where columbine inpost field get overly long when CTA is activated with onclick to reveal optin.
|
||||
* Fix styling for email campaign schedule control in customizer.
|
||||
* Rebuilt how optin form style are inlined.
|
||||
* Fixed bug where configuration of an optin clashes with another of same theme.
|
||||
* Small design change of the form builder.
|
||||
* Remove load_plugin_textdomain from core to main plugin file.
|
||||
* Reworked honeypot implementation.
|
||||
* Optimized images and added margin:0 to form optin tag.
|
||||
|
||||
= 1.2.0.4 =
|
||||
* Added link to permanently dismiss review admin notice.
|
||||
|
||||
= 1.2.0.3 =
|
||||
* Removed test files that raised security warning by VaultPress.
|
||||
* Cleanup assets added to customizer preview frame by other plugins/themes.
|
||||
* Fixed issue where sendy connection wasn't saving.
|
||||
* Added index.php to all folders to prevent directory browsing.
|
||||
* Removed close optin and close optin and reload in non-popup forms.
|
||||
* Code and performance improvements.
|
||||
|
||||
= 1.2.0.2 =
|
||||
* Tweak mailerlite to resubscribe user who previously unsubscribe and then opt-in again.
|
||||
* Code and performance improvements.
|
||||
|
||||
= 1.2.0.1 =
|
||||
* Fixed bug where AWeber connection settings page wasn't showing up.
|
||||
|
||||
= 1.2.0.0 =
|
||||
* Added: connected status added to all connections.
|
||||
* Added: Close Optin On Note Click in optin form completed.
|
||||
* Fixed bug where lightbox impression count doubled
|
||||
* Define background-color for all form fields.
|
||||
* Added switch to activate/deactivate optin campaigns.
|
||||
* Added shortcode support to headline, description and note
|
||||
* Redesigned the connection settings page to be sidebar tabbed.
|
||||
* Elementor now added as a connection.
|
||||
* Connection's API key/token now obfuscated on display.
|
||||
* Fixed bug in leads subscription that already exist in mailpoet from failing in other language WP installs eg German.
|
||||
* Revamped single chosen field as well as date time and ace editor.
|
||||
* Rearranged menu such that optin menus comes first before that of email menus.
|
||||
* Added missing text-domain in strings.
|
||||
* Fix textareas control with long height.
|
||||
* Added filter to list of optin form fonts list.
|
||||
* All form fields in optin form now captured during form submit.
|
||||
* Added an event that is triggered after core optin form validation.
|
||||
* An event is now triggered when optin form validation kicks in.
|
||||
* Added styling to builder control descriptions.
|
||||
* Replaced optin actions buttons with icon font. Tooltip added to describe the action.
|
||||
* Replaced email automation actions text descriptions with icons. Tooltip added to describe the action.
|
||||
* Ensure OptinConversionsRepository:: month_conversion_count() return integer.
|
||||
|
||||
= 1.1.7.1 =
|
||||
* Added accidentally removed background color form builder control.
|
||||
* Add action hook after optin form shortcodes definitions.
|
||||
|
||||
= 1.1.7.0 =
|
||||
* Added: form background image customization for optin themes that support it.
|
||||
* Added: shortcodes in email campaigns are now parsed before they are processed for delivery.
|
||||
* Added collapse and expand buttons to connection and settings’ admin pages.
|
||||
* Email campaigns label changed to email automation
|
||||
* Log changed to Email Log
|
||||
* Plugin menu re-arranged.
|
||||
|
||||
= 1.1.6.0 =
|
||||
* Added: GetResponse and GetResponse360 integrations.
|
||||
* Fixed bug where TinyMCE field preview wasn’t working in form/template builder.
|
||||
* Fixed bug where clearing local cookies didn't clear that of successful optin conversion.
|
||||
* Fix compatibility issues with upcoming WordPress 4.9
|
||||
|
||||
= 1.1.5.0 =
|
||||
* Added after conversion actions feature: close optin, close optin and reload page, redirect to URL.
|
||||
* Added Action hook triggered after optin subscription.
|
||||
* Reverted change to limit_text() from wp_trim_words.
|
||||
* Removed older hide_logged_in rule from form builder.
|
||||
* Added: toggling of optin form close button.
|
||||
* Burst connection email list cache after every settings change.
|
||||
* Optimized all image assets.
|
||||
* Added class_exist check to MailPoet API class before usage to prevent any PHP error.
|
||||
|
||||
|
||||
* Custom CSS textarea converted to ACE Editor (Premium).
|
||||
* Recycled existing optin themes to other types (Premium).
|
||||
* Optin background image and logo support land in customizer.
|
||||
* listing of optin and email campaign now in descending order
|
||||
* Fixed bug where undefined webfont JS function causes optin not to display.
|
||||
* Fixed bug that prevent highlighting of active tab in settings page.
|
||||
* Added: shortcode and template tag embed of optin (Premium).
|
||||
* replace custom function for trimming text with wp one
|
||||
* All text-shadows be gone from every submit buttons in optin forms.
|
||||
* Simplified connections composer packaging.
|
||||
* Loads of performance enhancements
|
||||
* Code improvements.
|
||||
|
||||
= 1.1.4.1 =
|
||||
* Fixed bug where before/after post optin form wasn’t showing in post.
|
||||
|
||||
= 1.1.4.0 =
|
||||
* Added MailPoet 3 integration.
|
||||
* Added new Bannino optin theme (Premium).
|
||||
* Added new Dashdot optin theme (Premium).
|
||||
* Added new Daisy optin theme (Premium).
|
||||
* Recycled existing optin themes to other types (Premium).
|
||||
* Optin background image and logo support land in customizer.
|
||||
* listing of optin and email campaign now in descending order
|
||||
* Fixed bug where undefined webfont js function causes optin not to display.
|
||||
* Fixed bug that prevent highlighting of active tab in settings page.
|
||||
* Added: shortcode and template tag embed of optin (Premium).
|
||||
* replace custom function for trimming text with wp one
|
||||
* All text-shadows be gone from every submit buttons in optin forms.
|
||||
* Simplified connections composer packaging.
|
||||
* Loads of performance enhancements
|
||||
* Code improvements.
|
||||
|
||||
= 1.1.3.0 =
|
||||
* Added ActiveCampaign integration.
|
||||
* Listing of optin and email campaign now displays the newest to oldest.
|
||||
* Added styling to pre tag in email template.
|
||||
* Added switch to toggle optin campaigns activation.
|
||||
* Global success and interaction cookies rule implemented. Was previously missing.
|
||||
* New display rule: Optin display can now be determined based on whether users are logged in or not.
|
||||
* Added support for click triggered (2-step optin process). (Premium)
|
||||
* Added refreshing styling to customizer controls.
|
||||
* "Footer Description" changed to "mailing address" in optin customizer.
|
||||
* Added check to ensure jQuery.MailOptin and jQuery.MailOptin.track_impression is defined to prevent any error.
|
||||
* Fixed bug where custom fields associated with a connect/esp do not show on initial customizer UI page load.
|
||||
* Loads of performance enhancements
|
||||
* Code improvements.
|
||||
|
||||
= 1.1.2.0 =
|
||||
* Added integration for Drip (Email Marketing Automation Software).
|
||||
* Added ConvertKit integration.
|
||||
* Added EmailOctopus integration.
|
||||
* Added button to clear optin caches.
|
||||
* Added settings to change optin branding url with affiliate link.
|
||||
* Added impression tracking to inpost optin forms.
|
||||
* Missing close icon now display on all optin types after subscription success.
|
||||
* Fixed js bug that affected safari browsers when customizer is opened.
|
||||
* Connections now implement the features_support() interface contract.
|
||||
* Code improvements and performance enhancements.
|
||||
|
||||
= 1.1.1.1 =
|
||||
* Now compatibility with MySQL versions less than 5.6.5.
|
||||
* Fixed bug where MailChimp subscription wasn't working.
|
||||
|
||||
= 1.1.1.0 =
|
||||
* Added Elementor form integration.
|
||||
|
||||
= 1.1.0.4 =
|
||||
* Fixed bug where email service providers weren't showing on optin campaign customizer.
|
||||
|
||||
= 1.1.0.3 =
|
||||
* Added mailerlite integration.
|
||||
|
||||
= 1.1.0.2 =
|
||||
* Fixed bug where invalid controls were showing for sidebar optin.
|
||||
|
||||
= 1.1.0.1 =
|
||||
* Fixes to some internal APIs.
|
||||
|
||||
= 1.1.0.0 =
|
||||
* the genesis.
|
||||
215
spec/fixtures/dynamic_finders/plugin_version/modula-best-grid-gallery/change_log/changelog.txt
vendored
Normal file
215
spec/fixtures/dynamic_finders/plugin_version/modula-best-grid-gallery/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,215 @@
|
||||
= 2.1.1 - 25.06.2019 =
|
||||
* Added Elementor Widget
|
||||
* Added option to duplicate gallery
|
||||
* Fixed issue with lightbox ( https://github.com/MachoThemes/modula-lite/issues/193 )
|
||||
* Fixed Range Slider UI ( https://github.com/MachoThemes/modula-lite/issues/179 )
|
||||
* Minor Dashboard UI improvements ( https://github.com/MachoThemes/modula-lite/issues/176 , https://github.com/MachoThemes/modula-lite/issues/178 )
|
||||
|
||||
= 2.1.0 - 03.06.2019 =
|
||||
* Admin design improvements
|
||||
* Fixed missing image
|
||||
* Added sorting upsell
|
||||
|
||||
= 2.0.9 - 27.05.2019 =
|
||||
* Fixed Extension menu color css
|
||||
* Fixed PHP Notice
|
||||
* Fixed undefined object javascript
|
||||
* Removed random id
|
||||
|
||||
= 2.0.8 - 24.05.2019 =
|
||||
* Added more options to the gutter's settings
|
||||
* Fixed galleries import/export
|
||||
* Added option to change the color of an image’s title
|
||||
* Removed Google+
|
||||
* Added LinkedIn
|
||||
* Fixed the issue when the gutter was big and the gallery not centered
|
||||
* Added compatibility with Flatsome
|
||||
* Fixed title and caption showing html
|
||||
* Minor css backend improvements
|
||||
* Added the option to dismiss feedback form
|
||||
|
||||
For more information : https://github.com/MachoThemes/modula-lite/milestone/9?closed=1
|
||||
|
||||
= 2.0.7 - 13.03.2019 =
|
||||
* Improved save sistem
|
||||
* Added Lazy Load function
|
||||
* Fixed XSS issue
|
||||
* Fixed minor CSS isues
|
||||
|
||||
= 2.0.6 - 13.03.2019 =
|
||||
* Changed how we save images
|
||||
* Change some strings
|
||||
* Fixed "scroll issue"
|
||||
* Added shortcode column
|
||||
* Fixed error on IE
|
||||
* Fixed random images with max count issue
|
||||
* Added Filter tab as upsell
|
||||
* Added option to hide/show lightbox arrow on desktop/mobile
|
||||
* Fixed Custom responsiveness issue
|
||||
* Added Gutenberg block
|
||||
|
||||
For more information : https://github.com/MachoThemes/modula-lite/milestone/8?closed=1
|
||||
|
||||
= 2.0.5 =
|
||||
* Added responsive options for custom grid
|
||||
* Compatibility with WP Real Media Library( https://matthias-web.com/wordpress/real-media-library/ )
|
||||
* Fixed shuffle on custom grid
|
||||
* Added swipe functionality on mobile for lightbox
|
||||
* Enhanced Modula Media Library
|
||||
|
||||
= 2.0.4 =
|
||||
* Fixed defaults ( Causing an issue on modula pro with filters )
|
||||
* Fixed translations
|
||||
* Prepared for Modula Speed Up
|
||||
* Changed the checkboxes' design
|
||||
* Fixed Facebook share link
|
||||
|
||||
= 2.0.3 =
|
||||
* All issues from here : https://github.com/MachoThemes/modula-lite/milestone/5?closed=1
|
||||
* Added a new button ( Save & Close ) in edit image modal ( James Leesley recommendation )
|
||||
* Renamed "Description" with "Caption" ( James Leesley recommendation )
|
||||
* Fixed error on resize
|
||||
* Fixed Shuffle
|
||||
* Generated .po file
|
||||
|
||||
= 2.0.2 =
|
||||
* Changed strings
|
||||
* Fixed open new tab checkbox
|
||||
* Fixed caption color
|
||||
* Fixed caption & title size
|
||||
* Fixed custom grid layout
|
||||
|
||||
= 2.0.1 - 12.17.2018 =
|
||||
* Major Update
|
||||
* Build Custom Grids - Take full control of your galleries.
|
||||
* New Admin Interface - For a more intuitive user interface, we've blended Modula right into WordPress.
|
||||
* Drag & Drop to Upload Images
|
||||
* Guidelines to Help You Make the Perfect Gallery
|
||||
* Preview your Gallery Without the Hassle
|
||||
|
||||
= 1.3.7 =
|
||||
* fixed dismiss button from beta testing notice.
|
||||
|
||||
= 1.3.6 =
|
||||
* removed custom js field.
|
||||
|
||||
= 1.3.5 =
|
||||
* second wp.org review
|
||||
|
||||
= 1.3.4 =
|
||||
* wp.org review
|
||||
|
||||
= 1.3.3 =
|
||||
* Added notification for Modula 2.0
|
||||
* Added Compatibility with AO
|
||||
|
||||
= 1.3.2 =
|
||||
* Validated HTML markup
|
||||
|
||||
= 1.3.1 =
|
||||
* Changed lightbox script
|
||||
|
||||
= 1.3.0 =
|
||||
* Added compatibility with : WPML/Visual Composer/Page Builder by SiteOrigin
|
||||
* Fixed bugs with captions & titles
|
||||
* Localized all text strings
|
||||
* Fixed lightbox bug
|
||||
* For a more detailed changelog check : https://github.com/MachoThemes/modula-lite/milestone/2?closed=1
|
||||
|
||||
= 1.2.1 =
|
||||
* Fixed the broken link
|
||||
* Hid the Edit gallery menu item
|
||||
|
||||
= 1.2 =
|
||||
* Removed sub-menu entry: Tutorial
|
||||
* Removed sub-menu entry: Other Galleries
|
||||
* Removed fixed action button
|
||||
* Removed Modula Survey by Diego Imbriani
|
||||
* Re-worked the "Upgrade" page.
|
||||
* Removed the "languages" folder. We'll be using GlotPress to handle these
|
||||
* Fixed an issue with WPML plugin
|
||||
|
||||
= 1.1.13 =
|
||||
* Enhanced lightbox compatibility
|
||||
|
||||
= 1.1.10 =
|
||||
* Enhancement in backend UI
|
||||
|
||||
= 1.1.9 =
|
||||
* Minor change in backend UI
|
||||
|
||||
= 1.1.8 =
|
||||
* Fixed broken css for backends under SSL
|
||||
|
||||
= 1.1.7 =
|
||||
* Tool to fix broken images after version 1.1.0
|
||||
|
||||
= 1.1.6 =
|
||||
* Bug fix (impossible to select effect "None")
|
||||
|
||||
= 1.1.5 =
|
||||
* Fixed issue on admin panel when images are too tall
|
||||
|
||||
= 1.1.4 =
|
||||
* Changed CSS icon prefix to avoid conflicts
|
||||
|
||||
= 1.1.3 =
|
||||
* Fixed bug (linked images opening in lightbox)
|
||||
|
||||
= 1.1.2 =
|
||||
* Fixed social icons bug
|
||||
|
||||
= 1.1.1 =
|
||||
* Bug fix
|
||||
|
||||
= 1.1.0 =
|
||||
* New image management
|
||||
* Import tool for Envira galleries
|
||||
* Import tool for NextGen galleries
|
||||
|
||||
= 1.0.12 =
|
||||
* Added link to ShortPixel plugin for image optimization
|
||||
|
||||
= 1.0.11 =
|
||||
* Minor bug fix: fixed missing preview effect image
|
||||
|
||||
= 1.0.10 =
|
||||
* Bug fix: now Lightbox opens image at full size
|
||||
|
||||
= 1.0.9 =
|
||||
* Fixed url to upgrade
|
||||
|
||||
= 1.0.8 =
|
||||
* Fixed url to upgrade
|
||||
|
||||
= 1.0.7 =
|
||||
* Changed call to action for the survey
|
||||
|
||||
= 1.0.6 =
|
||||
* Fixed CSS issue with Lightbox and some themes. New page in admin panel to show other gallery plugins. Enhancements of the UI of admin panel.
|
||||
|
||||
= 1.0.5 =
|
||||
* Added handy links on plugins page
|
||||
|
||||
= 1.0.4 =
|
||||
* Updated pot file for translations
|
||||
|
||||
= 1.0.3 =
|
||||
* Bug fix: now images can be sorted also in the "Add gallery" wizard
|
||||
|
||||
= 1.0.2 =
|
||||
* Added link to survey to help us making a better plugin
|
||||
|
||||
= 1.0.1 =
|
||||
* Fixed issue when activating the plugin
|
||||
|
||||
= 1.0.0 =
|
||||
* This is the launch version. No changes yet.
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.1.8 =
|
||||
* This update will fix broken CSS of admin panel under SSL
|
||||
|
||||
= 1.1.7 =
|
||||
* This update contains a tool to fix broken images.
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,240 @@
|
||||
# Copyright (C) 2019 Jörn Lund
|
||||
# This file is distributed under the same license as the Multisite Blog Alias plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Multisite Blog Alias 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/multisite-blog-alias\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-16T14:23:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: multisite-blog-alias\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Multisite Blog Alias"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/mcguffin/multisite-blog-alias"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Alias Domains for Blogs"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jörn Lund"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/mcguffin"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:67
|
||||
msgid "The Multisite Blog Alias plugin requires a WordPress multisite installation."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:68
|
||||
msgid "It has been deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:67
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:483
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:72
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:75
|
||||
msgid "Error message:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:80
|
||||
msgid "Last Redirect to:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:70
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:80
|
||||
msgid "Sorry, you are not allowed to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:96
|
||||
msgid "Multisite Blog Alias Setup"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:101
|
||||
msgid "The plugin is well configured. The instructions are kept for documentation purposes."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:108
|
||||
msgid "The plugin could not write to the filesystem."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:109
|
||||
msgid "Please change the following."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Sunrise file location
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:140
|
||||
msgid "Insert the following code into %s:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Sunrise file location
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:143
|
||||
msgid "Create a file %s with the following code:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:174
|
||||
msgid "Sorry, you are not allowed to run the uninstall procedere."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:196
|
||||
msgid "Uninstall Plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:197
|
||||
msgid "Uninstalling the plugin will remove the Blog Alias table from the database and deactivate the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %d number of alias domains
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:201
|
||||
msgid "%d Alias Domain will be deleted."
|
||||
msgid_plural "%d Alias Domains will be deleted."
|
||||
msgstr[0] ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:204
|
||||
msgid "No, back to plugins"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:205
|
||||
msgid "Yes, Uninstall now!"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:369
|
||||
msgid "Alias Domains"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:445
|
||||
msgid "Not Configured:"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: link to setup page
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:448
|
||||
msgid "Multisite Blog Alias is not configured. Please visit %s for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:452
|
||||
msgid "the setup page"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:460
|
||||
msgid "Alias created"
|
||||
msgstr ""
|
||||
|
||||
#. translators: number of deleted entries
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:463
|
||||
msgid "%d entry deleted"
|
||||
msgid_plural "%d entries deleted"
|
||||
msgstr[0] ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:466
|
||||
msgid "The Alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:467
|
||||
msgid "Invalid domain name"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:468
|
||||
msgid "Deletion failed"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:469
|
||||
msgid "A different Blog is already using this domain."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:470
|
||||
msgid "Something went wrong..."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:473
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:480
|
||||
msgid "Visit other Blog"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:491
|
||||
msgid "Notice:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:492
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:76
|
||||
msgid "The domain matches the site URL of this blog."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:524
|
||||
msgid "Add Domain Alias"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:535
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:542
|
||||
msgid "Domain Aliases"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:546
|
||||
msgid "– No Domain Aliases –"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:554
|
||||
msgid "Alias Domain"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:555
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:583
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:600
|
||||
msgid "Check Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:602
|
||||
msgid "Remove All"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:60
|
||||
msgid "Domain alias not found."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:69
|
||||
msgid "WP-Site for this alias could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:74
|
||||
msgid "The domain is already used by another site."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:92
|
||||
msgid "The domain is unreachable."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:99
|
||||
msgid "The domain or a redirect does not point to this blog."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,133 @@
|
||||
# Copyright (C) 2018 My WP Translate
|
||||
# This file is distributed under the same license as the My WP Translate package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: My WP Translate 1.0.8\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/my-wp-translate\n"
|
||||
"POT-Creation-Date: 2018-01-26 08:15: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: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:95
|
||||
msgid "Are you sure you want to delete plugin translations?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:96
|
||||
msgid ""
|
||||
"Please make sure that you have correct code and that you have the backup of "
|
||||
"current strings. Proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:97
|
||||
msgid "No data to import. Please paste the code in import field."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:98
|
||||
msgid "Updating export code..."
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# my-wp-translate.pot (My WP Translate 1.0.8) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: admin/class-my-wp-translate-admin.php:114
|
||||
#: admin/class-my-wp-translate-admin.php:115
|
||||
msgid "My WP Translate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:149
|
||||
msgid "Select Active Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:197
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:223
|
||||
msgid "Enable translation panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:226
|
||||
msgid ""
|
||||
"We couldn't find language file, please enter the path to your theme/plugin "
|
||||
"language file relative to wp-content folder."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:233
|
||||
msgid "Search Translations"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:237
|
||||
msgid "Strings Per Page:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:261
|
||||
msgid "Toggle Import/Export Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:265
|
||||
msgid "Import Translated Strings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:266
|
||||
msgid "Export Translated Strings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:271
|
||||
msgid "Paste your import/backup code and press \"Import\" button below."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:273
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:277
|
||||
msgid "Copy export/backup code and keep it safe."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:286
|
||||
msgid "Create and Download .po file"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:349
|
||||
msgid "Add Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:476
|
||||
msgid "Page:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:789
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:802
|
||||
msgid ""
|
||||
"Translated <span class=\"translated\">%1$d</span> strings out of <span class="
|
||||
"\"total\">%2$d</span> <span class=\"percent\">(%3$.2f%%)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-my-wp-translate-admin.php:1010
|
||||
msgid ""
|
||||
"Something is wrong with import data. Please paste valid code and try again."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://mythemeshop.com/plugins/my-wp-translate/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Simple yet powerful Translate plugin for WordPress. Can be used with most of "
|
||||
"the themes and plugins which support translation."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "MyThemeShop"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://mythemeshop.com/"
|
||||
msgstr ""
|
||||
203
spec/fixtures/dynamic_finders/plugin_version/olympus-google-fonts/change_log/changelog.txt
vendored
Normal file
203
spec/fixtures/dynamic_finders/plugin_version/olympus-google-fonts/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,203 @@
|
||||
= 1.8.4 =
|
||||
|
||||
* Add compatibility pack for ThemeIsle themes.
|
||||
|
||||
= 1.8.3 =
|
||||
|
||||
* Move 'CSS' setting to 'Advanced' panel
|
||||
* Add 'Reset' option to 'Debugging' section
|
||||
|
||||
= 1.8.2 =
|
||||
|
||||
* Further improve theme compatibility for basic settings
|
||||
|
||||
= 1.8.1 =
|
||||
|
||||
* Fix for "Invalid argument supplied for foreach()" error
|
||||
|
||||
= 1.8.0 =
|
||||
|
||||
* Add 'Load Fonts for CSS' option.
|
||||
* Add first implementation of compatibility filter (ThemeGrill)
|
||||
|
||||
= 1.7.6 =
|
||||
|
||||
* Add global font choices to block editor.
|
||||
* Fix error in Gutenberg block.
|
||||
|
||||
= 1.7.5 =
|
||||
|
||||
* Fix font-display: swap in Gutenberg Block.
|
||||
* Improve compatibility with MailOptin.
|
||||
|
||||
= 1.7.4 =
|
||||
|
||||
* Transform core paragraph and heading blocks into "Google Fonts Blocks".
|
||||
* Add color option to "Google Fonts Block".
|
||||
* Add Block Type option to "Google Fonts Block".
|
||||
* Allow text customization in blocks even when a font is not selected.
|
||||
|
||||
= 1.7.3 =
|
||||
|
||||
* Compatibility fix for 'Local Hosting' addon.
|
||||
|
||||
= 1.7.2 =
|
||||
|
||||
* Add system fonts to the available choices.
|
||||
* Remove font_choices_for_select() to reduce the amount of code output in the customizer.
|
||||
* Fix issue where line-height is always 1.
|
||||
|
||||
= 1.7.1 =
|
||||
|
||||
* Fix changelog.txt link and include file in package.
|
||||
|
||||
= 1.7.0 =
|
||||
|
||||
* Reduce the load time impact on the customizer by ~1/3rd. Credits @aristath
|
||||
|
||||
= 1.6.3 =
|
||||
|
||||
* Fix $time Undefined variable.
|
||||
* Update .pot file
|
||||
* Update premium messaging
|
||||
|
||||
= 1.6.2 =
|
||||
|
||||
* Remove plugin recommendation for pro users as they already have the functionality
|
||||
|
||||
= 1.6.1 =
|
||||
|
||||
* Improve notifications class
|
||||
|
||||
= 1.6.0 =
|
||||
|
||||
* Add hook to CSS output
|
||||
* Optimize CSS output
|
||||
|
||||
= 1.5.3 =
|
||||
|
||||
* Update icon.
|
||||
* Move changelog to changelog.txt
|
||||
|
||||
= 1.5.2 =
|
||||
|
||||
* Improve Font Style setting.
|
||||
|
||||
= 1.5.1 =
|
||||
|
||||
* Speed up load times using preconnect resource hint.
|
||||
|
||||
= 1.5.0 =
|
||||
|
||||
* Fix problem with italics not being loaded.
|
||||
|
||||
= 1.4.8 =
|
||||
|
||||
* Improve theme compatibility
|
||||
|
||||
* Fix previewer not showing fonts
|
||||
* Add new fonts
|
||||
|
||||
= 1.4.0 =
|
||||
|
||||
* Substantial performance improvements
|
||||
* Improved organization of settings
|
||||
|
||||
= 1.3.2 =
|
||||
|
||||
* Add welcome notice.
|
||||
|
||||
= 1.3.1 =
|
||||
|
||||
* Update font list.
|
||||
* Add version strings to resources.
|
||||
* Add deactivation survey.
|
||||
|
||||
= 1.3.0 =
|
||||
|
||||
* Add 'Force Styles' setting to the bottom of 'Advanced Settings'.
|
||||
|
||||
= 1.2.5 =
|
||||
|
||||
* Improve theme compatibility.
|
||||
|
||||
= 1.2.4 =
|
||||
|
||||
* Improve customizer CSS.
|
||||
* Improve Javascript code.
|
||||
|
||||
= 1.2.3 =
|
||||
|
||||
* Improve CSS for post/page headings and content.
|
||||
|
||||
= 1.2.2 =
|
||||
|
||||
* Minor updates
|
||||
|
||||
= 1.2.1 =
|
||||
|
||||
* Remove unused code
|
||||
|
||||
= 1.2.0 =
|
||||
|
||||
* Add new fonts
|
||||
* Add font-weight option
|
||||
* Add font-style option
|
||||
* Improve live preview
|
||||
* Add settings link to plugins page
|
||||
* Add searchable text field to font-family setting
|
||||
* Remove 'force styles' setting
|
||||
|
||||
= 1.1.2 =
|
||||
|
||||
* Add feedback request
|
||||
|
||||
= 1.1.1 =
|
||||
|
||||
* Add new fonts
|
||||
|
||||
= 1.1.0 =
|
||||
|
||||
* Improve outputting of Google stylesheet
|
||||
|
||||
= 1.0.9 =
|
||||
|
||||
* Fix navigation font setting
|
||||
|
||||
= 1.0.8 =
|
||||
|
||||
* Fix compatibility issue with PHP 5.2
|
||||
|
||||
= 1.0.7 =
|
||||
|
||||
* Add advanced settings
|
||||
|
||||
= 1.0.6 =
|
||||
|
||||
* Minor code improvements
|
||||
|
||||
= 1.0.5 =
|
||||
|
||||
* Add force styles option
|
||||
|
||||
= 1.0.3 =
|
||||
|
||||
* Rewrite readme
|
||||
|
||||
= 1.0.3 =
|
||||
|
||||
* Rename to adhere to guidelines
|
||||
|
||||
= 1.0.2 =
|
||||
|
||||
* Refactor get_choices in class-google-url.php
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
* Fix bug in class-google-url.php
|
||||
* Add missing translation
|
||||
* Add .pot file for translators
|
||||
|
||||
= 1.0.0 =
|
||||
|
||||
* Initial release of Google Fonts for WordPress
|
||||
64
spec/fixtures/dynamic_finders/plugin_version/option-tree/composer_file/composer.json
vendored
Normal file
64
spec/fixtures/dynamic_finders/plugin_version/option-tree/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"name": "valendesigns/option-tree",
|
||||
"description": "Theme Options UI Builder for WordPress.",
|
||||
"version": "2.7.3",
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://github.com/valendesigns/option-tree",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Derek Herman",
|
||||
"email": "derek@valendesigns.com",
|
||||
"homepage": "http://valendesigns.com",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"prefer-stable" : true,
|
||||
"require": {
|
||||
"php": ">=5.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"brainmaestro/composer-git-hooks": "^2.6.0",
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
|
||||
"phpcompatibility/phpcompatibility-wp": "*",
|
||||
"php-coveralls/php-coveralls": "^2.1",
|
||||
"slowprog/composer-copy-file": "0.2.1",
|
||||
"wp-coding-standards/wpcs": "*",
|
||||
"xwp/wp-dev-lib": "^1.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"phpcs": [
|
||||
"./vendor/bin/phpcs ${1:.} --standard=.phpcs.ruleset.xml"
|
||||
],
|
||||
"phpcbf": [
|
||||
"./vendor/bin/phpcbf ${1:.} --standard=.phpcs.ruleset.xml"
|
||||
],
|
||||
"phpunit": [
|
||||
"./bin/phpunit.sh xdebug_off"
|
||||
],
|
||||
"phpunit-coverage": [
|
||||
"./bin/phpunit.sh xdebug_on"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"./bin/install-tests.sh",
|
||||
"./vendor/bin/cghooks add --no-lock",
|
||||
"SlowProg\\CopyFile\\ScriptHandler::copy"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"./bin/install-tests.sh",
|
||||
"./vendor/bin/cghooks update",
|
||||
"SlowProg\\CopyFile\\ScriptHandler::copy"
|
||||
],
|
||||
"readme": [
|
||||
"./vendor/xwp/wp-dev-lib/scripts/generate-markdown-readme"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"copy-file": {
|
||||
"tests/autoload.php": "tests/wp-tests/phpunit/wp-tests-config.php"
|
||||
},
|
||||
"hooks": {
|
||||
"pre-commit": "./vendor/xwp/wp-dev-lib/scripts/pre-commit"
|
||||
}
|
||||
}
|
||||
}
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/payex-woocommerce-payments/change_log/changelog.txt
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/payex-woocommerce-payments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
@@ -0,0 +1,241 @@
|
||||
# PHP Console Log.
|
||||
# Copyright (C) 2019 Marcus Viar
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PHP Console Log 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: marcus@marcusviar.com\n"
|
||||
"POT-Creation-Date: 2019-07-06 18:16-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: includes/php-console-log-menu.php:20 includes/php-console-log-menu.php:21
|
||||
msgid "PHP Console Log Help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-menu.php:40
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-scripts.php:65
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-scripts.php:66
|
||||
msgid "Line"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-scripts.php:67
|
||||
msgid "Args"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:39
|
||||
msgid "None."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:39
|
||||
msgid "loads first."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:77
|
||||
msgid "Important:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:78
|
||||
msgid ""
|
||||
"For security and performance on a production site, make sure to deactivate "
|
||||
"this plugin and remove all calls to"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:78
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
#: pages/php-console-log-page-help.php:207
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "My String or Array"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:78
|
||||
msgid ""
|
||||
"from your PHP code before going live to avoid exposing your PHP variables to "
|
||||
"the public."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:80
|
||||
msgid "Plugins That Load Before PHP Console Log"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:81
|
||||
msgid ""
|
||||
"PHP Console Log's functions are not accessible to any plugins that load "
|
||||
"before PHP Console Log is loaded. Therefore, Any plugins listed here will "
|
||||
"not be able to use PHP Console Log features."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:84
|
||||
msgid "Examples:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
msgid "Place the"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
msgid ""
|
||||
"function anywhere in your WordPress plugin PHP code. The value(s) "
|
||||
"you pass into"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
msgid "will be logged to the web console in your browser."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:88
|
||||
msgid "Pass in a string:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:98
|
||||
msgid "Pass in an array:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:111
|
||||
msgid "Pass in an associative array:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:124
|
||||
msgid ""
|
||||
"Pass in an unlimited number of arguments nested to an unlimited depth (multi-"
|
||||
"dimensional array):"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:150
|
||||
msgid "Opening Web Console in your browser:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:156
|
||||
msgid ""
|
||||
"Press Command + Option + J (Mac) or Control + Shift + J (Windows, Linux, "
|
||||
"Chrome OS) to jump straight into the Console panel."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:158
|
||||
#: pages/php-console-log-page-help.php:167
|
||||
#: pages/php-console-log-page-help.php:175
|
||||
msgid "source"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:163
|
||||
msgid ""
|
||||
"Select Web Console from the Web Developer submenu in the Firefox Menu (or "
|
||||
"Tools menu if you display the menu bar or are on Mac OS X)."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:165
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:166
|
||||
msgid ""
|
||||
"Press the Ctrl + Shift + K (Command + Option + K on OS X) keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:172
|
||||
msgid "Select Develop menu in the menu bar, choose Show JavaScript Console."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:174
|
||||
msgid ""
|
||||
"If you dont see the Develop menu in the menu bar, choose Safari > "
|
||||
"Preferences, click Advanced, then select \"Show Develop menu in menu bar\"."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:180
|
||||
msgid "Troubleshooting:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:181
|
||||
msgid ""
|
||||
"The most common reasons that cause PHP Console Log to fail when logging your "
|
||||
"information to the web console are:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:186
|
||||
#: pages/php-console-log-page-help.php:196
|
||||
#: pages/php-console-log-page-help.php:206
|
||||
#: pages/php-console-log-page-help.php:216
|
||||
msgid "Cause:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:187
|
||||
msgid "The PHP Console log plugin is not activated."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:190
|
||||
#: pages/php-console-log-page-help.php:200
|
||||
#: pages/php-console-log-page-help.php:210
|
||||
#: pages/php-console-log-page-help.php:220
|
||||
msgid "Solution:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:191
|
||||
msgid "Activate the PHP Console Log Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:197
|
||||
msgid ""
|
||||
"Another plugin has changed the order in which your plugins load. Making the "
|
||||
"PHP Console Log functions not available yet."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:201
|
||||
msgid ""
|
||||
"PHP Console Log updates the order in which plugins are loaded any time a "
|
||||
"plugin is activated or deactivated. However, it is still possible for other "
|
||||
"plugins to change the order in which plugins load afterwards. Deactivate any "
|
||||
"plugins that change the order in which your plugins load."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:207
|
||||
msgid "was called inside a block of code that was not run."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "Make sure the function you called"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "in is run via an action or filter hook such as:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "Or call"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "outside of any other functions in a file that you know is run."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "PHP throws errors."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "Side Note:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "Make sure you are using"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "in your wp-config.php file so you can see PHP errors."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:221
|
||||
msgid "Fix the error that PHP is showing you. Then try again."
|
||||
msgstr ""
|
||||
@@ -612,6 +612,10 @@
|
||||
<link rel="stylesheet" id="ak_akucom-css" href="http://wp.lab/wp-content/plugins/alkivia/style.css?ver=0.10.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- all-in-one-analytics -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/all-in-one-analytics/public/js/analytics/analytics.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- all-in-one-event-calendar -->
|
||||
<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">
|
||||
|
||||
@@ -1046,6 +1050,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/auto-translate/public/js/auto-translate-public.min.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- autocorrector-wp-camelcase -->
|
||||
<link rel="stylesheet" id="autocorrector-wp-camelcase-css" href="http://wp.lab/wp-content/plugins/autocorrector-wp-camelcase/public/css/autocorrector-wp-camelcase-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/autocorrector-wp-camelcase/public/js/autocorrector-wp-camelcase-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- automatic-copyright-year -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/automatic-copyright-year/script.js?ver=1.0"></script>
|
||||
|
||||
@@ -1274,6 +1283,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bdtask-booking365/public/ajax/msbdt-public-professional-display-ajax.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- bdtask-crm -->
|
||||
<link rel="stylesheet" id="bdtaskcrm-css" href="http://wp.lab/wp-content/plugins/bdtask-crm/public/css/bdtaskcrm-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bdtask-crm/public/js/bdtaskcrm-public.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bdtask-crm/admin/js/demo.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- bdwebteam-recent-post-tabs-widget -->
|
||||
<link rel="stylesheet" id="bdwebteam-recent-post-tabs-widget-css" href="http://wp.lab/wp-content/plugins/bdwebteam-recent-post-tabs-widget/css/bdwebteam-recent-tabs-widget.css?ver=1.0.2" type="text/css" media="screen">
|
||||
|
||||
@@ -1428,6 +1443,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bigcommerce/assets/js/dist/scripts.min.js?ver=2.0.1-5.38.03.06.2019"></script>
|
||||
|
||||
|
||||
<!-- bigideas -->
|
||||
<link rel="stylesheet" id="ideas-css" href="http://wp.lab/wp-content/plugins/bigideas/public/css/ideas-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bigideas/public/js/ideas-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- billbee-auftragsabwicklung-warenwirtschaft-automatisierung -->
|
||||
<link rel="stylesheet" id="billbee-css" href="http://wp.lab/wp-content/plugins/billbee-auftragsabwicklung-warenwirtschaft-automatisierung/public/css/billbee-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/billbee-auftragsabwicklung-warenwirtschaft-automatisierung/public/js/billbee-public.js?ver=1.0.0"></script>
|
||||
@@ -1574,6 +1594,8 @@
|
||||
<link rel="stylesheet" id="owl-theme-default-css" href="http://wp.lab/wp-content/plugins/blossomthemes-toolkit/public/css/owl.theme.default.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blossomthemes-toolkit/public/js/blossomthemes-toolkit-public.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blossomthemes-toolkit/public/js/owl.carousel.min.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="blossomthemes-toolkit-css" href="http://wp.lab/wp-content/plugins/blossomthemes-toolkit/public/css/blossomthemes-toolkit-public.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blossomthemes-toolkit/public/js/blossomthemes-toolkit-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- blueposts -->
|
||||
@@ -1708,6 +1730,7 @@
|
||||
<link rel="stylesheet" id="wpbc-calendar-skin-css" href="http://wp.lab/wp-content/plugins/booking/css/skins/traditional.css?ver=8.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/booking/js/wpbc_vars.js?ver=8.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/booking/js/client.js?ver=8.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/booking/js/wpbc_times.js?ver=8.1"></script>
|
||||
|
||||
|
||||
<!-- booking-activities -->
|
||||
@@ -1756,6 +1779,28 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookly-responsive-appointment-booking-tool/frontend/resources/js/intlTelInput.min.js?ver=13.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookly-responsive-appointment-booking-tool/frontend/resources/js/bookly.js?ver=13.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookly-responsive-appointment-booking-tool/frontend/modules/customer_profile/resources/js/customer_profile.js?ver=13.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookly-responsive-appointment-booking-tool/frontend/resources/js/bookly.min.js?ver=13.2"></script>
|
||||
|
||||
|
||||
<!-- bookme-pro-free-appointment-booking-system -->
|
||||
<link rel="stylesheet" id="bookme-pro-intlTelInput-css" href="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/css/intlTelInput.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bookme-pro-ladda-min-css" href="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/css/ladda.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bookme-pro-picker-css" href="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/css/picker.classic.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bookme-pro-picker-date-css" href="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/css/picker.classic.date.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bookme-pro-scroll-css" href="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/css/trackpad-scroll.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bookme-pro-css" href="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/css/bookme-pro.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bookme-pro-customer-profile-css" href="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/controllers/customer_profile/assets/css/customer_profile.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/spin.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/ladda.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/hammer.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/jquery.hammer.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/jquery.scroll.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/picker.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/picker.date.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/intlTelInput.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/tooltip.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/assets/js/bookme-pro.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bookme-pro-free-appointment-booking-system/frontend/controllers/customer_profile/assets/js/customer_profile.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- bookwize-booking-form -->
|
||||
@@ -1862,6 +1907,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bpmcontext-client-suite/includes/bpm-sdk/js/bpmcontext_missing_menu.js?ver=3.1.12"></script>
|
||||
|
||||
|
||||
<!-- br-knowledge-base -->
|
||||
<link rel="stylesheet" id="blue-rooster-main-css" href="http://wp.lab/wp-content/plugins/br-knowledge-base/public/css/main.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bluer-rooster-public-css" href="http://wp.lab/wp-content/plugins/br-knowledge-base/public/css/BR_KNOWLEDGE_BASE-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="blue-rooster-font-awesome-css" href="http://wp.lab/wp-content/plugins/br-knowledge-base/public/css/font-awesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/br-knowledge-base/public/js/BR_KNOWLEDGE_BASE-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- branding -->
|
||||
<link rel="stylesheet" id="lolita-css-loader-css" href="http://wp.lab/wp-content/plugins/branding/LolitaFramework/CssLoader/assets/css/lolita_css_loader.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -1941,6 +1993,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress/bp-core/js/vendor/jquery-cookie.min.js?ver=2.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress/bp-core/js/vendor/jquery-scroll-to.min.js?ver=2.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress/bp-templates/bp-legacy/js/buddypress.min.js?ver=2.9.2"></script>
|
||||
<link rel="stylesheet" id="bp-nouveau-css" href="http://wp.lab/wp-content/plugins/buddypress/bp-templates/bp-nouveau/css/buddypress.min.css?ver=2.9.2" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-nouveau.min.js?ver=2.9.2"></script>
|
||||
|
||||
|
||||
<!-- buddypress-global-search -->
|
||||
@@ -1953,6 +2007,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress-media/app/assets/js/rtmedia.min.js?ver=4.4.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress-media/app/assets/js/rtMedia.backbone.js?ver=4.4.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress-media/lib/touchswipe/jquery.touchSwipe.min.js?ver=4.4.4"></script>
|
||||
<link rel="stylesheet" id="rt-mediaelement-css" href="http://wp.lab/wp-content/plugins/buddypress-media/lib/media-element/mediaelementplayer-legacy.min.css?ver=4.4.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="rt-mediaelement-wp-css" href="http://wp.lab/wp-content/plugins/buddypress-media/lib/media-element/wp-mediaelement.min.css?ver=4.4.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="rtmedia-upload-terms-main-css" href="http://wp.lab/wp-content/plugins/buddypress-media/app/assets/css/rtm-upload-terms.min.css?ver=4.4.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress-media/lib/media-element/mediaelement-and-player.min.js?ver=4.4.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddypress-media/lib/media-element/wp-mediaelement.min.js?ver=4.4.4"></script>
|
||||
|
||||
|
||||
<!-- buddyslack -->
|
||||
@@ -2178,6 +2237,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-scroll-progress-bar/public/js/catch-scroll-progress-bar-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-social-share -->
|
||||
<link rel="stylesheet" id="catch-social-share-css" href="http://wp.lab/wp-content/plugins/catch-social-share/public/css/catch-social-share-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/catch-social-share/fonts/css/font-awesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-social-share/public/js/catch-social-share-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-under-construction -->
|
||||
<link rel="stylesheet" id="catch-under-construction-css" href="http://wp.lab/wp-content/plugins/catch-under-construction/public/css/catch-under-construction-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-under-construction/public/js/catch-under-construction-public.js?ver=1.0.0"></script>
|
||||
@@ -2341,6 +2406,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-color-picker/public/js/jscolor.min.js?ver=0.1"></script>
|
||||
|
||||
|
||||
<!-- cf7-conditional-fields -->
|
||||
<link rel="stylesheet" id="cf7cf-style-css" href="http://wp.lab/wp-content/plugins/cf7-conditional-fields/style.css?ver=1.6.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=1.6.4"></script>
|
||||
|
||||
|
||||
<!-- cf7-countries -->
|
||||
<link rel="stylesheet" id="cf7-countries-css" href="http://wp.lab/wp-content/plugins/cf7-countries/public/css/cf7-countries-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-countries/public/js/cf7-countries-public.js?ver=1.0.0"></script>
|
||||
@@ -2360,6 +2430,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-notie/public/js/notie.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- cf7-phone-mask-field -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-phone-mask-field/assets/js/jquery.maskedinput.min.js?ver=1.3"></script>
|
||||
|
||||
|
||||
<!-- cf7-reply-manager -->
|
||||
<link rel="stylesheet" id="cf7_rm_style-css" href="http://wp.lab/wp-content/plugins/cf7-reply-manager/admin/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-reply-manager/admin/js/cf7_rm.js?ver=1.0.0"></script>
|
||||
@@ -2929,6 +3003,9 @@
|
||||
<!-- cookie-law-info -->
|
||||
<link rel="stylesheet" id="cookielawinfo-style-css" href="http://wp.lab/wp-content/plugins/cookie-law-info/css/cli-style.css?ver=1.5.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cookie-law-info/js/cookielawinfo.js?ver=1.5.3"></script>
|
||||
<link rel="stylesheet" id="cookie-law-info-css" href="http://wp.lab/wp-content/plugins/cookie-law-info/public/css/cookie-law-info-public.css?ver=1.5.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cookie-law-info-gdpr-css" href="http://wp.lab/wp-content/plugins/cookie-law-info/public/css/cookie-law-info-gdpr.css?ver=1.5.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cookie-law-info/public/js/cookie-law-info-public.js?ver=1.5.3"></script>
|
||||
|
||||
|
||||
<!-- cookie-law-script-italiano -->
|
||||
@@ -3268,6 +3345,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/devvn-image-hotspot/frontend/js/jquery.ihotspot.min.js?ver=1.1.4"></script>
|
||||
|
||||
|
||||
<!-- different-menus-in-different-pages -->
|
||||
<link rel="stylesheet" id="different-menus-in-different-pages-css" href="http://wp.lab/wp-content/plugins/different-menus-in-different-pages/public/css/different-menus-for-different-page-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/different-menus-in-different-pages/public/js/different-menus-for-different-page-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- digipass -->
|
||||
<link rel="stylesheet" id="digipass-plugin-styles-css" href="http://wp.lab/wp-content/plugins/digipass/public/assets/css/dp-public.css?ver=0.3.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/digipass/public/assets/js/dp-public.js?ver=0.3.0"></script>
|
||||
@@ -3839,6 +3921,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/eshop-shipping-extension/includes/modules/../eshop_shipping_extension.js?ver=2.4"></script>
|
||||
|
||||
|
||||
<!-- essential-addons-for-elementor-lite -->
|
||||
<link rel="stylesheet" id="eael-front-end-css" href="//wp.lab/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/eael.min.css?ver=3.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="//wp.lab/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/eael.min.js?ver=3.1.1"></script>
|
||||
|
||||
|
||||
<!-- essential-real-estate -->
|
||||
<link rel="stylesheet" id="ere_main-css" href="http://wp.lab/wp-content/plugins/essential-real-estate/public/assets/css/main.css?ver=1.4.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/essential-real-estate/public/assets/js/ere-main.js?ver=1.4.1"></script>
|
||||
@@ -4201,6 +4288,12 @@
|
||||
<link rel="stylesheet" id="feedreading_style-css" href="http://wp.lab/wp-content/plugins/feed-reading-blogroll/css/feedreading_blogroll.css?ver=1.5.9.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- feed-them-social -->
|
||||
<link rel="stylesheet" id="fts-feeds-css" href="http://wp.lab/wp-content/plugins/feed-them-social/feeds/css/styles.css?ver=2.6.9" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/feed-them-social/feeds/js/powered-by.js?ver=2.6.9"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/feed-them-social/feeds/js/fts-global.js?ver=2.6.9"></script>
|
||||
|
||||
|
||||
<!-- feedback-pivotal -->
|
||||
<link rel="stylesheet" id="pivotal-feedback-public-css-css" href="http://wp.lab/wp-content/plugins/feedback-pivotal/public/css/pivotal-feedback-form-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/feedback-pivotal/public/js/pivotal-feedback-form-public.js?ver=1.0.0"></script>
|
||||
@@ -4219,6 +4312,11 @@
|
||||
<link rel="stylesheet" id="feedzy-rss-feeds-css" href="http://wp.lab/wp-content/plugins/feedzy-rss-feeds/css/feedzy-rss-feeds.css?ver=3.2.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- fibotalk-live-chat -->
|
||||
<link rel="stylesheet" id="fibotalk-live-chat-css" href="http://wp.lab/wp-content/plugins/fibotalk-live-chat/public/css/fibotalk-live-chat-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fibotalk-live-chat/public/js/fibotalk-live-chat-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- file-away -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/file-away/lib/js/management.js?ver=3.9.6.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/file-away/lib/js/stats.js?ver=3.9.6.1"></script>
|
||||
@@ -4672,8 +4770,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-compliance-by-supsystic/modules/gdpr/js/frontend.gdpr.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- gdpr-cookie-banner -->
|
||||
<link rel="stylesheet" id="gdpr-cookie-banner-css" href="http://wp.lab/wp-content/plugins/gdpr-cookie-banner/public/css/gdpr-cookie-banner-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-cookie-banner/public/js/gdpr-cookie-banner-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- gdpr-cookie-compliance -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-cookie-compliance/dist/scripts/main.js?ver=1.0.1"></script>
|
||||
<link rel="stylesheet" id="moove_gdpr_frontend-css" href="http://wp.lab/wp-content/plugins/gdpr-cookie-compliance/dist/styles/gdpr-main.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- gdpr-formidable-forms -->
|
||||
@@ -5075,6 +5179,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gridable/public/js/gridable-scripts.js?ver=1.2.2"></script>
|
||||
|
||||
|
||||
<!-- groovy-menu-free -->
|
||||
<link rel="stylesheet" id="groovy-menu-style-css" href="http://wp.lab/wp-content/plugins/groovy-menu-free/assets/style/frontend.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/groovy-menu-free/assets/js/frontend.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- gs-behance-portfolio -->
|
||||
<link rel="stylesheet" id="gsbeh-fa-icons-css" href="http://wp.lab/wp-content/plugins/gs-behance-portfolio/gs-behance-assets/assets/fa-icons/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="gs-beh-custom-bootstrap-css" href="http://wp.lab/wp-content/plugins/gs-behance-portfolio/gs-behance-assets/assets/css/gs-beh-custom-bootstrap.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -5105,6 +5214,14 @@
|
||||
<link rel="stylesheet" id="gs_instagram_custom_css-css" href="http://wp.lab/wp-content/plugins/gs-instagram-portfolio/gs-instagram-assets/assets/css/gs-insta-custom.css?ver=1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- gs-logo-slider -->
|
||||
<link rel="stylesheet" id="bxslider-style-css" href="http://wp.lab/wp-content/plugins/gs-logo-slider/gsl-files/css/jquery.bxslider.css?ver=1.8.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="gs-main-style-css" href="http://wp.lab/wp-content/plugins/gs-logo-slider/gsl-files/css/gs-main.css?ver=1.8.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gs-logo-slider/gsl-files/js/jquery.bxslider.min.js?ver=1.8.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gs-logo-slider/gsl-files/js/jquery.easing.1.3.js?ver=1.8.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gs-logo-slider/gsl-files/js/gs-logo-custom.js?ver=1.8.2"></script>
|
||||
|
||||
|
||||
<!-- gs-pinterest-portfolio -->
|
||||
<link rel="stylesheet" id="gspin-fa-icons-css" href="http://wp.lab/wp-content/plugins/gs-pinterest-portfolio/gs-pinterest-assets/assets/fa-icons/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="gs_pin_custom_css-css" href="http://wp.lab/wp-content/plugins/gs-pinterest-portfolio/gs-pinterest-assets/assets/css/gs-pin-custom.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -5644,6 +5761,11 @@
|
||||
<link rel="stylesheet" id="ibwp-public-style-css" href="http://wp.lab/wp-content/plugins/inboundwp-lite/assets/css/ibwp-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- indianwebs-pideme-cambios -->
|
||||
<link rel="stylesheet" id="pideme_cambios-css" href="http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/css/pideme_cambios-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/js/pideme_cambios-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- indianwebs-whatsapp-submit -->
|
||||
<link rel="stylesheet" id="whatsapp_submit-css" href="http://wp.lab/wp-content/plugins/indianwebs-whatsapp-submit/public/css/whatsapp_submit-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/indianwebs-whatsapp-submit/public/js/whatsapp_submit-public.js?ver=1.0.0"></script>
|
||||
@@ -5720,6 +5842,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/innvonix-testimonials/assets/js/innvonix-custom.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- insert-image-alt-text -->
|
||||
<link rel="stylesheet" id="insert-image-alt-text-css" href="http://wp.lab/wp-content/plugins/insert-image-alt-text/public/css/insert-image-alt-text-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/insert-image-alt-text/public/js/insert-image-alt-text-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- insert-post-from-front-end-with-featured-image -->
|
||||
<link rel="stylesheet" id="insert_post_from_front_end-css" href="http://wp.lab/wp-content/plugins/insert-post-from-front-end-with-featured-image/public/css/insert_post_from_front_end-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/insert-post-from-front-end-with-featured-image/public/js/insert_post_from_front_end-public.js?ver=1.0.0"></script>
|
||||
@@ -5855,6 +5982,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/iscribbled/scripts/bootstrap.js?ver=1"></script>
|
||||
|
||||
|
||||
<!-- isiatotop -->
|
||||
<link rel="stylesheet" id="isiatotop-css" href="http://wp.lab/wp-content/plugins/isiatotop/assets/css/isiaToTop.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="isiatotop-custom-css" href="http://wp.lab/wp-content/plugins/isiatotop/assets/public/css/custom.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/isiatotop/assets/js/isiaToTop.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/isiatotop/assets/public/js/init.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- issuem -->
|
||||
<link rel="stylesheet" id="issuem_style-css" href="http://wp.lab/wp-content/plugins/issuem/css/issuem.css?ver=2.7.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jquery-issuem-flexslider-css" href="http://wp.lab/wp-content/plugins/issuem/css/flexslider.css?ver=2.7.1" type="text/css" media="all">
|
||||
@@ -5922,6 +6056,16 @@
|
||||
<link rel="stylesheet" id="jet-widgets-skin-css" href="http://wp.lab/wp-content/plugins/jetwidgets-for-elementor/assets/css/jet-widgets-skin.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- jewelfit-virtual-jewellery-try-on -->
|
||||
<link rel="stylesheet" id="virtual-jewellery-try-on-css" href="http://wp.lab/wp-content/plugins/jewelfit-virtual-jewellery-try-on/public/css/virtual-jewellery-try-on-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="virtual-jewellery-try-onjquery-css" href="http://wp.lab/wp-content/plugins/jewelfit-virtual-jewellery-try-on/public/css/jquery-ui.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="virtual-jewellery-try-onbootstrap-res-css" href="http://wp.lab/wp-content/plugins/jewelfit-virtual-jewellery-try-on/public/css/bootstrap-responsive.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="virtual-jewellery-try-onbootstrap-css" href="http://wp.lab/wp-content/plugins/jewelfit-virtual-jewellery-try-on/public/css/bootstrap.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/jewelfit-virtual-jewellery-try-on/public/js/virtual-jewellery-try-on-public.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/jewelfit-virtual-jewellery-try-on/public/js/html2canvas.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/jewelfit-virtual-jewellery-try-on/public/js/load_core_functions.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- jgc-contact-info-widget -->
|
||||
<link rel="stylesheet" id="jgcciw-style-css" href="http://wp.lab/wp-content/plugins/jgc-contact-info-widget/css/jgcciw-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -6172,6 +6316,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kk-blog-card/index.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- kk-star-ratings -->
|
||||
<link rel="stylesheet" id="bhittani_plugin_kksr-css" href="http://wp.lab/wp-content/plugins/kk-star-ratings/css.css?ver=2.6.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kk-star-ratings/js.min.js?ver=2.6.4"></script>
|
||||
|
||||
|
||||
<!-- klaro-consent-manager -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/klaro-consent-manager/js/klaro-config.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/klaro-consent-manager/js/klaro.min.js?ver=1.0"></script>
|
||||
@@ -6616,6 +6765,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/js/login-and-logout-redirect-public.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- login-as-user -->
|
||||
<link rel="stylesheet" id="Login as User-css" href="http://wp.lab/wp-content/plugins/login-as-user/public/css/public.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-as-user/public/js/public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- login-ip-restriction -->
|
||||
<link rel="stylesheet" id="login-ip-restriction-css" href="http://wp.lab/wp-content/plugins/login-ip-restriction/public/css/login-ip-restriction-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-ip-restriction/public/js/login-ip-restriction-public.js?ver=1.0.0"></script>
|
||||
@@ -6702,6 +6856,10 @@
|
||||
<link rel="stylesheet" id="lsx-geo-content-style-css" href="http://wp.lab/wp-content/plugins/lsx-geo-content/assets/css/geo-content.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- lsx-health-plan -->
|
||||
<link rel="stylesheet" id="lsx-health-plan-css" href="http://wp.lab/wp-content/plugins/lsx-health-plan/assets/css/lsx-health-plan.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- lsx-projects -->
|
||||
<link rel="stylesheet" id="slick-css" href="http://wp.lab/wp-content/plugins/lsx-projects/assets/css/vendor/slick.css?ver=1.1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="lsx-projects-css" href="http://wp.lab/wp-content/plugins/lsx-projects/assets/css/lsx-projects.css?ver=1.1.1" type="text/css" media="all">
|
||||
@@ -7170,6 +7328,20 @@
|
||||
<link rel="stylesheet" id="melonpan-block-images-front-css" href="http://wp.lab/wp-content/plugins/melonpan-block-images/build/melonpan-block-images-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- member-chimp -->
|
||||
<link rel="stylesheet" id="memberchimp-layout-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-layout.css?ver=1.0.13" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="memberchimp-style-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-style.css?ver=1.0.13" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="memberchimp-general-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp.css?ver=1.0.13" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="memberchimp-media-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-media.css?ver=1.0.13" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-tiptip/jquery-tiptip.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-toggles/jquery-toggles.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-modal/jquery-modal.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-selectize/jquery-selectize.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-raty/jquery-raty.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-mcp/jquery-mcp.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/frontend/memberchimp.js?ver=1.0.13"></script>
|
||||
|
||||
|
||||
<!-- memberlite-elements -->
|
||||
<link rel="stylesheet" id="memberlite_elements_frontend-css" href="http://wp.lab/wp-content/plugins/memberlite-elements/css/memberlite-elements.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -7199,6 +7371,11 @@
|
||||
<link rel="stylesheet" id="menu-icons-extra-css" href="http://wp.lab/wp-content/plugins/menu-icons/css/extra.min.css?ver=0.10.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- menu-import-export -->
|
||||
<link rel="stylesheet" id="menu-import-export-css" href="http://wp.lab/wp-content/plugins/menu-import-export/public/css/menu-import-export-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/menu-import-export/public/js/menu-import-export-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- menu-manager -->
|
||||
<link rel="stylesheet" id="superfish_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/superfish.css?ver=1.0.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="menu-manager_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/menu-manager.css?ver=1.0.4" type="text/css" media="all">
|
||||
@@ -7331,6 +7508,12 @@
|
||||
<script type="text/javascript" data-cfasync="false" src="http://wp.lab/wp-content/plugins/mobile-dj-manager/assets/js/mdjm-ajax.min.js?ver=1.4.7.7"></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">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mobile-menu/includes/js/mobmenu.js?ver=2.7.4.4"></script>
|
||||
|
||||
|
||||
<!-- mobile-switcher -->
|
||||
<link rel="stylesheet" id="mobile-switcher-css" href="http://wp.lab/wp-content/plugins/mobile-switcher/public/css/mobile-switcher-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mobile-switcher/public/js/mobile-switcher-public.js?ver=1.0.0"></script>
|
||||
@@ -7655,6 +7838,7 @@
|
||||
|
||||
<!-- mystickymenu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mystickymenu/js/mystickymenu.min.js?ver=2.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mystickymenu/js/detectmobilebrowser.js?ver=2.0.1"></script>
|
||||
|
||||
|
||||
<!-- mz-newsticker -->
|
||||
@@ -7760,6 +7944,7 @@
|
||||
<!-- newsletter -->
|
||||
<link rel="stylesheet" id="newsletter-subscription-css" href="http://wp.lab/wp-content/plugins/newsletter/subscription/style.css?ver=5.1.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/newsletter/subscription/validate.js?ver=5.1.6"></script>
|
||||
<link rel="stylesheet" id="newsletter-css" href="http://wp.lab/wp-content/plugins/newsletter/style.css?ver=5.1.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- newsletter-email-subscribe -->
|
||||
@@ -7834,6 +8019,7 @@
|
||||
<!-- nimble-builder -->
|
||||
<link rel="stylesheet" id="sek-base-css" href="http://wp.lab/wp-content/plugins/nimble-builder/assets/front/css/sek-base.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nimble-builder/assets/front/js/sek-main.js?ver=1.0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nimble-builder/assets/front/js/ccat-nimble-front.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- nimble-portfolio -->
|
||||
@@ -8140,6 +8326,11 @@
|
||||
<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>
|
||||
|
||||
|
||||
<!-- orion-login-with-sms -->
|
||||
<link rel="stylesheet" id="olws_front_end_styles-css" href="http://wp.lab/wp-content/plugins/orion-login-with-sms/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/orion-login-with-sms/dist/main.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- os-bxslider -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/os-bxslider/plugins/bxslider/jquery.bxslider.min.js?ver=2.6"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/os-bxslider/js/frontend-min.js?ver=2.6"></script>
|
||||
@@ -8243,6 +8434,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-sandwich/page_builder_sandwich/js/min/frontend-min.js?ver=4.4.3"></script>
|
||||
|
||||
|
||||
<!-- page-links-to -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-links-to/js/new-tab.min.js?ver=3.1.1"></script>
|
||||
|
||||
|
||||
<!-- page-list -->
|
||||
<link rel="stylesheet" id="page-list-style-css" href="http://wp.lab/wp-content/plugins/page-list/css/page-list.css?ver=5.1" type="text/css" media="all">
|
||||
|
||||
@@ -8277,6 +8472,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/paid-member-subscriptions/assets/js/front-end.js?ver=1.6.3"></script>
|
||||
|
||||
|
||||
<!-- paid-memberships-pro -->
|
||||
<link rel="stylesheet" id="pmpro_frontend-css" href="http://wp.lab/wp-content/plugins/paid-memberships-pro/css/frontend.css?ver=2.0.7" type="text/css" media="screen">
|
||||
<link rel="stylesheet" id="pmpro_print-css" href="http://wp.lab/wp-content/plugins/paid-memberships-pro/css/print.css?ver=2.0.7" type="text/css" media="print">
|
||||
|
||||
|
||||
<!-- pal-for-edd -->
|
||||
<link rel="stylesheet" id="pal-for-edd-css" href="http://wp.lab/wp-content/plugins/pal-for-edd/public/css/pal-for-edd-public.css?ver=1.0.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pal-for-edd/public/js/pal-for-edd-public.js?ver=1.0.6"></script>
|
||||
@@ -8430,6 +8630,10 @@
|
||||
<link rel="stylesheet" id="jsjr-pci-wp-css-css" href="http://wp.lab/wp-content/plugins/personal-contact-info-widget/css/wp-styles.css?ver=1.3" type="text/css" media="">
|
||||
|
||||
|
||||
<!-- personalized-shortcode-pro -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/personalized-shortcode-pro/public/js/personalized-shortcode-pro-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- pesapress -->
|
||||
<link rel="stylesheet" id="pp-front-css" href="http://wp.lab/wp-content/plugins/pesapress/app/assets/css/pp-public.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pesapress/app/assets/js/pp-public.min.js?ver=1.0.0"></script>
|
||||
@@ -8459,6 +8663,9 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photo-gallery/js/jquery.mobile.js?ver=1.3.64"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photo-gallery/js/jquery.mCustomScrollbar.concat.min.js?ver=1.3.64"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photo-gallery/js/bwg_gallery_box.js?ver=1.3.64"></script>
|
||||
<link rel="stylesheet" id="mCustomScrollbar-css" href="http://wp.lab/wp-content/plugins/photo-gallery/css/jquery.mCustomScrollbar.min.css?ver=1.3.64" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bwg_frontend-css" href="http://wp.lab/wp-content/plugins/photo-gallery/css/styles.min.css?ver=1.3.64" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photo-gallery/js/scripts.min.js?ver=1.3.64"></script>
|
||||
|
||||
|
||||
<!-- photo-gallery-portfolio -->
|
||||
@@ -8482,6 +8689,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photo-swipe/js/photoswipe.js?ver=4.1.1.1"></script>
|
||||
|
||||
|
||||
<!-- photoblocks-grid-gallery -->
|
||||
<link rel="stylesheet" id="photoblocks-css" href="http://wp.lab/wp-content/plugins/photoblocks-grid-gallery/public/css/photoblocks-public.css?ver=1.1.41" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photoblocks-grid-gallery/public/js/anime.min.js?ver=1.1.41"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photoblocks-grid-gallery/public/js/photoblocks.public.js?ver=1.1.41"></script>
|
||||
|
||||
|
||||
<!-- photonic -->
|
||||
<link rel="stylesheet" id="photonic-slideshow-css" href="http://wp.lab/wp-content/plugins/photonic/include/scripts/lightslider/css/lightslider.css?ver=1.64" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="photonic-css" href="http://wp.lab/wp-content/plugins/photonic/include/css/photonic.css?ver=1.64" type="text/css" media="all">
|
||||
@@ -8490,6 +8703,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photonic/include/scripts/photonic.js?ver=1.64"></script>
|
||||
|
||||
|
||||
<!-- php-console-log -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/php-console-log/js/php-console-log.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- phzoom -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/phzoom/phzoom.js?ver=1.2.92"></script>
|
||||
|
||||
@@ -9172,6 +9389,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pushquote/js/pullquote.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- pws-better-widget-title -->
|
||||
<link rel="stylesheet" id="pws-better-widget-title-css" href="http://wp.lab/wp-content/plugins/pws-better-widget-title/public/css/pws-better-widget-title-public.css?ver=1.0.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pws-better-widget-title/public/js/pws-better-widget-title-public.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- q2w3-fixed-widget -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js?ver=5.0.4"></script>
|
||||
|
||||
@@ -9407,6 +9629,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/realtime-comments/js/script.js?ver=0.8"></script>
|
||||
|
||||
|
||||
<!-- realtypack-core -->
|
||||
<link rel="stylesheet" id="RTPC-css" href="http://wp.lab/wp-content/plugins/realtypack-core/views/assets/css/agancy.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="RTPC_featherlight-css" href="http://wp.lab/wp-content/plugins/realtypack-core/views/assets/admin/css/featherlight.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/realtypack-core/views/assets/admin/js/featherlight.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/realtypack-core/views/assets/js/plugins/jquery.lazy.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/realtypack-core/views/assets/js/realty-pack-core.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- rebel-slider -->
|
||||
<link rel="stylesheet" id="rebel-slider-css" href="http://wp.lab/wp-content/plugins/rebel-slider/public/css/rebel-slider-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rebel-slider/public/js/rebel-slider-public.js?ver=1.0.0"></script>
|
||||
@@ -10157,6 +10387,11 @@
|
||||
<link rel="stylesheet" id="sendapi-css" href="http://wp.lab/wp-content/plugins/sendapi-net/public/css/sendapi-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sendbox-shipping -->
|
||||
<link rel="stylesheet" id="wooss-css" href="http://wp.lab/wp-content/plugins/sendbox-shipping/public/css/wooss-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sendbox-shipping/public/js/wooss-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sensei-lms -->
|
||||
<link rel="stylesheet" id="module-frontend-css" href="http://wp.lab/wp-content/plugins/sensei-lms/assets/css/modules-frontend.css?ver=2.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="sensei-frontend-css" href="http://wp.lab/wp-content/plugins/sensei-lms/assets/css/frontend/sensei.css?ver=2.0.1" type="text/css" media="screen">
|
||||
@@ -10246,6 +10481,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/share-this-image/assets/js/sti.js?ver=1.04"></script>
|
||||
|
||||
|
||||
<!-- share-to-microsoft-teams -->
|
||||
<link rel="stylesheet" id="microsoft_teams_styles-css" href="http://wp.lab/wp-content/plugins/share-to-microsoft-teams/css/ms-teams-share.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- share-to-social-bookmarking -->
|
||||
<link rel="stylesheet" id="share_to_social_bookmarking-css" href="http://wp.lab/wp-content/plugins/share-to-social-bookmarking/style.css?ver=1.6" type="text/css" media="all">
|
||||
|
||||
@@ -10970,6 +11209,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-media-aggregator/js/im-social-aggregator.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- social-media-buttons-toolbar -->
|
||||
<link rel="stylesheet" id="spacexchimp_p005-bootstrap-tooltip-css-css" href="http://wp.lab/wp-content/plugins/social-media-buttons-toolbar/inc/lib/bootstrap-tooltip/bootstrap-tooltip.css?ver=4.54" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="spacexchimp_p005-frontend-css-css" href="http://wp.lab/wp-content/plugins/social-media-buttons-toolbar/inc/css/frontend.css?ver=4.54" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-media-buttons-toolbar/inc/lib/bootstrap-tooltip/bootstrap-tooltip.js?ver=4.54"></script>
|
||||
|
||||
|
||||
<!-- social-media-followers-counter -->
|
||||
<link rel="stylesheet" id="SC_styles-css" href="http://wp.lab/wp-content/plugins/social-media-followers-counter/css/style.css?ver=4.1.1" type="text/css" media="all">
|
||||
|
||||
@@ -11029,6 +11274,8 @@
|
||||
<!-- social-warfare -->
|
||||
<link rel="stylesheet" id="social_warfare-css" href="http://wp.lab/wp-content/plugins/social-warfare/css/style.min.css?ver=2.3.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-warfare/js/script.min.js?ver=2.3.3"></script>
|
||||
<link rel="stylesheet" id="social_warfare-css" href="http://wp.lab/wp-content/plugins/social-warfare/assets/css/style.min.css?ver=2.3.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-warfare/assets/js/script.min.js?ver=2.3.3"></script>
|
||||
|
||||
|
||||
<!-- social-wiggle -->
|
||||
@@ -11097,6 +11344,9 @@
|
||||
<!-- sp-news-and-widget -->
|
||||
<link rel="stylesheet" id="cssnews-css" href="http://wp.lab/wp-content/plugins/sp-news-and-widget/css/stylenews.css?ver=3.3.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sp-news-and-widget/js/jquery.newstape.js?ver=3.3.4"></script>
|
||||
<link rel="stylesheet" id="cssnews-css" href="http://wp.lab/wp-content/plugins/sp-news-and-widget/assets/css/stylenews.css?ver=3.3.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sp-news-and-widget/assets/js/jquery.newstape.js?ver=3.3.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sp-news-and-widget/assets/js/sp-news-public.js?ver=3.3.4"></script>
|
||||
|
||||
|
||||
<!-- spanish-quote-of-the-day-frase-del-dia -->
|
||||
@@ -11200,6 +11450,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/squelch-tabs-and-accordions-shortcodes/js/squelch-tabs-and-accordions.js?ver=0.4.1"></script>
|
||||
|
||||
|
||||
<!-- squirrly-seo -->
|
||||
<link rel="stylesheet" id="d3f6489043-css" href="http://wp.lab/wp-content/plugins/squirrly-seo/view/assets/css/frontend.min.css?ver=9.1.18" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- srizon-instagram-album -->
|
||||
<link rel="stylesheet" id="srizon-materialize-css" href="http://wp.lab/wp-content/plugins/srizon-instagram-album/site/resources/materialize.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="srizon-instagram-site-css" href="http://wp.lab/wp-content/plugins/srizon-instagram-album/site/resources/app.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -11326,6 +11580,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stop-user-enumeration/frontend/js/frontend.js?ver=1.3.20"></script>
|
||||
|
||||
|
||||
<!-- store-notification -->
|
||||
<link rel="stylesheet" id="store-notification-style-css" href="http://wp.lab/wp-content/plugins/store-notification/assets/css/store-notification.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/store-notification/assets/js/store-notification.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- storefront-jetpack -->
|
||||
<link rel="stylesheet" id="storefront-jetpack-css" href="http://wp.lab/wp-content/plugins/storefront-jetpack/public/css/sfjp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/storefront-jetpack/public/js/sfjp-public.js?ver=1.0.0"></script>
|
||||
@@ -11363,6 +11622,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/subscribe-now/js/empty.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- subscribe-to-download-lite -->
|
||||
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/subscribe-to-download-lite/fontawesome/css/all.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="stdl-frontend-style-css" href="http://wp.lab/wp-content/plugins/subscribe-to-download-lite//css/stdl-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/subscribe-to-download-lite//js/stdl-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- suffusion-bbpress-pack -->
|
||||
<link rel="stylesheet" id="suffusion-bbpress-style-css" href="http://wp.lab/wp-content/plugins/suffusion-bbpress-pack/include/css/bbpress.css?ver=1.01" type="text/css" media="screen">
|
||||
|
||||
@@ -11733,6 +11998,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/th23-user-management/th23-user-management.js?ver=2.3.0"></script>
|
||||
|
||||
|
||||
<!-- thank-you-reader -->
|
||||
<link rel="stylesheet" id="thank-you-reader-css" href="http://wp.lab/wp-content/plugins/thank-you-reader/public/css/thank-you-reader-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/thank-you-reader/public/js/thank-you-reader-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- the-beyond -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/the-beyond/src/embed.js?ver=0.1.0"></script>
|
||||
|
||||
@@ -11761,6 +12031,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/thematic-maps/public/js/thematic-maps-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- theme-my-login -->
|
||||
<link rel="stylesheet" id="theme-my-login-css" href="http://wp.lab/wp-content/plugins/theme-my-login/assets/styles/theme-my-login.min.css?ver=7.0.14" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/theme-my-login/assets/scripts/theme-my-login.min.js?ver=7.0.14"></script>
|
||||
|
||||
|
||||
<!-- theme-roulette -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/theme-roulette//assets/js/src/theme_roulette.js?ver=0.1.5"></script>
|
||||
|
||||
@@ -11983,6 +12258,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/total-team-lite/assets/js/jquery.colorbox.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tour-booking -->
|
||||
<link rel="stylesheet" id="tourbooking_css-css" href="http://wp.lab/wp-content/plugins/tour-booking/front/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="tourbooking_css_responsive-css" href="http://wp.lab/wp-content/plugins/tour-booking/front/css/responsive.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-booking/front/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- tour-operator-search -->
|
||||
<link rel="stylesheet" id="lsx_to_search-css" href="http://wp.lab/wp-content/plugins/tour-operator-search/assets/css/to-search.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-operator-search/assets/js/vendor/jquery.touchSwipe.min.js?ver=1.1.1"></script>
|
||||
@@ -12215,6 +12496,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/includes/lib/stripe//assets/js/stripe-card-component.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/includes/lib/stripe//assets/js/stripe-my-card.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/vue/vue-w3c-valid.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/vue/vue.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/frontend/bootstrap/bootstrap.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/select2.full.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/moment.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/toastr.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/bootstrap-datepicker/js/bootstrap-datepicker.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/frontend/dist/ulisting-main.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/vue/vue-resource.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- ulitmate-facebook-buttons -->
|
||||
@@ -12306,6 +12595,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-member/assets/js/um-members.min.js?ver=1.3.88"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-member/assets/js/um-profile.min.js?ver=1.3.88"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-member/assets/js/um-account.min.js?ver=1.3.88"></script>
|
||||
<link rel="stylesheet" id="um_scrollbar-css" href="http://wp.lab/wp-content/plugins/ultimate-member/assets/css/simplebar.css?ver=1.3.88" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-member/assets/js/simplebar.min.js?ver=1.3.88"></script>
|
||||
|
||||
|
||||
<!-- ultimate-multi-design-video-carousel -->
|
||||
@@ -12472,6 +12763,7 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universam-demo/assets/js/feedback.js?ver=4.50.02"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universam-demo/assets/js/webform.js?ver=4.50.02"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universam-demo/assets/js/universam.js?ver=4.50.02"></script>
|
||||
<link rel="stylesheet" id="usam-global-style-css" href="http://wp.lab/wp-content/plugins/universam-demo/theme/usam-global-style.css?ver=4.50.02" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- unveil-lazy-load -->
|
||||
@@ -12540,6 +12832,7 @@
|
||||
<link rel="stylesheet" id="user-registration-smallscreen-css" href="http://wp.lab/wp-content/plugins/user-registration/assets/css/user-registration-smallscreen.css?ver=1.1.6" type="text/css" media="only screen and (max-width: 768px)">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/user-registration/assets/js/frontend/user-registration.min.js?ver=1.1.6"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/user-registration/assets/js/frontend/password-strength-meter.min.js?ver=1.1.6"></script>
|
||||
<link rel="stylesheet" id="user-registration-my-account-layout-css" href="http://wp.lab/wp-content/plugins/user-registration/assets/css/my-account-layout.css?ver=1.1.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- user-submitted-posts -->
|
||||
@@ -12670,6 +12963,10 @@
|
||||
<link rel="stylesheet" id="very-simple-slider-style-css" href="http://wp.lab/wp-content/plugins/very-simple-slider/css/very-simple-slider.css?ver=1.0" type="text/css" media="screen">
|
||||
|
||||
|
||||
<!-- very-simple-wp-popup -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/very-simple-wp-popup/public/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- vessel -->
|
||||
<link rel="stylesheet" id="vessel_campaign_style-css" href="http://wp.lab/wp-content/plugins/vessel/css/vessel.css?ver=0.7.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1"></script>
|
||||
@@ -12759,6 +13056,11 @@
|
||||
<link rel="stylesheet" id="vlp-template-default-squared-css" href="http://wp.lab/wp-content/plugins/visual-link-preview/templates/link/default-squared/default-squared.min.css?ver=1.2.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- visual-portfolio -->
|
||||
<link rel="stylesheet" id="visual-portfolio-css" href="http://wp.lab/wp-content/plugins/visual-portfolio/assets/css/style.min.css?ver=1.12.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="visual-portfolio-noscript-css" href="http://wp.lab/wp-content/plugins/visual-portfolio/assets/css/noscript.min.css?ver=1.12.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- visualizer -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visualizer/js/lib/clipboardjs/clipboard.min.js?ver=3.0.4"></script>
|
||||
|
||||
@@ -12766,6 +13068,7 @@
|
||||
<!-- vk-all-in-one-expansion-unit -->
|
||||
<link rel="stylesheet" id="vkExUnit_common_style-css" href="http://wp.lab/wp-content/plugins/vk-all-in-one-expansion-unit/css/vkExUnit_style.css?ver=5.7.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vk-all-in-one-expansion-unit/js/all.min.js?ver=5.7.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vk-all-in-one-expansion-unit/plugins/smooth-scroll/js/smooth-scroll.min.js?ver=5.7.8"></script>
|
||||
|
||||
|
||||
<!-- vk-link-target-controller -->
|
||||
@@ -12849,6 +13152,19 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waving-portfolio/assets/js/custom.js?ver=1.2.4.5"></script>
|
||||
|
||||
|
||||
<!-- waymark -->
|
||||
<link rel="stylesheet" id="leaflet-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet/leaflet.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ionicons-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/ionicons/css/ionicons.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="awesome_markers-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/awesome-markers/leaflet.awesome-markers.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="leaflet_fullscreen-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet-fullscreen/dist/leaflet.fullscreen.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="waymark_map-css" href="http://wp.lab/wp-content/plugins/waymark/assets/shared/css/Waymark_Map.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="waymark_map_viewer-css" href="http://wp.lab/wp-content/plugins/waymark/assets/front/css/Waymark_Map_Viewer.css?ver=0.9.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet/leaflet.min.js?ver=0.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/awesome-markers/leaflet.awesome-markers.min.js?ver=0.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet-fullscreen/dist/leaflet.fullscreen.min.js?ver=0.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/Leaflet.Sleep/Leaflet.Sleep.js?ver=0.9.2"></script>
|
||||
|
||||
|
||||
<!-- waypanel-heatmap-analysis -->
|
||||
<link rel="stylesheet" id="waypanel-heatmap-css" href="http://wp.lab/wp-content/plugins/waypanel-heatmap-analysis/public/css/waypanel-heatmap-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waypanel-heatmap-analysis/public/js/waypanel-heatmap-public.js?ver=1.0.0"></script>
|
||||
@@ -12896,6 +13212,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-guest-checkout-single-product/public/js/wc-guest-checkout-single-product-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wc-product-videos -->
|
||||
<link rel="stylesheet" id="woocommerce-product-videos-css" href="http://wp.lab/wp-content/plugins/wc-product-videos/public/css/woocommerce-product-videos-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<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-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">
|
||||
|
||||
@@ -12954,6 +13275,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wds-theme-switcher/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wdv-add-services-and-events -->
|
||||
<link rel="stylesheet" id="wdv-add-services-and-events-css" href="http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/css/wdv-add-services-and-events-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/js/wdv-add-services-and-events-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- we-the-people -->
|
||||
<link rel="stylesheet" id="we-the-people-css" href="http://wp.lab/wp-content/plugins/we-the-people/assets/dist/css/we-the-people.css?ver=2.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="we-the-people-twentyfifteen-css" href="http://wp.lab/wp-content/plugins/we-the-people/assets/dist/css/twentyfifteen.css?ver=2.0" type="text/css" media="all">
|
||||
@@ -13014,6 +13340,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webcamconsult/public/js/webcamconsult-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- webhotelier -->
|
||||
<link rel="stylesheet" id="wp-webhotelier-flatpickr-css" href="http://wp.lab/wp-content/plugins/webhotelier/public/css/flatpickr.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-webhotelier-css" href="http://wp.lab/wp-content/plugins/webhotelier/public/css/wp-webhotelier-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webhotelier/public/js/flatpickr.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webhotelier/public/js/wp-webhotelier-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- webiots-teamshowcase -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/owl.carousel.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/teamshowcase.js?ver=1.0"></script>
|
||||
@@ -13046,6 +13379,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/website-importer/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- website-password-protection -->
|
||||
<link rel="stylesheet" id="website-password-protection-css" href="http://wp.lab/wp-content/plugins/website-password-protection/public/css/website-password-protection-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/website-password-protection/public/js/website-password-protection-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wechat-shop-download -->
|
||||
<link rel="stylesheet" id="jquery-loading-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/jquery.loading.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wshop-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/wshop.css?ver=1.0.2" type="text/css" media="all">
|
||||
@@ -13173,6 +13511,11 @@
|
||||
<link rel="stylesheet" id="gh-profile-widget-style-css" href="http://wp.lab/wp-content/plugins/widget-github-profile/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- widget-google-reviews -->
|
||||
<link rel="stylesheet" id="grw_css-css" href="http://wp.lab/wp-content/plugins/widget-google-reviews/static/css/google-review.css?ver=1.7.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/widget-google-reviews/static/js/wpac-time.js?ver=1.7.5"></script>
|
||||
|
||||
|
||||
<!-- widget-in-content -->
|
||||
<link rel="stylesheet" id="widget-in-content-css" href="http://wp.lab/wp-content/plugins/widget-in-content/widget-in-content.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -13293,6 +13636,18 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-authorize-net/public/js/woo-authorizenet-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woo-badge-designer-lite -->
|
||||
<link rel="stylesheet" id="wobd-fontawesome-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fontawesome1-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fontawesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fa-brands-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-brands.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fa-regular-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-regular.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fa-solid-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-solid.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="elegant-icons-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//elegant-icons.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="linear-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//linear-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-frontend-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css/wobd-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/js/wobd-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woo-best-selling-products -->
|
||||
<link rel="stylesheet" id="woobsp_widget_css-css" href="http://wp.lab/wp-content/plugins/woo-best-selling-products/assets/woobsp-styles.css?ver=1.1.0" type="text/css" media="all">
|
||||
|
||||
@@ -13359,6 +13714,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-easy-view/public/js/r_wev_search-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- woo-elite-licenser-addon -->
|
||||
<link rel="stylesheet" id="elite-woo-css-css" href="http://wp.lab/wp-content/plugins/woo-elite-licenser-addon/css/elite-woo-license.css?ver=1.0.0" type="text/css" media="">
|
||||
|
||||
|
||||
<!-- woo-extra-cart-fee -->
|
||||
<link rel="stylesheet" id="woo-extra-cart-fee-css" href="http://wp.lab/wp-content/plugins/woo-extra-cart-fee/public/css/woo-extra-cart-fee-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-extra-cart-fee/public/js/woo-extra-cart-fee-public.js?ver=1.0.0"></script>
|
||||
@@ -13373,6 +13732,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-mobile-bottom-bar/public/js/public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woo-oc-product-filter -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-oc-product-filter/includes/js/ocpf_front.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- woo-open-graph -->
|
||||
<link rel="stylesheet" id="woo-open-graph-css" href="http://wp.lab/wp-content/plugins/woo-open-graph/public/css/woo-open-graph-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-open-graph/public/js/woo-open-graph-public.js?ver=1.0.0"></script>
|
||||
@@ -13509,6 +13872,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=3.2.5"></script>
|
||||
|
||||
|
||||
<!-- woocommerce-direct-checkout -->
|
||||
<link rel="stylesheet" id="qlwcdc-css" href="http://wp.lab/wp-content/plugins/woocommerce-direct-checkout/assets/qlwcdc.min.css?ver=2.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woocommerce-direct-checkout/assets/qlwcdc.min.js?ver=2.1.1"></script>
|
||||
|
||||
|
||||
<!-- woocommerce-extra-accounts-fields -->
|
||||
<link rel="stylesheet" id="woocommerce-extra-account-fields_jquery_ui-css" href="http://wp.lab/wp-content/plugins/woocommerce-extra-accounts-fields/public/css/jquery-ui.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="woocommerce-extra-account-fields-css" href="http://wp.lab/wp-content/plugins/woocommerce-extra-accounts-fields/public/css/woocommerce-extra-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -13598,6 +13966,7 @@
|
||||
|
||||
<!-- wordpress-popular-posts -->
|
||||
<link rel="stylesheet" id="wordpress-popular-posts-css-css" href="http://wp.lab/wp-content/plugins/wordpress-popular-posts/public/css/wpp.css?ver=4.0.13" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-popular-posts/public/js/wpp-4.2.0.min.js?ver=4.0.13"></script>
|
||||
|
||||
|
||||
<!-- wordpress-simple-paypal-shopping-cart -->
|
||||
@@ -13730,6 +14099,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-ajax-edit-comments/js/frontend.js?ver=6.0.1"></script>
|
||||
|
||||
|
||||
<!-- wp-alert-bars -->
|
||||
<link rel="stylesheet" id="wab-front-style-css" href="http://wp.lab/wp-content/plugins/wp-alert-bars/assets/css/wab-front-style.css?ver=1.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-alert-bars/assets/js/wab-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-all-in-one-admin-bar -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-all-in-one-admin-bar/public/assets/js/jquery.hoverIntent.minified.js?ver=1.1"></script>
|
||||
<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>
|
||||
@@ -13853,6 +14227,11 @@
|
||||
<link rel="stylesheet" id="wp-business-essentials-css" href="http://wp.lab/wp-content/plugins/wp-business-essentials/public/css/wp-business-essentials-public.css?ver=0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-campaigns -->
|
||||
<link rel="stylesheet" id="wp-campaigns-css" href="http://wp.lab/wp-content/plugins/wp-campaigns/public/css/wpex-campaigns-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-campaigns/public/js/wpex-campaigns-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-car-manager -->
|
||||
<link rel="stylesheet" id="wpcm_css_frontend-css" href="http://wp.lab/wp-content/plugins/wp-car-manager/assets/css/frontend.css?ver=1.3.5" type="text/css" media="all">
|
||||
|
||||
@@ -14124,6 +14503,12 @@
|
||||
<link rel="stylesheet" id="wpemailcapturestyles-css" href="http://wp.lab/wp-content/plugins/wp-email-capture/inc/css/wp-email-capture-styles.css?ver=3.4.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-embed-facebook -->
|
||||
<link rel="stylesheet" id="wpemfb-lightbox-css" href="http://wp.lab/wp-content/plugins/wp-embed-facebook/templates/lightbox/css/lightbox.css?ver=3.0.7" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-embed-facebook/templates/lightbox/js/lightbox.min.js?ver=3.0.7"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-embed-facebook/inc/js/fb.min.js?ver=3.0.7"></script>
|
||||
|
||||
|
||||
<!-- wp-errata -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-errata/jcedit.min.js?ver=1.0"></script>
|
||||
|
||||
@@ -14248,6 +14633,10 @@
|
||||
<link rel="stylesheet" id="fontawesome-css-css" href="http://wp.lab/wp-content/plugins/wp-font-awesome/font-awesome/css/font-awesome.min.css?ver=1.5" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-food -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-food/js/ex_s_lick/ex_s_lick.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-foundation-shortcodes -->
|
||||
<link rel="stylesheet" id="wp-foundation-shortcodes-css" href="http://wp.lab/wp-content/plugins/wp-foundation-shortcodes/stylesheets/app.css?ver=0.8.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-foundation-shortcodes/js/app.js?ver=0.8.5"></script>
|
||||
@@ -14502,6 +14891,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support/js/md5.js?ver=7.1.07"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support/js/themes/modern.js?ver=7.1.07"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support/js/wplc_u_node_events.js?ver=7.1.07"></script>
|
||||
<link rel="stylesheet" id="wplc-admin-style-emoji-css" href="http://wp.lab/wp-content/plugins/wp-live-chat-support//js/vendor/wdt-emoji/wdt-emoji-bundle.css?ver=7.1.07" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support//js/wplc_common_node.js?ver=7.1.07"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support//js/vendor/sockets.io/socket.io.slim.js?ver=7.1.07"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support//js/vendor/wdt-emoji/wdt-emoji-concat.min.js?ver=7.1.07"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support/js/wplc_node.js?ver=7.1.07"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support/js/bleeper_action_events.js?ver=7.1.07"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-chat-support/js/wplc_u_node_pro_events.js?ver=7.1.07"></script>
|
||||
|
||||
|
||||
<!-- wp-live-post-search -->
|
||||
@@ -14526,6 +14922,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-login-button/assets/js/wplgbtn-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-login-register-flow -->
|
||||
<link rel="stylesheet" id="wplrf-toastr-css-css" href="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/css/toastr.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-login-register-flow-css" href="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/css/wp-login-register-flow-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/js/toastr.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/js/wp-login-register-flow-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-logo-showcase -->
|
||||
<link rel="stylesheet" id="rt-wls-css" href="http://wp.lab/wp-content/plugins/wp-logo-showcase/assets/css/wplogoshowcase.css?ver=1.3.1" type="text/css" media="all">
|
||||
|
||||
@@ -14905,6 +15308,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-recipe-maker/assets/js/public.js?ver=1.27.0"></script>
|
||||
<link rel="stylesheet" id="wprm-public-css" href="http://wp.lab/wp-content/plugins/wp-recipe-maker/dist/public.css?ver=1.27.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-recipe-maker/dist/public.js?ver=1.27.0"></script>
|
||||
<link rel="stylesheet" id="wprm-public-css" href="http://wp.lab/wp-content/plugins/wp-recipe-maker/dist/public-modern.css?ver=1.27.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=1.27.0"></script>
|
||||
|
||||
|
||||
<!-- wp-redditjs -->
|
||||
@@ -14977,6 +15382,8 @@
|
||||
<!-- wp-review -->
|
||||
<link rel="stylesheet" id="wp_review-style-css" href="http://wp.lab/wp-content/plugins/wp-review/assets/css/wp-review.css?ver=4.0.11" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-review/assets/js/main.js?ver=4.0.11"></script>
|
||||
<link rel="stylesheet" id="wp_review-style-css" href="http://wp.lab/wp-content/plugins/wp-review/public/css/wp-review.css?ver=4.0.11" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-review/public/js/main.js?ver=4.0.11"></script>
|
||||
|
||||
|
||||
<!-- wp-rewords -->
|
||||
@@ -15015,6 +15422,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll//js/scroll.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-scroll-to-post -->
|
||||
<link rel="stylesheet" id="wsp-front-style-css" href="http://wp.lab/wp-content/plugins/wp-scroll-to-post/assets/css/wsp-front-style.css?ver=1.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll-to-post/assets/js/wsp-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-scroll-up -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll-up/js/jquery-scroll-up.js?ver=0.5.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll-up/js/wp-scroll-up-options.js?ver=0.5.1"></script>
|
||||
@@ -15202,6 +15614,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-tab-anchors/wp-tab-anchors.js?ver=1.3.0"></script>
|
||||
|
||||
|
||||
<!-- wp-table-builder -->
|
||||
<link rel="stylesheet" id="wp-table-builder-css" href="http://wp.lab/wp-content/plugins/wp-table-builder/inc/frontend/css/wp-table-builder-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-table-builder/inc/frontend/js/wp-table-builder-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-tag-manager-event -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-tag-manager-event/js/wp-tag-manager-event.js?ver=1.0"></script>
|
||||
|
||||
@@ -15261,6 +15678,10 @@
|
||||
<link rel="stylesheet" id="wptt_style-css" href="http://wp.lab/wp-content/plugins/wp-tooltips/style/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-top-news -->
|
||||
<link rel="stylesheet" id="wtn-front-style-css" href="http://wp.lab/wp-content/plugins/wp-top-news/assets/css/wtn-front-style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-travel-engine -->
|
||||
<link rel="stylesheet" id="wp-travel-engine-css" href="http://wp.lab/wp-content/plugins/wp-travel-engine/public/css/wp-travel-engine-public.css?ver=1.7.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/wp-travel-engine/public/css/font-awesome.min.css?ver=1.7.8" type="text/css" media="all">
|
||||
@@ -15350,6 +15771,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-user-control/js/wp-user-control-widget.js?ver=1.5.3"></script>
|
||||
|
||||
|
||||
<!-- wp-user-frontend -->
|
||||
<link rel="stylesheet" id="wpuf-sweetalert2-css" href="http://wp.lab/wp-content/plugins/wp-user-frontend/assets/vendor/sweetalert2/dist/sweetalert2.css?ver=3.1.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-user-frontend/assets/vendor/sweetalert2/dist/sweetalert2.js?ver=3.1.8"></script>
|
||||
|
||||
|
||||
<!-- wp-user-manager -->
|
||||
<link rel="stylesheet" id="wpum-frontend-css" href="http://wp.lab/wp-content/plugins/wp-user-manager/assets/css/wpum.min.css?ver=2.1.0" type="text/css" media="all">
|
||||
|
||||
@@ -15376,6 +15802,11 @@
|
||||
<link rel="stylesheet" id="soswodify-css" href="http://wp.lab/wp-content/plugins/wp-wdfy-integration-of-wodify/css/style.css?ver=1.12.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-whatsapp-chat -->
|
||||
<link rel="stylesheet" id="qlwapp-css" href="http://wp.lab/wp-content/plugins/wp-whatsapp-chat/assets/css/qlwapp.min.css?ver=4.2.9" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-whatsapp-chat/assets/js/qlwapp.min.js?ver=4.2.9"></script>
|
||||
|
||||
|
||||
<!-- wp-whatsapp-product-request -->
|
||||
<link rel="stylesheet" id="wpwpr_style_css-css" href="http://wp.lab/wp-content/plugins/wp-whatsapp-product-request/css/wpwpr_style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -15579,6 +16010,10 @@
|
||||
<link rel="stylesheet" id="wplike2get-css" href="http://wp.lab/wp-content/plugins/wplike2get/css/wplike2get.min.css?ver=1.2.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wplyr-media-block -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wplyr-media-block/assets/js/wplyr.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpm-email -->
|
||||
<link rel="stylesheet" id="wpm-email-css" href="http://wp.lab/wp-content/plugins/wpm-email/public/css/wpm-email-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -15612,6 +16047,10 @@
|
||||
<link rel="stylesheet" id="wpnextpreviouslink-css" href="http://wp.lab/wp-content/plugins/wpnextpreviouslink/public/css/wpnextpreviouslink-public.css?ver=2.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpo365-login -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpo365-login//apps/dist/pintra-redirect.js?ver=8.6"></script>
|
||||
|
||||
|
||||
<!-- wpopal-medical -->
|
||||
<link rel="stylesheet" id="opalmedical-frontend-css-css" href="http://wp.lab/wp-content/plugins/wpopal-medical/assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -15925,6 +16364,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/youtube-channel/assets/lib/magnific-popup/jquery.magnific-popup.min.js?ver=3.0.11.3"></script>
|
||||
|
||||
|
||||
<!-- youtube-embed-plus -->
|
||||
<link rel="stylesheet" id="__EPYT__style-css" href="http://wp.lab/wp-content/plugins/youtube-embed-plus/styles/ytprefs.min.css?ver=13.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/youtube-embed-plus/scripts/ytprefs.min.js?ver=13.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/youtube-embed-plus/scripts/fitvids.min.js?ver=13.1"></script>
|
||||
|
||||
|
||||
<!-- youtube-feeder -->
|
||||
<link rel="stylesheet" id="YoutubeFeeder_styles-css" href="http://wp.lab/wp-content/plugins/youtube-feeder/css/style.css?ver=2.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/youtube-feeder/js/jquery.youtubeplaylist.js?ver=2.0.1"></script>
|
||||
@@ -15989,6 +16434,10 @@
|
||||
<link rel="stylesheet" id="zerowp-social-profiles-styles-css" href="http://wp.lab/wp-content/plugins/zerowp-social-profiles/assets/css/styles.css?ver=1.1.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- zigaform-calculator-cost-estimation-form-builder-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zigaform-calculator-cost-estimation-form-builder-lite/assets/frontend/js/iframe/4.1.1/iframeResizer.min.js?ver=3.9.9.6.8"></script>
|
||||
|
||||
|
||||
<!-- ziyarat-ashura -->
|
||||
<link rel="stylesheet" id="za_css-css" href="http://wp.lab/wp-content/plugins/ziyarat-ashura/css/style.css?ver=1.0.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ziyarat-ashura/js/za-js.js?ver=1.0.0"></script>
|
||||
|
||||
8853
spec/fixtures/dynamic_finders/plugin_version/realtypack-core/translation_file/languages/RTPC.pot
vendored
Normal file
8853
spec/fixtures/dynamic_finders/plugin_version/realtypack-core/translation_file/languages/RTPC.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2
spec/fixtures/dynamic_finders/plugin_version/social-elementor-lite/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/social-elementor-lite/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
Version 1.0.0
|
||||
- New: Introduced Blog Posts
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,421 @@
|
||||
# Copyright (C) 2019 Mantrabrain
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mantrabrain Instagram Pack 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: mantrabrain@gmail.com\n"
|
||||
"POT-Creation-Date: 2019-06-20 11:25:47+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/admin/class-store-notification-admin-settings.php:72
|
||||
#: svn-repository/tags/1.0.0/includes/admin/class-store-notification-admin-settings.php:72
|
||||
#: svn-repository/tags/1.0.1/includes/admin/class-store-notification-admin-settings.php:72
|
||||
#: svn-repository/trunk/includes/admin/class-store-notification-admin-settings.php:72
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-store-notification-admin-settings.php:541
|
||||
#: svn-repository/tags/1.0.0/includes/admin/class-store-notification-admin-settings.php:541
|
||||
#: svn-repository/tags/1.0.1/includes/admin/class-store-notification-admin-settings.php:541
|
||||
#: svn-repository/trunk/includes/admin/class-store-notification-admin-settings.php:541
|
||||
msgid "Select a page…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-store-notification-admin.php:76
|
||||
#: includes/admin/class-store-notification-admin.php:96
|
||||
#: includes/admin/class-store-notification-admin.php:97
|
||||
#: svn-repository/tags/1.0.0/includes/admin/class-store-notification-admin.php:74
|
||||
#: svn-repository/tags/1.0.0/includes/admin/class-store-notification-admin.php:95
|
||||
#: svn-repository/tags/1.0.0/includes/admin/class-store-notification-admin.php:96
|
||||
#: svn-repository/tags/1.0.1/includes/admin/class-store-notification-admin.php:76
|
||||
#: svn-repository/tags/1.0.1/includes/admin/class-store-notification-admin.php:96
|
||||
#: svn-repository/tags/1.0.1/includes/admin/class-store-notification-admin.php:97
|
||||
#: svn-repository/trunk/includes/admin/class-store-notification-admin.php:76
|
||||
#: svn-repository/trunk/includes/admin/class-store-notification-admin.php:96
|
||||
#: svn-repository/trunk/includes/admin/class-store-notification-admin.php:97
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-store-notification-admin.php:88
|
||||
#: includes/admin/class-store-notification-admin.php:90
|
||||
#: svn-repository/tags/1.0.1/includes/admin/class-store-notification-admin.php:88
|
||||
#: svn-repository/tags/1.0.1/includes/admin/class-store-notification-admin.php:90
|
||||
#: svn-repository/trunk/includes/admin/class-store-notification-admin.php:88
|
||||
#: svn-repository/trunk/includes/admin/class-store-notification-admin.php:90
|
||||
msgid "Instagram Pack"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:29
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:42
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:29
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:42
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:29
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:42
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:29
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:42
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:43
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:61
|
||||
msgid "Label Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:66
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:186
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:159
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:159
|
||||
msgid "Load More Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:67
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:187
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:160
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:160
|
||||
msgid "Load more text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:70
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:42
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:190
|
||||
#: svn-repository/tags/1.0.0/templates/tmpl-feed.php:97
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:163
|
||||
#: svn-repository/tags/1.0.1/includes/shortcodes/class-store-notification-shortcode-feed.php:43
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:163
|
||||
#: svn-repository/trunk/includes/shortcodes/class-store-notification-shortcode-feed.php:43
|
||||
msgid "Load more.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:72
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:192
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:165
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:165
|
||||
msgid "Load More Loading Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:73
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:193
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:166
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:166
|
||||
msgid "Load more loading text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:76
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:43
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:196
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:169
|
||||
#: svn-repository/tags/1.0.1/includes/shortcodes/class-store-notification-shortcode-feed.php:44
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:169
|
||||
#: svn-repository/trunk/includes/shortcodes/class-store-notification-shortcode-feed.php:44
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:78
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:198
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:171
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:171
|
||||
msgid "Follow text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:79
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:199
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:172
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:172
|
||||
msgid "Follow text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:82
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:45
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:202
|
||||
#: svn-repository/tags/1.0.0/templates/tmpl-feed.php:99
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:175
|
||||
#: svn-repository/tags/1.0.1/includes/shortcodes/class-store-notification-shortcode-feed.php:46
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:175
|
||||
#: svn-repository/trunk/includes/shortcodes/class-store-notification-shortcode-feed.php:46
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:84
|
||||
msgid "Post Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:85
|
||||
msgid "Post label for number of posts."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:88
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:46
|
||||
#: svn-repository/tags/1.0.1/templates/tmpl-feed.php:42
|
||||
#: svn-repository/trunk/templates/tmpl-feed.php:42
|
||||
msgid "posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:90
|
||||
msgid "Followers Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:91
|
||||
msgid "Followers label for number of followers."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:94
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:47
|
||||
#: svn-repository/tags/1.0.1/templates/tmpl-feed.php:46
|
||||
#: svn-repository/trunk/templates/tmpl-feed.php:46
|
||||
msgid "followers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:96
|
||||
msgid "Following Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:97
|
||||
msgid "Following label for number of following."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:100
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:48
|
||||
#: svn-repository/tags/1.0.1/templates/tmpl-feed.php:50
|
||||
#: svn-repository/trunk/templates/tmpl-feed.php:50
|
||||
msgid "following"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:102
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:103
|
||||
msgid "Edit Profile Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:106
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:49
|
||||
#: svn-repository/tags/1.0.1/templates/tmpl-feed.php:27
|
||||
#: svn-repository/trunk/templates/tmpl-feed.php:27
|
||||
msgid "Edit Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:127
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:135
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:108
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:108
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:134
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:142
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:115
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:115
|
||||
msgid ""
|
||||
"Click here to get instagram token from here and paste it to Access Token "
|
||||
"Box and save it and add this [instagram_pack_feed] shortcode into your "
|
||||
"page,posts or widgets."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:136
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:144
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:117
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:117
|
||||
msgid "Click here to get instagram access token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:142
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:150
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:123
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:123
|
||||
msgid "Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:143
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:151
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:124
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:124
|
||||
msgid "Instagram Access Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:148
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:156
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:129
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:129
|
||||
msgid "Instagram Gallery Grid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:149
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:157
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:130
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:130
|
||||
msgid "Select grid for instagram feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:161
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:162
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:169
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:170
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:142
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:143
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:142
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:143
|
||||
msgid "Per Page Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:168
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:176
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:149
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:149
|
||||
msgid "Hide post like counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:169
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:177
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:150
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:150
|
||||
msgid "Click here to hide post like counter for individual post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:174
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:181
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:154
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:154
|
||||
msgid "Hide post comment counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:175
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:182
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:155
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:155
|
||||
msgid "Click here to hide post comment counter for individual post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:180
|
||||
msgid "Hide follow button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:181
|
||||
msgid "Click here to hide follow button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:187
|
||||
msgid "Hide Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-general.php:188
|
||||
msgid "Click here to hide profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-store-notification-settings-miscellaneous.php:29
|
||||
#: includes/admin/settings/class-store-notification-settings-miscellaneous.php:48
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-miscellaneous.php:29
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-miscellaneous.php:75
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-miscellaneous.php:29
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-miscellaneous.php:48
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-miscellaneous.php:29
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-miscellaneous.php:48
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-store-notification-ajax.php:43
|
||||
#: svn-repository/tags/1.0.0/includes/class-store-notification-ajax.php:43
|
||||
#: svn-repository/tags/1.0.1/includes/class-store-notification-ajax.php:43
|
||||
#: svn-repository/trunk/includes/class-store-notification-ajax.php:43
|
||||
msgid "Something wrong, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-store-notification-api.php:43
|
||||
#: includes/class-store-notification.php:60
|
||||
#: svn-repository/tags/1.0.0/includes/class-store-notification-api.php:43
|
||||
#: svn-repository/tags/1.0.0/includes/class-store-notification.php:60
|
||||
#: svn-repository/tags/1.0.1/includes/class-store-notification-api.php:43
|
||||
#: svn-repository/tags/1.0.1/includes/class-store-notification.php:60
|
||||
#: svn-repository/trunk/includes/class-store-notification-api.php:43
|
||||
#: svn-repository/trunk/includes/class-store-notification.php:60
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-store-notification-api.php:53
|
||||
#: includes/class-store-notification.php:70
|
||||
#: svn-repository/tags/1.0.0/includes/class-store-notification-api.php:53
|
||||
#: svn-repository/tags/1.0.0/includes/class-store-notification.php:70
|
||||
#: svn-repository/tags/1.0.1/includes/class-store-notification-api.php:53
|
||||
#: svn-repository/tags/1.0.1/includes/class-store-notification.php:70
|
||||
#: svn-repository/trunk/includes/class-store-notification-api.php:53
|
||||
#: svn-repository/trunk/includes/class-store-notification.php:70
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:62
|
||||
#: svn-repository/tags/1.0.0/includes/functions.php:62
|
||||
#: svn-repository/tags/1.0.1/includes/functions.php:62
|
||||
#: svn-repository/trunk/includes/functions.php:62
|
||||
#. translators: %s template
|
||||
msgid "%s does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:79
|
||||
#: svn-repository/tags/1.0.0/includes/functions.php:79
|
||||
#: svn-repository/tags/1.0.1/includes/functions.php:79
|
||||
#: svn-repository/trunk/includes/functions.php:79
|
||||
msgid ""
|
||||
"action_args should not be overwritten when calling "
|
||||
"store_notification_get_template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/shortcodes/class-store-notification-shortcode-feed.php:88
|
||||
#: svn-repository/tags/1.0.0/includes/shortcodes/class-store-notification-shortcode-feed.php:70
|
||||
#: svn-repository/tags/1.0.1/includes/shortcodes/class-store-notification-shortcode-feed.php:84
|
||||
#: svn-repository/trunk/includes/shortcodes/class-store-notification-shortcode-feed.php:84
|
||||
msgid " Instagram access token invalid, please contact your website administrator"
|
||||
msgstr ""
|
||||
|
||||
#: svn-repository/tags/1.0.0/includes/admin/class-store-notification-admin.php:87
|
||||
msgid "Instagram Pack Setting Page"
|
||||
msgstr ""
|
||||
|
||||
#: svn-repository/tags/1.0.0/includes/admin/class-store-notification-admin.php:88
|
||||
msgid "Instagram"
|
||||
msgstr ""
|
||||
|
||||
#: svn-repository/tags/1.0.0/includes/admin/settings/class-store-notification-settings-general.php:43
|
||||
#: svn-repository/tags/1.0.1/includes/admin/settings/class-store-notification-settings-general.php:43
|
||||
#: svn-repository/trunk/includes/admin/settings/class-store-notification-settings-general.php:43
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: svn-repository/tags/1.0.0/includes/admin/views/html-admin-settings.php:50
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: svn-repository/tags/1.0.0/templates/tmpl-feed.php:98
|
||||
msgid "Loading.."
|
||||
msgstr ""
|
||||
|
||||
#: svn-repository/tags/1.0.1/templates/tmpl-feed-item.php:12
|
||||
#: svn-repository/trunk/templates/tmpl-feed-item.php:12
|
||||
#: templates/tmpl-feed-item.php:12
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Mantrabrain Instagram Pack"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/mantrabrain-instagram-pack/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Display your instagram feed using this [instagram_pack_feed] shortcode."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mantrabrain"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://mantrabrain.com/"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,564 @@
|
||||
# Copyright (C) 2019 Brainstorm Force
|
||||
# This file is distributed under the same license as the Ultimate Addons for Gutenberg package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ultimate Addons for Gutenberg 1.13.5\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
|
||||
"POT-Creation-Date: 2019-07-03 14:01:27+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-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"
|
||||
|
||||
#: admin/uagb-admin.php:25
|
||||
msgid "Take Gutenberg to The Next Level! - "
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-admin.php:26
|
||||
msgid "View Demos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-admin.php:35
|
||||
msgid "Settings saved successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:18
|
||||
msgid "Submit a Ticket »"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Ultimate Addons for Gutenberg"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:32
|
||||
msgid "Welcome to the Ultimate Addons for Gutenberg!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:34
|
||||
msgid ""
|
||||
"Thank you for choosing Ultimate Addons for Gutenberg - the most "
|
||||
"comprehensive library of advanced and creative blocks to build a stunning "
|
||||
"website and blog faster than ever before!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:35
|
||||
msgid "How to use the Ultimate Addons for Gutenberg Blocks »"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:36
|
||||
msgid "Ready-to-use Full Demo Websites - "
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:36
|
||||
msgid ""
|
||||
"Get professionally designed 20+ pre-built FREE starter sites built using "
|
||||
"Gutenberg, Ultimate Addons for Gutenberg and the Astra theme. These can be "
|
||||
"imported in just a few clicks. Tweak them easily and build awesome websites "
|
||||
"in minutes!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:37
|
||||
msgid "Know More »"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:46
|
||||
msgid "Ever-growing Library of Gutenberg Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:48
|
||||
msgid ""
|
||||
"The easy-to-use and extremely powerful blocks of the Ultimate Addons for "
|
||||
"Gutenberg (UAG) are now available within your Gutenberg Editor. Search for "
|
||||
"\"UAG\" in the block inserter and see all the Ultimate Addons for Gutenberg "
|
||||
"blocks listed below. Simply click on the block you wish to add on your page "
|
||||
"or post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:49
|
||||
msgid "Wish to see some real design implementations with these blocks?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:50
|
||||
msgid "See Demos »"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:51
|
||||
msgid ""
|
||||
"Check out the detailed knowledge base articles that will help you "
|
||||
"understand the working of each block."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:52 admin/uagb-general.php:158
|
||||
msgid "Visit Knowledge Base »"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:57
|
||||
msgid "Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:59
|
||||
msgid "Activate All"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:60
|
||||
msgid "Deactivate All"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:61
|
||||
msgid "Reusable Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:83 classes/class-uagb-admin.php:268
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:90 classes/class-uagb-admin.php:269
|
||||
msgid "Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:127
|
||||
msgid "Free Theme for Gutenberg"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:131
|
||||
msgid ""
|
||||
"Join over 200,000+ active users empowering their websites with Astra! From "
|
||||
"beginners to industry leaders, everyone loves the Astra theme."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:132
|
||||
msgid "Why Astra Theme?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:133
|
||||
msgid "Faster Performance - "
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:133
|
||||
msgid ""
|
||||
"Built with speed and performance in mind, Astra follows the best coding "
|
||||
"standards and lets you build faster loading and better performing websites."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:134
|
||||
msgid "Easy Customization - "
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:134
|
||||
msgid ""
|
||||
"With all the settings managed through the customizer, Astra keeps it simple "
|
||||
"and gives you lots of options to customize everything with a few clicks."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:135
|
||||
msgid "Pixel Perfect Design - "
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:135
|
||||
msgid ""
|
||||
"Astra reduces your design time by giving you pixel-perfect FREE "
|
||||
"ready-to-use websites demos within a huge library of starter sites."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:140
|
||||
msgid "Install Astra Now!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:142
|
||||
msgid "Activate Astra Now!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:152
|
||||
msgid "Knowledge Base"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:156
|
||||
msgid "Not sure how something works? Take a peek at the knowledge base and learn."
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:164
|
||||
msgid "Five Star Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/uagb-general.php:171
|
||||
#. translators: %1$s: uagb name.
|
||||
msgid "Got a question? Get in touch with %1$s developers. We're happy to help!"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:130
|
||||
msgid ""
|
||||
"Wow! The Ultimate Addons for Gutenberg has already powered over 5 pages on "
|
||||
"your website!"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:131
|
||||
msgid ""
|
||||
"Would you please mind sharing your views and give it a 5 star rating on the "
|
||||
"WordPress repository?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:133
|
||||
msgid "Ok, you deserve it"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:135
|
||||
msgid "Nope, maybe later"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:136
|
||||
msgid "I already did"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:155
|
||||
#. translators: %s: html tags
|
||||
msgid ""
|
||||
"Ultimate Addons for Gutenberg requires %3$sBlock Editor%4$s. You can "
|
||||
"change your editor settings to Block Editor from %1$shere%2$s. Plugin "
|
||||
"is currently NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:270
|
||||
msgid "Enable Beta Updates"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:271
|
||||
msgid "Disable Beta Updates"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:272
|
||||
msgid "Installing Astra"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:273
|
||||
msgid "Activating Astra"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:274
|
||||
msgid "Astra Activated!"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:436
|
||||
msgid "No Theme specified"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-admin.php:457
|
||||
msgid "Theme Successfully Activated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:42
|
||||
msgid "Advanced Heading"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:43
|
||||
msgid ""
|
||||
"This block lets you add a combination of a heading and a sub-heading with a "
|
||||
"separator in between."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:84
|
||||
msgid "Advanced Columns"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:85
|
||||
msgid ""
|
||||
"This block gives you advanced options to insert a number of columns within "
|
||||
"a single row."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:163
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:164
|
||||
msgid "This block is an immediate child of Advanced Columns."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:235
|
||||
msgid "Blockquote"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:236
|
||||
msgid "This block allows you to display your Blockquote."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:330
|
||||
msgid "Call To Action"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:331
|
||||
msgid ""
|
||||
"This block allows you to place an CTA along with a heading and description "
|
||||
"within a single block."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:400
|
||||
msgid "Contact Form 7 Styler"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:401
|
||||
msgid ""
|
||||
"This block allows you to add and style your Contact Form 7 forms right in "
|
||||
"the Gutenberg editor."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:536
|
||||
msgid "Gravity Form Styler"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:537
|
||||
msgid ""
|
||||
"This block allows you to add and style your Gravity Forms right in the "
|
||||
"Gutenberg editor."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:689
|
||||
msgid "Content Timeline"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:690
|
||||
msgid "The Timeline block lets you create beautiful timelines on your website."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:760
|
||||
msgid "Google Map"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:761
|
||||
msgid "This block allows you to place a Google Map Location."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:770
|
||||
msgid "Icon List"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:771
|
||||
msgid "This block allows you to place an image or icon in a list format."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:778
|
||||
msgid "Label #1"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:821
|
||||
msgid "Info Box"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:822
|
||||
msgid ""
|
||||
"This block allows you to place an image or icon along with a heading and "
|
||||
"description within a single block."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:916
|
||||
msgid "Marketing Button"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:917
|
||||
msgid "This block allows you to place a Marketing Button with small description."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:989
|
||||
msgid "Multi Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:990
|
||||
msgid "This block allows you to add multiple buttons with a single block."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1007
|
||||
msgid "Post Carousel"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1008
|
||||
msgid ""
|
||||
"This block fetches the blog posts you may have on your website and displays "
|
||||
"them in a carousel layout."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1087 classes/class-uagb-config.php:1170
|
||||
#: classes/class-uagb-config.php:1254 dist/blocks/post/index.php:331
|
||||
#: dist/blocks/post/index.php:701 dist/blocks/post/index.php:1108
|
||||
#: dist/blocks/post/index.php:1679
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1097
|
||||
msgid "Post Grid"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1098
|
||||
msgid ""
|
||||
"This block fetches the blog posts you may have on your website and displays "
|
||||
"them in a grid layout."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1180
|
||||
msgid "Post Masonry"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1181
|
||||
msgid ""
|
||||
"This block fetches the blog posts you may have on your website and displays "
|
||||
"them in a masonry layout."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1264
|
||||
msgid "Post Timeline"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1265
|
||||
msgid ""
|
||||
"The Timeline block lets you create beautiful timelines of Posts on your "
|
||||
"website."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1365
|
||||
msgid "Price List"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1366
|
||||
msgid "This block allows you to add attractive Price List."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1437
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1438
|
||||
msgid ""
|
||||
"This block is an outer wrap section that allows you to add other blocks "
|
||||
"within it."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1511
|
||||
msgid "Social Share"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1512
|
||||
msgid ""
|
||||
"This block allows you to let users share your content across various social "
|
||||
"networking sites."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1545
|
||||
msgid "Table of Contents"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1546
|
||||
msgid "This block allows you to place a Table of Contents for Pages/Posts."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1632
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1633
|
||||
msgid ""
|
||||
"This block allows you to display your team. Add their picture, name, what "
|
||||
"they do and links to their social profiles."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1703
|
||||
msgid "Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-config.php:1704
|
||||
msgid ""
|
||||
"This block helps your display some amazing client feedback within your "
|
||||
"website."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-helper.php:1032
|
||||
msgid "Full"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-init-blocks.php:66
|
||||
msgid "Ultimate Addons Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-init-blocks.php:248
|
||||
#: classes/class-uagb-init-blocks.php:281
|
||||
msgid "Select Form"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-init-blocks.php:262
|
||||
msgid "You have not added any Contact Form 7 yet."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-init-blocks.php:295
|
||||
msgid "You have not added any Gravity Forms yet."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-loader.php:145
|
||||
#. translators: %s: html tags
|
||||
msgid ""
|
||||
"The %1$sUltimate Addon for Gutenberg%2$s plugin requires %1$sGutenberg%2$s "
|
||||
"plugin installed & activated."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-loader.php:155
|
||||
msgid "Activate Gutenberg"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-uagb-loader.php:162
|
||||
msgid "Install Gutenberg"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks/cf7-styler/index.php:20
|
||||
msgid "Please select a valid Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks/gf-styler/index.php:21
|
||||
msgid "Please select a valid Gravity Form."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks/post-timeline/index.php:35
|
||||
msgid "No posts found"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks/post-timeline/index.php:568
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
#: ultimate-addons-for-gutenberg.php:36
|
||||
#. translators: %s: PHP version
|
||||
msgid ""
|
||||
"Ultimate Addons for Gutenberg requires PHP version %s+, plugin is currently "
|
||||
"NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#: ultimate-addons-for-gutenberg.php:53
|
||||
#. translators: %s: WordPress version
|
||||
msgid ""
|
||||
"Ultimate Addons for Gutenberg requires WordPress version %s+. Because you "
|
||||
"are using an earlier version, the plugin is currently NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.brainstormforce.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"The Ultimate Addons for Gutenberg extends the Gutenberg functionality with "
|
||||
"several unique and feature-rich blocks that help build websites faster."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Brainstorm Force"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
855
spec/fixtures/dynamic_finders/plugin_version/user-role-editor/change_log/changelog.txt
vendored
Normal file
855
spec/fixtures/dynamic_finders/plugin_version/user-role-editor/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,855 @@
|
||||
CHANGES LOG (full version).
|
||||
===========================
|
||||
|
||||
= [4.51.1] 15.06.2019 =
|
||||
* Fix: Superadmin could not revoke capabilities from 'administrator' role under WordPress multisite.
|
||||
|
||||
= [4.51] 21.05.2019 =
|
||||
* New: Bulk actions were added to the Users page: "Add Role", "Revoke Role". Select role from the related drop-down menu and add/revoke it to/from the list of pre-selected users.
|
||||
* Update: Bulk grant roles feature ("Grant roles" button at the "Users" page) and Bulk grant role to users without role ("Without role" button at the "Users" page) are protected by 'promote_users' capability instead of 'edit_users', exactly the same way as WordPress itself does for its "Change role to".
|
||||
* Update: 'load-users.php' action is used instead of 'admin_init' to load support code for "Without role" and "Grant roles" button at the "Users" page.
|
||||
* Update: URE ignores now a capability without ID in case it was added to the database somehow (other plugin bug, etc.). Such incorrect empty capability is removed from the capabilities list as a result after any role update.
|
||||
|
||||
= [4.50.2] 01.04.2019 =
|
||||
* Fix: WordPress multisite: PHP Notice "wpmu_new_blog is deprecated since version 5.1.0! Use wp_insert_site instead." was removed. URE uses 'wp_initialize_site' action now instead of deprecated 'wpmu_new_blog'. This fix provides correct roles replication from the main blog/site to a new created blog/site.
|
||||
|
||||
= [4.50.1] 16.03.2019 =
|
||||
* Fix: WP Multisite: Users->Capabilities->Update: "Fatal error: Uncaught Error: Call to undefined method URE_Editor::check_blog_user() in /wp-content/plugins/user-role-editor/includes/classes/editor.php on line 576" was fixed.
|
||||
* Fix: WooCommerce group was not shown under "Custom capabilities" section.
|
||||
|
||||
= [4.50] 20.02.2019 =
|
||||
* Update: General code restructure and optimization.
|
||||
* Update: URE_Base_Lib::get_blog_ids() returns null, if it's called under WordPress single site (not multisite).
|
||||
* Update: URE_Editor::prepare_capabilities_to_save() : "Invalid argument supplied for foreach()" warning was excluded in case there was no valid data structures initialization.
|
||||
* Update: 'administrator' role protection was enhanced. URE always does not allow to revoke capability from 'administrator' role. That was possible earlier after the 'administrator' role update.
|
||||
|
||||
= [4.49] 15.01.2019 =
|
||||
* Update: Selected role ID was added to "Delete role" confirmation dialog.
|
||||
* Update: Method URE_Base_Lib::get_short_list_str() was enhanced.
|
||||
* Update: Method URE_Base_Lib::get_blog_ids() was made public.
|
||||
* Update: Method URE_Lib::get_usermeta_table_name() was excluded.
|
||||
* Fix: PHP warning "Undefined index:'unexisted role ID'" was fixed at URE_Lib::roles_text() (wp-content/plugins/user-role-editor/includes/classes/lib.php:360).
|
||||
* Fix: Bug was fixed with incorrect usage of transient for option "Show deprecated capabilities".
|
||||
|
||||
= [4.48] 03.01.2019 =
|
||||
* Update: Multisite: Sites list is not requested from the database on every page opened in order to reduce server load.
|
||||
* Update: URE plugin version update routine is called now at the wp-admin backend only.
|
||||
* Update: Direct access to URE_Lib::bbpress property was excluded as a preparation to future code enhancements.
|
||||
|
||||
= [4.47] 12.11.2018 =
|
||||
* Fix: "Users->User Role Editor": Capabilities view was not refreshed properly for new selected role in case "Granted Only" filter was turned ON before other role selection.
|
||||
* Update: Unused code was removed from user-role-editor/includes/classes/bbpress.php
|
||||
* Update: Prevent sudden revoke role 'administrator' from a user(s) during capability with the same ID ('administrator') deletion from roles.
|
||||
* Update: Adding custom capability with ID 'administrator' was prohibited.
|
||||
* Update: Marked as compatible with WordPress version 5.0
|
||||
|
||||
= [4.46] 20.09.2018
|
||||
* Update: "Users" page, "Without role" button: underlying SQL queries were replaced with more robust versions (about 10 times faster).
|
||||
It is critical for sites with large quant of users.New query does not take into account though some cases with incorrect users data (usually imported from the external sources).
|
||||
It's possible to use older (comprehensive but slower) query version defining a PHP constant: "define('URE_COUNT_USERS_WITHOUT_ROLE_THOROUGHLY', true);" or
|
||||
return false from a custom 'ure_count_users_without_role_quick' filter.
|
||||
* Update: error checking was enhanced after default role change for the subsite under WordPress multisite.
|
||||
|
||||
= [4.45] 18.08.2018 =
|
||||
* Fix: Capability checkbox was shown as turned ON incorrectly for not granted capability included into a role, JSON: "caps":{"sample_cap":"false"}. Bug took place after the changing a currently selected role.
|
||||
* Fix: Custom capabilities groups "User Role Editor" and "WooCommerce" were registered at the wrong 3rd tree level - changed to 2.
|
||||
|
||||
= [4.44] 05.07.2018 =
|
||||
* Update: URE had executed 'profile_update' action after update of user permissions from the user permissions editor page: Users->selected user->Capabilities.
|
||||
It was replaced with 'ure_user_permissions_update' action now. It will allow to exclude conflicts with other plugins - "WP Members" [lost checkbox fields values](https://wordpress.org/support/topic/conflict-with-wp-members-2/), for example.
|
||||
* Update: Additional options for role (like "Hide admin bar" at the bottom of URE page) did not applied to the user with 'ure_edit_roles' capability. This conditon was removed.
|
||||
* Update: fix PHP notice 'Undefined offset: 0 in ...' at includes/classes/protect-admin.php, not_edit_admin(), where the 1st element of $caps array not always has index 0.
|
||||
* Update: PHP required version was increased up to 5.4.
|
||||
|
||||
= [4.43] 05.06.2018 =
|
||||
* Update: references to non-existed roles are removed from the URE role additional options data storage after any role update.
|
||||
* Fix: Additional options section view for the current role was not refreshed properly after other current role selection.
|
||||
|
||||
= [4.42] 16.05.2018 =
|
||||
* Fix: Type checking was added (URE_Lib::restore_visual_composer_caps()) to fix "Warning: Invalid argument supplied for foreach() in .../user-role-editor-pro/includes/classes/ure-lib.php on line 315".
|
||||
|
||||
= [4.41] 07.05.2018 =
|
||||
* New: URE changes currently selected role via AJAX request, without full "Users->User Role Editor" page refresh.
|
||||
* Update: All [WPBakery Visual Composer](http://vc.wpbakery.com) plugin custom user capabilities (started from 'vc_access_rules_') were excluded from processing by User Role Editor. Visual Composer loses settings made via its own "Role Manager" after the role update by User Role Editor in other case. The reason - Visual Composer stores not boolean values with user capabilities granted to the roles via own "Role Manager". User Role Editor converted them to related boolean values during role(s) update.
|
||||
|
||||
= [4.40.3] 05.04.2018 =
|
||||
* Update: bbPress detection and code for integration with it was updated to support multisite installations when URE is network activated but bbPress is activated on some sites of the network only. Free version does not support bbPress roles. It excludes them from processing as bbPress creates them dynamically.
|
||||
|
||||
= [4.40.2] 04.04.2018 =
|
||||
* Update: Load required .php files from the active bbPress plugin directly, as in some cases URE code may be executed earlier than they are loaded by bbPress.
|
||||
|
||||
= [4.40.1] 09.03.2018 =
|
||||
* Update: wp_roles() function (introduced with WP 4.3) was included conditionally to URE code for backward compatibility with WordPress 4.0+
|
||||
* Fix: WordPress multisite: bbPress plugin detection code was changed from checking bbPress API function existence to checking WordPress active plugins list. bbPress plugin activated for the site was not available yet for the network activated User Role Editor at the point of URE instance creation. URE did not work with bbPress roles as it should by design for that reason. URE (free version) should ignore bbPress roles and capabilities as the special efforts are required for this.
|
||||
|
||||
= [4.40] 31.01.2018 =
|
||||
* Update: use wp_roles() function from WordPress API instead of initializing $wp_roles global variable directly.
|
||||
* Fix: Bug was introduced by version 4.37 with users recalculation for "All" tab after excluding users with "administrator" role. Code worked incorrectly for Japanese locale.
|
||||
|
||||
= [4.39] 19.12.2017 =
|
||||
* Update: Plugin settings management code moved to the separate URE_Settings class.
|
||||
* Update: 'create_posts', 'create_pages' user capabilities are not added by default to WordPress built-in capabilities groups as they are supported by the Pro version only.
|
||||
* Update: Type checking enhanced for values received from a user input and for variable arguments inside database queries.
|
||||
* Update: Own code to build usermeta db table name was excluded. A value from $wpdb->usermeta is used instead.
|
||||
|
||||
= [4.38] 27.11.2017 =
|
||||
* Security: XSS vulnerability was fixed at URE's options page. Bug was discovered and fixed at tab index value numeric type checking. Tab index value is additionally escaped before output also.
|
||||
* Security: Deprecated code for debug output to the .log file in case of database query error was removed.
|
||||
* Security: Multiple select jQuery plugin (https://github.com/wenzhixin/multiple-select/) was updated to the latest available version 1.2.1, which fixed XSS vulnerability, existed in earlier versions.
|
||||
|
||||
= [4.37] 01.11.2017 =
|
||||
* New: New option was added. It's possible to select permanent quant of capabilities columns at the "Settings->User Role Editor->General" tab.
|
||||
* Update: User capabilities are shown for custom post types which use the WordPress built-in 'post' or 'page' capability type. (0/0) was shown earlier instead of the quantity of user capabilities really used.
|
||||
* Update: Restriction was added for 'do_not_allow' user capability (used internally by WordPress). You can not add it manually.
|
||||
* Fix: URE hides users with 'administrator' role by default from any other user. Quantity of users of 'All' view (tab) at 'Users' page is decreased now for the quantity of hidden administrators.
|
||||
|
||||
= [4.36.1] 02.10.2017 =
|
||||
* Update: Direct access to the global $current_user variable was excluded. Current user data is initialized via WordPress core functions wp_get_current_user() or get_current_user_id().
|
||||
|
||||
= [4.36] 19.09.2017 =
|
||||
* New: It's possible to set any URE's option value programmatically: use custom filter 'ure_get_option_<option_name>'. It takes a single parameter with current/default value for required options.
|
||||
Full list of User Role Editor options is available here: https://www.role-editor.com/documentation/options-list
|
||||
* Update: Users page - Grant Roles. It's possible to change just "Other roles" for multiple users and leave their primary roles untouched. Just leave a "Primary role" field empty. If you select the "- No role for this site -" option from a "Primary role" drop-down list, plugin will revoke all roles from the selected users.
|
||||
* Update: Options page screen help text was updated.
|
||||
* Fix: Additional (other) default roles set at URE's settings page are not granted to a new user now, if they were deselected at a 'Add New User' page.
|
||||
|
||||
= [4.35.3] 20.07.2017 =
|
||||
* Fix: Multiple roles assignment (including default roles) did not work at "Users->Add New" new-user.php (contexts: add-existing-user, add-new-user) page for WordPress multisite.
|
||||
|
||||
= [4.35.2] 18.07.2017 =
|
||||
* Fix: Multiple default roles (if defined at URE's settings) are selected automatically at new-user.php (context: add-new-user) page.
|
||||
* Update: Code enhancement for protection of users with 'administrator' role from each other. Current user can see his own record and edit own profile.
|
||||
|
||||
= [4.35.1] 10.07.2017 =
|
||||
* Fix: "Grant Roles" button at the bottom of "Users" page did not work as had the same ID as a similar button at the top of this page.
|
||||
* Update: when bbPress plugin is active, "Grant Roles" does not revoke bbPress role granted to user anymore.
|
||||
* Fix: The same ID "move_from_no_role" and "move_from_no_role_dialog" were included twice to the "Users" page.
|
||||
|
||||
= [4.35] 11.06.2017 =
|
||||
* Update: Bulk capabilities selection checkbox is not shown for 'administrator' role for single site WP, and is shown if current user is superadmin for multisite WP. It was done to exclude sudden revoke of all capabilities from the 'administrator' role.
|
||||
* Update: Full copy of JQuery UI 1.11.4 custom theme CSS file (jquery-ui.css) was included.
|
||||
* Fix: User->User Role Editor page apparently loads own jQuery UI CSS (instead of use of WordPress default one) in order to exclude the conflicts with themes and plugins which can load own jQuery UI CSS globally not for own pages only.
|
||||
* Fix: "Change Log" link was replaced with secure https://www.role-editor.com/changelog
|
||||
|
||||
= [4.34] 02.06.2017 =
|
||||
* New: Multisite 'upgrade_network' capability support was added for compatibility with WordPress 4.8.
|
||||
* New: Multisite 'delete_sites' capability support was added.
|
||||
* Update: Users->Grant Roles: if a single user was selected for "Grant Roles" bulk action, dialog will show the current roles of selected user with checkboxes turned ON (pre-selected).
|
||||
* Fix: Transients caching was removed from URE_Lib::_get_post_types() function. It cached post types list too early in some cases.
|
||||
* Fix: jQuery UI CSS was updated to fix minor view inconsistency at the URE's Settings page.
|
||||
* Fix: "Reset" presentation code remainders were removed from the main User Role Editor page.
|
||||
* Fix: 'manage_links' capability was included into a wrong subgroup instead of "Core->General". It was a mistake in the capabilities group counters for that reason.
|
||||
|
||||
= [4.33] 19.05.2017 =
|
||||
* Fix: "Users->Without Roles", "Users->Grant Roles" are shown only to the users with 'edit_users' capability.
|
||||
* Fix: Roles were updated for all sites of all networks for WordPress multisite. "Apply to All Sites" option updates roles inside a current network only.
|
||||
* Update: "Reset" button moved from the "Users->User Role Editor" main page to the "Settings->User Role Editor->Tools" tab.
|
||||
* Update: "Users->Grant Roles" button worked only for superadmin or user with 'ure_manage_options' capability. User with 'edit_users' can use this feature now.
|
||||
* New: boolean filter 'ure_bulk_grant_roles' allows to not show "Users->Grant Roles" button if you don't need it.
|
||||
* New: boolean filter 'ure_users_select_primary_role' can hide 'Primary role' selection controls from the user profile edit page.
|
||||
* New: boolean filter 'ure_users_show_wp_change_role' can hide "Change Role" bulk action selection control from the Users page. So it's possible to configure permissions for user who can change just other roles of a user without changing his primary role.
|
||||
* Update: Settings tabs and dialog stylesheets was updated to jQuery UI 1.11.4 default theme.
|
||||
|
||||
= [4.32.3] 03.04.2017 =
|
||||
* Fix: Boolean false was sent to WordPress core wp_enqueue_script() function as the 2nd parameter instead of an empty string. We should respect the type of parameter which code author supposed to use initially.
|
||||
* Fix: Bulk grant to users multiple roles JavaScript code is loaded now for users.php page only, not globally.
|
||||
|
||||
= [4.32.2] 17.03.2017 =
|
||||
* Fix: "Users->Grant Roles" button did not work with switched off option "Count Users without role" at "Settings->User Role Editor->Additional Modules" tab. "JQuery UI" library was not loaded.
|
||||
* Update: minimal PHP version was raised to 5.3.
|
||||
|
||||
= [4.32.1] 09.03.2017 =
|
||||
* Fix: URL to users.php page was built incorrectly after bulk roles assignment to the users selected at the 1st page of a users list.
|
||||
|
||||
= [4.32] 09.03.2017 =
|
||||
* New: Button "Grant Roles" allows to "Assign multiple roles to the selected users" directly from the "Users" page.
|
||||
* Update: singleton template was applied to the main User_Role_Editor class. While GLOBALS['user-role-editor'] reference to the instance of User_Role_Editor class is still available for the compatibility purpose, call to User_Role_Editor::get_instance() is the best way now to get a reference to the instance of User_Role_Editor class.
|
||||
* Fix: Missed 'unfiltered_html' capability is shown now at the 'General' capabilities group too.
|
||||
|
||||
= [4.31.1] 06.01.2017 =
|
||||
* Fix: WP transients get/set were removed from URE_Own_Capabilities class. It leaded to the MySQL deadlock in some cases.
|
||||
* Update: Base_Lib::get_request_var() sanitizes user input by PHP's filter_var() in addition to WordPress core's esc_attr().
|
||||
|
||||
= [4.31] 14.12.2016 =
|
||||
* New: It's possible to remove unused user capabilities by list.
|
||||
* Fix: There was no support for installations with the hidden/changed URL to wp-admin. URE uses 'admin_url()' now to get and check admin URL, instead of direct comparing URL with 'wp-admin' string.
|
||||
* Fix: Deprecated capabilities were shown in some cases at the 'Core' group even with "Show deprecated capabilities" mode switched off.
|
||||
* Update: Capability groups CSS classes are prefixed with 'ure-' in order to minimize possible CSS conflicts with other plugins/themes which may load styles with the same classes globally and break URE's markup.
|
||||
|
||||
= [4.30] 01.12.2016 =
|
||||
* Update: compatible with WordPress 4.7
|
||||
* New: "Granted Only" checkbox to the right from the "Quick Filter" input control allows to show only granted capabilities for the selected role or user.
|
||||
|
||||
= [4.29] 10.11.2016 =
|
||||
* New: User Role Editor own user capabilities are grouped separately under Custom capabilities.
|
||||
* Update: URE_Lib::is_super_admin() uses WordPress core is_super_admin() for multisite setup only. Superadmin is a user with 'administrator' role in the case of single site WordPress installation.
|
||||
This is the difference with the WordPress core which counts as a superadmin (for single site WP installation) any user with a 'delete_users' capability.
|
||||
* Update: BaseLib::option_selected() calls were replaced with the calls of a similar selected() function from WordPress core.
|
||||
|
||||
= [4.28] 20.10.2016 =
|
||||
* New: WooCommerce plugin user capabilities (if exist) are grouped separately under Custom capabilities.
|
||||
* Update: Temporally raised permissions flag is taken into account when checking, if user has a superadmin privileges. WordPress is_super_admin() function was replaced with custom wrapper to define if current user is a real superadmin or just a local admin with the temporally raised (add/edit users pages) permissions.
|
||||
|
||||
= [4.27.2] 15.09.2016 =
|
||||
* Update: There was a conflict with plugins which use a '|' character at the custom user capabilities: e.g. 'Nginx Helper | Config' from "Nginx Helper' plugin.
|
||||
* Fix: PHP notice was removed: Undefined property: URE_Role_View::$multisite in wp-content/plugins/user-role-editor/includes/classes/view.php on line 143
|
||||
* Fix: WordPress multisite: Settings link under the URE plugin at the plugins list leads to the network admin now, not to the the single site settings page, which does not exist.
|
||||
* Fix: WordPress multisite: conflict with "Visual Composer" plugin was resolved: single site administrators could now use Visual Composer editor.
|
||||
* Fix: WordPress multisite: changed role name was not replicated to other sites when user clicked "Update" with "Apply to All Sites" option turned ON.
|
||||
|
||||
= [4.27.1] 22.08.2016 =
|
||||
* Update: There was a conflict with plugins which use a '/' character at the custom user capabilities: e.g. vc_access_rules_backend_editor/disabled_ce_editor from Visual Composer.
|
||||
* Update: add/delete, escape, validate user capability code extracted from URE_Lib to the separate URE_Capability class
|
||||
|
||||
= [4.27] 18.08.2016 =
|
||||
* New: Total/Granted counters were added to the capabilities groups titles.
|
||||
* New: "Columns" drop-down menu allows to change capabilities section layout to 1, 2 or 3 columns.
|
||||
* New: Capabilities section is limited in height and has independent scrollbar.
|
||||
* Update: User Role Editor page markup was updated to use more available space on page.
|
||||
* Update: URE_Ajax_Processor class allows to differentiate required user permissions according to action submitted by user.
|
||||
* Fix: CSS updated to exclude text overlapping at capabilities groups section when custom post type name is not fitted into 1 line.
|
||||
* Fix: required JavaScript files were not loaded at "Network Admin->Settings->User Role Editor" page.
|
||||
|
||||
= [4.26.3] 25.07.2016 =
|
||||
* Fix: Selecting a sub-group/list of caps does make the ure_select_all_caps checkbox select all within that group, but checking that box when at the "All" top-level group did not work.
|
||||
* Fix: Notice: Undefined property: URE_Role_View::$apply_to_all
|
||||
|
||||
= [4.26.1] 14.07.2016 =
|
||||
* Fix: some bugs, like 'undefined property' notices, etc.
|
||||
|
||||
= [4.26] 14.07.2016 =
|
||||
* New: User capabilities were groupd by functionality for more convenience.
|
||||
* Update: URE_KEY_CAPABILITY constant was changed from 'ure_edit_roles' to 'ure_manage_options'. To make possible for non-admin users access to the User Role Editor without access to the 'administrator' role and users with 'administrator' role.
|
||||
* Update: User receives full access to User Role Editor under WordPress multisite if he has 'manage_network_plugins' capability instead of 'manager_network_users' as earlier. This allows to give user ability to edit network users without giving him access to the User Role Editor.
|
||||
* Update: Multisite: use WordPress's global $current_site->blog_id to define main blog ID instead of selecting the 1st one from the sorted list of blogs.
|
||||
* Update: use WP transients at URE_Lib::_get_post_types() to reduce response time.
|
||||
* Update: various internal optimizations.
|
||||
|
||||
= [4.25.2] 03.05.2016 =
|
||||
* Update: Enhanced inner processing of available custom post types list.
|
||||
* Update: Uses 15 seconds transient cache in order to not count users without role twice when 'restrict_manage_users' action fires.
|
||||
* Update: URE fires action 'profile_update' after direct update of user permissions in order other plugins may catch such change.
|
||||
* Update: All URE's PHP classes files renamed and moved to the includes/classes subdirectory
|
||||
|
||||
= [4.25.1] 15.04.2016 =
|
||||
* Fix: Selected role's capabilities list was returned back to old after click "Update" button. It was showed correctly according to the recent updates just after additional page refresh.
|
||||
* Update: deprecated function get_current_user_info() call was replaced with wp_get_current_user().
|
||||
|
||||
= [4.25] 02.04.2016 =
|
||||
* Important security update: Any registered user could get an administrator access. Thanks to [John Muncaster](http://johnmuncaster.com/) for discovering and wisely reporting it.
|
||||
* URE pages title tag was replaced from h2 to h1, for compatibility with other WordPress pages.
|
||||
* Fix: "Assign role to the users without role" feature ignored role selected by user.
|
||||
* Fix: PHP fatal error (line 34) was raised at uninstall.php for WordPress multisite.
|
||||
* Update: action priority 99 was added for role additional options hook action setup.
|
||||
|
||||
= [4.24] 17.03.2016 =
|
||||
* Fix: PHP notice was generated by class-role-additional-options.php in case when some option does not exist anymore
|
||||
* Enhance: 'Add Capability' button have added capability to the WordPress built-in administrator role by default. It did not work, if 'administrator' role did not exist.
|
||||
Now script selects automatically as an admin role a role with the largest quant of capabilities and adds new capability to the selected role.
|
||||
* New: User capabilities page was integrated with "[User Switching](https://wordpress.org/plugins/user-switching/)" plugin - "Switch To" the editing user link iss added if "User Switching" plugin is available.
|
||||
* Marked as compatible with WordPress 4.5.
|
||||
|
||||
= [4.23.2] 03.02.2016 =
|
||||
* Fix: PHP warning "Strict Standards: Static function URE_Base_Lib::get_instance() should not be abstract" was generated
|
||||
|
||||
= [4.23.1] 01.02.2016 =
|
||||
* Fix: 'get_called_class()' function call was excluded for the compatibility with PHP 5.2.*
|
||||
* Fix: ure-users.js was loaded not only to the 'Users' page.
|
||||
|
||||
= [4.23] 31.01.2016 =
|
||||
* Fix: "Users - Without Role" button showed empty roles drop down list on the 1st call.
|
||||
* Update: Own task queue was added, so code which should executed once after plugin activation is executed by the next request to WP and may use a selected WordPress action to fire with a needed priority.
|
||||
* Update: Call of deprecated mysql_server_info() is replaced with $wpdb->db_version().
|
||||
* Update: Singleton patern is applied to the URE_Lib class.
|
||||
* Minor code enhancements
|
||||
|
||||
= [4.22] 15.01.2016 =
|
||||
* Unused 'add_users' capability was removed from the list of core capabilities as it was removed from WordPress starting from version 4.4
|
||||
* bbPress user capabilities are supported for use in the non-bbPress roles. You can not edit roles created by bbPress, as bbPress re-creates them dynamically for every request to the server. Full support for bbPress roles editing will be included into User Role Editor Pro version 4.22.
|
||||
* Self-added "Other Roles" column removed from "Users" list, as WordPress started to show all roles assigned to the user in its own "Role" column.
|
||||
* 'ure_show_additional_capabilities_section' filter allows to hide 'Other Roles' section at the 'Add new user', 'Edit user' pages.
|
||||
|
||||
= [4.21.1] 16.12.2015 =
|
||||
* Fix: 'Update' button did not work at User's Capabilities page due to confirmation dialog call error.
|
||||
|
||||
|
||||
= [4.21] 11.12.2015 =
|
||||
* It's possible to switch off the update role confirmation (Settings - User Role Editor - General tab).
|
||||
* Standard JavaScript confirm box before role update was replaced with custom one to exclude 'Prevent this page from creating additional dialogs' option in the Google Chrome browser.
|
||||
* Fix: Removed hard coded folder name (user-role-editor) from the used paths.
|
||||
|
||||
|
||||
= [4.20.1] 15.11.2015 =
|
||||
* Fix: "Primary default role" drop-down menu was not shown at "Settings - User Role Editor - Default Roles" tab for WordPress single site installation.
|
||||
|
||||
= [4.20] 15.11.2015 =
|
||||
* "Additional options" section was added to the user role editor page. Currently it contains the only "Hide admin bar". The list of options may be customized/extended by developers via "ure_role_additonal_options" filter.
|
||||
* "Default Role" button is hidden to not duplicate functionality. Use "Settings - User Role Editor - Default Roles" tab instead. This button is available only for the single sites of WP multisite now.
|
||||
* Code restructure, optimization: administrator protection parts extracted to the separate class.
|
||||
|
||||
= [4.19.3] 14.10.2015 =
|
||||
* Fix: minor CSS change.
|
||||
* Automatically add all available custom post types capabilities to the administrator role under the single site environment. Custom posts types selection query updated to include all custom post types except 'built-in' when adding custom capabilities for them
|
||||
* Special flag was set to indicate that single site administrator gets raised (superadmin) permissions temporary especially for the 'user-new.php' page, but current user is not the superadmin really.
|
||||
(This temporary permissions raising is done to allow single site administrator to add new users under multisite if related option is active.)
|
||||
|
||||
= [4.19.2] 01.10.2015 =
|
||||
* Fix: multiple default roles assignment did not work under the multisite environment, when user was created from front-end by WooCommerce, etc.
|
||||
* Update: the translation text domain was changed to the plugin slug (user-role-editor) for the compatibility with translations.wordpress.org
|
||||
* Update: CSS enhanced to exclude column wrapping for the capabilities with the long names.
|
||||
|
||||
= [4.19.1] 20.08.2015 =
|
||||
* Default role value has not been refreshed automatically after change at the "Default Role" dialog - fixed.
|
||||
* More detailed notice messages are shown after default role change - to reflect a possible error or problem.
|
||||
* Other default roles (in addition to the primary role) has been assigned to a new registered user for requests from the admin back-end only. Now this feature works for the requests from the front-end user registration forms too.
|
||||
|
||||
= 4.19 =
|
||||
* 28.07.2015
|
||||
* It is possible to assign to the user multiple roles directly through a user profile edit page.
|
||||
* Custom SQL-query (checked if the role is in use and slow on the huge data) was excluded and replaced with WordPress built-in function call. [Thanks to Aaron](https://wordpress.org/support/topic/poorly-scaling-queries).
|
||||
* Bulk role assignment to the users without role was rewritten for cases with a huge quant of users. It processes just 50 users without role for the one request to return the answer from the server in the short time. The related code was extracted to the separate class.
|
||||
* Code to fix JavaScript and CSS compatibility issues introduced by other plugins and themes, which load its stuff globally, was extracted into the separate class.
|
||||
* Custom filters were added: 'ure_full_capabilites' - takes 1 input parameter, array with a full list of user capabilities visible at URE, 'ure_built_in_wp_caps' - takes 1 input parameter, array with a list of WordPress core user capabilities. These filters may be useful if you give access to the URE for some not administrator user, and wish to change the list of capabilities which are available to him at URE.
|
||||
* Dutch translation was updated. Thanks to Gerhard Hoogterp.
|
||||
|
||||
= 4.18.4 =
|
||||
* 30.04.2015
|
||||
* Calls to the function add_query_arg() is properly escaped with esc_url_raw() to exclude potential XSS vulnerabilities. Nothing critical: both calls of add_query_arg() are placed at the unused sections of the code.
|
||||
* Italian translation was updated. Thanks to Leo.
|
||||
|
||||
= 4.18.3 =
|
||||
* 24.02.2015
|
||||
* Fixed PHP fatal error for roles reset operation.
|
||||
* Fixed current user capability checking before URE Options page open.
|
||||
* 3 missed phrases were added to the translations files. Thanks to [Morteza](https://wordpress.org/support/profile/mo0orteza)
|
||||
* Hebrew translation updated. Thanks to [atar4u](http://atar4u.com)
|
||||
* Persian translation updated. Thanks to [Morteza](https://wordpress.org/support/profile/mo0orteza)
|
||||
|
||||
= 4.18.2 =
|
||||
* 06.02.2015
|
||||
* New option "Edit user capabilities" was added. If it is unchecked - capabilities section of selected user will be shown in the readonly mode. Administrator (except superadmin for multisite) can not assign capabilities to the user directly. He should make it using roles only.
|
||||
* More universal checking applied to the custom post type capabilities creation to exclude not existing property notices.
|
||||
* Multisite: URE's options page is prohibited by 'manage_network_users' capability instead of 'ure_manage_options' in case single site administrators does not have permission to use URE.
|
||||
* URE protects administrator user from editing by other users by default. If you wish to turn off such protection, you may add filter 'ure_supress_administrators_protection' and return 'true' from it.
|
||||
* Plugin installation to the WordPress multisite with large (thousands) subsites had a problem with script execution time. Fixed. URE does not try to update all subsites at once now. It does it for every subsite separately, only when you visit that subsite.
|
||||
* Fixed JavaScript bug with 'Reset Roles' for FireFox v.34.
|
||||
|
||||
= 4.18.1 =
|
||||
* 14.12.2014
|
||||
* As activation hook does not fire during bulk plugins update, automatic plugin version check and upgrade execution were added.
|
||||
|
||||
= 4.18 =
|
||||
* 14.12.2014
|
||||
* Own custom user capabilities, e.g. 'ure_edit_roles' are used to restrict access to User Role Editor functionality ([read more](https://www.role-editor.com/user-role-editor-4-18-new-permissions/)).
|
||||
* If custom post type uses own custom user capabilities URE add them to the 'Custom Capabilities' section automatically.
|
||||
* Multisite: You may allow to the users without superadmin privileges to add/create site users without sending them email confirmation request.
|
||||
* Bug fix: when non-admin user updated other user profile, that user lost secondary roles.
|
||||
* Italian translation was added. Thanks to [Giuseppe Velardo](http://www.comprensivoleopardi.gov.it/).
|
||||
|
||||
= 4.17.3 =
|
||||
* 23.11.2014
|
||||
* French and Turkish translation were updated. Thanks to [Transifex](https://www.transifex.com) translation team.
|
||||
|
||||
= 4.17.2 =
|
||||
* 21.10.2014
|
||||
* Notice: "Undefined property: Ure_Lib::$pro in .../class-user-role-editor.php on line 550" was fixed.
|
||||
* Settings help screen text was updated.
|
||||
* Russian translation was updated.
|
||||
* Hungarian translation was updated. Thanks to Németh Balázs.
|
||||
* French and Turkish translation were updated. Thanks to [Transifex](https://www.transifex.com) translation team.
|
||||
|
||||
|
||||
= 4.17.1 =
|
||||
* 01.10.2014
|
||||
* Bug fix for the PHP Fatal error: Call to undefined function is_plugin_active_for_network(). It may take place under multisite only,
|
||||
in case no one of the other active plugins load file with this function already before User Role Editor v. 4.17 tries to call it.
|
||||
|
||||
= 4.17 =
|
||||
* 01.10.2014
|
||||
* Multisite (update for cases when URE was not network activated): It is possible to use own settings for single site activated instances of User Role Editor.
|
||||
Earlier User Role Editor used the settings values from the main blog only located under "Network Admin - Settings".
|
||||
Some critical options were hidden from the "Multisite" tab for single site administrators and visible to the superadmin only.
|
||||
Single site admin should not have access to the options which purpose is to restrict him.
|
||||
Important! In case you decide to allow single site administrator activate/deactivate User Role Editor himself, setup this PHP constant at the wp-config.php file:
|
||||
define('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE', 1);
|
||||
Otherwise single site admin will not see User Role Editor in the plugins list after its activation. User Role Editor hides itself under multisite from all users except superadmin by default.
|
||||
* Help screen for the Settings page was updated.
|
||||
* Hungarian translation was added. Thanks to Németh Balázs.
|
||||
* Dutch translation was added. Thanks to Arjan Bosch.
|
||||
|
||||
|
||||
= 4.16 =
|
||||
* 11.09.2014
|
||||
* "create_sites" user capability was added to the list of built-in WordPress user capabilities for WordPress multisite. It does not exist by default. But it is used to control "Add New" button at the "Sites" page under WordPress multisite network admin.
|
||||
* bug fix: WordPress database prefix value was not used in 2 SQL queries related to the "count users without role" module - updated.
|
||||
|
||||
= 4.15 =
|
||||
* 08.09.2014
|
||||
* Rename role button was added to the URE toolbar. It allows to change user role display name (role ID is always the same). Be careful and double think before rename some built-in WordPress role.
|
||||
|
||||
= 4.14.4 =
|
||||
* 08.08.2014
|
||||
* Missed "manage_sites" user capability was added to the list of built-in WordPress capabilities managed by User Role Editor.
|
||||
* Russian translation was updated.
|
||||
|
||||
= 4.14.3 =
|
||||
* 25.07.2014
|
||||
* Integer "1" as default capability value for new added empty role was excluded for the better compatibility with WordPress core. Boolean "true" is used instead as WordPress itself does.
|
||||
* Integration with Gravity Forms permissions system was enhanced for WordPress multisite.
|
||||
|
||||
= 4.14.2 =
|
||||
* 18.07.2014
|
||||
* The instance of main plugin class User_Role_Editor is available for other developers now via $GLOBALS['user_role_editor']
|
||||
* Compatibility issue with the theme ["WD TechGoStore"](http://wpdance.com) is resolved. This theme loads its JS and CSS stuff for admin backend uncoditionally - for all pages. While the problem is caused just by CSS URE unloads all this theme JS and CSS for optimizaiton purpose for WP admin backend pages where conflict is possible.
|
||||
|
||||
= 4.14.1 =
|
||||
* 13.06.2014
|
||||
* MySQL query optimizing to reduce memory consumption. Thanks to [SebastiaanO](http://wordpress.org/support/topic/allowed-memory-size-exhausted-fixed).
|
||||
* Extra WordPress nonce field was removed from the post at main role editor page to exclude nonce duplication.
|
||||
* Minor code enhancements.
|
||||
* Fixes for some missed translations.
|
||||
|
||||
= 4.14 =
|
||||
* 16.05.2014
|
||||
* Persian translation was added. Thanks to Morteza.
|
||||
|
||||
= 4.12 =
|
||||
* 22.04.2014
|
||||
* Bug was fixed. It had prevented bulk move users without role (--No role for this site--) to the selected role in case such users were shown more than at one WordPress Users page.
|
||||
* Korean translation was added. Thanks to [Taek Yoon](http://www.ajinsys.com).
|
||||
|
||||
= 4.11 =
|
||||
* 06.04.2014
|
||||
* Single-site: It is possible to bulk move users without role (--No role for this site--) to the selected role or automatically created role "No rights" without any capabilities. Get more details at https://role-editor.com/no-role-for-this-site/
|
||||
* Plugin uses for dialogs jQuery UI CSS included into WordPress package.
|
||||
|
||||
= 4.10 =
|
||||
* 15.02.2014
|
||||
* Security enhancement: WordPress text translation functions were replaced with more secure esc_html__() and esc_html_e() variants.
|
||||
|
||||
= 4.9 =
|
||||
* 19.01.2014
|
||||
* New tab "Default Roles" was added to the User Role Editor settings page. It is possible to select multiple default roles to assign them automatically to the new registered user.
|
||||
* CSS and dialog windows layout various enhancements.
|
||||
* 'members_get_capabilities' filter was applied to provide better compatibility with themes and plugins which may use it to add its own user capabilities.
|
||||
* jQuery UI CSS was updated to version 1.10.4.
|
||||
|
||||
= 4.8 =
|
||||
* 10.12.2013
|
||||
* Role ID validation rule was added to prohibit numeric role ID - WordPress does not support them.
|
||||
* Plugin "Options" page was divided into sections (tabs): General, Multisite, About. Section with information about plugin author, his site, etc. was moved from User Role Editor main page to its "Options" page - "About" tab.
|
||||
* HTML markup was updated to provide compatibility with upcoming WordPress 3.8 new administrator backend theme "MP6".
|
||||
* Restore previous blog 'switch_to_blog($old_blog_id)' call was replaced to 'restore_current_blog()' where it is possible to provide better compatibility with WordPress API.
|
||||
After use 'switch_to_blog()' in cycle, URE clears '_wp_switched_stack' global variable directly instead of call 'restore_current_blog()' inside the cycle to work faster.
|
||||
|
||||
= 4.7 =
|
||||
* 04.11.2013
|
||||
* "Delete Role" menu has "Delete All Unused Roles" menu item now.
|
||||
* More detailed warning was added before fulfill "Reset" roles command in order to reduce accident use of this critical operation.
|
||||
* Bug was fixed at Ure_Lib::reset_user_roles() method. Method did not work correctly for the rest sites of the network except the main blog.
|
||||
|
||||
= 4.6 =
|
||||
* 21.10.2013
|
||||
* Multi-site: 'unfiltered_html' capability marked as deprecated one. Read this post for more information (http://shinephp.com/is-unfiltered_html-capability-deprecated/).
|
||||
* Multi-site: 'manage_network%' capabilities were included into WordPress core capabilities list.
|
||||
* On screen help was added to the "User Role Editor Options" page - click "Help" at the top right corner to read it.
|
||||
* Bug fix: turning off capability at the Administrator role fully removed that capability from capabilities list.
|
||||
* Various internal code enhancements.
|
||||
* Information about GPLv2 license was added to show apparently - "User Role Editor" is licensed under GPLv2 or later.
|
||||
|
||||
= 4.5.2 =
|
||||
* 23.09.2013
|
||||
* User capabilities editor updated to support capabilities beyond the user roles - capabilities added by other plugins directly to the users, or deleted from the user roles.
|
||||
* Bug fixed - custom capabilities was not shown in User capabilities editor in some cases.
|
||||
* Spanish translation was added. Thanks to [Dario Ferrer](http://darioferrer.com/).
|
||||
|
||||
= 4.5.1 =
|
||||
* 29.08.2013
|
||||
* Bug with multi-site super-admin access to the User Role Editor is fixed. Version 4.5. showed message "Insufficient permissions to work with User Role Editor" until add "manage_network_users" capability to the "Administrator" role. It is enough now to be the "Superadmin" at multi-site network.
|
||||
|
||||
= 4.5 =
|
||||
* 29.08.2013
|
||||
* Direct checking of the "administrator" role is removed from the code to support ability to change User Role Editor access key capability.
|
||||
URE uses by default the "administrator" role for single site as the key capability to permit access to the User Role Editor.
|
||||
You may change this capability manually by replacing value of URE_KEY_CAPABILITY constant at includes/define_constants.php file. Pro version
|
||||
starting from 4.5 allows to change this key capability name (input your own, custom one) via User Role Editor settings page.
|
||||
* The Hebrew translation is added. Thanks to [atar4u](http://atar4u.com).
|
||||
|
||||
= 4.4 =
|
||||
* 15.08.2013
|
||||
* Bug fixed which prevented creation of current roles backup record during User Role Editor plugin installation and produced unexpected output (PHP notices).
|
||||
|
||||
= 4.3 =
|
||||
* 12.08.2013
|
||||
* Multisite update: roles from the main (1st) blog are copied to the new added blog automatically,
|
||||
even new site is added from front-end after new user registration, e.g. Gravity Forms "Register User" addon does. Earlier this feature worked
|
||||
for administrator back-end operations only.
|
||||
* Bug prevented to apply role changes to all sites of the network is fixed. In case when one of the sites have exactly the same roles as applied from the main site, MySQL returned 0 rows affected. URE recognized that as error and stopped further network updated. It is fixed now.
|
||||
* Bug prevented to save empty (without capabilities) role is fixed.
|
||||
* User interface bug with options 'Show capabilities in human readable form' and 'Show deprecated capabilities' fixed.
|
||||
Now this checkboxes work this way: It takes global values from the User Role Editor Settings 1st. If you change it at Roles/User editor form plugin,
|
||||
it remembers your change temporally for 10 minutes. After that this value will be returned to the URE global settings.
|
||||
If you wish to make permanent change make it at URE settings page.
|
||||
|
||||
= 4.2 =
|
||||
* 02.08.2013
|
||||
* Separate setting page is added for User Role Editor under Settings menu. It is available under Network Center "Settings" for the multi-site.
|
||||
* Option 'show Administrator role in the User Role Editor' was added.
|
||||
* User with super-admin privilege only may create, edit, delete users by default under multi-site configuration.
|
||||
Use new "Allow create, edit and delete user to not super-administrators" option to workaround this obstacle.
|
||||
Such user still should have correspondent user capabilities as "create_users", "edit_users", "delete_users".
|
||||
Thanks to [Sjobidoo](http://wordpress.org/support/profile/sjobidoo) for suggested
|
||||
[decision](http://wordpress.org/support/topic/plugin-user-role-editor-not-able-to-add-ability-to-edit-users).
|
||||
* PHP fatal error caused by typo in the 'uninstall.php' file is fixed.
|
||||
* Miscellaneous code enhancements.
|
||||
|
||||
= 4.1.1 =
|
||||
* 15.07.2013
|
||||
* Issue when "users with "Editor" credentials were no longer able to change the author name in the drop down on each post to someone with administrative credentials" is fixed.
|
||||
* Limitation when user with 'Administrator' role could not edit/delete other users with 'Administrator' role is removed.
|
||||
* "Apply to All sites" checkbox is excluded from "Select All" operation.
|
||||
* Quick filter is added to the user's capabilities edit form. Capabilities selection buttons work is fixed after that.
|
||||
|
||||
= 4.1 =
|
||||
* 03.07.2013
|
||||
* Quick Filter is added. Type part of any capability. All capabilities containing that word, e.g. 'edit' or 'users' will be highlighted by green color.
|
||||
While 'quick filter' is in action 'Select All', 'Unselect All', 'Inverse' buttons work with highlighted capabilities sub-set only.
|
||||
Read [this post](http://role-editor.com/user-role-editor-version-4-1-is-available/) for more information:
|
||||
* Class property and method access modifiers fatal errors were fixed (http://wordpress.org/support/topic/fatalerror-1).
|
||||
|
||||
= 4.0 =
|
||||
* 30.06.2013
|
||||
* Pro version only: added 'Export/Import' functionality to 'export' all user roles to the local file and 'import' them then to other WordPress blog or other sites of muliti-site WordPress network, or just restore roles to previous state after playing with them with test purpose.
|
||||
* Added integration with the Gravity Forms plugin. User Role Editor shows Gravity Forms user capabilities at the custom capabilities section.
|
||||
* Code is fully restructured and encapsulated to PHP classes. Internal global variables are not in use anymore.
|
||||
|
||||
= 3.14.1 =
|
||||
* 24.05.2013
|
||||
* Bug, which prevented the correct use of WordPress nonces on some installations (Windows), is fixed;
|
||||
* DIRECTORY_SEPARATOR constant used in path to User Role Editor CSS file was empty on some installations (Windows). Constant DIRECTORY_SEPARATOR is excluded from the plugin code;
|
||||
* User capabilities page: roles checkboxes are excluded from 'Select All', 'Unselect All', 'Inverse' operations. Only capabilities checkboxes are processed.
|
||||
* Turkish [Muhammed YILDIRIM](http://ben.muhammed.im) translation is updated.
|
||||
|
||||
= 3.14 =
|
||||
* 17.05.2013
|
||||
* Interface update: role/capability add/remove stuff was removed from the page. Plugin has toolbar at the right side now. Click on the button opens needed dialog window.
|
||||
* New role may have different attrubutes "ID" and "Name". While ID is still restricted by latin characters hyphen, underscore and digits only, Name could contain spaces and national languages characters.
|
||||
* General code cleanup and security enhancements: all data changes request are processed via POST instead of GET now. So its more difficult to send modified malicious request without special software. Presence of special nonce field is checked for all requests.
|
||||
* Setting up the 'administrator' role as default one for new registered users is prohibited at server side.
|
||||
* JavaScript code separated from PHP one whenever it's possible.
|
||||
|
||||
* 14.05.2013
|
||||
* Update for administrators of multi-site WordPress installations. Single-site WordPress installation administrator could skip this update.
|
||||
* "Apply to All Sites" feature did not work at version 3.12. It is fixed.
|
||||
* "Apply to All Sites" feature is available now from main site of the network only
|
||||
|
||||
= 3.12 =
|
||||
* 01.05.2013
|
||||
* Critical update: persistent cross-site scripting vulnerability is fixed.
|
||||
* WordPress built-in constants, like WP_PLUGIN_URL are not used in order to provide compatibility with sites which use SSL. plugin_dir_url(), plugin_dir_path() functions are used to define paths to the plugin's files instead.
|
||||
* "Greetings" section is removed from the plugin's main page. All that content is still available at [plugin page](http://shinephp.com/user-role-editor-wordpress-plugin)
|
||||
|
||||
|
||||
= 3.11 =
|
||||
* 24.03.2013
|
||||
* Required WordPress version checking is moved to plugin activation hook.
|
||||
* Administrator can now exclude non-core (custom) capabilities from his role. It is useful if you need to fully remove some capability as capability deletion is prohibited while it is used at least one role.
|
||||
* bbPress compatibility issue is fixed: capabilities created by bbPress dinamically are excluded from the capabilities set in User Role Editor to not store them in the database as persistent WP roles data.
|
||||
* Additional roles are assigned to user without overriding her primary WordPress role and bbPress role.
|
||||
* Changing Wordpress user primary role at user profile doesn't clear additonal roles assigned with User Role Editor earlier.
|
||||
* Brasilian Portuguese translation is updated.
|
||||
|
||||
= 3.10 =
|
||||
* 04.02.2013
|
||||
* You can assign to user multiple roles simultaneously. Use user level roles and capabilities editor for that. You can click 'Capabilities' link under selected user row at users list or 'Assign Roles and Additional Capabilities' link at user profile.
|
||||
* Critical bug fix: hidden deprecated WordPress core capabilities had turned on after any update made to the role. Deprecated capabilities are not currently in use by WordPress itself. But old plugins or themes could still use them. If you use some outdated code I recommend you to check all roles, you modified with User Role Editor, and turn off unneeded deprecated capabilities there.
|
||||
* User with Administrator role is secured better from editing, deletion by user with lower capabilities.
|
||||
|
||||
= 3.9 =
|
||||
* 07.01.2013
|
||||
* Compatibility with bbPress 2.2 new user roles model is provided. More details about the reason of such update at http://shinephp.com/bbpress-user-role-editor-conflict-fix/
|
||||
* "Reset" button works differently now. It restores WordPress roles data to its 1st, default state, exactly that, what WordPress has just after fresh install/latest version update. Be careful with it, make database backup copy before fulfill this operation. Some plugin could require reactivation to function properly after roles reset.
|
||||
* Arabic translation is added. Thanks to [Yaser](http://www.englize.com/)
|
||||
* Slovak translation is added. Thanks to Branco.
|
||||
|
||||
= 3.8.3 =
|
||||
* 14.12.2012
|
||||
* Compatibility issue with WordPress 3.5 was found (thanks to Sonja) and fixed: $wpdb->prepare() was called without 2nd $args parameter - removed.
|
||||
|
||||
= 3.8.2 =
|
||||
* 02.12.2012
|
||||
* load_plugin_textdomain() call moved to the 'plugins_loaded' hook for higher compatibility with translation plugins.
|
||||
* Traditional Chinese translation is added. Thanks to Jingxin Lai.
|
||||
|
||||
= 3.8.1 =
|
||||
* 21.10.2012
|
||||
* Fix: URE taked roles names from the database directly and ignored changes made to roles names on the fly by other plugins or themes, names, which were cached by WordPress internally, but were not written to the database. URE uses WordPress internal cache now.
|
||||
* Roles names translation update: if URE translation file doesn't exist for blog default language, URE uses WordPress internal translation now.
|
||||
* Serbian translation is added. Thanks to [Diana](http://wpcouponshop.com).
|
||||
|
||||
= 3.8 =
|
||||
* 01.09.2012
|
||||
* Bug fix: Some times URE didn't show real changes it made to the database. The reason was that direct update of database did not invalidate data stored at WordPress cache. Special thanks to [Knut Sparhell](http://sparhell.no/knut/) for the help to detect this critical issue.
|
||||
* WordPress core capabilities are shown separately from capabilities added by plugins and manually.
|
||||
* If you configured URE to show you 'Administrator' role, you will see its capabilities, but you can not exclude any capability from it. I may just add capabilities to the Administrator role now. The reason - Administrator role should have all existing capabilities included.
|
||||
* Brasilian Portuguese translation is updated. Thanks to [Onbiz](http://www.onbiz.com.br/).
|
||||
|
||||
= 3.7.5 =
|
||||
* 11.08.2012
|
||||
* Minor fix of German language translation file. One string translation was the reason of URE empty screen. Just replace your German language translation files in the ./lang directory with files from this package.
|
||||
|
||||
= 3.7.5 =
|
||||
* 29.07.2012
|
||||
* Polish translation is updated. Thanks to Bartosz.
|
||||
* "User Role Editor" menu item could be shown in translated form now. Do not lose it - it is on the same place at the "Users" submenu.
|
||||
|
||||
= 3.7.4 =
|
||||
* 26.07.2012
|
||||
* Persian translation is updated. Thanks to Amir Khalilnejad.
|
||||
|
||||
= 3.7.3 =
|
||||
* 25.07.2012
|
||||
* German translation is updated. Thanks to Piter.
|
||||
|
||||
= 3.7.2 =
|
||||
* 20.07.2012
|
||||
* SQL-injection vulnerability was found and fixed. Thanks to DDave for reporting it, look this [thread](http://shinephp.com/community/topic/little-bug-in-ure_has_administrator_role#post-819) for the details.
|
||||
|
||||
= 3.7.1 =
|
||||
* 25.06.2012
|
||||
* Bug fix for "Fatal error: Call to a member function get_role() on a non-object in .../wp-content/plugins/user-role-editor/user-role-editor.php on line 185"
|
||||
|
||||
= 3.7 =
|
||||
* 23.06.2012
|
||||
* 'Select All', 'Unselect All', 'Inverse' buttons were added to the from for more convenient capabilities management while role editing.
|
||||
* Role and capability name could be started from digit, and underscore '_' character. Hyphen '-' character could be included into such name too.
|
||||
* Old versions used 'edit_users' capability to check if show/hide 'User Role Editor' menu item under 'Users' menu. Starting from version 3.7 'administrator' role is checked. Existed inconsistency, when non-admin user with 'edit_users' capability saws 'User Role Editor' menu, but got 'Only Administrator is allowed to use User Role Editor' error message, was removed.
|
||||
* Bug fix: if you work with WordPress admin via https, URE will use https instead of http, as it made in older versions.
|
||||
|
||||
= 3.6.2 =
|
||||
* 23.05.2012
|
||||
* Hindi translation is added. Thanks to Love Chandel.
|
||||
|
||||
= 3.6.1 =
|
||||
* 07.05.2012
|
||||
* Italian translation is updated. Thanks to Tristano Ajmone.
|
||||
|
||||
= 3.6 =
|
||||
* 30.04.2012
|
||||
* CSS and page layout fix for compatibility with WordPress 3.4.
|
||||
* WordPress multi-site: when new blog created default role setting is copied for it from the main blog default role value now.
|
||||
* Minor translations files update, e.g Russian roles names in plugin are identical to those WordPress uses itself now, etc.
|
||||
|
||||
= 3.5.4 =
|
||||
* 4.04.2012
|
||||
* Lithuanian translation is added, thanks to Vincent G.
|
||||
* Spanish translation is updated, thanks to Victor Ricardo Díaz.
|
||||
|
||||
= 3.5.3 =
|
||||
* 24.03.2012
|
||||
* French translation is updated, thanks to Presse et Multimedia.
|
||||
* Hebrew translation is updated, thanks to Aryo Digital.
|
||||
* Persian translation is updated, thanks to Parsa.
|
||||
* Minor CSS fix to provide compatibility with RTL languages.
|
||||
|
||||
= 3.5.2 =
|
||||
* 17.03.2012
|
||||
* Turkish translation is updated, thanks to Muhammed YILDIRIM.
|
||||
* Dutch translation is updated, thanks to Frank Groeneveld.
|
||||
|
||||
= 3.5.1 =
|
||||
* 24.02.2012
|
||||
* Bugs for multi-site WordPress network installation were discovered and fixed: 1) blocked login to admin back-end; 2) empty users list for administrators of single sites; 3) empty authors drop down list at the post editor page.
|
||||
* If URE plugin is not enabled for single site administrator, then URE is automatically excluded from plugins list available to that administrator.
|
||||
|
||||
= 3.5 =
|
||||
* 19.02.2012
|
||||
* User Role Editor could be available now for single site administrators (Administrator role) under multi-site environment. You should define URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE constant in your blog wp-config.php file for that. Insert this line "define('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE', 1);" there, if you decide to give single site admin such opportunity.
|
||||
* One of "User Role Editor" users with 1100+ sites in the multi-site network reported that URE doesn't update roles for all sites, but stalls somewhere in the middle. Other network update method is realized as alternative. Due to my tests it works approximately 30 times faster. If you met the same problem, try it. It will be great if you share your experience with me. In order select alternative method of all sites update add this line to you blog wp-config.php file "define('URE_MULTISITE_DIRECT_UPDATE', 1);". But be careful. It's recommended to make 1st try on the backup copy, not on a live site.
|
||||
* Persian translation is updated. Thanks to [Parsa](http://parsa.ws).
|
||||
|
||||
= 3.4 =
|
||||
* 21.01.2012
|
||||
* You can see/edit "Administrator" role now. Insert this line of code "define('URE_SHOW_ADMIN_ROLE', 1);" into your wp-config.php file and login with administrator account for that.
|
||||
If for some reason your Administrator role missed some capabilities added by plugins or themes, you can fix that. But be careful with changing "Administrator" role, do not turn off accidentally some critical capabilities to not block your admin users.
|
||||
|
||||
= 3.3.3 =
|
||||
* 11.01.2012
|
||||
* Spanish (Dario) and Swedish (Andréas) translations update.
|
||||
|
||||
= 3.3.2 =
|
||||
* 02.01.2012
|
||||
* Enhance server side validation for user input of new role name, minor bug fixes.
|
||||
|
||||
= 3.3.1 =
|
||||
* 12.12.2011
|
||||
* Compatibility with Internet Explorer fix: It automatically replaced '©' in '©_from_user_role' URL parameter inside JavaScript code to copyright sign.So I should use other name for this parameter. Thanks to Michael Wiekenberg for the help with isolating this issue.
|
||||
|
||||
= 3.3 =
|
||||
* 10.12.2011
|
||||
* New role can be created as a copy of other existing one.
|
||||
* You can hide/show deprecated capabilties (level_1 - level_10).
|
||||
* Users with "Administrator" role are not shown to other users with "list_users" capability.
|
||||
* Plugin data cleanup is added - plugin options will be automatically deleted if you delete plugin via WordPress link.
|
||||
* Some code enhancements are applied, e.g. optimization and using of WordPress API instead of self-written routine.
|
||||
* New bugs are added :) - it's a joke of course, but if you find some, please report, I will fix it ASAP.
|
||||
|
||||
= 3.2.1 =
|
||||
* 01.08.2011
|
||||
* This is minor bug-fix update. If you didn't meet this bug you can skip this update. "usermeta" table doesn't exist bug appearing on some multi-site blogs is fixed. Read [this post](http://wordpress.org/support/topic/multisite-setup-gives-usermeta-table-error) for more information. Thanks to harpinder for discovering this bug and for the help with testing updated code. "usermeta" Db table name is define by more universal way now.
|
||||
|
||||
= 3.2 =
|
||||
* 25.07.2011
|
||||
* If you run multi-site WordPress network, User Role Editor will automatically duplicate all roles from the main blog (blog with mininal ID) to every new created blog.
|
||||
* Some fixes, refactoring and logic change were applied to code to enhance its productivity. There were some complaints for PHP timeout error after trying to open plugin Settings page.
|
||||
* Thanks to Grant Norwood for code fix to hide PHP warnings he met during plugin usage.
|
||||
* Hebrew translation is added. Thanks to Sagive.
|
||||
* French translation is updated. Thanks to Whiler.
|
||||
* Japan translation is updated. Thanks to Kaz.
|
||||
* Spanish translation is updated. Thanks to Dario.
|
||||
|
||||
= 3.1.1 =
|
||||
* 07.07.2011
|
||||
* CUSTOM_USER_META_TABLE constant is used now for more compatibility with core WordPress API. Thanks to [Lorenzo Nicoletti](http://www.extera.com)
|
||||
* Turkish translation is updated. Thanks to Muhammed YILDIRIM. Other language translators are welcome!
|
||||
|
||||
= 3.1 =
|
||||
* 03.06.2011
|
||||
* Add/Remove capability boxes are added to the User Role Editor
|
||||
* Capabilities could be assigned directly to the user, additionally to the assigned role
|
||||
* PHP4 is not supported by this plugin anymore. Update your site to PHP5 in order to use this plugin and [near to release WordPress 3.2 :)](http://wordpress.org/about/requirements/)
|
||||
* Minor compatibility issues with other plugins were fixed
|
||||
|
||||
= 3.0.4 =
|
||||
* 18.04.2011
|
||||
* minor update: PHP4 compatibility issue in code was discovered and fixed. PHP5 users could skip it. PHP4 users should think about update to PHP5, as WordPress 3.2 (planned to July 2011) will not provide PHP4 compatibility more.
|
||||
|
||||
= 3.0.3 =
|
||||
* 17.04.2011
|
||||
* Capabilities in human readable form are sorted by alphabet (usefull for translated form) now, not by inner capability name.
|
||||
* Finnish translation is added.
|
||||
|
||||
= 3.0.2 =
|
||||
* 11.04.2011
|
||||
* Swedish translation is added.
|
||||
* Alternative Italian translation is added. Rename ure-it_IT_1.* files to ure-it_IT.* if wish to try it.
|
||||
* ShinePHP.com RSS feed is excluded from plugin settings page. Use this link http://feeds.feedburner.com/shinephp with your favorite RSS reader if you wish to read it.
|
||||
|
||||
= 3.0.1 =
|
||||
* 27.02.2011
|
||||
* Spanish translation is updated. Thanks to [Dario Ferrer](http://www.darioferrer.com). Other language translation wait for update too. You are welcome :).
|
||||
|
||||
= 3.0 =
|
||||
* 06.02.2011
|
||||
* Compatibility with WordPress 3.1 Release Candidate 3 and real multi-site feature are provided.
|
||||
* Role capabilities list are sorted now in the alphabetical order. Easier to find - easier to manage.
|
||||
* Code fix: allows to not lose new custom capability if it is added to other than 'Administrator' role. Thanks to Marcin for the contribution to the code of this plugin.
|
||||
* Under multi-site environment:
|
||||
* 1) URE has additional option 'Apply to All Sites' which allows you to apply updates to the selected role at all sites of your network. If some site has not such role, it will be added. You should know, that this option works for the role update only. All other actions as 'Add' or 'Delete' role still works for the currently selected blog/site only.
|
||||
* 2) URE plugin settings page is available only to user with network superadministrator rights.
|
||||
|
||||
= 2.2.3 =
|
||||
* 08.11.2010
|
||||
* It is the security update. Old problem returned after 2.2.2 update and was discovered by saharusa. You can read this [thread](http://wordpress.org/support/topic/plugin-user-role-editor-editor-can-edit-admin).
|
||||
Only user with Administrator role and superadmin user under multi-site environment have access to the User Role Editor Settings page now.
|
||||
|
||||
= 2.2.2 =
|
||||
* 07.11.2010
|
||||
* URE plugin Settings page was unavailable for some installations in multi-site environment. It is fixed by changing 'add_users' capability for administrator access to the 'edit_users'.
|
||||
* Turkish translation is added.
|
||||
|
||||
= 2.2.1 =
|
||||
* 09.10.2010
|
||||
* Critical bug "Fatal error: Class 'SimplePie' not found in /" is fixed. This is a required update as URE plugin Settings page did not opened in previous version if you have not some of other my plugins installed :).
|
||||
|
||||
= 2.2 =
|
||||
* 08.10.2010
|
||||
* Technical update for WordPress 3.0 full compatibility. Staff deprecated since WordPress v.3.0 is excluded. If you use earlier WordPress versions, do not update URE plugin to v.2.2 or higher.
|
||||
* Italian translation update. Thanks to [Alessandro Mariani](http://technodin.org).
|
||||
|
||||
= 2.1.10 =
|
||||
* 21.09.2010
|
||||
* German translation is updated. Thanks to [Peter](http://www.red-socks-reinbek.de).
|
||||
|
||||
= 2.1.9 =
|
||||
* 17.09.2010
|
||||
* Persian translation is added.
|
||||
|
||||
= 2.1.8 =
|
||||
* 16.08.2010
|
||||
* Compatibility issue with other plugins (like Flash Album Gallery), which use capabilities names with spaces inside (non valid JavaScript identifier), is fixed.
|
||||
* Missed translation slots are added for some new WordPress 3.0 capabilities. Translators (former and new) are welcome to update correspondent language files.
|
||||
* Brasilian Portuguese translation is added.
|
||||
|
||||
= 2.1.7 =
|
||||
* 07.07.2010
|
||||
* Chinese translation is added.
|
||||
|
||||
= 2.1.6 =
|
||||
* 06.07.2010
|
||||
* Dutch translation is added.
|
||||
|
||||
= 2.1.5 =
|
||||
* 18.06.2010
|
||||
* Hungarian translation is added.
|
||||
|
||||
= 2.1.4 =
|
||||
* 08.05.2010
|
||||
* Italian translation is added.
|
||||
* Minor javascript bug (undefined parameter value was sent to the server) is fixed.
|
||||
|
||||
= 2.1.3 =
|
||||
* 27.04.2010
|
||||
* Japanese translation is updated.
|
||||
|
||||
= 2.1.2 =
|
||||
* 26.04.2010
|
||||
* Polish translation is added.
|
||||
|
||||
= 2.1.1 =
|
||||
* 19.04.2010
|
||||
* Form layout changed slightly to fit more long phrases in other languages
|
||||
* Belorussian translation is added. Thanks to [Marsis G.](http://pc.de/).
|
||||
* French, Japanese, Russian, Spanish translations are updated.
|
||||
|
||||
= 2.1 =
|
||||
* 17.04.2010
|
||||
* Two ways of capabilities names presentation are available for the user choice: standard WordPress name like 'edit_pages' and mouse pointer hint 'Edit pages', and vice versa - human readable form 'Edit pages' with mouse hint for WP standard name 'edit-pages'. Human readable form will be available in translated variant after correspondent translation file will be updated.
|
||||
* Form layout changed slightly to fit more long phrases in other languages
|
||||
* Russian, Spanish translations are updated.
|
||||
|
||||
= 2.0.3 =
|
||||
* 14.04.2010
|
||||
* Japanese translation is added. Thanks to [Technolog.jp](http://technolog.jp/).
|
||||
|
||||
= 2.0.2 =
|
||||
* 11.04.2010
|
||||
* German translation is verified and updated. Thanks to [Peter](http://www.red-socks-reinbek.de).
|
||||
|
||||
= 2.0.1 =
|
||||
* 04.04.2010
|
||||
* It is the critical update - security issue is fixed. Thanks to [Saharuza](http://wordpress.org/support/profile/2855662) for discover and telling me about it.
|
||||
User with 'edit_users' permission could still use URL request with special parameters to remove Administrator role from Admin user or delete Admin user record. Check [this thread](http://wordpress.org/support/topic/383935) for more details.
|
||||
|
||||
= 2.0 =
|
||||
* 04.04.2010
|
||||
* Create New Role feature was added
|
||||
* Delete self-made not used role feature was added. You can not delete any WordPress standard role.
|
||||
* Change default role for new user feature was added
|
||||
* Administator role and users with Administrator role permission were hidden from "Users" and "Edit User" page. This is done in case of delegation of add_user, edit_user or delete_user capabilities to some role.
|
||||
|
||||
= 1.2 =
|
||||
* 28.03.2010
|
||||
* User Role Editor plugin menu item is moved to the Users menu
|
||||
* Roles in the dropdown list are translated
|
||||
* French translation is added
|
||||
|
||||
= 1.1 =
|
||||
* 24.03.2010
|
||||
* Critical bug is fixed. If you click 'Reset' button before any changes to the role data saved (that is click Update button) at least one time, you met with all roles data lost problem. Backup data created automatically before the 1st role data update. If no update - no backup. Special checking for that was added.
|
||||
* German translation is added.
|
||||
* Spanish translation is added.
|
||||
|
||||
= 1.0 =
|
||||
* 22.03.2010
|
||||
* 1st release.
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/woo-phone-validator/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/woo-phone-validator/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
== Changelog ==
|
||||
= 1.0.0 =
|
||||
* lauhcing first version.
|
||||
= 1.0.1 =
|
||||
* Proper sanitizing
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/woo-suggestion-engine/change_log/CHANGELOG.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/woo-suggestion-engine/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/*1.0.0 - 2019.07.16*/
|
||||
- Release version 1.0.0
|
||||
@@ -0,0 +1,258 @@
|
||||
# Copyright (C) 2019 WooCommerce
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Google Analytics Integration 1.4.9\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/woocommerce/woocommerce-google-analytics-integration/"
|
||||
"issues\n"
|
||||
"POT-Creation-Date: 2019-04-16 23:15: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: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/class-wc-google-analytics-info-banner.php:57
|
||||
msgid "Google Analytics & WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics-info-banner.php:58
|
||||
msgid ""
|
||||
"<a href=\"%s\">Connect WooCommerce to Google Analytics</a> to finish "
|
||||
"setting up this integration."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics-info-banner.php:62
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics-info-banner.php:62
|
||||
msgid "(Dismiss)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:23
|
||||
msgid "Google Analytics"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:24
|
||||
msgid ""
|
||||
"Google Analytics is a free service offered by Google that generates "
|
||||
"detailed statistics about the visitors to a website."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:104
|
||||
msgid "Google Analytics ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:105
|
||||
msgid ""
|
||||
"Log into your Google Analytics account to find your ID. e.g. "
|
||||
"<code>UA-XXXXX-X</code>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:111
|
||||
msgid "Set Domain Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:112
|
||||
msgid ""
|
||||
"(Optional) Sets the <code>_setDomainName</code> variable. <a "
|
||||
"href=\"%s\">See here for more information</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:117
|
||||
msgid "Tracking Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:118
|
||||
msgid "Enable Standard Tracking"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:119
|
||||
msgid ""
|
||||
"This tracks session data such as demographics, system, etc. You don't need "
|
||||
"to enable this if you are using a 3rd party Google analytics plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:125
|
||||
msgid "\"Display Advertising\" Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:126
|
||||
msgid ""
|
||||
"Set the Google Analytics code to support Display Advertising. %sRead more "
|
||||
"about Display Advertising%s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:132
|
||||
msgid "Use Enhanced Link Attribution"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:133
|
||||
msgid ""
|
||||
"Set the Google Analytics code to support Enhanced Link Attribution. %sRead "
|
||||
"more about Enhanced Link Attribution%s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:139
|
||||
msgid "Enable Universal Analytics"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:140
|
||||
msgid ""
|
||||
"Uses Universal Analytics instead of Classic Google Analytics. If you have "
|
||||
"<strong>not</strong> previously used Google Analytics on this site, check "
|
||||
"this box. Otherwise, %sfollow step 1 of the Universal Analytics upgrade "
|
||||
"guide.%s Enabling this setting will take care of step 2. %sRead more about "
|
||||
"Universal Analytics%s. Universal Analytics must be enabled to enable "
|
||||
"enhanced eCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:146
|
||||
msgid "Anonymize IP addresses."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:147
|
||||
msgid ""
|
||||
"Enabling this option is mandatory in certain countries due to national "
|
||||
"privacy laws. %sRead more about IP Anonymization%s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:153
|
||||
msgid "Track 404 (Not found) Errors."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:154
|
||||
msgid ""
|
||||
"Enable this to find broken or dead links. An \"Event\" with category "
|
||||
"\"Error\" and action \"404 Not Found\" will be created in Google Analytics "
|
||||
"for each incoming pageview to a non-existing page. By setting up a \"Custom "
|
||||
"Goal\" for these events within Google Analytics you can find out where "
|
||||
"broken links originated from (the referrer). %sRead how to set up a goal%s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:160
|
||||
msgid "Purchase Transactions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:161
|
||||
msgid ""
|
||||
"This requires a payment gateway that redirects to the thank you/order "
|
||||
"received page after payment. Orders paid with gateways which do not do this "
|
||||
"will not be tracked."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:167
|
||||
msgid "Add to Cart Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:174
|
||||
msgid "Enhanced eCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:175
|
||||
msgid "Enable Enhanced eCommerce "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:176
|
||||
msgid ""
|
||||
"Enhanced eCommerce allows you to measure more user interactions with your "
|
||||
"store, including: product impressions, product detail views, starting the "
|
||||
"checkout process, adding cart items, and removing cart items. Universal "
|
||||
"Analytics must be enabled for Enhanced eCommerce to work. Before enabling "
|
||||
"this setting, turn on Enhanced eCommerce in your Google Analytics "
|
||||
"dashboard. <a href=\"%s\">See here for more information</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:185
|
||||
msgid "Remove from Cart Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:193
|
||||
msgid "Product Impressions from Listing Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:201
|
||||
msgid "Product Clicks from Listing Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:209
|
||||
msgid "Product Detail Views"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:217
|
||||
msgid "Checkout Process Initiated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:230
|
||||
msgid "Please allow Google Analytics 24 hours to start displaying results."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:233
|
||||
msgid ""
|
||||
"Please note, for transaction tracking to work properly, you will need to "
|
||||
"use a payment gateway that redirects the customer back to a WooCommerce "
|
||||
"order received/thank you page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:375
|
||||
#: includes/class-wc-google-analytics.php:445
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:376
|
||||
#: includes/class-wc-google-analytics.php:446
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-google-analytics.php:377
|
||||
msgid "ID:"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-google-analytics-integration.php:76
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-google-analytics-integration.php:77
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-google-analytics-integration.php:115
|
||||
msgid "WooCommerce Google Analytics depends on the last version of %s to work!"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-google-analytics-integration.php:147
|
||||
msgid "Get detailed insights into your sales with Google Analytics Pro"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-google-analytics-integration.php:150
|
||||
#. translators: 1: href link to GA pro
|
||||
msgid ""
|
||||
"Add advanced tracking for your sales funnel, coupons and more. [<a "
|
||||
"href=\"%s\" target=\"_blank\">Learn more</a> >]"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce Google Analytics Integration"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://wordpress.org/plugins/woocommerce-google-analytics-integration/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Allows Google Analytics tracking code to be inserted into WooCommerce store "
|
||||
"pages."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://woocommerce.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,442 @@
|
||||
# <!=Copyright (C) 2019 WooCommerce
|
||||
# This file is distributed under the same license as the WooCommerce - ShipStation Integration package.=!>
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce - ShipStation Integration 4.1.28\n"
|
||||
"Report-Msgid-Bugs-To: https://docs.woocommerce.com\n"
|
||||
"POT-Creation-Date: 2019-04-17 14:57:10+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-export.php:286
|
||||
msgid "Total Discount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-export.php:301
|
||||
msgid "Order has been exported to Shipstation"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: total count
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-export.php:312
|
||||
msgid "Exported %s orders"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: field name
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-request.php:45
|
||||
msgid "Missing required param: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:181
|
||||
msgid "Missing ShipNotify XML input."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:192
|
||||
msgid "Missing SimpleXML extension for parsing ShipStation XML."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:197
|
||||
msgid "ShipNotify XML: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:202
|
||||
msgid "Cannot parse XML"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: order id
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:223
|
||||
msgid "Order %s can not be found."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: order id
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:231
|
||||
msgid "Invalid order ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:240
|
||||
msgid "ShipNotify Item: "
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: item name
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:253
|
||||
msgid "Item %s is not shippable product. Skipping."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1) shipped items 2) carrier's name 3) shipped date, 4) tracking
|
||||
#. number
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:271
|
||||
msgid "%1$s shipped via %2$s on %3$s with tracking number %4$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1) number of shipped items 2) total shipped items 3) order ID
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:287
|
||||
msgid "Shipped %1$d out of %2$d items in order %3$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1) carrier's name 2) shipped date, 3) tracking number
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:303
|
||||
msgid "Items shipped via %1$s on %2$s with tracking number %3$s (Shipstation)."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: order id
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:310
|
||||
msgid "No items found - shipping entire order %d."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1) order ID 2) shipment status
|
||||
|
||||
#: includes/api-requests/class-wc-shipstation-api-shipnotify.php:336
|
||||
msgid "Updated order %1$s to status %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-api.php:53
|
||||
msgid "Authentication key is required!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-api.php:57
|
||||
msgid "Invalid authentication key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-api.php:65
|
||||
#: includes/class-wc-shipstation-api.php:76
|
||||
msgid "Invalid request"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: query string
|
||||
|
||||
#: includes/class-wc-shipstation-api.php:72
|
||||
msgid "Input params: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:22
|
||||
#: includes/class-wc-shipstation-privacy.php:12
|
||||
msgid "ShipStation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:23
|
||||
msgid "ShipStation allows you to retrieve & manage orders, then print labels & packing slips with ease."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:108
|
||||
msgid "ShipStation logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:112
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: ShipStation URL
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:118
|
||||
msgid "To begin printing shipping labels with ShipStation head over to <a class=\"shipstation-external-link\" href=\"%s\" target=\"_blank\">ShipStation.com</a> and log in or create a new account."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: ShipStation Auth Key
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:136
|
||||
msgid "After logging in, add a selling channel for WooCommerce and use your Auth Key (<code>%s</code>) to connect your store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:143
|
||||
msgid "Once connected you're good to go!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: ShipStation plugin settings URL, %2$s: ShipStation
|
||||
#. documentation URL
|
||||
|
||||
#: includes/class-wc-shipstation-integration.php:150
|
||||
msgid "You can find other settings for this extension <a href=\"%1$s\">here</a> and view the documentation <a href=\"%2$s\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:14
|
||||
msgid "WooCommerce ShipStation Order Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:16
|
||||
msgid "WooCommerce ShipStation Data"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: URL to documentation
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:50
|
||||
msgid "By using this extension, you may be storing personal data or sharing data with an external service. <a href=\"%s\" target=\"_blank\">Learn more about how this works, including what you may want to include in your privacy policy.</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:73
|
||||
msgid "Orders"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:77
|
||||
msgid "ShipStation tracking provider"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:81
|
||||
msgid "ShipStation tracking number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:85
|
||||
msgid "ShipStation date shipped"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-shipstation-privacy.php:161
|
||||
msgid "ShipStation Order Data Erased."
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:32
|
||||
msgid "Authentication Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:33
|
||||
msgid "Copy and paste this key into ShipStation during setup."
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:36
|
||||
msgid "This is the <code>Auth Key</code> you set in ShipStation and allows ShipStation to communicate with your store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:43
|
||||
msgid "Export Order Statuses…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:48
|
||||
msgid "Define the order statuses you wish to export to ShipStation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:51
|
||||
msgid "Select Order Statuses"
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:55
|
||||
msgid "Shipped Order Status…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:58
|
||||
msgid "Define the order status you wish to update to once an order has been shipping via ShipStation. By default this is \"Completed\"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:63
|
||||
msgid "Logging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:64
|
||||
msgid "Enable Logging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/data/data-settings.php:66
|
||||
msgid "Log all API interations."
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:3
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:5
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:9
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:10
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:14
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:6
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:10
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:11
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:16
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:3
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:5
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:9
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:10
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:14
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:3
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:5
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:9
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:10
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:14
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:3
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:5
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:9
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:10
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:14
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:3
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:5
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:9
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:10
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:14
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:6
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:10
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:11
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:16
|
||||
msgid "Hello World"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:6
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:11
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:16
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:5
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:7
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:12
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:17
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:6
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:11
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:16
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:6
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:11
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:16
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:6
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:11
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:16
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:6
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:11
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:16
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:5
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:7
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:12
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:17
|
||||
msgctxt "verb"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:20
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:24
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:21
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:25
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:20
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:24
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:20
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:24
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:20
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:24
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:20
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:24
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/plurals.php:3
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/plurals.php:8
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/plurals.php:15
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:21
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:25
|
||||
msgid "%d apple"
|
||||
msgid_plural "%d apples"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:21
|
||||
#: node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:25
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:22
|
||||
#: node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:26
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:21
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:25
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:21
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:25
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:21
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:25
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:25
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/plurals.php:4
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/plurals.php:9
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/plurals.php:16
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:22
|
||||
#: node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:26
|
||||
msgctxt "noun, job positions"
|
||||
msgid "%d post"
|
||||
msgid_plural "%d posts"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/basic-theme/exclude/file.php:3
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/plugin-include/plugin-include.php:6
|
||||
msgid "Exclude"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/plugin-include/include/file.php:2
|
||||
msgid "Include"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/add-domain.php:2
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:2
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:3
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:4
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-domains.php:2
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-domains.php:3
|
||||
msgid "String"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:6
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:7
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:8
|
||||
msgctxt "a string"
|
||||
msgid "String"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:9
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:10
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-all-domains.php:11
|
||||
msgid "1 Star"
|
||||
msgid_plural "%s Stars"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: A single line translators comment.
|
||||
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/translator-comments/translator-comments.php:7
|
||||
msgid "A"
|
||||
msgstr ""
|
||||
|
||||
#. translators: A multiline translators comment.
|
||||
|
||||
#: node_modules/grunt-wp-i18n/test/fixtures/translator-comments/translator-comments.php:15
|
||||
msgid "B"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s WC download URL link.
|
||||
|
||||
#: woocommerce-shipstation.php:28
|
||||
msgid "Shipstation requires WooCommerce to be installed and active. You can download %s here."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-shipstation.php:98
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-shipstation.php:99
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-shipstation.php:100
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce - ShipStation Integration"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://woocommerce.com/products/shipstation-integration/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://woocommerce.com/"
|
||||
msgstr ""
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/wp-link-bio/change_log/changelog.txt
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/wp-link-bio/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
= Changelog archive =
|
||||
|
||||
This is an archive of older changelog entries. Most recent entries are maintained in readme.txt
|
||||
|
||||
= 1.2.0 =
|
||||
|
||||
* WordPress repository release. Yay! :)
|
||||
|
||||
= 1.1.1 =
|
||||
|
||||
* New features
|
||||
* Added Freemius integration
|
||||
* Added dropdown to select landing page
|
||||
* Added read-only field to display Link URL
|
||||
* Added copy link button to make easier to copy Link URL
|
||||
* Added WP Media uploader integration to add profile or logo pictures
|
||||
* Added WP Color Picker integration to background and link colors
|
||||
* Added English Translation (default)
|
||||
|
||||
= 1.1.0 =
|
||||
|
||||
* New features
|
||||
* Changed title of page from site name to page title
|
||||
|
||||
* Bug fixes
|
||||
* Removed sticky posts to match the number of posts displayed in grid style
|
||||
* Changed UTM Source to 'instagram' (lowercase) and UTM Medium to 'post'
|
||||
* Fixed first submenu item label on dashboard
|
||||
|
||||
= 1.0.0 =
|
||||
|
||||
* Initial beta release.
|
||||
@@ -0,0 +1,65 @@
|
||||
# Copyright (C) 2016 Media Library Categories
|
||||
# This file is distributed under the same license as the Media Library Categories package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Media Library Categories 1.7\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-media-library-"
|
||||
"categories\n"
|
||||
"POT-Creation-Date: 2018-11-29 22:05+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: Poedit 2.1.1\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: index.php:91
|
||||
msgid ""
|
||||
"Thank you for using the <strong>Media Library Categories</strong> plugin."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:92
|
||||
msgid ""
|
||||
"By default the WordPress Media Library uses the same categories as "
|
||||
"WordPress does (such as in posts & pages).<br />If you want to use "
|
||||
"separate categories for the WordPress Media Library take a look at our <a "
|
||||
"href=\"https://wordpress.org/plugins/wp-media-library-categories/#faq\" "
|
||||
"target=\"_blank\">Frequently asked questions</a>."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:329 index.php:340 index.php:607
|
||||
msgid "View all categories"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:368 index.php:369 index.php:522
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:373
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:379
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:384 index.php:385
|
||||
msgid "Remove all categories"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:506
|
||||
msgid "Category changes are saved."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:523
|
||||
msgid "Try Media Library Categories Premium today - 100% money back guarantee"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:523
|
||||
msgid "Try Premium Version"
|
||||
msgstr ""
|
||||
969
spec/fixtures/dynamic_finders/plugin_version/wp-rss-aggregator/change_log/CHANGELOG.md
vendored
Normal file
969
spec/fixtures/dynamic_finders/plugin_version/wp-rss-aggregator/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,969 @@
|
||||
# Change log
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [4.13.2] - 2019-05-14
|
||||
### Added
|
||||
* A custom Twig extension for WordPress-based i18n.
|
||||
|
||||
### Changed
|
||||
* Now correctly requiring WordPress version 4.8 or later.
|
||||
* Improved the JS architecture to allow addons to extend the UI.
|
||||
* The deactivation poll will now be shown only 50% of the time, randomly.
|
||||
|
||||
### Fixed
|
||||
* The time ago format for the list template was not respecting the WordPress timezone setting.
|
||||
* HTML in log messages were breaking the Debugging page.
|
||||
* The feed items were not being explicitly sorted, which could lead to unsorted items.
|
||||
|
||||
## Removed
|
||||
* Removed the polyfill for the `gettext()` function.
|
||||
|
||||
## [4.13.1] - 2019-04-30
|
||||
### Changed
|
||||
* Disabled Twig cache due to tmp permission issues and false-positive suspicious file reporting by hosts.
|
||||
* The list template's pagination option is now set to disabled by default, matching previous versions.
|
||||
|
||||
### Fixed
|
||||
* Re-added missing HTML classes in the list template that had broken user custom CSS styles.
|
||||
* Added a polyfill for the `gettext()` function for sites that don't have the PHP `gettext` extension enabled.
|
||||
* Re-added a function that was removed in v4.13, and marked it as deprecated.
|
||||
* Fixed feed item dates not using the site's timezone.
|
||||
* Fixed styles for the legacy rendering system used by the Excerpts & Thumbnails addon.
|
||||
|
||||
## [4.13] - 2019-04-24
|
||||
### Added
|
||||
* Introduced feed templates.
|
||||
* Introduced a WP RSS Aggregator Gutenberg block.
|
||||
* Brand new debug log and logging system that stores logs in the database.
|
||||
* Items can now be added to the Blacklist manually.
|
||||
|
||||
### Changed
|
||||
* Refactored a lot of legacy code over to the new modular system.
|
||||
* General display settings have been moved to the "Default" template type.
|
||||
* Reorganized the general plugin settings. Advanced options are now under an advanced settings section.
|
||||
* Removed the "Add New" menu item from the RSS Aggregator menu.
|
||||
* The feed sources page now updates every 1 second.
|
||||
* Updated the TinyMCE dialog options for inserting a shortcode on a page or post (Classic Editor).
|
||||
* Updated administrator and editor role capabilities, fixing various permission bugs.
|
||||
* Updated a lot of setting descriptions and tooltips.
|
||||
* The help support beacon is now enabled by default.
|
||||
|
||||
### Fixed
|
||||
* Import errors no longer "freeze" feed sources in an infinite importing state.
|
||||
* Some import errors would not be logged due to script timeout or execution errors.
|
||||
* Feed to Post was not able to show feed items in the shortcode.
|
||||
* Deprecation notices on PHP 7.3.
|
||||
* The "Force feed" option was not properly being applied to feed sources.
|
||||
* A bug that caused perfectly good RSS feeds to trigger gzip errors.
|
||||
* The "Delete permanently & blacklist" row action was appearing for non-feed-item post types.
|
||||
|
||||
### Removed
|
||||
* The notice that asks users to leave a review was removed due to various bugs.
|
||||
|
||||
## [4.12.3] - 2019-04-01
|
||||
### Fixed
|
||||
* Fixed an issue with Feed to Post not being able to show feed items in the shortcode.
|
||||
* Fixed deprecation notices on PHP 7.3.
|
||||
|
||||
## [4.12.2] - 2019-03-26
|
||||
### Fixed
|
||||
* Fixed an admin capability bug that disallowed admin users from fetching feed items.
|
||||
|
||||
## [4.12.1] - 2019-02-27
|
||||
### Added
|
||||
* Added a modal with an optional poll when the plugin is deactivated.
|
||||
|
||||
### Changed
|
||||
* Improved the core plugin's on-boarding process for brand new users.
|
||||
* The timeout for the truncating posts hook has been extended.
|
||||
|
||||
### Fixed
|
||||
* Fixed the "Sorted" error appearing constantly in the debug log.
|
||||
* Fixed PHP warnings appearing on WordPress multisite.
|
||||
* Fixed PHP notice appearing on Feed Items page.
|
||||
* Fixed strict standards notice appearing on settings import.
|
||||
|
||||
## [4.12] - 2019-01-29
|
||||
### Added
|
||||
* The plugin now checks if its running on PHP 5.3.9, and deactivates itself when not.
|
||||
* Added message informing users that v4.13 will drop support for PHP 5.3.
|
||||
* Added an introduction page for new plugin users.
|
||||
|
||||
### Changed
|
||||
* Changed protocol for all links to HTTPS wherever necessary or applicable.
|
||||
|
||||
### Removed
|
||||
* Disabled the welcome page on activation and updates.
|
||||
|
||||
## [4.11.4] - 2018-12-11
|
||||
### Added
|
||||
* Added handling of lifetime licenses.
|
||||
|
||||
### Changed
|
||||
* License renewal link and expiry are not shown if they are not applicable.
|
||||
|
||||
## [4.11.3] - 2018-05-23
|
||||
### Changed
|
||||
* Updated Help & Support page.
|
||||
|
||||
## [4.11.2] - 2017-09-18
|
||||
### Added
|
||||
* Added 2 new general settings for item import order and per-import limit.
|
||||
|
||||
### Changed
|
||||
* Cosmetic and documentation improvements.
|
||||
|
||||
## [4.11.1] - 2017-03-07
|
||||
### Fixed
|
||||
* Fixed bug that caused minor publishing controls to be hidden on unrelated Edit screens.
|
||||
|
||||
## [4.11] - 2017-03-06
|
||||
### Changed
|
||||
* Enhanced Licenses page so as to make the [Enter] key toggle license activation.
|
||||
* Enhanced architecture by using a DI container.
|
||||
* Enhanced admin notifications by refactoring them to use the same mechanism.
|
||||
* Enhanced admin notifications by making all of them dismissible.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug with lifetime licenses showing expiry notices.
|
||||
* Fixed bug with being able to submit form on Licenses page.
|
||||
* Fixed bug with empty saved license key causing PHP notice, and not triggering reminder notification.
|
||||
* Fixed bug with saved but inactive licenses not triggering reminder notification.
|
||||
* Fixed bug with minified assets not being served by default.
|
||||
* Fixed bug with cached admin assets being served even after update.
|
||||
* Fixed bug with admin notifications displayed on unrelated pages not being dismissible.
|
||||
|
||||
## [4.10] - 2016-12-29
|
||||
### Added
|
||||
* Added a per-feed-source "Link Source" option.
|
||||
* Added a per-feed-source "Feed Request User Agent" option.
|
||||
* Now using Composer!
|
||||
* Now using Phing!
|
||||
* Added RegEx HTML Encodifier.
|
||||
* Added integration with Diagnostics plugin, and tests.
|
||||
* Added "Leave a Review" notification.
|
||||
|
||||
### Changed
|
||||
* The "Add New" button no longer appears for feed items.
|
||||
* Logs are now created in `wp-content/log/wprss`, and are named more descriptively.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug with feed error output breaking tooltips on "Feed Sources" page.
|
||||
* Fixed bug with nonces on the "Feed Sources" page that broke some source actions.
|
||||
* Fixed problem with image cache filenames being too long.
|
||||
* Fixed problem with permalink URLs sometimes being URL-encoded.
|
||||
* Fixed problem with large logs causing OOM errors and breaking Debugging page.
|
||||
* Fixed conflict with function `unparse_url()`.
|
||||
* Fixed bug with `_getDataOrConst()` not retrieving single value.
|
||||
* Fixed future incompatibility with `class-feed.php` for WP 4.7+.
|
||||
* Fixed conflicts with many JS scripts by only adding JS on our admin pages.
|
||||
* Fixed conflicts with some classes by loading only valid root namespace components.
|
||||
* Fixed PHP warning related to retrieving unique titles.
|
||||
|
||||
## [4.9.1] - 2016-08-01
|
||||
### Changed
|
||||
* Changed copyright and other info in plugin header.
|
||||
|
||||
## [4.9] - 2016-06-14
|
||||
### Changed
|
||||
* Enhanced: Visual improvements.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Potential security vulnerability related to triggering feed update.
|
||||
* Fixed bug: Error output on Feed Sources list is trimmed and cannot break the page layout.
|
||||
* Fixed bug: Certain notices could not be dismissed.
|
||||
* Fixed bug: Word trimming didn't always trim correctly with HTML.
|
||||
|
||||
## [4.8.2] - 2016-02-22
|
||||
### Changed
|
||||
* Enhanced: Users can now override useragent sent with feed requests.
|
||||
* Enhanced: Improvements to plugin updating system.
|
||||
* Enhanced: Readme updated.
|
||||
* Enhanced: "Open link behaviour" option's internal handling has been improved.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Interface methods used to conflict, causing fatal error on activation.
|
||||
* Fixed bug: Empty feed response used to cause misleading error message in log.
|
||||
|
||||
## [4.8.1] - 2016-02-02
|
||||
### Changed
|
||||
* Enhanced: Visual improvements.
|
||||
* Enhanced: Included new Object Oriented code.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Some exceptions used to cause fatal errors.
|
||||
* Fixed bug: Requests made by image caching used to always have an infinite timeout.
|
||||
* Fixed bug: Licensing algorithm used to use constants of inactive plugins, causing fatal error.
|
||||
|
||||
## [4.8] - 2015-12-30
|
||||
### Changed
|
||||
* Enhanced: Major licensing system improvements.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Licensing notices will now be displayed again.
|
||||
|
||||
## [4.7.8] - 2015-11-18
|
||||
### Changed
|
||||
* Enhanced: Added autoloading and refactored licensing.
|
||||
* Enhanced: Added button to download error log.
|
||||
* Enhanced: Cosmetic changes and fixes.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Sticky posts no longer get deleted when truncating, unless imported from a feed source.
|
||||
|
||||
## [4.7.7] - 2015-10-19
|
||||
### Changed
|
||||
* Enhanced: Optimized checking for plugin updates.
|
||||
|
||||
## [4.7.6] - 2015-10-07
|
||||
### Changed
|
||||
* Enhanced: Feeds that fail to validate due to whitespace at the beginning are now supported by the plugin.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Undefined variables in the System Info section in the Debugging page.
|
||||
* Fixed bug: Add-on license expiration notices could not be dismissed.
|
||||
|
||||
## [4.7.5] - 2015-09-02
|
||||
### Changed
|
||||
* Enhanced: Licensing errors will be output to debug log.
|
||||
* Enhanced: Improved compatibility with plugins that allow AJAX searching in the backend.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: error related to undefined `ajaxurl` JS variable gone from frontend.
|
||||
|
||||
### Removed
|
||||
* Usage tracking now disabled.
|
||||
|
||||
## [4.7.4] - 2015-08-20
|
||||
### Changed
|
||||
* Requirement: WordPress 4.0 or greater now required.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug in image caching
|
||||
* Fixed bug in admin interface due to incorrectly translated IDs
|
||||
|
||||
## [4.7.3] - 2015-08-04
|
||||
### Added
|
||||
* Core now implements an image cache logic.
|
||||
* Russian translation added.
|
||||
* Google Alerts permalinks are now normalized.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Add-ons on the "Add-ons" page now have an installed-but-inactive status.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Inline help (tooltips) translations now work.
|
||||
* Fixed bug: Link to the Feed to Post add-on on the welcome page is no longer broken.
|
||||
|
||||
## [4.7.2] - 2015-06-30
|
||||
### Changed
|
||||
* Enhanced: Copyright updated.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Word trimming no longer adds extra closing tags at the end.
|
||||
* Fixed bug: Presence of `idna_convert` class no longer causes infinite redirects on some servers.
|
||||
* Fixed bug: Warning of unterminated comment no longer thrown in PHP 5.5.
|
||||
* Fixed bug: Added default value for "Unique Titles" option.
|
||||
* Fixed bug: Having a the port number specified with the database host no longer causes issues with the `mysqli` adapter in System Info on some servers.
|
||||
* Fixed bug: Nested options of inline help controller no longer cause a fatal error.
|
||||
* Fixed bug: Notices will no longer be displayed during rendering of feed items due to absence of required default values.
|
||||
|
||||
## [4.7.1] - 2015-04-23
|
||||
### Fixed
|
||||
* Fixed bug: No warning will be thrown when fetching feeds.
|
||||
|
||||
## [4.7] - 2015-04-21
|
||||
### Added
|
||||
* Optionally import only items with titles that don't already exist.
|
||||
* Added support for multibyte strings in some places.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Accessing feeds over HTTPS is now possible.
|
||||
* Enhanced: Increased JS compatibility with other plugins.
|
||||
* Enhanced: Increased UI support for mobile devices.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Having no mysqli extension no longer causes an error to appear in the debug info.
|
||||
* Fixed bug: Saving an empty license key no longer results in a warning.
|
||||
|
||||
## [4.6.13] - 2015-03-20
|
||||
### Fixed
|
||||
* Fixed bug: The "Force feed" option wasn't being correctly used.
|
||||
|
||||
## [4.6.12] - 2015-03-09
|
||||
### Fixed
|
||||
* Fixed bug: The "Force feed" option was being removed by the Feed to Post add-on.
|
||||
|
||||
## [4.6.11] - 2015-03-04
|
||||
### Changed
|
||||
* Enhanced: The Help page now includes a support form if a premium add-on is detected.
|
||||
* Enhanced: Updated some translations for admin options.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Help tooltips are now optimized for iPad screens.
|
||||
* Fixed bug: Errors on the licensing page when a license code has not yet been entered.
|
||||
|
||||
## [4.6.10] - 2015-02-10
|
||||
### Added
|
||||
* Markdown library added. Changelog now read from readme.
|
||||
|
||||
### Changed
|
||||
* Enhanced: AJAX license activation.
|
||||
* Enhanced: License form more reliable.
|
||||
* Enhanced: license-related UI improvements
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Saving license keys not longer triggers error in some cases.
|
||||
|
||||
## [4.6.9] - 2015-01-21
|
||||
### Changed
|
||||
* Enhanced: Admin user will now be warned about invalid or expiring licenses.
|
||||
* Enhanced: Admin notices logic centralized in this plugin.
|
||||
|
||||
### Fixed
|
||||
* Fixed: Multiple small-scale security vulnerabilities.
|
||||
* Fixed: Ampersand in feed URL no longer causes the product of generated feeds to be invalidated by W3C Validator.
|
||||
|
||||
## [4.6.8] - 2015-01-07
|
||||
### Changed
|
||||
* Enhanced: Added more logging during feed importing.
|
||||
* Enhanced: Irrelevent metaboxes added by other plugins are now removed from the Add/Edit Feed Source page.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Valid feed URLS were being invalidated.
|
||||
* Fixed bug: The Blacklist feature was being hidden when the Feed to Post add-on was enabled.
|
||||
* Fixed bug: Patched a vulnerability where any user on the site can issue a feed fetch.
|
||||
* Fixed bug: The "Activate" and "Pause" actions are not shown in the bulk actions dropdown in WordPress v4.1.
|
||||
|
||||
## [4.6.7] - 2014-12-17
|
||||
### Changed
|
||||
* Enhanced: Some minor interface updates.
|
||||
* Enhanced: Added filters for use by the premium add-ons.
|
||||
|
||||
## [4.6.6] - 2014-12-06
|
||||
### Added
|
||||
* Added output layouts for feed sources and feed items.
|
||||
* Added time limit extending to prevent script from exhausting its execution time limit while importing.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Updated EDD updater class to version 1.5.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: The "Delete and Re-import" button was deleting items but not re-importing.
|
||||
* Fixed bug: Non-object errors when a feed source is deleted while importing.
|
||||
|
||||
## [4.6.5] - 2014-11-17
|
||||
### Changed
|
||||
* Enhanced: Improved the logging.
|
||||
* Enhanced: Improved the licensing fields.
|
||||
* Enhanced: Updated the EDD updater class to the latest version.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Small random error when viewing the licenses page.
|
||||
|
||||
## [4.6.4] - 2014-11-10
|
||||
### Changed
|
||||
* Enhanced: Added filters to the custom feed.
|
||||
* Enhanced: Updated some styles to improve the user interface.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: The "Remove selected from Blacklist" button had no nonce associated with it.
|
||||
* Fixed bug: The Blacklist menu entry was not always being shown.
|
||||
|
||||
## [4.6.3] - 2014-11-3
|
||||
### Changed
|
||||
* Enhanced: Re-added the "Add New" link in the plugin's menu.
|
||||
* Enhanced: Improved error logging.
|
||||
* Enhanced: Bulk actions in the Feed Sources page are now also included in the bottom dropdown menu.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Add-on updater was prone to conflicts. Now enclosed in an action.
|
||||
* Fixed bug: The Full Text RSS Feeds add-on was not showing as active in the "Add-ons" page.
|
||||
* Fixed bug: Broken links in the "Add-ons" page, to add-on pages on our site.
|
||||
|
||||
## [4.6.2] - 2014-10-15
|
||||
### Added
|
||||
* Added a new filter to modify the text shown before author names.
|
||||
* Added better debug logging.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Improved plugin responsiveness.
|
||||
* Enhanced: Updated some help text in tooltips with better explainations and added clarity.
|
||||
* Enhanced: Optimized some old SQL queries.
|
||||
|
||||
### Changed
|
||||
* Fixed bug: Licenses were not showing as active, even though they were activated.
|
||||
|
||||
## [4.6.1] - 2014-10-06
|
||||
### Changed
|
||||
* Enhanced: Improved internationalization in the plugin, for better translations.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: If the feed source age limit was left empty, the global setting was used instead of ignoring the limit.
|
||||
|
||||
## [4.6] - 2014-09-22
|
||||
### Changed
|
||||
* Enhanced: Improved the user interface, with better responsiveness and tooltips.
|
||||
* Enhanced: Removes the ID column. The ID is now shown fixed in row actions.
|
||||
* Enhanced: Feed Preview indicates if feed items have no dates.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: If a feed item has no date, the date and time it was imported is used.
|
||||
|
||||
## [4.5.3] - 2014-09-15
|
||||
### Changed
|
||||
* Added filter to allow adding RSS feeds to the head of your site's pages for CPTs.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Columns in the feed sources table are now sortable.
|
||||
* Enhanced: Removed the ID column in the feed sources table. The ID has been moved as a row action.
|
||||
* Enhanced: Improved various interface elements.
|
||||
* Enhanced: Better responsiveness for smaller screen.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: The importing spinning icon would get stuck and spin for a very long time.
|
||||
* Fixed bug: Removed an old description meta field.
|
||||
* Fixed bug: Plugin was not removing all scheduled cron jobs when deactivated.
|
||||
|
||||
## [4.5.2] - 2014-09-09
|
||||
### Changed
|
||||
* Enhanced: Optimized plugin for WordPress 4.0.
|
||||
* Enhanced: Improved template and added filters for add-on hooking.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Editor toolbar visible over the WP RSS shortcode dialog.
|
||||
|
||||
## [4.5.1] - 2014-08-26
|
||||
### Fixed
|
||||
* Fixed bug: Last import feed item count stays at zero.
|
||||
* Fixed bug: Datetime::setTimestamp error when using PHP 5.2 or earlier.
|
||||
* Fixed bug: The display limit was not working.
|
||||
* Fixed bug: Minor bug in licensing.
|
||||
|
||||
## [4.5] - 2014-08-25
|
||||
### Added
|
||||
* New Feature: Bulk importer allows you to create multiple feed sources at once.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Improved OPML importer with added hooks.
|
||||
* Enhanced: Centralized add-on licensing, fixing multiple bugs.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Undefined `feed_limit` errors when using the shortcode.
|
||||
|
||||
## [4.4.4] - 2014-08-19
|
||||
### Fixed
|
||||
* Fixed bug: Errors when using older PHP versions 5.3 or lower.
|
||||
|
||||
## [4.4.3] - 2014-08-19
|
||||
### Fixed
|
||||
* Fixed bug: Errors when using older PHP versions 5.3 or lower.
|
||||
|
||||
## [4.4.2] - 2014-08-19
|
||||
### Fixed
|
||||
* Fixed bug: Errors when using older PHP versions 5.3 or lower.
|
||||
|
||||
## [4.4.1] - 2014-08-18
|
||||
### Changed
|
||||
* Enhanced: Various improvements to the plugin interface and texts.
|
||||
* Enhanced: Moved the restore default settings button farther down the Debugging page, to avoid confusion with the delete button.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Feed item dates were not being adjusted to the timezone when using a GMT offset.
|
||||
* Fixed bug: Feed item dates are now adjusted according to daylight savings time.
|
||||
|
||||
## [4.4] - 2014-08-11
|
||||
### Added
|
||||
* Blacklist - delete items and blacklist them to never import them again.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Added a button in the Debugging page to reset the plugin settings to default.
|
||||
* Enhanced: WordPress Yoast SEO metaboxes and custom columns will no longer appear.
|
||||
|
||||
## [4.3.1] - 2014-08-08
|
||||
### Changed
|
||||
* Enhanced: Better wording on settings page.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: The Links Behaviour option in the settings was not working.
|
||||
* Fixed bug: The wrong feed items were being shown for some sources when using the "View Items" row action.
|
||||
|
||||
## [4.3] - 2014-08-04
|
||||
### Added
|
||||
* New Feature: Feed items now also import authors.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Custom feed is now in RSS 2.0 format.
|
||||
* Enhanced: Improved the display template for feed items.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Custom feed was not working in Firefox.
|
||||
* Fixed bug: Some feed items were showing items from another feed source.
|
||||
* Fixed bug: The feed limit in the global settings was not working.
|
||||
|
||||
## [4.2.3] - 2014-07-29
|
||||
### Changed
|
||||
* Enhanced: Added an option to choose between the current pagination type, and numbered pagination.
|
||||
* Enhanced: The Feed Preview now also shows the total number of items in the feed.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: A PHP warning error was being shown in the System Info.
|
||||
* Fixed bug: Language files were not always being referenced correctly.
|
||||
* Fixed bug: Manually fetching a feed fails if the feed is scheduled to update in the next 10 minutes.
|
||||
* Fixed bug: Bing RSS feeds were importing duplicates on every update.
|
||||
|
||||
## [4.2.2] - 2014-07-23
|
||||
### Changed
|
||||
* Enhanced: Facebook page feeds are now changed into RSS 2.0 feeds, rather than Atom 1.0 feeds.
|
||||
* Enhanced: Improved live updating performace on the Feed Sources page.
|
||||
|
||||
## [4.2.1] - 2014-07-17
|
||||
### Changed
|
||||
* Enhanced: Feed Sources page is now more responsive.
|
||||
|
||||
## [4.2] - 2014-07-17
|
||||
### Added
|
||||
* Can now view each feed source's imported feed items separate from other feed sources' feed items.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Major visual update to the Feed Sources page with new live updates.
|
||||
* Enhanced: The custom feed now includes the feed source.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Google News feeds were importing duplicate items on every update.
|
||||
* Fixed bug: Multiple minor bug fixes with old filters.
|
||||
|
||||
## [4.1.6] - 2014-06-28
|
||||
### Fixed
|
||||
* Fixed bug: Results returned by wprss_get_feed_items_for_source() will no longer be affected by filters.
|
||||
* Fixed bug: Charset issue in titles
|
||||
|
||||
## [4.1.5] - 2014-06-19
|
||||
### Changed
|
||||
* Enhanced: The Feed Sources table now indicates which feed sources encountered errors during the last import.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Feed titles were not being decoded for HTML entities.
|
||||
|
||||
## [4.1.4] - 2014-05-16
|
||||
### Changed
|
||||
* Enhanced: Minor improvements to feed importing and handling.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: HTML entities were not being decoded in feed item titles.
|
||||
|
||||
## [4.1.3] - 2014-04-28
|
||||
### Changed
|
||||
* Enhanced: Added a force feed option, for valid RSS feeds with incorrect header content types.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: HTML entities in feed item titles are now being decoded.
|
||||
|
||||
## [4.1.2] - 2014-04-22
|
||||
### Changed
|
||||
* Enhanced: Improved the custom feed, by allowing a custom title.
|
||||
* Enhanced: Improved shortcode, by adding the "pagination" parameter.
|
||||
* Enhanced: Modified a filter to fix some bugs in the add-ons.
|
||||
|
||||
## [4.1.1] - 2014-04-09
|
||||
### Changed
|
||||
* Enhanced: Tracking notices only appear for admin users.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Auto Feed Discovery was not working.
|
||||
|
||||
## [4.1] - 2014-04-03
|
||||
### Added
|
||||
* New Feature: Feed items can now link to enclosure links in the feed.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Added a filter to allow add-ons to modify feed item queries.
|
||||
|
||||
## [4.0.9] - 2014-03-27
|
||||
### Changed
|
||||
* Enhanced: Added a filter to modify the feeds template.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Nested lists in feeds template.
|
||||
|
||||
## [4.0.8] - 2014-03-20
|
||||
### Fixed
|
||||
* Fixed bug: Using the shortcode makes the comments section always open.
|
||||
|
||||
## [4.0.7] - 2014-03-08
|
||||
### Fixed
|
||||
* Fixed bug: The plugin prevented uploading of header images.
|
||||
|
||||
## [4.0.6] - 2014-03-05
|
||||
### Fixed
|
||||
* Fixed bug: Hook change in last version suspected reason for some installations having non-updated feed items.
|
||||
|
||||
## [4.0.5] - 2014-03-03
|
||||
### Added
|
||||
* New Feature: Time ago added as an option.
|
||||
|
||||
### Changed
|
||||
* Enhanced: The plugin now allows the use of RSS and Atom feeds that do not specify the correct MIME type.
|
||||
* Enhanced: Better performance due to better hook usage.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Facebook page feed URL conversion was not being triggered for new feed sources.
|
||||
* Fixed bug: Styles fix for pagination.
|
||||
* Fixed bug: Removed empty spaces in logging.
|
||||
|
||||
## [4.0.4] - 2014-02-17
|
||||
### Changed
|
||||
* Enhanced: Added Activate/Pause bulk actions in the Feed Sources page.
|
||||
* Enhanced: Feed Sources page table has been re-designed.
|
||||
* Enhanced: Logging is now site dependant on multisite.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Undefined display settings where appearing on the front end.
|
||||
|
||||
## [4.0.3] - 2014-02-12
|
||||
### Fixed
|
||||
* Fixed bug: The general setting for deleting feed items by age was not working.
|
||||
|
||||
## [4.0.2] - 2014-02-10
|
||||
### Changed
|
||||
* Enhanced: Added a filter to change the html tags allowed in feed item content.
|
||||
|
||||
## [4.0.1] - 2014-02-08
|
||||
### Changed
|
||||
* Fixed bug: Empty array of feed items bug caused importing problems.
|
||||
|
||||
## [4.0] - 2014-02-04
|
||||
### Changed
|
||||
* Enhanced: Improved some internal queries, for better performance.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Feed limits were not working properly.
|
||||
|
||||
## [3.9.9] - 2014-02-03
|
||||
### Changed
|
||||
* Enhanced: The custom feed can now be extended by add-ons.
|
||||
|
||||
## [3.9.8] - 2014-01-20
|
||||
### Fixed
|
||||
* Fixed bug: Removed excessive logging from Debugging Error Log.
|
||||
|
||||
## [3.9.7] - 2014-01-17
|
||||
### Fixed
|
||||
* Fixed bug: Bug in admin-debugging.php causing trouble with admin login
|
||||
|
||||
## [3.9.6] - 2014-01-17
|
||||
### Changed
|
||||
* Enhanced: Added error logging.
|
||||
|
||||
## [3.9.5] - 2014-01-02
|
||||
### Changed
|
||||
* Enhanced: Added a feed validator link in the New/Edit Feed Sources page.
|
||||
* Enhanced: The Next Update column also shows the time remaining for next update, for feed source on the global update interval.
|
||||
* Enhanced: The custom feed has been improved, and is now identical to the feeds displayed with the shortcode.
|
||||
* Enhanced: License notifications only appear on the main site when using WordPress multisite.
|
||||
* Enhanced: Updated Colorbox script to 1.4.33
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: The Imported Items column was always showing zero.
|
||||
* Fixed bug: Feed items not being imported with limit set to zero. Should be unlimited.
|
||||
* Fixed bug: Fat header in Feed Sources page
|
||||
|
||||
## [3.9.4] - 2013-12-24
|
||||
### Changed
|
||||
* Enhanced: Added a column in the Feed Sources page that shows the number of feed items imported for each feed source.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Leaving the delete old feed items empty did not ignore the delete.
|
||||
|
||||
## [3.9.3] - 2013-12-23
|
||||
### Fixed
|
||||
* Fixed bug: Fixed tracking pointer appearing on saving settings.
|
||||
|
||||
## [3.9.2] - 2013-12-21
|
||||
### Fixed
|
||||
* Fixed bug: Incorrect file include call.
|
||||
|
||||
## [3.9.1] - 2013-12-12
|
||||
### Changed
|
||||
* Enhanced: Improved date and time handling for imported feed items.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Incorrect values being shown in the Feed Processing metabox.
|
||||
* Fixed bug: Feed limits set to zero were causing feeds to not be imported.
|
||||
|
||||
## [3.9] - 2013-12-12
|
||||
### Added
|
||||
* New Feature: Feed sources can have their own update interval.
|
||||
* New Feature: The time remaining until the next update has been added to the Feed Source table.
|
||||
|
||||
## [3.8] - 2013-12-05
|
||||
### Added
|
||||
* New Feature: Feed items can be limited and deleted by their age.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Added utility functions for shorter filters.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: License codes were being erased when add-ons were deactivated.
|
||||
* Fixed bug: Some feed sources could not be set to active from the table controls.
|
||||
* Fixed bug: str_pos errors appear when custom feed url is left empty.
|
||||
* Fixed bug: Some options were producing undefined index errors.
|
||||
|
||||
## [3.7] - 2013-11-28
|
||||
### Added
|
||||
* New Feature: State system - Feed sources can be activated/paused.
|
||||
* New Feature: State system - Feed sources can be set to activate or pause themselves at a specific date and time.
|
||||
|
||||
### Changed
|
||||
* Enhanced: Added compatibility with nested outline elements in OPML files.
|
||||
* Enhanced: Admin menu icon image will change into a Dashicon, when WordPress is updated to 3.8 (Decemeber 2013).
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Custom Post types were breaking when the plugin is activated.
|
||||
|
||||
## [3.6.1] - 2013-11-17
|
||||
### Fixed
|
||||
* Fixed bug: Missing 2nd argument for wprss_shorten_title()
|
||||
|
||||
## [3.6] - 2013-11-16
|
||||
### Added
|
||||
* New Feature: Can set the maximum length for titles. Long titles get trimmed.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Fixed errors with undefined indexes for unchecked checkboxes in the settings page.
|
||||
* Fixed bug: Pagination on front static page was not working.
|
||||
|
||||
## [3.5.2] - 2013-11-11
|
||||
### Fixed
|
||||
* Fixed bug: Invalid feed source url was producing an Undefined method notice.
|
||||
* Fixed bug: Custom feed was producing a 404 page.
|
||||
* Fixed bug: Presstrends code firing on admin_init, opt-in implementation coming soon
|
||||
|
||||
## [3.5.1] - 2013-11-09
|
||||
### Changed
|
||||
* Enhanced: Increased compatibility with RSS sources.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Pagination not working on home page
|
||||
|
||||
## [3.5] - 2013-11-6
|
||||
### Added
|
||||
* New Feature: Can delete feed items for a particular source
|
||||
|
||||
### Changed
|
||||
* Enhanced: the 'Fetch feed items' row action for feed sources resets itself after 3.5 seconds.
|
||||
* Enhanced: The feed image is saved for each url.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Link to source now links to correct url. Previously linked to site's feed.
|
||||
|
||||
## [3.4.6] - 2013-11-1
|
||||
### Changed
|
||||
* Enhanced: Added more hooks to debugging page for the Feed to Post add-on.
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Uninitialized loop index
|
||||
|
||||
## [3.4.5] - 2013-10-30
|
||||
### Fixed
|
||||
* Bug Fix: Feed items were not being imported while the WPML plugin was active.
|
||||
|
||||
## [3.4.4] - 2013-10-26
|
||||
### Added
|
||||
* New feature: Pagination
|
||||
* New feature: First implementation of editor button for easy shortcode creation
|
||||
|
||||
### Changed
|
||||
* Enhanced: Feed items and sources don't show up in link manager
|
||||
* Enhanced: Included Presstrends code for plugin usage monitoring
|
||||
|
||||
## [3.4.3] - 2013-10-20
|
||||
### Added
|
||||
* Added suppress_filters in feed-display.php to prevent a user reported error
|
||||
|
||||
### Fixed
|
||||
* Removed anonymous functions for backwards PHP compatibility
|
||||
* Missing <li> in certain feed displays
|
||||
|
||||
## [3.4.2] - 2013-9-19
|
||||
### Changed
|
||||
* Enhanced: Added some hooks for Feed to Post compatibility
|
||||
* Enhanced: Moved date settings to a more appropriate location
|
||||
|
||||
## [3.4.1] - 2013-9-16
|
||||
### Fixed
|
||||
* Fixed Bug: Minor issue with options page - PHP notice
|
||||
|
||||
## [3.4] - 2013-9-15
|
||||
### Added
|
||||
* New Feature: Saving/Updating a feed source triggers an update for that source's feed items.
|
||||
* New Feature: Option to change Youtube, Vimeo and Dailymotion feed item URLs to embedded video players URLs
|
||||
* New Feature: Facebook Pages URLs are automatically detected and changed into Atom Feed URLs using FB's Graph
|
||||
|
||||
### Changed
|
||||
* Enhanced: Updated jQuery Colorbox library to 1.4.29
|
||||
|
||||
### Fixed
|
||||
* Fixed Bug: Some settings did not have a default value set, and were throwing an 'Undefined Index' error
|
||||
* Fixed Bug: Admin notices do not disappear immediately when dismissed.
|
||||
|
||||
## [3.3.3] - 2013-09-08
|
||||
### Fixed
|
||||
* Fixed bug: Better function handling on uninstall, should remove uninstall issues
|
||||
|
||||
## [3.3.2] - 2013-09-07
|
||||
### Added
|
||||
* New feature: Added exclude parameter to shortcode
|
||||
|
||||
### Changed
|
||||
* Enhanced: Added metabox links to documentation and add-ons
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Custom feed linking to post on user site rather than original source
|
||||
* Fixed bug: Custom post types issues when activitating the plugin
|
||||
|
||||
## [3.3.1] - 2013-08-09
|
||||
### Fixed
|
||||
* Fixed Bug: Roles and Capabilities file had not been included
|
||||
* Fixed Bug: Error on install, function not found
|
||||
|
||||
## [3.3] - 2013-08-08
|
||||
### Added
|
||||
* New feature: OPML importer
|
||||
* New feature: Feed item limits for individual Feed Sources
|
||||
* New feature: Custom feed URL
|
||||
* New feature: Feed limit on custom feed
|
||||
* New feature: New 'Fetch feed items' action for each Feed Source in listing display
|
||||
* New feature: Option to enable link to source
|
||||
|
||||
### Changed
|
||||
* Enhanced: Date strings now change according to locale being used (i.e. compatible with WPML)
|
||||
* Enhanced: Capabilities implemented
|
||||
* Enhanced: Feed Sources row action 'View' removed
|
||||
|
||||
### Fixed
|
||||
* Fixed Bug: Proxy feed URLs resulting in the permalink: example.com/url
|
||||
|
||||
## [3.2] - 2013-07-06
|
||||
### Fixed
|
||||
* New feature: Parameter to limit number of feeds displayed
|
||||
* New feature: Paramter to limit feeds displayed to particular sources (via ID)
|
||||
|
||||
### Changed
|
||||
* Enhanced: Better feed import handling to handle large number of feed sources
|
||||
|
||||
## [3.1.1] - 2013-06-06
|
||||
### Fixed
|
||||
* Fixed bug: Incompatibility with some other plugins due to function missing namespace
|
||||
|
||||
## [3.1] - 2013-06-06
|
||||
### Added
|
||||
* New feature: Option to set the number of feed items imported from every feed (default 5)
|
||||
* New feature: Import and Export aggregator settings and feed sources
|
||||
* New feature: Debugging page allowing manual feed refresh and feed reset
|
||||
|
||||
### Changed
|
||||
* Enhanced: Faster handling of restoring sources from trash when feed limit is 0
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Limiter on number of overall feeds stored not working
|
||||
* Fixed bug: Incompatibility issue with Foobox plugin fixed
|
||||
* Fixed bug: Duplicate feeds sometimes imported
|
||||
|
||||
## [3.0] - 2013-03-16
|
||||
### Added
|
||||
* New feature: Option to select cron frequency
|
||||
* New feature: Code extensibility added to be compatible with add-ons
|
||||
* New feature: Option to set a limit to the number of feeds stored (previously 50, hard coded)
|
||||
* New feature: Option to define the format of the date shown below each feed item
|
||||
* New feature: Option to show or hide source of feed item
|
||||
* New feature: Option to show or hide publish date of feed item
|
||||
* New feature: Option to set text preceding publish date
|
||||
* New feature: Option to set text preceding source of feed item
|
||||
* New feature: Option to link title or not
|
||||
* New feature: Limit of 5 items imported for each source instead of 10
|
||||
|
||||
### Changed
|
||||
* Requires: WordPress 3.3
|
||||
* Enhanced: Performance improvement when publishing * New feeds in admin
|
||||
* Enhanced: Query tuning for better performance
|
||||
* Enhanced: Major code rewrite, refactoring and inclusion of hooks
|
||||
* Enhanced: Updated Colorbox to v1.4.1
|
||||
* Enhanced: Better security implementations
|
||||
* Enhanced: Better feed preview display
|
||||
|
||||
### Fixed
|
||||
* Fixed bug: Deletion of items upon source deletion not working properly
|
||||
|
||||
## [2.2.3] - 2012-11-01
|
||||
### Fixed
|
||||
* Tab navigation preventing typing in input boxes
|
||||
* Feeds showing up in internal linking pop up
|
||||
|
||||
## [2.2.2] - 2012-10-30
|
||||
### Changed
|
||||
* Feeds showing up in site search results
|
||||
* Enhanced: Better tab button navigation when adding a new feed
|
||||
* Enhanced: Better guidance when a feed URL is invalid
|
||||
|
||||
## [2.2.1] - 2012-10-17
|
||||
### Fixed
|
||||
* Fixed bug: wprss_feed_source_order assumes everyone is an admin
|
||||
|
||||
## [2.2] - 2012-10-01
|
||||
### Added
|
||||
* Italian translation added
|
||||
|
||||
### Changed
|
||||
* Feed source order changed to alphabetical
|
||||
|
||||
### Fixed
|
||||
* Fixed bug - repeated entries when having a non-valid feed source
|
||||
* Fixed bug - all imported feeds deleted upon trashing a single feed source
|
||||
|
||||
## [2.1] - 2012-09-27* Now localised for translations
|
||||
* Fixed bug with date string
|
||||
* Fixed $link_before and $link_after, now working
|
||||
* Added backwards compatibility for wp_rss_aggregator() function
|
||||
|
||||
## [2.0] - 2012-09-21
|
||||
### Added
|
||||
* Limit of 15 items max imported for each source
|
||||
* Added install and upgrade functions
|
||||
* Added DB version setting
|
||||
* Feeds now fetched via Cron
|
||||
* Cron job to delete old feed items, keeps max of 50 items in DB
|
||||
* Ability to limit total number of feeds displayed
|
||||
* Feed source list sortable ascending or descending by name
|
||||
|
||||
### Changed
|
||||
* Now requires WordPress 3.2
|
||||
* Bulk of code rewritten and refactored
|
||||
* Updated colorbox to v1.3.20.1
|
||||
* Feed sources now stored as Custom Post Types
|
||||
|
||||
### Removed
|
||||
* Removed days subsections in feed display
|
||||
|
||||
### Fixed
|
||||
* Fixed issue of page content displaying incorrectly after feeds
|
||||
|
||||
## [1.1] - 2012-08-13
|
||||
### Added
|
||||
* Added top level menu
|
||||
* Added settings section
|
||||
* Ability to open in lightbox, new window or default browser behaviour
|
||||
* Ability to set links as follow or no follow
|
||||
|
||||
### Changed
|
||||
* Now requires WordPress 3.0
|
||||
* More flexible fetching of images directory
|
||||
* Code refactoring
|
||||
* Changes in file and folder structure
|
||||
* Using constants for oftenly used locations
|
||||
|
||||
## [1.0] - 2012-01-06
|
||||
* Initial release.
|
||||
@@ -0,0 +1,86 @@
|
||||
# Copyright (C) 2019 SMS Provider
|
||||
# This file is distributed under the same license as the SMS Provider package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SMS Provider 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/smsprovider\n"
|
||||
"POT-Creation-Date: 2019-06-25 18:42+0300\n"
|
||||
"PO-Revision-Date: 2019-06-25 18:45+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: inc/functions.php:15
|
||||
msgid "Please enter number and text message."
|
||||
msgstr "Lütfen alıcı telefon numarasını ve gönderilecek mesajı giriniz."
|
||||
|
||||
#: inc/load.php:49
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr "Bu sayfaya erişmek için yetkiniz yok."
|
||||
|
||||
#: inc/load.php:89
|
||||
msgid "Operator Settings"
|
||||
msgstr "Operatör Ayarları"
|
||||
|
||||
#: inc/load.php:94
|
||||
msgid "Select SMS Provider"
|
||||
msgstr "SMS Operatörünü Seçin"
|
||||
|
||||
#: inc/load.php:100
|
||||
msgid "Choose"
|
||||
msgstr "-Seçiniz-"
|
||||
|
||||
#: inc/load.php:106
|
||||
msgid "-No provider found-"
|
||||
msgstr "-Operatör Bulunamadı-"
|
||||
|
||||
#: inc/load.php:116
|
||||
msgid "Save Options"
|
||||
msgstr "Değişiklikleri Kaydet"
|
||||
|
||||
#: inc/load.php:124 inc/load.php:125
|
||||
msgid "SMS Provider"
|
||||
msgstr "SMS Gönderici"
|
||||
|
||||
#: inc/providers/Netgsm_Provider.php:57
|
||||
msgid "Netgsm User Code"
|
||||
msgstr "Netgsm Kullanıcı Kodu"
|
||||
|
||||
#: inc/providers/Netgsm_Provider.php:63
|
||||
msgid "Netgsm User Password"
|
||||
msgstr "Netgsm Kullanıcı Şifresi"
|
||||
|
||||
#: inc/providers/Netgsm_Provider.php:86
|
||||
msgid "User Code / Password error"
|
||||
msgstr "Kullanıcı kodu veya şifresi hatalı!"
|
||||
|
||||
#: inc/providers/Netgsm_Provider.php:90
|
||||
msgid "Netgsm Message Header"
|
||||
msgstr "Netgsm Mesaj Başlığı"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WP SMS Functions"
|
||||
msgstr "WP SMS Fonksiyonları"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/wp-sms-functions"
|
||||
msgstr "https://wordpress.org/plugins/wp-sms-functions"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Lets you use SMS functions in Wordpress. Like wp_mail()"
|
||||
msgstr ""
|
||||
"Bu eklenti ile Wordpress içerisinde SMS gönderim fonksiyonlarını "
|
||||
"kullanabilirsiniz. Yalnızca bir defa operatör ayarlarınızı yapmanız yeterli."
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "grilabs"
|
||||
msgstr "grilabs"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.gri.net"
|
||||
msgstr "https://www.gri.net"
|
||||
100
spec/fixtures/dynamic_finders/plugin_version/wp-whatsapp-chat/change_log/changelog.txt
vendored
Normal file
100
spec/fixtures/dynamic_finders/plugin_version/wp-whatsapp-chat/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
= 4.2.9 =
|
||||
* Fix. wordpress 4.2 compatibility
|
||||
|
||||
= 4.2.8 =
|
||||
* Fix. PHP compatibility issue
|
||||
|
||||
= 4.2.7 =
|
||||
* Fix. PHP compatibility issue
|
||||
|
||||
= 4.2.6 =
|
||||
* Fix. argument 2 for QLWAPP_Options::wac_options
|
||||
* Fix. wordpress 4.2 compatibility
|
||||
|
||||
= 4.2.5 =
|
||||
* Fix. domain text change to wp-whatsapp-chat
|
||||
|
||||
= 4.2.4 =
|
||||
* Fix. readme update
|
||||
|
||||
= 4.2.3 =
|
||||
* Fix. language fix
|
||||
|
||||
= 4.2.2 =
|
||||
* Fix. language fix
|
||||
|
||||
= 4.2.1 =
|
||||
* Fix. bad spelling
|
||||
|
||||
= 4.2.0 =
|
||||
* Fix. incompatibility with visual composer add ons
|
||||
|
||||
= 4.1.9 =
|
||||
* Fix. license market key
|
||||
|
||||
= 4.1.8 =
|
||||
* Fix. WhatsApp button bubble text empty
|
||||
* Fix. WhatsApp shortcode not working in desktop devices
|
||||
|
||||
= 4.1.7 =
|
||||
* Fix. WhatsApp delete contact
|
||||
|
||||
= 4.1.6 =
|
||||
* Fix. WhatsApp Android textarea closes on click
|
||||
* Fix. WhatsApp Button empty settings not saving
|
||||
|
||||
= 4.1.5 =
|
||||
* Fix. array to string conversion on first save
|
||||
* Fix. static method
|
||||
|
||||
= 4.1.4 =
|
||||
* Fix. WhatsApp Chat avatar js fixes
|
||||
|
||||
= 4.1.4 =
|
||||
* Fix. WhatsApp Chat avatar css fixes
|
||||
|
||||
= 4.1.3 =
|
||||
* Fix. WhatsApp Chat contacts missing
|
||||
* Fix. WhatsApp Chat rounded images
|
||||
|
||||
= 4.1.2 =
|
||||
* Fix. WhatsApp Chat button not open when box is disabled
|
||||
|
||||
= 4.1.1 =
|
||||
* Fix. undefined variable
|
||||
|
||||
= 4.1.0 =
|
||||
* Fix. WhatsApp Chat contact remove
|
||||
* Fix. WhatsApp Chat box disable
|
||||
* Fix. WhatsApp Chat button rounded disable
|
||||
* Fix. WhatsApp Chat button discreet link
|
||||
|
||||
= 4.0.0 =
|
||||
|
||||
* New. WhatsApp Chat button bubble layout
|
||||
* New. WhatsApp Chat button add or remove rounded corners
|
||||
* New. WhatsApp Chat button middle position
|
||||
* New. WhatsApp Chat button icon options
|
||||
* New. WhatsApp Chat button discreet link
|
||||
* New. WhatsApp Chat box to display contact
|
||||
* New. WhatsApp Chat box header message
|
||||
* New. WhatsApp Chat box footer message
|
||||
* New. WhatsApp Chat box contact name
|
||||
* New. WhatsApp Chat box contact phone
|
||||
* New. WhatsApp Chat box contact label
|
||||
* New. WhatsApp Chat box contact message
|
||||
* New. WhatsApp Chat box contact name
|
||||
* New. WhatsApp Chat show/hide in home search and 404 pages
|
||||
* New. WhatsApp Chat show/hide in taxonomies
|
||||
* New. WhatsApp Chat show/hide mobile devices
|
||||
* New. WhatsApp Chat show/hide desktop devices
|
||||
* Pro. WhatsApp Chat box multiple agents
|
||||
* Pro. WhatsApp Chat box chat for each agent
|
||||
* Pro. WhatsApp Chat color link
|
||||
* Pro. WhatsApp Chat color message
|
||||
* Pro. WhatsApp Chat color label
|
||||
* Pro. WhatsApp Chat color label
|
||||
* Pro. WhatsApp Chat color link
|
||||
* Pro. WhatsApp Chat color customizer integration
|
||||
* Pro. WhatsApp Chat button icons options
|
||||
* Pro. WhatsApp Chat show/hide in singular post types
|
||||
@@ -0,0 +1,431 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP24 Domain Check 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-07-21 15:26+0200\n"
|
||||
"PO-Revision-Date: 2019-07-21 15:27+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-wp24-options.php:26
|
||||
msgid "desired-domain"
|
||||
msgstr "wunschdomain"
|
||||
|
||||
#: includes/class-wp24-options.php:31
|
||||
msgid "check"
|
||||
msgstr "prüfen"
|
||||
|
||||
#: includes/class-wp24-options.php:32
|
||||
msgid "is available"
|
||||
msgstr "ist verfügbar"
|
||||
|
||||
#: includes/class-wp24-options.php:34
|
||||
msgid "is registered"
|
||||
msgstr "ist registriert"
|
||||
|
||||
#: includes/class-wp24-options.php:36
|
||||
msgid "error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: includes/class-wp24-options.php:38
|
||||
msgid "is invalid"
|
||||
msgstr "ist ungültig"
|
||||
|
||||
#: includes/class-wp24-options.php:40
|
||||
msgid "query limit reached"
|
||||
msgstr "Abfragelimit erreicht"
|
||||
|
||||
#: includes/class-wp24-options.php:42
|
||||
msgid "whois server unknown"
|
||||
msgstr "Whois Server unbekannt"
|
||||
|
||||
#: includes/class-wp24-settings.php:60 includes/class-wp24-settings.php:260
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: includes/class-wp24-settings.php:79
|
||||
msgid "Domain Name Field"
|
||||
msgstr "Domain Name Feld"
|
||||
|
||||
#: includes/class-wp24-settings.php:83 includes/class-wp24-settings.php:161
|
||||
msgid "Label"
|
||||
msgstr "Beschriftung"
|
||||
|
||||
#: includes/class-wp24-settings.php:95
|
||||
msgid "Placeholder"
|
||||
msgstr "Platzhalter"
|
||||
|
||||
#: includes/class-wp24-settings.php:107
|
||||
msgid "Width"
|
||||
msgstr "Breite"
|
||||
|
||||
#: includes/class-wp24-settings.php:117
|
||||
msgid "Pixel"
|
||||
msgstr "Pixel"
|
||||
|
||||
#: includes/class-wp24-settings.php:118
|
||||
msgid "Percent"
|
||||
msgstr "Prozent"
|
||||
|
||||
#: includes/class-wp24-settings.php:125
|
||||
msgid "Top-Level Domain (TLD) Input"
|
||||
msgstr "Top-Level Domain (TLD) Eingabe"
|
||||
|
||||
#: includes/class-wp24-settings.php:128
|
||||
msgid "Drop-Down List"
|
||||
msgstr "Drop-Down Liste"
|
||||
|
||||
#: includes/class-wp24-settings.php:129
|
||||
msgid "Select the TLD from predefinded list"
|
||||
msgstr "TLD aus vordefinierter Liste auswählen"
|
||||
|
||||
#: includes/class-wp24-settings.php:133
|
||||
msgid "Selection Type"
|
||||
msgstr "Auswahl Typ"
|
||||
|
||||
#: includes/class-wp24-settings.php:146
|
||||
msgid "TLDs"
|
||||
msgstr "TLDs"
|
||||
|
||||
#: includes/class-wp24-settings.php:153
|
||||
msgid "Comma separated list of testable TLDs without leading point."
|
||||
msgstr "Kommagetrennte Liste testbarer TLDs ohne führenden Punkt."
|
||||
|
||||
#: includes/class-wp24-settings.php:157
|
||||
msgid "Check Button"
|
||||
msgstr "Prüfen Button"
|
||||
|
||||
#: includes/class-wp24-settings.php:178
|
||||
msgid "Available"
|
||||
msgstr "Verfügbar"
|
||||
|
||||
#: includes/class-wp24-settings.php:190
|
||||
msgid "Registered"
|
||||
msgstr "Registriert"
|
||||
|
||||
#: includes/class-wp24-settings.php:202
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: includes/class-wp24-settings.php:214
|
||||
msgid "Invalid"
|
||||
msgstr "Ungültig"
|
||||
|
||||
#: includes/class-wp24-settings.php:226
|
||||
msgid "Limit"
|
||||
msgstr "Limit"
|
||||
|
||||
#: includes/class-wp24-settings.php:235
|
||||
msgid ""
|
||||
"Some whois servers have an access control limit to prevent excessive use,"
|
||||
"<br>so the number of queries per network and time interval is limited."
|
||||
msgstr ""
|
||||
"Einige Whois-Server verfügen über ein Zugriffssteuerungslimit, um eine "
|
||||
"übermäßige Verwendung zu verhindern.<br>Daher ist die Anzahl der Abfragen "
|
||||
"pro Netzwerk und Zeitintervall begrenzt."
|
||||
|
||||
#: includes/class-wp24-settings.php:242
|
||||
msgid "Whois Server Unknown"
|
||||
msgstr "Whois Server unbekannt"
|
||||
|
||||
#: includes/class-wp24-settings.php:275
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
"Sie haben keine ausreichenden Berechtigungen um auf diese Seite zuzugreifen."
|
||||
|
||||
#: includes/class-wp24-settings.php:279
|
||||
msgid "General"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: includes/class-wp24-settings.php:280
|
||||
msgid "Texts & Colors"
|
||||
msgstr "Text & Farben"
|
||||
|
||||
#: includes/class-wp24-settings.php:281
|
||||
msgid "Whois Servers"
|
||||
msgstr "Whois Server"
|
||||
|
||||
#: includes/class-wp24-settings.php:282
|
||||
msgid "Premium"
|
||||
msgstr "Premium"
|
||||
|
||||
#: includes/class-wp24-settings.php:283
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#: includes/class-wp24-settings.php:300
|
||||
msgid ""
|
||||
"Simply insert this shortcode <code>[wp24_domaincheck]</code> into any post "
|
||||
"or page to display the domain check."
|
||||
msgstr ""
|
||||
"Fügen Sie einfach diesen Shortcode <code>[wp24_domaincheck]</code> in einen "
|
||||
"Beitrag oder eine Seite ein, um den Domain Check anzuzeigen."
|
||||
|
||||
#: includes/class-wp24-settings.php:308
|
||||
msgid "Text and colors for the different statuses returned by domain checks."
|
||||
msgstr ""
|
||||
"Text und Farben für die verschiedenen Status die von Domainenprüfungen "
|
||||
"zurückgegeben werden."
|
||||
|
||||
#: includes/class-wp24-settings.php:431
|
||||
msgid "no TLDs set"
|
||||
msgstr "keine TLDs festgelegt"
|
||||
|
||||
#: includes/class-wp24-settings.php:433
|
||||
msgid "not supported"
|
||||
msgstr "nicht unterstützt"
|
||||
|
||||
#: includes/class-wp24-settings.php:478
|
||||
msgid "Number Of Servers / TLDs"
|
||||
msgstr "Anzahl Server / TLDs"
|
||||
|
||||
#: includes/class-wp24-settings.php:483
|
||||
msgid "Find"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: includes/class-wp24-settings.php:484
|
||||
msgid "Enter the desired TLD and check if there is an appropriate server."
|
||||
msgstr ""
|
||||
"Gewünschte TLD eingeben und prüfen, ob ein geeigneter Server vorhanden ist."
|
||||
|
||||
#: includes/class-wp24-settings.php:488
|
||||
msgid "TLD"
|
||||
msgstr "TLD"
|
||||
|
||||
#: includes/class-wp24-settings.php:492
|
||||
msgid "search"
|
||||
msgstr "suchen"
|
||||
|
||||
#: includes/class-wp24-settings.php:499
|
||||
msgid "Results with"
|
||||
msgstr "Ergebnisse mit"
|
||||
|
||||
#: includes/class-wp24-settings.php:507
|
||||
msgid ""
|
||||
"If a TLD is missing or the query returns erroneous results, feel free to "
|
||||
"contact us."
|
||||
msgstr ""
|
||||
"Wenn eine TLD fehlt oder die Abfrage fehlerhafte Ergebnisse liefert, können "
|
||||
"Sie sich gerne an uns wenden."
|
||||
|
||||
#: includes/class-wp24-settings.php:516
|
||||
msgid "Premium features"
|
||||
msgstr "Premium Funktionen"
|
||||
|
||||
#: includes/class-wp24-settings.php:518
|
||||
msgid "Free Text Input (Type TLD into domain name field)"
|
||||
msgstr "Freitext Eingabe (TLD in Feld für Domainnamen eingeben)"
|
||||
|
||||
#: includes/class-wp24-settings.php:519
|
||||
msgid "Check all TLDs simultaneously (asynchronous)"
|
||||
msgstr "Gleichzeitiges Überprüfen aller TLDs (asynchron)"
|
||||
|
||||
#: includes/class-wp24-settings.php:520
|
||||
msgid "Show detailed whois information if domain is registered"
|
||||
msgstr ""
|
||||
"Detaillierte Whois Informationen anzeigen, wenn die Domain registriert ist"
|
||||
|
||||
#: includes/class-wp24-settings.php:521
|
||||
msgid "Bot protection with reCAPTCHA (Version 2 and 3)"
|
||||
msgstr "Botschutz mit reCAPTCHA (Version 2 und 3)"
|
||||
|
||||
#: includes/class-wp24-settings.php:524
|
||||
msgid "Upgrade to Premium"
|
||||
msgstr "Auf Premium upgraden"
|
||||
|
||||
#: includes/class-wp24-settings.php:537
|
||||
msgid "License"
|
||||
msgstr "Lizenz"
|
||||
|
||||
#: includes/class-wp24-settings.php:539
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: includes/class-wp24-settings.php:546
|
||||
msgid "Requirements for whois queries"
|
||||
msgstr "Voraussetzungen für Whois-Abfragen"
|
||||
|
||||
#: includes/class-wp24-settings.php:549
|
||||
msgid "Enabled"
|
||||
msgstr "Aktiviert"
|
||||
|
||||
#: includes/class-wp24-settings.php:551
|
||||
msgid "Disabled"
|
||||
msgstr "Deaktiviert"
|
||||
|
||||
#: includes/class-wp24-settings.php:551 includes/class-wp24-settings.php:555
|
||||
msgid "Port 43 must be unlocked by your web host."
|
||||
msgstr "Port 43 muss von Ihrem Webhoster freigeschaltet sein."
|
||||
|
||||
#: includes/class-wp24-settings.php:553
|
||||
msgid "Open"
|
||||
msgstr "Offen"
|
||||
|
||||
#: includes/class-wp24-settings.php:555
|
||||
msgid "Locked"
|
||||
msgstr "Gesperrt"
|
||||
|
||||
#: includes/class-wp24-widget.php:18
|
||||
msgid "Display domaincheck form."
|
||||
msgstr "Domaincheck Formular anzeigen."
|
||||
|
||||
#: includes/class-wp24-widget.php:46
|
||||
msgid "Domain Check"
|
||||
msgstr "Domain Check"
|
||||
|
||||
#~ msgid "all"
|
||||
#~ msgstr "alle"
|
||||
|
||||
#~ msgid "whois"
|
||||
#~ msgstr "whois"
|
||||
|
||||
#~ msgid ".[tld] is not supported"
|
||||
#~ msgstr ".[tld] wird nicht unterstützt"
|
||||
|
||||
#~ msgid "Please enter a domain extension"
|
||||
#~ msgstr "Bitte eine Domainendung eingeben"
|
||||
|
||||
#~ msgid "reCAPTCHA check failed"
|
||||
#~ msgstr "reCAPTCHA Prüfung fehlgeschlagen"
|
||||
|
||||
#~ msgid "Free Text Input"
|
||||
#~ msgstr "Freitext Eingabe"
|
||||
|
||||
#~ msgid "Type the TLD into domain name field"
|
||||
#~ msgstr "TLD in Feld für Domainnamen eingeben"
|
||||
|
||||
#~ msgid "Check All"
|
||||
#~ msgstr "Alle Prüfen"
|
||||
|
||||
#~ msgid "Allow to check all testable TLDs simultaneously."
|
||||
#~ msgstr "Prüfung aller testbaren TLDs gleichzeitig erlauben."
|
||||
|
||||
#~ msgid "Check All Label"
|
||||
#~ msgstr "Alle Prüfen Beschriftung"
|
||||
|
||||
#~ msgid "Label of option in drop-down list."
|
||||
#~ msgstr "Bezeichnung der Option in der Dropdown-Liste."
|
||||
|
||||
#~ msgid "Result Settings"
|
||||
#~ msgstr "Ergebnis Einstellungen"
|
||||
|
||||
#~ msgid "Whois Link"
|
||||
#~ msgstr "Whois Link"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Show a link to open detailed whois information if the domain is "
|
||||
#~ "registered."
|
||||
#~ msgstr ""
|
||||
#~ "Link anzeigen um detaillierte Whois-Informationen zu öffnen wenn die "
|
||||
#~ "Domain registriert ist."
|
||||
|
||||
#~ msgid "Whois Link Label"
|
||||
#~ msgstr "Whois Link Beschriftung"
|
||||
|
||||
#~ msgid "Unsupported"
|
||||
#~ msgstr "Nicht unterstützt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only needed if selection type is free text input.<br>Use <strong>[tld]</"
|
||||
#~ "strong> as placeholder for the TLD."
|
||||
#~ msgstr ""
|
||||
#~ "Nur benötigt bei Auswahl Typ Freitext. <br>Verwenden Sie <strong>[tld]</"
|
||||
#~ "strong> als Platzhalter für die TLD."
|
||||
|
||||
#~ msgid "TLD Missing"
|
||||
#~ msgstr "TLD fehlt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only needed if selection type is free text input and check all is "
|
||||
#~ "disabled."
|
||||
#~ msgstr ""
|
||||
#~ "Nur benötigt wenn Auswahl Typ Freitext ist und Alle Prüfen deaktiviert "
|
||||
#~ "ist."
|
||||
|
||||
#~ msgid "Type"
|
||||
#~ msgstr "Typ"
|
||||
|
||||
#~ msgid "None"
|
||||
#~ msgstr "Keiner"
|
||||
|
||||
#~ msgid "Version 2 (\"I'm not a robot\" Checkbox)"
|
||||
#~ msgstr "Version 2 (\"Ich bin kein Roboter\" Checkbox)"
|
||||
|
||||
#~ msgid "Version 2 (Invisible badge)"
|
||||
#~ msgstr "Version 2 (unsichbares Badge)"
|
||||
|
||||
#~ msgid "Version 3"
|
||||
#~ msgstr "Version 3"
|
||||
|
||||
#~ msgid "Site Key"
|
||||
#~ msgstr "Site Schlüssel"
|
||||
|
||||
#~ msgid "Secret Key"
|
||||
#~ msgstr "Geheimer Schlüssel"
|
||||
|
||||
#~ msgid "Theme"
|
||||
#~ msgstr "Theme"
|
||||
|
||||
#~ msgid "Light"
|
||||
#~ msgstr "Hell"
|
||||
|
||||
#~ msgid "Dark"
|
||||
#~ msgstr "Dunkel"
|
||||
|
||||
#~ msgid "Size"
|
||||
#~ msgstr "Größe"
|
||||
|
||||
#~ msgid "Normal"
|
||||
#~ msgstr "Normal"
|
||||
|
||||
#~ msgid "Compact"
|
||||
#~ msgstr "Kompakt"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Position"
|
||||
|
||||
#~ msgid "Bottom right"
|
||||
#~ msgstr "Unten rechts"
|
||||
|
||||
#~ msgid "Bottom left"
|
||||
#~ msgstr "Unten links"
|
||||
|
||||
#~ msgid "Score"
|
||||
#~ msgstr "Punktzahl"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cancel request if score is lower than this value.<br>(1.0 is very likely "
|
||||
#~ "a good interaction, 0.0 is very likely a bot.)"
|
||||
#~ msgstr ""
|
||||
#~ "Anfrage abbrechen, wenn Punktzahl unter diesem Wert liegt.<br> (1.0 ist "
|
||||
#~ "sehr wahrscheinlich eine gute Interaktion, 0.0 ist sehr wahrscheinlich "
|
||||
#~ "ein Bot.)"
|
||||
|
||||
#~ msgid "Text / Color"
|
||||
#~ msgstr "Text / Farbe"
|
||||
|
||||
#~ msgid "Text and color for message in case of failed check."
|
||||
#~ msgstr "Text und Farbe der Meldung bei fehlgeschlagener Prüfung."
|
||||
|
||||
#~ msgid "reCAPTCHA"
|
||||
#~ msgstr "reCAPTCHA"
|
||||
|
||||
#~ msgid "Requirements for reCAPTCHA"
|
||||
#~ msgstr "Voraussetzungen für reCAPTCHA"
|
||||
|
||||
#~ msgid "Using cURL as fallback."
|
||||
#~ msgstr "cURL als Fallback verwenden."
|
||||
|
||||
#~ msgid "allow_url_fopen is enabled."
|
||||
#~ msgstr "allow_url_fopen ist aktiviert."
|
||||
|
||||
#~ msgid "Premium Demo"
|
||||
#~ msgstr "Premium Demo"
|
||||
@@ -0,0 +1,54 @@
|
||||
# Copyright (C) 2019 WPHobby WooCommerce Mini Cart
|
||||
# This file is distributed under the same license as the WPHobby WooCommerce Mini Cart package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPHobby WooCommerce Mini Cart 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"Project-Id-Version: megamio\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: support@wphobby.com\n"
|
||||
"Report-Msgid-Bugs-To: support@wphobby.com\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: wphobby-woo-mini-cart.php:34
|
||||
msgid "WPHobby WooCommerce Mini Cart is enabled but not effective. It requires WooCommerce in order to work."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:37
|
||||
msgid "Settings updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:106
|
||||
msgid "Mini Cart Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:107
|
||||
msgid "Display Shop Cart Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:111
|
||||
msgid "This is where general display settings."
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:72
|
||||
msgid "Remove this item"
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:88
|
||||
msgid "No products in the cart."
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:96
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:103
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,102 @@
|
||||
# Copyright (C) 2019 WPHobby WooCommerce Product Filter
|
||||
# This file is distributed under the same license as the WPHobby WooCommerce Product Filter package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPHobby WooCommerce Product Filter 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"Project-Id-Version: WPHobby WooCommerce Product Filter 1.0.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: support@wphobby.com\n"
|
||||
"Report-Msgid-Bugs-To: support@wphobby.com\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: wphobby-woo-product-filter.php:34
|
||||
msgid "WooCommerce Ajax Product Filter is enabled but not effective. It requires WooCommerce in order to work."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:49
|
||||
msgid "Settings updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:95
|
||||
msgid "Off-Canvas Filter Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:96
|
||||
msgid "Off Canvas Filters Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:97
|
||||
msgid "Enable Off Canvas Filters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:98
|
||||
msgid "Enable Collapse Filters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:99
|
||||
msgid "Enable Back To Top"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:127
|
||||
msgid "This is where general display settings."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:30
|
||||
msgid "A list of product filters."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:32
|
||||
msgid "WooCommerce Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:36
|
||||
msgid "Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:37
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:43
|
||||
msgid "Attribute"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:28
|
||||
msgid "Reset product filters."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:30
|
||||
msgid "WooCommerce Reset Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:34
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:35
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:39
|
||||
msgid "Reset All Filters."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:40
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_init.php:171
|
||||
msgid "Please Add your filters widget Here."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_init.php:119
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
@@ -447,3 +447,11 @@ FooBox.ready(function() {
|
||||
<meta name="builder-styles-css" data-href="https://wp.lab/wp-content/plugins/themify-builder/css/themify-builder-style.min.css?ver=4.5.2" content="builder-styles-css" id="builder-styles-css">
|
||||
|
||||
|
||||
<!-- everest-forms -->
|
||||
<meta name="generator" content="Everest Forms 1.4.9">
|
||||
|
||||
|
||||
<!-- waymark -->
|
||||
<meta name="Waymark Version" content="0.9.2">
|
||||
|
||||
|
||||
|
||||
629
spec/fixtures/dynamic_finders/theme_version/zoner/readme/readme.txt
vendored
Normal file
629
spec/fixtures/dynamic_finders/theme_version/zoner/readme/readme.txt
vendored
Normal file
@@ -0,0 +1,629 @@
|
||||
Thank you for purchasing this theme.
|
||||
====================================
|
||||
|
||||
If you have any questions, please visit the support forums:
|
||||
http://support.fruitfulcode.com/
|
||||
|
||||
|
||||
Changelog
|
||||
====================================
|
||||
= 4.1.1 =
|
||||
04.07.2019
|
||||
- New: Added Google reCAPTCHA v3
|
||||
- Improvements: Message forms on the agency and property pages now have preloader spinner during sending
|
||||
- Improvements: Widgets styles
|
||||
|
||||
= 4.1 =
|
||||
12.11.2018
|
||||
- New: San-Francisco redesign (add demo content and theme options)
|
||||
- Update: Social login (Google, Facebook)
|
||||
- Update: Change version google map
|
||||
- Update: Languages files
|
||||
- Update: Zoner options update
|
||||
- Update: Updating libs: murkerclusterer, markerwithlabel
|
||||
- Improvements: Currency Calculator Widget functionality, new option section Currency conversion
|
||||
- Improvements: Remove rel=nofollow from internal links
|
||||
- Improvements: Styles improvements
|
||||
- Improvements: Add pagination to archive page of Agencies
|
||||
- Improvements: Multiple properties in one location' functionality
|
||||
- Bugfix: Property Gallery functionality
|
||||
- Bugfix: Agent Profile - My Properties
|
||||
- Bugfix: Add(edit) property on front not uploaded images with upper case file extension
|
||||
- Bugfix: Sign-in jquery.validate.min.js error in forgot password mode
|
||||
|
||||
|
||||
= 4.0 =
|
||||
27.04.2018
|
||||
- New: Tested on Wordpress 4.9.5
|
||||
- New: AMP version of property pages, post pages
|
||||
- Update: WPBakery Page Builder 5.4.7
|
||||
- Improvements: 'properties listing' shortcode : limitation of the number of properties
|
||||
- Improvements: The Email about invite to agency : Agency name added to the subject
|
||||
- Improvements: Added 'bookmark' and 'compare' buttons to the property box on the map
|
||||
- Improvements: make phone numbers be link
|
||||
- Bug fix: Agencies listing shortcode - warning on php7.2
|
||||
- Bug fix: Search box fields 'Property type' and 'garages'
|
||||
- Bug fix: Profile upload avatar
|
||||
- Bug fix: fileinput.min.css enqueue on all pages
|
||||
- Bug fix: e-mail wrong user role after user registration with social login
|
||||
- Bug fix: Facebook share link
|
||||
- Bug fix: Get invoice info by id error
|
||||
- Bug fix: Styling/Color Scheme
|
||||
- Bug fix: Padding on the top of the page in mobile version on some header variations
|
||||
- Bug fix: Notices and compatibility 'fun number' shortcode script
|
||||
- Bug fix: vc_row template update
|
||||
- Bug fix: Dummy data
|
||||
- Bug fix: Theme Styles
|
||||
|
||||
|
||||
= 3.8 =
|
||||
21.11.2017
|
||||
- New: Tested on Wordpress 4.9
|
||||
- New: Tested on PHP 7.2
|
||||
- Improvements: Header options in pages - change taxonomies checkboxes to multiselect
|
||||
- Improvements: E-mail template contact-agent
|
||||
- Improvements: Better WPML support
|
||||
- Improvements: Renew dummy data
|
||||
- Improvements: Remove paid status in membership mode
|
||||
- Bug fix: Conversation system - wrong link to target user profile
|
||||
- Bug fix: Timeline image width
|
||||
- Bug fix: Some Warnings on PHP 7.2
|
||||
- Bug fix: Fatal error on search on PHP 7.1
|
||||
- Bug fix: RTL styles
|
||||
- Bug fix: Agents listing shortcode wrong pagination and markup
|
||||
- Bug fix: Wrong 'Unlimited' mark for current package in profile
|
||||
- Bug fix: Not visible all packages in user profile in back-end
|
||||
- Bug fix: Properties sorting - redirect page wrong params
|
||||
- Bug fix: Calculator api url
|
||||
- Bug fix: Property grid listing image holder
|
||||
- Bug fix: 'Header map type' functionality on pages
|
||||
- Bug fix: SMTP support
|
||||
|
||||
|
||||
= 3.7.1 =
|
||||
24.08.2017
|
||||
|
||||
- New: Italian translation
|
||||
- Improvements: Front-end agent profile
|
||||
- Improvements: Visual Composer 5.2.1 support
|
||||
- Bug fix: Deprecated function vc_generate_dependencies_attributes
|
||||
|
||||
|
||||
= 3.7 =
|
||||
16.06.2017
|
||||
|
||||
- Bug fix: If permalink structure is plain
|
||||
- Bug fix: Position of geo-location button on mobile
|
||||
- Bug fix: Zoner_properties_listing_shortcode wrong query on multiselect
|
||||
- Bug fix: Blog page enabling layout options
|
||||
- Bug fix: Print property wrong image
|
||||
- Bug fix: Choose location on front-end Add Property page with OpenStreet maps
|
||||
- Bug fix: JS error on properties archive page
|
||||
- Bug fix: Uncaught ReferenceError: initSubmitMap is not defined
|
||||
- Bug fix: Syntax error: "Flor Plans" -> "Floor Plans"
|
||||
- Bug fix: Phone number display error in agents listing page
|
||||
- Improvements: Update Facebook sdk v.2.8
|
||||
- Improvements: All properties page sidebar, Quick Summary widget description, Property sidebar description
|
||||
|
||||
= 3.6 =
|
||||
05.04.2017
|
||||
|
||||
- New: Theme Options: add enabled/disabled fields on property pages
|
||||
- Improvements: Add custom filter for address line
|
||||
- Improvements: Add custom user role capabilities
|
||||
- Bug fix: Change property slug for tags
|
||||
- Bug fix: Print property information (pdf)
|
||||
- Bug fix: Adding images on front-end (add/edit property)
|
||||
- Bug fix: Currency Calculator
|
||||
- Bug fix: Color scheme
|
||||
- Bug fix: RTL
|
||||
- Bug fix: Google Map draggable on mobile
|
||||
- Bug fix: Search box on full height map
|
||||
|
||||
= 3.5 =
|
||||
18.01.2017
|
||||
|
||||
- New: Improved actionsââ¬Â© for adding custom fields
|
||||
- New: Property page, left sidebar
|
||||
- Update: Translation files
|
||||
- Improvements: WPML adaptations
|
||||
- Improvements: jQuery Validate translation file
|
||||
- Bug fix: Problem with Advanced search Zoner
|
||||
- Bug fix: Empty list of states in Nigeria
|
||||
- Bug fix: select2/selectpicker conflict resolved
|
||||
- Bug fix: Membership, featured properties for package don't change to empty
|
||||
|
||||
|
||||
= 3.4 =
|
||||
14.10.2016
|
||||
|
||||
- New: Advanced color scheme
|
||||
- New: Property page print button
|
||||
- Improvements: Send messages on enter button
|
||||
- Update: Arabic translation
|
||||
- Bug fix: Agent's page items in one geographic location on map
|
||||
|
||||
= 3.3 =
|
||||
21.09.2016
|
||||
|
||||
- New: Translation for Nederlands
|
||||
- Improvements:On\off share buttons in sigle property
|
||||
- Improvements: SignIn shortcode notification moved to bottom
|
||||
- Bug fix: List styles in widgets
|
||||
- Bug fix: Grid listing action buttons paddings and positions
|
||||
- Bug fix: Dropdown error when not created menu
|
||||
- Bug fix: Map style type for property & contact pages
|
||||
- Bug fix: Zoner map with properties shortcode search block position in mobile
|
||||
- Bug fix: Idx not correct items count
|
||||
|
||||
= 3.2 =
|
||||
18.07.2016
|
||||
|
||||
- New: Fixed header option
|
||||
- New: Properties approved by admin option
|
||||
- New: Property VC shortcode auto-play option
|
||||
- New: Bookmark and compare property inside in listings
|
||||
- New: Share listing
|
||||
- Update: TGM plugins on remove server
|
||||
- Improvements: Page maps headers system
|
||||
- Bug fix: Admin profile page
|
||||
- Bug fix: Choose type for map add property page
|
||||
- Bug fix: Sidebar selects dots style remove
|
||||
|
||||
= 3.1 =
|
||||
01.07.2016
|
||||
|
||||
- New: Message system between users
|
||||
- New: Languages for Google maps api
|
||||
- New: About the Author option
|
||||
- New: Add property page, step 1) and step 2) add options to add own text
|
||||
- New: Spanish translation es_ES
|
||||
- New: Google Maps API Key
|
||||
- Update: Visual composer 4.12
|
||||
- Update: Slider Revolution 5.2.5.4
|
||||
- Update: Envato WordPress Toolkit 1.7.3
|
||||
- Update: Slider revolution export file
|
||||
- Update: dummy_data.xml
|
||||
- Improvements: Zoner map with properties, new option "Search form layout type: vertical search"
|
||||
- Improvements: Add agent to your agency if agent exist
|
||||
- Improvements: Register form shortcode
|
||||
- Improvements: wp_get_current_user instead of get_currentuserinfo()
|
||||
- Improvements: Additional styles for header variations on responsive
|
||||
- Improvements: Rename Properties id -> Post id
|
||||
- Improvements: Price on require in search results
|
||||
- Bug fix: Sorting
|
||||
- Bug fix: Get user name
|
||||
- Bug fix: Delete account error fix
|
||||
- Bug fix: Add property page, google map display in Firefox
|
||||
- Bug fix: Zoner Map with propertiesââ¬Â© shortcode on iPad
|
||||
- Bug fix: Search box with carousel
|
||||
- Bug fix: Packages price in email
|
||||
- Bug fix: Property type icon size
|
||||
- Bug fix: Change package if BACS invoice is approved by admin
|
||||
- Bug fix: Empty image for open street map
|
||||
- Bug fix: Revolution slider for all pages is the same as for main page
|
||||
- Bug fix: Read only for map location metabox
|
||||
|
||||
= 3.0 =
|
||||
12.04.2016
|
||||
|
||||
- New: Redux framework moved to plugin territory
|
||||
- New: Visual Composer shortcode "Zoner Map with Properties"
|
||||
- New: Payment method "Direct Bank Transfer"
|
||||
- New: Global type of the map (Google Map or Open Street Map)
|
||||
- New: Option for display property on map
|
||||
- New: Popup window on map, if properties have the same address map
|
||||
- New: Search by reference id in dashboard
|
||||
- Improvements: Visual Composer shortcode "Property listing", Pagenavi on/off
|
||||
- Improvements: Visual Composer shortcode "Property listing", Sorting on/off
|
||||
- Improvements: Advanced search, Query Operator "OR, AND"
|
||||
- Update: Slider Revolution 5.2.4.1
|
||||
- Update: Visual Composer 4.11.1
|
||||
- Bug fix: Properties 1px gap
|
||||
- Bug fix: Agent's mobile phone
|
||||
- Bug fix: Sorting by price
|
||||
- Bug fix: Property sub category
|
||||
- Bug fix: WPML and search results if link format /?lang=en
|
||||
- Bug fix: when property approved don't send email to agent accounts
|
||||
|
||||
|
||||
= 2.9.1 =
|
||||
12.12.2015
|
||||
|
||||
- New: Property listing shortcode, filter by city
|
||||
- New: Property listing shortcode, show/hide "all properties" link
|
||||
- Update: Slider Revolution 5.1.4
|
||||
- Bug fix: Add property page, add video button
|
||||
- Bug fix: Add property page, css for gallery
|
||||
|
||||
= 2.9 =
|
||||
10.12.2015
|
||||
|
||||
- New: Options for similar properties
|
||||
- Update: WordPress 4.4 ready
|
||||
- Update: Visual composer 4.9
|
||||
- Improvements: Gallery on frontend
|
||||
- Improvements: it is not possible to delete just 1 photo in the submit property form.
|
||||
- Bug fix: OSM stopped working
|
||||
- Bug fix: Dashboard categories title display
|
||||
- Bug fix: Map not working on mobiles after update to 2.8
|
||||
- Bug fix: RTL mobile menu position
|
||||
- Bug fix: RTL and map problem
|
||||
- Bug fix: Jquery validate translation file
|
||||
- Bug fix: thumbnail images in footer
|
||||
|
||||
= 2.8.1 =
|
||||
18.11.2015
|
||||
|
||||
- New: add property category in search box
|
||||
- Update: Slider Revolution 5.1.1
|
||||
- Update: en_US.mo and en_US.po
|
||||
- Improvements: magnific-popup with arrows
|
||||
- Improvements: query criteria for similar properties
|
||||
- Improvements: Print css hide sidebar on property page
|
||||
- Improvements: Currency converter with google api https://www.google.com/finance/converter
|
||||
- Bug fix: add_option was called with an argument that is deprecated
|
||||
- Bug fix: image align
|
||||
- Bug fix: empty space in owl.carousel property items
|
||||
- Bug fix: WPML language switcher for RTL
|
||||
- Bug fix: map and touch menu conflict
|
||||
|
||||
|
||||
= 2.8 =
|
||||
09.11.2015
|
||||
|
||||
- New: Cities becomes a taxonomy
|
||||
- Update: Visual composer 4.8.1
|
||||
- Update: demo content .xml file
|
||||
- Improvements: Safe post insert add property
|
||||
- Improvements: add quick edit for admin panel on property post type
|
||||
- Improvements: add bulk edit for admin panel on property post type
|
||||
- Bug fix: adaptive vc_row for new plugin version
|
||||
- Bug fix: parse error on add property page
|
||||
- Bug fix: filter by status and type in dashboard
|
||||
- Bug fix: property loop page not selected
|
||||
- Bug fix: Depressed function
|
||||
- Bug fix: Default values in shortcode
|
||||
- Bug fix: Icon shortcode, position right
|
||||
- Bug fix: Agencies listing shortcode
|
||||
- Bug fix: Navigation buttons not showing at Google maps on small screens
|
||||
- Bug fix: open drop down menu on touch devices
|
||||
|
||||
= 2.7 =
|
||||
06.10.2015
|
||||
|
||||
- New: Show/Hide breadcrumbs
|
||||
- New: Show/Hide Page title
|
||||
- Update: Visual composer 4.7.4
|
||||
- Improvement: Antispam for comments
|
||||
- Bug fix: gravatar for comments
|
||||
- Bug fix: reverse keyword search
|
||||
- Bug fix: Rating system
|
||||
- Bug fix: Images on 404 page
|
||||
|
||||
= 2.6 =
|
||||
09.09.2015
|
||||
|
||||
- New: Propery ID metabox field.
|
||||
- Improvements: Correct display if property page not choosen
|
||||
- Bug fix: Grid layout featured posts first
|
||||
- Bug fix: Price range for some languages
|
||||
- Bug fix: Comments reply
|
||||
- Update: TGM Plugin activation 2.5.2
|
||||
- Update: Visual composer 4.7
|
||||
- Update: Revolution Slider 5.0.7
|
||||
- Update: WordPress 4.3 support
|
||||
- Update: Demo content .xml
|
||||
|
||||
|
||||
= 2.5 =
|
||||
13.08.2015
|
||||
|
||||
- New: PHP validation for pages "Add property", "Create agency"
|
||||
- New: Ability to delete account on front-end
|
||||
- New: Featured properties, display first in listing
|
||||
- New: Map with properties for agent profile
|
||||
- New: Map with properties for agency profile
|
||||
- New: Zoner options > General - Currency calculator, field for API key (https://currencylayer.com)
|
||||
- New: Zoner options > Property - Contact agent on/off
|
||||
- New: Zoner options > Header - Compare - On/Off
|
||||
- New: Zoner options > Header - Add property - On/Off
|
||||
- Improvements: Add subsets for Google fonts
|
||||
- Improvements: WPML drop down styles
|
||||
- Improvements: New comments approvement
|
||||
- Improvements: Print CSS for property page
|
||||
- Improvements: Welcome admin page for Redux framework
|
||||
- Improvements: Social login
|
||||
- Imrovements: add esc_attr and esc_url for 404 page template
|
||||
- Bug fix: Default permalinks
|
||||
- Bug fix: User avatar url
|
||||
- Bug fix: Hide icon if property type is empty
|
||||
- Bug fix: Advanced search in widget open advanced search in header
|
||||
- Bug fix: Thumbnails in footer without images
|
||||
- Bug fix: Loading icon on map in IE10, IE11
|
||||
- Bug fix: "Property listing shortcode" if title empty
|
||||
- Update: Visual composer 4.6.2
|
||||
- Update: Slider Revolution 5.0.4
|
||||
|
||||
|
||||
= 2.4.1 =
|
||||
23.06.2015
|
||||
|
||||
- Bug fix: OwlCarousel after update
|
||||
- Bug fix: Retina logo
|
||||
- Bug fix: RTL subnavigation styles
|
||||
|
||||
= 2.4 =
|
||||
22.06.2015
|
||||
|
||||
- New: Search by keywords
|
||||
- Improvements: RTL support
|
||||
- Update: Visual composer 4.5.3
|
||||
- Bug fix: Additional SMTP options
|
||||
- Bug fix: Display comments for pages
|
||||
|
||||
= 2.3.1 =
|
||||
05.06.2015
|
||||
|
||||
- Update: Visual composer 4.5.2
|
||||
- Bug fix: Theme option, home page variation
|
||||
- Bug fix: Paid type "Pay for each Property"
|
||||
- Bug fix: Property map, after latest update
|
||||
|
||||
= 2.3 =
|
||||
04.06.2015
|
||||
|
||||
- New: Email SMTP options
|
||||
- New: Cache for property pins on home page
|
||||
- Update: TGM plugin activation 2.4.1
|
||||
- Update: Redux Framework 3.5.4.3
|
||||
- Update: Visual composer 4.5.1
|
||||
- Update: Revolution slider 4.6.93
|
||||
- Bug fix: Currency exchange
|
||||
- Bug fix: Paypal packages purchase
|
||||
- Bug fix: Advanced search
|
||||
|
||||
= 2.2 =
|
||||
02.04.2015
|
||||
|
||||
- New: Additional filters for display and sorting properties on map
|
||||
- New: Order by value in search fields
|
||||
- New: Hide membership tab for "subsriber" role
|
||||
- New: Property listing shortocde, link url added
|
||||
- Update: Russial translation
|
||||
- Improvements: Css styles
|
||||
- Bug fix: Package limits
|
||||
|
||||
= 2.1.1 =
|
||||
30.03.2015
|
||||
|
||||
- New: Theme options, admin bar display
|
||||
- Improvements: CSS styles
|
||||
- Bug fix: Membership
|
||||
|
||||
= 2.1 =
|
||||
20.03.2015
|
||||
|
||||
- Update: Visual composer 4.4.3
|
||||
- Improvements: CSS styles
|
||||
- Bug fix: Package limit
|
||||
- Bug fix: Masonry grid loading
|
||||
|
||||
|
||||
= 2.0.1 =
|
||||
04.03.2015
|
||||
|
||||
- Improvements: Timeline added sorting by ASC DESC
|
||||
- Update: Visual composer 4.4.2
|
||||
- Bug fix: Frontpage and sidebar
|
||||
- Bug fix: Property listing shortcode, sorting by category not working
|
||||
- Bug fix: Remove recurring payment if payment system is not available
|
||||
- Bug fix: Visual composer GRID elements
|
||||
- Bug fix: Allow rating checked
|
||||
|
||||
|
||||
= 2.0 =
|
||||
20.02.2015
|
||||
|
||||
- New: 14 layered PSD files
|
||||
- New: Custom post type, "Membership"
|
||||
- New: Custom post type, "Invoice"
|
||||
- New: Paid property options
|
||||
- New: Payments via Paypal & Stripe
|
||||
- New: Appearance > Zoner options, "Maps"
|
||||
- New: Header options for pages.
|
||||
- New: Option "Allow the user to use currency localization"
|
||||
- New: Widget "Currency Calculator"
|
||||
- New: Slider revolution in Zoner options > Home > Variations of homepage
|
||||
- New: Email template when property is approved
|
||||
- New: Email template for invoice
|
||||
- New: Email template for Membership packages
|
||||
- New: Qatar states
|
||||
- Improvements: "Property listing" shortcode, now possible to choose "type, features, status, categories"
|
||||
- Improvements: Pricing filter for small prices
|
||||
- Improvements: Infinite scroll for masonry grid
|
||||
- Bug fix: Deleting an agency on the frontend doesn't work
|
||||
- Bug fix: Drop down menu at the end
|
||||
- Bug fix: Add property page, "state" field
|
||||
- Bug fix: Holder images on google maps
|
||||
- Bug fix: Dashboard > Properties, order by
|
||||
- Bug fix: If property loop page not selected in admin panel
|
||||
- Bug fix: Area units on add property page
|
||||
- Update: Translations files
|
||||
- Update: Documentation
|
||||
|
||||
= 1.9 =
|
||||
14.01.15
|
||||
|
||||
- New: Currency added "Chilean Unit of Account"
|
||||
- Improvements: Zoner Search property shortcode, show advanced search items
|
||||
- Improvements: Agency listing shortcode new options, "show only those agencies which exist property"
|
||||
- Improvements: Sign in shortcode, choose user role for login with social media
|
||||
- Improvements: WPML for some special pages
|
||||
- Bug fix: Delete invited agent from agency (frontend)
|
||||
- Bug fix: Sorting drop down
|
||||
|
||||
= 1.8 =
|
||||
07.01.15
|
||||
|
||||
- New: dsIDXpress support
|
||||
- New: Theme option, Property, Gallery image crop on/off
|
||||
- New: Chile regions
|
||||
- Improvements: Area units
|
||||
- Improvements: Default images added to translations
|
||||
- Update: Translations files
|
||||
- Bug fix: Zoner property categories ââ¬ËShow hierarchyââ¬â¢
|
||||
- Bug fix: Stars rating if 4 star
|
||||
|
||||
= 1.7.1 =
|
||||
24.12.14
|
||||
|
||||
- New: Header options for pages
|
||||
- New: Price format on "Add your property" page
|
||||
- Improvements: Payment per month/day etc.
|
||||
- Improvements: Advanced search, new ability to choose "property features"
|
||||
- Bug fix: Body background
|
||||
- Bug fix: Breadcrumbs
|
||||
- Bug fix: Price filter
|
||||
|
||||
= 1.7 =
|
||||
20.12.14
|
||||
|
||||
- Update: Visual composer 4.3.5
|
||||
- Update: Compatibility with WP 4.1
|
||||
- New: Option for Google map: Roadmap, Satellite, Hybrid, Terrain
|
||||
- New: Option for maps in the "Add your property" page
|
||||
- New: Price on request, if price is empty or 0
|
||||
- New: Email notification for administrator, when someone register on the website.
|
||||
- Bug fix: Duplicates when adding agent to a agency (Backend)
|
||||
- Bug fix: Agents listing shortcode, page navigation
|
||||
- Bug fix: Property loop page and WPML
|
||||
- Bug fix: Sign in page, click on "enter" button
|
||||
- Bug fix: "Add your property" page, fields validation in Safari
|
||||
- Bug fix: Drop down menu
|
||||
- Bug fix: Countries select (Backend)
|
||||
- Bug fix: Google map position
|
||||
- Bug fix: Address field and coordinates (Frontend and Backend)
|
||||
|
||||
|
||||
= 1.6 =
|
||||
08.12.14
|
||||
|
||||
- New: styling option 8 color schemes
|
||||
- New: option create agency on/off
|
||||
- New: property page, new field "Rooms"
|
||||
- New: "Search location" field (front-end)
|
||||
- New: option zoom for maps in General tab
|
||||
- Improvements: Default maps settings now in General tab
|
||||
- Improvements: add filters to property fields
|
||||
- Improvements: google place property modification
|
||||
- Bug fix: path to lib for Child theme
|
||||
- Bug fix: remove check null value on property fields
|
||||
- Bug fix: layout-property remove view all
|
||||
|
||||
|
||||
= 1.5 =
|
||||
25.11.14
|
||||
|
||||
- New: Social login (Facebook, Google)
|
||||
- New: Add Property page, Location field with map and marker for administrator (backend)
|
||||
- New: Add property page, Add files field (.pdf, .doc, etc.)
|
||||
- New: Currency, Venezuelan bolivar
|
||||
- New: Translation Dutch Belgium (nl_BE)
|
||||
- New: Slider Revolution (included as plugin)
|
||||
- Improvements: Property listing shortcode, different types of display. Grid, masonry, listing
|
||||
- Improvements: Agents Listing shortcode, if agent without properties (0) hide it from list
|
||||
- Improvements: Property page, display payment type information
|
||||
- Improvements: Email templates notifications, additional information added
|
||||
- Update: ru_Ru translations
|
||||
- Update: dummy_data.xml
|
||||
- Bug fix: Hide border if comments off
|
||||
- Bug fix: If video presentation empty, hide headline
|
||||
- Bug fix: email template, message to client. Mistake in name
|
||||
- Bug fix: Agents Listing shortcode, post cout desc
|
||||
- Bug fix: Admin bar and thank you message in right corner position
|
||||
- Bug fix: last menu item drop down
|
||||
- Bug fix: Property gallery, drag and drop
|
||||
- Bug fix: Theme activation, zoner.class-emails.php on line 80
|
||||
|
||||
= 1.4 =
|
||||
14.11.14
|
||||
|
||||
- New: Email notification for admin after new property submitted.
|
||||
- New: Child theme included
|
||||
- New: zoner.pot included
|
||||
- New: Sort by random for "Properties page"
|
||||
- Update: Russian translation
|
||||
- Bug fix: Breadcrumbs on specific pages
|
||||
- Bug fix: Drop down menu in top position
|
||||
- Bug fix: Carousel responsive version
|
||||
|
||||
|
||||
= 1.3 =
|
||||
10.11.14
|
||||
|
||||
- New: Compare properties
|
||||
- New: Theme options, new tab "Bookmarks". Information about who from users added property to bookmarks, for admin.
|
||||
- New: Theme options, new tab "Advanced Search"
|
||||
- New: Value for area, ft2
|
||||
- New: Thank you page, after submit property via frontend.
|
||||
- New: Administrator should approve property before they will be available in directory.
|
||||
- New: Disctrict field for search form.
|
||||
- Improvements: Theme options, "Home page" new template switcher.
|
||||
- Improvements: Registration form, password field removed.
|
||||
- Improvements: Registration form, password will be send on registered user email.
|
||||
- Improvements: Code optimization
|
||||
- Bug fix: Different email templates for user and agent
|
||||
- Bug fix: Drop downs max height
|
||||
- Update: Demo content .xml file
|
||||
|
||||
|
||||
= 1.2 =
|
||||
30.10.14
|
||||
|
||||
- New: Property page, new field "District"
|
||||
- New: Theme options, specific country option
|
||||
- New: Search form, new option field "Area"
|
||||
- New: Additional options for slider on home page
|
||||
- Improvements: Theme options, new section for "Search form"
|
||||
- Improvements: "Property listing" shortcode, Order by "asc" "desc"
|
||||
- Improvements: Css optimization
|
||||
- Bug fix: Price filter, curency symbol removed
|
||||
- Bug fix: Price filter, changed minimum value
|
||||
- Bug fix: Agency name
|
||||
|
||||
|
||||
= 1.1 =
|
||||
23.10.14
|
||||
|
||||
- New: Search box fields, drag and drop configuration
|
||||
- New: Theme options tab "Home page"
|
||||
- New: Variation of home page, "Google Map with Horizontal Search Box"
|
||||
- New: Variation of home page, "Google Map with Advanced Horizontal Search Box"
|
||||
- New: Variation of home page, "Open street map with Horizontal Search Box"
|
||||
- New: Variation of home page, "Open street with Advanced Horizontal Search Box"
|
||||
- New: Variation of home page, "Property Slider with Horizontal Search Box"
|
||||
- New: Variation of home page, "Property Slider with Advanced Horizontal Search Box"
|
||||
- Improvements: "Property listing" shortcode, Property typed added
|
||||
- Improvements: "Property listing" shortcode, Property ID added
|
||||
- Bug fix: Pricing filter with big amounts
|
||||
- Bug fix: favourites for admin
|
||||
- Bug fix: carousel on resize
|
||||
- Bug fix: email newsletter, update images
|
||||
- Bug fix: Crop thumbnail for agency profile
|
||||
- Update: Documentation
|
||||
|
||||
|
||||
= 1.0.1 =
|
||||
19.10.14
|
||||
|
||||
- Bug fix: Add property, front-end marker display.
|
||||
- Bug fix: Add to Bookmarks, display for admin.
|
||||
- Bug fix: Display carousel on laptops
|
||||
- Imrovements: Css optimization
|
||||
|
||||
|
||||
= 1.0 =
|
||||
03.10.14
|
||||
|
||||
- Initial release
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user