Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4d32749489 | ||
|
|
d911a16684 | ||
|
|
d7193bc755 | ||
|
|
aee9ffdb9c | ||
|
|
1f627d5e49 | ||
|
|
bb67626d09 | ||
|
|
4e0153e94a | ||
|
|
065142ff19 | ||
|
|
8bb6fae52f | ||
|
|
8cb7b81903 | ||
|
|
cb214ccda9 | ||
|
|
3fa7b96f27 | ||
|
|
7c8e259072 | ||
|
|
743d067042 | ||
|
|
50ea410718 | ||
|
|
e71182aed2 | ||
|
|
97f7963e0b | ||
|
|
6cea6a10bd | ||
|
|
344d41e365 | ||
|
|
597a8adfed | ||
|
|
5682e5483a | ||
|
|
18779edd7d | ||
|
|
63aeaea77a | ||
|
|
f51e48cb40 | ||
|
|
193372c79c | ||
|
|
34d0afe7e5 | ||
|
|
d33a9dd56d | ||
|
|
af2be90176 | ||
|
|
701fb21544 | ||
|
|
c8f010d9a6 | ||
|
|
c1ca7580e2 | ||
|
|
11d3c2cbf1 | ||
|
|
412f576aee | ||
|
|
ff98a7b23b | ||
|
|
507bac8542 | ||
|
|
3bd6cf4805 | ||
|
|
5712b31869 | ||
|
|
b0f9a0b18f | ||
|
|
f7665b460e | ||
|
|
100029b640 | ||
|
|
2b89bddf0f |
@@ -1,3 +1,14 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
Before submitting an issue, please make sure you fully read any potential error messages output and did some research on your own.
|
||||
|
||||
### Subject of the issue
|
||||
Describe your issue here.
|
||||
|
||||
@@ -24,4 +35,4 @@ Things you have tried (where relevant):
|
||||
* Update Ruby to the latest version [ ]
|
||||
* Ensure you can reach the target site using cURL [ ]
|
||||
* Proxied WPScan through a HTTP proxy to view the raw traffic [ ]
|
||||
* Ensure you are using a supported Operating System (Linux and macOS) [ ]
|
||||
* Ensure you are using a supported Operating System (Linux and macOS) [ ]
|
||||
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
||||
10
.github/ISSUE_TEMPLATE/other-issue.md
vendored
Normal file
10
.github/ISSUE_TEMPLATE/other-issue.md
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
name: Other Issue
|
||||
about: Create a report which is not a related to a Bug or Feature
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
Before submitting an issue, please make sure you fully read any potential error messages output and did some research on your own.
|
||||
@@ -1,3 +1,4 @@
|
||||
require: rubocop-performance
|
||||
AllCops:
|
||||
TargetRubyVersion: 2.4
|
||||
Exclude:
|
||||
|
||||
@@ -17,6 +17,7 @@ rvm:
|
||||
- 2.6.0
|
||||
- 2.6.1
|
||||
- 2.6.2
|
||||
- 2.6.3
|
||||
- ruby-head
|
||||
before_install:
|
||||
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
- Curl >= 7.21 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- RubyGems - Recommended: latest
|
||||
- Nokogiri might require packages to be installed via your package manager depending on your OS, see https://nokogiri.org/tutorials/installing_nokogiri.html
|
||||
|
||||
### From RubyGems (Recommended)
|
||||
|
||||
|
||||
@@ -65,30 +65,43 @@ module WPScan
|
||||
|
||||
case ParsedCli.password_attack
|
||||
when :wp_login
|
||||
WPScan::Finders::Passwords::WpLogin.new(target)
|
||||
Finders::Passwords::WpLogin.new(target)
|
||||
when :xmlrpc
|
||||
raise Error::XMLRPCNotDetected unless xmlrpc
|
||||
|
||||
WPScan::Finders::Passwords::XMLRPC.new(xmlrpc)
|
||||
Finders::Passwords::XMLRPC.new(xmlrpc)
|
||||
when :xmlrpc_multicall
|
||||
raise Error::XMLRPCNotDetected unless xmlrpc
|
||||
|
||||
WPScan::Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
|
||||
Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
|
||||
end
|
||||
end
|
||||
|
||||
# @return [ Boolean ]
|
||||
def xmlrpc_get_users_blogs_enabled?
|
||||
if xmlrpc&.enabled? &&
|
||||
xmlrpc.available_methods.include?('wp.getUsersBlogs') &&
|
||||
xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
|
||||
.run.body !~ /XML\-RPC services are disabled/
|
||||
|
||||
true
|
||||
else
|
||||
false
|
||||
end
|
||||
end
|
||||
|
||||
# @return [ CMSScanner::Finders::Finder ]
|
||||
def attacker_from_automatic_detection
|
||||
if xmlrpc&.enabled? && xmlrpc.available_methods.include?('wp.getUsersBlogs')
|
||||
if xmlrpc_get_users_blogs_enabled?
|
||||
wp_version = target.wp_version
|
||||
|
||||
if wp_version && wp_version < '4.4'
|
||||
WPScan::Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
|
||||
Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
|
||||
else
|
||||
WPScan::Finders::Passwords::XMLRPC.new(xmlrpc)
|
||||
Finders::Passwords::XMLRPC.new(xmlrpc)
|
||||
end
|
||||
else
|
||||
WPScan::Finders::Passwords::WpLogin.new(target)
|
||||
Finders::Passwords::WpLogin.new(target)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def before_scan
|
||||
WPScan::DB::DynamicFinders::Wordpress.create_versions_finders
|
||||
DB::DynamicFinders::Wordpress.create_versions_finders
|
||||
end
|
||||
|
||||
def run
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module Finders
|
||||
module Plugins
|
||||
# Plugins finder from Dynamic Finder 'BodyPattern'
|
||||
class BodyPattern < WPScan::Finders::DynamicFinder::WpItems::Finder
|
||||
class BodyPattern < Finders::DynamicFinder::WpItems::Finder
|
||||
DEFAULT_CONFIDENCE = 30
|
||||
|
||||
# @param [ Hash ] opts The options from the #passive, #aggressive methods
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module Finders
|
||||
module Plugins
|
||||
# Plugins finder from the Dynamic Finder 'Comment'
|
||||
class Comment < WPScan::Finders::DynamicFinder::WpItems::Finder
|
||||
class Comment < Finders::DynamicFinder::WpItems::Finder
|
||||
DEFAULT_CONFIDENCE = 30
|
||||
|
||||
# @param [ Hash ] opts The options from the #passive, #aggressive methods
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module Finders
|
||||
module Plugins
|
||||
# Plugins finder from Dynamic Finder 'ConfigParser'
|
||||
class ConfigParser < WPScan::Finders::DynamicFinder::WpItems::Finder
|
||||
class ConfigParser < Finders::DynamicFinder::WpItems::Finder
|
||||
DEFAULT_CONFIDENCE = 40
|
||||
|
||||
# @param [ Hash ] opts The options from the #passive, #aggressive methods
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module Finders
|
||||
module Plugins
|
||||
# Plugins finder from Dynamic Finder 'HeaderPattern'
|
||||
class HeaderPattern < WPScan::Finders::DynamicFinder::WpItems::Finder
|
||||
class HeaderPattern < Finders::DynamicFinder::WpItems::Finder
|
||||
DEFAULT_CONFIDENCE = 30
|
||||
|
||||
# @param [ Hash ] opts
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module Finders
|
||||
module Plugins
|
||||
# Plugins finder from the Dynamic Finder 'JavascriptVar'
|
||||
class JavascriptVar < WPScan::Finders::DynamicFinder::WpItems::Finder
|
||||
class JavascriptVar < Finders::DynamicFinder::WpItems::Finder
|
||||
DEFAULT_CONFIDENCE = 60
|
||||
|
||||
# @param [ Hash ] opts The options from the #passive, #aggressive methods
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module Finders
|
||||
module Plugins
|
||||
# Plugins finder from Dynamic Finder 'QueryParameter'
|
||||
class QueryParameter < WPScan::Finders::DynamicFinder::WpItems::Finder
|
||||
class QueryParameter < Finders::DynamicFinder::WpItems::Finder
|
||||
DEFAULT_CONFIDENCE = 10
|
||||
|
||||
def passive(_opts = {})
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module Finders
|
||||
module Plugins
|
||||
# Plugins finder from the Dynamic Finder 'Xpath'
|
||||
class Xpath < WPScan::Finders::DynamicFinder::WpItems::Finder
|
||||
class Xpath < Finders::DynamicFinder::WpItems::Finder
|
||||
DEFAULT_CONFIDENCE = 40
|
||||
|
||||
# @param [ Hash ] opts The options from the #passive, #aggressive methods
|
||||
|
||||
@@ -6,7 +6,7 @@ module WPScan
|
||||
# Users disclosed from the dc:creator field in the RSS
|
||||
# The names disclosed are display names, however depending on the configuration of the blog,
|
||||
# they can be the same than usernames
|
||||
class RSSGenerator < WPScan::Finders::WpVersion::RSSGenerator
|
||||
class RSSGenerator < Finders::WpVersion::RSSGenerator
|
||||
def process_urls(urls, _opts = {})
|
||||
found = []
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ module WPScan
|
||||
# @param [ WPScan::Target ] target
|
||||
def initialize(target)
|
||||
(%w[RSSGenerator AtomGenerator RDFGenerator] +
|
||||
WPScan::DB::DynamicFinders::Wordpress.versions_finders_configs.keys +
|
||||
DB::DynamicFinders::Wordpress.versions_finders_configs.keys +
|
||||
%w[Readme UniqueFingerprinting]
|
||||
).each do |finder_name|
|
||||
finders << WpVersion.const_get(finder_name.to_sym).new(target)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<%= notice_icon %> Config Backup(s) Identified:
|
||||
<% @config_backups.each do |config_backup| -%>
|
||||
|
||||
<%= info_icon %> <%= config_backup %>
|
||||
<%= critical_icon %> <%= config_backup %>
|
||||
<%= render('@finding', item: config_backup) -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<%= notice_icon %> Db Export(s) Identified:
|
||||
<% @db_exports.each do |db_export| -%>
|
||||
|
||||
<%= info_icon %> <%= db_export %>
|
||||
<%= critical_icon %> <%= db_export %>
|
||||
<%= render('@finding', item: db_export) -%>
|
||||
<% end -%>
|
||||
<% end %>
|
||||
|
||||
@@ -11,9 +11,10 @@
|
||||
}<% unless index == last_index %>,<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
},
|
||||
"vulnerabilities": [
|
||||
<% if @item.respond_to?(:vulnerabilities) && !(vulns = @item.vulnerabilities).empty? -%>
|
||||
}
|
||||
<% if @item.respond_to?(:vulnerabilities) -%>
|
||||
,"vulnerabilities": [
|
||||
<% unless (vulns = @item.vulnerabilities).empty? -%>
|
||||
<% last_index = vulns.size - 1 -%>
|
||||
<% vulns.each_with_index do |v, index| -%>
|
||||
{
|
||||
@@ -23,4 +24,5 @@
|
||||
}<% unless index == last_index -%>,<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
]
|
||||
]
|
||||
<% end -%>
|
||||
@@ -6,7 +6,7 @@ module WPScan
|
||||
module Version
|
||||
# Version finder using Body Pattern method. Tipically used when the response is not
|
||||
# an HTML doc and Xpath can't be used
|
||||
class BodyPattern < WPScan::Finders::DynamicFinder::Version::Finder
|
||||
class BodyPattern < Finders::DynamicFinder::Version::Finder
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(PATTERN: nil, CONFIDENCE: 60)
|
||||
|
||||
@@ -6,7 +6,7 @@ module WPScan
|
||||
module Version
|
||||
# Version finder in Comment, which is basically an Xpath one with a default
|
||||
# Xpath of //comment()
|
||||
class Comment < WPScan::Finders::DynamicFinder::Version::Xpath
|
||||
class Comment < Finders::DynamicFinder::Version::Xpath
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(PATTERN: nil, XPATH: '//comment()')
|
||||
|
||||
@@ -6,7 +6,7 @@ module WPScan
|
||||
module Version
|
||||
# Version finder using by parsing config files, such as composer.json
|
||||
# and so on
|
||||
class ConfigParser < WPScan::Finders::DynamicFinder::Version::Finder
|
||||
class ConfigParser < Finders::DynamicFinder::Version::Finder
|
||||
ALLOWED_PARSERS = [JSON, YAML].freeze
|
||||
|
||||
def self.child_class_constants
|
||||
|
||||
@@ -5,7 +5,7 @@ module WPScan
|
||||
module DynamicFinder
|
||||
module Version
|
||||
# Version finder using Header Pattern method
|
||||
class HeaderPattern < WPScan::Finders::DynamicFinder::Version::Finder
|
||||
class HeaderPattern < Finders::DynamicFinder::Version::Finder
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(HEADER: nil, PATTERN: nil, CONFIDENCE: 60)
|
||||
|
||||
@@ -5,7 +5,7 @@ module WPScan
|
||||
module DynamicFinder
|
||||
module Version
|
||||
# Version finder using JavaScript Variable method
|
||||
class JavascriptVar < WPScan::Finders::DynamicFinder::Version::Finder
|
||||
class JavascriptVar < Finders::DynamicFinder::Version::Finder
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(
|
||||
|
||||
@@ -5,7 +5,7 @@ module WPScan
|
||||
module DynamicFinder
|
||||
module Version
|
||||
# Version finder using QueryParameter method
|
||||
class QueryParameter < WPScan::Finders::DynamicFinder::Version::Finder
|
||||
class QueryParameter < Finders::DynamicFinder::Version::Finder
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(
|
||||
|
||||
@@ -5,7 +5,7 @@ module WPScan
|
||||
module DynamicFinder
|
||||
module Version
|
||||
# Version finder using Xpath method
|
||||
class Xpath < WPScan::Finders::DynamicFinder::Version::Finder
|
||||
class Xpath < Finders::DynamicFinder::Version::Finder
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(
|
||||
|
||||
@@ -4,22 +4,22 @@ module WPScan
|
||||
module Finders
|
||||
module DynamicFinder
|
||||
module WpItemVersion
|
||||
class BodyPattern < WPScan::Finders::DynamicFinder::Version::BodyPattern
|
||||
class BodyPattern < Finders::DynamicFinder::Version::BodyPattern
|
||||
end
|
||||
|
||||
class Comment < WPScan::Finders::DynamicFinder::Version::Comment
|
||||
class Comment < Finders::DynamicFinder::Version::Comment
|
||||
end
|
||||
|
||||
class ConfigParser < WPScan::Finders::DynamicFinder::Version::ConfigParser
|
||||
class ConfigParser < Finders::DynamicFinder::Version::ConfigParser
|
||||
end
|
||||
|
||||
class HeaderPattern < WPScan::Finders::DynamicFinder::Version::HeaderPattern
|
||||
class HeaderPattern < Finders::DynamicFinder::Version::HeaderPattern
|
||||
end
|
||||
|
||||
class JavascriptVar < WPScan::Finders::DynamicFinder::Version::JavascriptVar
|
||||
class JavascriptVar < Finders::DynamicFinder::Version::JavascriptVar
|
||||
end
|
||||
|
||||
class QueryParameter < WPScan::Finders::DynamicFinder::Version::QueryParameter
|
||||
class QueryParameter < Finders::DynamicFinder::Version::QueryParameter
|
||||
# @return [ Regexp ]
|
||||
def path_pattern
|
||||
# TODO: consider the target.blog.themes_dir if the target is a Theme (maybe implement a WpItem#item_dir ?)
|
||||
@@ -37,7 +37,7 @@ module WPScan
|
||||
end
|
||||
end
|
||||
|
||||
class Xpath < WPScan::Finders::DynamicFinder::Version::Xpath
|
||||
class Xpath < Finders::DynamicFinder::Version::Xpath
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -12,23 +12,23 @@ module WPScan
|
||||
end
|
||||
end
|
||||
|
||||
class BodyPattern < WPScan::Finders::DynamicFinder::Version::BodyPattern
|
||||
class BodyPattern < Finders::DynamicFinder::Version::BodyPattern
|
||||
include Finder
|
||||
end
|
||||
|
||||
class Comment < WPScan::Finders::DynamicFinder::Version::Comment
|
||||
class Comment < Finders::DynamicFinder::Version::Comment
|
||||
include Finder
|
||||
end
|
||||
|
||||
class HeaderPattern < WPScan::Finders::DynamicFinder::Version::HeaderPattern
|
||||
class HeaderPattern < Finders::DynamicFinder::Version::HeaderPattern
|
||||
include Finder
|
||||
end
|
||||
|
||||
class JavascriptVar < WPScan::Finders::DynamicFinder::Version::JavascriptVar
|
||||
class JavascriptVar < Finders::DynamicFinder::Version::JavascriptVar
|
||||
include Finder
|
||||
end
|
||||
|
||||
class QueryParameter < WPScan::Finders::DynamicFinder::Version::QueryParameter
|
||||
class QueryParameter < Finders::DynamicFinder::Version::QueryParameter
|
||||
include Finder
|
||||
|
||||
# @return [ Hash ]
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.5.3'
|
||||
VERSION = '3.5.5'
|
||||
end
|
||||
|
||||
@@ -52,6 +52,60 @@ describe WPScan::Controller::PasswordAttack do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#xmlrpc_get_users_blogs_enabled?' do
|
||||
before { expect(controller.target).to receive(:xmlrpc).and_return(xmlrpc) }
|
||||
|
||||
context 'when xmlrpc not found' do
|
||||
let(:xmlrpc) { nil }
|
||||
|
||||
its(:xmlrpc_get_users_blogs_enabled?) { should be false }
|
||||
end
|
||||
|
||||
context 'when xmlrpc not enabled' do
|
||||
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php") }
|
||||
|
||||
it 'returns false' do
|
||||
expect(xmlrpc).to receive(:enabled?).and_return(false)
|
||||
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
|
||||
end
|
||||
end
|
||||
|
||||
context 'when xmlrpc enabled' do
|
||||
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php") }
|
||||
|
||||
before { expect(xmlrpc).to receive(:enabled?).and_return(true) }
|
||||
|
||||
context 'when wp.getUsersBlogs methods not listed' do
|
||||
it 'returns false' do
|
||||
expect(xmlrpc).to receive(:available_methods).and_return(%w[m1 m2])
|
||||
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wp.getUsersBlogs method listed' do
|
||||
before { expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2]) }
|
||||
|
||||
context 'when wp.getUsersBlogs method disabled' do
|
||||
it 'returns false' do
|
||||
stub_request(:post, xmlrpc.url).to_return(body: 'XML-RPC services are disabled on this site.')
|
||||
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wp.getUsersBlogs method enabled' do
|
||||
it 'returns true' do
|
||||
stub_request(:post, xmlrpc.url).to_return(body: 'Incorrect username or password.')
|
||||
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be true
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#attacker' do
|
||||
context 'when --password-attack provided' do
|
||||
let(:cli_args) { "#{super()} --password-attack #{attack}" }
|
||||
@@ -92,7 +146,7 @@ describe WPScan::Controller::PasswordAttack do
|
||||
before do
|
||||
expect(controller.target)
|
||||
.to receive(:xmlrpc)
|
||||
.and_return(WPScan::Model::XMLRPC.new("#{target_url}/xmlrpc.php"))
|
||||
.and_return(WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php"))
|
||||
end
|
||||
|
||||
context 'when single xmlrpc' do
|
||||
@@ -117,73 +171,50 @@ describe WPScan::Controller::PasswordAttack do
|
||||
end
|
||||
|
||||
context 'when automatic detection' do
|
||||
before { expect(controller.target).to receive(:xmlrpc).and_return(xmlrpc) }
|
||||
|
||||
context 'when xmlrpc not found' do
|
||||
let(:xmlrpc) { nil }
|
||||
|
||||
context 'when xmlrpc_get_users_blogs_enabled? is false' do
|
||||
it 'returns the WpLogin' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
end
|
||||
end
|
||||
|
||||
context 'when xmlrpc not enabled' do
|
||||
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}/xmlrpc.php") }
|
||||
|
||||
it 'returns the WpLogin' do
|
||||
expect(xmlrpc).to receive(:enabled?).and_return(false)
|
||||
expect(controller).to receive(:xmlrpc_get_users_blogs_enabled?).and_return(false)
|
||||
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
end
|
||||
end
|
||||
|
||||
context 'when xmlrpc enabled' do
|
||||
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}/xmlrpc.php") }
|
||||
context 'when xmlrpc_get_users_blogs_enabled? is true' do
|
||||
before do
|
||||
expect(controller).to receive(:xmlrpc_get_users_blogs_enabled?).and_return(true)
|
||||
|
||||
before { expect(xmlrpc).to receive(:enabled?).and_return(true) }
|
||||
expect(controller.target)
|
||||
.to receive(:xmlrpc).and_return(WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php"))
|
||||
end
|
||||
|
||||
context 'when wp.getUsersBlogs methods not available' do
|
||||
it 'returns the WpLogin' do
|
||||
expect(xmlrpc).to receive(:available_methods).and_return(%w[m1 m2])
|
||||
context 'when WP version not found' do
|
||||
it 'returns the XMLRPC' do
|
||||
expect(controller.target).to receive(:wp_version).and_return(false)
|
||||
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
|
||||
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wp.getUsersBlogs method evailable' do
|
||||
before { expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2]) }
|
||||
context 'when WP version found' do
|
||||
before { expect(controller.target).to receive(:wp_version).and_return(wp_version) }
|
||||
|
||||
context 'when WP version not found' do
|
||||
it 'returns the XMLRPC' do
|
||||
expect(controller.target).to receive(:wp_version).and_return(false)
|
||||
context 'when WP < 4.4' do
|
||||
let(:wp_version) { WPScan::Model::WpVersion.new('3.8.1') }
|
||||
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
|
||||
it 'returns the XMLRPCMulticall' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPCMulticall
|
||||
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
|
||||
end
|
||||
end
|
||||
|
||||
context 'when WP version found' do
|
||||
before { expect(controller.target).to receive(:wp_version).and_return(wp_version) }
|
||||
context 'when WP >= 4.4' do
|
||||
let(:wp_version) { WPScan::Model::WpVersion.new('4.4') }
|
||||
|
||||
context 'when WP < 4.4' do
|
||||
let(:wp_version) { WPScan::Model::WpVersion.new('3.8.1') }
|
||||
|
||||
it 'returns the XMLRPCMulticall' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPCMulticall
|
||||
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
|
||||
end
|
||||
end
|
||||
|
||||
context 'when WP >= 4.4' do
|
||||
let(:wp_version) { WPScan::Model::WpVersion.new('4.4') }
|
||||
|
||||
it 'returns the XMLRPC' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
|
||||
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
|
||||
end
|
||||
it 'returns the XMLRPC' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
|
||||
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
1180
spec/fixtures/db/dynamic_finders.yml
vendored
1180
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1487
spec/fixtures/dynamic_finders/expected.yml
vendored
1487
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
37
spec/fixtures/dynamic_finders/plugin_version/acf-options-for-polylang/change_log/CHANGELOG.md
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/acf-options-for-polylang/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
# Changelog
|
||||
|
||||
## 1.1.6 - 19 Mar 2019
|
||||
* FIX [#32](https://github.com/BeAPI/acf-options-for-polylang/issues/32) & [#40](https://github.com/BeAPI/acf-options-for-polylang/issues/40) : fix `get_field()` if an object is provided (WP Term, WP Post, WP Comment)
|
||||
|
||||
## 1.1.5 - 11 Dec 2018
|
||||
* FIX wrong constant
|
||||
|
||||
## 1.1.4 - 13 Nov 2018
|
||||
* Refactor by adding the Helpers class
|
||||
* FEATURE [#26](https://github.com/BeAPI/acf-options-for-polylang/issues/26) : allow to precise to show or hide default values for a specific option page
|
||||
* FEATURE [#21](https://github.com/BeAPI/acf-options-for-polylang/pull/21) : handle custom option id
|
||||
|
||||
## 1.1.3 - 2 Aug 2018
|
||||
* FEATURE [#23](https://github.com/BeAPI/acf-options-for-polylang/pull/23) : requirement to php5.6 whereas namespace are 5.3
|
||||
|
||||
## 1.1.2 - 31 Jul 2018
|
||||
* FIX [#22](https://github.com/BeAPI/acf-options-for-polylang/pull/22) : error with repeater fields default values
|
||||
|
||||
## 1.1.1 - 9 Mai 2018
|
||||
* FIX [#15](https://github.com/BeAPI/acf-options-for-polylang/issues/15) : way requirements are checked to trigger on front / admin
|
||||
|
||||
## 1.1.0 - Mar 2018
|
||||
* True (complet) plugin.
|
||||
* Add check for ACF 5.6.
|
||||
|
||||
## 1.0.2 - 23 Dec 2017
|
||||
* Refactor and reformat.
|
||||
* Handle all options page and custom post_id.
|
||||
* Now load only if ACF & Polylang are activated.
|
||||
* Load later at plugins loaded.
|
||||
|
||||
## 1.0.1 - 19 Sep 2016
|
||||
* Plugin update.
|
||||
|
||||
## 1.0.0 - 8 Mar 2016
|
||||
* Init plugin.
|
||||
@@ -0,0 +1,31 @@
|
||||
# Copyright (C) 2019 Andy Fragen
|
||||
# This file is distributed under the same license as the Admin Only Jetpack plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Admin Only Jetpack 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/admin-only-jetpack\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-04-26T14:33:28+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: admin-only-jetpack\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Admin Only Jetpack"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/afragen/admin-only-jetpack"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Show Jetpack menu for Admin users only."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Andy Fragen"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
1127
spec/fixtures/dynamic_finders/plugin_version/aio-for-divi/translation_file/languages/en_US.po
vendored
Normal file
1127
spec/fixtures/dynamic_finders/plugin_version/aio-for-divi/translation_file/languages/en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6
spec/fixtures/dynamic_finders/plugin_version/ali2woo-lite/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/ali2woo-lite/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
1.0.0
|
||||
- Initial release
|
||||
|
||||
1.0.2
|
||||
- Fixed issues with the chrome extension
|
||||
- Simpliy way to connect your store to the chrome extension
|
||||
34
spec/fixtures/dynamic_finders/plugin_version/avangpress/change_log/CHANGELOG.md
vendored
Normal file
34
spec/fixtures/dynamic_finders/plugin_version/avangpress/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
#### 1.0.1 - May 10, 2019
|
||||
|
||||
**Fixed**
|
||||
- AffiliateWP integration subscribing the wrong user if affiliate ID differs from user ID.
|
||||
- Broken url
|
||||
|
||||
**Improvements**
|
||||
- Test by latest wordpress 5.2
|
||||
|
||||
#### 1.0.0 - September 21, 2018
|
||||
|
||||
**Changes**
|
||||
|
||||
- Change module name from AvangEmail to AvangPress
|
||||
- Change logo
|
||||
|
||||
**Additions**
|
||||
|
||||
- Fix bug on detect connection
|
||||
- Fix bug saved list to database.
|
||||
|
||||
|
||||
#### 0.0.1 - August 8, 2018
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Init project based on AvangPress for wordpress plugin
|
||||
|
||||
**Additions**
|
||||
|
||||
- Add AvangPress php api to project.
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/awesome-hooks/composer_file/package.json
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/awesome-hooks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "awesome-hooks",
|
||||
"version": "0.0.2",
|
||||
"main": "Gruntfile.js",
|
||||
"author": "Surror",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.1",
|
||||
"grunt-contrib-clean": "^1.1.0",
|
||||
"grunt-contrib-compress": "^1.4.3",
|
||||
"grunt-contrib-concat": "^1.0.1",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-cssmin": "^2.2.1",
|
||||
"grunt-contrib-uglify": "^3.3.0",
|
||||
"grunt-postcss": "^0.9.0",
|
||||
"grunt-rtlcss": "^2.0.1",
|
||||
"grunt-wp-i18n": "~1.0.0"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
37
spec/fixtures/dynamic_finders/plugin_version/block-layouts/composer_file/package.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/block-layouts/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "block-layouts",
|
||||
"version": "1.0.5",
|
||||
"license": "MIT",
|
||||
"main": "blocks/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/derweili/block-layouts"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "cross-env BABEL_ENV=default webpack --watch",
|
||||
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack -p"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/babel-plugin-makepot": "^2.1.2",
|
||||
"@wordpress/babel-preset-default": "^1.2.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-eslint": "^8.2.3",
|
||||
"babel-loader": "^7.1.4",
|
||||
"babel-plugin-transform-class-properties": "^6.24.1",
|
||||
"classnames": "^2.2.6",
|
||||
"cross-env": "^5.1.5",
|
||||
"css-loader": "^0.28.11",
|
||||
"eslint": "^4.19.1",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"node-sass": "^4.9.0",
|
||||
"postcss-loader": "^2.1.5",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.7",
|
||||
"style-loader": "^0.19.1",
|
||||
"webpack": "^3.11.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"react-images": "^1.0.0",
|
||||
"react-photo-gallery": "^7.0.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
# Copyright (C) 2019 Bunty
|
||||
# This file is distributed under the same license as the BuddyPress Profile Field Duplicator package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BuddyPress Profile Field Duplicator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/bp-profile-field-duplicator\n"
|
||||
"POT-Creation-Date: 2019-05-26 15:21:43+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"
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:55
|
||||
msgid "Duplicate This"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:67
|
||||
msgid "Are you sure you want to duplicate this?"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:105
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:114
|
||||
msgid "Field is not available."
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:138
|
||||
msgid " - Copy"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:183
|
||||
msgid "Fail to create duplicate field."
|
||||
msgstr ""
|
||||
|
||||
#: bp-profile-field-duplicator.php:63
|
||||
msgid "%s works with BuddyPress only. Please activate BuddyPress or de-activate %s."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "BuddyPress Profile Field Duplicator"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "bhargavb.wordpress.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Make a duplicate of BuddyPress profile fields."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Bunty"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "bhargavb.wordpress.com/about-me"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,138 @@
|
||||
# Copyright (C) 2019 Marek Vratil
|
||||
# This file is distributed under the same license as the Čeština zalamování řádků plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Čeština zalamování řádků 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bozimediazalomeni\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-04-03T12:19:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: bozimediazalomeni\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Čeština zalamování řádků"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.bozimedia.cz"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Grammar rules for Czech language with related to word wrapping at the end of line."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Marek Vratil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-bozimediazalomeni-activator.php:61
|
||||
msgid "Plugin BožíMédia Zalomení vyžaduje PHP verze %1 nebo vyšší. Na tomto webu je nainstalováno PHP verze %2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bozimediazalomeni-admin.php:112
|
||||
msgid "Čeština: zalomení"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bozimediazalomeni-admin.php:127
|
||||
msgid "Nastavení"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:18
|
||||
msgid "ČEŠTINA - zalamování řádků"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:24
|
||||
msgid "Zalomení řádků a nevhodné výrazy na jejich konci"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:40
|
||||
msgid "Předložky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:46
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:66
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:86
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:106
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:126
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:146
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:166
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:191
|
||||
msgid "Aktivovat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:50
|
||||
msgid "Vložit pevnou mezeru za předložky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:51
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:71
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:91
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:111
|
||||
msgid "(položky oddělte čárkou)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:60
|
||||
msgid "Spojky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:70
|
||||
msgid "Vložit pevnou mezeru za spojky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:80
|
||||
msgid "Zkratky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:90
|
||||
msgid "Vložit pevnou mezeru za zkratky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:100
|
||||
msgid "Jednotky míry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:110
|
||||
msgid "Vložit pevnou mezeru mezi číslovku a jednotku míry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:120
|
||||
msgid "Mezery uprostřed čísel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:131
|
||||
msgid "Vložit pevnou mezeru mezi dvě čísla, která jsou oddělena mezerou, např. telefonní číslo 800 123 456."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:140
|
||||
msgid "Řadové číslovky"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:151
|
||||
msgid "Zabránit zalomení řádku za řadovou číslovkou, např. 1. ledna a v podobných případech)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:160
|
||||
msgid "Měřítka a poměry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:171
|
||||
msgid "Pevné mezery v měřítkách a poměrech (např. 1 : 50 000)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:178
|
||||
msgid "Podpora pluginů"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:185
|
||||
msgid "ACF - Advanced Custom Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bozimediazalomeni-admin-display.php:197
|
||||
msgid "plugin nenalezen"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,8 @@
|
||||
=== version 1.3.0 ===
|
||||
Added support for additional currencies. Thanks to [kennyhunter16](https://wordpress.org/support/users/kennyhunter16/), the currency is now detected from the order that was placed.
|
||||
=== version 1.2.0 ===
|
||||
cj.com added some new required fields. This update brings the plugin into conformation with their documentation at https://developers.cj.com/docs/tracking-integration/advanced-integration
|
||||
=== version 1.1.0 ===
|
||||
Orders that originated from cj.com are now marked as such in the order notes
|
||||
=== version 1.0.0 ===
|
||||
Initial commit
|
||||
@@ -989,3 +989,20 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
<!-- Analytics by WP-Statistics v12.6.2 - https://wp-statistics.com/ -->
|
||||
|
||||
|
||||
<!-- swift-performance-lite -->
|
||||
<!--Cached with Swift Performance Lite-->
|
||||
|
||||
|
||||
<!-- master-popups-lite -->
|
||||
<!-- MPP:MasterPopups v1.0.2 -->
|
||||
|
||||
|
||||
<!-- social-rocket -->
|
||||
<!-- Begin Social Rocket v1.0.1 https://wpsocialrocket.com -->
|
||||
|
||||
|
||||
<!-- open-wp-seo -->
|
||||
<!-- Open WordPress SEO 1.0.0 -->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,401 @@
|
||||
# Copyright (C) 2019 ScriptsTown
|
||||
# This file is distributed under the same license as the Contact Form Query plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Contact Form Query 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/contact-form-query\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-22T23:31:24+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: contact-form-query\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/inc/class-stcfq-admin-menu.php:10
|
||||
#: admin/inc/setting/index.php:13
|
||||
msgid "Contact Form Query"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add a contact form and receive messages directly to your WordPress admin panel with search and filter options. View latest messages received in dashboard."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ScriptsTown"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://scriptstown.com/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: Number of unanswered messages
|
||||
#: admin/inc/class-stcfq-admin-menu.php:14
|
||||
msgid "Contact <span class=\"awaiting-mod\">%d</span>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-admin-menu.php:16
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-admin-menu.php:25
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-admin-menu.php:28
|
||||
#: admin/inc/class-stcfq-setting.php:7
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:41
|
||||
#: admin/inc/class-stcfq-message.php:97
|
||||
msgid "Message not found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:58
|
||||
msgid "Message deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:123
|
||||
msgid "Message status updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:147
|
||||
msgid "Contact Form Latest Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:51
|
||||
#: includes/class-stcfq-helper.php:17
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:54
|
||||
#: includes/class-stcfq-helper.php:25
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:57
|
||||
#: admin/inc/message/filter.php:17
|
||||
#: admin/inc/message/filter.php:45
|
||||
#: admin/inc/message/index.php:19
|
||||
#: admin/inc/message/load.php:37
|
||||
#: admin/inc/message/view.php:32
|
||||
#: includes/class-stcfq-helper.php:33
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:60
|
||||
#: admin/inc/message/filter.php:26
|
||||
#: admin/inc/message/filter.php:48
|
||||
#: admin/inc/message/index.php:20
|
||||
#: admin/inc/message/load.php:40
|
||||
#: admin/inc/message/view.php:24
|
||||
#: admin/inc/message/view.php:36
|
||||
#: includes/class-stcfq-helper.php:41
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:66
|
||||
msgid "The fields are invalid or not supported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:72
|
||||
msgid "Please enable at least one field."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:113
|
||||
#: admin/inc/class-stcfq-setting.php:149
|
||||
#: admin/inc/class-stcfq-setting.php:165
|
||||
msgid "Setting saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:5
|
||||
msgid "Search & Filter Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:20
|
||||
#: admin/inc/message/filter.php:46
|
||||
#: admin/inc/message/index.php:21
|
||||
#: admin/inc/message/load.php:43
|
||||
#: admin/inc/message/view.php:40
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:23
|
||||
#: admin/inc/message/filter.php:47
|
||||
#: admin/inc/message/index.php:22
|
||||
#: admin/inc/message/load.php:46
|
||||
#: admin/inc/message/view.php:44
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:29
|
||||
#: admin/inc/message/filter.php:49
|
||||
#: admin/inc/message/index.php:23
|
||||
#: admin/inc/message/load.php:49
|
||||
#: admin/inc/message/view.php:48
|
||||
msgid "Answered"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:32
|
||||
#: admin/inc/message/filter.php:50
|
||||
#: admin/inc/message/view.php:52
|
||||
#: admin/inc/message/view.php:93
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:62
|
||||
msgid "Add more"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:63
|
||||
msgid "Apply filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:12
|
||||
msgid "Contact Form Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:18
|
||||
#: admin/inc/message/load.php:34
|
||||
msgid "S.No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:24
|
||||
#: admin/inc/message/view.php:56
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:25
|
||||
#: admin/inc/message/load.php:55
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:68
|
||||
msgid "No more messages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/latest.php:42
|
||||
msgid "View all"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:50
|
||||
#: admin/inc/message/view.php:49
|
||||
#: admin/inc/setting/tabs/form-fields.php:50
|
||||
#: admin/inc/setting/tabs/form-fields.php:76
|
||||
#: admin/inc/setting/tabs/form-fields.php:111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:50
|
||||
#: admin/inc/message/view.php:49
|
||||
#: admin/inc/setting/tabs/form-fields.php:55
|
||||
#: admin/inc/setting/tabs/form-fields.php:81
|
||||
#: admin/inc/setting/tabs/form-fields.php:116
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:52
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:59
|
||||
msgid "Are you sure to delete this message?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:74
|
||||
#: admin/inc/message/view.php:78
|
||||
#: admin/inc/message/view.php:82
|
||||
msgid "Is Answered?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:85
|
||||
msgid "Mark this message as \"Answered\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:98
|
||||
msgid "Enter any extra note."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:106
|
||||
#: admin/inc/setting/tabs/captcha.php:106
|
||||
#: admin/inc/setting/tabs/form-fields.php:182
|
||||
#: admin/inc/setting/tabs/uninstall.php:39
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:7
|
||||
#: admin/inc/setting/tabs/form-fields.php:30
|
||||
msgid "Form Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:8
|
||||
#: admin/inc/setting/tabs/captcha.php:25
|
||||
msgid "Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:9
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:29
|
||||
msgid "Select Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:51
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:56
|
||||
msgid "Enter Google reCAPTCHA v2 Site Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:57
|
||||
#: admin/inc/setting/tabs/captcha.php:70
|
||||
msgid "Click Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:64
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:69
|
||||
msgid "Enter Google reCAPTCHA v2 Secret Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:77
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:82
|
||||
#: admin/inc/setting/tabs/captcha.php:99
|
||||
msgid "Select Google reCAPTCHA Version 2 Theme."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:20
|
||||
msgid "Contact Form Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:24
|
||||
msgid "Use above shortcode in any page or post to display the contact form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:37
|
||||
msgid "field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:45
|
||||
#: admin/inc/setting/tabs/form-fields.php:106
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:62
|
||||
msgid "Form Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:71
|
||||
msgid "Required Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:88
|
||||
#: admin/inc/setting/tabs/form-fields.php:132
|
||||
#: admin/inc/setting/tabs/form-fields.php:167
|
||||
msgid "Additional Class (use space for multiple classes)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:101
|
||||
msgid "Consent Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:123
|
||||
msgid "Field Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:141
|
||||
msgid "Validation message (if unchecked)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:152
|
||||
msgid "Submit Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:158
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/uninstall.php:15
|
||||
msgid "This will delete all the data when you delete the plugin using WordPress \"Plugins\" menu if you enable this setting."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/uninstall.php:22
|
||||
msgid "Data Deletion"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/uninstall.php:26
|
||||
#: admin/inc/setting/tabs/uninstall.php:30
|
||||
msgid "Delete all data on plugin's deletion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:104
|
||||
msgid "I consent to having this website store my submitted information so they can respond to my inquiry."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:108
|
||||
msgid "Please confirm."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:121
|
||||
msgid "Send Your Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:129
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:130
|
||||
msgid "Google reCAPTCHA Version 2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:136
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:137
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:16
|
||||
msgid "Error occurred while sending your message. Please try again after some time."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:45
|
||||
#: public/inc/class-stcfq-shortcode.php:48
|
||||
msgid "<strong>ERROR:</strong> Please confirm you are not a robot."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:82
|
||||
msgid "Please provide your name."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:91
|
||||
msgid "Please provide your email."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:93
|
||||
msgid "Please provide a valid email."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:102
|
||||
msgid "Please specify subject."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:111
|
||||
msgid "Please provide your message."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:146
|
||||
msgid "Thank you for contacting us. We will reply to your email as soon as possible."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,137 @@
|
||||
# Copyright (C) 2019 1&1 IONOS
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CoSy Address Book 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/cosy-address-book\n"
|
||||
"POT-Creation-Date: 2019-03-11 17:02:56+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 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-i18n 0.5.4\n"
|
||||
|
||||
#: cosy-address-book/cosy-address-book.php:87
|
||||
msgid "cosy_address_book_admin_page_title"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/cosy-address-book.php:88
|
||||
msgid "cosy_address_book_menu_title"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:2
|
||||
msgid "cosy_address_book_invitation"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:4
|
||||
#: cosy-address-book/inc/views/description.php:22
|
||||
msgid "cosy_address_book_url_text"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:7
|
||||
#: cosy-address-book/inc/views/settings.php:2
|
||||
msgid "cosy_address_book_connection_header"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:8
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:18
|
||||
msgid "cosy_address_book_generic_error"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:11
|
||||
msgid "cosy_address_book_guidance_summary"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:15
|
||||
msgid "cosy_address_book_guidance_step_one_label"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:19
|
||||
msgid "cosy_address_book_guidance_step_one_content"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:29
|
||||
msgid "cosy_address_book_guidance_step_two_label"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:33
|
||||
msgid "cosy_address_book_guidance_step_two_content"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:37
|
||||
msgid "cosy_address_book_activation_form_label"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:45
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:55
|
||||
msgid "cosy_address_book_form_button_text"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/main.php:3
|
||||
msgid "cosy_address_book_menu_page_headline"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/description.php:2
|
||||
msgid "cosy_address_book_plugin_description_header"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/description.php:3
|
||||
msgid "cosy_address_book_plugin_activation_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/description.php:11
|
||||
msgid "cosy_address_book_web_form_insertion_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:15
|
||||
msgid "cosy_address_book_mapping_description"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:22
|
||||
msgid "cosy_address_book_mapping_header_api_fields"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:25
|
||||
msgid "cosy_address_book_mapping_header_form_fields"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:50
|
||||
msgid "cosy_address_book_consent_field_constraint_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:60
|
||||
msgid "cosy_address_book_synchronisation_ready_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:65
|
||||
msgid "cosy_address_book_gdpr_hint_content"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/settings.php:3
|
||||
msgid "cosy_address_book_connection_confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/settings.php:6
|
||||
msgid "cosy_address_book_deconnection_url_text"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "CoSy Address Book"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.ionos.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Sends visitor contact data generated by contact forms embedded in WordPress "
|
||||
"websites to CoSy Address Book"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "1&1 IONOS"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
Version 1.0.1 - Monday, 30th May 2019
|
||||
- Fix: Authentication with new AffiliateWP setup where visits are Zero.
|
||||
|
||||
Version 1.0.0 - Monday, 20th May 2019
|
||||
- Initial Release
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/culqi-full-integration/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/culqi-full-integration/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
2019-04-22 - version 1.0.0
|
||||
* Ready
|
||||
@@ -0,0 +1,141 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Daily Snapshot for WooCommerce Admin 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-06-05 18:53+0530\n"
|
||||
"PO-Revision-Date: 2019-06-05 18:53+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter <webmaster@makewebbetter.com>\n"
|
||||
"Language: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-KeywordsList: __;esc_html_e\n"
|
||||
"X-Poedit-Basepath: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: daily-snapshot-for-woocommerce-admin.php:34
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The Daily Snapshots for WooCommerce Admin feature plugin requires <a href="
|
||||
"\"%s\">WooCommerce Admin</a> to be installed and active."
|
||||
msgstr ""
|
||||
|
||||
#: daily-snapshot-for-woocommerce-admin.php:78
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:32
|
||||
msgid "Daily Snapshot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:53
|
||||
msgid "Automated Reports"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:58
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:62
|
||||
msgid "Enable Daily Snapshot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:65
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:67
|
||||
msgid "Comma seperated email addresses, reports are sent to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:68
|
||||
msgid "Comma seperated emails to send reports to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:212
|
||||
#, php-format
|
||||
msgid "Daily summary of %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:214
|
||||
msgid "Store Admin"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:27
|
||||
msgid "Gross Revenue"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:65
|
||||
msgid "Net Revenue"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:94
|
||||
msgid "Taxes|Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:112
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:139
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:181
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:204
|
||||
msgid "Avg Orders Value"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:232
|
||||
msgid "Product Sold"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:265
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:288
|
||||
msgid "Avg items/order"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:297
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:324
|
||||
msgid "Best Product"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:361
|
||||
msgid "Coupons"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:384
|
||||
msgid "Coupons Value"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:417
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:440
|
||||
msgid "Refunded Value"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:482
|
||||
msgid "New/Returning Customer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:493
|
||||
msgid "Number of returning customer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:507
|
||||
msgid "Number of new customer"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,2 @@
|
||||
Version 1.0.0
|
||||
- Initial Release
|
||||
@@ -0,0 +1,123 @@
|
||||
# Copyright (C) 2019 WebEmpire
|
||||
# This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Design Sidebar Using Page Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/design-sidebar-with-builder\n"
|
||||
"POT-Creation-Date: 2019-04-27 19:05:24+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-sidebar-builder-cpt.php:59
|
||||
msgid "Search Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:60
|
||||
msgid "Sidebar Page"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:61
|
||||
msgid "Edit Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:62
|
||||
msgid "View Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:63
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:64
|
||||
msgid "Update Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:65
|
||||
msgid "Add New Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:66
|
||||
msgid "New Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:103
|
||||
#: classes/class-sidebar-builder-cpt.php:104
|
||||
msgid "Sidebar Builder"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:161
|
||||
msgid "Page Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:162
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:163
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-template-library-widget.php:60
|
||||
msgid "Sidebar Template Library"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-template-library-widget.php:121
|
||||
msgid "No templates to show."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-template-library-widget.php:127
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-template-library-widget.php:132
|
||||
msgid "Choose Template"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-template-library-widget.php:134
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Design Sidebar Using Page Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "#"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"The plugin is useful to edit and design the sidebar of your site without "
|
||||
"sacrificing your favorite page builder."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WebEmpire"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:57
|
||||
msgctxt "flow general name"
|
||||
msgid "Sidebar Builder"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-sidebar-builder-cpt.php:58
|
||||
msgctxt "flow singular name"
|
||||
msgid "Sidebar"
|
||||
msgstr ""
|
||||
8
spec/fixtures/dynamic_finders/plugin_version/easy-feedback/change_log/changelog.txt
vendored
Normal file
8
spec/fixtures/dynamic_finders/plugin_version/easy-feedback/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
## [1.0.2] - 2019-05-29
|
||||
- Readme fixes
|
||||
|
||||
## [1.0.1] - 2019-05-29
|
||||
### Fixed
|
||||
- CSS changes
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "emoji-block-autocomplete",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject",
|
||||
"zip": "node zip.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"bestzip": "^2.1.4",
|
||||
"cgb-scripts": "1.17.0",
|
||||
"dom-scroll-into-view": "^1.2.1",
|
||||
"emoji.json": "^12.0.0",
|
||||
"fuse.js": "^3.4.5",
|
||||
"scroll-into-view": "^1.9.7"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,192 @@
|
||||
# FaniMani.pl
|
||||
# Copyright 2019 FaniMani.pl
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FaniMani.pl v1.1.3\n"
|
||||
"Report-Msgid-Bugs-To: FaniMani.pl <info@fanimani.pl>\n"
|
||||
"POT-Creation-Date: 2019-05-04 19:52+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Tomasz Topa <tomasz@topa.pl>\n"
|
||||
"Language-Team: FaniMani.pl <info@fanimani.pl>\n"
|
||||
"Language: pl_PL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
||||
"|| n%100>14) ? 1 : 2);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.2.1\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPath-1: fanimani.php\n"
|
||||
|
||||
#: fanimani.php:57
|
||||
msgid "FaniMani.pl settings"
|
||||
msgstr "Ustawienia FaniMani.pl"
|
||||
|
||||
#: fanimani.php:107
|
||||
msgid "Links updated"
|
||||
msgstr "Linki zaktualizowane"
|
||||
|
||||
#: fanimani.php:112
|
||||
msgid "Main settings"
|
||||
msgstr "Ustawienia główne"
|
||||
|
||||
#: fanimani.php:113
|
||||
msgid "FaniMani Widget"
|
||||
msgstr "Widget FaniMani"
|
||||
|
||||
#: fanimani.php:128
|
||||
msgid "Beneficiary Key"
|
||||
msgstr "Klucz Beneficjenta"
|
||||
|
||||
#: fanimani.php:131
|
||||
msgid "Unique Beneficiary Key received from FaniMani"
|
||||
msgstr "Unikalny Klucz Beneficjenta otrzymany od FaniMani"
|
||||
|
||||
#: fanimani.php:146
|
||||
msgid ""
|
||||
"You can read more about FaniSEO at <a href=\"https://fanimani.pl/faniseo?"
|
||||
"utm_source=plugin-wordpress\" taget=\"_blank\">fanimani.pl/faniseo</a>"
|
||||
msgstr ""
|
||||
"Więcej o programie FaniSEO na stronie <a href=\"https://fanimani.pl/faniseo?"
|
||||
"utm_source=plugin-wordpress” taget=\"_blank”>fanimani.pl/faniseo</a>"
|
||||
|
||||
#: fanimani.php:155 fanimani.php:159
|
||||
msgid "Enable FaniSEO"
|
||||
msgstr "Włącz FaniSEO"
|
||||
|
||||
#: fanimani.php:164
|
||||
msgid "Section title"
|
||||
msgstr "Tytuł sekcji"
|
||||
|
||||
#: fanimani.php:166
|
||||
msgid "Our donors"
|
||||
msgstr "Nasi darczyńcy"
|
||||
|
||||
#: fanimani.php:170
|
||||
msgid "Color of texts and links"
|
||||
msgstr "Kolor tekstu i linków"
|
||||
|
||||
#: fanimani.php:179
|
||||
msgid ""
|
||||
"Make sure that there is appropriate contrast between the background and text "
|
||||
"color - e.g. dark background and light links or light background and dark "
|
||||
"links. The links must be clearly visible on the page. The offer can be "
|
||||
"cancelled due to poorly visible links."
|
||||
msgstr ""
|
||||
"Zadbaj o odpowiedni kontrast tła i linków - np. ciemne tło i jasne linki, "
|
||||
"albo jasne tło i ciemne linki. Linki muszą być dobrze widoczne na stronie. "
|
||||
"Oferta może zostać anulowana jeśli linki nie będą widoczne."
|
||||
|
||||
#: fanimani.php:183 fanimani.php:269
|
||||
msgid ""
|
||||
"Do you use any caching plugins? Remember to clear the cache after changing "
|
||||
"the settings."
|
||||
msgstr ""
|
||||
"Korzystasz z wtyczek do cache? Pamiętaj o odświeżeniu cache po zmianie tego "
|
||||
"ustawienia."
|
||||
|
||||
#: fanimani.php:190
|
||||
msgid "Available links"
|
||||
msgstr "Dostępne linki"
|
||||
|
||||
#: fanimani.php:192
|
||||
msgid "Last update"
|
||||
msgstr "Ostatnia aktualizacja"
|
||||
|
||||
#: fanimani.php:194
|
||||
msgid "Download links for the first time"
|
||||
msgstr "Pobierz linki po raz pierwszy"
|
||||
|
||||
#: fanimani.php:197
|
||||
msgid "Download links"
|
||||
msgstr "Pobierz linki"
|
||||
|
||||
#: fanimani.php:203
|
||||
msgid "Start date"
|
||||
msgstr "Rozpoczęcie"
|
||||
|
||||
#: fanimani.php:204
|
||||
msgid "End date"
|
||||
msgstr "Zakończenie"
|
||||
|
||||
#: fanimani.php:205
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
#: fanimani.php:206
|
||||
msgid "Anchor text"
|
||||
msgstr "Tekst linku"
|
||||
|
||||
#: fanimani.php:207
|
||||
msgid "Title attribute"
|
||||
msgstr "Title"
|
||||
|
||||
#: fanimani.php:226
|
||||
msgid ""
|
||||
"Do you use any caching plugins? Remember to clear the cache after "
|
||||
"downloading new links."
|
||||
msgstr ""
|
||||
"Korzystasz z wtyczek do cache? Pamiętaj o odświeżeniu cache po pobraniu "
|
||||
"nowych linków."
|
||||
|
||||
#: fanimani.php:228
|
||||
msgid "No available links"
|
||||
msgstr "Brak dostępnych linków"
|
||||
|
||||
#: fanimani.php:233 fanimani.php:275
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please enter the <strong>Beneficiary Key</strong> in <a href=\"%d\">Main "
|
||||
"settings tab</a>"
|
||||
msgstr ""
|
||||
"Uzupełnij <strong>Klucz Beneficjenta</strong> w <a href=\"%d\">zakładce "
|
||||
"Ustawienia główne</a>"
|
||||
|
||||
#: fanimani.php:250
|
||||
msgid ""
|
||||
"FaniMani Widget is an easy tool that will help you \"squeeze out\" a bit "
|
||||
"more from your website."
|
||||
msgstr ""
|
||||
"Widget FaniMani to proste narzędzie, które pozwoli Wam \"wycisnąć\" więcej z "
|
||||
"Waszej strony WWW."
|
||||
|
||||
#: fanimani.php:252
|
||||
msgid ""
|
||||
"Configure selected features in the \"Widget\" section in your <a href="
|
||||
"\"https://fanimani.pl?utm_source=plugin-wordpress\" target=\"_blank"
|
||||
"\">Beneficiary Panel </a> at FaniMani.pl"
|
||||
msgstr ""
|
||||
"Skonfiguruj wybrane funkcje w sekcji \"Widget\" w <a href=\"https://fanimani."
|
||||
"pl?utm_source=plugin-wordpress\" target=\"_blank\">Panelu Beneficjenta</a> "
|
||||
"na FaniMani.pl"
|
||||
|
||||
#: fanimani.php:253
|
||||
msgid ""
|
||||
"You can read more about the Widget at <a href=\"https://fanimani.pl/widget/?"
|
||||
"utm_source=plugin-wordpress\" taget=\"_blank\">fanimani.pl/widget</a>"
|
||||
msgstr ""
|
||||
"Więcej na temat widgetu dowiesz się na <a href=\"https://fanimani.pl/widget/?"
|
||||
"utm_source=plugin-wordpress\" taget=\"_blank\">fanimani.pl/widget</a>"
|
||||
|
||||
#: fanimani.php:254
|
||||
msgid "Use the option below to add the Widget to your website."
|
||||
msgstr "Skorzystaj z opcji poniżej, aby dodać Widget do Waszej strony."
|
||||
|
||||
#: fanimani.php:260 fanimani.php:264
|
||||
msgid "Enable FaniMani Widget"
|
||||
msgstr "Uruchom Widget FaniMani"
|
||||
|
||||
#: fanimani.php:322
|
||||
msgid "None"
|
||||
msgstr "Brak"
|
||||
|
||||
#: fanimani.php:324
|
||||
msgid "Downloaded links"
|
||||
msgstr "Pobrane linki"
|
||||
@@ -0,0 +1,73 @@
|
||||
# Copyright (C) 2019 Christoph Nagel
|
||||
# This file is distributed under the GPL-3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Floating Contact Button 1.0\n"
|
||||
"Report-Msgid-Bugs-To: <chris@cms-geek.de>\n"
|
||||
"POT-Creation-Date: 2019-04-23 08:00:00+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-05-19 12:46+0200\n"
|
||||
"Language-Team: Christoph Nagel <chris@cms-geek.de>\n"
|
||||
"X-Generator: Poedit 2.2.1\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: de_DE\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: floating-contact.php:4
|
||||
msgid "Integrates a floating contact button and opens an modal with your favorite contact form."
|
||||
msgstr ""
|
||||
"Integriert einen Floating-Kontakt-Button und öffnet ein Modal mit einem bevorzugten "
|
||||
"Kontaktformular."
|
||||
|
||||
#: floating-contact.php:69
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Plugin Einstellungen"
|
||||
|
||||
#: floating-contact.php:71
|
||||
msgid "Insert here your shortcode:"
|
||||
msgstr "Shortcode einfügen:"
|
||||
|
||||
#: floating-contact.php:79
|
||||
msgid "Button color (optional):"
|
||||
msgstr "Button Farbe (optional):"
|
||||
|
||||
#: floating-contact.php:92
|
||||
msgid ""
|
||||
"1. Install your favorite contact form plugin. Tested with Contact Form 7, Ninja Forms & "
|
||||
"Caldera Forms."
|
||||
msgstr ""
|
||||
"1. Installieren sie ihr bevorzugtes Kontaktformular-Plugin. Getestet mit Contact Form 7, "
|
||||
"Ninja Forms & Caldera Forms."
|
||||
|
||||
#: floating-contact.php:93
|
||||
msgid ""
|
||||
"2. Generate a form and entering the shortcode into the field. This form will shown in the "
|
||||
"modal, when the Floating Contact Button is clicked."
|
||||
msgstr ""
|
||||
"2. Generieren sie ein Formular und geben sie den Shortcode in das Feld ein. Dieses Formular "
|
||||
"wird im Modal angezeigt, wenn auf die Schaltfläche des \"Floating Contact Button\" geklickt "
|
||||
"wird."
|
||||
|
||||
#: floating-contact.php:94
|
||||
msgid "3. Change the main color of the button (default value: #ff0000)."
|
||||
msgstr "3. Ändern sie die Hauptfarbe der Schaltfläche (Standardwert: #ff0000)."
|
||||
|
||||
#: floating-contact.php:124
|
||||
msgid "Settings Saved"
|
||||
msgstr "Einstellungen gespeichert"
|
||||
|
||||
#: floating-contact.php:135
|
||||
msgid "Save Settings"
|
||||
msgstr "Speichern"
|
||||
|
||||
#: floating-contact.php:151
|
||||
msgid "Close"
|
||||
msgstr "Schliessen"
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/gitblock/translation_file/languages/gitblock.po
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/gitblock/translation_file/languages/gitblock.po
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# Copyright (C) 2019 gitblock — Github Block Plugin
|
||||
# This file is distributed under the same license as the gitblock — Github Block Plugin package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gitblock — Github Block Plugin 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gitblock\n"
|
||||
"POT-Creation-Date: 2019-02-04 17:52:19+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: Thrijith Thankachan <thrijith13@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/init.php:79
|
||||
msgid "Github OAuth Token"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:86
|
||||
msgid "Enter Github OAuth Token"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:104
|
||||
msgid "Enter your Github OAuth Token to fetch data from Github."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,240 @@
|
||||
# Copyright (C) 2019 GreenPay
|
||||
# This file is distributed under the same license as the GreenPay Payment Gateway plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GreenPay Payment Gateway 2.2.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/greenpay-payment-gateway\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-08T22:52:43+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: greenpay-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "GreenPay Payment Gateway"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://support.greenpay.me/hc/es-mx/articles/360020253972-Plugin-para-Wordpres"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Take card payments on your store using GreenPay."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/class-greenpay-payment-gateway.php:40
|
||||
msgid "GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://greenpay.me"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. URL link.
|
||||
#: greenpay-payment-gateway.php:32
|
||||
msgid "GreenPay payments requires WooCommerce to be installed and active. You can download %s here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:33
|
||||
msgid "GreenPay Gateway configurations."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:41
|
||||
msgid "Pay with a credit or debit card through GreenPay."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:107
|
||||
msgid "Authorization number: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:113
|
||||
#: includes/catch-greenpay-checkout-response.php:108
|
||||
msgid "Error : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:120
|
||||
msgid "There was an error comunicating with Greenpay, contact to support@greenpay.me."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:145
|
||||
msgid "Error : This subscription does not have a card token associated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:309
|
||||
msgid "Error creating change payment method order, try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:321
|
||||
msgid "Error creating subscription order, try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:336
|
||||
msgid "Error creating checkout order, try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:8
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:10
|
||||
msgid "Enable changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:14
|
||||
msgid "MerchandId"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:16
|
||||
msgid "Its the merchantId value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:22
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:24
|
||||
msgid "Its the secret value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:30
|
||||
msgid "TerminalId"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:32
|
||||
msgid "Its the terminalId value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:38
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:40
|
||||
msgid "Its the currency code value in ISO 4217 accepted by the terminalId"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:46
|
||||
msgid "Pulic key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:48
|
||||
msgid "Its the public key value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:54
|
||||
msgid "Checkout form URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:56
|
||||
msgid "Its the checkout form url given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:62
|
||||
msgid "Merchant URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:64
|
||||
msgid "Its the merchant url given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:70
|
||||
msgid "Gateway style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:72
|
||||
msgid "Use CSS ONLY to customize the web forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:81
|
||||
msgid "Tokenize form URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:83
|
||||
msgid "Its the tokenize form url given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:18
|
||||
#: includes/catch-greenpay-token-response.php:63
|
||||
msgid "Update payment method was cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:19
|
||||
#: includes/catch-greenpay-token-response.php:64
|
||||
msgid "Update payment method was cancel by the user"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:40
|
||||
#: includes/catch-greenpay-token-response.php:85
|
||||
msgid "New card : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:49
|
||||
#: includes/catch-greenpay-token-response.php:94
|
||||
msgid "Error updating payment method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:50
|
||||
#: includes/catch-greenpay-token-response.php:95
|
||||
msgid "Error updating payment method : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:24
|
||||
msgid "Subcription was cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:27
|
||||
#: includes/catch-greenpay-checkout-response.php:87
|
||||
msgid "Order cancelled by user"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:33
|
||||
msgid "Subscription canceled by the user."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:61
|
||||
msgid "Subscription added."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:62
|
||||
msgid "Card : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:65
|
||||
msgid "Error paying with the card."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:74
|
||||
msgid "Error in tokenization: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:75
|
||||
msgid "Error adding card."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:85
|
||||
msgid "Checkout was cancel."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:100
|
||||
msgid "Card number : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:101
|
||||
msgid "Authorization number : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:104
|
||||
msgid "Paid success."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:109
|
||||
msgid "Error processing transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:114
|
||||
msgid "GreenPay response was alter on the processes."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,75 @@
|
||||
# Copyright (C) 2019 IDPay
|
||||
# This file is distributed under the same license as the IDPay myCRED plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: IDPay myCRED 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/idpay-mycred\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-18T12:07:10+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: idpay-mycred\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "IDPay myCRED"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "IDPay payment gateway for myCRED"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "IDPay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://idpay.ir"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:11
|
||||
#: class-mycred-gateway-idpay.php:60
|
||||
#: class-mycred-gateway-idpay.php:64
|
||||
#: class-mycred-gateway-idpay.php:128
|
||||
msgid "IDPay payment gateway"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:21
|
||||
msgid "IDPay Gateway"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:75
|
||||
msgid "Rial"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:76
|
||||
msgid "Toman"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:91
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:105
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:243
|
||||
msgid "An error occurred while verifying the transaction. status: %s, code: %s, message: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:253
|
||||
msgid "Payment succeeded. Status: %s, Track id: %s, Card no: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:259
|
||||
msgid "An unexpected error occurred when completing the payment but it is done at the gateway. Track id is: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:265
|
||||
#: class-mycred-gateway-idpay.php:273
|
||||
msgid "Payment failed. Status: %s, Track id: %, Card no: %s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,146 @@
|
||||
# Copyright (C) 2019 Integration CDS
|
||||
# This file is distributed under the same license as the Integration CDS package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integration CDS 1.1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/integration-cds\n"
|
||||
"POT-Creation-Date: 2019-05-16 14:34: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"
|
||||
|
||||
#: admin.php:32
|
||||
msgid "CDS Integration Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:190
|
||||
msgid "Sorry, this authentication type is not supported at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:197
|
||||
msgid "Sorry, this deployment type is not supported at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:237
|
||||
msgid "System Information"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:253
|
||||
msgid "Resource Usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:258
|
||||
msgid "Memory Usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:265
|
||||
msgid "Disk Usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:305
|
||||
msgid "Show recent log"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:312
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:313
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:314
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:315
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:326
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# integration-cds.pot (Integration CDS 1.1.1) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: core.php:40 core.php:41
|
||||
msgid "Integration CDS"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:52 core.php:53
|
||||
msgid "Integration CDS Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:471
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:472
|
||||
msgid "Connection"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:473
|
||||
msgid "Caching"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:474
|
||||
msgid "Add-ons"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:475
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: integration-cds.php:56
|
||||
msgid ""
|
||||
"Integration CDS detected that your PHP version is %1$s. The plugin requires "
|
||||
"at least PHP %2$s to work. Please update your PHP installation to enable the "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/ActivateAddon.php:87
|
||||
msgid "Successfully activated."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/CheckConnection.php:60
|
||||
msgid "Provided deployment type is not supported."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/DeactivateAddon.php:69
|
||||
msgid "Successfully deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/GetEntityMetadata.php:61
|
||||
msgid "Connection to CDS has not been configured."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/GetEntityMetadata.php:69
|
||||
msgid "Authentication against CDS failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Shortcode/Twig.php:54
|
||||
msgid ""
|
||||
"<div class=\"alert alert-danger\">Failed to render the template: %s</div>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Twig/Template.php:60
|
||||
msgid "Unexpected error. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# integration-cds.pot (Integration CDS 1.1.1) #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# integration-cds.pot (Integration CDS 1.1.1) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://alexacrm.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Integrate Common Data Service organizations with WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "AlexaCRM"
|
||||
msgstr ""
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/jquery-manager/composer_file/package.json
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/jquery-manager/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "jquery-manager",
|
||||
"version": "1.9.0",
|
||||
"description": "Manage jQuery and jQuery Migrate on a WordPress website, select a specific jQuery and/or jQuery Migrate version. The ultimate jQuery debugging tool for WordPress. This plugin is a open source project, made possible by your contribution (code). Development is done on GitHub.",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Remzi1993/jquery-manager.git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress"
|
||||
],
|
||||
"author": "Remzi Cavdar",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Remzi1993/jquery-manager/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Remzi1993/jquery-manager"
|
||||
}
|
||||
@@ -0,0 +1,283 @@
|
||||
# Copyright (C) 2019 ScriptsTown
|
||||
# This file is distributed under the same license as the Login Security Recaptcha plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Login Security Recaptcha 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/login-security-recaptcha\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-22T04:07:02+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: login-security-recaptcha\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/inc/class-stlsr-admin-menu.php:6
|
||||
#: admin/inc/class-stlsr-admin-menu.php:9
|
||||
#: admin/inc/setting/index.php:13
|
||||
msgid "Login Security Recaptcha"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Secure WordPress login, registration and comment form with Google reCAPTCHA. Monitor error logs. Prevent Brute-force attack and much more."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ScriptsTown"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://scriptstown.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-admin-menu.php:6
|
||||
msgid "Login Security"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:7
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:72
|
||||
msgid "Please select valid captcha."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:124
|
||||
msgid "Setting saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:147
|
||||
msgid "The plugin has been reset to its default state."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:161
|
||||
msgid "The error logs have been cleared successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:7
|
||||
#: admin/inc/setting/tabs/error-logs.php:27
|
||||
msgid "Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:8
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:9
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:82
|
||||
msgid "Please set the the \"Site Key\" for \"Google reCAPTCHA Version 2\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:89
|
||||
msgid "Please set the the \"Secret Key\" for \"Google reCAPTCHA Version 2\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:99
|
||||
msgid "Please set the the \"Site Key\" for \"Google reCAPTCHA Version 3\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:106
|
||||
msgid "Please set the the \"Secret Key\" for \"Google reCAPTCHA Version 3\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:124
|
||||
msgid "Enable Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:128
|
||||
msgid "Enable Captcha at Login Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:132
|
||||
msgid "Enable at Login Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:190
|
||||
msgid "Only when user is not logged in."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:202
|
||||
msgid "Captcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:206
|
||||
msgid "Set Captcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:229
|
||||
#: admin/inc/setting/tabs/captcha.php:283
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:234
|
||||
msgid "Enter Google reCAPTCHA v2 Site Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:235
|
||||
#: admin/inc/setting/tabs/captcha.php:248
|
||||
#: admin/inc/setting/tabs/captcha.php:289
|
||||
#: admin/inc/setting/tabs/captcha.php:302
|
||||
msgid "Click Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:242
|
||||
#: admin/inc/setting/tabs/captcha.php:296
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:247
|
||||
msgid "Enter Google reCAPTCHA v2 Secret Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:255
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:260
|
||||
#: admin/inc/setting/tabs/captcha.php:277
|
||||
msgid "Select Google reCAPTCHA Version 2 Theme."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:288
|
||||
msgid "Enter Google reCAPTCHA v3 Site Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:301
|
||||
msgid "Enter Google reCAPTCHA v3 Secret Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:309
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:314
|
||||
msgid "Select Google reCAPTCHA Version 3 Score."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:331
|
||||
msgid "reCAPTCHA v3 returns a score (0.0 is very likely a bot). Select Google reCAPTCHA Version 3 Score."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:338
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:11
|
||||
msgid "Last 20 Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:18
|
||||
msgid "Are you sure to clear the error logs?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:18
|
||||
msgid "Clear Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:26
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:28
|
||||
msgid "Error Code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:29
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:30
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:48
|
||||
msgid "There was no error."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:13
|
||||
msgid "This will reset the plugin to its default state and clear all data created by this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Are you sure to reset the plugin to its default state?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Reset Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:7
|
||||
msgid "Google reCAPTCHA Version 2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:8
|
||||
msgid "Google reCAPTCHA Version 3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:14
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:15
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:21
|
||||
msgid "0.1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:22
|
||||
msgid "0.2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:23
|
||||
msgid "0.3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:24
|
||||
msgid "0.4"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:25
|
||||
msgid "0.5"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:64
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:107
|
||||
#: public/inc/class-stlsr-captcha.php:158
|
||||
#: public/inc/class-stlsr-captcha.php:225
|
||||
#: public/inc/class-stlsr-captcha.php:276
|
||||
#: public/inc/class-stlsr-captcha.php:343
|
||||
#: public/inc/class-stlsr-captcha.php:394
|
||||
#: public/inc/class-stlsr-captcha.php:465
|
||||
#: public/inc/class-stlsr-captcha.php:516
|
||||
msgid "<strong>ERROR:</strong> Please confirm you are not a robot."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:151
|
||||
#: public/inc/class-stlsr-captcha.php:269
|
||||
#: public/inc/class-stlsr-captcha.php:387
|
||||
#: public/inc/class-stlsr-captcha.php:509
|
||||
msgid "low-score"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:182
|
||||
msgid "Lost Password"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:300
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:422
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/lsx-blocks/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/lsx-blocks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
## Change log
|
||||
|
||||
### 1.0.0
|
||||
* Initial Release
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/lsx-importer-for-wetu/change_log/changelog.txt
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/lsx-importer-for-wetu/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
## Change log
|
||||
|
||||
### 1.2.0
|
||||
* Dev - Upgraded Wetu API to V8.
|
||||
* Dev - Added in support for the group size and the tags fields.
|
||||
* Fix - Updated the 'file_get_contents()' call with 'wp_remote_get()'
|
||||
* Dev - Coding Standards Updates
|
||||
* Dev - Added UI enhancements for the Tour Importer Page
|
||||
* Dev - Moved the settings tab to the importer page.
|
||||
|
||||
### 1.1.2
|
||||
* Dev - Removing the need to index the accommodation and destination items from WETU.
|
||||
* Dev - Changed the Accommodation and Destination search to use the WETU API Search.
|
||||
|
||||
### 1.1.1
|
||||
* Fix - Tours no longer use the same destination for the featured and the banner image
|
||||
* Dev - Added in a destination search which searches the cached "List" from the WETU content API
|
||||
* Dev - Changed the continents taxonomy to only apply to the countries and not the regions
|
||||
|
||||
### 1.1.0
|
||||
* Added compatibility with Tour Operator 1.1
|
||||
* Fix - Fixed small issues
|
||||
|
||||
### 1.0.0
|
||||
* First Version
|
||||
41
spec/fixtures/dynamic_finders/plugin_version/lsx-importer-for-wetu/composer_file/package.json
vendored
Normal file
41
spec/fixtures/dynamic_finders/plugin_version/lsx-importer-for-wetu/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "lsx-wetu-importer",
|
||||
"version": "1.2.0",
|
||||
"description": "Tour Operators add-on for LSX",
|
||||
"main": "gulpfile.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://www.lsdev.biz/product/lsx-wetu-importer/"
|
||||
},
|
||||
"keywords": [
|
||||
"lsx",
|
||||
"addon"
|
||||
],
|
||||
"author": "LightSpeed",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://www.lsdev.biz/product/lsx-wetu-importer/issues"
|
||||
},
|
||||
"homepage": "https://www.lsdev.biz/product/lsx-wetu-importer/#readme",
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-rtlcss": "^1.0.0",
|
||||
"gulp-autoprefixer": "^3.1.1",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-gettext": "^0.3.0",
|
||||
"gulp-jshint": "^2.0.4",
|
||||
"gulp-clean-css": "^3.10.0",
|
||||
"gulp-plumber": "^1.1.0",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-sass": "^3.1.0",
|
||||
"gulp-sort": "^2.0.0",
|
||||
"gulp-sourcemaps": "^2.6.0",
|
||||
"gulp-uglify": "^2.0.1",
|
||||
"gulp-wp-pot": "^2.0.3",
|
||||
"jshint": "^2.9.4",
|
||||
"map-stream": "^0.0.7"
|
||||
}
|
||||
}
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/magic-theme-mods-holder/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/magic-theme-mods-holder/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
IMPORTANT:
|
||||
-----------------------------------------------------------------------------------------
|
||||
Please be sure to read the Important Update Notes before you update:
|
||||
https://wp-works.com
|
||||
We are always proactive in preventing security issues, however nobody can assume they will never come up.
|
||||
This is why we highly recommend to stay up to date with each new theme version and plugins.
|
||||
|
||||
|
||||
-----------------------------------------------------------------------------------------
|
||||
Version 1.0.0
|
||||
-----------------------------------------------------------------------------------------
|
||||
|
||||
* Released.
|
||||
|
||||
@@ -0,0 +1,394 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MailBluster v1.0.0\n"
|
||||
"POT-Creation-Date: 2019-06-24 17:01+0600\n"
|
||||
"PO-Revision-Date: 2019-06-15 12:21+0600\n"
|
||||
"Language-Team: MailBluster <hello@mailbluster.com>\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;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"Last-Translator: MailBluster <hello@mailbluster.com>\n"
|
||||
"Language: en_US\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:170
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:185
|
||||
#: admin/class-mailbluster4wp-admin.php:186
|
||||
msgctxt "mailbluster forms"
|
||||
msgid "MailBluster"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:187
|
||||
msgctxt "admin menu"
|
||||
msgid "MailBluster"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:188
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "MailBluster"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:190
|
||||
msgid "Add New Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:191
|
||||
msgid "New Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:192
|
||||
msgid "Edit Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:193
|
||||
#: admin/class-mailbluster4wp-admin.php:259
|
||||
msgid "View Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:194
|
||||
msgid "Forms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:195
|
||||
msgid "Search Forms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:196
|
||||
msgid "Parent Forms:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:197
|
||||
msgid "No forms found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:198
|
||||
msgid "No forms found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:203
|
||||
msgid "Description."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:238
|
||||
#: admin/class-mailbluster4wp-admin.php:241
|
||||
msgid "Form updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:239
|
||||
msgid "Custom field updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:240
|
||||
msgid "Custom field deleted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:243
|
||||
#, php-format
|
||||
msgid "Form restored to revision from %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:244
|
||||
msgid "Form published."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:245
|
||||
msgid "Form saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:246
|
||||
msgid "Form submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:249
|
||||
msgid "Form scheduled for:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:251
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:253
|
||||
msgid "Form draft updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:265
|
||||
msgid "Preview Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:284
|
||||
msgctxt "mailbluster forms"
|
||||
msgid "MailBluster Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:285
|
||||
msgctxt "mailbluster forms"
|
||||
msgid "MailBluster Tag"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:286
|
||||
msgctxt "admin menu"
|
||||
msgid "MailBluster Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:291
|
||||
msgid "New subscribers will be tagged in MailBluster with these tags."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:326
|
||||
msgid "Form Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:327
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:328
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:329
|
||||
msgid "MailBluster Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:330
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:454
|
||||
msgid "MailBluster API Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:455
|
||||
#: admin/class-mailbluster4wp-admin.php:480
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:488
|
||||
msgid "API Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:507
|
||||
msgid "Invalid API key format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:516
|
||||
msgid "Brand Name: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:517
|
||||
msgid "API Name: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:543
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:545
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:548
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Input your<a href=\"%s\" target=\"_blank\"> MailBluster app brand API key </"
|
||||
"a> to connect."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:569
|
||||
msgid "API key connected!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:578
|
||||
msgid "Enter Correct API key!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:604
|
||||
msgid "API has been configured"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-admin.php:614
|
||||
#, php-format
|
||||
msgid "Please Configure <a href=\"%s\">MailBluster API</a> key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-form-option.php:27
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-form-option.php:37
|
||||
msgid "MailBluster Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-form-option.php:47
|
||||
msgid "MailBluster Form Option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:28
|
||||
msgid "Displays a MailBluster subscription forms."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:30
|
||||
msgid "MailBluster Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:82
|
||||
#, php-format
|
||||
msgid "<strong>%s.</strong> Please check <a href=\"%s\">api settings</a>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:83
|
||||
msgid "API key valid but inactive"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:94
|
||||
msgid "There are no forms to select."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:96
|
||||
msgid "Create one from here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:104
|
||||
msgid "Select a form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mailbluster4wp-widget.php:119
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Further customization go to <a href=\"%s\">All Forms</a> settings screen."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/appearance.php:11
|
||||
msgid "Custom class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/appearance.php:15
|
||||
msgid ""
|
||||
"This will be added as a CSS class to the wrapper of the subscription form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:9
|
||||
msgid "Option Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:12
|
||||
msgid "Click to add a field to the form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:13
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:14
|
||||
#: admin/partials/form-options/builder.php:42
|
||||
#: includes/class-mailbluster4wp-helper.php:287
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:15
|
||||
#: admin/partials/form-options/builder.php:45
|
||||
#: includes/class-mailbluster4wp-helper.php:294
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:18
|
||||
msgid "Custom Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:23
|
||||
msgid "alphanumeric only"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:28
|
||||
msgid "Preview Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:39
|
||||
#: includes/class-mailbluster4wp-helper.php:280
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/builder.php:48
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/messages.php:11
|
||||
msgid "Submit Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/messages.php:19
|
||||
msgid "Success message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/messages.php:26
|
||||
msgid "Missing email error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/messages.php:33
|
||||
msgid "Invalid email error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/form-options/messages.php:41
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mailbluster4wp-form-admin-shortcode.php:15
|
||||
msgid ""
|
||||
"Copy this shortcode and paste it into your post, page, or text widget "
|
||||
"content:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mailbluster4wp-form-description.php:13
|
||||
msgid "Add description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mailbluster4wp-form-option.php:16
|
||||
msgid "Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mailbluster4wp-form-option.php:17
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mailbluster4wp-form-option.php:18
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mailbluster4wp-activator.php:60
|
||||
msgid "disconnected, apiKey field is required"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mailbluster4wp-helper.php:177
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mailbluster4wp-helper.php:178
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mailbluster4wp-helper.php:179
|
||||
msgid "Your email address is required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mailbluster4wp-helper.php:180
|
||||
msgid "Your email address looks incorrect. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mailbluster4wp-helper.php:181
|
||||
msgid "Sorry, an unknown error has occurred. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mailbluster4wp-helper.php:204
|
||||
msgid "Currently The form is not available."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,190 @@
|
||||
# Copyright (C) 2019 Mantrabrain
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Instagram Pack 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: mantrabrain@gmail.com\n"
|
||||
"POT-Creation-Date: 2019-06-07 12:47:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 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-mb-instagram-pack-admin-settings.php:72
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin-settings.php:541
|
||||
msgid "Select a page…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:74
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:95
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:96
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:87
|
||||
msgid "Instagram Pack Setting Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:88
|
||||
msgid "Instagram"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:29
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:42
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:43
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:134
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:141
|
||||
msgid "Click here to connect instagram a/c."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:143
|
||||
msgid "Connect to instagram a/c"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:148
|
||||
msgid "Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:149
|
||||
msgid "Instagram Access Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:154
|
||||
msgid "Instagram Gallery Grid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:155
|
||||
msgid "Select grid for instagram feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:167
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:168
|
||||
msgid "Per Page Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:174
|
||||
msgid "Hide post like counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:175
|
||||
msgid "Click here to hide post like counter for individual post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:179
|
||||
msgid "Hide post comment counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:180
|
||||
msgid "Click here to hide post comment counter for individual post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:184
|
||||
msgid "Load More Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:185
|
||||
msgid "Load more text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:188
|
||||
#: templates/tmpl-feed.php:97
|
||||
msgid "Load more.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:190
|
||||
msgid "Load More Loading Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:191
|
||||
msgid "Load more loading text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:194
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:196
|
||||
msgid "Follow text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:197
|
||||
msgid "Follow text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:200
|
||||
#: templates/tmpl-feed.php:99
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-miscellaneous.php:29
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-miscellaneous.php:75
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:50
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mb-instagram-pack-ajax.php:43
|
||||
msgid "Something wrong, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mb-instagram-pack-api.php:43
|
||||
#: includes/class-mb-instagram-pack.php:60
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mb-instagram-pack-api.php:53
|
||||
#: includes/class-mb-instagram-pack.php:70
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:62
|
||||
#. translators: %s template
|
||||
msgid "%s does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:79
|
||||
msgid ""
|
||||
"action_args should not be overwritten when calling "
|
||||
"mb_instagram_pack_get_template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/shortcodes/class-mb-instagram-pack-shortcode-feed.php:70
|
||||
msgid " Instagram access token invalid, please contact your website administrator"
|
||||
msgstr ""
|
||||
|
||||
#: templates/tmpl-feed.php:98
|
||||
msgid "Loading.."
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Instagram Pack"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/mb-instagram-pack/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mantrabrain"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://mantrabrain.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,80 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the Missing_Product_Shipping_Info_tool package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Missing_Product_Shipping_Info_tool 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-06-11 13:55+0300\n"
|
||||
"PO-Revision-Date: 2019-06-11 14:02+0300\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Last-Translator: Alexandros Georgiou <alex.georgiou@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-list-table.php:45
|
||||
msgid "Product name"
|
||||
msgstr "Όνομα προϊόντος"
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-list-table.php:46
|
||||
msgid "Shipping Class"
|
||||
msgstr "Κλάση Αποστολής"
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-list-table.php:47
|
||||
msgid "Weight"
|
||||
msgstr "Βάρος"
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-list-table.php:48
|
||||
msgid "Dimensions (W × H × L)"
|
||||
msgstr "Διαστάσεις (Π × Υ × Μ)"
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-tool.php:35
|
||||
#: build/includes/class-missing-product-shipping-info-tool.php:58
|
||||
#: build/includes/class-missing-product-shipping-info-tool.php:75
|
||||
msgid "Missing Product Shipping Info Tool"
|
||||
msgstr "Εργαλείο εύρεσης προϊόντων χωρίς πληροφορίες αποστολής"
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-tool.php:42
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To ensure that shipping costs are calculated accurately, <a href=\"%s"
|
||||
"\">check here that all your products have weight and dimensions (width, "
|
||||
"height, length) assigned</a>."
|
||||
msgstr ""
|
||||
"Για να βεβαιωθείτε ότι τα έξοδα αποστολής θα υπολογίζονται με ακρίβεια, <a "
|
||||
"href=\"%s\">ελέγξτε εδώ ότι όλα τα προϊόντα έχουν βάρος και διαστάσεις "
|
||||
"(πλάτος, ύψος, μήκος)</a>."
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-tool.php:59
|
||||
msgid "Missing Shipping Info"
|
||||
msgstr "Ελλιπείς πληροφορίες αποστολής"
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-tool.php:69
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr "Δεν έχεις αρκετά δικαιώματα για να έχεις πρόσβαση σε αυτή τη σελίδα."
|
||||
|
||||
#: build/includes/class-missing-product-shipping-info-tool.php:82
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The following WooCommerce products do not have complete shipping "
|
||||
"information. Shipping information includes product weight, dimensions "
|
||||
"(width, height, length), and optionally <a href=\"%s\">shipping class</a>. "
|
||||
"Virtual (digital) products are not listed."
|
||||
msgstr ""
|
||||
"Τα ακόλουθα προϊόντα στο WooCommerce δεν έχουν πλήρεις πληροφορίες "
|
||||
"αποστολής. Οι πληροφορίες αποστολής περιλαμβάνουν το βάρος του προϊόντος, "
|
||||
"τις διαστάσεις του (πλάτος, ύψος, μήκος), και προαιρετικά <a href=\"%s"
|
||||
"\">κλάση αποστολής</a>."
|
||||
|
||||
#: build/missing-product-shipping-info-tool.php:66
|
||||
msgid "Missing Product Shipping Info tool"
|
||||
msgstr "Εργαλείο εύρεσης προϊόντων χωρίς πληροφορίες αποστολής"
|
||||
|
||||
#: build/missing-product-shipping-info-tool.php:68
|
||||
msgid "Support"
|
||||
msgstr "Υποστήριξη"
|
||||
@@ -0,0 +1,122 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Mobile Banner v1.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2019-05-02 20:23+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\n"
|
||||
"Language-Team: Author "
|
||||
"Help (russell@authorhelp."
|
||||
"uk)\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit "
|
||||
"2.2.1\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: admin/settings.php:9
|
||||
msgid ""
|
||||
"You do not have "
|
||||
"sufficient permissions "
|
||||
"to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:68
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:72
|
||||
msgid ""
|
||||
"Mobile Banner Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:77
|
||||
msgid "Background colour"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:77
|
||||
msgid ""
|
||||
"CSS colour name or RGB "
|
||||
"value (eg #6B97D0)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:79
|
||||
msgid "Text colour"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:81
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:81
|
||||
msgid ""
|
||||
"Plain text only. No HTML."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:83
|
||||
msgid "URL to link to"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:83
|
||||
msgid "Including"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:83
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:85
|
||||
msgid ""
|
||||
"Maximum width (pixels)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:85
|
||||
msgid ""
|
||||
"Banner is not shown if "
|
||||
"the screen is wider than "
|
||||
"this."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:90
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: mobile-banner.php:56
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,369 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Blank WordPress Pot "
|
||||
"v1.0.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2019-05-09 10:19+0700\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\n"
|
||||
"Language-Team: Your Team "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit "
|
||||
"2.2.1\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: inc/admin.php:53
|
||||
#: inc/admin.php:54
|
||||
#: inc/admin.php:194
|
||||
#: inc/admin.php:426
|
||||
#: tpl/admin/admin.php:2
|
||||
msgid "Price Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:109
|
||||
msgid ""
|
||||
"The theme "
|
||||
"<strong>woocommerce_before_single_product</"
|
||||
"strong> not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:195
|
||||
msgid ""
|
||||
"Replace front-end "
|
||||
"dropdowns with a price "
|
||||
"matrix. This option "
|
||||
"limits \"Used for "
|
||||
"varations\" to 2."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:289
|
||||
msgid ""
|
||||
"You must choose the "
|
||||
"direction of the table, "
|
||||
"is one horizontal or one "
|
||||
"vertical"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:297
|
||||
#: inc/admin.php:304
|
||||
msgid ""
|
||||
"You must choose the "
|
||||
"direction of the table, "
|
||||
"is two horizontal or two "
|
||||
"vertical"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:327
|
||||
msgid ""
|
||||
"Press the <strong>Input "
|
||||
"Price</strong> button to "
|
||||
"input price for this "
|
||||
"product before saving!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:355
|
||||
#: inc/ajax.php:109
|
||||
msgid ""
|
||||
"Price Matrix: Input Price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:404
|
||||
msgid ""
|
||||
"<strong>Note:</strong> "
|
||||
"When you finish enter "
|
||||
"the price for this "
|
||||
"attribute, please press "
|
||||
"the Save Price Matrix "
|
||||
"button before choosing "
|
||||
"another attribute. "
|
||||
"Double click to input "
|
||||
"the price!</p><p>To "
|
||||
"input the sale price, "
|
||||
"please use the \"-\" "
|
||||
"characters between "
|
||||
"prices. Eg: original "
|
||||
"price is $5, sale price "
|
||||
"is $2, the convention is "
|
||||
"5-2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:409
|
||||
#: inc/ajax.php:283
|
||||
msgid ""
|
||||
"<strong>Note:</strong> "
|
||||
"Double click to input "
|
||||
"the price!</p><p>To "
|
||||
"input the sale price, "
|
||||
"please use the \"-\" "
|
||||
"characters between "
|
||||
"prices. Eg: original "
|
||||
"price is $5, sale price "
|
||||
"is $2, the convention is "
|
||||
"5-2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:413
|
||||
msgid ""
|
||||
"Sorry, this options not "
|
||||
"available for enter price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/frontend.php:50
|
||||
#: tpl/frontend/price-matrix-4.php:94
|
||||
#: tpl/frontend/price-matrix-horizontal-3.php:83
|
||||
#: tpl/frontend/price-matrix-vertical-3.php:73
|
||||
#: tpl/frontend/price-matrix.php:61
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: inc/frontend.php:243
|
||||
msgid "Choose an option"
|
||||
msgstr ""
|
||||
|
||||
#: inc/frontend.php:302
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Template for table %s "
|
||||
"exists"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.init.php:4
|
||||
#: inc/settings.php:25
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.init.php:5
|
||||
#: inc/settings.php:26
|
||||
msgid "Before Tab"
|
||||
msgstr ""
|
||||
|
||||
#: inc/metabox.php:204
|
||||
msgid "Upload/Add image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/metabox.php:205
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:20
|
||||
msgid ""
|
||||
"Price matrix table "
|
||||
"position"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:31
|
||||
msgid ""
|
||||
"Hide Additional "
|
||||
"information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:35
|
||||
msgid ""
|
||||
"Hide Additional "
|
||||
"information tab in "
|
||||
"Product Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:38
|
||||
msgid ""
|
||||
"Show calculator text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:42
|
||||
msgid ""
|
||||
"Show calculator text "
|
||||
"after Add to cart button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:45
|
||||
msgid "Enable heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:49
|
||||
msgid ""
|
||||
"Turn on heading before "
|
||||
"Price Matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:52
|
||||
msgid "Heading title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:59
|
||||
msgid ""
|
||||
"Scroll when select price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:63
|
||||
msgid ""
|
||||
"Scroll the screen to the "
|
||||
"Price Matrix table when "
|
||||
"user choose attributes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:66
|
||||
msgid ""
|
||||
"Display regular & sale "
|
||||
"price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:71
|
||||
msgid ""
|
||||
"Display the sale price "
|
||||
"in the Price Matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:77
|
||||
msgid ""
|
||||
"Background color of "
|
||||
"price matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:84
|
||||
msgid "Table Text color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:91
|
||||
msgid "Table Border color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:101
|
||||
msgid ""
|
||||
"Tooltips background color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:108
|
||||
msgid "Tooltips text color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:115
|
||||
msgid ""
|
||||
"Tooltips border color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:122
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:71
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:72
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:87
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:88
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:89
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:101
|
||||
msgid ""
|
||||
"WooCommerce plugin is "
|
||||
"not activated. Please "
|
||||
"install and activate it "
|
||||
"to use for plugin "
|
||||
"<strong>NBT WooCommerce "
|
||||
"Price Matrix (Lite)</"
|
||||
"strong>."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/price-matrix-product.php:20
|
||||
#: tpl/admin/row-repeater.php:14
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/price-matrix-product.php:21
|
||||
#: tpl/admin/row-repeater.php:15
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater-empty.php:2
|
||||
msgid ""
|
||||
"Before you can use Price "
|
||||
"Matrix, you need add "
|
||||
"minimum of two variation "
|
||||
"attributes on the "
|
||||
"<strong>Attributes</"
|
||||
"strong> tab."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater-empty.php:3
|
||||
msgid "Learn more"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater.php:6
|
||||
msgid ""
|
||||
"Currently, Price Matrix "
|
||||
"only support display "
|
||||
"maximum is 4 attributes "
|
||||
"to price matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater.php:7
|
||||
msgid ""
|
||||
"By default, attribute at "
|
||||
"the bottom will not be "
|
||||
"displayed to the table, "
|
||||
"it will just show in "
|
||||
"selection mode. You can "
|
||||
"choose which attribute "
|
||||
"to be shown in the table "
|
||||
"by click Show/hide next "
|
||||
"to it"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/settings.php:17
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/settings.php:35
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,211 @@
|
||||
# Copyright (C) 2019 Neykane
|
||||
# This file is distributed under the same license as the Neykane Viral List Posts plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Neykane Viral List Posts 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/neykane-viral-list-posts\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-20T22:43:15-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: neykane-viral-list-posts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Neykane Viral List Posts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.neykane.com/products/viral-list-posts"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a new \"List Posts\" Custom Post Type to help you create memorable, well-organized, and highly-shareable list posts."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Neykane"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.neykane.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:36
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:37
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:176
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Viral List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:177
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Viral List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:179
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:207
|
||||
msgid "Viral List Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:180
|
||||
msgid "Viral List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:181
|
||||
msgid "List Post Archives"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:182
|
||||
msgid "List Post Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:183
|
||||
msgid "Parent List Post:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:184
|
||||
msgid "All List Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:185
|
||||
msgid "Add New List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:186
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:187
|
||||
msgid "New List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:188
|
||||
msgid "Edit List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:189
|
||||
msgid "Update List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:190
|
||||
msgid "View List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:191
|
||||
msgid "View List Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:192
|
||||
msgid "Search List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:193
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:194
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:195
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:196
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:197
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:198
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:199
|
||||
msgid "Insert into List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:200
|
||||
msgid "Uploaded to this list Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:201
|
||||
msgid "List Post list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:202
|
||||
msgid "List Post list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:203
|
||||
msgid "Filter List Post list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:209
|
||||
msgid "Viral List Posts are composed of items, each of which have associated media and text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:241
|
||||
msgid "Intro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:250
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:259
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:268
|
||||
msgid "Enable Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:277
|
||||
msgid "Embed Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:367
|
||||
msgid "Modern (vertical)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:368
|
||||
msgid "Modern (horizontal)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:396
|
||||
msgid "Enable sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:413
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:463
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:478
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:489
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:519
|
||||
msgid "Rewrite Slug"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:591
|
||||
msgid "Appears on "
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
470
spec/fixtures/dynamic_finders/plugin_version/photoblocks-grid-gallery/correct_readme_path/README.txt
vendored
Normal file
470
spec/fixtures/dynamic_finders/plugin_version/photoblocks-grid-gallery/correct_readme_path/README.txt
vendored
Normal file
@@ -0,0 +1,470 @@
|
||||
=== Gallery PhotoBlocks ===
|
||||
Contributors: greentreelabs, freemius
|
||||
Donate link: http://amzn.eu/5SP6qpj
|
||||
Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
|
||||
Requires at least: 3.9
|
||||
Tested up to: 5.1
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
Design your personal image gallery or photo gallery or even a portfolio using a handy builder. Add stunning effects
|
||||
to your grid and always justified galleries.
|
||||
|
||||
== Description ==
|
||||
|
||||
This is an image and photo gallery plugin perfect to make galleries with justified edges!
|
||||
You can zoom the images thanks to a fast lightbox. Add special effects to your grid gallery.
|
||||
Use our builder to create justified galleries.
|
||||
|
||||
= Drag and drop functionality =
|
||||
|
||||
https://www.youtube.com/watch?v=48lvo3GCkp8
|
||||
|
||||
|
||||
= Handy builder =
|
||||
|
||||
**PhotoBlocks Grid Builder** is the stellar feature that makes PhotoBlocks special and different from other galleries.
|
||||
With this tool you can design the layout of your gallery simply by dragging the images. You can make a gallery
|
||||
with images spanning on more columns or rows.
|
||||
|
||||
= Features =
|
||||
|
||||
* Drag and drop builder to design custom layouts
|
||||
* Pixel perfect justified gallery
|
||||
* Lightbox to zoom photos
|
||||
* Special effects on mouse hover
|
||||
* Loading special effects
|
||||
* Social sharing
|
||||
* Captions with title and description
|
||||
* Caption positioning
|
||||
* Responsive and mobile ready
|
||||
* SEO friendly
|
||||
* Open videos on image click
|
||||
* Open pages on image click
|
||||
* Fast loading gallery
|
||||
* Full width galleries
|
||||
* Shuffle images
|
||||
* Jetpack's Photon compatibility for high speed
|
||||
* Post galleries (*premium feature*)
|
||||
* CDN support for even faster image loading (*premium feature*)
|
||||
* Text blocks (*premium feature*)
|
||||
* Filters/Categories (*premium feature*)
|
||||
* Additional hover effects (*premium feature*)
|
||||
* Additional loading effects (*premium feature*)
|
||||
* Additional captions layouts (*premium feature*)
|
||||
* Handle shortcodes inside blocks (*premium feature*)
|
||||
|
||||
= Uses =
|
||||
|
||||
* wedding album photo gallery
|
||||
* designer portfolio photo gallery
|
||||
* photography portfolio photo gallery
|
||||
* products showcase photo gallery
|
||||
|
||||
== Installation ==
|
||||
|
||||
= For automatic installation: =
|
||||
|
||||
The simplest way to install is to click on 'Plugins' then 'Add' and type 'PhotoBlocks' in the search field.
|
||||
|
||||
= For manual installation 1: =
|
||||
|
||||
1. Login to your website and go to the Plugins section of your admin panel.
|
||||
2. Click the Add New button.
|
||||
3. Under Install Plugins, click the Upload link.
|
||||
4. Select the plugin zip file (photoblocks.x.x.x.zip) from your computer then click the Install Now button.
|
||||
5. You should see a message stating that the plugin was installed successfully.
|
||||
6. Click the Activate Plugin link.
|
||||
|
||||
= For manual installation 2: =
|
||||
|
||||
1. You should have access to the server where WordPress is installed. If you don't, see your system administrator.
|
||||
2. Copy the plugin zip file (photoblocks.x.x.x.zip) up to your server and unzip it somewhere on the file system.
|
||||
3. Copy the "photoblocks" folder into the /wp-content/plugins directory of your WordPress installation.
|
||||
4. Login to your website and go to the Plugins section of your admin panel.
|
||||
5. Look for "PhotoBlocks" and click Activate.
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
= Images fail to loading
|
||||
|
||||
* Are you using Hostgator? Simply contact their support via phone or live chat to report mod security blockage. Send them the faulty link to a thumbnail.
|
||||
* If you are not on Hostgator but getting 403 errors then try adding these lines to your .htaccess file in the WordPress installation folder. Revert the modification if it has no effect and contact the hosting's support.
|
||||
|
||||
<IfModule mod_security.c>
|
||||
SecFilterEngine Off
|
||||
SecFilterScanPOST Off
|
||||
</IfModule>
|
||||
|
||||
* Are you on Bluehost's Optimized Hosting for WordPress? Make sure you turn off Varnish caching. It empties query strings.
|
||||
* Open your .htaccess file and ensure you do not have this line in it:
|
||||
|
||||
php_value mbstring.func_overload 2
|
||||
|
||||
* Or something like this:
|
||||
|
||||
RewriteRule wp-content/plugins/(.*\.php)$ - [R=404,L]
|
||||
|
||||
* Make sure you have GD library. A possible error is "GD Library Error: imagecreatetruecolor does not exist - please contact your webhost and ask them to install the GD library".
|
||||
* iThemes Security (formerly Better WP Security) settings > System Tweaks > Configure Settings > Disable PHP in Plugins – Off. Also, System Tweaks > Filter Suspicious Query Strings – Disable.
|
||||
* Sucuri Security plugin > 1-Click Hardening – Do not use it.
|
||||
* WP All in ONE Security: WP Security > Firewall > Additional Firewall Rules (tabs at top of page) > Bad Query Strings – Untick.
|
||||
AND/OR WP Security > Firewall > 6G Blacklist Firewall Rules (tabs at top of page) > Enable 6G Firewall Protection – Untick.
|
||||
* Hide My WP settings > General Settings > Exclude Files – add this: wp-content/plugins/photoblocks-grid-gallery/public/timthumb.php
|
||||
|
||||
|
||||
= The layout doesnt' look correct =
|
||||
|
||||
Check the console of the browser and look if you see errors, if case please open a support ticket in our forum.
|
||||
|
||||
= Can I import galleries from other plugins? =
|
||||
|
||||
Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, Modula, etc cannot be imported.
|
||||
|
||||
= How can I get support? =
|
||||
|
||||
* Get priority support with a [premium license](https://photoblocks.greentreelabs.net/pricing)
|
||||
|
||||
= How can I say thanks? =
|
||||
|
||||
* Just recommend our plugin to your friends! or
|
||||
* Like and share our [Facebook page](https://www.facebook.com/greentreelabs "Facebook fan page")
|
||||
* Or buy me a [present](http://amzn.eu/5SP6qpj)
|
||||
|
||||
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.1.40 =
|
||||
* [Enhancement] Updated Freemius SDK
|
||||
* [Enhancement] Pre-selected filters (Premium only)
|
||||
|
||||
= 1.1.39 =
|
||||
* [Fix] Fixed disabled layout
|
||||
|
||||
= 1.1.36 =
|
||||
* [Add] Mobile layouts (Premium only)
|
||||
|
||||
= 1.1.35 =
|
||||
* [Enhancement] Enable image sizes for lightbox
|
||||
|
||||
= 1.1.34 =
|
||||
* [Fix] Fixed missing file
|
||||
|
||||
= 1.1.33 =
|
||||
* [Fix] Security fix
|
||||
|
||||
= 1.1.32 =
|
||||
* [Enhancement] Lazy loading (Ultimate version only)
|
||||
|
||||
= 1.1.31 =
|
||||
* [Enhancement] Execute shortcodes in titles and captions
|
||||
|
||||
= 1.1.30 =
|
||||
* [Enhancement] New feature: choose image size (if you don't use the built-in resizer)
|
||||
|
||||
= 1.1.28 =
|
||||
* [Fix] Fixed wrong layout issue
|
||||
|
||||
= 1.1.27 =
|
||||
* [Fix] Fixed a bug preventing editing the galleries
|
||||
|
||||
= 1.1.26 =
|
||||
* [Enhancement] Removed CSS conflict with some themes
|
||||
|
||||
= 1.1.25 =
|
||||
* [Fix] Removed reference to unused script photoblocks.map.js
|
||||
|
||||
= 1.1.24 =
|
||||
* [Fix] Fixed typo in code
|
||||
|
||||
= 1.1.23 =
|
||||
* [Fix] Fixed wrong image sizing for portrait formats
|
||||
|
||||
= 1.1.22 =
|
||||
* [Fix] Added support for PHP 5.3.x
|
||||
|
||||
= 1.1.21 =
|
||||
* [Fix] Fixed blurry images on mobile
|
||||
|
||||
= 1.1.19 =
|
||||
* [Enhancement] Enable or disable image resizing
|
||||
|
||||
= 1.1.18 =
|
||||
* [Fix] Fixed compatibility with JetPack's photon
|
||||
|
||||
= 1.1.17 =
|
||||
* [Enhancement] Renamed thumbnail handler for security reasons
|
||||
|
||||
= 1.1.16 =
|
||||
* [Fix] Fixed bug of 1.1.15 (it's not a joke)
|
||||
|
||||
= 1.1.15 =
|
||||
* [Fix] Fixed bug of 1.1.14
|
||||
|
||||
= 1.1.14 =
|
||||
* [Fix] Fixed wrong calculation in stacked mode (mobile)
|
||||
|
||||
= 1.1.13 =
|
||||
* [Fix] Fixed user capabilities
|
||||
|
||||
= 1.1.12 =
|
||||
* [Enhancement] Using Packery for blocks placement
|
||||
* [Enhancement] [Premium] Fixed bug in filters
|
||||
|
||||
= 1.1.11 =
|
||||
* [Enhancement] Admin panel tweaks
|
||||
|
||||
= 1.1.10 =
|
||||
* [Enhancement] Added cache check
|
||||
* [Enhancement] Error message when trying to load an unknown gallery
|
||||
|
||||
= 1.1.9 =
|
||||
* [Enhancement] Use image relative paths when needed
|
||||
|
||||
= 1.1.8 =
|
||||
* [Enhancement] Added debug informations in timthumb
|
||||
|
||||
= 1.1.7 =
|
||||
* [Enhancement] Added new setting in General > Image scale factor to render images more crispy
|
||||
|
||||
= 1.1.6.2 =
|
||||
* [Fix] Fixed (yet) cropped images in lightbox
|
||||
|
||||
= 1.1.6.1 =
|
||||
* [Fix] Fixed cropped images in lightbox
|
||||
|
||||
= 1.1.6 =
|
||||
* [Fix] Fixed wrong lightbox image url
|
||||
* [Enhancement] Tuned image resizer parameters
|
||||
|
||||
= 1.1.5 =
|
||||
* [Add] Google Fonts (premium version)
|
||||
* [Enhancement] Minor improvements
|
||||
* [Fix] Fixed clone button
|
||||
|
||||
= 1.1.4 =
|
||||
* [Fix] Fixed skipped columns or rows
|
||||
|
||||
= 1.1.3 =
|
||||
* [Fix] Galleries with a lot of images are now correctly save (it requires deactivation and activation)
|
||||
* [Add] Show database errors (if any)
|
||||
|
||||
= 1.1.2.1 =
|
||||
* [Fix] Added missing file
|
||||
|
||||
= 1.1.2 =
|
||||
* [Add] Debugging informations
|
||||
|
||||
= 1.1.1 =
|
||||
* [Add] Select caption field to use with lightboxes
|
||||
|
||||
= 1.1.0 =
|
||||
* [Add] Alt attribute for SEO
|
||||
* [Add] Post galleries (premium)
|
||||
* [Add] CDN support (premium)
|
||||
* [Add] Troubleshooting page
|
||||
* [Enhancement] Greatly improved drag and drop builder
|
||||
* [Enhancement] Fixed image loading sequence
|
||||
|
||||
= 1.0.19 =
|
||||
* [Enhancement] Greatly improved performances
|
||||
|
||||
= 1.0.18 =
|
||||
* [Enhancement] Better support for themes with bundled lightboxes
|
||||
|
||||
= 1.0.17 =
|
||||
* [Fix] fixed error on activation
|
||||
|
||||
= 1.0.14 =
|
||||
* [Add] Helper grid as builder background
|
||||
* [Add] Handle shortcodes inside blocks (Premium feature)
|
||||
|
||||
= 1.0.13 =
|
||||
* [Add] Copy captions when adding images
|
||||
* [Add] New hover effect "Hidden captions"
|
||||
|
||||
= 1.0.12 =
|
||||
* [Fix] Fixed shuffle
|
||||
|
||||
= 1.0.11 =
|
||||
* [Fix] Fixed wrong image offset
|
||||
|
||||
= 1.0.10 =
|
||||
* [Add] New feature: shuffle images
|
||||
|
||||
= 1.0.9 =
|
||||
* [Fix] Fixed hidden galleries on mobile
|
||||
|
||||
= 1.0.8 =
|
||||
* Added survey
|
||||
|
||||
= 1.0.7 =
|
||||
* [Fix] Empty galleries are now correctly managed
|
||||
* [Fix] Fixed some CSS conflicts
|
||||
|
||||
= 1.0.6 =
|
||||
* [Fix] Fixed drag issue with Firefox (admin panel)
|
||||
|
||||
= 1.0.5 =
|
||||
* [Fix] Fix for JetPack's Photon
|
||||
|
||||
= 1.0.4 =
|
||||
* [Enhancement] Added support JetPack's Photon
|
||||
* [Enhancement] Added support for Altervista hosing
|
||||
|
||||
= 1.0.3 =
|
||||
* [Enhancement] Added support for PHP versions prior to 5.5
|
||||
|
||||
= 1.0.2 =
|
||||
* [Fix] Fixed bug preventing galleries loading correctly
|
||||
|
||||
= 1.0.1 =
|
||||
* [Fix] Fixed plugin URL
|
||||
|
||||
= 1.0.0 =
|
||||
* First release!
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.1.35 =
|
||||
* [Enhancement] Enable image sizes for lightbox
|
||||
|
||||
= 1.1.33 =
|
||||
* [Fix] Security fix
|
||||
|
||||
= 1.1.24 =
|
||||
* [Fix] Fixed typo in code
|
||||
|
||||
= 1.1.23 =
|
||||
* [Fix] Fixed wrong image sizing for portrait formats
|
||||
|
||||
= 1.1.22 =
|
||||
* [Fix] Added support for PHP 5.3.x
|
||||
|
||||
= 1.1.21 =
|
||||
* [Fix] Fixed blurry images on mobile
|
||||
|
||||
= 1.1.19 =
|
||||
* [Enhancement] Enable or disable image resizing
|
||||
|
||||
= 1.1.18 =
|
||||
* [Fix] Fixed compatibility with JetPack's photon
|
||||
|
||||
= 1.1.16 =
|
||||
* [Fix] Fixed bug of 1.1.15 (it's not a joke)
|
||||
|
||||
= 1.1.15 =
|
||||
* [Fix] Fixed bug of 1.1.14
|
||||
|
||||
= 1.1.14 =
|
||||
* [Fix] Fixed wrong calculation in stacked mode (mobile)
|
||||
|
||||
= 1.1.13 =
|
||||
* [Fix] Fixed user capabilities
|
||||
|
||||
= 1.1.12 =
|
||||
* [Enhancement] Using Packery for blocks placement
|
||||
* [Enhancement] [Premium] Fixed bug in filters
|
||||
|
||||
= 1.1.11 =
|
||||
* [Enhancement] Admin panel tweaks
|
||||
|
||||
= 1.1.10 =
|
||||
* [Enhancement] Error message when trying to load an unknown gallery
|
||||
* [Enhancement] Added cache check
|
||||
|
||||
= 1.1.9 =
|
||||
* [Enhancement] Use image relative paths when needed
|
||||
|
||||
= 1.1.8 =
|
||||
* [Enhancement] Added debug informations in timthumb
|
||||
|
||||
= 1.1.7 =
|
||||
* [Enhancement] Added new setting in General > Image scale factor to render images more crispy
|
||||
|
||||
= 1.1.6.2 =
|
||||
* [Fix] Fixed (yet) cropped images in lightbox
|
||||
|
||||
= 1.1.6.1 =
|
||||
* [Fix] Fixed cropped images in lightbox
|
||||
|
||||
= 1.1.5 =
|
||||
* [Add] Google Fonts (premium version)
|
||||
* [Enhancement] Minor improvements
|
||||
* [Fix] Fixed clone button
|
||||
|
||||
= 1.1.4 =
|
||||
* [Fix] Fixed skipped columns or rows
|
||||
|
||||
= 1.1.3 =
|
||||
* [Fix] Galleries with a lot of images are now correctly save (it requires deactivation and activation)
|
||||
* [Add] Show database errors (if any)
|
||||
|
||||
= 1.1.2.1 =
|
||||
* [Fix] Added missing file
|
||||
|
||||
= 1.1.2 =
|
||||
* [Add] Debugging informations
|
||||
|
||||
= 1.1.1 =
|
||||
* [Add] Select caption field to use with lightboxes
|
||||
|
||||
= 1.1.0 =
|
||||
* [Add] Alt attribute for SEO
|
||||
* [Add] Post galleries (premium)
|
||||
* [Add] CDN support (premium)
|
||||
* [Add] Troubleshooting page
|
||||
* [Enhancement] Fixed image loading sequence
|
||||
* [Enhancement] Greatly improved drag and drop builder
|
||||
|
||||
= 1.0.19 =
|
||||
* [Enhancement] Greatly improved performances
|
||||
|
||||
= 1.0.18 =
|
||||
* [Enhancement] Better support for themes with bundled lightboxes
|
||||
|
||||
= 1.0.14 =
|
||||
* [Add] Helper grid as builder background
|
||||
|
||||
= 1.0.13 =
|
||||
* [Add] Copy captions when adding images
|
||||
* [Add] New hover effect "Hidden captions"
|
||||
|
||||
= 1.0.12 =
|
||||
* [Fix] Fixed shuffle
|
||||
|
||||
= 1.0.11 =
|
||||
* [Fix] Fixed wrong image offset
|
||||
|
||||
= 1.0.10 =
|
||||
* [Add] New feature: shuffle images
|
||||
|
||||
= 1.0.9 =
|
||||
* [Fix] Fixed hidden galleries on mobile
|
||||
|
||||
= 1.0.8 =
|
||||
* Added survey
|
||||
|
||||
= 1.0.7 =
|
||||
* [Fix] Empty galleries are now correctly managed
|
||||
* [Fix] Fixed some CSS conflicts
|
||||
|
||||
= 1.0.6 =
|
||||
* [Fix] Fixed drag issue with Firefox (admin panel)
|
||||
|
||||
= 1.0.5 =
|
||||
* [Fix] Fix for JetPack's Photon
|
||||
|
||||
= 1.0.4 =
|
||||
* [Enhancement] Added support JetPack's Photon
|
||||
* [Enhancement] Added support for Altervista hosing
|
||||
|
||||
= 1.0.3 =
|
||||
* [Enhancement] Added support for PHP versions prior to 5.5
|
||||
|
||||
= 1.0.2 =
|
||||
* [Fix] Fixed bug preventing galleries loading correctly
|
||||
|
||||
= 1.0.0 =
|
||||
PhotoBlocks first release!
|
||||
43
spec/fixtures/dynamic_finders/plugin_version/press-search/composer_file/package.json
vendored
Normal file
43
spec/fixtures/dynamic_finders/plugin_version/press-search/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"name": "press-search",
|
||||
"title": "pressSearch",
|
||||
"description": "The best WordPress extension ever made!",
|
||||
"version": "0.0.2",
|
||||
"homepage": "#",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": ""
|
||||
},
|
||||
"author": {
|
||||
"name": "TruongSa",
|
||||
"email": "shrimp2t@gmail.com",
|
||||
"url": "#"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "^3.5.0",
|
||||
"glob": "~5.0.15",
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-autoprefixer": "latest",
|
||||
"grunt-bumpup": "latest",
|
||||
"grunt-contrib-clean": "^0.6.0",
|
||||
"grunt-contrib-compress": "^1.4.3",
|
||||
"grunt-contrib-concat": "^0.5.1",
|
||||
"grunt-contrib-copy": "^0.8.0",
|
||||
"grunt-contrib-cssmin": "^3.0.0",
|
||||
"grunt-contrib-sass": "^1.0.0",
|
||||
"grunt-contrib-uglify": "^4.0.0",
|
||||
"grunt-contrib-watch": "^1.1.0",
|
||||
"grunt-eslint": "^18.1.0",
|
||||
"grunt-jscs": "^3.0.1",
|
||||
"grunt-mocha": "^1.2.0",
|
||||
"grunt-phpunit": "^0.3.6",
|
||||
"grunt-postcss": "^0.6.0",
|
||||
"grunt-rtlcss": "latest",
|
||||
"grunt-text-replace": "latest",
|
||||
"grunt-wp-i18n": "latest",
|
||||
"grunt-wp-readme-to-markdown": "^0.9.0",
|
||||
"load-grunt-config": "^1.0.2",
|
||||
"load-grunt-tasks": "^3.3.0"
|
||||
},
|
||||
"keywords": []
|
||||
}
|
||||
1331
spec/fixtures/dynamic_finders/plugin_version/press-search/translation_file/languages/press-search.pot
vendored
Normal file
1331
spec/fixtures/dynamic_finders/plugin_version/press-search/translation_file/languages/press-search.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,117 @@
|
||||
# Copyright (C) 2019 pushe.co
|
||||
# This file is distributed under the same license as the Pushe Webpush plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pushe Webpush 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pushe-webpush\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-20T12:21:06+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: pushe-webpush\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/pages/AdminPages.php:35
|
||||
msgid "Pushe Webpush"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Official Pushe.co's webpush plugin for wordpress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "pushe.co"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://pushe.co"
|
||||
msgstr ""
|
||||
|
||||
#: templates/modalOptions.php:2
|
||||
msgid "Pushe Modal Options"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:2
|
||||
msgid "Pushe webpush settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:20
|
||||
msgid "app id"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:29
|
||||
msgid "public key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:38
|
||||
msgid "enable webpush"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:50
|
||||
msgid "show dialog"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:60
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:69
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:78
|
||||
msgid "accept text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:87
|
||||
msgid "reject text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:96
|
||||
msgid "icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:105
|
||||
msgid "dialog position"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:118
|
||||
msgid "dialog position in mobile"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:131
|
||||
msgid "dialog retry time"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/AdminPages.php:47
|
||||
#: inc/pages/AdminPages.php:90
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/AdminPages.php:96
|
||||
msgid "Modal Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/SettingsCallbacks.php:18
|
||||
msgid "* app id:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/SettingsCallbacks.php:18
|
||||
msgid "You should get your app_id from"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/SettingsCallbacks.php:18
|
||||
msgid "Pushe.co's console"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/ModalOptionsCallback.php:20
|
||||
msgid "These options are, available parameters of Pushe's webpush subscribe modal and All fields are optional, and modal would show default value for them."
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/ModalOptionsCallback.php:21
|
||||
msgid "For more information you can check out the documentation at "
|
||||
msgstr ""
|
||||
560
spec/fixtures/dynamic_finders/plugin_version/quadmenu/change_log/changelog.txt
vendored
Normal file
560
spec/fixtures/dynamic_finders/plugin_version/quadmenu/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,560 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.8.3 =
|
||||
|
||||
* Fixed. fixed beaver builder
|
||||
|
||||
= 1.8.2 =
|
||||
|
||||
* Fixed. small css issues
|
||||
* Fixed. beaver builder scroll bar
|
||||
|
||||
= 1.8.1 =
|
||||
|
||||
* Fixed. dropdown menu max left position
|
||||
* Fixed. menu login and register
|
||||
|
||||
|
||||
= 1.8.0 =
|
||||
|
||||
* Fixed. elementor library widget
|
||||
* Fixed. menu login
|
||||
|
||||
= 1.7.9 =
|
||||
|
||||
* Fixed. small css issues
|
||||
* Fixed. current menu open nested level
|
||||
|
||||
= 1.7.8 =
|
||||
|
||||
* Fixed. undefined woocommerce cart item menu
|
||||
* Fixed. avada fusion builder icon issues
|
||||
|
||||
= 1.7.7 =
|
||||
|
||||
* Fixed. small css issues
|
||||
|
||||
= 1.7.6 =
|
||||
|
||||
* Fixed. small css issues
|
||||
|
||||
= 1.7.5 =
|
||||
|
||||
* Fixed. chrome overflow issue on mobile menu
|
||||
* Fixed. offcanvas alignment issue in mobile menu
|
||||
* Fixed. GET to POST in ajax requests to avoid server issues
|
||||
* Fixed. woocommerce cart issues with wp rocket cache
|
||||
|
||||
= 1.7.4 =
|
||||
|
||||
* Fixed. divi quadmenu module
|
||||
* Fixed. widget save ajax issue
|
||||
* Fixed. custom dropdown width padding issue
|
||||
* Fixed. divi mobile menu two columns
|
||||
|
||||
= 1.7.3 =
|
||||
|
||||
* Fixed. fixed lazy load height
|
||||
|
||||
= 1.7.2 =
|
||||
|
||||
* Fixed. admin columns improved
|
||||
* Fixed. admin width default
|
||||
* Fixed. admin width and colums style
|
||||
* Fixed. hover cart icon color
|
||||
* Fixed. fixed lazy load images ratio
|
||||
* Fixed. fixed woocommerce cart menu
|
||||
* Fixed. media player size issue
|
||||
|
||||
= 1.7.1 =
|
||||
|
||||
* Fixed. persistent cache issues
|
||||
* Fixed. menu class replaced with quadmenu
|
||||
|
||||
= 1.7.0 =
|
||||
|
||||
* Fixed. fixed large subtitle
|
||||
* Fixed. elementor logo remove
|
||||
* Fixed. beaver logo remove
|
||||
* Fixed. removed quadmenu widget from metaboxes
|
||||
* Improvement. admin columns interface
|
||||
* Improvement. admin preset columns
|
||||
|
||||
= 1.6.9 =
|
||||
|
||||
* Fixed. dev alerts
|
||||
|
||||
= 1.6.8 =
|
||||
|
||||
* Fixed. login form issues
|
||||
|
||||
= 1.6.7 =
|
||||
|
||||
* Fixed. navbar brand width
|
||||
* Fixed. description in top level items on mobile menu
|
||||
* Fixed. search custom post types
|
||||
|
||||
= 1.6.6 =
|
||||
|
||||
* Fixed. remove unnecessary fields
|
||||
* New. option username in login item
|
||||
* New. quadmenu dev location for testing
|
||||
|
||||
= 1.6.5 =
|
||||
|
||||
* Fixed. undefined url
|
||||
* Fixed. icon padding
|
||||
* Fixed. icon dropdown
|
||||
* Fixed. logo in elementor module
|
||||
* Fixed. logo in beaver module
|
||||
* Fixed. customizer options removed transient time
|
||||
* New. button element in quadmenu pro
|
||||
|
||||
= 1.6.4 =
|
||||
|
||||
* New. font awesome 5
|
||||
|
||||
= 1.6.3 =
|
||||
|
||||
* Fixed. quadmenu pro override
|
||||
|
||||
= 1.6.2 =
|
||||
|
||||
* Fixed. offcanvas menu logo url
|
||||
|
||||
= 1.6.1 =
|
||||
|
||||
* New. option logo link
|
||||
* Fixed. Unexpected token u in JSON at position 0
|
||||
|
||||
= 1.6.0 =
|
||||
|
||||
* Fixed. elementor undefined variable in frontend
|
||||
* Fixed. divi quadmenu module height
|
||||
* Improvement. translations files updated
|
||||
|
||||
= 1.5.9 =
|
||||
|
||||
* New. elementor module
|
||||
* New. beaver builder module
|
||||
|
||||
= 1.5.8 =
|
||||
|
||||
* Fixed. login and cart text margin
|
||||
* Fixed. load menu height issues
|
||||
* Fixed. login alerts css
|
||||
* Fixed. widget loading on ajax changes
|
||||
* Fixed. slidebar animation issues
|
||||
* Improvement. rebuild quadmenu on ajax events
|
||||
|
||||
= 1.5.7 =
|
||||
|
||||
* Fixed. tabs height
|
||||
* Fixed. divi mobile padding
|
||||
* Fixed. widget save off save settings event
|
||||
* Improvement. New order by featured products in woocommerce archives
|
||||
* Improvement. New filter for link attributes
|
||||
|
||||
= 1.5.6 =
|
||||
|
||||
* Fixed. fixed issue with parents in admin
|
||||
|
||||
= 1.5.5 =
|
||||
|
||||
* Beta. lazy load images
|
||||
* Fixed. normalize owl carousel
|
||||
* Fixed. quadmenu widget php7 deprecated constructor
|
||||
* Fixed. quadmenu widget instance defaults
|
||||
* Fixed. mobile padding dropdown cart and login
|
||||
|
||||
= 1.5.4 =
|
||||
|
||||
* Fixed. update license messages
|
||||
|
||||
= 1.5.3 =
|
||||
|
||||
* Fixed. login css issues
|
||||
* Fixed. cart css issues
|
||||
* Fixed. fixed license validation issues
|
||||
* New. quadmenu widget
|
||||
|
||||
= 1.5.2 =
|
||||
|
||||
* Fixed. Astra google fonts issue
|
||||
* Fixed. Slidebar current item position
|
||||
* Fixed. divi fixed menu link colors
|
||||
* Fixed. logout link when dropdown is empty
|
||||
* Fixed. login validations for user and password
|
||||
* Fixed. login mask background
|
||||
|
||||
= 1.5.1 =
|
||||
|
||||
* Fixed. customizer page change
|
||||
* Fixed. sticky menu animation
|
||||
* Fixed. post type text position
|
||||
* Fixed. default menu settings
|
||||
* Fixed. menu item badge position
|
||||
* Fixed. menu item padding hidden carets
|
||||
* Improvement. customizer animations
|
||||
* Improvement. slidebar animation
|
||||
* Improvement. force customizer selective refreshed
|
||||
|
||||
= 1.5.0 =
|
||||
|
||||
* Fixed. search form divider css
|
||||
* Fixed. logged in hover background css
|
||||
* Fixed. background hover css without link
|
||||
* Fixed. slidebar position js
|
||||
* Fixed. fixed [] short array PHP 5.4
|
||||
* New. animation options
|
||||
* Improvement. offcanvas animation on horizontal menu
|
||||
* Improvement. cache setup items
|
||||
* Improvement. cache children nav menu items
|
||||
* Improvement. speed general admin settings
|
||||
|
||||
= 1.4.9 =
|
||||
|
||||
* Fixed. post type menu item class
|
||||
|
||||
= 1.4.8 =
|
||||
|
||||
* Fixed. quadmenu divi module menu height
|
||||
* Fixed. divi fullwidth module quadmenu
|
||||
* Improvement. CSS field added to customizer
|
||||
* Improvement. polylang support
|
||||
* Improvement. responsive template system
|
||||
|
||||
= 1.4.7 =
|
||||
|
||||
* Fixed. Undefined quadmenu_template
|
||||
* New. search placeholder
|
||||
* New. search post types
|
||||
|
||||
= 1.4.6 =
|
||||
|
||||
* New. quadmenu module for divi
|
||||
|
||||
= 1.4.5 =
|
||||
|
||||
* New. option for mobile menu links
|
||||
* Improvement. css improvements
|
||||
* Improvement. overflow hidden offcanvas layout
|
||||
|
||||
= 1.4.4 =
|
||||
|
||||
* Fixed. undefined theme name
|
||||
* Fixed. Divi menu height in full menu module
|
||||
* Fixed. Polylang integration
|
||||
|
||||
|
||||
= 1.4.3 =
|
||||
|
||||
* Fixed. post type hidden badges
|
||||
* Fixed. post type archives loop
|
||||
* Fixed. instance missing on license update
|
||||
|
||||
= 1.4.2 =
|
||||
|
||||
* Fixed. post type archive and categories in first level menu
|
||||
* Fixed. compatibility issues with microsoft edge
|
||||
* Fixed. compatibility issues with total theme
|
||||
* Fixed. tab menu style issues with extra
|
||||
* Fixed. license undefined object
|
||||
* Improvement. license manager system
|
||||
* Improvement. woocommerce cart improvements
|
||||
|
||||
= 1.4.1 =
|
||||
|
||||
* Fixed. display block in dropdown menu link
|
||||
* Fixed. hide account links from login item when user is logged out
|
||||
|
||||
= 1.4.0 =
|
||||
|
||||
* Fixed. menu locations
|
||||
* Fixed. cart and login menu hoverintent
|
||||
* Fixed. remove woocommerce from cart event
|
||||
* Fixed. fixed widgets removed issue
|
||||
* New. option account menu for logoin item
|
||||
* New. option cart item bottom text
|
||||
* New. option mobile layout padding
|
||||
* Improvement. new sticky navbar
|
||||
* Improvement. new logoin style
|
||||
* Improvement. new cart style
|
||||
|
||||
= 1.3.9 =
|
||||
|
||||
* Fixed. issue with hoverintent
|
||||
|
||||
= 1.3.8 =
|
||||
|
||||
* Improvement. PHP 7.2.x compatibility
|
||||
* Improvement. new archive types metabox
|
||||
|
||||
= 1.3.7 =
|
||||
|
||||
* Fixed. pot files for languages
|
||||
* Fixed. depth level on some themes
|
||||
* New. new option align center menu items
|
||||
|
||||
= 1.3.6 =
|
||||
|
||||
* Fixed. windows update long folders
|
||||
* Fixed. widgets in sidebar on first load
|
||||
|
||||
= 1.3.5 =
|
||||
|
||||
* Fixed. menu post type icons badge not showing
|
||||
* Fixed. menu dashicons alignment
|
||||
* Improvement. redux framework updated to 3.6.9
|
||||
|
||||
= 1.3.4 =
|
||||
|
||||
* Fixed. Porto compatibility issues
|
||||
* Improvement. css menu icons
|
||||
* Improvement. css to IE 11 compatibility
|
||||
* Improvement. owl carousel updated
|
||||
|
||||
= 1.3.3 =
|
||||
|
||||
* New. embed layout to fit everywhere
|
||||
* Fixed. divi menu search width in center header
|
||||
* Fixed. ajax 400 bad request
|
||||
* Fixed. widget checkbox unchecked not saving
|
||||
* Fixed. removed save action on widgets
|
||||
* Improvement. normalize display block
|
||||
|
||||
= 1.3.2 =
|
||||
|
||||
* Fixed. removed title menu column when language is Spanish
|
||||
* Fixed. removed off classes from admin and frontend
|
||||
* Fixed. removed menu title attr slashes
|
||||
* Fixed. menu title not saving when description is not defined
|
||||
* Fixed. admin CSS large screen columns added
|
||||
* Fixed. admin columns add and remove
|
||||
|
||||
= 1.3.1 =
|
||||
|
||||
* Improvement. menu items badge removed on sticky menu
|
||||
|
||||
= 1.3.0 =
|
||||
|
||||
* New. woocommerce mega menu products in pro version
|
||||
* New. woocommerce mega menu categories in pro version
|
||||
|
||||
= 1.2.6 =
|
||||
|
||||
* Fixed. added to cart bubble trigger event
|
||||
* Fixed. false and empty default attributes
|
||||
|
||||
= 1.2.5 =
|
||||
|
||||
* Fixed. undefined parent obj type
|
||||
* Fixed. change menu item title removes entire item
|
||||
* Improvement. missing target option in menu items
|
||||
* Improvement. clean item content tags
|
||||
|
||||
= 1.2.4 =
|
||||
|
||||
* Fixed. default attributes in top level menu items
|
||||
* Fixed. exception for JavaScript non human events
|
||||
* Fixed. removed unused dropdown menu and float inside columns
|
||||
* Fixed. save checkbox unchecked in admin panel
|
||||
* Fixed. removed quadmenu sections in customize after refresh
|
||||
|
||||
= 1.2.3 =
|
||||
|
||||
* Fixed. removed customize sections when is not url param
|
||||
* Fixed. perfectscrollbar in carousel items
|
||||
* Improvement. deprecated functions
|
||||
* Improvement. javascript load
|
||||
* Improvement. custom menuitems function moved to object
|
||||
|
||||
= 1.2.2 =
|
||||
|
||||
* Fixed. undefined @themes in less files
|
||||
|
||||
= 1.2.1 =
|
||||
|
||||
* Improvement. filter for remove children nav menu items in admin
|
||||
|
||||
= 1.2.0 =
|
||||
|
||||
* New. customizer integration in pro
|
||||
* Improvement. option and customizer icons
|
||||
|
||||
= 1.1.9 =
|
||||
|
||||
* New. wordpress mobile menu shadow option
|
||||
* Fixed. featured image option hidden in post inside menu columns
|
||||
* Fixed. stylesheets not loading on https
|
||||
* Fixed. tab menu not close on first click
|
||||
* Fixed. menu caret background on second level items
|
||||
* Fixed. wordpress tabs menu title change on admin
|
||||
* Fixed. default menu items values in frontend
|
||||
* Fixed. woocommerce cart menu button background
|
||||
* Fixed. navbar caret icon line height
|
||||
* Fixed. hidden badges on post type items
|
||||
* Improvement. added login form pscrollbar and dropdown max height events
|
||||
|
||||
= 1.1.8 =
|
||||
|
||||
* New. custom password and register account links in login menu
|
||||
* Fixed. undefined variable _wp_registered_nav_menus in system
|
||||
* Fixed. stretch dropdown menu background
|
||||
* Fixed. wordpress mobile menu height
|
||||
* Fixed. admin widget text not open
|
||||
* Fixed. admin widget off saving event on settings change
|
||||
* Fixed. force menu width
|
||||
* Improvement. manual integration new option to activate menu editor
|
||||
* Improvement. manual integration menu location & theme update on php code
|
||||
* Improvement. check system less files download
|
||||
|
||||
= 1.1.7 =
|
||||
|
||||
* New. option dropdown menu background opacity
|
||||
* Fixed. placeholder colors in responsive menu
|
||||
* Fixed. placeholder colors in dropdown menu
|
||||
* Fixed. duplicated events in admin menu ajax
|
||||
* Improvement. change title on wordpress mega menu admin
|
||||
|
||||
= 1.1.6 =
|
||||
|
||||
* Fixed. undefined QuadMenu_Customizer in divi customizer
|
||||
* Fixed. divi & quadmenu customizer switch
|
||||
* Fixed. hidden width settings on menu columns
|
||||
|
||||
= 1.1.5 =
|
||||
|
||||
* Fixed. scape attr in link
|
||||
* Fixed. mega menu locations created by polylang
|
||||
* Fixed. invalid argument supplied for foreach() class.redux_helpers.php
|
||||
* Fixed. removed tooltips when title attr is empty
|
||||
* Improvement. wordpress mega menu plugin action link for settings
|
||||
|
||||
= 1.1.4 =
|
||||
|
||||
* Fixed. megamenu columns disappear
|
||||
|
||||
= 1.1.3 =
|
||||
|
||||
* Fixed. allowed memory size theme locations
|
||||
* Fixed. empty sections in admin panel
|
||||
* Fixed. file not found filetime locations & widget
|
||||
* Fixed. missing styles on theme change and network new site
|
||||
* Fixed. missing registered nav menus on init
|
||||
* Fixed. customizer removed columns widgets and child items
|
||||
* Fixed. customizer add item in preview
|
||||
* Removed. quadmenu-admin-core.js
|
||||
* Improvement. customizer stuff for divi mega menu
|
||||
* Improvement. customizer native support for divi mega menu
|
||||
|
||||
= 1.1.2 =
|
||||
|
||||
* New. option for dropdown menu tabs background
|
||||
* Fixed. force menu width to screen size
|
||||
* Fixed. dropdown background missing on dropdown menu max height
|
||||
* Improvement. new rgba color picker
|
||||
* Improvement. new offcanvas menu and vertical menu
|
||||
|
||||
= 1.1.1 =
|
||||
|
||||
* Fixed. undefined $_wp_registered_nav_menus
|
||||
* Fixed. closed menu items on mobile menu
|
||||
* Fixed. offcanvas not open
|
||||
* Improvement. clean shortcodes from content in post types
|
||||
* Improvement. alert for themes that doesn't natively support menus
|
||||
|
||||
= 1.1.0 =
|
||||
|
||||
* Fixed. undefined required field
|
||||
* Fixed. click on social menu icons hoverintent
|
||||
* Fixed. menu font validation
|
||||
* Fixed. normalize transform and opacity unset
|
||||
* Fixed. undefined index in required fields on developer options
|
||||
* Fixed. expired nonce alert
|
||||
* Fixed. hardcoded cart title
|
||||
* Fixed. hide unnecessary fields in admin according to item depth
|
||||
* Fixed. badges background in dropdown menus
|
||||
* New. option letter spacing
|
||||
* New. option dropdown menu stretch (custom,boxed,stretch dropdown menu and stretch content)
|
||||
* New. option background origin to fit strech dropdown menu
|
||||
* New. option border top left right bottom for dropdown menu
|
||||
* New. option border radius top left right bottom for dropdown menu
|
||||
* New. option max height on dropdown menu
|
||||
* Improvement. drop areas in admin panel highlighted
|
||||
* Improvement. number in new tabs and panels menu in backend
|
||||
* Improvement. version and timestamp to prevent css cache on change settings
|
||||
* Improvement. included error report on development mode
|
||||
|
||||
= 1.0.9 =
|
||||
|
||||
* Fix unsaved content in columns
|
||||
|
||||
= 1.0.8 =
|
||||
|
||||
* Fixed. name of options in adminbar menu
|
||||
* Fixed. login form dropdown menu empty on logged in
|
||||
* Fixed. removed scrollbar on offcanvas horizontal menu
|
||||
* Fixed. menu social icons open / close
|
||||
* Fixed. fatal error on edit_nav_menu_walker
|
||||
* Removed. quadmenu-core.js file
|
||||
* Improvement. Fallback function included
|
||||
|
||||
|
||||
= 1.0.7 =
|
||||
|
||||
* Fixed. hooks order on init
|
||||
* Fixed. margin on dropdown submenus
|
||||
* Fixed. menu icons width
|
||||
* Fixed. defaults on first load
|
||||
|
||||
= 1.0.6 =
|
||||
|
||||
* Fixed admin menu position
|
||||
* Fixed admin menu social icons
|
||||
* Fixed admin default filter for specific menu location and theme
|
||||
* New. option to show/hide dropdown menu shadow
|
||||
|
||||
= 1.0.5 =
|
||||
|
||||
* Fixed. add to menu column button
|
||||
* Fixed. unchecked menu items in navmenu metaboxes
|
||||
* Fixed. sticky menu for more than one instance
|
||||
* Fixed. layout behaviour: menu sticky disabled on scroll top
|
||||
* Fixed. mobile mega menu behaviour: closedropdownall disabled
|
||||
* Fixed. mobile mega menu behaviour: disable close sliblings on open dropdown
|
||||
* Fixed. visual composer shortcode
|
||||
* Fixed. invalid menu items posttype
|
||||
|
||||
= 1.0.4 =
|
||||
|
||||
* Fixed. cache wp rocket
|
||||
* Fixed. add to menu column button
|
||||
* Fixed. system report cache plugnis
|
||||
|
||||
= 1.0.3 =
|
||||
|
||||
* New. option force full menu width
|
||||
* New. carousel megamenu in premium version
|
||||
* Fixed. issues with php7
|
||||
* Fixed. issues in xs menu columns
|
||||
* Fixed. save menu widget issues
|
||||
* Fixed. undeleted menu items
|
||||
|
||||
= 1.0.2 =
|
||||
|
||||
* New. added backward compatibility with lmm mega menu columns
|
||||
* New. menu theme location option to remove conflicts
|
||||
* Fixed. sharp menu item default option
|
||||
* Fixed. Undefined url
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
* Fixed. Removed menu caret from item icon
|
||||
* Fixed. dropdown mega menu max height
|
||||
|
||||
= 1.0 =
|
||||
|
||||
* Wordpress Mega Menu initial menu version
|
||||
|
||||
== Upgrade Notice ==
|
||||
File diff suppressed because it is too large
Load Diff
37
spec/fixtures/dynamic_finders/plugin_version/rc-geo-access/change_log/changelog.txt
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/rc-geo-access/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
# Changelog
|
||||
|
||||
## 1.42
|
||||
|
||||
- Changed IPStack API url call to use plain HTTP as free accounts don't support SSL requests. Added related error code notification.
|
||||
|
||||
## 1.41
|
||||
|
||||
- Prevented "Settings" link from appearing in Network Plugins page on Multisite installation.
|
||||
|
||||
## 1.4
|
||||
|
||||
- Added plugin activation check to see if the plugin has been previously activated and had its restriction function enabled to prevent users from potentially being locked out of their site again.
|
||||
- Countries Whitelist now hidden until restriction function enabled and API Key set, this process improves the first-run experience when configuring the plugin.
|
||||
- Added notice in Dashboard and Plugin page to prompt user to configure the plugin via a link to the plugin settings page.
|
||||
|
||||
## 1.3
|
||||
|
||||
- Added validation of notification recipient email address, notice displayed next to field in admin and the notifications emails will not be sent if the email address is considered invalid.
|
||||
|
||||
## 1.2
|
||||
|
||||
- Added UI for saving an email address to receive notifications
|
||||
- Added UI for enabling type of email notifications to receive
|
||||
- Added various error handling and notifications in the admin, in particular to notify if the API request limit has been reached.
|
||||
|
||||
## 1.1
|
||||
|
||||
- Added support for IPStack API as the sole geolocation provider
|
||||
- Added UI for saving IPStack API Key
|
||||
- Added UI for enabling / disabling restriction
|
||||
- Added UI for setting restricted countries
|
||||
- Added warning when no countries have been set to strongly encourage user to add their current location to try and prevent them being locked out of the Admin(!)
|
||||
|
||||
## 1.0
|
||||
|
||||
- Initial plugin build.
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/rc-site-map/change_log/changelog.txt
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/rc-site-map/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
# Changelog
|
||||
|
||||
## 1.2
|
||||
- Updated PayPal donation link
|
||||
- Fixed typo on donation link settings
|
||||
|
||||
## 1.1
|
||||
|
||||
- Added 'heading_class' attribute to shortcode to enable a custom class to be added to the optional list heading.
|
||||
- Updated documentation to include more detail about CSS classes and styling.
|
||||
|
||||
## 1.0
|
||||
|
||||
- Added some additional attributes to provide more of the capabilities of `wp_list_pages` such as 'child_of', 'exclude', 'include' etc.
|
||||
|
||||
## 0.9
|
||||
|
||||
- Initial plugin build.
|
||||
@@ -0,0 +1,407 @@
|
||||
# Copyright (C) 2014 Risk Warning Bar
|
||||
# This file is distributed under the same license as the Risk Warning Bar package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Risk Warning Bar 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/WordPress-Plugin-Template\n"
|
||||
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:52
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:42
|
||||
msgctxt "post type general name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:53
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:43
|
||||
msgctxt "post type singular name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:55
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:45
|
||||
msgid "Add New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:55
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:56
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:57
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:59
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:45
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:46
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:47
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:49
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:56
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:46
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:57
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:47
|
||||
msgid "New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:58
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:48
|
||||
msgid "All %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:58
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:60
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:61
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:62
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:48
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:50
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:51
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:52
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:59
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:49
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:60
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:50
|
||||
msgid "Search %a"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:61
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:51
|
||||
msgid "No %s Found"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:62
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:52
|
||||
msgid "No %s Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:64
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:54
|
||||
msgid "*Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:95
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:105
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:85
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:95
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:96
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:86
|
||||
msgid "Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:97
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:87
|
||||
msgid "Search Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:98
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:88
|
||||
msgid "All Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:99
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:89
|
||||
msgid "Parent Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:100
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:90
|
||||
msgid "Parent Term:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:101
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:91
|
||||
msgid "Edit Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:102
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:92
|
||||
msgid "Update Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:103
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:93
|
||||
msgid "Add New Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:104
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:94
|
||||
msgid "New Term Name"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:125
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:115
|
||||
msgid "Custom Field"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:180
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:170
|
||||
msgid "Post updated. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:181
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:171
|
||||
msgid "Custom field updated."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:182
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:172
|
||||
msgid "Custom field deleted."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:183
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:173
|
||||
msgid "Post updated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: date and time of the revision
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:185
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:175
|
||||
msgid "Post restored to revision from %s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:186
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:176
|
||||
msgid "Post published. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:187
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:177
|
||||
msgid "Post saved."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:188
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:178
|
||||
msgid "Post submitted. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:189
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:179
|
||||
msgid "Post scheduled for: %1$s. %2$sPreview post%3$s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:189
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:179
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:190
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:180
|
||||
msgid "Post draft updated. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:201
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:191
|
||||
msgid "Post Details"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:295
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:285
|
||||
msgid "Enter the post title here"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:308
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:298
|
||||
msgid "Custom field:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-risk-warning-bar-post_type.php:309
|
||||
#: includes/post-types/class-risk-warning-bar-post_type.php:299
|
||||
msgid "Description of this custom field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:70
|
||||
#: includes/class-risk-warning-bar-settings.php:405
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:99
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:111
|
||||
msgid "Standard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:112
|
||||
msgid "These are fairly standard form input fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:116
|
||||
msgid "Some Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:117
|
||||
msgid "This is a standard text field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:120
|
||||
#: includes/class-risk-warning-bar-settings.php:128
|
||||
#: includes/class-risk-warning-bar-settings.php:136
|
||||
msgid "Placeholder text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:124
|
||||
msgid "A Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:125
|
||||
msgid "This is a standard password field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:132
|
||||
msgid "Some Secret Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:133
|
||||
msgid "This is a secret text field - any data saved here will not be displayed after the page has reloaded, but it will be saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:140
|
||||
msgid "A Text Block"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:141
|
||||
msgid "This is a standard text area."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:144
|
||||
msgid "Placeholder text for this textarea"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:148
|
||||
msgid "An Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:149
|
||||
msgid "A standard checkbox - if you save this option as checked then it will store the option as 'on', otherwise it will be an empty string."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:155
|
||||
msgid "A Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:156
|
||||
msgid "A standard select box."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:163
|
||||
msgid "Some Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:164
|
||||
msgid "A standard set of radio buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:171
|
||||
msgid "Some Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:172
|
||||
msgid "You can select multiple items and they will be stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:181
|
||||
msgid "Extra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:182
|
||||
msgid "These are some extra input fields that maybe aren't as common as the others."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:186
|
||||
msgid "A Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:187
|
||||
msgid "This is a standard number field - if this field contains anything other than numbers then the form will not be submitted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:190
|
||||
msgid "42"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:194
|
||||
msgid "Pick a colour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:195
|
||||
msgid "This uses WordPress' built-in colour picker - the option is stored as the colour's hex code."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:201
|
||||
msgid "An Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:202
|
||||
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/class-risk-warning-bar-settings.php:209
|
||||
msgid "A Multi-Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:210
|
||||
msgid "A standard multi-select box - the saved data is stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:354
|
||||
msgid "Upload an image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:354
|
||||
msgid "Use image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:354
|
||||
msgid "Upload new image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:355
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:410
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:427
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-risk-warning-bar-settings.php:458
|
||||
#: includes/class-risk-warning-bar-settings.php:467
|
||||
#: includes/class-risk-warning-bar.php:207
|
||||
#: includes/class-risk-warning-bar.php:216
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Risk Warning Bar"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Ali Azlan"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 2018-06-07 =
|
||||
* Initial release.
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"name": "sendbox",
|
||||
"version": "1.0.0",
|
||||
"description": "Sendbox Email Marketing Newsletter",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "test",
|
||||
"msgfmt": "msgfmt languages/sendbox-email-marketing-newsletter-ru_RU.po -o languages/sendbox-email-marketing-newsletter-ru_RU.mo",
|
||||
"msgmerge": "msgmerge -vU languages/sendbox-email-marketing-newsletter-ru_RU.po languages/sendbox-email-marketing-newsletter.pot",
|
||||
"prod": "gulp prod && npm run msgmerge && npm run msgfmt",
|
||||
"pomo": "npm run msgmerge && npm run msgfmt"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress"
|
||||
],
|
||||
"author": "Sendbox",
|
||||
"license": "GPL-2.0",
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-cssnano": "^2.1.2",
|
||||
"gulp-minify": "0.0.14",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-wp-pot": "^2.0.4",
|
||||
"gulp-zip": "^4.0.0"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
1307
spec/fixtures/dynamic_finders/plugin_version/sensei-lms/change_log/changelog.txt
vendored
Normal file
1307
spec/fixtures/dynamic_finders/plugin_version/sensei-lms/change_log/changelog.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,127 @@
|
||||
# Copyright (C) 2019 ScriptsTown
|
||||
# This file is distributed under the same license as the Share Social Media plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Share Social Media 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/share-social-"
|
||||
"media\n"
|
||||
"POT-Creation-Date: 2019-05-26T04:38:50+02:00\n"
|
||||
"PO-Revision-Date: 2019-05-26 08:09+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hi_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.2\n"
|
||||
"X-Domain: share-social-media\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/inc/class-stssm-admin-menu.php:6 admin/inc/setting/index.php:12
|
||||
msgid "Share Social Media"
|
||||
msgstr "शेयर सामाजिक मीडिया"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Add social media sharing icons to a post or page of your WordPress website "
|
||||
"and allow visitors to share your content on various social media sites."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ScriptsTown"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://scriptstown.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stssm-admin-menu.php:6
|
||||
msgid "Social Share"
|
||||
msgstr "सामाजिक शेयर"
|
||||
|
||||
#: admin/inc/class-stssm-setting.php:7
|
||||
msgid "Settings"
|
||||
msgstr "सेटिंग्स"
|
||||
|
||||
#: admin/inc/class-stssm-setting.php:64
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stssm-setting.php:80
|
||||
msgid "The plugin has been reset to its default state."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:7
|
||||
msgid "Social Icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:8
|
||||
msgid "Reset"
|
||||
msgstr "रीसेट"
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:13
|
||||
msgid ""
|
||||
"This will reset the plugin to its default state and clear all data created "
|
||||
"by this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Are you sure to reset the plugin to its default state?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Reset Plugin"
|
||||
msgstr "प्लगइन रीसेट करें"
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:26
|
||||
#: admin/inc/setting/tabs/social-icons.php:42
|
||||
msgid "Social Share Icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:56
|
||||
#: admin/inc/setting/tabs/social-icons.php:61
|
||||
msgid "Sticky Icons Placement"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:73
|
||||
#: admin/inc/setting/tabs/social-icons.php:78
|
||||
msgid "Placement on Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:90
|
||||
#: admin/inc/setting/tabs/social-icons.php:95
|
||||
msgid "Placement on Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:109
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:7
|
||||
msgid "Enable Sticky Icons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:8
|
||||
msgid "Enable on all Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:9
|
||||
msgid "Enable on all Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:15
|
||||
msgid "Left"
|
||||
msgstr "बाएं"
|
||||
|
||||
#: includes/class-stssm-helper.php:16
|
||||
msgid "Right"
|
||||
msgstr "सही"
|
||||
|
||||
#: includes/class-stssm-helper.php:22 includes/class-stssm-helper.php:29
|
||||
msgid "Before Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:23 includes/class-stssm-helper.php:30
|
||||
msgid "After Content"
|
||||
msgstr ""
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/simple-urls/composer_file/package.json
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/simple-urls/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "simple-urls",
|
||||
"description": "Development files for the Simple URLs plugin.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/studiopress/simple-urls"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"node-wp-i18n": "^1.2.3"
|
||||
},
|
||||
"scripts": {
|
||||
"makepot": "wpi18n makepot --exclude=vendor,node_modules",
|
||||
"addtextdomain": "wpi18n addtextdomain --exclude=vendor,node_modules"
|
||||
},
|
||||
"plugin": {
|
||||
"name": "Simple URLs",
|
||||
"uri": "https://github.com/studiopress/simple-urls",
|
||||
"description": "Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site by using custom post types and 301 redirects.",
|
||||
"author": "StudioPress",
|
||||
"authoruri": "https://www.studiopress.com/",
|
||||
"version": "0.9.9",
|
||||
"license": "GPL-2.0+",
|
||||
"licenseuri": "https://www.gnu.org/licenses/gpl-2.0.html",
|
||||
"textdomain": "simple-urls"
|
||||
}
|
||||
}
|
||||
151
spec/fixtures/dynamic_finders/plugin_version/simple-urls/translation_file/languages/simple-urls.pot
vendored
Normal file
151
spec/fixtures/dynamic_finders/plugin_version/simple-urls/translation_file/languages/simple-urls.pot
vendored
Normal file
@@ -0,0 +1,151 @@
|
||||
# Copyright (C) 2019 Nathan Rice
|
||||
# This file is distributed under the GNU General Public License v2.0 (or later).
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple URLs 0.9.9\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-urls\n"
|
||||
"POT-Creation-Date: 2019-06-19 02:28:51+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: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#: includes/class-simple-urls-admin.php:35
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls-admin.php:36
|
||||
msgid "Redirect to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls-admin.php:37
|
||||
msgid "Permalink"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls-admin.php:38
|
||||
msgid "Clicks"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls-admin.php:103
|
||||
msgid "URL Information"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls-admin.php:115
|
||||
msgid "Redirect URI"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls-admin.php:117
|
||||
msgid ""
|
||||
"This is the URL that the Redirect Link you create on this page will "
|
||||
"redirect to when accessed in a web browser."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls-admin.php:121
|
||||
#. translators: %d is the counter of clicks.
|
||||
msgid "This URL has been accessed %d times"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Simple URLs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:42
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:43
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:44
|
||||
msgid "Add New URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:45
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:46
|
||||
msgid "Edit URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:47
|
||||
msgid "New URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:48 includes/class-simple-urls.php:49
|
||||
msgid "View URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:50
|
||||
msgid "Search URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:51
|
||||
msgid "No URLs found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:52
|
||||
msgid "No URLs found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:56 includes/class-simple-urls.php:63
|
||||
#. translators: %s: link for the update
|
||||
#. translators: %s: URL to view
|
||||
msgid "URL updated. <a href=\"%s\">View URL</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:57
|
||||
msgid "Custom field updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:58
|
||||
msgid "Custom field deleted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:59
|
||||
msgid "URL updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:61
|
||||
#. translators: %s: date and time of the revision
|
||||
msgid "Post restored to revision from %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:64
|
||||
msgid "URL saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:65
|
||||
msgid "URL submitted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:66
|
||||
msgid "URL scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-simple-urls.php:67
|
||||
msgid "URL draft updated."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/simple-urls/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Simple URLs is a complete URL management system that allows you create, "
|
||||
"manage, and track outbound links from your site by using custom post types "
|
||||
"and 301 redirects."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Nathan Rice"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.nathanrice.net/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,254 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Table Addons For Elementor 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-05-29 02:26+0600\n"
|
||||
"PO-Revision-Date: 2019-05-29 02:26+0600\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: IqbalBary <contact@iqbalbary.com>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.6.11\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;esc_attr__;esc_html__;_e;esc_attr_e;esc_html_e;_x;"
|
||||
"esc_attr_x;esc_html_x\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor
|
||||
#: includes/class-table-addons-for-elementor-extension.php:129
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-extension.php:130
|
||||
#: includes/class-table-addons-for-elementor-extension.php:154
|
||||
#: includes/class-table-addons-for-elementor-extension.php:179
|
||||
msgid "Table Addons for Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-extension.php:131
|
||||
#: includes/class-table-addons-for-elementor-extension.php:155
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
|
||||
#: includes/class-table-addons-for-elementor-extension.php:153
|
||||
#: includes/class-table-addons-for-elementor-extension.php:178
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-extension.php:180
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:41
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:85
|
||||
#: includes/class-table-addons-for-elementor-widget.php:97
|
||||
#: includes/class-table-addons-for-elementor-widget.php:100
|
||||
msgid "Table Header"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:93
|
||||
msgid "Table Header Cell"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:106
|
||||
#: includes/class-table-addons-for-elementor-widget.php:256
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:109
|
||||
#: includes/class-table-addons-for-elementor-widget.php:110
|
||||
msgid "table data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:114
|
||||
#: includes/class-table-addons-for-elementor-widget.php:269
|
||||
msgid "Advance Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:116
|
||||
#: includes/class-table-addons-for-elementor-widget.php:126
|
||||
#: includes/class-table-addons-for-elementor-widget.php:147
|
||||
#: includes/class-table-addons-for-elementor-widget.php:249
|
||||
#: includes/class-table-addons-for-elementor-widget.php:271
|
||||
#: includes/class-table-addons-for-elementor-widget.php:283
|
||||
#: includes/class-table-addons-for-elementor-widget.php:308
|
||||
#: includes/class-table-addons-for-elementor-widget.php:590
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:117
|
||||
#: includes/class-table-addons-for-elementor-widget.php:127
|
||||
#: includes/class-table-addons-for-elementor-widget.php:148
|
||||
#: includes/class-table-addons-for-elementor-widget.php:250
|
||||
#: includes/class-table-addons-for-elementor-widget.php:272
|
||||
#: includes/class-table-addons-for-elementor-widget.php:284
|
||||
#: includes/class-table-addons-for-elementor-widget.php:309
|
||||
#: includes/class-table-addons-for-elementor-widget.php:591
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:121
|
||||
#: includes/class-table-addons-for-elementor-widget.php:278
|
||||
msgid "colSpan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:131
|
||||
#: includes/class-table-addons-for-elementor-widget.php:290
|
||||
msgid "colSpan Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:137
|
||||
#: includes/class-table-addons-for-elementor-widget.php:138
|
||||
#: includes/class-table-addons-for-elementor-widget.php:296
|
||||
#: includes/class-table-addons-for-elementor-widget.php:297
|
||||
#: includes/class-table-addons-for-elementor-widget.php:321
|
||||
#: includes/class-table-addons-for-elementor-widget.php:322
|
||||
msgid "1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:142
|
||||
msgid "Custom Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:152
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:178
|
||||
#: includes/class-table-addons-for-elementor-widget.php:328
|
||||
#: includes/class-table-addons-for-elementor-widget.php:458
|
||||
#: includes/class-table-addons-for-elementor-widget.php:528
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:185
|
||||
#: includes/class-table-addons-for-elementor-widget.php:335
|
||||
#: includes/class-table-addons-for-elementor-widget.php:462
|
||||
#: includes/class-table-addons-for-elementor-widget.php:532
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:189
|
||||
#: includes/class-table-addons-for-elementor-widget.php:339
|
||||
#: includes/class-table-addons-for-elementor-widget.php:466
|
||||
#: includes/class-table-addons-for-elementor-widget.php:536
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:193
|
||||
#: includes/class-table-addons-for-elementor-widget.php:343
|
||||
#: includes/class-table-addons-for-elementor-widget.php:470
|
||||
#: includes/class-table-addons-for-elementor-widget.php:540
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:197
|
||||
#: includes/class-table-addons-for-elementor-widget.php:347
|
||||
#: includes/class-table-addons-for-elementor-widget.php:474
|
||||
#: includes/class-table-addons-for-elementor-widget.php:544
|
||||
msgid "Justified"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:208
|
||||
#: includes/class-table-addons-for-elementor-widget.php:361
|
||||
msgid "Decoration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:214
|
||||
#: includes/class-table-addons-for-elementor-widget.php:367
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:215
|
||||
#: includes/class-table-addons-for-elementor-widget.php:368
|
||||
msgid "Underline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:216
|
||||
#: includes/class-table-addons-for-elementor-widget.php:369
|
||||
msgid "Overline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:217
|
||||
#: includes/class-table-addons-for-elementor-widget.php:370
|
||||
msgid "Line Through"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:218
|
||||
#: includes/class-table-addons-for-elementor-widget.php:371
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:235
|
||||
msgid "Table Body"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:247
|
||||
msgid "New Row"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:259
|
||||
#: includes/class-table-addons-for-elementor-widget.php:260
|
||||
#: includes/class-table-addons-for-elementor-widget.php:404
|
||||
#: includes/class-table-addons-for-elementor-widget.php:407
|
||||
msgid "Table Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:303
|
||||
msgid "rowSpan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:315
|
||||
msgid "rowSpan Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:399
|
||||
msgid "Table Body Cell"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:419
|
||||
msgid "General Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:427
|
||||
msgid "Inner Cell Padding"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:440
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:450
|
||||
msgid "Table Header Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:487
|
||||
#: includes/class-table-addons-for-elementor-widget.php:557
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:507
|
||||
#: includes/class-table-addons-for-elementor-widget.php:577
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:520
|
||||
msgid "Table Body Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:588
|
||||
msgid "Striped Background"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:597
|
||||
msgid "Secondary Background Color"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,126 @@
|
||||
# Copyright (C) 2019 SuitePlugins
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SuitePlugins - UM Lock Down 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/um-lock-down\n"
|
||||
"POT-Creation-Date: 2019-04-27 06:54:46+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-i18n 1.0.3\n"
|
||||
|
||||
#: includes/class-core.php:61 release/1.0.0/includes/class-core.php:61
|
||||
#: release/1.0.1/includes/class-core.php:61
|
||||
#: release/svn/includes/class-core.php:61
|
||||
msgid "Allow custom pause messages?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:62 release/1.0.0/includes/class-core.php:62
|
||||
#: release/1.0.1/includes/class-core.php:62
|
||||
#: release/svn/includes/class-core.php:62
|
||||
msgid "Allow users to set a custom message when pausing an account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:67 release/1.0.0/includes/class-core.php:67
|
||||
#: release/1.0.1/includes/class-core.php:67
|
||||
#: release/svn/includes/class-core.php:67
|
||||
msgid "Pause Account Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:69 release/1.0.0/includes/class-core.php:69
|
||||
#: release/1.0.1/includes/class-core.php:69
|
||||
#: release/svn/includes/class-core.php:69
|
||||
msgid "Choose a page..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:70 release/1.0.0/includes/class-core.php:70
|
||||
#: release/1.0.1/includes/class-core.php:70
|
||||
#: release/svn/includes/class-core.php:70
|
||||
msgid "Add custom page content that will load when a user pauses their account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:212 release/1.0.0/includes/class-core.php:212
|
||||
#: release/1.0.1/includes/class-core.php:212
|
||||
#: release/svn/includes/class-core.php:212
|
||||
msgid "Pause Account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:215 release/1.0.0/includes/class-core.php:215
|
||||
#: release/1.0.1/includes/class-core.php:215
|
||||
#: release/svn/includes/class-core.php:215
|
||||
msgid "Pause my account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:216 includes/class-core.php:232
|
||||
#: release/1.0.0/includes/class-core.php:216
|
||||
#: release/1.0.0/includes/class-core.php:232
|
||||
#: release/1.0.1/includes/class-core.php:216
|
||||
#: release/1.0.1/includes/class-core.php:232
|
||||
#: release/svn/includes/class-core.php:216
|
||||
#: release/svn/includes/class-core.php:232
|
||||
msgid "Here you can hide access to your profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:222 includes/class-core.php:238
|
||||
#: release/1.0.0/includes/class-core.php:222
|
||||
#: release/1.0.0/includes/class-core.php:238
|
||||
#: release/1.0.1/includes/class-core.php:222
|
||||
#: release/1.0.1/includes/class-core.php:238
|
||||
#: release/svn/includes/class-core.php:222
|
||||
#: release/svn/includes/class-core.php:238
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:223 includes/class-core.php:239
|
||||
#: release/1.0.0/includes/class-core.php:223
|
||||
#: release/1.0.0/includes/class-core.php:239
|
||||
#: release/1.0.1/includes/class-core.php:223
|
||||
#: release/1.0.1/includes/class-core.php:239
|
||||
#: release/svn/includes/class-core.php:223
|
||||
#: release/svn/includes/class-core.php:239
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:228 release/1.0.0/includes/class-core.php:228
|
||||
#: release/1.0.1/includes/class-core.php:228
|
||||
#: release/svn/includes/class-core.php:228
|
||||
msgid "Pause Account Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:231 release/1.0.0/includes/class-core.php:231
|
||||
#: release/1.0.1/includes/class-core.php:231
|
||||
#: release/svn/includes/class-core.php:231
|
||||
msgid "Paused Account Message"
|
||||
msgstr ""
|
||||
|
||||
#: release/1.0.0/um-lock-down.php:276 release/1.0.1/um-lock-down.php:276
|
||||
#: release/svn/um-lock-down.php:276 um-lock-down.php:276
|
||||
msgid ""
|
||||
"UM Lock Down is missing requirements and has been <a "
|
||||
"href=\"%s\">deactivated</a>. Please make sure all requirements are "
|
||||
"available."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "SuitePlugins - UM Lock Down"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://suiteplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Let users pause their account and lock it down from others"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SuitePlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://suiteplugins.com/about-us/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,398 @@
|
||||
# Copyright (C) 2019 themebeez
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Universal Google AdSense And Ads Manager 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://themebeez.com/support\n"
|
||||
"POT-Creation-Date: 2019-06-18 14:51:01+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: themebeez <themebeez@gmail.com>\n"
|
||||
"Language-Team: themebeez <themebeez@gmail.com>\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-KeywordsList: "
|
||||
"__;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_"
|
||||
"e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural;\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Universal Google AdSense And Ads Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:30
|
||||
msgid ""
|
||||
"Universal Google Adsense and Ads manager is a flexible easy to use Google "
|
||||
"Adsense, custom ads & script manager WordPress plugin. Universal Google "
|
||||
"Adsense and Ads manager ( UGAAM ) allows WordPress users to monetization "
|
||||
"your website easily. UGAAM supports Google Ads ( including Google auto Ads "
|
||||
"), Custom image banner ads, other advertisement network based on javascript "
|
||||
"( Example: mgid, buy sell ads, Bidvertiser, affiliates ads etc )"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:42
|
||||
msgid "Google adsense"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:46
|
||||
msgid ""
|
||||
"Monetize your website with Google Adsense without any hassle. Start earning "
|
||||
"just adding your Adsense code from customizer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:57
|
||||
msgid "Custom banner Ads"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:61
|
||||
msgid ""
|
||||
"UGAAM is not just limited to Google Adsense, feel the freedom to monetise "
|
||||
"your website using other ads network too"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:72
|
||||
msgid "Insert scripts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:76
|
||||
msgid ""
|
||||
"Wondering how to insert any scripts to either verify your domain or for "
|
||||
"different reason, UGAAM makes it simple"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:85
|
||||
msgid "Getting started .."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:90
|
||||
msgid "Q.1: Where can I insert Google domain verification code?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:93
|
||||
msgid ""
|
||||
"To verify your domian with Google, kindly navigate to Dashboard > "
|
||||
"Appearance > Customizer > Universal Google AdSense & Ad Manager > "
|
||||
"Header/Footer Script manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:96
|
||||
msgid "Q.2: How can I insert my Google Adsense advertisement code?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:99
|
||||
msgid ""
|
||||
"To insert your Google adsense code go to Dashboard > Appearance > "
|
||||
"Customizer > Universal Google AdSense & Ad Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:102
|
||||
msgid "Q.3: Can I use custom image banner ads?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:105
|
||||
msgid ""
|
||||
"Yes, you can do that. In order to upload your custom banner advertisement "
|
||||
"go to Dashboard > Appearance > Customizer > Universal Google AdSense & Ad "
|
||||
"Manager."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:108
|
||||
msgid "Q.4: Can I use other advertisement network ads?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:111
|
||||
msgid ""
|
||||
"Yes, you can even use to promote affiliation of bluehost, siteground, "
|
||||
"amazon etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:114
|
||||
msgid "Q.5: Do you provide free support?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:117
|
||||
msgid ""
|
||||
"Yes, we do. Kindly contact us from <a "
|
||||
"href=\"https://themebeez.com/support/\">Support page</a> directly or drop "
|
||||
"your mail at themebeez@gmail.com."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:126
|
||||
msgid "Quick Links ..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:129
|
||||
msgid "Insert Scripts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:130
|
||||
msgid "Insert Ads"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:131
|
||||
msgid "UGAAM Documenation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:132
|
||||
msgid "Get Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ugaam-admin-display.php:133
|
||||
msgid "Rate UGAAM"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
|
||||
#: includes/customizer/functions/customizer-choices.php:13
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
|
||||
#: includes/customizer/functions/customizer-choices.php:12
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:11
|
||||
msgid "None(Default)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:14
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:25
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:161
|
||||
msgid "Custom Ad"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:26
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:162
|
||||
msgid "AdSense Ad"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:37
|
||||
msgid "Before First Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:38
|
||||
msgid "After Last Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:39
|
||||
msgid "Between Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:50
|
||||
msgid "Before Post Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:51
|
||||
msgid "After Post Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-choices.php:52
|
||||
msgid "Within Post Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:5
|
||||
msgid "Show Ad Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:6
|
||||
msgid "Select Ad Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:7
|
||||
msgid "Select Ad Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:8
|
||||
msgid "Upload Ad Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:9
|
||||
msgid "Insert Ad Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:10
|
||||
msgid "Insert Ad Script Code - For Large Devices"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:11
|
||||
msgid "Insert Ad Script Code - For Small Devices"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:12
|
||||
msgid "Select Ad Postion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:13
|
||||
msgid "Show Ad Content After N Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:14
|
||||
msgid "Show Ad Content After N Paragraphs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:15
|
||||
msgid "Repeatedly Show Ad Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:16
|
||||
msgid "Repeatedly Show Ad Content For N Times"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:17
|
||||
msgid "Repeatedly Show Ad Content After N Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:18
|
||||
msgid "Repeatedly Show Ad Content After N Paragraphs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:19
|
||||
msgid "Enable custom css and margin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:20
|
||||
msgid "Custom CSS Class"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:21
|
||||
msgid "Margin Around Ad"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:22
|
||||
msgid "Header Script"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:23
|
||||
msgid "Footer Script"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:27
|
||||
msgid "Add CSS classes and separate them with a space."
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:28
|
||||
msgid "Set margin around the Ad."
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:29
|
||||
msgid ""
|
||||
"Add your analytics code, meta tags for website ownership verification and "
|
||||
"any thing else that should go in the head tag of your website."
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:30
|
||||
msgid "Any scripts and tags that should be added to your website footer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:42
|
||||
msgid "Universal Google AdSense & Ad Manager"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:67
|
||||
msgid "Blog Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:74
|
||||
msgid "Archive Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:81
|
||||
msgid "Single Post/Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:88
|
||||
msgid "Sticky Header Ads"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:95
|
||||
msgid "Sticky Footer Ads"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:102
|
||||
msgid "Header/Footer Scripts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/customizer/functions/customizer-fields.php:133
|
||||
#: includes/customizer/functions/customizer-fields.php:158
|
||||
#: includes/customizer/functions/customizer-fields.php:183
|
||||
#: includes/customizer/functions/customizer-fields.php:208
|
||||
#: includes/customizer/functions/customizer-fields.php:227
|
||||
msgid ""
|
||||
"If you want to show same Ad on mobiles as in desktop, paste the above code "
|
||||
"below "
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:16
|
||||
msgid "UGAAM: Ads and Scripts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:19
|
||||
msgid "Displays custom ad or adsense ad."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:150
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:157
|
||||
msgid "Ad Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:186
|
||||
msgid "Custom Ad Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:213
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:214
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:220
|
||||
msgid "Custom Ad Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:227
|
||||
msgid "Ad Script: Desktop & Tablet"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-ugaam-ad-widget.php:235
|
||||
msgid "Ad Script: Mobile"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://themebeez.com/universal-google-adsense-and-ads-manager"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Universal Google AdSense And Ads Manager is a simple, and easy to use "
|
||||
"Google AdSense and custom advertisement manager for your WordPress websites."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "themebeez"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://themebeez.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,99 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VAMASHIP SHIPPING 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-05-10 13:16+0530\n"
|
||||
"PO-Revision-Date: 2019-05-10 13:16+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: vamaship <care@vamaship.com>\n"
|
||||
"Language: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
|
||||
"Plural-Forms: Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/vamaship_shipping_option.php:29
|
||||
msgid "Vamaship Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:30
|
||||
msgid "This Shipping Method Use for Vamaship Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:38
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:40
|
||||
msgid "Enable this shipping."
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:44
|
||||
msgid "Vamaship Api Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:46
|
||||
msgid "API key get from vamaship"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:49
|
||||
msgid "Vamaship Domestic Air URL "
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:51
|
||||
#: includes/vamaship_shipping_option.php:56
|
||||
#: includes/vamaship_shipping_option.php:61
|
||||
msgid "Please enter the api request URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:54
|
||||
msgid "Vamaship Surface Request URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:59
|
||||
msgid "Vamaship Air Internatoinal Request URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:64
|
||||
msgid "GST NO "
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:66
|
||||
msgid "Please enter your GST number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:69
|
||||
msgid "Seller Phone No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:71
|
||||
msgid "Please enter Seller Phone No , it is required"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:54
|
||||
msgid "Track Your Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:72
|
||||
msgid "Generate VS Domestic Air Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:73
|
||||
msgid "Generate VS Surface B2C Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:74
|
||||
msgid "Generate VS Surface B2B Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:75
|
||||
msgid "Generate VS Air Internatoinal Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:126
|
||||
msgid "Generate Shipment"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.0.1 - 2019.05.22**/
|
||||
-Fixed: Custom email template
|
||||
|
||||
/**1.0.0 - 2019.05.10**/
|
||||
- First release
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/woo-cart-all-in-one/change_log/CHANGELOG.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/woo-cart-all-in-one/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
/*1.0.0 - 2019.*/
|
||||
- Release version 1.0.0
|
||||
@@ -0,0 +1,218 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CasinoCoin Payments 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-casinocoin-payments\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-06-18 20:50+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"X-Domain: wc-gateway-csc\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "CasinoCoin Payments"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/wenusch/woocommerce-casinocoin-payments"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A payment gateway for WooCommerce to accept CasinoCoin payments."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Massimo Wenusch"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/wenusch"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:60 woocommerce-csc.php:199
|
||||
msgid "CSC"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:61
|
||||
msgid "Let your customers pay using CasinoCoin."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:99
|
||||
msgid "<div class=\"notice notice-error\"><p><b>WooCommerce CasinoCoin Payments</b> does not support the <b>currency</b> your shop is using.</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:107
|
||||
msgid "<div class=\"notice notice-error\"><p><b>WooCommerce CasinoCoin Payments</b> requires you to specify a <b>CSC Account</b> and your <b>CSCL Webhook</b> details.</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:115
|
||||
msgid "<div class=\"notice notice-error\"><p>The specified <b>CSC Account</b> and/or <b>CSCL Webhook</b> details are invalid. Please correct these for <b>WooCommerce CasinonCion Payments</b> to work properly.</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:189
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:191
|
||||
msgid "Enable CasinoCoin Payments"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:196
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:198
|
||||
msgid "This controls the title for the payment method the customer sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:204
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:206
|
||||
msgid "Payment method description that the customer will see on your checkout."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:207
|
||||
msgid "Payment instruction will be shown once you've placed your order."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:212 woocommerce-csc.php:218 woocommerce-csc.php:505
|
||||
msgid "CSC Account"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:214
|
||||
msgid "Please specify the CSC Ledger account where your payments should be sent. This should be an account <b>YOU</b> own and should <b>NOT</b> be an exchange account, since a unique destination tag is generated for each order."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:220
|
||||
msgid "Your CSC account where payments should be sent."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:226
|
||||
msgid "CSCL Webhook options"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:228
|
||||
msgid "In order to create your webhook and process your payments properly, please specify your CSCL Webhooks API key. For more informations how to obtain these keys, please visit <a href=\"https://webhook.casinocoin.services/\">https://webhook.casinocoin.services</a>."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:232
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:234
|
||||
msgid "Your CSCL Webhook API key."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:240
|
||||
msgid "API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:242
|
||||
msgid "Your CSCL Webhook API secret."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:248
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:250
|
||||
msgid "Leave these untouched unless you really know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:254
|
||||
msgid "CSC Node (casinocoind)"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:256
|
||||
msgid "Which CSC node to use when checking our balance."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:263
|
||||
msgid "Bypass firewall"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:265
|
||||
msgid "Use a proxy to bypass your webservers firewall."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:272
|
||||
msgid "Exchange"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:274
|
||||
msgid "Which exchange to use when fetching the CSC rate."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:290
|
||||
msgid "Transaction Limit"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:292
|
||||
msgid "The number of transactions to fetch from the ledger each time we check for new payments."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:496
|
||||
msgid "CSC payment details"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:509
|
||||
msgid "Destination tag"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:513
|
||||
msgid "CSC total"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:517
|
||||
msgid "CSC received"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:521
|
||||
msgid "CSC left to pay"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-csc.php:525
|
||||
msgid "Order status"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:14
|
||||
msgid "Pending payment"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:16
|
||||
msgid "Processing (Paid)"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:18
|
||||
msgid "On hold"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:20
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:22
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:24
|
||||
msgid "Refunded"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:26
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:28
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: class-wccsc-helpers.php:30
|
||||
msgid "Overpaid"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/woo-customer-coupons/change_log/CHANGELOG.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/woo-customer-coupons/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/*1.0.0 - 2019.05.01*/
|
||||
- Release version 1.0.0
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user