Compare commits

..

15 Commits

Author SHA1 Message Date
erwanlr
cdc1dab4a6 Bumps version 2019-02-11 11:48:49 +00:00
erwanlr
431739ab19 Updates Rubocop dep 2019-02-11 10:44:29 +00:00
erwanlr
1780399050 Fixes #1277 2019-02-10 15:32:30 +00:00
erwanlr
eb75d38716 Fixes #1284 2019-02-10 13:47:19 +00:00
erwanlr
06f82d78f4 Ref #1285 - Adds comment about the pagination 2019-02-10 10:49:03 +00:00
erwanlr
dee4da1c0e Fixes #1285 2019-02-10 10:45:54 +00:00
erwanlr
e341ec7c60 Adds DFs 2019-02-10 09:44:17 +00:00
Erwan
9146609e4a Update Readme, Fixes #1286 2019-02-03 20:46:03 +01:00
erwanlr
f90615ca41 Adds DF 2019-02-03 07:08:05 +00:00
erwanlr
8a2a6a05ff Adds DFs 2019-01-27 10:54:13 +00:00
Erwan
5a787f8ed5 Adds a note about bug in Ruby 2.5.x, Ref #1283 2019-01-25 20:14:14 +00:00
erwanlr
a904053002 Adds DFs 2019-01-20 17:04:32 +00:00
Erwan
70ecd30dcc Merge pull request #1276 from wpscanteam/dependabot/bundler/rubocop-tw-0.63.0
Update rubocop requirement from ~> 0.62.0 to ~> 0.63.0
2019-01-17 09:32:24 +00:00
dependabot[bot]
b0976d7e47 Update rubocop requirement from ~> 0.62.0 to ~> 0.63.0
Updates the requirements on [rubocop](https://github.com/rubocop-hq/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop-hq/rubocop/releases)
- [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop-hq/rubocop/commits/v0.63.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-17 05:54:18 +00:00
erwanlr
bb5e55016c Adds DFs 2019-01-13 16:56:13 +00:00
68 changed files with 20163 additions and 80 deletions

View File

@@ -9,17 +9,22 @@
## Prerequisites:
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
- Ruby >= 2.3 - Recommended: latest
- Curl >= 7.21 - Recommended: latest - FYI the 7.29 has a segfault
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
- Curl >= 7.21 - Recommended: latest
- The 7.29 has a segfault
- RubyGems - Recommended: latest
### From RubyGems:
### From RubyGems (Recommended):
```
gem install wpscan
```
### From sources:
On MacOSX, if a ```Gem::FilePermissionError``` is raised due to the Apple's System Integrity Protection (SIP), either install RVM and install wpscan again, or run ```sudo gem install -n /usr/local/bin wpscan``` (see [#1286](https://github.com/wpscanteam/wpscan/issues/1286))
### From sources (NOT Recommended):
Prerequisites: Git
@@ -31,6 +36,12 @@ cd wpscan/
bundle install && rake install
```
# Updating
You can update the local database by using ```wpscan --update```
Updating WPScan itself is either done via ```gem update wpscan``` or the packages manager (this is quite important for distributions such as in Kali Linux: ```apt-get update && apt-get upgrade```) depending how WPScan was (pre)installed
# Docker
Pull the repo with ```docker pull wpscanteam/wpscan```

View File

@@ -71,7 +71,7 @@ module WPScan
exit(WPScan::ExitCode::VULNERABLE)
end
raise NotWordPressError unless target.wordpress? || parsed_options[:force]
raise NotWordPressError unless target.wordpress?(parsed_options[:detection_mode]) || parsed_options[:force]
end
# Loads the related server module in the target

View File

@@ -3,9 +3,10 @@ module WPScan
# Enumeration Methods
class Enumeration < CMSScanner::Controller::Base
# @param [ String ] type (plugins or themes)
# @param [ Symbol ] detection_mode
#
# @return [ String ] The related enumration message depending on the parsed_options and type supplied
def enum_message(type)
def enum_message(type, detection_mode)
return unless %w[plugins themes].include?(type)
details = if parsed_options[:enumerate][:"vulnerable_#{type}"]
@@ -16,7 +17,20 @@ module WPScan
'Most Popular'
end
"Enumerating #{details} #{type.capitalize}"
"Enumerating #{details} #{type.capitalize} #{enum_detection_message(detection_mode)}"
end
# @param [ Symbol ] detection_mode
#
# @return [ String ]
def enum_detection_message(detection_mode)
detection_method = if detection_mode == :mixed
'Passive and Aggressive'
else
detection_mode.to_s.capitalize
end
"(via #{detection_method} Methods)"
end
# @param [ String ] type (plugins, themes etc)
@@ -49,12 +63,15 @@ module WPScan
sort: true
)
output('@info', msg: enum_message('plugins')) if user_interaction?
output('@info', msg: enum_message('plugins', opts[:mode])) if user_interaction?
# Enumerate the plugins & find their versions to avoid doing that when #version
# is called in the view
plugins = target.plugins(opts)
output('@info', msg: 'Checking Plugin Versions') if user_interaction? && !plugins.empty?
if user_interaction? && !plugins.empty?
output('@info',
msg: "Checking Plugin Versions #{enum_detection_message(opts[:version_detection][:mode])}")
end
plugins.each(&:version)
@@ -92,12 +109,15 @@ module WPScan
sort: true
)
output('@info', msg: enum_message('themes')) if user_interaction?
output('@info', msg: enum_message('themes', opts[:mode])) if user_interaction?
# Enumerate the themes & find their versions to avoid doing that when #version
# is called in the view
themes = target.themes(opts)
output('@info', msg: 'Checking Theme Versions') if user_interaction? && !themes.empty?
if user_interaction? && !themes.empty?
output('@info',
msg: "Checking Theme Versions #{enum_detection_message(opts[:version_detection][:mode])}")
end
themes.each(&:version)
@@ -125,21 +145,21 @@ module WPScan
def enum_timthumbs
opts = default_opts('timthumbs').merge(list: parsed_options[:timthumbs_list])
output('@info', msg: 'Enumerating Timthumbs') if user_interaction?
output('@info', msg: "Enumerating Timthumbs #{enum_detection_message(opts[:mode])}") if user_interaction?
output('timthumbs', timthumbs: target.timthumbs(opts))
end
def enum_config_backups
opts = default_opts('config_backups').merge(list: parsed_options[:config_backups_list])
output('@info', msg: 'Enumerating Config Backups') if user_interaction?
output('@info', msg: "Enumerating Config Backups #{enum_detection_message(opts[:mode])}") if user_interaction?
output('config_backups', config_backups: target.config_backups(opts))
end
def enum_db_exports
opts = default_opts('db_exports').merge(list: parsed_options[:db_exports_list])
output('@info', msg: 'Enumerating DB Exports') if user_interaction?
output('@info', msg: "Enumerating DB Exports #{enum_detection_message(opts[:mode])}") if user_interaction?
output('db_exports', db_exports: target.db_exports(opts))
end
@@ -147,7 +167,9 @@ module WPScan
opts = default_opts('medias').merge(range: parsed_options[:enumerate][:medias])
if user_interaction?
output('@info', msg: 'Enumerating Medias (Permalink setting must be set to "Plain" for those to be detected)')
output('@info',
msg: "Enumerating Medias #{enum_detection_message(opts[:mode])} "\
'(Permalink setting must be set to "Plain" for those to be detected)')
end
output('medias', medias: target.medias(opts))
@@ -166,7 +188,7 @@ module WPScan
list: parsed_options[:users_list]
)
output('@info', msg: 'Enumerating Users') if user_interaction?
output('@info', msg: "Enumerating Users #{enum_detection_message(opts[:mode])}") if user_interaction?
output('users', users: target.users(opts))
end

View File

@@ -4,20 +4,29 @@ module WPScan
# WP JSON API
#
# Since 4.7 - Need more investigation as it seems WP 4.7.1 reduces the exposure, see https://github.com/wpscanteam/wpscan/issues/1038)
# For the pagination, see https://github.com/wpscanteam/wpscan/issues/1285
#
class WpJsonApi < CMSScanner::Finders::Finder
MAX_PER_PAGE = 100 # See https://developer.wordpress.org/rest-api/using-the-rest-api/pagination/
# @param [ Hash ] opts
#
# @return [ Array<User> ]
def aggressive(_opts = {})
found = []
found = []
current_page = 0
JSON.parse(Browser.get(api_url).body)&.each do |user|
found << CMSScanner::User.new(user['slug'],
id: user['id'],
found_by: found_by,
confidence: 100,
interesting_entries: [api_url])
loop do
current_page += 1
res = Typhoeus.get(api_url, params: { per_page: MAX_PER_PAGE, page: current_page })
total_pages ||= res.headers['X-WP-TotalPages'].to_i
users_in_page = users_from_response(res)
found += users_in_page
break if current_page >= total_pages || users_in_page.empty?
end
found
@@ -25,6 +34,23 @@ module WPScan
found
end
# @param [ Typhoeus::Response ] response
#
# @return [ Array<User> ] The users from the response
def users_from_response(response)
found = []
JSON.parse(response.body)&.each do |user|
found << CMSScanner::User.new(user['slug'],
id: user['id'],
found_by: found_by,
confidence: 100,
interesting_entries: [response.effective_url])
end
found
end
# @return [ String ] The URL of the API listing the Users
def api_url
@api_url ||= target.url('wp-json/wp/v2/users/')

View File

@@ -18,10 +18,10 @@ module WPScan
alias registration_enabled? registration_enabled
alias mu_plugins? mu_plugins
# @param [ Symbol ] detection_mode
#
# @return [ Boolean ]
def wordpress?
# res = Browser.get(url)
def wordpress?(detection_mode)
in_scope_urls(homepage_res) do |url|
return true if Addressable::URI.parse(url).path.match(WORDPRESS_PATTERN)
end
@@ -32,6 +32,14 @@ module WPScan
return true unless comments_from_page(/wordpress/i, homepage_res).empty?
if %i[mixed aggressive].include?(detection_mode)
%w[wp-admin/install.php wp-login.php].each do |path|
in_scope_urls(Browser.get_and_follow_location(url(path))).each do |url|
return true if Addressable::URI.parse(url).path.match(WORDPRESS_PATTERN)
end
end
end
false
end

View File

@@ -1,4 +1,4 @@
# Version
module WPScan
VERSION = '3.4.3'.freeze
VERSION = '3.4.4'.freeze
end

View File

@@ -165,7 +165,7 @@ describe WPScan::Controller::Core do
before do
expect(core).to receive(:load_server_module)
expect(core.target).to receive(:wordpress?).and_return(true)
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
end
it 'calls the formatter when started and finished to update the db' do
@@ -208,7 +208,7 @@ describe WPScan::Controller::Core do
context 'when wordpress' do
it 'does not raise an error' do
expect(core.target).to receive(:wordpress?).and_return(true)
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
expect { core.before_scan }.to_not raise_error
end
@@ -216,7 +216,7 @@ describe WPScan::Controller::Core do
context 'when not wordpress' do
it 'raises an error' do
expect(core.target).to receive(:wordpress?).and_return(false)
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(false)
expect { core.before_scan }.to raise_error(WPScan::NotWordPressError)
end
@@ -237,7 +237,7 @@ describe WPScan::Controller::Core do
context 'when wordpress' do
before do
expect(core).to receive(:load_server_module)
expect(core.target).to receive(:wordpress?).and_return(true)
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
end
it 'does not raise any error' do
@@ -248,7 +248,7 @@ describe WPScan::Controller::Core do
context 'when not wordpress' do
before do
expect(core).to receive(:load_server_module)
expect(core.target).to receive(:wordpress?).and_return(false)
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(false)
end
context 'when no --force' do

View File

@@ -14,10 +14,11 @@ describe WPScan::Controller::Enumeration do
end
describe '#enum_message' do
after { expect(controller.enum_message(type)).to eql @expected }
after { expect(controller.enum_message(type, detection_mode)).to eql @expected }
context 'when type argument is incorrect' do
let(:type) { 'spec' }
let(:type) { 'spec' }
let(:detection_mode) { :mixed }
it 'returns nil' do
@expected = nil
@@ -26,29 +27,32 @@ describe WPScan::Controller::Enumeration do
%w[plugins themes].each do |t|
context "type = #{t}" do
let(:type) { t }
let(:type) { t }
let(:detection_mode) { :mixed }
context 'when vulnerable' do
let(:cli_args) { "#{super()} -e v#{type[0]}" }
it 'returns the expected string' do
@expected = "Enumerating Vulnerable #{type.capitalize}"
@expected = "Enumerating Vulnerable #{type.capitalize} (via Passive and Aggressive Methods)"
end
end
context 'when all' do
let(:cli_args) { "#{super()} -e a#{type[0]}" }
let(:cli_args) { "#{super()} -e a#{type[0]}" }
let(:detection_mode) { :passive }
it 'returns the expected string' do
@expected = "Enumerating All #{type.capitalize}"
@expected = "Enumerating All #{type.capitalize} (via Passive Methods)"
end
end
context 'when most popular' do
let(:cli_args) { "#{super()} -e #{type[0]}" }
let(:cli_args) { "#{super()} -e #{type[0]}" }
let(:detection_mode) { :aggressive }
it 'returns the expected string' do
@expected = "Enumerating Most Popular #{type.capitalize}"
@expected = "Enumerating Most Popular #{type.capitalize} (via Aggressive Methods)"
end
end
end

View File

@@ -2,42 +2,79 @@ describe WPScan::Finders::Users::WpJsonApi do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Target.new(url) }
let(:url) { 'http://wp.lab/' }
let(:fixtures) { File.join(FINDERS_FIXTURES, 'users', 'wp_json_api') }
let(:fixtures) { FINDERS_FIXTURES.join('users', 'wp_json_api') }
describe '#aggressive' do
before do
allow(target).to receive(:sub_dir).and_return(false)
stub_request(:get, finder.api_url).to_return(body: body)
end
before { allow(target).to receive(:sub_dir).and_return(false) }
context 'when not a JSON response' do
let(:body) { '' }
context 'when only one page of results' do
before do
stub_request(:get, finder.api_url)
.with(query: { page: 1, per_page: 100 })
.to_return(body: body, headers: {})
end
its(:aggressive) { should eql([]) }
end
context 'when a JSON response' do
context 'when unauthorised' do
let(:body) { File.read(File.join(fixtures, '401.json')) }
context 'when not a JSON response' do
let(:body) { '' }
its(:aggressive) { should eql([]) }
end
context 'when limited exposure (WP >= 4.7.1)' do
let(:body) { File.read(File.join(fixtures, '4.7.2.json')) }
context 'when a JSON response' do
context 'when unauthorised' do
let(:body) { File.read(fixtures.join('401.json')) }
it 'returns the expected array of users' do
users = finder.aggressive
expect(users.size).to eql 1
user = users.first
expect(user.id).to eql 1
expect(user.username).to eql 'admin'
expect(user.confidence).to eql 100
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/wp/v2/users/']
its(:aggressive) { should eql([]) }
end
context 'when limited exposure (WP >= 4.7.1)' do
let(:body) { File.read(fixtures.join('4.7.2.json')) }
it 'returns the expected array of users' do
users = finder.aggressive
expect(users.size).to eql 1
user = users.first
expect(user.id).to eql 1
expect(user.username).to eql 'admin'
expect(user.confidence).to eql 100
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/wp/v2/users/?page=1&per_page=100']
end
end
end
end
context 'when multiple pages of results' do
before do
stub_request(:get, finder.api_url)
.with(query: { page: 1, per_page: 100 })
.to_return(body: File.read(fixtures.join('4.7.2.json')), headers: { 'X-WP-TotalPages' => 2 })
stub_request(:get, finder.api_url)
.with(query: { page: 2, per_page: 100 })
.to_return(body: File.read(fixtures.join('4.7.2-2.json')), headers: { 'X-WP-TotalPages' => 2 })
end
it 'returns the expected array of users' do
users = finder.aggressive
expect(users.size).to eql 2
user = users.first
expect(user.id).to eql 1
expect(user.username).to eql 'admin'
expect(user.confidence).to eql 100
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/wp/v2/users/?page=1&per_page=100']
user = users.second
expect(user.id).to eql 20
expect(user.username).to eql 'user'
expect(user.confidence).to eql 100
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/wp/v2/users/?page=2&per_page=100']
end
end
end

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,412 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Ad Blocks 1.0.0\n"
"POT-Creation-Date: 2019-01-29 02:40+0200\n"
"PO-Revision-Date: 2016-07-05 22:59+0300\n"
"Last-Translator: \n"
"Language-Team: Sergey Kravchenko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2\n"
"X-Poedit-Basepath: ..\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"
"Language: ru\n"
"X-Poedit-KeywordsList: __;_e;esc_attr_e;_x;_n\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: includes/plugins/cmb2\n"
#: includes/class-calendar-functions.php:49
#: includes/class-calendar-functions.php:63
msgid "Sun"
msgstr ""
#: includes/class-calendar-functions.php:50
#: includes/class-calendar-functions.php:57
msgid "Mon"
msgstr ""
#: includes/class-calendar-functions.php:51
#: includes/class-calendar-functions.php:58
msgid "Tue"
msgstr ""
#: includes/class-calendar-functions.php:52
#: includes/class-calendar-functions.php:59
msgid "Wed"
msgstr ""
#: includes/class-calendar-functions.php:53
#: includes/class-calendar-functions.php:60
msgid "Thu"
msgstr ""
#: includes/class-calendar-functions.php:54
#: includes/class-calendar-functions.php:61
msgid "Fri"
msgstr ""
#: includes/class-calendar-functions.php:55
#: includes/class-calendar-functions.php:62
msgid "Sat"
msgstr ""
#: includes/class-calendar-functions.php:76
#: includes/class-calendar-functions.php:90
msgid "Su"
msgstr ""
#: includes/class-calendar-functions.php:77
#: includes/class-calendar-functions.php:84
msgid "Mo"
msgstr ""
#: includes/class-calendar-functions.php:78
#: includes/class-calendar-functions.php:85
msgid "Tu"
msgstr ""
#: includes/class-calendar-functions.php:79
#: includes/class-calendar-functions.php:86
msgid "We"
msgstr ""
#: includes/class-calendar-functions.php:80
#: includes/class-calendar-functions.php:87
msgid "Th"
msgstr ""
#: includes/class-calendar-functions.php:81
#: includes/class-calendar-functions.php:88
msgid "Fr"
msgstr ""
#: includes/class-calendar-functions.php:82
#: includes/class-calendar-functions.php:89
msgid "Sa"
msgstr ""
#: includes/class-cmb2-admin.php:90
msgid "Shortcode options"
msgstr ""
#: includes/class-cmb2-admin.php:100
msgid "Shortcode name param"
msgstr ""
#: includes/class-cmb2-admin.php:111
msgid "Auto posting"
msgstr ""
#: includes/class-cmb2-admin.php:121
msgid "Auto add to posts"
msgstr ""
#: includes/class-cmb2-admin.php:125 includes/class-settings-admin.php:348
msgid "No"
msgstr ""
#: includes/class-cmb2-admin.php:126 includes/class-settings-admin.php:347
msgid "Yes"
msgstr ""
#: includes/class-cmb2-admin.php:132
msgid "Insert location"
msgstr ""
#: includes/class-cmb2-admin.php:136
msgid "Before content"
msgstr ""
#: includes/class-cmb2-admin.php:137
msgid "After content"
msgstr ""
#: includes/class-cmb2-admin.php:143
msgid "Post types"
msgstr ""
#: includes/class-post-types.php:56 includes/class-post-types.php:57
msgid "Ad Block"
msgstr ""
#: includes/class-post-types.php:58 includes/class-post-types.php:59
#: includes/class-post-types.php:65 includes/class-post-types.php:76
#: includes/widgets/class-adblocks.php:10
msgid "Ad Blocks"
msgstr ""
#: includes/class-post-types.php:60
msgid "Add new"
msgstr ""
#: includes/class-post-types.php:61
msgid "Add New Ad Block"
msgstr ""
#: includes/class-post-types.php:62
msgid "New Ad Block"
msgstr ""
#: includes/class-post-types.php:63
msgid "Edit Ad Block"
msgstr ""
#: includes/class-post-types.php:64
msgid "View Ad Block"
msgstr ""
#: includes/class-post-types.php:66
msgid "Search Ad Block"
msgstr ""
#: includes/class-post-types.php:67
msgid "Parent Ad Block:"
msgstr ""
#: includes/class-post-types.php:68
msgid "Not found."
msgstr ""
#: includes/class-post-types.php:69
msgid "Not found in Trash."
msgstr ""
#: includes/class-post-types.php:70
msgid "Update Ad Block"
msgstr ""
#: includes/class-posts-admin.php:37
msgid "Shortcode"
msgstr ""
#: includes/class-posts-admin.php:38
msgid "Date"
msgstr ""
#: includes/class-settings-admin.php:55
#: includes/class-settings-admin.php:56
#: includes/class-settings-admin.php:74
msgid "Ad Blocks Settings"
msgstr ""
#: includes/class-settings-admin.php:184
msgid "General"
msgstr ""
#: includes/class-settings-admin.php:191
msgid "Use classic editor for Ad Block post type"
msgstr ""
#: includes/class-settings-admin.php:200
msgid "Date format"
msgstr ""
#: includes/class-settings-admin.php:279
msgid "Upload"
msgstr ""
#: includes/class-settings-admin.php:287
msgid "Custom Image"
msgstr ""
#: includes/class-settings-admin.php:289
msgid "Upload Image"
msgstr ""
#: includes/class-settings-admin.php:361
msgid "d/m/Y"
msgstr ""
#: includes/class-settings-admin.php:362
msgid "m/d/Y"
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_Base.php:422
#, php-format
msgid ""
"The \"%1$s\" field parameter has been deprecated in favor of the \"%2$s"
"\" parameter."
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_Base.php:426
#, php-format
msgid ""
"Using the \"%1$s\" field parameter as a callback has been deprecated in "
"favor of the \"%2$s\" parameter."
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_Base.php:456
#, php-format
msgid ""
"%1$s was called with a parameter that is <strong>deprecated</strong> "
"since version %2$s! %3$s"
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_Base.php:458
#, php-format
msgid ""
"%1$s was called with a parameter that is <strong>deprecated</strong> "
"since version %2$s with no alternative available."
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_JS.php:200
msgid "mm/dd/yy"
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_JS.php:220
msgid "hh:mm TT"
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_Options_Hookup.php:139
msgid "Nothing to update."
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_Options_Hookup.php:143
msgid "Settings updated."
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_Types.php:232
msgid "Custom CMB2 field type classes must extend CMB2_Type_Base."
msgstr ""
#: includes/vendors/cmb2/includes/CMB2_hookup.php:466
#, php-format
msgid "Toggle panel: %s"
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller.php:257
msgid "This box does not have read permissions."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller.php:277
msgid "This box does not have write permissions."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller.php:300
msgid ""
"No box found by that id. A box needs to be registered with the "
"\"show_in_rest\" parameter configured."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller.php:378
msgid "A human-readable description of the object."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller.php:385
msgid "The id for the object."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller.php:392
msgid "The title for the object."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:51
msgid "Includes the registered fields for the box in the response."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:72
msgid ""
"Includes the fully rendered attributes, 'form_open', 'form_close', as "
"well as the enqueued 'js_dependencies' script handles, and "
"'css_dependencies' stylesheet handles."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:122
msgid "No boxes found."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:27
msgid ""
"Includes the box object which the fields are registered to in the "
"response."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:30
msgid ""
"When the '_rendered' argument is passed, the renderable field attributes "
"will be returned fully rendered. By default, the names of the callback "
"handers for the renderable attributes will be returned."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:33
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:36
msgid ""
"To view or modify the field's value, the 'object_id' and 'object_type' "
"arguments are required."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:236
msgid ""
"CMB2 Field value cannot be updated without the value parameter specified."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:297
msgid ""
"CMB2 Field value cannot be modified without the object_id and "
"object_type parameters specified."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:312
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:341
msgid "No field found by that id."
msgstr ""
#: includes/vendors/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:415
#, php-format
msgid "Value Error for %s"
msgstr ""
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:25
#, php-format
msgid "Method '%s' must be overridden."
msgstr ""
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:35
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:47
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:59
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:71
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:83
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:95
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:107
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:119
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:131
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:143
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:155
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:168
#, php-format
msgid "Method '%s' not implemented. Must be overridden in subclass."
msgstr ""
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:273
msgid "Current page of the collection."
msgstr ""
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:281
msgid "Maximum number of items to be returned in result set."
msgstr ""
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:290
msgid "Limit results to those matching a string."
msgstr ""
#: includes/vendors/cmb2/includes/shim/WP_REST_Controller.php:308
msgid ""
"Scope under which the request is made; determines fields present in "
"response."
msgstr ""
#: includes/widgets/class-adblocks.php:12
msgid "Show Ad Blocks"
msgstr ""
#: includes/widgets/class-adblocks.php:51
msgid "Title:"
msgstr ""
#: includes/widgets/class-adblocks.php:56
msgid "Ad block name(s):"
msgstr ""

View File

@@ -0,0 +1,20 @@
{
"name": "adrecord-affiliate",
"version": "1.0.0",
"private": true,
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-toggle-component": "^1.0.5",
"react-wp-scripts": "0.2.0",
"styled-components": "^4.1.3"
},
"scripts": {
"start": "react-wp-scripts start",
"build": "react-scripts build",
"make-pot": "wp i18n make-pot . --exclude=src,build --debug",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"zip": "zip ../adrecord-affiliate.zip -r build src public adrecord-affiliate.php react-wp-scripts.php readme.txt yarn.lock languages php package.json build-tools.md"
}
}

View File

@@ -0,0 +1,118 @@
# Copyright (C) 2019 Adrecord
# This file is distributed under the same license as the Adrecord Affiliate plugin.
msgid ""
msgstr ""
"Project-Id-Version: Adrecord Affiliate 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/adrecord-affiliate\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-01-24T13:33:13+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: adrecord\n"
#. Plugin Name of the plugin
msgid "Adrecord Affiliate"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/adrecord-affiliate/"
msgstr ""
#. Description of the plugin
msgid "Adrecords WordPress plugin for affiliates. Easily enable and make use of clean links and other features right in your WordPress site."
msgstr ""
#. Author of the plugin
msgid "Adrecord"
msgstr ""
#. Author URI of the plugin
msgid "https://www.adrecord.com"
msgstr ""
#: php/App.php:176
msgid "Loading"
msgstr ""
#: php/LanguageDictionary.php:7
msgid "Welcome to the Adrecord Wordpress plugin"
msgstr ""
#: php/LanguageDictionary.php:8
msgid "To get started, enter your API-key to connect with your account at Adrecord."
msgstr ""
#: php/LanguageDictionary.php:9
msgid "Welcome"
msgstr ""
#: php/LanguageDictionary.php:10
msgid "API-key:"
msgstr ""
#: php/LanguageDictionary.php:11
msgid "You can find your API-key "
msgstr ""
#: php/LanguageDictionary.php:12
msgid "in the Adrecord dashboard advanced section."
msgstr ""
#: php/LanguageDictionary.php:13
msgid "Clean links enabled:"
msgstr ""
#: php/LanguageDictionary.php:14
msgid "Clean links is a technique for linking to advertisers with \"regular links\", for example, directly to http://www.example.com instead of https://click.adrecord.com/?p=19&c=TEST. When you have enabled clean links and have entered a regular link to one of your advertisers in your content, please try to click one of your links and make sure you can see the clicks counting in the Adrecord dashboard."
msgstr ""
#: php/LanguageDictionary.php:15
msgid "Latest programs"
msgstr ""
#: php/LanguageDictionary.php:16
msgid "About Adrecord"
msgstr ""
#: php/LanguageDictionary.php:17
msgid ""
"Adrecord is an affiliate network with long experience and broad \n"
" knowledge that helps with affiliate marketing in a friendly and\n"
" transparent way."
msgstr ""
#: php/LanguageDictionary.php:20
msgid ""
"With our help you can set up and administer an affiliate program\n"
" according to your terms, we will take full responsibility for\n"
" the technology, finance and support, and create relationships\n"
" with talented affiliates."
msgstr ""
#: php/LanguageDictionary.php:24
msgid "Get started with Adrecord"
msgstr ""
#: php/LanguageDictionary.php:25
msgid ""
"Don't have an affiliate account at Adrecord? No worries, just\n"
" sign up for free here and "
msgstr ""
#: php/LanguageDictionary.php:27
msgid "create your account here."
msgstr ""
#: php/LanguageDictionary.php:28
msgid ""
"For more information on how to get started, please have a look\n"
" at our "
msgstr ""
#: php/LanguageDictionary.php:30
msgid "quick-start guide."
msgstr ""

View File

@@ -0,0 +1,17 @@
{
"name": "my-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.13.0",
"classnames": "^2.2.6",
"moment": "^2.23.0",
"query-string": "^6.2.0",
"querystringify": "^2.1.0"
}
}

View File

@@ -0,0 +1,800 @@
# Copyright (C) 2018 Angelleye PayPal Invoicing
# This file is distributed under the same license as the Angelleye PayPal Invoicing package.
msgid ""
msgstr ""
"Project-Id-Version: Angelleye PayPal Invoicing 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/angelleye-paypal-"
"invoicing\n"
"POT-Creation-Date: 2018-10-09 12:30+0530\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2018-10-09 13:01+0530\n"
"Language-Team: \n"
"X-Generator: Poedit 2.1.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en_US\n"
#: admin/class-angelleye-paypal-invoicing-admin.php:120
msgid "Would you like to delete the invoice at PayPal?"
msgstr "Would you like to delete the invoice at PayPal?"
#: admin/class-angelleye-paypal-invoicing-admin.php:140
msgid "Manage invoices"
msgstr "Manage invoices"
#: admin/class-angelleye-paypal-invoicing-admin.php:141
msgid "PayPal invoice"
msgstr "PayPal invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:142
msgctxt "Manage invoices"
msgid "Manage invoices"
msgstr "Manage invoices"
#: admin/class-angelleye-paypal-invoicing-admin.php:143
msgid "Add invoice"
msgstr "Add invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:144
#: admin/class-angelleye-paypal-invoicing-admin.php:437
msgid "Add New invoice"
msgstr "Add New invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:145
msgid "Edit"
msgstr "Edit"
#: admin/class-angelleye-paypal-invoicing-admin.php:146
msgid "Invoice Details"
msgstr "Invoice Details"
#: admin/class-angelleye-paypal-invoicing-admin.php:147
msgid "New invoice"
msgstr "New invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:148
#: admin/class-angelleye-paypal-invoicing-admin.php:149
msgid "View PayPal invoice"
msgstr "View PayPal invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:150
msgid "Search PayPal invoices"
msgstr "Search PayPal invoices"
#: admin/class-angelleye-paypal-invoicing-admin.php:151
msgid "No PayPal invoice found"
msgstr "No PayPal invoice found"
#: admin/class-angelleye-paypal-invoicing-admin.php:152
msgid "No PayPal invoice found in trash"
msgstr "No PayPal invoice found in trash"
#: admin/class-angelleye-paypal-invoicing-admin.php:153
msgid "Parent PayPal invoice"
msgstr "Parent PayPal invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:155
msgid "This is where you can add new PayPal Invoice to your store."
msgstr "This is where you can add new PayPal Invoice to your store."
#: admin/class-angelleye-paypal-invoicing-admin.php:303
msgid ""
"PayPal API credentials is not set up, <a href=\"?page=apifw_settings\" class="
"\"alert-link\">Click here to set up</a>."
msgstr ""
"PayPal API credentials is not set up, <a href=\"?page=apifw_settings\" class="
"\"alert-link\">Click here to set up</a>."
#: admin/class-angelleye-paypal-invoicing-admin.php:321
msgid "Your settings have been saved."
msgstr "Your settings have been saved."
#: admin/class-angelleye-paypal-invoicing-admin.php:371
msgid "Successfully deleted log files."
msgstr "Successfully deleted log files."
#: admin/class-angelleye-paypal-invoicing-admin.php:446
msgid "Invoice ID"
msgstr "Invoice ID"
#: admin/class-angelleye-paypal-invoicing-admin.php:447
msgctxt "angelleye-paypal-invoicing"
msgid "Date"
msgstr "Date"
#: admin/class-angelleye-paypal-invoicing-admin.php:448
#: admin/views/html-admin-page-invoice-list.php:22
#: admin/views/html-admin-page-invoice-list.php:53
#: admin/views/html-admin-page-template_list.php:21
#: admin/views/html-admin-page-template_list.php:40
msgid "Invoice #"
msgstr "Invoice #"
#: admin/class-angelleye-paypal-invoicing-admin.php:449
msgctxt "angelleye-paypal-invoicing"
msgid "Recipient"
msgstr "Recipient"
#: admin/class-angelleye-paypal-invoicing-admin.php:450
#: admin/views/html-admin-page-invoice-list.php:24
#: admin/views/html-admin-page-invoice-list.php:55
#: admin/views/html-admin-page-template_list.php:23
#: admin/views/html-admin-page-template_list.php:42
msgid "Status"
msgstr "Status"
#: admin/class-angelleye-paypal-invoicing-admin.php:451
#: admin/views/html-admin-page-create-invoice.php:106
#: admin/views/html-admin-page-create-invoice.php:116
#: admin/views/html-admin-page-invoice-list.php:25
#: admin/views/html-admin-page-invoice-list.php:56
#: admin/views/html-admin-page-template_list.php:25
#: admin/views/html-admin-page-template_list.php:44
#: admin/views/html-admin-page-view-invoice.php:174
msgid "Amount"
msgstr "Amount"
#: admin/class-angelleye-paypal-invoicing-admin.php:607
#: admin/views/html-admin-page-view-invoice.php:39
msgid "View PayPal Invoice"
msgstr "View PayPal Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:610
#: admin/class-angelleye-paypal-invoicing-admin.php:625
#: admin/views/html-admin-page-create-invoice.php:21
#: admin/views/html-admin-page-create-invoice.php:232
#: admin/views/html-admin-page-view-invoice.php:42
msgid "Send Invoice"
msgstr "Send Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:611
#: admin/class-angelleye-paypal-invoicing-admin.php:628
#: admin/views/html-admin-page-view-invoice.php:43
msgid "Delete Invoice"
msgstr "Delete Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:614
#: admin/class-angelleye-paypal-invoicing-admin.php:626
#: admin/views/html-admin-page-view-invoice.php:46
msgid "Send Invoice Reminder"
msgstr "Send Invoice Reminder"
#: admin/class-angelleye-paypal-invoicing-admin.php:617
#: admin/class-angelleye-paypal-invoicing-admin.php:627
#: admin/views/html-admin-page-view-invoice.php:49
msgid "Cancel Invoice"
msgstr "Cancel Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:643
#: admin/class-angelleye-paypal-invoicing-admin.php:766
msgid "You sent a invoice to %1$s"
msgstr "You sent a invoice to %1$s"
#: admin/class-angelleye-paypal-invoicing-admin.php:657
#: admin/class-angelleye-paypal-invoicing-admin.php:775
msgid "You sent a payment reminder to %1$s"
msgstr "You sent a payment reminder to %1$s"
#: admin/class-angelleye-paypal-invoicing-admin.php:670
#: admin/class-angelleye-paypal-invoicing-admin.php:979
msgid "You canceled this invoice."
msgstr "You canceled this invoice."
#: admin/class-angelleye-paypal-invoicing-admin.php:703
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:22
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:181
msgid "PayPal Invoice"
msgstr "PayPal Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:704
msgid "paypal_invoice"
msgstr "paypal_invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:783
msgid "You canceled this invoice"
msgstr "You canceled this invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:849
msgid "Save PayPal Invoice Draft"
msgstr "Save PayPal Invoice Draft"
#: admin/class-angelleye-paypal-invoicing-admin.php:850
#: admin/class-angelleye-paypal-invoicing-admin.php:862
msgid "Send PayPal Invoice"
msgstr "Send PayPal Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:856
msgid "Send PayPal Invoice Reminder"
msgstr "Send PayPal Invoice Reminder"
#: admin/class-angelleye-paypal-invoicing-admin.php:859
msgid "Cancel PayPal Invoice"
msgstr "Cancel PayPal Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:863
msgid "Delete PayPal Invoice"
msgstr "Delete PayPal Invoice"
#: admin/class-angelleye-paypal-invoicing-admin.php:886
msgid "Your invoice is created."
msgstr "Your invoice is created."
#: admin/class-angelleye-paypal-invoicing-admin.php:892
#: admin/class-angelleye-paypal-invoicing-admin.php:934
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:253
msgctxt "PayPal Invoice"
msgid "Awaiting payment"
msgstr "Awaiting payment"
#: admin/class-angelleye-paypal-invoicing-admin.php:918
#: admin/class-angelleye-paypal-invoicing-admin.php:928
msgid "We've sent your invoice."
msgstr "We've sent your invoice."
#: admin/class-angelleye-paypal-invoicing-admin.php:958
msgid "Your reminder is sent."
msgstr "Your reminder is sent."
#: admin/class-angelleye-paypal-invoicing-admin.php:1004
msgid "Your invoice is deleted."
msgstr "Your invoice is deleted."
#: admin/views/html-admin-page-create-invoice.php:22
#: admin/views/html-admin-page-create-invoice.php:233
msgid "Save as Draft"
msgstr "Save as Draft"
#: admin/views/html-admin-page-create-invoice.php:30
msgid "Invoice number"
msgstr "Invoice number"
#: admin/views/html-admin-page-create-invoice.php:35
msgid ""
"Invoices are numbered automatically beginning with invoice number 0001. You "
"can customize the invoice number any way you'd like, and the next number "
"will increment by 1."
msgstr ""
"Invoices are numbered automatically beginning with invoice number 0001. You "
"can customize the invoice number any way you'd like, and the next number "
"will increment by 1."
#: admin/views/html-admin-page-create-invoice.php:39
msgid "Invoice date"
msgstr "Invoice date"
#: admin/views/html-admin-page-create-invoice.php:44
msgid ""
"You can select any invoice date. This invoice will be sent today or on a "
"future date you choose."
msgstr ""
"You can select any invoice date. This invoice will be sent today or on a "
"future date you choose."
#: admin/views/html-admin-page-create-invoice.php:48
msgid "Reference"
msgstr "Reference"
#: admin/views/html-admin-page-create-invoice.php:50
msgid "Such as PO#"
msgstr "Such as PO#"
#: admin/views/html-admin-page-create-invoice.php:54
msgid "Due date"
msgstr "Due date"
#: admin/views/html-admin-page-create-invoice.php:57
msgid "No due date"
msgstr "No due date"
#: admin/views/html-admin-page-create-invoice.php:58
msgid "Due on receipt"
msgstr "Due on receipt"
#: admin/views/html-admin-page-create-invoice.php:59
msgid "Due on date specified"
msgstr "Due on date specified"
#: admin/views/html-admin-page-create-invoice.php:60
msgid "Due in 10 days"
msgstr "Due in 10 days"
#: admin/views/html-admin-page-create-invoice.php:61
msgid "Due in 15 days"
msgstr "Due in 15 days"
#: admin/views/html-admin-page-create-invoice.php:62
msgid "Due in 30 days"
msgstr "Due in 30 days"
#: admin/views/html-admin-page-create-invoice.php:63
msgid "Due in 45 days"
msgstr "Due in 45 days"
#: admin/views/html-admin-page-create-invoice.php:64
msgid "Due in 60 days"
msgstr "Due in 60 days"
#: admin/views/html-admin-page-create-invoice.php:65
msgid "Due in 90 days"
msgstr "Due in 90 days"
#: admin/views/html-admin-page-create-invoice.php:72
msgid "d/m/Y"
msgstr "d/m/Y"
#: admin/views/html-admin-page-create-invoice.php:102
#: admin/views/html-admin-page-view-invoice.php:171
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:86
msgid "Description"
msgstr "Description"
#: admin/views/html-admin-page-create-invoice.php:103
#: admin/views/html-admin-page-view-invoice.php:172
msgid "Quantity"
msgstr "Quantity"
#: admin/views/html-admin-page-create-invoice.php:104
#: admin/views/html-admin-page-view-invoice.php:173
msgid "Price"
msgstr "Price"
#: admin/views/html-admin-page-create-invoice.php:105
msgid "Tax"
msgstr "Tax"
#: admin/views/html-admin-page-create-invoice.php:112
msgid "Item name"
msgstr "Item name"
#: admin/views/html-admin-page-create-invoice.php:113
msgid "0"
msgstr "0"
#: admin/views/html-admin-page-create-invoice.php:114
#: admin/views/html-admin-page-invoice-setting.php:167
msgid "0.00"
msgstr "0.00"
#: admin/views/html-admin-page-create-invoice.php:115
msgid "Name"
msgstr "Name"
#: admin/views/html-admin-page-create-invoice.php:121
msgid "Enter detailed description (optional)"
msgstr "Enter detailed description (optional)"
#: admin/views/html-admin-page-create-invoice.php:130
msgid "Add another line item"
msgstr "Add another line item"
#: admin/views/html-admin-page-create-invoice.php:143
msgid "Allow partial payment"
msgstr "Allow partial payment"
#: admin/views/html-admin-page-create-invoice.php:143
msgid ""
"Your customer will be allowed to enter any payment amount above the minimum "
"until the invoice is paid in full."
msgstr ""
"Your customer will be allowed to enter any payment amount above the minimum "
"until the invoice is paid in full."
#: admin/views/html-admin-page-create-invoice.php:148
msgid "Minimum amount due (optional)"
msgstr "Minimum amount due (optional)"
#: admin/views/html-admin-page-create-invoice.php:160
msgid "Allow customer to add a tip."
msgstr "Allow customer to add a tip."
#: admin/views/html-admin-page-create-invoice.php:169
#: admin/views/html-admin-page-view-invoice.php:227
msgid "Subtotal"
msgstr "Subtotal"
#: admin/views/html-admin-page-create-invoice.php:173
#: admin/views/html-admin-page-view-invoice.php:255
msgid "Discount"
msgstr "Discount"
#: admin/views/html-admin-page-create-invoice.php:186
#: admin/views/html-admin-page-view-invoice.php:235
msgid "Shipping"
msgstr "Shipping"
#: admin/views/html-admin-page-create-invoice.php:194
#: admin/views/html-admin-page-view-invoice.php:263
msgid "Total"
msgstr "Total"
#: admin/views/html-admin-page-create-invoice.php:205
msgid "Note to recipient"
msgstr "Note to recipient"
#: admin/views/html-admin-page-create-invoice.php:205
msgid "Such as Thank you for your business"
msgstr "Such as Thank you for your business"
#: admin/views/html-admin-page-create-invoice.php:208
msgid "Terms and conditions"
msgstr "Terms and conditions"
#: admin/views/html-admin-page-create-invoice.php:208
msgid "Include your return or cancelation policy"
msgstr "Include your return or cancelation policy"
#: admin/views/html-admin-page-create-invoice.php:216
msgid "Add memo to self"
msgstr "Add memo to self"
#: admin/views/html-admin-page-create-invoice.php:219
msgid "Memo"
msgstr "Memo"
#: admin/views/html-admin-page-create-invoice.php:220
msgid "Add memo to self (your recipient won't see this)"
msgstr "Add memo to self (your recipient won't see this)"
#: admin/views/html-admin-page-create-invoice.php:222
msgid "Hide"
msgstr "Hide"
#: admin/views/html-admin-page-invoice-list.php:17
msgid "Manage Invoices"
msgstr "Manage Invoices"
#: admin/views/html-admin-page-invoice-list.php:21
#: admin/views/html-admin-page-invoice-list.php:52
#: admin/views/html-admin-page-template_list.php:20
#: admin/views/html-admin-page-template_list.php:39
msgid "Date"
msgstr "Date"
#: admin/views/html-admin-page-invoice-list.php:23
#: admin/views/html-admin-page-invoice-list.php:54
#: admin/views/html-admin-page-template_list.php:22
#: admin/views/html-admin-page-template_list.php:41
msgid "Recipient"
msgstr "Recipient"
#: admin/views/html-admin-page-invoice-list.php:46
#: admin/views/html-admin-page-template_list.php:33
msgid "You havent created any invoices"
msgstr "You havent created any invoices"
#: admin/views/html-admin-page-invoice-setting.php:45
msgid "PayPal API Credentials"
msgstr "PayPal API Credentials"
#: admin/views/html-admin-page-invoice-setting.php:47
msgid "PayPal Sandbox"
msgstr "PayPal Sandbox"
#: admin/views/html-admin-page-invoice-setting.php:52
msgid "Enable PayPal Sandbox"
msgstr "Enable PayPal Sandbox"
#: admin/views/html-admin-page-invoice-setting.php:59
#: admin/views/html-admin-page-invoice-setting.php:61
msgid "Sandbox PayPal Email"
msgstr "Sandbox PayPal Email"
#: admin/views/html-admin-page-invoice-setting.php:65
#: admin/views/html-admin-page-invoice-setting.php:67
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:115
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:120
msgid "Sandbox Client ID"
msgstr "Sandbox Client ID"
#: admin/views/html-admin-page-invoice-setting.php:71
#: admin/views/html-admin-page-invoice-setting.php:73
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:123
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:128
msgid "Sandbox Secret"
msgstr "Sandbox Secret"
#: admin/views/html-admin-page-invoice-setting.php:78
#: admin/views/html-admin-page-invoice-setting.php:80
msgid "PayPal Email"
msgstr "PayPal Email"
#: admin/views/html-admin-page-invoice-setting.php:84
#: admin/views/html-admin-page-invoice-setting.php:86
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:139
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:144
msgid "Client ID"
msgstr "Client ID"
#: admin/views/html-admin-page-invoice-setting.php:90
#: admin/views/html-admin-page-invoice-setting.php:92
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:147
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:152
msgid "Secret"
msgstr "Secret"
#: admin/views/html-admin-page-invoice-setting.php:95
msgid "Merchant / Business Information"
msgstr "Merchant / Business Information"
#: admin/views/html-admin-page-invoice-setting.php:97
#: admin/views/html-admin-page-invoice-setting.php:99
msgid "First Name"
msgstr "First Name"
#: admin/views/html-admin-page-invoice-setting.php:103
#: admin/views/html-admin-page-invoice-setting.php:105
msgid "Last Name"
msgstr "Last Name"
#: admin/views/html-admin-page-invoice-setting.php:109
#: admin/views/html-admin-page-invoice-setting.php:111
msgid "Company Name"
msgstr "Company Name"
#: admin/views/html-admin-page-invoice-setting.php:115
#: admin/views/html-admin-page-invoice-setting.php:117
msgid "Phone Number"
msgstr "Phone Number"
#: admin/views/html-admin-page-invoice-setting.php:120
msgid "Merchant / Business Address"
msgstr "Merchant / Business Address"
#: admin/views/html-admin-page-invoice-setting.php:122
msgid "Address line 1"
msgstr "Address line 1"
#: admin/views/html-admin-page-invoice-setting.php:124
msgid "House number and street name"
msgstr "House number and street name"
#: admin/views/html-admin-page-invoice-setting.php:128
msgid "Address line 2"
msgstr "Address line 2"
#: admin/views/html-admin-page-invoice-setting.php:130
msgid "Apartment, suite, unit etc."
msgstr "Apartment, suite, unit etc."
#: admin/views/html-admin-page-invoice-setting.php:134
#: admin/views/html-admin-page-invoice-setting.php:136
msgid "City"
msgstr "City"
#: admin/views/html-admin-page-invoice-setting.php:140
msgid "Postcode / ZIP"
msgstr "Postcode / ZIP"
#: admin/views/html-admin-page-invoice-setting.php:146
msgid "State / County"
msgstr "State / County"
#: admin/views/html-admin-page-invoice-setting.php:152
msgid "Country"
msgstr "Country"
#: admin/views/html-admin-page-invoice-setting.php:157
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:155
msgid "Default Values"
msgstr "Default Values"
#: admin/views/html-admin-page-invoice-setting.php:159
msgid "Shipping Rate %"
msgstr "Shipping Rate %"
#: admin/views/html-admin-page-invoice-setting.php:161
#: admin/views/html-admin-page-invoice-setting.php:179
msgid "%"
msgstr "%"
#: admin/views/html-admin-page-invoice-setting.php:165
msgid "Shipping Amount"
msgstr "Shipping Amount"
#: admin/views/html-admin-page-invoice-setting.php:171
msgid "Tax Name"
msgstr "Tax Name"
#: admin/views/html-admin-page-invoice-setting.php:177
msgid "Tax Rate %"
msgstr "Tax Rate %"
#. translators: %s: URL
#: admin/views/html-admin-page-invoice-setting.php:183
#: admin/views/html-admin-page-invoice-setting.php:185
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:161
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:166
msgid "Note to Recipient"
msgstr "Note to Recipient"
#: admin/views/html-admin-page-invoice-setting.php:189
#: admin/views/html-admin-page-invoice-setting.php:191
#: admin/views/html-admin-page-view-invoice.php:288
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:169
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:174
msgid "Terms and Conditions"
msgstr "Terms and Conditions"
#: admin/views/html-admin-page-invoice-setting.php:194
msgid "Log Event"
msgstr "Log Event"
#: admin/views/html-admin-page-invoice-setting.php:196
msgid "Debug Log"
msgstr "Debug Log"
#: admin/views/html-admin-page-invoice-setting.php:202
msgid "Enable logging"
msgstr "Enable logging"
#: admin/views/html-admin-page-invoice-setting.php:205
msgid "Log PayPal events, inside"
msgstr "Log PayPal events, inside"
#: admin/views/html-admin-page-invoice-setting.php:211
#: admin/views/html-admin-page-invoice-setting.php:213
msgid "Delete Logs"
msgstr "Delete Logs"
#: admin/views/html-admin-page-invoice-setting.php:218
msgid "Save changes"
msgstr "Save changes"
#: admin/views/html-admin-page-template_list.php:24
#: admin/views/html-admin-page-template_list.php:43
#: admin/views/html-admin-page-view-invoice.php:34
msgid "Action"
msgstr "Action"
#: admin/views/html-admin-page-view-invoice.php:13
msgid "INVOICE"
msgstr "INVOICE"
#: admin/views/html-admin-page-view-invoice.php:59
msgid "Invoice #:"
msgstr "Invoice #:"
#: admin/views/html-admin-page-view-invoice.php:65
msgid "Invoice date:"
msgstr "Invoice date:"
#: admin/views/html-admin-page-view-invoice.php:71
msgid "Reference:"
msgstr "Reference:"
#: admin/views/html-admin-page-view-invoice.php:77
msgid "Due date:"
msgstr "Due date:"
#: admin/views/html-admin-page-view-invoice.php:88
msgid "Merchant Info"
msgstr "Merchant Info"
#: admin/views/html-admin-page-view-invoice.php:280
msgid "Notes"
msgstr "Notes"
#: includes/class-angelleye-paypal-invoicing-calculations.php:93
msgid "Item"
msgstr "Item"
#: includes/class-angelleye-paypal-invoicing-calculations.php:107
msgid "Fee"
msgstr "Fee"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:21
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:82
msgctxt "PayPal Invoice"
msgid "PayPal Invoice"
msgstr "PayPal Invoice"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:73
msgid "Enable/Disable"
msgstr "Enable/Disable"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:75
msgid "Enable PayPal Invoice"
msgstr "Enable PayPal Invoice"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:79
msgid "Title"
msgstr "Title"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:81
msgid "This controls the title which the user sees during checkout."
msgstr "This controls the title which the user sees during checkout."
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:88
msgid "Payment method description that the customer will see on your checkout."
msgstr ""
"Payment method description that the customer will see on your checkout."
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:89
msgid ""
"Please send a check to Store Name, Store Street, Store Town, Store State / "
"County, Store Postcode."
msgstr ""
"Please send a check to Store Name, Store Street, Store Town, Store State / "
"County, Store Postcode."
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:93
msgid "Instructions"
msgstr "Instructions"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:95
msgid "Instructions that will be added to the thank you page and emails."
msgstr "Instructions that will be added to the thank you page and emails."
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:100
msgid "PayPal sandbox"
msgstr "PayPal sandbox"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:102
msgid "Enable PayPal sandbox"
msgstr "Enable PayPal sandbox"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:107
msgid "Sandbox PayPal email"
msgstr "Sandbox PayPal email"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:117
msgid "Get your Sandbox Client ID from PayPal."
msgstr "Get your Sandbox Client ID from PayPal."
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:125
msgid "Get your Sandbox Secret from PayPal."
msgstr "Get your Sandbox Secret from PayPal."
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:131
msgid "PayPal email"
msgstr "PayPal email"
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:141
msgid "Get your Client ID from PayPal."
msgstr "Get your Client ID from PayPal."
#: includes/class-angelleye-paypal-invoicing-wc-payment.php:149
msgid "Get your Secret from PayPal."
msgstr "Get your Secret from PayPal."
#: includes/class-angelleye-paypal-invoicing.php:249
msgid "Configure"
msgstr "Configure"
#: includes/class-angelleye-paypal-invoicing.php:250
msgid "Docs"
msgstr "Docs"
#: includes/class-angelleye-paypal-invoicing.php:251
msgid "Support"
msgstr "Support"
#: includes/class-angelleye-paypal-invoicing.php:252
msgid "Write a Review"
msgstr "Write a Review"
#. Plugin Name of the plugin/theme
msgid "Angelleye PayPal Invoicing"
msgstr "Angelleye PayPal Invoicing"
#. Plugin URI of the plugin/theme
msgid "http://www.angelleye.com/product/angelleye-paypal-invoicing/"
msgstr "http://www.angelleye.com/product/angelleye-paypal-invoicing/"
#. Description of the plugin/theme
msgid ""
"This is a short description of what the plugin does. It's displayed in the "
"WordPress admin area."
msgstr ""
"This is a short description of what the plugin does. It's displayed in the "
"WordPress admin area."
#. Author of the plugin/theme
msgid "Angell EYE"
msgstr "Angell EYE"
#. Author URI of the plugin/theme
msgid "http://www.angelleye.com/"
msgstr "http://www.angelleye.com/"

View File

@@ -0,0 +1,133 @@
# Copyright (C) 2015 Browsers Detect
msgid ""
msgstr ""
"Project-Id-Version: Bros 1.0.0\n"
"POT-Creation-Date: 2015-06-25 10:17+0300\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANG <admin@muzu.ru>\n"
"X-Generator: Poedit 1.8.1\n"
#: ../aomailer_plugin.php:1
msgid "Param_1"
msgstr ""
#: ../aomailer_plugin.php:2
msgid "Param_2"
msgstr ""
#: ../aomailer_plugin.php:3
msgid "Param_3"
msgstr ""
#: ../aomailer_plugin.php:4
msgid "Param_4"
msgstr ""
#: ../aomailer_plugin.php:5
msgid "Param_5"
msgstr ""
#: ../aomailer_plugin.php:6
msgid "Param_6"
msgstr ""
#: ../aomailer_plugin.php:7
msgid "Param_7"
msgstr ""
#: ../aomailer_plugin.php:8
msgid "Param_8"
msgstr ""
#: ../aomailer_plugin.php:9
msgid "Param_9"
msgstr ""
#: ../aomailer_plugin.php:10
msgid "Param_10"
msgstr ""
#: ../aomailer_plugin.php:11
msgid "Param_11"
msgstr ""
#: ../aomailer_plugin.php:12
msgid "Param_12"
msgstr ""
#: ../aomailer_plugin.php:13
msgid "Param_13"
msgstr ""
#: ../aomailer_plugin.php:14
msgid "Param_14"
msgstr ""
#: ../aomailer_plugin.php:15
msgid "Param_15"
msgstr ""
#: ../aomailer_plugin.php:16
msgid "Param_16"
msgstr ""
#: ../aomailer_plugin.php:17
msgid "Param_17"
msgstr ""
#: ../aomailer_plugin.php:18
msgid "Param_18"
msgstr ""
#: ../aomailer_plugin.php:19
msgid "Param_19"
msgstr ""
#: ../aomailer_plugin.php:20
msgid "Param_20"
msgstr ""
#: ../aomailer_plugin.php:21
msgid "Param_21"
msgstr ""
#: ../aomailer_plugin.php:22
msgid "Param_22"
msgstr ""
#: ../aomailer_plugin.php:23
msgid "Param_23"
msgstr ""
#: ../aomailer_plugin.php:24
msgid "Param_24"
msgstr ""
#: ../aomailer_plugin.php:25
msgid "Param_25"
msgstr ""
#: ../aomailer_plugin.php:26
msgid "Param_26"
msgstr ""
#: ../aomailer_plugin.php:27
msgid "Param_27"
msgstr ""
#: ../aomailer_plugin.php:28
msgid "Param_28"
msgstr ""
#: ../aomailer_plugin.php:29
msgid "Aoplayer"
msgstr ""
#: ../aomailer_plugin.php:30
msgid "Aoplayer Plugin"
msgstr ""

View File

@@ -0,0 +1,17 @@
{
"name": "my-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.13.0",
"classnames": "^2.2.6",
"moment": "^2.23.0",
"query-string": "^6.2.0",
"querystringify": "^2.1.0"
}
}

View File

@@ -0,0 +1,20 @@
# This file is distributed under the GNU General Public License v3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Clicksports Maps v1.0.0\n"
"POT-Creation-Date: 2012-10-05 10:50+0100\n"
"PO-Revision-Date: \n"
"Language-Team: CLICKSPORTS <wordpress@clicksports.de>\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: yes"
"X-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-Poedit-SearchPath-0: .\n"
"X-Poedit-Language: English\n"
"X-Poedit-Country: UNITED STATES\n"
"X-Poedit-Bookmarks: \n"

View File

@@ -0,0 +1,17 @@
{
"name": "my-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.13.0",
"classnames": "^2.2.6",
"moment": "^2.23.0",
"query-string": "^6.2.0",
"querystringify": "^2.1.0"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,63 @@
# Copyright (C) 2019 Woocommerce Colorlab
# This file is distributed under the same license as the Woocommerce Colorlab package.
msgid ""
msgstr ""
"Project-Id-Version: Woocommerce Colorlab 1.0.6\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
"colorlab\n"
"POT-Creation-Date: 2019-01-01 15:44:41+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/class-woocommerce-colorlab-admin.php:46
msgid "Colorlab product id"
msgstr ""
#: admin/class-woocommerce-colorlab-admin.php:49
msgid ""
"Add here the colorlab product id. If this is not added, we will try to match "
"the SKU, and the product ID."
msgstr ""
#: admin/class-woocommerce-colorlab-settings.php:18
#: admin/class-woocommerce-colorlab-settings.php:39
msgid "Colorlab"
msgstr ""
#: admin/class-woocommerce-colorlab-settings.php:48
msgid "Shop ID"
msgstr ""
#: admin/class-woocommerce-colorlab-settings.php:49
msgid "Your colorlab ID"
msgstr ""
#: public/class-woocommerce-colorlab-public.php:158
msgid "Customize your personalization"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Woocommerce Colorlab"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "http://example.com/woocommerce-colorlab-uri/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"This is a short description of what the plugin does. It's displayed in the "
"WordPress admin area."
msgstr ""
#. Author of the plugin/theme
msgid "Your Name or Your Company"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://example.com/"
msgstr ""

View File

@@ -969,3 +969,7 @@ If above timestamp is not current time, this page is cached.</p> -->
<!-- Optimized by WP Performance 1.0.0 -->
<!-- sharing-plus -->
<!-- Open Graph Meta Tags generated by Sharing Plus 1.0.0 -->

View File

@@ -0,0 +1,68 @@
msgid ""
msgstr ""
"Project-Id-Version: dashly 1.1.0\n"
"POT-Creation-Date: 2018-11-01 15:50+0500\n"
"PO-Revision-Date: 2018-11-01 16:15+0500\n"
"Last-Translator: \n"
"Language-Team: Dashly <support@dashly.app>\n"
"Language: ru_RU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2\n"
"X-Poedit-Basepath: ..\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"
#: includes/main.php:47
msgid "Settings"
msgstr "Настройки"
#: includes/main.php:56 includes/main.php:57
msgid "Dashly"
msgstr ""
#: includes/main.php:121
msgid "Settings saved"
msgstr "Настройки сохранены"
#: includes/main.php:124
msgid "Failed"
msgstr "Не удалось сохранить настройки"
#: options.php:8
msgid ""
"You can look up parameters \"API Key\", \"API Secret\" and \"User Auth Key\" "
"in \"Settings\" section of your Dashly account administrative panel"
msgstr ""
"Параметры \"API Key\", \"API Secret\" и \"User Auth Key\" можно узнать в "
"разделе \"Настройки\" в панели администратора Вашего аккаунта Dashly"
#: options.php:14
msgid "API Key"
msgstr "API Key"
#: options.php:20
msgid "API Secret"
msgstr ""
#: options.php:26
msgid "User Auth Key"
msgstr ""
#: options.php:31
msgid "User authorization"
msgstr "Авторизация пользователей"
#: options.php:36
msgid "Send customer ID to Dashly as User ID"
msgstr "Отправлять ID пользователя в Dashly в качестве User ID"
#: options.php:43
msgid "Save Changes"
msgstr "Сохранить изменения"
#~ msgid "<No image>"
#~ msgstr "<Нет изображения>"

View File

@@ -0,0 +1,124 @@
# Copyright (C) 2019 Navanath Bhosale
# This file is distributed under the GPLv2.
msgid ""
msgstr ""
"Project-Id-Version: Developer Tool 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/developer-tool\n"
"POT-Creation-Date: 2019-02-05 09:02:37+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: 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-dev-tool.php:142 includes/settings.php:26
msgid "Error Log"
msgstr ""
#: classes/class-dev-tool.php:150 includes/settings.php:63
msgid "Debug Settings"
msgstr ""
#: includes/functions.php:66
msgid "Debug log not cleared."
msgstr ""
#: includes/functions.php:74
msgid "Debug log cleared successfully."
msgstr ""
#: includes/functions.php:110
msgid ""
"Your wp-config file not updated. Copy and paste following code in your "
"wp-config.php file."
msgstr ""
#: includes/settings.php:50
msgid "Clear Log"
msgstr ""
#: includes/settings.php:69
msgid ""
"( These settings will overwrite wp-config.php file. Please make sure to "
"backup first. )"
msgstr ""
#: includes/settings.php:72
msgid "wp-config.php File Backup"
msgstr ""
#: includes/settings.php:75
msgid "Download"
msgstr ""
#: includes/settings.php:79
msgid "Enable Debug Settings"
msgstr ""
#: includes/settings.php:85
msgid "Enable WP_DEBUG mode => "
msgstr ""
#: includes/settings.php:88
msgid "define(WP_DEBUG, true);"
msgstr ""
#: includes/settings.php:95
msgid "Enable debug logging to the /wp-content/debug.log file => "
msgstr ""
#: includes/settings.php:98
msgid "define(WP_DEBUG_LOG, true);"
msgstr ""
#: includes/settings.php:105
msgid "Enable display of errors and warnings to frontend => "
msgstr ""
#: includes/settings.php:108
msgid "define(WP_DEBUG_DISPLAY, true);"
msgstr ""
#: includes/settings.php:115
msgid "Enable Script Debug - only needed if you are modifying these core files => "
msgstr ""
#: includes/settings.php:118
msgid "define( SCRIPT_DEBUG, true );"
msgstr ""
#: includes/settings.php:125
msgid "Save Changes"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Developer Tool"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Developer Tool helps you to <strong> debug your working "
"environment</strong>. It shows you notices / warnings / errors which may "
"cause during development or beacuse of conflicts."
msgstr ""
#. Author of the plugin/theme
msgid "Navanath Bhosale"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://profiles.wordpress.org/navanathbhosale/profile/"
msgstr ""

View File

@@ -0,0 +1,185 @@
# Copyright (C) 2019 Sébastien Dumont
# This file is distributed under the same license as the Double Image plugin.
msgid ""
msgstr ""
"Project-Id-Version: Double Image 1.2.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/double-image\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-01-26T19:51:56+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: double-image\n"
#: src/block/double-image/components/controls.js:44
msgid "Edit first image"
msgstr ""
#: src/block/double-image/components/controls.js:54
msgid "Remove first image"
msgstr ""
#: src/block/double-image/components/controls.js:70
msgid "Edit second image"
msgstr ""
#: src/block/double-image/components/controls.js:80
msgid "Remove second image"
msgstr ""
#: src/block/double-image/components/edit.js:119
msgid "Add image"
msgstr ""
#. Plugin Name of the plugin
#: src/block/double-image/components/edit.js:126
#: src/block/double-image/index.js:25
msgid "Double Image"
msgstr ""
#: src/block/double-image/components/edit.js:127
msgid "Drag an image, upload a new one or select a file from your library."
msgstr ""
#: src/block/double-image/components/edit.js:135
msgid "Uploading image"
msgstr ""
#: src/block/double-image/components/edit.js:267
msgid "Enter optional overlay text..."
msgstr ""
#: src/block/double-image/components/inspector.js:105
msgid "First Image"
msgstr ""
#: src/block/double-image/components/inspector.js:187
msgid "Second Image"
msgstr ""
#: src/block/double-image/components/inspector.js:189
msgid "Fixed Background"
msgstr ""
#: src/block/double-image/components/inspector.js:192
msgid "Enable to have a parallax scrolling effect."
msgstr ""
#: src/block/double-image/components/inspector.js:196
msgid "Show Overlay"
msgstr ""
#: src/block/double-image/components/inspector.js:199
msgid "Enable to add a text overlay."
msgstr ""
#: src/block/double-image/components/inspector.js:204
msgid "Overlay Settings"
msgstr ""
#: src/block/double-image/components/inspector.js:209
msgid "Background Color"
msgstr ""
#: src/block/double-image/components/inspector.js:214
msgid "Text Color"
msgstr ""
#: src/block/double-image/components/inspector.js:219
msgid "Background Opacity"
msgstr ""
#: src/block/double-image/components/inspector.js:225
msgid "Change the background opacity for the overlay."
msgstr ""
#: src/block/double-image/components/inspector.js:229
msgid "Text Position"
msgstr ""
#: src/block/double-image/components/inspector.js:234
msgid "Top"
msgstr ""
#: src/block/double-image/components/inspector.js:238
msgid "Bottom"
msgstr ""
#: src/block/double-image/components/inspector.js:243
msgid "Place overlay text at the top or bottom."
msgstr ""
#: src/block/double-image/components/inspector.js:247
msgid "Font Style"
msgstr ""
#: src/block/double-image/components/inspector.js:252
msgid "Normal"
msgstr ""
#: src/block/double-image/components/inspector.js:256
msgid "Italic"
msgstr ""
#: src/block/double-image/components/inspector.js:79
msgid "Image Layout"
msgstr ""
#: src/block/double-image/components/inspector.js:85
msgid "Narrow | Wide"
msgstr ""
#: src/block/double-image/components/inspector.js:89
msgid "Wide | Narrow"
msgstr ""
#: src/block/double-image/components/inspector.js:93
msgid "Even"
msgstr ""
#: src/block/double-image/components/inspector.js:97
msgid "Stacked"
msgstr ""
#: src/block/double-image/index.js:192
msgid "Insert two images side by side or stacked with optional overlay text."
msgstr ""
#: src/block/double-image/index.js:30
msgid "image"
msgstr ""
#: src/block/double-image/index.js:31
msgid "overlay"
msgstr ""
#: src/block/double-image/index.js:32
msgid "double"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/seb86/double-image"
msgstr ""
#. Description of the plugin
msgid "A way to insert two images side by side or stacked with optional overlay text using Gutenberg."
msgstr ""
#. Author of the plugin
msgid "Sébastien Dumont"
msgstr ""
#. Author URI of the plugin
msgid "https://sebastiendumont.com"
msgstr ""
#: double-image.php:75
msgid "Cloning this object is forbidden."
msgstr ""
#: double-image.php:85
msgid "Unserializing instances of this class is forbidden."
msgstr ""

View File

@@ -0,0 +1,19 @@
{
"name": "DummyImages",
"version": "1.0.0",
"description": "This plugin is a generator of customizable dummy images.",
"license": "ISC",
"author": "mbelchev",
"repository": {
"type": "git",
"url": "git+https://github.com/mbelchev/dummy-images.git"
},
"scripts": {
"build-css": "node-sass assets/sass/dummy-images.scss assets/css/dummy-images.min.css --output-style compressed",
"build-js": "uglifyjs assets/js/src/dummy-images.js --output assets/js/dist/dummy-images.min.js --mangle --compress"
},
"devDependencies": {
"node-sass": "^4.11.0",
"uglify-js": "^3.4.9"
}
}

View File

@@ -0,0 +1,150 @@
# Copyright (C) 2019 Brainstorm Force
# This file is distributed under the same license as the Easy Digital Downloads - Purchase Details package.
msgid ""
msgstr ""
"Project-Id-Version: Easy Digital Downloads - Purchase Details 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/edd-purchase-details\n"
"POT-Creation-Date: 2019-01-29 06:46:29+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 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-edd-purchase-details-admin.php:40
msgid " Access Payment History"
msgstr ""
#: classes/class-edd-purchase-details-admin.php:40
msgid "Access Payment History"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:76
msgid "Enter customer email address"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:78
msgid "Search"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:177
msgid "ID"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:178
msgid "Date"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:179
msgid "Products"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:180
msgid "Amount"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:181
#: classes/class-edd-purchase-details-frontend.php:285
msgid "Status"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:182
msgid "License Keys"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:215
msgid "View Licenses"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:233
#: classes/class-edd-purchase-details-frontend.php:239
msgid "This user hasn't purchased anything!"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:244
#: classes/class-edd-purchase-details-frontend.php:333
msgid "You do not have permission to access this page"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:249
#: classes/class-edd-purchase-details-frontend.php:339
msgid " You are not logged in. Please log in and try again."
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:270
msgid "Go back"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:283
msgid "Item"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:284
msgid "Key"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:286
msgid "Activations"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:287
msgid "Expiration"
msgstr ""
#: classes/class-edd-purchase-details-frontend.php:321
#: classes/class-edd-purchase-details-frontend.php:327
msgid "Invalid Request."
msgstr ""
#: classes/class-edd-purchase-details-loader.php:74
#. translators: %s: html tags
msgid ""
"The %1$s EDD Purchase Details %2$s plugin requires %1$s Easy Digital "
"Downloads %2$s plugin installed & activated."
msgstr ""
#: includes/admin-setting-user-access.php:15
msgid "Access Payment History "
msgstr ""
#: includes/admin-setting-user-access.php:16
msgid "Manage which user roles can access purchase details information."
msgstr ""
#: includes/admin-setting-user-access.php:47
msgid "Getting Started"
msgstr ""
#: includes/admin-setting-user-access.php:50
msgid "Copy this shortcode and paste it into your post or page"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Easy Digital Downloads - Purchase Details"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://www.brainstormforce.com"
msgstr ""
#. Description of the plugin/theme
msgid "Easy Digital Downloads Access to Purchase Details"
msgstr ""
#. Author of the plugin/theme
msgid "Brainstorm Force"
msgstr ""

View File

@@ -0,0 +1,141 @@
# Copyright (C) 2019 Sanjeev Aryal
# This file is distributed under the same license as the Fancy Fields For WPForms package.
msgid ""
msgstr ""
"Project-Id-Version: Fancy Fields For WPForms 1.0.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-02-01 02:49:50+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n1.0.2\n"
#: includes/class-fancy-fields-for-wpforms.php:48
#: includes/class-fancy-fields-for-wpforms.php:57
msgid "Cheatin&#8217; huh?"
msgstr ""
#: includes/class-fancy-fields-for-wpforms.php:154
msgid "Please install WPForms plugin to use Fancy Fields For WPForms."
msgstr ""
#: includes/class-ffwp-core.php:46
#. translators: %s: Fancy Fields For WPForms plugin link
msgid "Thank you for using Fancy Fields For WPForms! %s plugin is recommended!"
msgstr ""
#: includes/class-ffwp-core.php:46
msgid "Entries For WPForms"
msgstr ""
#: includes/class-ffwp-core.php:66
msgid "Deactivating..."
msgstr ""
#: includes/class-ffwp-core.php:67
msgid "Error!"
msgstr ""
#: includes/class-ffwp-core.php:68
msgid "Success!"
msgstr ""
#: includes/class-ffwp-core.php:69
msgid "Plugin Deactivated!"
msgstr ""
#: includes/class-ffwp-core.php:70
msgid "Sad to see you leave!"
msgstr ""
#: includes/class-ffwp-core.php:71
msgid "Oops! Something went wrong"
msgstr ""
#: includes/class-ffwp-core.php:101
#: includes/fields/class-ffwp-field-date-time.php:20
msgid "Date"
msgstr ""
#: includes/class-ffwp-core.php:151
msgid ""
"Would you care to let me know the deactivation reason so that I can improve "
"it for you?"
msgstr ""
#: includes/class-ffwp-core.php:158
msgid "Skip and deactivate"
msgstr ""
#: includes/fields/class-ffwp-field-date-time.php:152
msgid "Please enter a valid date."
msgstr ""
#: includes/fields/class-ffwp-field-divider.php:20
msgid "Section Divider"
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:20
msgid "File Upload"
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:61
msgid "Allowed Extensions"
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:62
msgid ""
"Enter allowed extensions for file upload. Add extensions separated by "
"comma. For e.g. csv, docx, png, jpeg"
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:91
msgid "Max File Size"
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:92
msgid "Enter maximum file size to upload in kb (kilobytes). 1 mb = 1024 kb."
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:215
msgid "File upload is required."
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:225
msgid "Maximum file size exceeded."
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:239
msgid "File extension not allowed."
msgstr ""
#: includes/fields/class-ffwp-field-file-upload.php:246
msgid "File upload error."
msgstr ""
#: includes/fields/class-ffwp-field-url.php:20
msgid "Website"
msgstr ""
#: includes/fields/class-ffwp-field-url.php:156
msgid "Please enter a valid url."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Fancy Fields For WPForms"
msgstr ""
#. Description of the plugin/theme
msgid "Fancy Fields For WPForms Lite Plugin Including File Upload"
msgstr ""
#. Author of the plugin/theme
msgid "Sanjeev Aryal"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://www.sanjeebaryal.com.np"
msgstr ""

View File

@@ -0,0 +1,366 @@
# Copyright (C) 2019 Egor Milyukov
# This file is distributed under the same license as the Flight Search Widget Blocks plugin.
msgid ""
msgstr ""
"Project-Id-Version: Flight Search Widget Blocks 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/flight-search-widget-blocks\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2019-01-07T13:06:40+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: fswb\n"
#. Plugin Name of the plugin
#: include/fswb-admin.php:20
#: include/fswb-categories.php:15
#: flight-search-widget-blocks.php:24
msgid "Flight Search Widget Blocks"
msgstr ""
#. Plugin URI of the plugin
msgid "http://swb.milukove.ru/"
msgstr ""
#. Description of the plugin
msgid "Plugin adds Skyscanner widgets as gutenberg editor blocks."
msgstr ""
#. Author of the plugin
#: flight-search-widget-blocks.php:27
msgid "Egor Milyukov"
msgstr ""
#. Author URI of the plugin
msgid "http://milukove.ru/"
msgstr ""
#: include/fswb-admin.php:25
msgid "General settings"
msgstr ""
#: include/fswb-admin.php:29
msgid "Associate ID"
msgstr ""
#: include/fswb-admin.php:29
msgid "If you have a direct partnership with Skyscanner paste your associate ID here to ensure your exits are tracked. "
msgstr ""
#: include/fswb-admin.php:32
msgid "If you do not know your associate ID, you can obtain it from your account manager."
msgstr ""
#: include/fswb-admin.php:38
msgid "WhiteLabel domain"
msgstr ""
#: include/fswb-admin.php:38
msgid "Widgets have been designed to work with White Labels from the start, and include features such as automatic styling to make your life easier."
msgstr ""
#: include/fswb-admin.php:44
msgid "Set widget language."
msgstr ""
#: include/fswb-admin.php:44
msgid "This language will be used on skyscannner or whitelabel site when user redirected to it by one of your widgets"
msgstr ""
#: include/fswb-admin.php:100
msgid "Widget Blocks"
msgstr ""
#: include/fswb-admin.php:106
msgid "Basic Widget Block"
msgstr ""
#: include/fswb-admin.php:107
msgid "Basic Widget provide a clean and simple tracked referral to the flight search on Skyscanner or a White Label."
msgstr ""
#: include/fswb-admin.php:114
msgid "Location Widget Block"
msgstr ""
#: include/fswb-admin.php:115
msgid "Location Widgets provide a clean and simple tracked referral to the flight search on Skyscanner or a White Label."
msgstr ""
#: include/fswb-admin.php:122
msgid "Simple Flight Search Widget"
msgstr ""
#: include/fswb-admin.php:123
msgid "Simple Flight Search Widget gives you everything your users need to start a search for flights on your site."
msgstr ""
#: include/fswb-admin.php:131
#: include/fswb-admin.php:189
msgid "<a href=\"%s\"><strong>Get Premium</strong></a> to enable Flight Search Widget and Insider Tips Widget"
msgstr ""
#: include/fswb-admin.php:144
msgid "Flight Search Widget"
msgstr ""
#: include/fswb-admin.php:144
#: include/fswb-admin.php:152
msgid "Premium"
msgstr ""
#: include/fswb-admin.php:145
msgid "Flight Search Widget is similar to the Simple Flight Search Widget, but it provides a comprehensive control of flight search on your site."
msgstr ""
#: include/fswb-admin.php:152
msgid "Insider Tips Widget"
msgstr ""
#: include/fswb-admin.php:153
msgid "Insider Tips Widgets are designed to provide users with helpful statistical information about flights, like the cheapest month to fly and indicative pricing for a specified route."
msgstr ""
#: include/fswb-admin.php:166
msgid "About"
msgstr ""
#: include/fswb-admin.php:169
msgid "Plugin name: %s"
msgstr ""
#: include/fswb-admin.php:171
msgid "Plugin author: %s"
msgstr ""
#: include/fswb-admin.php:173
msgid "Plugin version: %s"
msgstr ""
#: include/fswb-admin.php:182
msgid "Description"
msgstr ""
#: include/fswb-admin.php:182
msgid "Flight Search Widget Blocks is the easiest way to start earning money with SkyScanner affiliate program. Plugin adds Skyscanner widgets as gutenberg editor customizable blocks."
msgstr ""
#: include/fswb-admin.php:182
msgid "Adding a widget to your site takes just a few clicks. Set some options on the plugin settings page. Then go to your post edit page and pick up one of SkyScanner Widgets from Flight Search Widgets section."
msgstr ""
#: include/fswb-admin.php:182
msgid "Thats it, the widget is ready to go. You can change some styles and set another custom parameters or just use it as is. Plugin will work fine both ways."
msgstr ""
#: include/fswb-admin.php:197
msgid "<a href=\"%s\">Full plugin documentation</a>"
msgstr ""
#: include/fswb-admin.php:202
msgid "If you like our plugin and you find it useful, please, help us spread a word about it — <a href=\"%s\">leave a review</a>"
msgstr ""
#: flight-search-widget-blocks.php:26
msgid "Plugin adds Skyscanner widgets as gutenberg editor blocks"
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:57
#: assets/js/blocks/fswb-location-widget.js:305
#: assets/js/blocks/min/fswb-location-widget.js:1
#: assets/js/blocks/min/fswb-location-widget.js:3
msgid "SkyScanner Location Widget"
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:153
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:161
#: assets/js/blocks/fswb-basic-widget.js:149
#: assets/js/blocks/fswb-simple-flight-search-widget.js:161
#: assets/js/blocks/min/fswb-location-widget.js:2
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-basic-widget.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Button Label"
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:158
#: assets/js/blocks/min/fswb-location-widget.js:2
msgid "Use {location} to insert Location into button text. E.g.: \"Let's go to {location} right now!\""
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:168
#: assets/js/blocks/min/fswb-location-widget.js:2
msgid "Location name in single quotes"
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:182
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:175
#: assets/js/blocks/fswb-basic-widget.js:163
#: assets/js/blocks/fswb-simple-flight-search-widget.js:175
#: assets/js/blocks/min/fswb-location-widget.js:2
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-basic-widget.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Show arrow icon insted of a plane"
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:193
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:186
#: assets/js/blocks/fswb-basic-widget.js:174
#: assets/js/blocks/fswb-simple-flight-search-widget.js:186
#: assets/js/blocks/min/fswb-location-widget.js:2
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-basic-widget.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Open in new tab"
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:203
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:207
#: assets/js/blocks/fswb-basic-widget.js:184
#: assets/js/blocks/fswb-simple-flight-search-widget.js:207
#: assets/js/blocks/min/fswb-location-widget.js:2
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-basic-widget.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:209
msgid "Widget colors"
msgstr ""
#: assets/js/blocks/fswb-location-widget.js:211
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:215
#: assets/js/blocks/fswb-basic-widget.js:192
#: assets/js/blocks/fswb-simple-flight-search-widget.js:215
#: assets/js/blocks/min/fswb-location-widget.js:2
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-basic-widget.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Background color"
msgstr ""
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:57
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:1
msgid "SkyScanner Flight Search Widget"
msgstr ""
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:196
#: assets/js/blocks/fswb-simple-flight-search-widget.js:196
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Enable Placeholders"
msgstr ""
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:201
#: assets/js/blocks/fswb-simple-flight-search-widget.js:201
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Show placeholders inside input tags instead of label tags"
msgstr ""
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:222
#: assets/js/blocks/fswb-simple-flight-search-widget.js:222
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Font color"
msgstr ""
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:229
#: assets/js/blocks/fswb-simple-flight-search-widget.js:229
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Button background color"
msgstr ""
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:236
#: assets/js/blocks/fswb-simple-flight-search-widget.js:236
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:2
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:2
msgid "Button font color"
msgstr ""
#: assets/js/blocks/fswb-flight-search-widget__premium_only.js:339
#: assets/js/blocks/fswb-simple-flight-search-widget.js:57
#: assets/js/blocks/fswb-simple-flight-search-widget.js:339
#: assets/js/blocks/min/fswb-flight-search-widget__premium_only.js:3
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:1
#: assets/js/blocks/min/fswb-simple-flight-search-widget.js:3
msgid "SkyScanner Simple Flight Search Widget"
msgstr ""
#: assets/js/blocks/fswb-basic-widget.js:57
#: assets/js/blocks/fswb-basic-widget.js:283
#: assets/js/blocks/min/fswb-basic-widget.js:1
#: assets/js/blocks/min/fswb-basic-widget.js:3
msgid "SkyScanner Basic Widget"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:1
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:3
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:57
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:349
msgid "SkyScanner Insider Tips Widget"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:163
msgid "Insider Tips Widget requires presetting both Origin and Destination locations"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:168
msgid "Origin name"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:173
msgid "Free text (Location name in single quotes)"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:179
msgid "Destination name"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:184
msgid "Free text (Destination name in single quotes)"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:190
msgid "Defines a type of displayed statistics"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:195
msgid "The widget's design completely depends on this attribute"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:217
msgid "Text color of the heading banner"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:224
msgid "Color for the chart line/bars"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:231
msgid "Color for the chart minimum/maximum data point"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:238
msgid "Background color of the search button"
msgstr ""
#: assets/js/blocks/min/fswb-insider-tips-widget__premium_only.js:2
#: assets/js/blocks/fswb-insider-tips-widget__premium_only.js:245
msgid "Font color of the search button"
msgstr ""

View File

@@ -0,0 +1,55 @@
{
"name": "g-debugger",
"version": "1.0.0",
"private": true,
"description": "Visual debugging tools for block development",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"test": "npm run test:lint",
"test:lint": "eslint src",
"prepackage-plugin": "npm run build",
"package-plugin": "npm-pack-zip"
},
"files": [
"g-debugger.js",
"g-debugger.php",
"readme.txt",
"style.css"
],
"author": {
"name": "Andrew Duthie",
"email": "andrew@andrewduthie.com",
"url": "https://andrewduthie.com"
},
"homepage": "https://github.com/aduth/g-debugger",
"repository": {
"type": "git",
"url": "https://github.com/aduth/g-debugger.git"
},
"bugs": {
"url": "https://github.com/aduth/g-debugger/issues"
},
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@wordpress/babel-plugin-import-jsx-pragma": "^1.1.3",
"@wordpress/eslint-plugin": "^1.0.1",
"eslint": "^5.12.1",
"npm-pack-zip": "^1.2.7",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-sass": "^1.1.0",
"rollup-plugin-terser": "^4.0.2"
},
"dependencies": {
"clsx": "^1.0.1"
}
}

View File

@@ -0,0 +1,93 @@
msgid ""
msgstr ""
"Project-Id-Version: ie-insert-toc ver1.0\n"
"POT-Creation-Date: 2019-01-08 17:00+0900\n"
"PO-Revision-Date: 2019-01-08 19:07+0900\n"
"Last-Translator: ryusai <info@it-experience.tokyo>\n"
"Language-Team: ie-experence <https://it-experience.tokyo/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ie_insert_toc.php\n"
#: ie_insert_toc.php:205
msgid "table of contents"
msgstr "目次"
#: ie_insert_toc.php:318
msgid "Settings"
msgstr "設定"
#: ie_insert_toc.php:340
msgid "Various Settings"
msgstr "各種設定"
#: ie_insert_toc.php:341
msgid "Tree : tree structure display"
msgstr "Tree : ツリー構造で表示します"
#: ie_insert_toc.php:342
msgid "Posts : Insert the TOC on the posted article"
msgstr "Posts : 投稿記事に目次を挿入します"
#: ie_insert_toc.php:343
msgid "Pages : Insert the TOC on the pages"
msgstr "Pages : 固定ページに目次を挿入します"
#: ie_insert_toc.php:385
msgid "Summary"
msgstr "概要"
#: ie_insert_toc.php:386
msgid ""
"Automatically pick up the H tag and securely create and insert the table of "
"contents."
msgstr "自動的に H タグをピックアップし、安全に目次を作成して挿入します。"
#: ie_insert_toc.php:387
msgid "Please write CSS if you want to change the design. "
msgstr "デザインを変更したい場合は CSS を書いてください。 "
#: ie_insert_toc.php:388
msgid ""
"If the H tags in the article are three or more, the table of contents is "
"automatically inserted."
msgstr "記事の H タグが3つ以上の場合は、目次が自動的に挿入されます。"
#: ie_insert_toc.php:389
msgid "We do not leave garbage when uninstalling."
msgstr "私たちは、アンインストール時にゴミを残していません。"
#: ie_insert_toc.php:390
msgid "Thank you for using this plugin! This plugin is free."
msgstr ""
"このプラグインを使用していただきありがとうございます!このプラグインは無料で"
"す。"
#: ie_insert_toc.php:391
msgid "If you like this, please give the tip to the producer!"
msgstr ""
"もしこのプラグインを気に入ったら、プロデューサーにチップをあげてください!"
#: ie_insert_toc.php:392
msgid "A new useful plug-in will be produced with your support!"
msgstr "あなたのサポートで新しい便利なプラグインが作成されます!"
#: ie_insert_toc.php:393
msgid ">>support this plugin!"
msgstr ">>支援はこちらから!"
#: ie_insert_toc.php:394
msgid ""
"Note: Donations are prohibited by law in many countries. Support means "
"rewards for plugins."
msgstr ""
"注:寄付は多くの国で法律で禁止されています。 支援とはプラグインに対しての報"
"酬という意味です。"

View File

@@ -0,0 +1,79 @@
msgid ""
msgstr ""
"Project-Id-Version: Contact Form 7 Image Captcha 1.1\n"
"POT-Creation-Date: 2016-10-08 12:52-0700\n"
"PO-Revision-Date: 2016-10-08 12:53-0700\n"
"Last-Translator: \n"
"Language-Team: Kyle Charlton <kyle@kccomputing.net>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.9\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
#: cf7-image-captcha.php:28
msgid "Go Pro"
msgstr "Go Pro"
#: cf7-image-captcha.php:68
msgid "Heart"
msgstr "das Herz"
#: cf7-image-captcha.php:69
msgid "House"
msgstr "das Haus"
#: cf7-image-captcha.php:70
msgid "Star"
msgstr "den Stern"
#: cf7-image-captcha.php:71
msgid "Car"
msgstr "das Auto"
#: cf7-image-captcha.php:72
msgid "Cup"
msgstr "die Tasse"
#: cf7-image-captcha.php:73
msgid "Flag"
msgstr "die Flagge"
#: cf7-image-captcha.php:74
msgid "Key"
msgstr "den Schlüssel"
#: cf7-image-captcha.php:75
msgid "Truck"
msgstr "den LKW"
#: cf7-image-captcha.php:76
msgid "Tree"
msgstr "den Baum"
#: cf7-image-captcha.php:77
msgid "Plane"
msgstr "das Flugzeug"
#: cf7-image-captcha.php:91
msgid "Please prove you are human by selecting the "
msgstr "Bitte beweisen Sie ein Mensch zu sein und wählen Sie"
#: cf7-image-captcha.php:93
msgid "."
msgstr "aus."
#: cf7-image-captcha.php:121
msgid "Please select the correct icon."
msgstr "Bitte wählen Sie das richtige Symbol."
#: cf7-image-captcha.php:125
msgid "Please select an icon."
msgstr "Bitte wählen Sie ein Symbol."
#~ msgid "Please prove you are human by selecting the"
#~ msgstr "Bitte beweisen Sie ein Mensch zu sein und wählen Sie"

View File

@@ -0,0 +1,13 @@
{
"name": "kenzap-calendar-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.14.0"
}
}

View File

@@ -0,0 +1,13 @@
{
"name": "kenzap-pricing-list-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.14.0"
}
}

View File

@@ -0,0 +1,13 @@
{
"name": "kenzap-steps-list-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.14.0"
}
}

View File

@@ -0,0 +1,13 @@
{
"name": "kenzap-steps-list-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.14.0"
}
}

View File

@@ -0,0 +1,24 @@
{
"name": "liquid-speech-balloon",
"version": "1.0.3",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"po2json": "^1.0.0-alpha"
},
"scripts": {
"build": "babel src -d lib"
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"author": "LIQUID DESIGN Ltd.",
"dependencies": {},
"directories": {
"lib": "lib"
}
}

View File

@@ -0,0 +1,14 @@
{
"name": "my-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.13.0",
"classnames": "^2.2.6"
}
}

View File

@@ -0,0 +1,802 @@
# Copyright (C) 2019 Mantrabrain
# This file is distributed under the GPLv3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Mantrabrain Starter Sites 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://github.com/mantrabrain/mantrabrain-starter-sites/issues\n"
"POT-Creation-Date: 2018-11-05 10:51:40+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n1.0.2\n"
#: includes/admin/class-demo-pack-upgrader.php:35
msgid "Install package not available."
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:37
#. translators: %s: package URL
msgid "Downloading install package from <span class=\"code\">%s</span>&#8230;"
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:38
msgid "Unpacking the package&#8230;"
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:39
msgid "Removing the old version of the demo&#8230;"
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:40
msgid "Could not remove the old demo."
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:41
msgid "Installing the demo&#8230;"
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:42
msgid "The demo contains no files."
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:43
msgid "Demo install failed."
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:44
msgid "Demo installed successfully."
msgstr ""
#: includes/admin/class-demo-pack-upgrader.php:118
msgid "No valid demos were found."
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:12
#: includes/class-demo-importer.php:121
#: includes/class-mantrabrain-starter-sites.php:223
msgid "Demo Importer"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:15
msgid "Upcoming Demos"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:21
msgid "The Demo Importer screen requires JavaScript."
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:24
msgid "Filter demos list"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:47
msgid "Without Page Builder"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:56
msgid "Themes list"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:60
#: includes/class-demo-importer.php:203
msgid "No demos found. Try a different search."
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:74
#: includes/admin/views/html-admin-page-importer.php:147
msgid "Pro"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:81
#: includes/admin/views/html-admin-page-importer.php:154
#. translators: %s: Demo author name
msgid "By %s"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:90
#. translators: %s: Demo name
msgid "<span>Imported:</span> %s"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:99
#: includes/admin/views/html-admin-page-importer.php:136
#: includes/admin/views/html-admin-page-importer.php:224
#: includes/class-demo-importer.php:179
msgid "Live Preview"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:102
#: includes/admin/views/html-admin-page-importer.php:129
#: includes/admin/views/html-admin-page-importer.php:217
msgid "Buy Now"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:104
#: includes/admin/views/html-admin-page-importer.php:110
msgid "Import"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:112
#: includes/admin/views/html-admin-page-importer.php:250
msgid "Preview"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:125
msgid "Close"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:131
#: includes/admin/views/html-admin-page-importer.php:138
#: includes/admin/views/html-admin-page-importer.php:219
#: includes/admin/views/html-admin-page-importer.php:226
msgid "Import Demo"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:133
#: includes/admin/views/html-admin-page-importer.php:221
msgid "Install Plugins"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:163
msgid "%s theme is not active."
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:165
msgid "Required Plugins must be activated."
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:171
#. translators: %s: Demo version
msgid "Version: %s"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:178
msgid "Plugins Information"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:183
msgid "Required Plugins"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:206
msgid "No plugins are required for this demo."
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:230
#: includes/class-demo-importer.php:204
msgid "Collapse Sidebar"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:232
msgid "Collapse"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:237
msgid "Enter desktop preview mode"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:240
msgid "Enter tablet preview mode"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:243
msgid "Enter mobile preview mode"
msgstr ""
#: includes/admin/views/html-notice-reset-wizard-success.php:14
msgid ""
"WordPress has been reset back to defaults. The user "
"<strong>\"%1$s\"</strong> was recreated with its previous password."
msgstr ""
#: includes/admin/views/html-notice-reset-wizard.php:12
msgid ""
"<strong>Reset Wizard</strong> &#8211; If you need to reset the WordPress "
"back to default again :)"
msgstr ""
#: includes/admin/views/html-notice-reset-wizard.php:13
msgid "Run the Reset Wizard"
msgstr ""
#: includes/admin/views/html-notice-reset-wizard.php:13
msgid "Hide this notice"
msgstr ""
#: includes/class-demo-importer.php:171
msgid "Importing..."
msgstr ""
#: includes/class-demo-importer.php:173
msgid "Importing... please wait."
msgstr ""
#: includes/class-demo-importer.php:174
msgid "Import completed successfully."
msgstr ""
#: includes/class-demo-importer.php:175
msgid "Import Failed!"
msgstr ""
#: includes/class-demo-importer.php:176
msgid "Import failed: %s"
msgstr ""
#: includes/class-demo-importer.php:181
msgid "Imported!"
msgstr ""
#: includes/class-demo-importer.php:182
msgid "Try this solution!"
msgstr ""
#: includes/class-demo-importer.php:192
msgid ""
"It is strongly recommended that you backup your database before proceeding. "
"Are you sure you wish to run the reset wizard now?"
msgstr ""
#: includes/class-demo-importer.php:193
msgid ""
"Importing demo data will ensure that your site will look similar as theme "
"demo. It makes you easy to modify the content instead of creating them from "
"scratch. Also consider before importing theme demo: \n"
"\n"
"1. You need to import demo on fresh WordPress install to exactly replicate "
"the theme demo. \n"
"\n"
"2. None of the posts, pages, attachments or any other data already existing "
"in your site will be deleted or modified. \n"
"\n"
"3. Copyright images will get replaced with other placeholder images. \n"
"\n"
"4. It will take some time to import the theme demo."
msgstr ""
#: includes/class-demo-importer.php:196
msgid "Search Demos"
msgstr ""
#: includes/class-demo-importer.php:197
msgid "Search demos..."
msgstr ""
#: includes/class-demo-importer.php:199
#. translators: %s: support forums URL
msgid ""
"An unexpected error occurred. Something may be wrong with Mantrabrain demo "
"server&#8217;s configuration. If you continue to have problems, please try "
"the <a href=\"%s\">support forums</a>."
msgstr ""
#: includes/class-demo-importer.php:200
msgid "Try Again"
msgstr ""
#: includes/class-demo-importer.php:201
msgid "Please suggest us!"
msgstr ""
#: includes/class-demo-importer.php:202
msgid "Number of Demos found: %d"
msgstr ""
#: includes/class-demo-importer.php:205
msgid "Expand Sidebar"
msgstr ""
#: includes/class-demo-importer.php:207
#. translators: accessibility text
msgid "Select one or more Demo features to filter by"
msgstr ""
#: includes/class-demo-importer.php:232
#. translators: 1: Mantrabrain Starter Sites 2: five stars
msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Mantrabrain Starter Sites"
msgstr ""
#: includes/class-demo-importer.php:234
msgid "Thanks :)"
msgstr ""
#: includes/class-demo-importer.php:237
msgid "Thank you for importing with Mantrabrain Starter Sites."
msgstr ""
#: includes/class-demo-importer.php:256 includes/class-demo-importer.php:258
msgid "Help &amp; Support"
msgstr ""
#: includes/class-demo-importer.php:260
msgid ""
"Should you need help understanding, using, or extending Mantrabrain Demo "
"Importer, <a href=\"%s\">please read our documentation</a>. You will find "
"all kinds of resources including snippets, tutorials and much more."
msgstr ""
#: includes/class-demo-importer.php:264
msgid ""
"For further assistance with Mantrabrain Starter Sites core you can use the "
"<a href=\"%1$s\">community forum</a>. If you need help with premium themes "
"sold by Mantrabrain, please <a href=\"%2$s\">use our free support forum</a>."
msgstr ""
#: includes/class-demo-importer.php:268
msgid "Community forum"
msgstr ""
#: includes/class-demo-importer.php:268
msgid "Mantrabrain Support"
msgstr ""
#: includes/class-demo-importer.php:273 includes/class-demo-importer.php:275
msgid "Found a bug?"
msgstr ""
#: includes/class-demo-importer.php:276
msgid ""
"If you find a bug within Mantrabrain Starter Sites you can create a ticket "
"via <a href=\"%1$s\">Github issues</a>. Ensure you read the <a "
"href=\"%2$s\">contribution guide</a> prior to submitting your report. To "
"help us solve your issue, please be as descriptive as possible."
msgstr ""
#: includes/class-demo-importer.php:277
msgid "Report a bug"
msgstr ""
#: includes/class-demo-importer.php:283 includes/class-demo-importer.php:285
#: includes/class-demo-importer.php:287
msgid "Reset wizard"
msgstr ""
#: includes/class-demo-importer.php:286
msgid ""
"If you need to reset the WordPress back to default again, please click on "
"the button below."
msgstr ""
#: includes/class-demo-importer.php:291
msgid "For more information:"
msgstr ""
#: includes/class-demo-importer.php:292
msgid "About Demo Importer"
msgstr ""
#: includes/class-demo-importer.php:293
msgid "WordPress.org project"
msgstr ""
#: includes/class-demo-importer.php:294
msgid "Github project"
msgstr ""
#: includes/class-demo-importer.php:295
msgid "Official themes"
msgstr ""
#: includes/class-demo-importer.php:296
msgid "Official plugins"
msgstr ""
#: includes/class-demo-importer.php:326
msgid "Action failed. Please refresh the page and retry."
msgstr ""
#: includes/class-demo-importer.php:330
#: includes/class-mantrabrain-starter-sites.php:50
#: includes/class-mantrabrain-starter-sites.php:59
msgid "Cheatin&#8217; huh?"
msgstr ""
#: includes/class-demo-importer.php:484
msgid "%s Pro"
msgstr ""
#. Author of the plugin/theme
msgid "Mantrabrain"
msgstr ""
#: includes/class-demo-importer.php:538
msgid "No demo specified."
msgstr ""
#: includes/class-demo-importer.php:553
msgid "Sorry, you are not allowed to import content."
msgstr ""
#: includes/class-demo-importer.php:585
#: includes/functions-demo-importer.php:105
msgid "Unable to connect to the filesystem. Please confirm your credentials."
msgstr ""
#: includes/class-demo-importer.php:669
msgid "The XML file dummy content is missing."
msgstr ""
#: includes/class-demo-importer.php:760
msgid "The DAT file customizer data is missing."
msgstr ""
#: includes/class-demo-importer.php:785
msgid "The WIE file widget content is missing."
msgstr ""
#: includes/class-mantrabrain-starter-sites.php:223
msgid "View Demo Importer"
msgstr ""
#: includes/class-mantrabrain-starter-sites.php:239
msgid "View Demo Importer Documentation"
msgstr ""
#: includes/class-mantrabrain-starter-sites.php:239
msgid "Docs"
msgstr ""
#: includes/class-mantrabrain-starter-sites.php:240
msgid "Visit Free Customer Support Forum"
msgstr ""
#: includes/class-mantrabrain-starter-sites.php:240
msgid "Free Support"
msgstr ""
#: includes/class-mantrabrain-starter-sites.php:256
msgid "This plugin requires %s to be activated to work."
msgstr ""
#: includes/class-mantrabrain-starter-sites.php:256
msgid "Official Mantrabrain Theme"
msgstr ""
#: includes/functions-demo-importer.php:30
msgid "No plugin specified."
msgstr ""
#: includes/functions-demo-importer.php:42
msgid "Sorry, you are not allowed to install plugins on this site."
msgstr ""
#: includes/functions-demo-importer.php:338
#. translators: %s: Number of plugins
msgid "%s plugin successfully installed."
msgstr ""
#: includes/functions-demo-importer.php:345
#. translators: %s: Number of plugins
msgid "%s plugins successfully installed."
msgstr ""
#: includes/functions-demo-importer.php:355
#. translators: %s: Number of failed installs
msgid "%s install failed."
msgstr ""
#: includes/functions-demo-importer.php:360
#. translators: %s: Number of failed installs
msgid "%s installs failed."
msgstr ""
#: includes/functions-demo-importer.php:363
msgid "Show more details"
msgstr ""
#: includes/importers/class-customizer-importer.php:36
msgid ""
"The customizer import file is not in a correct format. Please make sure to "
"use the correct customizer import file."
msgstr ""
#: includes/importers/class-customizer-importer.php:40
msgid ""
"The customizer import file is not suitable for current theme. You can only "
"import customizer settings for the same theme or a child theme."
msgstr ""
#: includes/importers/class-widget-importer.php:34
msgid "Widget import data could not be read. Please try a different file."
msgstr ""
#: includes/importers/class-widget-importer.php:71
msgid "Sidebar does not exist in theme (moving widget to Inactive)"
msgstr ""
#: includes/importers/class-widget-importer.php:93
msgid "Site does not support widget"
msgstr ""
#: includes/importers/class-widget-importer.php:128
msgid "Widget already exists"
msgstr ""
#: includes/importers/class-widget-importer.php:187
msgid "Imported"
msgstr ""
#: includes/importers/class-widget-importer.php:190
msgid "Imported to Inactive"
msgstr ""
#: includes/importers/class-widget-importer.php:196
msgid "No Title"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:123
#: includes/importers/wordpress-importer/class-wxr-importer.php:132
#: includes/importers/wordpress-importer/class-wxr-importer.php:183
#: includes/importers/wordpress-importer/class-wxr-importer.php:187
#: includes/importers/wordpress-importer/class-wxr-importer.php:196
msgid "Sorry, there has been an error."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:124
msgid "The file does not exist, please try again."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:167
msgid "All done."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:167
msgid "Have fun!"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:168
msgid "Remember to update the passwords and roles of imported users."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:188
msgid ""
"The export file could not be found at <code>%s</code>. It is likely that "
"this was caused by a permissions problem."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:204
msgid ""
"This WXR file (version %s) may not be supported by this version of the "
"importer. Please consider updating."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:229
msgid ""
"Failed to import author %s. Their posts will be attributed to the current "
"user."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:255
msgid "Assign Authors"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:256
msgid ""
"To make it easier for you to edit and save the imported content, you may "
"want to reassign the author of the imported item to an existing user of "
"this site. For example, you may want to import all the entries as "
"<code>admin</code>s entries."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:258
msgid ""
"If a new user is created by WordPress, a new password will be randomly "
"generated and the new user&#8217;s role will be set as %s. Manually "
"changing the new user&#8217;s details will be necessary."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:268
msgid "Import Attachments"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:271
msgid "Download and import file attachments"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:275
msgid "Submit"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:288
msgid "Import author:"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:299
msgid "or create new user with login name:"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:302
msgid "as a new user:"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:310
msgid "assign posts to an existing user:"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:312
msgid "or assign posts to an existing user:"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:313
msgid "- Select -"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:363
msgid ""
"Failed to create new user for %s. Their posts will be attributed to the "
"current user."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:415
msgid "Failed to import category %s"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:458
msgid "Failed to import post tag %s"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:507
#: includes/importers/wordpress-importer/class-wxr-importer.php:729
msgid "Failed to import %s %s"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:596
msgid "Failed to import &#8220;%s&#8221;: Invalid post type %s"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:633
msgid "%s &#8220;%s&#8221; already exists."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:695
msgid "Failed to import %s &#8220;%s&#8221;"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:861
msgid "Menu item skipped due to missing menu slug"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:868
msgid "Menu item skipped due to invalid menu slug: %s"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:936
msgid "Fetching attachments is not enabled"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:949
msgid "Invalid file type"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:999
msgid "Remote server did not respond"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1007
msgid "Remote server returned error response %1$d %2$s"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1014
msgid "Remote file is incorrect size"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1019
msgid "Zero size file downloaded"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1025
msgid "Remote file is too large, limit is %s"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1125
msgid "Import WordPress"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1132
msgid ""
"A new version of this importer is available. Please update to version %s to "
"ensure compatibility with newer export files."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1147
msgid ""
"Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import "
"the posts, pages, comments, custom fields, categories, and tags into this "
"site."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-importer.php:1148
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-parsers.php:44
#: includes/importers/wordpress-importer/class-wxr-parsers.php:74
#: includes/importers/wordpress-importer/class-wxr-parsers.php:82
msgid "There was an error when reading this WXR file"
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-parsers.php:45
msgid ""
"Details are shown above. The importer will now try again with a different "
"parser..."
msgstr ""
#: includes/importers/wordpress-importer/class-wxr-parsers.php:86
#: includes/importers/wordpress-importer/class-wxr-parsers.php:91
#: includes/importers/wordpress-importer/class-wxr-parsers.php:308
#: includes/importers/wordpress-importer/class-wxr-parsers.php:504
msgid "This does not appear to be a WXR file, missing/invalid WXR version number"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://mantrabrain.com/demo-importer/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Import Mantrabrain official themes demo content, widgets and theme settings "
"with just one click."
msgstr ""
#. Author URI of the plugin/theme
msgid "https://mantrabrain.com"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:77
msgctxt "demo"
msgid "Details &amp; Preview"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:108
#. translators: %s: Demo name
msgctxt "demo"
msgid "Import %s"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:118
msgctxt "demo"
msgid "Imported"
msgstr ""
#: includes/class-demo-importer.php:172
msgctxt "demo"
msgid "Importing %s..."
msgstr ""
#: includes/class-demo-importer.php:177
msgctxt "demo"
msgid "%s imported!"
msgstr ""
#: includes/class-demo-importer.php:178
msgctxt "demo"
msgid "%s import failed"
msgstr ""
#: includes/class-demo-importer.php:180
msgctxt "demo"
msgid "Live Preview %s"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:126
msgctxt "Button label for a demo"
msgid "Previous"
msgstr ""
#: includes/admin/views/html-admin-page-importer.php:127
msgctxt "Button label for a demo"
msgid "Next"
msgstr ""
#: includes/class-demo-importer.php:136
msgctxt "Admin menu name"
msgid "Demo Importer"
msgstr ""

View File

@@ -0,0 +1,133 @@
# Copyright (C) 2019 WordPress Mass Email to users
# This file is distributed under the same license as the WordPress Mass Email to users package.
msgid ""
msgstr ""
"Project-Id-Version: WordPress Mass Email to users 1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mass-email-to-"
"users\n"
"POT-Creation-Date: 2019-01-26 05:15:55+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"
#: wordpressmassemail.php:20
msgid "Mass Email"
msgstr ""
#: wordpressmassemail.php:65
msgid "UPGRADE TO PRO VERSION"
msgstr ""
#: wordpressmassemail.php:122
msgid "Email sent successfully."
msgstr ""
#: wordpressmassemail.php:173
msgid "Unable to send email to users."
msgstr ""
#: wordpressmassemail.php:214 wordpressmassemail.php:537
msgid "Send Email to Users"
msgstr ""
#: wordpressmassemail.php:231
msgid "Subject"
msgstr ""
#: wordpressmassemail.php:238
msgid "Email From Name"
msgstr ""
#: wordpressmassemail.php:241
msgid "(ex. admin)"
msgstr ""
#: wordpressmassemail.php:247
msgid "Email From"
msgstr ""
#: wordpressmassemail.php:250
msgid "(ex. admin@yoursite.com)"
msgstr ""
#: wordpressmassemail.php:256
msgid "Email To"
msgstr ""
#: wordpressmassemail.php:263
msgid "Email Body"
msgstr ""
#: wordpressmassemail.php:271
msgid "you can use [username] place holder into email content"
msgstr ""
#: wordpressmassemail.php:279
msgid "Send Email"
msgstr ""
#: wordpressmassemail.php:427
msgid "Send email to users"
msgstr ""
#: wordpressmassemail.php:446
msgid "Search User"
msgstr ""
#: wordpressmassemail.php:446
msgid "Reset Search"
msgstr ""
#: wordpressmassemail.php:469 wordpressmassemail.php:477
msgid "Select All Emails"
msgstr ""
#: wordpressmassemail.php:470 wordpressmassemail.php:478
msgid "Username"
msgstr ""
#: wordpressmassemail.php:518
msgid "Per Page"
msgstr ""
#: wordpressmassemail.php:548
msgid "No Users Found"
msgstr ""
#: wordpressmassemail.php:557
msgid "Access All Themes In One Price"
msgstr ""
#: wordpressmassemail.php:566
msgid "Google For Business Coupon"
msgstr ""
#: wordpressmassemail.php:641
msgid "Please select atleast one email to send email."
msgstr ""
#: wordpressmassemail.php:647
msgid "Please select atleast one email to delete."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "WordPress Mass Email to users"
msgstr ""
#. #-#-#-#-# mass-email-to-users.pot (WordPress Mass Email to users 1.1) #-#-#-#-#
#. Plugin URI of the plugin/theme
#. #-#-#-#-# mass-email-to-users.pot (WordPress Mass Email to users 1.1) #-#-#-#-#
#. Author URI of the plugin/theme
msgid "http://www.i13websolution.com/wordpress-bulk-email-pro-plugin.html"
msgstr ""
#. Description of the plugin/theme
msgid "Plugin for send mass email to registered users"
msgstr ""
#. Author of the plugin/theme
msgid "I Thirteen Web Solution"
msgstr ""

View File

@@ -0,0 +1,788 @@
# Copyright (C) 2019 ThemeCentury Team
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Master Accordion - Accordion, FAQ, Tabs, Shortcode & "
"Widgets 1.0.3\n"
"Report-Msgid-Bugs-To: themecentury@gmail.com\n"
"POT-Creation-Date: 2019-02-08 18:24:08+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <themecentury@gmail.com>\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: includes/function-mran-core.php:14 includes/function-mran-core.php:97
msgid "Default"
msgstr ""
#: includes/function-mran-core.php:15 includes/function-mran-core.php:98
msgid "Template 1"
msgstr ""
#: includes/function-mran-core.php:16 includes/function-mran-core.php:99
msgid "Theme default"
msgstr ""
#: includes/function-mran-core.php:44 includes/function-mran-core.php:131
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:255
msgid "Vertical"
msgstr ""
#: includes/function-mran-core.php:45 includes/function-mran-core.php:132
msgid "Horizontal"
msgstr ""
#: includes/function-mran-core.php:71
msgid "Excerpt"
msgstr ""
#: includes/function-mran-core.php:72
#: includes/optionpage/class-mran-shortcode-generator.php:94
#: includes/widgets/class-mran-accordion-widget.php:314
#: includes/widgets/class-mran-tab-widget.php:325
msgid "Full Content"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:25
#: includes/optionpage/class-mran-settings-page.php:26
msgid "All Settings"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:42
msgid "Master Accordion Settings "
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:52
#: includes/optionpage/class-mran-settings-page.php:148
msgid "Accordion Settings"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:56
msgid "Tabs Settings"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:78
msgid "Our Free Plugins"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:82
msgid "Master Accordion"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:92
msgid "Sharing Plus"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:114
#: includes/optionpage/class-mran-shortcode-generator.php:353
msgid "Demo"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:115
#: includes/optionpage/class-mran-shortcode-generator.php:354
msgid "Docs"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:116
#: includes/optionpage/class-mran-shortcode-generator.php:355
msgid "Support"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:117
#: includes/optionpage/class-mran-shortcode-generator.php:356
msgid "Rating"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:118
#: includes/optionpage/class-mran-shortcode-generator.php:357
msgid "Download"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:155
msgid "Enable accordion single page?"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:166
msgid "Tab Settings"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:173
msgid "Enable tabs single page?"
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:212
msgid "You can change tabs settings from here."
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:222
msgid "You can change accordion settings from here."
msgstr ""
#: includes/optionpage/class-mran-settings-page.php:232
msgid "Settings name is not defined"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:29
msgid "Add Accordion"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:42
msgid "Accordion WordPress Shortcode Generator"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:43
msgid "Shortcode Generator"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:58
msgid "Generate accordion shortcode from here."
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:63
msgid ""
"Change your settings from here and generate shortcode than just copy this "
"shortcode and paste it to text editor."
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:72
msgid "Tabs"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:73
msgid "Accordion"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:76
msgid "Descending"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:77
msgid "Ascending"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:80
msgid "Date"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:81
msgid "Title"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:82
msgid "ID"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:83
msgid "Author"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:84
msgid "Modified"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:85
msgid "Random"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:86
msgid "Comment Count"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:89
msgid "Readable"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:90
msgid "Editable"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:93
#: includes/widgets/class-mran-accordion-widget.php:313
#: includes/widgets/class-mran-tab-widget.php:324
msgid "Short Description"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:103
#: includes/widgets/class-mran-accordion-widget.php:223
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:176
#: includes/widgets/class-mran-tab-widget.php:233
#: includes/widgets/class-mran-term-accordion-widget.php:194
#: includes/widgets/class-mran-term-tab-widget.php:202
msgid "General"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:108
msgid "Type"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:116
msgid "Post Type"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:123
msgid "Posts per page"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:129
msgid "Order"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:136
msgid "Order By"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:143
msgid "Permission"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:150
msgid "Offset"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:156
#: includes/widgets/class-mran-accordion-widget.php:317
#: includes/widgets/class-mran-tab-widget.php:328
msgid "Content Type:"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:164
#: includes/widgets/class-mran-accordion-widget.php:227
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:180
#: includes/widgets/class-mran-tab-widget.php:237
#: includes/widgets/class-mran-term-accordion-widget.php:198
#: includes/widgets/class-mran-term-tab-widget.php:206
msgid "Layout"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:168
msgid "Active Item"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:174
msgid "Template"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:181
msgid "Style"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:190
#: includes/widgets/class-mran-accordion-widget.php:231
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:184
#: includes/widgets/class-mran-tab-widget.php:241
#: includes/widgets/class-mran-term-accordion-widget.php:202
#: includes/widgets/class-mran-term-tab-widget.php:210
msgid "Design"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:194
msgid "Title Icon"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:200
msgid "Active Title Icon"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:206
msgid "Title Color"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:212
msgid "Title Background"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:218
msgid "Title Content Color"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:224
msgid "Content Background"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:236
#: includes/optionpage/class-mran-shortcode-generator.php:307
msgid "Generate Shortcode"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:316
msgid "Our Free Themes"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:320
msgid "Twenty Nineteen"
msgstr ""
#: includes/optionpage/class-mran-shortcode-generator.php:330
msgid "Twenty Seventeen"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:66
#: includes/posttype/class-mran-accordion-post-type.php:109
msgid "Accordion template"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:79
#: includes/posttype/class-mran-accordion-post-type.php:128
#: includes/posttype/class-mran-tab-post-type.php:136
#: includes/posttype/class-mran-tab-post-type.php:182
msgid "Select template for accordion"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:82
#: includes/posttype/class-mran-accordion-post-type.php:133
msgid "Accordion style"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:93
#: includes/posttype/class-mran-accordion-post-type.php:151
#: includes/posttype/class-mran-tab-post-type.php:149
#: includes/posttype/class-mran-tab-post-type.php:203
msgid "Select style for accordion"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:189
#: includes/posttype/class-mran-tab-post-type.php:238
msgid "Shortcode"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:206
msgid "Search Accordion Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:207
msgid "All Accordion Categories"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:208
msgid "Parent Accordion Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:209
msgid "Parent Accordion Category:"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:210
msgid "Edit Accordion Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:211
msgid "Update Accordion Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:212
msgid "Add New Accordion Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:213
msgid "New Accordion Category Name"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:214
msgid "Accordion Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:234
msgid "Add New Accordion"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:235
msgid "New Accordion"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:236
msgid "Edit Accordion"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:237
msgid "View Accordion"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:238
msgid "All Accordions"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:239
msgid "Search Accordions"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:240
msgid "Parent Accordions:"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:241
msgid "No accordions found."
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:242
msgid "No accordions found in Trash."
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:247
#: includes/posttype/class-mran-tab-post-type.php:296
msgid "Description."
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:70
msgid "Tab Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:75
msgid "All Tabs"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:80
msgid "Add New Tab"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:125
#: includes/posttype/class-mran-tab-post-type.php:163
msgid " Tab template"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:139
#: includes/posttype/class-mran-tab-post-type.php:187
msgid " Tab style"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:255
msgid "Search Tab category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:256
msgid "All Tab Categories"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:257
msgid "Parent Tab Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:258
msgid "Parent Tab Category:"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:259
msgid "Edit Tab Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:260
msgid "Update Tab Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:261
msgid "Add New Tab Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:262
msgid "New Tab Category Name"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:263
msgid " Tab Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:283
msgid "Add New Tab"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:284
msgid "New Tab"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:285
msgid "Edit Tab"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:286
msgid "View Tab"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:287
msgid "All Tabs"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:288
msgid "Search Tabs"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:289
msgid "Parent Tabs:"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:290
msgid "No tabs found."
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:291
msgid "No tabs found in Trash."
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:27
msgid "Widget for Accordion"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:31
msgid "Accordion Post Widget"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:245
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:215
#: includes/widgets/class-mran-tab-widget.php:255
#: includes/widgets/class-mran-term-accordion-widget.php:216
#: includes/widgets/class-mran-term-tab-widget.php:224
msgid "Title:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:251
#: includes/widgets/class-mran-tab-widget.php:261
msgid "Post Type:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:271
#: includes/widgets/class-mran-tab-widget.php:281
#: includes/widgets/class-mran-term-accordion-widget.php:222
#: includes/widgets/class-mran-term-tab-widget.php:230
msgid "Taxonomy:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:287
#: includes/widgets/class-mran-tab-widget.php:297
msgid "Term:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:307
#: includes/widgets/class-mran-tab-widget.php:317
msgid "Show no of post:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:332
#: includes/widgets/class-mran-term-accordion-widget.php:250
msgid "Active Accordion Item:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:336
#: includes/widgets/class-mran-tab-widget.php:347
#: includes/widgets/class-mran-term-accordion-widget.php:254
#: includes/widgets/class-mran-term-tab-widget.php:262
msgid "Please set active item on load(zero for collapse all)"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:339
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:244
#: includes/widgets/class-mran-tab-widget.php:350
#: includes/widgets/class-mran-term-accordion-widget.php:257
#: includes/widgets/class-mran-term-tab-widget.php:265
msgid "Template:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:350
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:259
#: includes/widgets/class-mran-tab-widget.php:361
#: includes/widgets/class-mran-term-accordion-widget.php:271
#: includes/widgets/class-mran-term-tab-widget.php:279
msgid "Style:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:366
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:278
#: includes/widgets/class-mran-term-accordion-widget.php:287
msgid "Dropdown Icon:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:375
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:287
#: includes/widgets/class-mran-term-accordion-widget.php:296
msgid "Active Dropdown Icon:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:384
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:296
#: includes/widgets/class-mran-tab-widget.php:388
#: includes/widgets/class-mran-term-accordion-widget.php:305
#: includes/widgets/class-mran-term-tab-widget.php:304
msgid "Title Color:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:389
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:301
#: includes/widgets/class-mran-tab-widget.php:393
#: includes/widgets/class-mran-term-accordion-widget.php:310
#: includes/widgets/class-mran-term-tab-widget.php:309
msgid "Title Background:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:395
#: includes/widgets/class-mran-tab-widget.php:405
#: includes/widgets/class-mran-term-accordion-widget.php:316
#: includes/widgets/class-mran-term-tab-widget.php:315
msgid "Content Color:"
msgstr ""
#: includes/widgets/class-mran-accordion-widget.php:401
#: includes/widgets/class-mran-tab-widget.php:411
#: includes/widgets/class-mran-term-accordion-widget.php:322
#: includes/widgets/class-mran-term-tab-widget.php:321
msgid "Content Background:"
msgstr ""
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:23
msgid "Add a custom accordion menu to your sidebar."
msgstr ""
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:27
msgid "Accordion Menu"
msgstr ""
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:208
msgid "No menus have been created yet. <a href=\"%s\">Create some</a>."
msgstr ""
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:222
msgid "Select Menu:"
msgstr ""
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:225
msgid "&mdash; Select &mdash;"
msgstr ""
#: includes/widgets/class-mran-nav-menu-accordion-widget.php:272
msgid "Edit Menu"
msgstr ""
#: includes/widgets/class-mran-tab-widget.php:28
msgid "Widget for Tab"
msgstr ""
#: includes/widgets/class-mran-tab-widget.php:32
msgid "Tab Post Widget"
msgstr ""
#: includes/widgets/class-mran-tab-widget.php:343
#: includes/widgets/class-mran-term-tab-widget.php:258
msgid "Active Tab Item:"
msgstr ""
#: includes/widgets/class-mran-tab-widget.php:376
#: includes/widgets/class-mran-term-tab-widget.php:295
msgid "Tab Icon:"
msgstr ""
#: includes/widgets/class-mran-tab-widget.php:399
msgid "Title Wraper Background:"
msgstr ""
#: includes/widgets/class-mran-tab-widget.php:417
msgid "Content Wraper Background:"
msgstr ""
#: includes/widgets/class-mran-term-accordion-widget.php:27
msgid "Widget for Term Accordion"
msgstr ""
#: includes/widgets/class-mran-term-accordion-widget.php:31
msgid "Accordion Term Widget"
msgstr ""
#: includes/widgets/class-mran-term-accordion-widget.php:242
#: includes/widgets/class-mran-term-tab-widget.php:250
msgid "Show no of term:"
msgstr ""
#: includes/widgets/class-mran-term-tab-widget.php:28
msgid "Widget for Term Tab"
msgstr ""
#: includes/widgets/class-mran-term-tab-widget.php:32
msgid "Tab Term Widget"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Master Accordion - Accordion, FAQ, Tabs, Shortcode & Widgets"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://themecentury.com/plugins/master-accordion/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Master Accordion is designed for tabs and accordion. This plugin have "
"multiple accordion, tab, widget and shortcode features with a lot of "
"Flexibility with multiple templates."
msgstr ""
#. Author of the plugin/theme
msgid "ThemeCentury Team"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://themecentury.com/"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:204
msgctxt "taxonomy general name"
msgid "Accordion Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:253
msgctxt "taxonomy general name"
msgid " Tab Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:205
msgctxt "taxonomy singular name"
msgid "Accordion Category"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:254
msgctxt "taxonomy singular name"
msgid " Tab Category"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:229
msgctxt "post type general name"
msgid "Accordion"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:278
msgctxt "post type general name"
msgid " Tab"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:230
msgctxt "post type singular name"
msgid "Accordion"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:279
msgctxt "post type singular name"
msgid " Tab"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:231
msgctxt "admin menu"
msgid "Accordions"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:280
msgctxt "admin menu"
msgid " Tabs"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:232
msgctxt "add new on admin bar"
msgid "Accordion"
msgstr ""
#: includes/posttype/class-mran-tab-post-type.php:281
msgctxt "add new on admin bar"
msgid " Tab"
msgstr ""
#: includes/posttype/class-mran-accordion-post-type.php:233
#: includes/posttype/class-mran-tab-post-type.php:282
msgctxt "book"
msgid "Add New"
msgstr ""

View File

@@ -0,0 +1,404 @@
msgid ""
msgstr ""
"Project-Id-Version: PDF Generator Addon for Elementor Page Builder 1.0.0\n"
"POT-Creation-Date: 2019-01-26 16:22+0530\n"
"PO-Revision-Date: 2019-01-26 16:22+0530\n"
"Last-Translator: \n"
"Language-Team: RedefiningTheWeb\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.2\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-pdf-generator-addon-for-elementor-page-builder-admin.php:133
msgid "Elementor PDF Setting"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:73
msgid "PDF Generator for Elementor"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:75
msgid "Basic Setting"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:76
msgid "PDF Header Setting"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:77
msgid "PDF Footer Setting"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:78
msgid "PDF CSS Setting"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:79
msgid "PDF WaterMark Setting"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:81
msgid ""
"* All values which you enter like top-margin,font-size etc. are in "
"<strong>mm</strong> not in px"
msgstr ""
#: admin/partials/pdf-generator-addon-for-elementor-page-builder-admin-display.php:114
msgid "Save changes"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:8
msgid "Include Featured Image"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:10
msgid "Check it if you want to show featured image."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:14
msgid "Show Post Date"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:16
msgid "Check it if you want to show date of post."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:20
msgid "Show Post Tags"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:22
msgid "Check it if you want to show tag list of post."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:26
msgid "Show Post Category List"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:28
msgid "Check it if you want to show category of the post."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:32
msgid "PDF File Name"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:36
msgid "Post Name"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:38
msgid "Post ID"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:43
msgid "Select what is name of generated pdf file."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:47
msgid "Rtl Support"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:50
msgid ""
"Check it if you want generate pdf in Arabic or languages which start from "
"right align."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:54
msgid "Allowed Post Types"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_basic.php:69
msgid "Choose on which post type you want to generate pdf."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:315
msgid "PDF Page Size"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:328
msgid "Choose the size of Pdf page."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:332
msgid "Pdf Page Orientation"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:336
msgid "Portrait"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:340
msgid "Landscape"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:342
msgid "Choose your required page Orientation of Pdf."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:346
msgid "Body Top Margin"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:348
msgid ""
"Enter your required top margin for main pdf body (By default 37). Minimum 37 "
"required otherwise will not work."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:352
msgid "Body Left Margin"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:354
msgid "Enter your required left margin for main pdf body (By default 15)"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:358
msgid "Body Right Margin"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:360
msgid "Enter your required right margin for main pdf body (By default 15)"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:364
msgid "Body Font Family"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:379
msgid "Body Font Size"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:382
msgid "Enter your required font size for Body of the Pdf(By default 15)"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:387
msgid "Pdf Custom CSS"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_css.php:390
msgid "Enter your required custom css for pdf"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_footer.php:8
msgid "Footer Html"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_footer.php:23
msgid "Footer Top Margin"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_footer.php:25
msgid "Enter your required top margin (By default 15)"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_footer.php:29
msgid "Footer Section Font"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_footer.php:44
msgid "Footer Section Font Size"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_footer.php:48
msgid "Enter your required font size for Pdf Footer(By default 15)"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_header.php:8
msgid "Header Html"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_header.php:23
msgid "Header Top Margin"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_header.php:25
msgid "Enter your required top margin (By default 7)"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_header.php:29
msgid "Header Section Font"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_header.php:44
msgid "Header Section Font Size"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_header.php:48
msgid "Enter your required font size for Pdf Header(By default 15)"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:7
msgid "Watermark Text"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:13
msgid "Check it if you want to show Watermark text."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:20
msgid "Watermark Font"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:32
msgid "Choose the font family of Watermark text."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:36
msgid "Watermark Rotation"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:40
msgid "Enter your required rotation(in degree) for Watermark text."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:44
msgid "Watermark Text:"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:49
msgid "Enter Watermark Text which you want to show on pdf."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:53
msgid "Text Transparency"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:57
msgid "Enter the text Transparency of Watermark."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:64
msgid "Image"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:70
msgid "Check it if you want to show Watermark image."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:76
msgid "Image Transparency"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:80
msgid "Enter the image Transparency of Watermark."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:84
msgid "Watermark Image:"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:96
msgid "Upload/Add image"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:97
msgid "Remove image"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:99
msgid "Choose your Watermark Image which you want to show on pdf."
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:104
msgid "Image Dimension"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:115
msgid "Choose the dimension of Watermark Image"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:123
msgid "Image Width"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:127
msgid "Set the Width of Watermark Image"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:131
msgid "Image Height"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:135
msgid "Set the Height of Watermark Image"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:146
msgid "Integer Value"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:157
msgid "Image Position"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:174
msgid "Horizontal Position"
msgstr ""
#: admin/partials/rtw_pgaepb_tabs/pgaepb_watermark.php:180
msgid "Vertical Position"
msgstr ""
#: includes/elementor_pdf_generator.php:13
msgid "Pdf - Generator"
msgstr ""
#: includes/elementor_pdf_generator.php:29
msgid "PDF Settings"
msgstr ""
#: includes/elementor_pdf_generator.php:36
msgid "Pdf button Width"
msgstr ""
#: includes/elementor_pdf_generator.php:38
msgid "Enter pdf button width"
msgstr ""
#: includes/elementor_pdf_generator.php:46
msgid "Pdf button Height"
msgstr ""
#: includes/elementor_pdf_generator.php:48
msgid "Enter pdf button height"
msgstr ""
#: includes/elementor_pdf_generator.php:56
msgid "PDF Button Icon"
msgstr ""
#: includes/elementor_pdf_generator.php:67
msgid "Class of Html element which exclude from pdf"
msgstr ""
#: includes/elementor_pdf_generator.php:69
#: includes/elementor_pdf_generator.php:78
msgid "For multiple use commma"
msgstr ""
#: includes/elementor_pdf_generator.php:76
msgid "ID of Html element which exclude from pdf"
msgstr ""
#: includes/elementor_pdf_generator.php:163
msgid "Download PDF"
msgstr ""
#: public/class-pdf-generator-addon-for-elementor-page-builder-public.php:126
msgid "Some Thing Went Wrong! Please Try Again"
msgstr ""
#: public/class-pdf-generator-addon-for-elementor-page-builder-public.php:221
msgid "Categories : "
msgstr ""

View File

@@ -0,0 +1,119 @@
# PODCAST PLAYER.
# Copyright (C) 2019 vedathemes
# This file is distributed under the same license as the PACKAGE package.
# VEDATHEMES <contact@vedathemes.com>, 2019.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Podcast Player 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-02-05 17:09+0530\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: VEDATHEMES <contact@vedathemes.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: admin/class-podcast-player-admin.php:84
#: admin/class-podcast-player-admin.php:86
#: podcast-player/admin/class-podcast-player-admin.php:84
#: podcast-player/admin/class-podcast-player-admin.php:86
msgid "Set Image"
msgstr ""
#: admin/class-podcast-player-admin.php:85
#: podcast-player/admin/class-podcast-player-admin.php:85
msgid "Select"
msgstr ""
#: admin/class-podcast-player-widget.php:47
#: podcast-player/admin/class-podcast-player-widget.php:47
msgid "Create a podcast player widget."
msgstr ""
#: admin/class-podcast-player-widget.php:50
#: podcast-player/admin/class-podcast-player-widget.php:50
msgid "Podcast Player"
msgstr ""
#: admin/class-podcast-player-widget.php:116
#: podcast-player/admin/class-podcast-player-widget.php:116
msgid "Title:"
msgstr ""
#: admin/class-podcast-player-widget.php:121
#: podcast-player/admin/class-podcast-player-widget.php:121
msgid "Podcast Feed URL"
msgstr ""
#: admin/class-podcast-player-widget.php:126
#: podcast-player/admin/class-podcast-player-widget.php:126
msgid "Brief Description:"
msgstr ""
#: admin/class-podcast-player-widget.php:133
#: podcast-player/admin/class-podcast-player-widget.php:133
msgid "None"
msgstr ""
#: admin/class-podcast-player-widget.php:134
#: podcast-player/admin/class-podcast-player-widget.php:134
#: podcast-player/public/partials/podcast-player-public-display.php:26
#: public/partials/podcast-player-public-display.php:26
msgid "Podcast Subscription Menu"
msgstr ""
#: admin/class-podcast-player-widget.php:141
#: admin/class-podcast-player-widget.php:283
#: admin/class-podcast-player-widget.php:286
#: podcast-player/admin/class-podcast-player-widget.php:141
#: podcast-player/admin/class-podcast-player-widget.php:283
#: podcast-player/admin/class-podcast-player-widget.php:286
msgid "Podcast Cover Image"
msgstr ""
#: admin/class-podcast-player-widget.php:149
#: podcast-player/admin/class-podcast-player-widget.php:149
msgid "Number of Episodes"
msgstr ""
#: admin/class-podcast-player-widget.php:290
#: podcast-player/admin/class-podcast-player-widget.php:290
msgid "Click the image to edit/update"
msgstr ""
#: admin/class-podcast-player-widget.php:291
#: podcast-player/admin/class-podcast-player-widget.php:291
msgid "Remove Featured Image"
msgstr ""
#: includes/functions.php:28 podcast-player/includes/functions.php:28
msgid "Please define default parameters in the form of an array."
msgstr ""
#: includes/functions.php:33 podcast-player/includes/functions.php:33
msgid "Please define an SVG icon filename."
msgstr ""
#: podcast-player/public/class-podcast-player-display.php:61
#: public/class-podcast-player-display.php:61
msgid "RSS Error:"
msgstr ""
#: podcast-player/public/class-podcast-player-display.php:84
#: public/class-podcast-player-display.php:84
msgid "Follow Us"
msgstr ""
#: podcast-player/public/partials/podcast-player-public-display.php:40
#: public/partials/podcast-player-public-display.php:40
msgid "No Items Found. Try again later."
msgstr ""
#: podcast-player/public/partials/podcast-player-public-display.php:42
#: public/partials/podcast-player-public-display.php:42
msgid "Search Episodes"
msgstr ""

View File

@@ -0,0 +1,18 @@
{
"name": "my-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.13.0",
"classnames": "^2.2.6",
"md5": "^2.2.1",
"moment": "^2.23.0",
"query-string": "^6.2.0",
"querystringify": "^2.1.0"
}
}

View File

@@ -20,6 +20,20 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/360-product-view/public/js/threesixty.min.js?ver=1.0.0"></script>
<!-- 3cx-clicktotalk -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3cx-clicktotalk/includes/js/callus.js?ver=16.0.0"></script>
<!-- 3cx-webinars -->
<link rel="stylesheet" id="3cx-webinar-jquery-ui-css" href="http://wp.lab/wp-content/plugins/3cx-webinars/includes/css/jquery-ui.css?ver=10.4.2" type="text/css" media="all">
<link rel="stylesheet" id="3cx-webinar-flags-css" href="http://wp.lab/wp-content/plugins/3cx-webinars/includes/css/flags.css?ver=10.4.2" type="text/css" media="all">
<link rel="stylesheet" id="3cx-webinar-css" href="http://wp.lab/wp-content/plugins/3cx-webinars/includes/css/styles.css?ver=10.4.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3cx-webinars/includes/js/jsrender.min.js?ver=10.4.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3cx-webinars/includes/js/jstz.min.js?ver=10.4.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3cx-webinars/includes/js/jquery.dd.js?ver=10.4.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3cx-webinars/includes/js/scripts.js?ver=10.4.2"></script>
<!-- 3d-flipbook-dflip-lite -->
<link rel="stylesheet" id="dflip-icons-style-css" href="http://wp.lab/wp-content/plugins/3d-flipbook-dflip-lite/assets/css/themify-icons.min.css?ver=1.3.11" type="text/css" media="all">
<link rel="stylesheet" id="dflip-style-css" href="http://wp.lab/wp-content/plugins/3d-flipbook-dflip-lite/assets/css/dflip.min.css?ver=1.3.11" type="text/css" media="all">
@@ -112,6 +126,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/js/frontend.js?ver=4.11.3"></script>
<!-- accessibility-help-button -->
<link rel="stylesheet" id="aa-call-css" href="http://wp.lab/wp-content/plugins/accessibility-help-button/public/css/aa-call-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accessibility-help-button/public/js/aa-call-public.js?ver=1.0.0"></script>
<!-- accesspress-anonymous-post -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accesspress-anonymous-post/js/frontend.js?ver=2.7.3"></script>
<link rel="stylesheet" id="ap-front-styles-css" href="http://wp.lab/wp-content/plugins/accesspress-anonymous-post/css/frontend-style.css?ver=2.7.3" type="text/css" media="all">
@@ -175,6 +194,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accordion-for-wp/public/js/afwp-accordion-public.js?ver=1.1.3"></script>
<!-- ace-twilio-for-woocommerce -->
<link rel="stylesheet" id="ace-twilio-for-woocommerce -css" href="http://wp.lab/wp-content/plugins/ace-twilio-for-woocommerce/public/css/ace-twilio-for-woocommerce%20-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ace-twilio-for-woocommerce/public/js/ace-twilio-for-woocommerce%20-public.js?ver=1.0.0"></script>
<!-- acf-customizer -->
<link rel="stylesheet" id="acf-customizer-css" href="http://wp.lab/wp-content/plugins/acf-customizer/public/css/acf-customizer-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/acf-customizer/public/js/acf-customizer-public.js?ver=1.0.0"></script>
@@ -661,6 +685,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ap-custom-testimonial/js/frontend.js?ver=1.3.7"></script>
<!-- ap-gist-api-code-insert -->
<link rel="stylesheet" id="prism-css-css" href="http://wp.lab/wp-content/plugins/ap-gist-api-code-insert/public/css/prism.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="apci-gist-api-ci-css" href="http://wp.lab/wp-content/plugins/ap-gist-api-code-insert/public/css/apci-gist-api-ci-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ap-gist-api-code-insert/public/js/prism.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ap-gist-api-code-insert/public/js/apci-gist-api-ci-public.js?ver=1.0.0"></script>
<!-- ap-pricing-tables-lite -->
<link rel="stylesheet" id="animate_css-css" href="http://wp.lab/wp-content/plugins/ap-pricing-tables-lite/css/frontend/animate.css?ver=1.0.3" type="text/css" media="all">
<link rel="stylesheet" id="appts_frontend_css-css" href="http://wp.lab/wp-content/plugins/ap-pricing-tables-lite/css/frontend/frontend.css?ver=1.0.3" type="text/css" media="all">
@@ -704,6 +735,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/appnotch-easy-web-to-app/public/js/easy-web-to-app-public.js?ver=1.0.0"></script>
<!-- appointment-booking-for-business -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/appointment-booking-for-business//assets/js/calendar.js?ver=1.0.0"></script>
<!-- appointment-form-manager -->
<link rel="stylesheet" id="afm-main-style-css" href="http://wp.lab/wp-content/plugins/appointment-form-manager/public/css/style.css?ver=2.1.0" type="text/css" media="all">
<link rel="stylesheet" id="afm-popup-style-css" href="http://wp.lab/wp-content/plugins/appointment-form-manager/public/css/popup.css?ver=2.1.0" type="text/css" media="all">
@@ -962,6 +997,10 @@
<link rel="stylesheet" id="hf-mains-css" href="http://wp.lab/wp-content/plugins/awesome-scrollbar/css/hf-main.css?ver=1.0" type="text/css" media="all">
<!-- awesome-slider -->
<link rel="stylesheet" id="nivo-image-slider-css" href="http://wp.lab/wp-content/plugins/awesome-slider/assets/css/style.css?ver=1.4.1" type="text/css" media="all">
<!-- awesome-slider-lite -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/awesome-slider-lite/js/jquery.awesomeslider.min.js?ver=1.0"></script>
@@ -1940,6 +1979,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
<!-- catch-duplicate-switcher -->
<link rel="stylesheet" id="catch-duplicate-switcher-css" href="http://wp.lab/wp-content/plugins/catch-duplicate-switcher/public/css/catch-duplicate-switcher-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-duplicate-switcher/public/js/catch-duplicate-switcher-public.js?ver=1.0.0"></script>
<!-- catch-infinite-scroll -->
<link rel="stylesheet" id="catch-infinite-scroll-css" href="http://wp.lab/wp-content/plugins/catch-infinite-scroll/public/css/catch-infinite-scroll-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-infinite-scroll/public/js/catch-infinite-scroll-public.js?ver=1.0.0"></script>
@@ -2137,6 +2181,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chamame-live-chat/js/client.min.js?ver=0.2.1"></script>
<!-- change-admin-login-logo -->
<link rel="stylesheet" id="Change-Admin-Login-Logo-css" href="http://wp.lab/wp-content/plugins/change-admin-login-logo/public/css/Change-Admin-Login-Logo-public-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-admin-login-logo/public/js/Change-Admin-Login-Logo-public.js?ver=1.0.0"></script>
<!-- change-wc-price-title -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-wc-price-title/assets/js/cwpt-price-title.js?ver=1.1"></script>
@@ -2281,6 +2330,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/clicksco-offerstack/public/js/app.js?ver=1.0.0"></script>
<!-- clicksports-maps -->
<link rel="stylesheet" id="clicksports-maps-mapbox-css" href="http://wp.lab/wp-content/plugins/clicksports-maps/includes/mapbox/mapbox-gl.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="clicksports-maps-public-css" href="http://wp.lab/wp-content/plugins/clicksports-maps/public/css/clicksports-maps-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/clicksports-maps/public/js/clicksports-maps-public.js?ver=1.0.0"></script>
<!-- cliengo -->
<link rel="stylesheet" id="cliengo-css" href="http://wp.lab/wp-content/plugins/cliengo/public/css/cliengo-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cliengo/public/js/cliengo-public.js?ver=1.0.0"></script>
@@ -2921,6 +2976,12 @@
<link rel="stylesheet" id="doviz_main_style-css" href="http://wp.lab/wp-content/plugins/doviz-bilgileri/doviz-style.css?ver=2.3" type="text/css" media="all">
<!-- download-after-email -->
<link rel="stylesheet" id="download-css" href="http://wp.lab/wp-content/plugins/download-after-email/css/download.css?ver=1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/download-after-email/js/media-query.js?ver=1.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/download-after-email/js/download.js?ver=1.1"></script>
<!-- drim-share -->
<link rel="stylesheet" id="drim-share-css" href="http://wp.lab/wp-content/plugins/drim-share/public/css/drim-share.min.css?ver=1.1.0" type="text/css" media="all">
@@ -3836,6 +3897,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flies/scripts.js?ver=1.0.0"></script>
<!-- flip-box-carousel -->
<link rel="stylesheet" id="flipbox_style-css" href="http://wp.lab/wp-content/plugins/flip-box-carousel/css/flipbox.carousel.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flip-box-carousel/js/flipbox.carousel.min.js?ver=1.0.0"></script>
<!-- float-to-top-button -->
<link rel="stylesheet" id="fttb-style-css" href="http://wp.lab/wp-content/plugins/float-to-top-button/css/float-to-top-button.min.css?ver=2.3.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/float-to-top-button/js/jquery.scrollUp.min.js?ver=2.3.1"></script>
@@ -4009,6 +4075,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/formlift/js/lib/intl-tel-input-master/js/intlTelInput.min.js?ver=7.2.1"></script>
<!-- formularios-de-contacto-salesup -->
<link rel="stylesheet" id="su_izitoast_css-css" href="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/helpers/izitoast/css/iziToast.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="su_jquery_ui_css-css" href="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/helpers/jquery-ui-1.12.1/jquery-ui.min.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/helpers/izitoast/js/iziToast.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/helpers/underscore/underscore.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/admin/js/su-funciones.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/admin/js/su-form-builder.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/public/js/su-public.js?ver=1.0.0"></script>
<!-- foxyshop -->
<link rel="stylesheet" id="foxyshop_css-css" href="http://wp.lab/wp-content/plugins/foxyshop/css/foxyshop.css?ver=4.7.3" type="text/css" media="all">
@@ -4830,6 +4906,11 @@
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/ht-instagram/assests/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
<!-- ht-team-member -->
<link rel="stylesheet" id="htteam-widgets-css" href="http://wp.lab/wp-content/plugins/ht-team-member/assests/css/ht-teammember.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/ht-team-member/assests/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
<!-- html-forms -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/html-forms/assets/js/public.min.js?ver=1.0.6"></script>
@@ -5050,6 +5131,11 @@
<link rel="stylesheet" id="kind-css" href="http://wp.lab/wp-content/plugins/indieweb-post-kinds/css/kind.min.css?ver=2.7.4" type="text/css" media="all">
<!-- infinite-scroll-and-ajax-load-more -->
<link rel="stylesheet" id="bliss-loadmore-css-css" href="http://wp.lab/wp-content/plugins/infinite-scroll-and-ajax-load-more/public/css/bliss-loadmore.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/infinite-scroll-and-ajax-load-more/public/js/bliss-infinite-loadmore.js?ver=1.0.0"></script>
<!-- infogalore-file-folders -->
<link rel="stylesheet" id="infogalore-folders-css" href="http://wp.lab/wp-content/plugins/infogalore-file-folders/css/frontend.min.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/infogalore-file-folders/js/frontend.min.js?ver=1.0"></script>
@@ -5543,6 +5629,11 @@
<link rel="stylesheet" id="kodeo-admin-ui-css" href="http://wp.lab/wp-content/plugins/kodeo-admin-ui/assets/css/frontend.css?ver=1.0.4" type="text/css" media="all">
<!-- kodmi-age-validator -->
<link rel="stylesheet" id="kodmi-age-validator-css" href="http://wp.lab/wp-content/plugins/kodmi-age-validator/public/css/kodmi-age-validator-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kodmi-age-validator/public/js/kodmi-age-validator-public.js?ver=1.0.0"></script>
<!-- komentify -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/komentify/public/js/komentify-public.js?ver=1.0.0"></script>
@@ -5580,6 +5671,15 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/laboratory-menu-rest-endpoints/src/js/laboratory-menu-api-public.js?ver=1.0.0"></script>
<!-- labtheme-companion -->
<link rel="stylesheet" id="labtheme-companionfontawesome-css" href="http://wp.lab/wp-content/plugins/labtheme-companion/public/css/font-awesome.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="labtheme-companion-css" href="http://wp.lab/wp-content/plugins/labtheme-companion/public/css/labtheme-companion-public.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="labtheme-companionlightsidr-css" href="http://wp.lab/wp-content/plugins/labtheme-companion/public/css/jquery.sidr.light.min.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/labtheme-companion/public/js/settings.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/labtheme-companion/public/js/isotope.pkgd.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/labtheme-companion/public/js/labtheme-companion-public.js?ver=1.0.0"></script>
<!-- lana-breadcrumb -->
<link rel="stylesheet" id="lana-breadcrumb-css" href="http://wp.lab/wp-content/plugins/lana-breadcrumb//assets/css/lana-breadcrumb.css?ver=1.0.5" type="text/css" media="all">
@@ -6284,6 +6384,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mashsharer/assets/js/mashsb.min.js?ver=3.4.7"></script>
<!-- mask-elementor-form -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mask-elementor-form/js/jquery.mask.min.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mask-elementor-form/js/maskelementor.js?ver=1.0"></script>
<!-- massive-visual-builder-page-layout-builder -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/massive-visual-builder-page-layout-builder/assets/rating/rating.js?ver=1.0"></script>
@@ -6293,6 +6398,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mastalab-comments/public/js/mastalab_comments-public.js?ver=1.0.10"></script>
<!-- master-accordion -->
<link rel="stylesheet" id="master-accordion-css" href="http://wp.lab/wp-content/plugins/master-accordion/assets/public/css/mran-accordion-public.css?ver=1.0.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/master-accordion/assets/public/js/mran-accordion-public.js?ver=1.0.3"></script>
<!-- master-slider -->
<link rel="stylesheet" id="msl-main-css" href="http://wp.lab/wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=3.4.1" type="text/css" media="all">
@@ -6416,6 +6526,10 @@
<link rel="stylesheet" id="meks-themeforest-widget-css" href="http://wp.lab/wp-content/plugins/meks-themeforest-smart-widget/css/style.css?ver=1.2" type="text/css" media="all">
<!-- melonpan-block-container -->
<link rel="stylesheet" id="melonpan-block-container-front-css" href="http://wp.lab/wp-content/plugins/melonpan-block-container/build/melonpan-block-container-front.css?ver=1.0.1" type="text/css" media="all">
<!-- memberlite-elements -->
<link rel="stylesheet" id="memberlite_elements_frontend-css" href="http://wp.lab/wp-content/plugins/memberlite-elements/css/memberlite-elements.css?ver=1.0" type="text/css" media="all">
@@ -6731,6 +6845,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mplus-intercom-subscription/assets/js/mplus-intercom-subscription-public.js?ver=1.0.18"></script>
<!-- ms-registration -->
<link rel="stylesheet" id="ms-registration-css" href="http://wp.lab/wp-content/plugins/ms-registration/public/css/ms-registration-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ms-registration/public/js/ms-registration-public.js?ver=1.0.0"></script>
<!-- mslsselect -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mslsselect/js/mslsselect.js?ver=1.3"></script>
@@ -6817,6 +6936,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mwp-side-menu/public/js/side-menu.js?ver=3.1.1"></script>
<!-- mxr-easy-embed-wall -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mxr-easy-embed-wall/public/js/mixer-wall-public.js?ver=1.0.0"></script>
<!-- mxyoutuber-responsive -->
<link rel="stylesheet" id="mxyoutuber_css-css" href="http://wp.lab/wp-content/plugins/mxyoutuber-responsive/mxassets/css/frontend.css?ver=1.0.5" type="text/css" media="all">
<link rel="stylesheet" id="lightcase_css-css" href="http://wp.lab/wp-content/plugins/mxyoutuber-responsive/mxassets/lightcase/css/lightcase.css?ver=1.0.5" type="text/css" media="all">
@@ -6877,6 +7000,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/naver-map/naver-map.js?ver=1.10"></script>
<!-- navthemes-fontawesome-icons -->
<link rel="stylesheet" id="navthemesfa-css" href="http://wp.lab/wp-content/plugins/navthemes-fontawesome-icons/build/navthemesfa.scripts.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/navthemes-fontawesome-icons/build/navthemesfa.scripts.js?ver=1.0"></script>
<!-- nearby-locations -->
<link rel="stylesheet" id="shared-css" href="http://wp.lab/wp-content/plugins/nearby-locations/shared/css/nearby-locations-shared.css?ver=1.1.1" type="text/css" media="all">
<link rel="stylesheet" id="ajf-nearby-locations-css" href="http://wp.lab/wp-content/plugins/nearby-locations/public/css/nearby-locations-public.css?ver=1.1.1" type="text/css" media="all">
@@ -7476,6 +7604,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pd-helper/assets/js/frontend.min.js?ver=1.1"></script>
<!-- pdf-generator-addon-for-elementor-page-builder -->
<link rel="stylesheet" id="pdf-generator-addon-for-elementor-page-builder-css" href="http://wp.lab/wp-content/plugins/pdf-generator-addon-for-elementor-page-builder/public/css/pdf-generator-addon-for-elementor-page-builder-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pdf-generator-addon-for-elementor-page-builder/public/js/pdf-generator-addon-for-elementor-page-builder-public.js?ver=1.0.0"></script>
<!-- pdf-print -->
<link rel="stylesheet" id="pdfprnt_frontend-css" href="http://wp.lab/wp-content/plugins/pdf-print/css/frontend.css?ver=1.9.8" type="text/css" media="all">
@@ -7680,6 +7813,11 @@
<link rel="stylesheet" id="pac-front-style-css" href="http://wp.lab/wp-content/plugins/podamibe-appointment-calendar/assets/pac-front-style.css?ver=1.1.4" type="text/css" media="all">
<!-- podcast-player -->
<link rel="stylesheet" id="podcast-player-css" href="http://wp.lab/wp-content/plugins/podcast-player/public/css/podcast-player-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/podcast-player/public/js/podcast-player-public.js?ver=1.0.0"></script>
<!-- podlove-podcasting-plugin-for-wordpress -->
<link rel="stylesheet" id="podlove-admin-font-css" href="http://wp.lab/wp-content/plugins/podlove-podcasting-plugin-for-wordpress/css/admin-font.css?ver=2.6.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/podlove-podcasting-plugin-for-wordpress/js/frontend.js?ver=2.6.3"></script>
@@ -8151,6 +8289,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ps-ads-pro/public/js/ps-ads-pro-public.js?ver=1.0.0"></script>
<!-- ps-phpcaptcha -->
<link rel="stylesheet" id="psphpcaptchawp-css" href="http://wp.lab/wp-content/plugins/ps-phpcaptcha/public/css/psphpcaptchawp-public.css?ver=1.2.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ps-phpcaptcha/public/js/psphpcaptchawp-public.js?ver=1.2.0"></script>
<!-- publish2 -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/publish2/js/pagination.js?ver=1.5.1"></script>
@@ -8231,11 +8374,29 @@
<link rel="stylesheet" id="quick-login-css" href="http://wp.lab/wp-content/plugins/quick-login/assets/quick-login.css?ver=0.4" type="text/css" media="all">
<!-- quick-testimonials -->
<link rel="stylesheet" id="qt-font-awesome-css" href="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/css/font-awesome.min.css?ver=1.0.1" type="text/css" media="all">
<link rel="stylesheet" id="qt-slick-css" href="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/css/slick.css?ver=1.0.1" type="text/css" media="all">
<link rel="stylesheet" id="qt-structure-css" href="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/css/structure.css?ver=1.0.1" type="text/css" media="all">
<link rel="stylesheet" id="qt-main-css" href="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/css/main.css?ver=1.0.1" type="text/css" media="all">
<link rel="stylesheet" id="qt-responsive-css" href="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/css/responsive.css?ver=1.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/js/slick.min.js?ver=1.0.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/js/main.js?ver=1.0.1"></script>
<link rel="stylesheet" id="qt-styles-css" href="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/css/plugin-styles.css?ver=1.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/js/masonry.pkgd.min.js?ver=1.0.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-testimonials/public/assets/js/plugin-scripts.js?ver=1.0.1"></script>
<!-- quick-toolbar -->
<link rel="stylesheet" id="ecmqt_wp_admin_css-css" href="http://wp.lab/wp-content/plugins/quick-toolbar//css/ecmqt-admin-styles.css?ver=0.4" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-toolbar//js/ecmqt-scripts.js?ver=0.4"></script>
<!-- quicklink -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quicklink//quicklink.min.js?ver=0.2.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quicklink/quicklink.min.js?ver=0.2.0" async></script>
<!-- quizmaster-grades -->
<link rel="stylesheet" id="quizmaster-grades-style-css" href="http://wp.lab/wp-content/plugins/quizmaster-grades/assets/css/quizmaster_grades.css?ver=0.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quizmaster-grades/assets/js/quizmaster_grades.js?ver=0.0.1"></script>
@@ -8567,6 +8728,11 @@
<link rel="stylesheet" id="wpr-scroller-css" href="http://wp.lab/wp-content/plugins/responsive-news-scroller/public/css/wpr-theme.css?ver=1.0.0" type="text/css" media="all">
<!-- responsive-p5js-for-wp -->
<link rel="stylesheet" id="p5js-style-1.0-css" href="http://wp.lab/wp-content/plugins/responsive-p5js-for-wp/css/p5js.min.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responsive-p5js-for-wp/js/loader.min.js?ver=1.0"></script>
<!-- responsive-portfolio-image-gallery -->
<link rel="stylesheet" id="rcpig-grid-light-css" href="http://wp.lab/wp-content/plugins/responsive-portfolio-image-gallery/assets/css/rcpig_grid_light.css?ver=1.0.6" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responsive-portfolio-image-gallery/assets/js/rcpig_grid.min.js?ver=1.0.6"></script>
@@ -8689,6 +8855,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ringotel-messenger-customer-chat/messenger-customer-chat.js?ver=1.0.0"></script>
<!-- ringotel-webchat -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ringotel-webchat/ringotel-webchat.js?ver=1.0.0"></script>
<!-- rk-hreview-for-wp -->
<link rel="stylesheet" id="rk-wp-hreview-css" href="http://wp.lab/wp-content/plugins/rk-hreview-for-wp/css/rk-wp-hreview.css?ver=1.1.1" type="text/css" media="all">
@@ -9141,6 +9311,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sharewhere/includes/assets/main/js/wpls.min.js?ver=1.2"></script>
<!-- sharing-plus -->
<link rel="stylesheet" id="sharing_plus_front_css-css" href="http://wp.lab/wp-content/plugins/sharing-plus/assets/css/sharing-plus-front.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sharing-plus/assets/js/sharing-plus-front.js?ver=1.0.0"></script>
<!-- sheetpress -->
<link rel="stylesheet" id="sheetpress-by-wpgeniuz-css" href="http://wp.lab/wp-content/plugins/sheetpress/public/css/sheetpress-by-wpgeniuz-public.css?ver=1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sheetpress/public/js/sheetpress-by-wpgeniuz-public.js?ver=1.1"></script>
@@ -9208,6 +9383,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-active-purchases-for-woocommerce/public/js/sap-for-woocommerce-public.js?ver=1.0.0"></script>
<!-- show-external-links -->
<link rel="stylesheet" id="show-external-linkscss_1-css" href="http://wp.lab/wp-content/plugins/show-external-links/public/css/show-external-links-public.css?ver=1.0.1" type="text/css" media="all">
<!-- show-me-the-admin -->
<link rel="stylesheet" id="show-me-the-admin-css" href="http://wp.lab/wp-content/plugins/show-me-the-admin/assets/css/show-me-the-admin.min.css?ver=1.2.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-me-the-admin/assets/js/show-me-the-admin.min.js?ver=1.2.1"></script>
@@ -9363,6 +9542,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-fancybox/js/jquery.fancybox.min.js?ver=1.0"></script>
<!-- simple-faq-manager -->
<link rel="stylesheet" id="simple_faq-css" href="http://wp.lab/wp-content/plugins/simple-faq-manager//assets/styles/simple_faq.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-faq-manager//assets/js/simple_faq.js?ver=1.0"></script>
<!-- simple-folio -->
<link rel="stylesheet" id="simple-folio-front-end-css" href="http://wp.lab/wp-content/plugins/simple-folio/public/css/simple-folio-public.css?ver=1.0.1" type="text/css" media="all">
@@ -9447,6 +9631,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-social-sharing-buttons/public/js/wp-scsb-public.js?ver=1.0.0"></script>
<!-- simple-sponsorships -->
<link rel="stylesheet" id="ss-style-css" href="http://wp.lab/wp-content/plugins/simple-sponsorships/assets/dist/css/public.css?ver=0.1.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-sponsorships/assets/dist/js/public.js?ver=0.1.2"></script>
<!-- simple-staff-list -->
<link rel="stylesheet" id="simple-staff-list-css" href="http://wp.lab/wp-content/plugins/simple-staff-list/public/css/simple-staff-list-public.css?ver=2.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-staff-list/public/js/simple-staff-list-public.js?ver=2.0.1"></script>
@@ -10073,6 +10262,11 @@
<link rel="stylesheet" id="stella_flags-css" href="http://wp.lab/wp-content/plugins/stella-flags//css/styles.css?ver=1.0" type="text/css" media="all">
<!-- stencil -->
<link rel="stylesheet" id="stencil-css" href="http://wp.lab/wp-content/plugins/stencil/public/css/stencil-public.css?ver=1.2.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stencil/public/js/stencil-public.js?ver=1.2.2"></script>
<!-- sticky-menu-or-anything-on-scroll -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-menu-or-anything-on-scroll/assets/js/jq-sticky-anything.min.js?ver=2.1.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-menu-or-anything-on-scroll/assets/js/stickThis.js?ver=2.1.1"></script>
@@ -10241,6 +10435,9 @@
<!-- sympose -->
<link rel="stylesheet" id="sympose-css" href="http://wp.lab/wp-content/plugins/sympose/public/css/sympose-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sympose/public/js/sympose-public.js?ver=1.0.0"></script>
<link rel="stylesheet" id="sympose-css" href="http://wp.lab/wp-content/plugins/sympose/public/css/sympose.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sympose/public/js/sympose.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sympose/public/libs/font-awesome/svg-with-js/js/fontawesome-all.js?ver=1.0.0"></script>
<!-- syndication-links -->
@@ -10524,6 +10721,11 @@
<link rel="stylesheet" id="thq-connect-general-styles-css" href="http://wp.lab/wp-content/plugins/thq-connect/css/style.css?ver=2.2.1" type="text/css" media="all">
<!-- three-d-cube -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/three-d-cube/includes/admin/assets/js/three.min.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/three-d-cube/includes/admin/assets/js/OrbitControls.js?ver=1.0"></script>
<!-- ticker-ultimate -->
<link rel="stylesheet" id="wptu-front-style-css" href="http://wp.lab/wp-content/plugins/ticker-ultimate/assets/css/wptu-front.css?ver=1.0.0" type="text/css" media="all">
@@ -10691,6 +10893,13 @@
<link rel="stylesheet" id="travelpayouts-TPMainHotel-css" href="http://wp.lab/wp-content/plugins/travelpayouts/app/public/themes/hotel/css/table-7.css?ver=0.7.4" type="text/css" media="all">
<!-- treepress -->
<link rel="stylesheet" id="treepress-css" href="http://wp.lab/wp-content/plugins/treepress/public/css/treepress-public.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="treepress-styles-css" href="http://wp.lab/wp-content/plugins/treepress/public/css/styles.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/treepress/public/js/raphael.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/treepress/public/js/treepress-public.js?ver=1.0.0"></script>
<!-- treethereum -->
<link rel="stylesheet" id="treethereumplugin-css" href="http://wp.lab/wp-content/plugins/treethereum/treethereumplugin.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/treethereum/treethereumplugin.js?ver=1.0.0"></script>
@@ -11331,6 +11540,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-affiliate-new-window/js/wcaff-affiliate-new-window.js?ver=1.0.0"></script>
<!-- wc-apply-coupon-on-post-order -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-apply-coupon-on-post-order/public/js/wc-apply-coupon-on-post-order-public.js?ver=1.0.0"></script>
<!-- wc-checkout-for-chinese -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-checkout-for-chinese/assets/js/wcc4c-f.min.js?ver=1.0.0"></script>
@@ -11413,6 +11626,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/we-the-people/assets/dist/js/we-the-people.js?ver=2.0"></script>
<!-- weart-category-posts-widget -->
<link rel="stylesheet" id="weart-featured-widget-style-css" href="http://wp.lab/wp-content/plugins/weart-category-posts-widget/css/style.css?ver=1.0.1" type="text/css" media="all">
<!-- weather-atlas -->
<link rel="stylesheet" id="weather-atlas-css" href="http://wp.lab/wp-content/plugins/weather-atlas/public/css/weather-atlas-public.min.css?ver=1.1.3" type="text/css" media="all">
<link rel="stylesheet" id="weather-icons-css" href="http://wp.lab/wp-content/plugins/weather-atlas/public/font/weather-icons/weather-icons.min.css?ver=1.1.3" type="text/css" media="all">
@@ -11563,6 +11780,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wgauge/public/js/wgauge-public.js?ver=1.0.0"></script>
<!-- wha-puzzle -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wha-puzzle/js/puzzle.js?ver=1.0.0"></script>
<!-- whats-new-genarator -->
<link rel="stylesheet" id="whats-new-style-css" href="http://wp.lab/wp-content/plugins/whats-new-genarator/whats-new.css?ver=2.0.1" type="text/css" media="all">
@@ -11740,6 +11961,11 @@
<link rel="stylesheet" id="wpl-wcs-responsive-css" href="http://wp.lab/wp-content/plugins/woo-category-slider-grid/public/assets/css/responsive.css?ver=1.0" type="text/css" media="all">
<!-- woo-checkout-quick-scroll -->
<link rel="stylesheet" id="woocommerce-checkout-quick-scroll-css" href="http://wp.lab/wp-content/plugins/woo-checkout-quick-scroll/public/css/woocommerce-checkout-quick-scroll-public.css?ver=1.0.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-checkout-quick-scroll/public/js/woocommerce-checkout-quick-scroll-public.js?ver=1.0.5"></script>
<!-- woo-correios-calculo-de-frete-na-pagina-do-produto -->
<link rel="stylesheet" id="woocommerce-correios-calculo-de-frete-na-pagina-do-produto-css" href="http://wp.lab/wp-content/plugins/woo-correios-calculo-de-frete-na-pagina-do-produto/public/css/woocommerce-correios-calculo-de-frete-na-pagina-do-produto-public.css?ver=1.3.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-correios-calculo-de-frete-na-pagina-do-produto/public/js/woocommerce-correios-calculo-de-frete-na-pagina-do-produto-public.js?ver=1.3.5"></script>
@@ -11837,6 +12063,16 @@
<link rel="stylesheet" id="gw-coming-soon-style-css" href="http://wp.lab/wp-content/plugins/woo-products-coming-soon/assets/css/style.css?ver=1.0" type="text/css" media="">
<!-- woo-quickview -->
<link rel="stylesheet" id="wqv-magnific-popup-css" href="http://wp.lab/wp-content/plugins/woo-quickview/public/assets/css/magnific-popup.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="wqv-perfect-scrollbar-css" href="http://wp.lab/wp-content/plugins/woo-quickview/public/assets/css/perfect-scrollbar.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="wqv-flaticon-css" href="http://wp.lab/wp-content/plugins/woo-quickview/public/assets/css/flaticon.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="wqv-style-css" href="http://wp.lab/wp-content/plugins/woo-quickview/public/assets/css/style.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="wqv-custom-css" href="http://wp.lab/wp-content/plugins/woo-quickview/public/assets/css/custom.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-quickview/public/assets/js/perfect-scrollbar.min.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-quickview/public/assets/js/magnific-popup.min.js?ver=1.0"></script>
<!-- woo-responsive-product-category -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-responsive-product-category/assets/metismenu/metisMenu.min.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-responsive-product-category/assets/woo-metismenu.js?ver=1.0"></script>
@@ -12053,6 +12289,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-2-stage-login/js/gl-ajax-actions.js?ver=1.0"></script>
<!-- wp-3d-thingviewer-lite -->
<link rel="stylesheet" id="wp-3d-thingviewer-lite-css" href="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/css/public.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r80/three.min.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r80/STLLoader.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r80/WebGL.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/NormalControls.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/Thingviewer.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/public.js?ver=1.0"></script>
<!-- wp-accordion-with-categories -->
<link rel="stylesheet" id="wpawcaccordioncss-css" href="http://wp.lab/wp-content/plugins/wp-accordion-with-categories/shortcode/css/jquery.accordion.css?ver=1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-accordion-with-categories/shortcode/js/jquery.accordion.js?ver=1.1"></script>
@@ -12260,6 +12506,8 @@
<!-- wp-codemirror-block -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-codemirror-block/vendor/codemirror/addon/mode/loadmode.js?ver=1.0.0"></script>
<link rel="stylesheet" id="codemirror-blocks-blocks-css" href="http://wp.lab/wp-content/plugins/wp-codemirror-block/assets/blocks/blocks.style.build.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-codemirror-block/assets/js/code-editor-init.js?ver=1.0.0"></script>
<!-- wp-collab-lite -->
@@ -13041,6 +13289,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-perfect-image-cropper-and-resizer/public/js/wp-perfect-image-cropper-resizer-public.js?ver=1.0.0"></script>
<!-- wp-performance -->
<link rel="preload" as="script" href="http://wp.lab/wp-content/plugins/wp-performance/assets/load/wpp.min.js?ver=1.1.0">
<!-- wp-player -->
<link rel="stylesheet" id="wp-player-css" href="http://wp.lab/wp-content/plugins/wp-player/assets/css/wp-player.css?ver=2.6.1" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-player/assets/js/libs/soundmanager/soundmanager2.js?ver=2.6.1"></script>
@@ -13049,6 +13301,7 @@
<!-- wp-politic -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-politic/assets/js/popper.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-politic/assets/js/jquery.magnific-popup.min.js?ver=1.0.0"></script>
<!-- wp-polls -->
@@ -13056,6 +13309,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-polls/polls-js.js?ver=2.73.8"></script>
<!-- wp-pop-up -->
<link rel="stylesheet" id="wp-popup-css-css" href="http://wp.lab/wp-content/plugins/wp-pop-up/assets/wp-popup.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-pop-up/assets/wp-popup.js?ver=1.0"></script>
<!-- wp-popup-lite -->
<link rel="stylesheet" id="wpp-frontend-css-css" href="http://wp.lab/wp-content/plugins/wp-popup-lite/css/wpb_popup.css?ver=1.0.3" type="text/css" media="all">
<link rel="stylesheet" id="wpp-frontend-responsive-css-css" href="http://wp.lab/wp-content/plugins/wp-popup-lite/css/wpb_responsive.css?ver=1.0.3" type="text/css" media="all">
@@ -13200,6 +13458,17 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-responsive-table/assets/frontend/js/wprt-script.js?ver=1.0.2"></script>
<!-- wp-responsive-testimonials-slider-and-widget -->
<link rel="stylesheet" id="wpoh-fontawesome-css-css" href="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/css/font-awesome.min.css?ver=1.5" type="text/css" media="all">
<link rel="stylesheet" id="wpoh-slick-css-css" href="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/css/slick.css?ver=1.5" type="text/css" media="all">
<link rel="stylesheet" id="wpoh-magnific-css-css" href="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/css/magnific-popup.css?ver=1.5" type="text/css" media="all">
<link rel="stylesheet" id="my-public-css-css" href="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/css/testimonials-style.css?ver=1.5" type="text/css" media="all">
<link rel="stylesheet" id="my-video-js-css-css" href="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/css/video-js.css?ver=1.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/js/video.js?ver=1.5"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/js/magnific-popup.min.js?ver=1.5"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-responsive-testimonials-slider-and-widget/assets/js/rtsw-public.js?ver=1.5"></script>
<!-- wp-rest-theme-mod-endpoint -->
<link rel="stylesheet" id="customizer-end-point-css" href="http://wp.lab/wp-content/plugins/wp-rest-theme-mod-endpoint/public/css/customizer-end-point-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-rest-theme-mod-endpoint/public/js/customizer-end-point-public.js?ver=1.0.0"></script>
@@ -13228,6 +13497,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-rewords/public/js/wp-rewords-public.js?ver=1.0.0"></script>
<!-- wp-robots-warning -->
<link rel="stylesheet" id="a3-robots-warning-css" href="http://wp.lab/wp-content/plugins/wp-robots-warning/public/css/a3-robots-warning-public.css?ver=1.0.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-robots-warning/public/js/a3-robots-warning-public.js?ver=1.0.3"></script>
<!-- wp-roster -->
<link rel="stylesheet" id="custom-frontend-style-wp-roster-css" href="http://wp.lab/wp-content/plugins/wp-roster/inc/css/frontendstyle.css?ver=1.4" type="text/css" media="all">
<link rel="stylesheet" id="custom-frontend-print-style-wp-roster-css" href="http://wp.lab/wp-content/plugins/wp-roster/inc/css/print.css?ver=1.4" type="text/css" media="print">
@@ -13431,6 +13705,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-tab-anchors/wp-tab-anchors.js?ver=1.3.0"></script>
<!-- wp-tag-manager-event -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-tag-manager-event/js/wp-tag-manager-event.js?ver=1.0"></script>
<!-- wp-tax-price -->
<link rel="stylesheet" id="wp-tax-price-style-css" href="http://wp.lab/wp-content/plugins/wp-tax-price/css/wp-tax-price.min.css?ver=0.1.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-tax-price/js/wp-tax-price.min.js?ver=0.1.2"></script>
@@ -13605,6 +13883,11 @@
<link rel="stylesheet" id="wp-wikibox-css" href="http://wp.lab/wp-content/plugins/wp-wikibox/css/wikibox.css?ver=0.1.3" type="text/css" media="all">
<!-- wp-wishlist -->
<link rel="stylesheet" id="wp_wishlist_frontend_style-css" href="http://wp.lab/wp-content/plugins/wp-wishlist/assets/css/styles.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-wishlist/assets/js/scripts.min.js?ver=1.0.0"></script>
<!-- wp-yelp-review-slider -->
<link rel="stylesheet" id="wpyelp_w3-css" href="http://wp.lab/wp-content/plugins/wp-yelp-review-slider/public/css/wpyelp_w3.css?ver=2.8" type="text/css" media="all">
<link rel="stylesheet" id="unslider-css" href="http://wp.lab/wp-content/plugins/wp-yelp-review-slider/public/css/wprs_unslider.css?ver=2.8" type="text/css" media="all">
@@ -13710,6 +13993,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpcountdown/static/js/countdown.js?ver=1.2"></script>
<!-- wpdownload -->
<link rel="stylesheet" id="dwpl-data-css" href="http://wp.lab/wp-content/plugins/wpdownload/public/css/dwpl-data-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpdownload/public/js/dwpl-data-public.js?ver=1.0.0"></script>
<!-- wpdrift-io-worker -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpdrift-io-worker/public/js/wpdrift-worker-public.js?ver=1.0.0"></script>
@@ -13959,6 +14247,15 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xo-event-calendar/js/ajax.js?ver=1.1.6"></script>
<!-- xt-woo-quick-view-lite -->
<link rel="stylesheet" id="xt-woo-quick-view-lightslider-css" href="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/vendors/lightslider/css/lightslider.css?ver=1.2.5" type="text/css" media="all">
<link rel="stylesheet" id="wooqvicons-css" href="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/css/wooqvicons.css?ver=1.2.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/vendors/jquery.touch-min.js?ver=1.2.5"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/vendors/velocity-min.js?ver=1.2.5"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/vendors/lightslider/js/lightslider-min.js?ver=1.2.5"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/vendors/jquery.serializejson-min.js?ver=1.2.5"></script>
<!-- yaam-youtube-autoplay-and-mute -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yaam-youtube-autoplay-and-mute//js/yaam.js?ver=0.0.6"></script>

View File

@@ -0,0 +1,49 @@
# Copyright (C) 2018 WooCommerce Scheduled Products
# This file is distributed under the same license as the WooCommerce Scheduled Products package.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce Scheduled Products 1.0.0\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woo-scheduled-products\n"
"POT-Creation-Date: 2018-08-13 12:33+0300\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"X-Generator: Poedit 1.8.7.1\n"
#: includes/admin/class-woo-scheduled-products-admin.php:72
msgid "Schedule"
msgstr ""
#: includes/admin/class-woo-scheduled-products-admin.php:92
#: includes/admin/class-woo-scheduled-products-admin.php:138
msgid "Publish From"
msgstr ""
#: includes/admin/class-woo-scheduled-products-admin.php:101
#: includes/admin/class-woo-scheduled-products-admin.php:144
msgid "Publish To"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "WooCommerce Scheduled Products"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://markup.fi"
msgstr ""
#. Description of the plugin/theme
msgid "Schedule WooCommerce products."
msgstr ""
#. Author of the plugin/theme
msgid "Lauri Karisola / markup.fi"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://markup.fi"
msgstr ""

View File

@@ -0,0 +1,31 @@
# Copyright (C) 2019 Cassidy Mcdonald & Jack Considine
# This file is distributed under the same license as the Scrolling Overlays plugin.
msgid ""
msgstr ""
"Project-Id-Version: Scrolling Overlays 0.1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/koptional-video-overlay\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-01-06T02:49:23+01:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: koptional-video-overlay\n"
#. Plugin Name of the plugin
msgid "Scrolling Overlays"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/scrolling-overlays"
msgstr ""
#. Description of the plugin
msgid "Adds media overlays on scroll"
msgstr ""
#. Author of the plugin
msgid "Cassidy Mcdonald & Jack Considine"
msgstr ""

View File

@@ -0,0 +1,45 @@
{
"name": "sharing-plus",
"title": "MultiCommerce",
"version": "1.0.0",
"homepage": "https://themecentury.com/downloads/sharing-plus/",
"repository": {
"type": "git",
"url": "https://github.com/themecentury/sharing-plus.git"
},
"license": "GPL-3.0+",
"main": "Gruntfile.js",
"devDependencies": {
"autoprefixer": "^7.2.6",
"connect-livereload": "^0.6.0",
"grunt": "^1.0.1",
"grunt-browser-sync": "^2.2.0",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-cssmin": "^2.2.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "^3.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-fixmyjs": "^0.3.0",
"grunt-phpcbf": "^0.1.1",
"grunt-phpcs": "^0.4.0",
"grunt-postcss": "~0.9.0",
"grunt-rtlcss": "~2.0.1",
"grunt-sass": "^2.0.0",
"grunt-stylelint": "~0.9.0",
"grunt-wp-i18n": "^1.0.0"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.1.0"
},
"dependencies": {
"grunt-contrib-copy": "^1.0.0",
"grunt-css-url-replace": "^0.2.7",
"grunt-reload": "^0.2.0",
"node-bourbon": "^4.2.8",
"uglify": "^0.1.5"
}
}

View File

@@ -0,0 +1,74 @@
msgid ""
msgstr ""
"Project-Id-Version: SP Disable Site v1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2019-01-27 21:02:57+0000\n"
"Last-Translator: spoot <spoot@bk.ru>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: CSL v1.x\n"
"X-Poedit-Language: English\n"
"X-Poedit-Country: UNITED STATES\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-Bookmarks: \n"
"X-Poedit-SearchPath-0: .\n"
"X-Textdomain-Support: yes"
#. translators: plugin header field 'Name'
#: class-sp-disable-site.php:59
#: sp-disable-site.php:0
#@ spdp86
msgid "SP Disable Site"
msgstr "SP Disable Site"
#: class-sp-disable-site.php:71
#@ spdp86
msgid "Disable site"
msgstr "Disable site"
#: class-sp-disable-site.php:85
#@ spdp86
msgid "Title"
msgstr "Title"
#: class-sp-disable-site.php:97
#@ spdp86
msgid "Subtitle"
msgstr "Subtitle"
#. translators: plugin header field 'PluginURI'
#: sp-disable-site.php:0
#@ spdp86
msgid "http://web-cude.com/sp-disable-page/"
msgstr "http://web-cude.com/sp-disable-page/"
#. translators: plugin header field 'Description'
#: sp-disable-site.php:0
#@ spdp86
msgid "SP Disable Site is a WordPress plugin which can create disable page in your site."
msgstr "SP Disable Site is a WordPress plugin which can create disable page in your site."
#. translators: plugin header field 'Author'
#: sp-disable-site.php:0
#@ spdp86
msgid "spoot1986"
msgstr "spoot1986"
#. translators: plugin header field 'AuthorURI'
#: sp-disable-site.php:0
#@ spdp86
msgid "http://web-cude.com"
msgstr "http://web-cude.com"
#. translators: plugin header field 'Version'
#: sp-disable-site.php:0
#@ spdp86
msgid "1.0.0"
msgstr "1.0.0"

View File

@@ -0,0 +1,13 @@
{
"name": "my-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.13.0"
}
}

View File

@@ -0,0 +1,25 @@
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce Thank you page viewer by JEVNET 1.0\n"
"Report-Msgid-Bugs-To: info@jevnet.es\n"
"POT-Creation-Date: 2019-01-06 13:09+0100\n"
"PO-Revision-Date: 2019-01-06 18:59+0100\n"
"Language-Team: Sergi <sergi@jevnet.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 2.2\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Language: pt\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../jn-wc-thankyou-view.php:29
msgid "Thank you page:"
msgstr "Obrigado página:"
#: ../jn-wc-thankyou-view.php:30
msgid "View Thank you page"
msgstr "Visualizar página de agradecimento"

View File

@@ -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 ""

View File

@@ -0,0 +1,95 @@
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce Apply Coupon on Post Order-1.0.0\n"
"POT-Creation-Date: 2019-01-21 12:53+0530\n"
"PO-Revision-Date: 2019-01-21 12:54+0530\n"
"Last-Translator: \n"
"Language-Team: RedefiningTheWeb\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.6\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-wc-apply-coupon-on-post-order-admin.php:66
msgid "WC Apply Coupon on Post Order"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:89
msgid "WooCommerce Apply Coupon on Post Order Settings"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:96
msgid "Enable"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:98
msgid "Enable to activate plugin."
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:104
msgid "Select the orderstatus in which Coupon will apply on order"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:105
msgid ""
"Select Order status on which you want to allow customer to apply coupon on "
"order."
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:116
msgid "Maximum Allowed Days"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:118
msgid "Enter maximum allowed days that needed to apply coupon"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:124
msgid "Minimum Order Amount"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:126
msgid "Enter minimum order amount that needed to apply coupon"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:132
msgid "Maximum Coupons Count"
msgstr ""
#: admin/class-wc-apply-coupon-on-post-order-admin.php:134
msgid "Enter maximum allowed count of coupon that will apply"
msgstr ""
#: public/class-wc-apply-coupon-on-post-order-public.php:98
msgid "All applyed coupons list"
msgstr ""
#: public/class-wc-apply-coupon-on-post-order-public.php:102
msgid "Coupon Code"
msgstr ""
#: public/class-wc-apply-coupon-on-post-order-public.php:103
msgid "Amount"
msgstr ""
#: public/class-wc-apply-coupon-on-post-order-public.php:118
msgid " flat discount."
msgstr ""
#: public/class-wc-apply-coupon-on-post-order-public.php:145
msgid "Apply Coupon"
msgstr ""
#: public/class-wc-apply-coupon-on-post-order-public.php:148
msgid "Apply coupon"
msgstr ""
#: wc-apply-coupon-on-post-order.php:55
msgid "Settings"
msgstr ""

View File

@@ -0,0 +1,133 @@
# WC Hide Shipping Methods Except Pont
# Copyright (C) 2019 KezmuvesRaketa
# This file is distributed under the same license as the WC Hide Shipping Methods Except Pont package.
# Krizsán Csaba <csa3a07@gmail.com>, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: csa3a07@gmail.com\n"
"POT-Creation-Date: 2019-01-13 11:32+0100\n"
"PO-Revision-Date: 2019-01-13 15:08+0100\n"
"Last-Translator: Krizsán Csaba\n"
"Language-Team: Magyar\n"
"Language: hu_HU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: \n"
"X-Generator: Poedit 2.2\n"
#: kezmuvesraketa-hide-nonfree-shipping.php:45
msgid "Settings"
msgstr "Beállítások"
#: kezmuvesraketa-hide-nonfree-shipping.php:46
msgid "Donate"
msgstr "Támogatás"
#: kezmuvesraketa-hide-nonfree-shipping.php:63
msgid "Hide shipping methods"
msgstr "Szállítási módok elrejtése"
#: kezmuvesraketa-hide-nonfree-shipping.php:66
msgid "When \"Free Shipping\" is available during checkout"
msgstr "Amikor az \"Ingyenes szállítás\" elérhető a pénztárban"
#: kezmuvesraketa-hide-nonfree-shipping.php:71
msgid "Hide all other shipping methods and only show \"Free Shipping\""
msgstr ""
"Rejtsen el minden szállítási módot és csak az \"Ingyenes szállítás\"-t "
"mutassa"
#: kezmuvesraketa-hide-nonfree-shipping.php:72
msgid ""
"Hide all other shipping methods and only show \"Free Shipping\", \"Local "
"Pickup\" and \"Pont\""
msgstr ""
"Rejtsen el minden szállítási módot és csak az \"Ingyenes szállítás\", "
"\"Helyi átvétel\" és \"Pont\" módokat mutassa"
#. Description of the plugin/theme
msgid ""
"This plugin automatically hides all other shipping methods when \"Free "
"shipping\" is available during checkout. It also includes an option to keep "
"\"local pickup\" and \"pont\" (by Szathmari) available, alongside \"frees "
"shipping\""
msgstr ""
"Ez a bővítmény elrejt minden szállítási módot, amikor az \"Ingyenes szállítás"
"\" elérhető a pénztárban. Lehetőség van azonban a \"Helyi átvétel\" és a "
"\"Pont\" (Szathmári által készített) módok megjelenítésére az \"Ingyenes "
"szállítás\" mellett."
#. Plugin Name of the plugin/theme
msgid "WC Hide Shipping Methods Except Pont"
msgstr "WC Szállítási Módok Elrejtése Pontot Kivéve"
#. Plugin URI of the plugin/theme
msgid "https://profiles.wordpress.org/csa3a07"
msgstr "https://kezmuvesraketa.hu"
#. Found in changelog list item.
msgid "Initial release"
msgstr "Első verzió"
#. Found in faq paragraph.
msgid "A: Yes!"
msgstr "Igen!"
#. Found in faq paragraph.
msgid ""
"A: WC requires at least: 2.6\n"
"WC tested up to: 3.5.3"
msgstr ""
"A: Minimum WC vezió: 2.6\n"
"Tesztelt WC verzió: 3.5.3"
#. Found in faq header.
msgid "Q: Is this plugin compatible with new shipping zones?"
msgstr "Q: A bővítmény kompatibilis az új szállítási zónákkal?"
#. Found in faq header.
msgid "Q: What WooCommerce version is required?"
msgstr "Q: Milyen WooCommerce verzió szükséges hozzá?"
#. Found in installation list item.
msgid "Save and enjoy!"
msgstr "Mentsd el és örülj!"
#. Found in installation list item.
msgid "Select your option."
msgstr "Válaszd ki a kívánt beállítást."
#. Found in installation list item.
msgid "Navigate to <strong>WooCommerce &gt; Settings &gt; Shipping &gt; Shipping options</strong>."
msgstr "Menj a <strong>WooCommerce &gt; Beállítások &gt; Szállítás &gt; Szállítási opciók</strong> részre."
#. Found in installation list item.
msgid "Activate the plugin"
msgstr "Kapcsold be a bővítményt"
#. Found in installation list item.
msgid "Download the plugin &amp; install it to your <code>wp-content/plugins</code> folder (or use the Plugins menu through the WordPress Administration section)"
msgstr "Töltsd le a bővítményt és telepítsd a <code>wp-content/plugins</code> könyvtárba (vagy használd a Bővítmények Új hozzáadása menüpontot a WordPress Adminisztrációs felületén)"
#. Found in description paragraph.
msgid "This plugin automatically hides all other shipping methods when “free shipping” is available during checkout process. It also includes an option to keep “local pickup” and “pont” (by Szathmari) available alongside “free shipping”. Your donation is greatly appreciated."
msgstr "Ez a bővítmény elrejt minden szállítási módot, amikor az \"Ingyenes szállítás\" elérhető a pénztárban. Lehetőség van azonban a \"Helyi átvétel\" és a \"Pont\" (Szathmári által készített) módok megjelenítésére az \"Ingyenes szállítás\" mellett. Ha tetszett, kérlek támogasd a munkámat, hogy tovább fejlődhessek."
#. Screenshot description.
msgid "Checkout free shipping + local pickup"
msgstr "Pénztár ingyenes szállítás + csomagpont"
#. Screenshot description.
msgid "Checkout free shipping"
msgstr "Pénztár ingyenes szállítás"
#. Screenshot description.
msgid "Plugin settings"
msgstr "A bővítmény beállításai"
#. Short description.
msgid "This plugin automatically hides all other shipping methods when “free shipping” is available."
msgstr "Ez a bővítmény elrejt minden szállítási módot, amikor az \"Ingyenes szállítás\" elérhető a pénztárban."

View File

@@ -0,0 +1,559 @@
# Copyright (C) 2019 pluginever
# This file is distributed under the GPLv2+.
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce Serial Numbers 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/wc-serial-numbers\n"
"POT-Creation-Date: 2019-01-21 11:55: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 <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: includes/admin/class-settings.php:180
msgid "2"
msgstr ""
#: includes/admin/class-settings.php:100 includes/admin/class-settings.php:110
msgid "4"
msgstr ""
#: includes/admin/class-admin-menu.php:23
#: includes/admin/class-admin-menu.php:43
msgid "WC Serial Numbers"
msgstr ""
#: includes/admin/class-admin-menu.php:27
#: includes/admin/class-admin-menu.php:52
#: templates/add-serial-number-page.php:36
msgid "Add Serial Number"
msgstr ""
#: includes/admin/class-admin-menu.php:31
#: includes/admin/class-admin-menu.php:60
msgid "Generate Serial Number"
msgstr ""
#: includes/admin/class-admin-menu.php:67 templates/serial-numbers-page.php:45
#: wc-serial-numbers.php:281
msgid "Settings"
msgstr ""
#: includes/admin/class-admin.php:106
msgid "Serial Number Activated."
msgstr ""
#: includes/admin/class-admin.php:107
msgid "Serial Number Deactivated."
msgstr ""
#: includes/admin/class-admin.php:108
msgid "Are you sure to generate "
msgstr ""
#: includes/admin/class-admin.php:109
msgid " Keys generated successfully."
msgstr ""
#: includes/admin/class-admin.php:110
msgid "Please, enter a valid number."
msgstr ""
#: includes/admin/class-serial-list-table.php:23
#: includes/class-single-serial-list-table.php:23
#: includes/core-functions.php:757 templates/add-serial-number.php:100
#: templates/order-details-serial-number.php:5
#: templates/order-details-serial-number.php:12
msgid "Serial Number"
msgstr ""
#: includes/admin/class-serial-list-table.php:24
#: includes/admin/class-serial-list-table.php:104 includes/class-email.php:35
#: includes/class-email.php:40 includes/class-single-serial-list-table.php:24
#: includes/class-single-serial-list-table.php:66
#: includes/core-functions.php:105 templates/serial-numbers-page.php:41
msgid "Serial Numbers"
msgstr ""
#: includes/admin/class-serial-list-table.php:105 includes/class-email.php:39
#: templates/order-details-serial-number.php:11
msgid "Product"
msgstr ""
#: includes/admin/class-serial-list-table.php:106
#: includes/class-single-serial-list-table.php:67
msgid "Variation"
msgstr ""
#: includes/admin/class-serial-list-table.php:107
#: includes/class-single-serial-list-table.php:68
msgid "Used/ Deliver Times"
msgstr ""
#: includes/admin/class-serial-list-table.php:108
#: includes/class-single-serial-list-table.php:69
msgid "Max. Instance"
msgstr ""
#: includes/admin/class-serial-list-table.php:109
msgid "Purchaser"
msgstr ""
#: includes/admin/class-serial-list-table.php:110
msgid "Order"
msgstr ""
#: includes/admin/class-serial-list-table.php:111
msgid "Purchased On"
msgstr ""
#: includes/admin/class-serial-list-table.php:112
#: includes/admin/class-settings.php:147
#: includes/class-single-serial-list-table.php:70
#: templates/add-serial-number.php:170
msgid "Validity"
msgstr ""
#: includes/admin/class-serial-list-table.php:203
#: includes/class-single-serial-list-table.php:119
#: templates/add-serial-number.php:70
msgid "Main Product"
msgstr ""
#: includes/admin/class-serial-list-table.php:254
#: includes/admin/class-serial-list-table.php:286
#: includes/class-single-serial-list-table.php:184
msgid "Delete"
msgstr ""
#: includes/admin/class-serial-list-table.php:279
#: includes/class-single-serial-list-table.php:178
msgid "Edit"
msgstr ""
#: includes/admin/class-settings-api.php:367
msgid "Choose File"
msgstr ""
#: includes/admin/class-settings.php:35
msgid "General Settings"
msgstr ""
#: includes/admin/class-settings.php:40
msgid "Notifications"
msgstr ""
#: includes/admin/class-settings.php:44
msgid "Delivery Settings"
msgstr ""
#: includes/admin/class-settings.php:65
msgid "Numbers of rows per page"
msgstr ""
#: includes/admin/class-settings.php:66
msgid "Display the serial numbers in the serial table list"
msgstr ""
#: includes/admin/class-settings.php:75
msgid "Allow to checkout, Even there is no serial number"
msgstr ""
#: includes/admin/class-settings.php:76
msgid ""
"Allow Customers to checkout, Even there is no serial number for a serial "
"activated product"
msgstr ""
#: includes/admin/class-settings.php:89
msgid "Prefix"
msgstr ""
#: includes/admin/class-settings.php:90
msgid "sl-"
msgstr ""
#: includes/admin/class-settings.php:91
msgid "Prefix to added before the serial number."
msgstr ""
#: includes/admin/class-settings.php:99
msgid "Chunks Number"
msgstr ""
#: includes/admin/class-settings.php:101
msgid "The number of chunks for the serial number."
msgstr ""
#: includes/admin/class-settings.php:109
msgid "Chunks Length"
msgstr ""
#: includes/admin/class-settings.php:111
msgid "The number of chunks length for the serial number."
msgstr ""
#: includes/admin/class-settings.php:119
msgid "Suffix"
msgstr ""
#: includes/admin/class-settings.php:120
msgid "-suffix"
msgstr ""
#: includes/admin/class-settings.php:121
msgid "Suffix to added after the serial number."
msgstr ""
#: includes/admin/class-settings.php:129 templates/add-serial-number.php:146
msgid "Max. Deliver Times"
msgstr ""
#: includes/admin/class-settings.php:130
msgid "The maximum number, the serial number can be delivered.."
msgstr ""
#: includes/admin/class-settings.php:138
msgid "Instance Number"
msgstr ""
#: includes/admin/class-settings.php:139
msgid "Maximum instance for the serial number."
msgstr ""
#: includes/admin/class-settings.php:148
msgid ""
"Validity days for the serial number. Keep it 0, if the serial number "
"doesn't expire"
msgstr ""
#: includes/admin/class-settings.php:157
msgid "Generate Number"
msgstr ""
#: includes/admin/class-settings.php:158
msgid "The default generate number for generating serial number automatically."
msgstr ""
#: includes/admin/class-settings.php:170
msgid "Admin bar notification"
msgstr ""
#: includes/admin/class-settings.php:171
msgid ""
"Show addmin bar notification, if there is not enough serial number for any "
"products"
msgstr ""
#: includes/admin/class-settings.php:179
msgid "Show notification when serial number under"
msgstr ""
#: includes/admin/class-settings.php:181
msgid ""
"Show notifications in the admin panel when, Number of available serial "
"numbers for licensable products is under the given number"
msgstr ""
#: includes/admin/class-settings.php:189
msgid "Email Notifications"
msgstr ""
#: includes/admin/class-settings.php:195
msgid "Send Email"
msgstr ""
#: includes/admin/class-settings.php:196
msgid ""
"Also receive email notification, if there is not enough serial number for "
"any product"
msgstr ""
#: includes/admin/class-settings.php:205
msgid "Email Address"
msgstr ""
#: includes/admin/class-settings.php:207
msgid "The email address to be used for sending the email notification"
msgstr ""
#: includes/admin/class-settings.php:219
msgid "Send serial number on"
msgstr ""
#: includes/admin/class-settings.php:220
msgid "Choose order status, when the serial number to be send"
msgstr ""
#: includes/admin/class-settings.php:224
msgid "Pending Payment"
msgstr ""
#: includes/admin/class-settings.php:225
msgid "Processing"
msgstr ""
#: includes/admin/class-settings.php:226
msgid "On hold"
msgstr ""
#: includes/admin/class-settings.php:227
msgid "Completed"
msgstr ""
#: includes/admin/class-settings.php:233
msgid "Revoke serial number on"
msgstr ""
#: includes/admin/class-settings.php:234
msgid ""
"Choose order status, when the serial number to be removed from the order "
"details"
msgstr ""
#: includes/admin/class-settings.php:238
msgid "Cancelled"
msgstr ""
#: includes/admin/class-settings.php:239
msgid "Refunded"
msgstr ""
#: includes/admin/class-settings.php:240
msgid "Failed"
msgstr ""
#: includes/admin/class-settings.php:260
msgid "WC Serial Numbers Settings"
msgstr ""
#: includes/class-ajax.php:76
msgid "Please enter a valid serial number"
msgstr ""
#: includes/class-form-handler.php:28
msgid "You are not allowed to use this"
msgstr ""
#: includes/class-form-handler.php:52 includes/core-functions.php:81
msgid "The Serial Number is empty. Please enter a serial number and try again"
msgstr ""
#: includes/class-form-handler.php:59 includes/core-functions.php:84
msgid "The product is empty. Please select a product and try again"
msgstr ""
#: includes/class-order-process.php:133
msgid ""
"Sorry, There is not enough Serial Number available for %s, Please remove "
"this item or lower the quantity,\n"
"\t\t\t\t\t\t\t\t\t\t\t\tFor now we have %d Serial Number for this product. "
"<br>"
msgstr ""
#: includes/core-functions.php:335
msgid "Filter:"
msgstr ""
#: includes/core-functions.php:344 templates/add-serial-number.php:24
msgid "Choose a product"
msgstr ""
#: includes/core-functions.php:372
msgid ""
"1. Enter a part of the serial number in the serial number box, don't need "
"the whole number."
msgstr ""
#: includes/core-functions.php:375
msgid "2. Choose a product for filtering only the product."
msgstr ""
#: includes/core-functions.php:383
msgid "Clear filter"
msgstr ""
#: includes/core-functions.php:421
msgid "Serial Number for for Order #"
msgstr ""
#: includes/core-functions.php:425
msgid "Serial Number for for Order #"
msgstr ""
#: includes/core-functions.php:702
msgid "Please add serial numbers for %s , %d Serial number left"
msgstr ""
#: includes/core-functions.php:761 templates/order-details-serial-number.php:48
msgid "Can be used: %d times"
msgstr ""
#: includes/core-functions.php:775 templates/order-details-serial-number.php:63
msgid "Validity: %d (Days)"
msgstr ""
#: includes/core-functions.php:777 templates/order-details-serial-number.php:65
msgid "Validity: until %s"
msgstr ""
#: includes/core-functions.php:814 includes/core-functions.php:822
msgid "Expired"
msgstr ""
#: templates/add-serial-number-page.php:9
#: templates/add-serial-number-page.php:35
msgid "Add New Serial Number"
msgstr ""
#: templates/add-serial-number-page.php:22
msgid "Edit Serial Number"
msgstr ""
#: templates/add-serial-number-page.php:23
msgid "Save changes"
msgstr ""
#: templates/add-serial-number-page.php:53
msgid "Add serial key manually"
msgstr ""
#: templates/add-serial-number-page.php:56
msgid "Generate serial key Automatically"
msgstr ""
#: templates/add-serial-number-page.php:62
msgid "Please Upgrade to PRO, for generating serial numbers Automatically."
msgstr ""
#: templates/add-serial-number.php:20
msgid "Choose Product"
msgstr ""
#: templates/add-serial-number.php:35
msgid "( Upgrade to PRO )"
msgstr ""
#: templates/add-serial-number.php:54
msgid "Upgrade to PRO for adding serial numbers for variable products."
msgstr ""
#: templates/add-serial-number.php:65
msgid "Product Variation"
msgstr ""
#: templates/add-serial-number.php:104
msgid "You can enter multiline text."
msgstr ""
#: templates/add-serial-number.php:106
msgid "Example:"
msgstr ""
#: templates/add-serial-number.php:118
msgid "Image License"
msgstr ""
#: templates/add-serial-number.php:121
msgid "Upload"
msgstr ""
#: templates/add-serial-number.php:126
msgid "Upgrade to PRO for, using image as License"
msgstr ""
#: templates/add-serial-number.php:132
msgid "Upload a image for using image as License"
msgstr ""
#: templates/add-serial-number.php:140
msgid "Remove"
msgstr ""
#: templates/add-serial-number.php:151
msgid "The maximum number, the serial number can be delivered."
msgstr ""
#: templates/add-serial-number.php:158
msgid "Maximum Instance"
msgstr ""
#: templates/add-serial-number.php:163
msgid ""
"The maximum number of the implementation for the verification of the "
"tracking api. Ignore, If your product doesn't need tracking"
msgstr ""
#: templates/add-serial-number.php:174
msgid "Days"
msgstr ""
#: templates/add-serial-number.php:176
msgid "Date"
msgstr ""
#: templates/add-serial-number.php:182
msgid "Check Days for validity type of Days numbers"
msgstr ""
#: templates/add-serial-number.php:184
msgid "Check Date for validity type of Date"
msgstr ""
#: templates/generate-serial-number.php:7
msgid "Please, Upgrade to PRO for generating serial numbers Automatically"
msgstr ""
#: templates/product-tab-enable-serial-number.php:5
msgid "Enable Serial Number for this Product:"
msgstr ""
#: templates/serial-numbers-page.php:43
msgid "Add new serial number"
msgstr ""
#: templates/serial-numbers-page.php:50
msgid "Search"
msgstr ""
#: templates/single-serial-numbers.php:10
msgid "Available license number for this product:"
msgstr ""
#: wc-serial-numbers.php:49
msgid "Please, Activate WooCommerce first, to make workable WC Serial Numbers."
msgstr ""
#: wc-serial-numbers.php:224
msgid "Cloning is forbidden."
msgstr ""
#: wc-serial-numbers.php:233
msgid "Unserializing instances of this class is forbidden."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "WooCommerce Serial Numbers"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://www.pluginever.com/plugins/wocommerce-serial-numbers-pro/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"The best WordPress Plugin to sell license keys, redeem cards and other "
"secret numbers!"
msgstr ""
#. Author of the plugin/theme
msgid "pluginever"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://pluginever.com"
msgstr ""

View File

@@ -0,0 +1,842 @@
# Copyright (C) 2019 Woo sbp
# This file is distributed under the same license as the Woo sbp package.
msgid ""
msgstr ""
"Project-Id-Version: Woo sbp 0.9.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-sbp\n"
"POT-Creation-Date: 2019-02-06 03:05:25+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: includes/class-wc-admin-screen-sbp.php:42
msgid "Softbank Setting"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:73
msgid ""
"SoftBank Payment for WooCommerce is enabled and the <a href=\"%s\">force SSL "
"option</a> is disabled; your checkout is not secure! Please enable SSL and "
"ensure your server has a valid SSL certificate."
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:88
msgid "Basic Setting"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:94
msgid "Server IP address"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:101
msgid "Result destination URL"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:109
msgid "Production environment"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:115
#: includes/class-wc-admin-screen-sbp.php:342
msgid "Merchant ID"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:123
#: includes/class-wc-admin-screen-sbp.php:352
msgid "Service ID"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:131
msgid "Link Hash Code"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:139
#: includes/class-wc-admin-screen-sbp.php:362
#: includes/class-wc-admin-screen-sbp.php:372
msgid "Hash Code"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:147
#: includes/class-wc-admin-screen-sbp.php:382
msgid "3DES Encryption key"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:155
#: includes/class-wc-admin-screen-sbp.php:392
msgid "3DES Initialization key"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:163
#: includes/class-wc-admin-screen-sbp.php:402
msgid "Basic authentication ID"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:171
#: includes/class-wc-admin-screen-sbp.php:412
msgid "Basic authentication Password"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:180
msgid "Sandbox environment"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:186
#: includes/class-wc-admin-screen-sbp.php:423
msgid "Sandbox Merchant ID"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:194
#: includes/class-wc-admin-screen-sbp.php:433
msgid "Sandbox Service ID"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:202
msgid "Sandbox Link Hash Code"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:210
#: includes/class-wc-admin-screen-sbp.php:443
#: includes/class-wc-admin-screen-sbp.php:453
msgid "Sandbox Hash Code"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:218
#: includes/class-wc-admin-screen-sbp.php:463
msgid "Sandbox 3DES Encryption key"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:226
#: includes/class-wc-admin-screen-sbp.php:473
msgid "Sandbox 3DES Initialization key"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:234
#: includes/class-wc-admin-screen-sbp.php:483
msgid "Sandbox Basic authentication ID"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:242
#: includes/class-wc-admin-screen-sbp.php:493
msgid "Sandbox Basic authentication Password"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:251
msgid "SoftBank Payment Method"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:257
#: includes/class-wc-admin-screen-sbp.php:504
msgid "Credit Card"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:265
#: includes/class-wc-admin-screen-sbp.php:514
msgid "Convenience store"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:273
#: includes/class-wc-admin-screen-sbp.php:524
msgid "Carrier Payment"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:281
#: includes/class-wc-admin-screen-sbp.php:534
msgid "AliPay"
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:323
msgid ""
"Since it is different depending on the rental server, please contact the "
"server company if the test is not completed."
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:333
msgid "※In the case of PHP 7.1.0 or later."
msgstr ""
#: includes/class-wc-admin-screen-sbp.php:566
#: includes/wc4jp-framework/class-wc4jp-framework.php:306
msgid "Toggle panel"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:26
msgid "Proceed to Alipay Payment."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:31
msgid "Softbank Alipay Payment Gateway"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:32
msgid "Allows payments by Softbank Alipay Payment in Japan."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:36
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:57
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:36
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:36
msgid "Please set this payment at Control Panel! "
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:56
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:94
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:64
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:147
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:61
msgid "Enable/Disable"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:57
msgid "Enable Softbank Alipay Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:63
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:101
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:71
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:68
msgid "Title"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:65
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:103
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:73
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:70
msgid "This controls the title which the user sees during checkout."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:66
msgid "Alipay Payment (Softbank)"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:69
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:107
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:77
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:74
msgid "Description"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:71
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:77
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:109
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:115
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:79
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:85
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:76
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:82
msgid "This controls the description which the user sees during checkout."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:72
msgid "Pay with your Alipay Payment via Softbank."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:75
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:113
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:83
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:80
msgid "Order Button Text"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:78
msgid "Proceed to Softbank Alipay Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:81
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:86
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:119
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:124
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:89
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:94
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:86
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:91
msgid "Sandbox Mode"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:83
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:121
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:91
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:88
msgid "Enable Sandbox Mode"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:86
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:124
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:94
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:91
msgid "If you use %s, please check it."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:95
msgid "Softbank Alipay Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:194
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:195
msgid "This order cancelled via Alipay."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:198
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:199
msgid "This order has an error via Alipay."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:263
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:351
msgid "Canceled at payment site."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-ap.php:266
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:354
msgid "Error at payment site."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:26
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:116
msgid "Proceed to Softbank Credit Card"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:31
msgid "Softbank Credit Card Payment Gateway"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:32
msgid "Allows payments by Softbank Credit Card in Japan."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:50
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:178
msgid "1 time payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:51
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:179
msgid "Installment payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:52
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:180
msgid "Bonus One time"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:53
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:181
msgid "Revolving payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:95
msgid "Enable Softbank Credit Card Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:104
msgid "Credit Card (Softbank)"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:110
msgid "Pay with your credit card via Softbank."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:134
msgid "Set Credit Card"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:137
msgid "VISA & MASTER"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:143
msgid "AMEX & JCB"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:145
msgid "Please check them you are able to use Credit Card"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:150
msgid "DINNERS"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:161
msgid "Payment Action"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:164
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:176
msgid ""
"Choose whether you wish to capture funds immediately or authorize payment "
"only."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:168
msgid "Capture"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:169
msgid "Authorize"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:173
msgid "Payment Method"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:185
msgid "Number of payments"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:188
msgid ""
"Please select from here if you choose installment payment. (Multiple "
"selection possible)."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:191
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:192
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:193
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:194
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:195
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:196
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:197
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:198
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:199
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:262
msgid "times"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:209
msgid "Softbank Credit Card"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:249
msgid "Payment method : "
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:439
msgid "Succeeded registration of token."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:441
msgid "Failed registration of token."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:444
msgid "Failed to acquire permanent token."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:476
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:489
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:492
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:543
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:606
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:284
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:256
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:302
msgid "Error Code : %s, please check it."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:476
msgid "Failed sale request"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:489
msgid "Failed confirmation request."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:492
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:494
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:502
msgid "Failed settlement request."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:494
msgid "Tracking ID : %s, please check it."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:497
msgid "Error at payment and no tracking number."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:541
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:254
msgid "Success Sales requirement request."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:543
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:256
msgid "Failed Sales requirement request"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:545
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:258
msgid "Something Error happened at Sales requirement request."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:603
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:299
msgid "Success refund request."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:606
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:302
msgid "Failed refund request"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cc.php:608
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:304
msgid "Something Error happened at refund request."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:26
msgid "Proceed to Softbank Convenience Store Payment."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:31
msgid "Softbank Convenience Store Payment Gateway"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:32
msgid "Allows payments by Softbank Convenience Store in Japan."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:43
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:100
msgid "Seven Eleven"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:44
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:106
msgid "Lawson"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:45
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:112
msgid "Family Mart"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:46
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:118
msgid "Seicomart"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:47
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:124
msgid "Mini Stop"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:48
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:130
msgid "Daily Yamazaki"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:65
msgid "Enable Softbank Convenience Store Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:74
msgid "Convenience Store (Softbank)"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:80
msgid "Pay with your Convenience Store via Softbank."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:86
msgid "Proceed to Softbank Convenience Store Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:97
msgid "Set Convenience Store"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:132
msgid "Please check them you are able to use %s"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:132
msgid "Convenience Store"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:135
msgid "Set Payment limit date"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:137
msgid ""
"Purchase request processing can be set between the next day and 59 days. * "
"The setting content varies depending on the storage company."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:141
msgid "Explain Payment limit date"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:143
msgid "Explain Payment limite date in New order E-mail."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:144
msgid "The payment deadline is 14 days from completed the order."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:148
msgid "Use Welnet Service"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:160
msgid "Softbank Convenience Store Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:175
msgid "Please select Convenience Store where you want to pay"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:270
msgid "Awaiting Convenience store payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:284
msgid "Failed settlement request"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:326
msgid "Convenience store payment details"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:330
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:333
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:342
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:350
msgid "Payment form URL"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:332
msgid "Payment slip number"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:337
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:355
msgid "Customer Number"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:338
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:354
msgid "Authorization number"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:341
msgid "Receipt number (8 digits) - Confirmation number (9 digits)"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:344
msgid "Loppi reception number"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:348
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:362
msgid "Online payment number"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:357
msgid "Company code"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:358
msgid "Order Number"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-cs.php:364
msgid "Receipt number"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:26
msgid "Proceed to Softbank Carrier Payment."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:31
msgid "Softbank Carrier Payment Gateway"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:32
msgid "Allows payments by Softbank Carrier in Japan."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:43
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:97
msgid "docomo"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:44
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:103
msgid "Softbank B"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:45
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:109
msgid "Au"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:62
msgid "Enable Softbank Carrier Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:71
msgid "Carrier Payment (Softbank)"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:77
msgid "Pay with your Carrier Payment via Softbank."
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:83
msgid "Proceed to Softbank Carrier Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:94
msgid "Set Carrier Company"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:119
msgid "Softbank Mobile Carrier Payment"
msgstr ""
#: includes/gateways/sbp/class-wc-gateway-sbp-mb.php:134
msgid "Please select Carrier Company which you want to pay"
msgstr ""
#: includes/views/html-admin-info-screen.php:1
msgid "Infomation of Japanese Support"
msgstr ""
#: includes/views/html-admin-info-screen.php:11
msgid "This Plugin's framework is %s."
msgstr ""
#: includes/views/html-admin-screen.php:3
msgid "Setting"
msgstr ""
#: includes/views/html-admin-screen.php:3
msgid "Infomations"
msgstr ""
#: includes/views/html-admin-setting-screen.php:3
msgid "General Setting"
msgstr ""
#: includes/views/html-admin-setting-screen.php:7
msgid "Softbank for WooCommerce"
msgstr ""
#: includes/views/html-admin-setting-screen.php:14
msgid "Do you like this plugin?"
msgstr ""
#: includes/views/html-admin-setting-screen.php:15
msgid "Rate it 5"
msgstr ""
#: includes/views/html-admin-setting-screen.php:15
msgid "on WordPress.org"
msgstr ""
#: includes/views/html-admin-setting-screen.php:18
#: includes/wc4jp-framework/class-wc4jp-framework.php:282
msgid "Created by"
msgstr ""
#: includes/views/html-admin-setting-screen.php:19
#: includes/wc4jp-framework/class-wc4jp-framework.php:283
msgid "WooCommerce Doc in Japanese"
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:211
msgid "Please check it if you want to use %s."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:220
msgid "Please check it if you want to use the payment method of %s."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:229
msgid "Please input %s."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:238
msgid "Please select one from these as %s."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:247
msgid "Need support?"
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:248
msgid ""
"If you are having problems with this plugin, talk about them in the <a href="
"\"%s\" target=\"_blank\" title=\"Support forum\">Support forum</a>."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:249
msgid ""
"If you need professional support, please consider about <a href=\"%1$s\" "
"target=\"_blank\" title=\"Site Construction Support service\">Site "
"Construction Support service</a> or <a href=\"%2$s\" target=\"_blank\" title="
"\"Maintenance Support service\">Maintenance Support service</a>."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:258
msgid "Finished Latest Update, WordPress and WooCommerce?"
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:259
msgid ""
"One the security, latest update is the most important thing. If you need "
"site maintenance support, please consider about <a href=\"%s\" target="
"\"_blank\" title=\"Support forum\">Site Maintenance Support service</a>."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:269
msgid "Where is the study group of Woocommerce in Japan?"
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:270
msgid ""
"<a href=\"%s\" target=\"_blank\" title=\"Tokyo WooCommerce Meetup\">Tokyo "
"WooCommerce Meetup</a>."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:271
msgid ""
"<a href=\"%s\" target=\"_blank\" title=\"Kansai WooCommerce Meetup\">Kansai "
"WooCommerce Meetup</a>."
msgstr ""
#: includes/wc4jp-framework/class-wc4jp-framework.php:272
msgid "Join Us!"
msgstr ""
#: woo-sbp.php:120
msgid ""
"Softbank for WooCommerce is enabled but not effective. It requires "
"WooCommerce in order to work."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Woo sbp"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/woo-sbp/"
msgstr ""
#. Description of the plugin/theme
msgid "SoftBank Payment Gateways for WooCommerce"
msgstr ""
#. Author of the plugin/theme
msgid "Artisan Workshop"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://wc.artws.info/"
msgstr ""

View File

@@ -0,0 +1,95 @@
# Copyright (C) 2019 WooCommerce Subscription Extras
# This file is distributed under the same license as the WooCommerce Subscription Extras package.
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce Subscription Extras 1.0.3\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-subscription-"
"extras\n"
"POT-Creation-Date: 2019-01-24 19:11: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-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: includes/class-wsextra.php:24
msgid "Settings"
msgstr ""
#: includes/class-wsextra.php:33 includes/class-wsextra.php:34
msgid "Subscription Extras"
msgstr ""
#: includes/class-wsextra.php:131 includes/class-wsextra.php:238
msgid "Save settings"
msgstr ""
#: includes/class-wsextra.php:134 includes/class-wsextra.php:239
msgid "Reset all settings"
msgstr ""
#. #-#-#-#-# woo-subscription-extras.pot (WooCommerce Subscription Extras 1.0.3) #-#-#-#-#
#. Plugin Name of the plugin/theme
#: includes/class-wsextra.php:147
msgid "WooCommerce Subscription Extras"
msgstr ""
#: includes/class-wsextra.php:150
msgid "General"
msgstr ""
#: includes/class-wsextra.php:174
msgid "View demo"
msgstr ""
#: includes/class-wsextra.php:194
msgid "Add notice asking to change current subscriptions prices when change"
msgstr ""
#: includes/class-wsextra.php:205
msgid "WooCommerce Subscription Extras PRO version"
msgstr ""
#: includes/class-wsextra.php:208
msgid "Features included in PRO version"
msgstr ""
#: includes/class-wsextra.php:243
msgid ""
"If you liked this plugin, please help us <a href=\"%s\" target=\"_blank"
"\">giving a 5-star rate</a> on WordPress.org ;)"
msgstr ""
#: includes/class-wsextra.php:318
msgid "Looks like you have updated the Regular price from %s to %s."
msgstr ""
#: includes/class-wsextra.php:328
msgid "Looks like you have updated the Sale price from %s to %s."
msgstr ""
#: includes/class-wsextra.php:349
msgid ""
"<a href=\"%s\">Click here to update current %s subscriptions prices now.</a>"
msgstr ""
#: includes/class-wsextra.php:368
msgid "A total of %d subscriptions have been updated successfully!"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/woo-subscription-extras"
msgstr ""
#. Description of the plugin/theme
msgid "Extra features for WooCommerce Subscriptions Extension"
msgstr ""
#. Author of the plugin/theme
msgid "Moises Heberle"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://codecanyon.net/user/moiseh"
msgstr ""

View File

@@ -0,0 +1,34 @@
{
"name": "Woostify-Sites",
"slug": "woostify-sites",
"textdomain": "woostify-sites",
"repository": "https://github.com/richtabor/MerlinWP",
"version": "1.0.0",
"theme_uri": "https://woostify.com/",
"author": "Woostify",
"author_uri": "https://woostify.com/",
"author_shop": "Haintheme",
"license": "GPLv2",
"devDependencies": {
"browser-sync": "^2.23.6",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.1.0",
"gulp-cache": "^1.0.2",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^3.9.2",
"gulp-composer": "^0.4.5",
"gulp-copy": "^3.9.1",
"gulp-csscomb": "^3.0.8",
"gulp-filter": "^5.1.0",
"gulp-line-ending-corrector": "^1.0.2",
"gulp-notify": "^3.2.0",
"gulp-rename": "^1.2.2",
"gulp-replace-task": "^0.11.0",
"gulp-run-sequence": "^0.3.2",
"gulp-sass": "^3.1.0",
"gulp-sort": "^2.0.0",
"gulp-uglify": "^3.0.0",
"gulp-wp-pot": "^2.0.7",
"gulp-zip": "^4.1.0"
}
}

View File

@@ -0,0 +1,22 @@
{
"name": "wpaffiliatedisclosure",
"version": "1.1.3",
"scripts": {
"start": "cross-env webpack --watch",
"build": "cross-env NODE_ENV=production webpack"
},
"devDependencies": {
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.9",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"susy": "^2.2.12",
"webpack": "^3.10.0"
}
}

View File

@@ -0,0 +1,70 @@
# Copyright (C) 2019 Andy Fragen
# This file is distributed under the same license as the WP Debugging plugin.
msgid ""
msgstr ""
"Project-Id-Version: WP Debugging 2.4.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-debugging\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-02-06T20:13:27+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: wp-debugging\n"
#. Plugin Name of the plugin
#: src/Settings.php:71
#: src/Settings.php:72
#: src/Settings.php:297
msgid "WP Debugging"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/afragen/wp-debugging"
msgstr ""
#. Description of the plugin
msgid "A support/troubleshooting plugin for WordPress."
msgstr ""
#. Author of the plugin
msgid "Andy Fragen"
msgstr ""
#: src/Settings.php:197
msgid "Saved."
msgstr ""
#: src/Settings.php:216
msgid "Debugging Constants"
msgstr ""
#: src/Settings.php:229
msgid "Set WP_DEBUG to true."
msgstr ""
#: src/Settings.php:241
msgid "Set WP_DEBUG_DISPLAY to false, default is true."
msgstr ""
#: src/Settings.php:254
msgid "Set WP_DISABLE_FATAL_ERROR_HANDLER to true."
msgstr ""
#: src/Settings.php:266
msgid "The following constants are set with plugin activation and removed with plugin deactivation."
msgstr ""
#: src/Settings.php:268
msgid "Select the debugging constants."
msgstr ""
#: src/Settings.php:299
msgid "<strong>Please note:</strong> Your <code>wp-config.php</code> file must be writable by the filesystem. Any errors will result in a PHP Exception being thrown. Debug constants per <a href=\"https://codex.wordpress.org/Debugging_in_WordPress\">Debugging in WordPress</a>."
msgstr ""
#: src/Settings.php:356
msgid "Settings"
msgstr ""

View File

@@ -0,0 +1,43 @@
{
"name": "rox-wp-wishlist",
"version": "1.0.0",
"description": "Wordpress Wishlist",
"main": "echo \"Error: no test specified\" && exit 1",
"URL": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-js": "gulp compile:js",
"compile-css": "gulp compile:scss",
"build": "gulp build",
"watch": "gulp watch"
},
"keywords": [
"WordPress",
"WooCommerce",
"Search"
],
"author": "Kudratullah <mhamudul.hk@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"autoprefixer": "^9.1.5",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-babel": "^8.0.0",
"gulp-compass": "^2.1.0",
"gulp-eslint": "^5.0.0",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-image": "^4.3.0",
"gulp-minify-css": "^1.2.4",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.1",
"gulp-sass-lint": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1"
}
}

View File

@@ -0,0 +1,28 @@
[
{
"id": 20,
"name": "user",
"url": "",
"description": "",
"link": "http://wp.lab/wordpress-4.7/author/user/",
"slug": "user",
"avatar_urls": {
"24": "http://1.gravatar.com/avatar/473fe256a0c7b9e907b55b2f492f8686?s=24&d=mm&r=g",
"48": "http://1.gravatar.com/avatar/473fe256a0c7b9e907b55b2f492f8686?s=48&d=mm&r=g",
"96": "http://1.gravatar.com/avatar/473fe256a0c7b9e907b55b2f492f8686?s=96&d=mm&r=g"
},
"meta": [],
"_links": {
"self": [
{
"href": "http://wp.lab/wordpress-4.7/wp-json/wp/v2/users/20"
}
],
"collection": [
{
"href": "http://wp.lab/wordpress-4.7/wp-json/wp/v2/users"
}
]
}
}
]

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
<title>WordPress &rsaquo; Installation</title>
<link rel='stylesheet' id='buttons-css' href='https://ex.lo/wp-includes/css/buttons.min.css?ver=5.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='install-css' href='https://ex.lo/wp-admin/css/install.min.css?ver=5.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='https://ex.lo/wp-includes/css/dashicons.min.css?ver=5.0.3' type='text/css' media='all' />
</head>
<body class="wp-core-ui">
<p id="logo"><a href="https://wordpress.org/" tabindex="-1">WordPress</a></p>
<h1>Already Installed</h1><p>You appear to have already installed WordPress. To reinstall please clear your old database tables first.</p><p class="step"><a href="https://ex.lo/wp-login.php" class="button button-large">Log In</a></p></body></html>

View File

@@ -0,0 +1,68 @@
<!DOCTYPE html>
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" class="ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Log In WP Lab</title>
<link rel='dns-prefetch' href='//s.w.org' />
<link rel='stylesheet' id='dashicons-css' href='https://ex.lo/wp-includes/css/dashicons.min.css?ver=5.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='buttons-css' href='https://ex.lo/wp-includes/css/buttons.min.css?ver=5.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='forms-css' href='https://ex.lo/wp-admin/css/forms.min.css?ver=5.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='l10n-css' href='https://ex.lo/wp-admin/css/l10n.min.css?ver=5.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='login-css' href='https://ex.lo/wp-admin/css/login.min.css?ver=5.0.3' type='text/css' media='all' />
<meta name='robots' content='noindex,noarchive' />
<meta name='referrer' content='strict-origin-when-cross-origin' />
<meta name="viewport" content="width=device-width" />
</head>
<body class="login login-action-login wp-core-ui locale-en-us">
<div id="login">
<h1><a href="https://ex.lo/" title="WP Lab" tabindex="-1">WP Lab</a></h1>
<form name="loginform" id="loginform" action="https://ex.lo/wp-login.php" method="post">
<p>
<label for="user_login">Username or Email Address<br />
<input type="text" name="log" id="user_login" class="input" value="" size="20" /></label>
</p>
<p>
<label for="user_pass">Password<br />
<input type="password" name="pwd" id="user_pass" class="input" value="" size="20" /></label>
</p>
<p class="forgetmenot"><label for="rememberme"><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me</label></p>
<p class="submit">
<input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="Log In" />
<input type="hidden" name="redirect_to" value="https://ex.lo/wp-admin/" />
<input type="hidden" name="testcookie" value="1" />
</p>
</form>
<p id="nav">
<a href="https://ex.lo/wp-login.php?action=lostpassword">Lost your password?</a>
</p>
<script type="text/javascript">
function wp_attempt_focus(){
setTimeout( function(){ try{
d = document.getElementById('user_login');
d.focus();
d.select();
} catch(e){}
}, 200);
}
wp_attempt_focus();
if(typeof wpOnload=='function')wpOnload();
</script>
<p id="backtoblog"><a href="https://ex.lo/">&larr; Back to WP Lab</a></p>
</div>
<div class="clear"></div>
</body>
</html>

View File

@@ -3,28 +3,65 @@ require_relative 'wordpress/custom_directories'
shared_examples WPScan::Target::Platform::WordPress do
it_behaves_like 'WordPress::CustomDirectories'
let(:fixtures) { File.join(FIXTURES, 'target', 'platform', 'wordpress') }
let(:fixtures) { FIXTURES.join('target', 'platform', 'wordpress') }
describe '#wordpress?' do
let(:fixtures) { File.join(super(), 'detection') }
let(:fixtures) { super().join('detection') }
before do
stub_request(:get, target.url).to_return(body: File.read(File.join(fixtures, "#{body}.html")))
stub_request(:get, target.url).to_return(body: File.read(fixtures.join("#{homepage}.html")))
end
%w[default wp_includes only_scripts meta_generator comments mu_plugins].each do |file|
context "when a wordpress page (#{file}.html)" do
let(:body) { file }
context 'when pattern/s in the homepage' do
%w[default wp_includes only_scripts meta_generator comments mu_plugins].each do |file|
context "when a wordpress page (#{file}.html)" do
let(:homepage) { file }
its(:wordpress?) { should be true }
it 'returns true' do
expect(subject.wordpress?(:mixed)).to be true
end
end
end
end
%w[not_wp].each do |file|
context "when not a wordpress page (#{file}.html)" do
let(:body) { file }
context 'when no clues in the homepage' do
let(:homepage) { 'not_wp' }
its(:wordpress?) { should be false }
context 'when only passive detection mode' do
it 'returns false' do
expect(subject.wordpress?(:passive)).to be false
end
end
context 'when mixed or aggressive detection modes' do
context 'when wp-admin/install.php and wp-login.php not there' do
it 'returns false' do
%w[wp-admin/install.php wp-login.php].each do |path|
stub_request(:get, target.url(path)).to_return(status: 404)
end
expect(subject.wordpress?(:mixed)).to be false
end
end
context 'when wp-admin/install.php is matching a WP install' do
it 'returns true' do
stub_request(:get, target.url('wp-admin/install.php'))
.to_return(body: File.read(fixtures.join('wp-admin-install.php')))
expect(subject.wordpress?(:mixed)).to be true
end
end
context 'when wp-admin/install.php not there but wp-login.php is matching a WP install' do
it 'returns true' do
stub_request(:get, target.url('wp-admin/install.php')).to_return(status: 404)
stub_request(:get, target.url('wp-login.php'))
.to_return(body: File.read(fixtures.join('wp-login.php')))
expect(subject.wordpress?(:mixed)).to be true
end
end
end
end
end

View File

@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.8.0'
s.add_development_dependency 'rspec-its', '~> 1.2.0'
s.add_development_dependency 'rubocop', '~> 0.62.0'
s.add_development_dependency 'rubocop', '~> 0.64.0'
s.add_development_dependency 'simplecov', '~> 0.16.1'
s.add_development_dependency 'webmock', '~> 3.5.1'
end