Compare commits

...

24 Commits

Author SHA1 Message Date
erwanlr
f6af6e5880 Bumps version 2020-04-12 19:02:57 +02:00
erwanlr
57c6c2d471 Removes support for Ruby 2.4 as EOL 2020-04-12 18:21:23 +02:00
erwanlr
c362527903 Adds DFs 2020-04-11 13:46:37 +02:00
erwanlr
a7acbd0738 Adds DFs 2020-04-04 12:23:40 +02:00
Erwan
f67192ebce Updates help messages regarding plugins-*-detection - Ref #1472 2020-04-02 12:37:09 +02:00
Erwan
c44fde83e4 Merge pull request #1473 from wpscanteam/dependabot/bundler/rubocop-tw-0.81.0
Update rubocop requirement from ~> 0.80.0 to ~> 0.81.0
2020-04-02 09:33:07 +02:00
dependabot-preview[bot]
50119285ef Update rubocop requirement from ~> 0.80.0 to ~> 0.81.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/compare/v0.80.0...v0.81.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-04-02 05:29:02 +00:00
Erwan
6216916fed Updates ruby version 2020-04-01 09:55:54 +02:00
Erwan
2952380200 Fixes typo 2020-03-30 20:47:12 +02:00
erwanlr
fb42b82e0d Adds DFs 2020-03-28 13:07:39 +01:00
Erwan
6d381ab88d Display valid credentials identified with the [!] icon - Ref #1470 2020-03-23 09:59:24 +01:00
erwanlr
c5c1de32bc Adds DFs 2020-03-21 16:56:16 +01:00
erwanlr
8077ad9bcd Adds DF - Ref #1469 2020-03-19 20:48:41 +01:00
erwanlr
6f22ba350f Adds DFs 2020-03-14 11:33:08 +01:00
erwanlr
f23d0c0157 Bumps version 2020-03-13 16:58:35 +01:00
erwanlr
a9a38edf24 Remove cache action from build 2020-03-13 16:06:33 +01:00
erwanlr
a5534f1e49 Merge branch 'master' of github.com:wpscanteam/wpscan 2020-03-13 16:04:11 +01:00
erwanlr
1c6469f384 Updates deps 2020-03-13 16:03:59 +01:00
erwanlr
8cfdbc1196 Adds DF 2020-03-13 16:03:21 +01:00
Erwan
88737ca6ea Fixes error with reference when debug log identified 2020-03-13 08:12:35 +01:00
Erwan
45bebc60bd Fixes typo in Readme 2020-03-12 22:25:23 +01:00
Erwan
4f7dec4635 Fixes detection of Users via WP JSON when blog uses basic auth 2020-03-12 13:12:40 +01:00
erwanlr
98739cce5a Adds DF 2020-03-10 20:45:08 +01:00
erwanlr
0bfbfacc27 Fixes #1465 2020-03-10 20:31:42 +01:00
72 changed files with 18626 additions and 58 deletions

View File

@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
ruby: [2.4, 2.5, 2.6, 2.7]
ruby: [2.5, 2.6, 2.7]
steps:
- name: Checkout code
@@ -20,14 +20,6 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
- name: Restore GEM cache
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-${{ matrix.ruby }}-gem-${{ hashFiles('**/wpscan.gemspec') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ruby }}-gem-
- name: Install GEMs
run: |
gem install bundler

View File

@@ -1,6 +1,6 @@
require: rubocop-performance
AllCops:
TargetRubyVersion: 2.4
TargetRubyVersion: 2.5
Exclude:
- '*.gemspec'
- 'vendor/**/*'

View File

@@ -1 +1 @@
2.6.2
2.7.1

View File

@@ -130,7 +130,7 @@ cli_options:
api_token: YOUR_API_TOKEN
```
## Load APi Token From ENV
## Load API Token From ENV (since v3.7.10)
The API Token will be automatically loaded from the ENV variable `WPSCAN_API_TOKEN` if present. If the `--api-token` CLI option is also provided, the value from the CLI will be used.

View File

@@ -51,7 +51,7 @@ module WPScan
OptSmartList.new(['--plugins-list LIST', 'List of plugins to enumerate'], advanced: true),
OptChoice.new(
['--plugins-detection MODE',
'Use the supplied mode to enumerate Plugins, instead of the global (--detection-mode) mode.'],
'Use the supplied mode to enumerate Plugins.'],
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :passive
),
OptBoolean.new(
@@ -62,8 +62,7 @@ module WPScan
),
OptChoice.new(
['--plugins-version-detection MODE',
'Use the supplied mode to check plugins versions instead of the --detection-mode ' \
'or --plugins-detection modes.'],
'Use the supplied mode to check plugins\' versions.'],
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :mixed
),
OptInteger.new(

View File

@@ -16,7 +16,7 @@ module WPScan
end
def errored_response?(response)
response.code != 200 && response.body !~ /login_error/i
response.code != 200 && response.body !~ /Incorrect username or password/i
end
end
end

View File

@@ -68,11 +68,9 @@ module WPScan
extracted_versions = extracted_versions.select { |x| x =~ /[0-9]+/ }
sorted = extracted_versions.sort do |x, y|
begin
Gem::Version.new(x) <=> Gem::Version.new(y)
rescue StandardError
0
end
Gem::Version.new(x) <=> Gem::Version.new(y)
rescue StandardError
0
end
sorted.last

View File

@@ -21,7 +21,7 @@ module WPScan
loop do
current_page += 1
res = Typhoeus.get(api_url, params: { per_page: MAX_PER_PAGE, page: current_page })
res = Browser.get(api_url, params: { per_page: MAX_PER_PAGE, page: current_page })
total_pages ||= res.headers['X-WP-TotalPages'].to_i

View File

@@ -20,7 +20,7 @@ module WPScan
class DebugLog < InterestingFinding
# @ return [ Hash ]
def references
@references ||= { url: 'https://codex.wordpress.org/Debugging_in_WordPress' }
@references ||= { url: ['https://codex.wordpress.org/Debugging_in_WordPress'] }
end
end

View File

@@ -2,7 +2,7 @@
<% if @users.empty? -%>
<%= notice_icon %> No Valid Passwords Found.
<% else -%>
<%= notice_icon %> Valid Combinations Found:
<%= critical_icon %> Valid Combinations Found:
<% @users.each do |user| -%>
| Username: <%= user.username %>, Password: <%= user.password %>
<% end -%>

View File

@@ -139,24 +139,22 @@ module WPScan
updated = []
FILES.each do |filename|
begin
db_checksum = remote_file_checksum(filename)
db_checksum = remote_file_checksum(filename)
# Checking if the file needs to be updated
next if File.exist?(local_file_path(filename)) && db_checksum == local_file_checksum(filename)
# Checking if the file needs to be updated
next if File.exist?(local_file_path(filename)) && db_checksum == local_file_checksum(filename)
create_backup(filename)
dl_checksum = download(filename)
create_backup(filename)
dl_checksum = download(filename)
raise Error::ChecksumsMismatch, filename unless dl_checksum == db_checksum
raise Error::ChecksumsMismatch, filename unless dl_checksum == db_checksum
updated << filename
rescue StandardError => e
restore_backup(filename)
raise e
ensure
delete_backup(filename) if File.exist?(backup_file_path(filename))
end
updated << filename
rescue StandardError => e
restore_backup(filename)
raise e
ensure
delete_backup(filename) if File.exist?(backup_file_path(filename))
end
File.write(last_update_file, Time.now)

View File

@@ -17,7 +17,7 @@ module WPScan
end
# Needed to have inheritance of the @child_class_constants
# If inheritance is not needed, then the #child_class_constant can be used in the classe definition, ie
# If inheritance is not needed, then the #child_class_constant can be used in the class definition, ie
# child_class_constant :FILES, PATTERN: /aaa/i
# @return [ Hash ]
def self.child_class_constants

View File

@@ -21,13 +21,11 @@ module WPScan
parsers = ALLOWED_PARSERS.include?(self.class::PARSER) ? [self.class::PARSER] : ALLOWED_PARSERS
parsers.each do |parser|
begin
parsed = parser.respond_to?(:safe_load) ? parser.safe_load(body) : parser.load(body)
parsed = parser.respond_to?(:safe_load) ? parser.safe_load(body) : parser.load(body)
return parsed if parsed.is_a?(Hash) || parsed.is_a?(Array)
rescue StandardError
next
end
return parsed if parsed.is_a?(Hash) || parsed.is_a?(Array)
rescue StandardError
next
end
nil # Make sure nil is returned in case none of the parsers managed to parse the body correctly

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.7.10'
VERSION = '3.8.0'
end

View File

@@ -0,0 +1,49 @@
# frozen_string_literal: true
describe WPScan::Finders::Passwords::XMLRPC do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Model::XMLRPC.new(url) }
let(:url) { 'http://ex.lo/xmlrpc.php' }
RESPONSE_403_BODY = '<?xml version="1.0" encoding="UTF-8"?>
<methodResponse>
<fault>
<value>
<struct>
<member>
<name>faultCode</name>
<value><int>403</int></value>
</member>
<member>
<name>faultString</name>
<value><string>Incorrect username or password.</string></value>
</member>
</struct>
</value>
</fault>
</methodResponse>'
describe '#attack' do
context 'when no valid credentials' do
before do
stub_request(:post, url).to_return(status: status, body: RESPONSE_403_BODY)
finder.attack(users, %w[pwd])
end
let(:users) { %w[admin].map { |username| WPScan::Model::User.new(username) } }
context 'when status = 200' do
let(:status) { 200 }
its('progress_bar.log') { should be_empty }
end
context 'when status = 403' do
let(:status) { 403 }
its('progress_bar.log') { should be_empty }
end
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,54 @@
# Copyright (C) 2020 Mainul Hassan Main
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: Advanced WP Table 1.0.1\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/advanced-wp-table\n"
"POT-Creation-Date: 2020-03-15 09:43:34+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"X-Generator: grunt-wp-i18n 0.5.4\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"
"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-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
#. Plugin Name of the plugin/theme
msgid "Advanced WP Table"
msgstr ""
#: advanced-wp-table.php:254
msgid "Advanced WP Table plugin requires WordPress version 5.0 or greater."
msgstr ""
#: includes/settings.php:25 includes/settings.php:26
msgid "Tables"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/advanced-wp-table"
msgstr ""
#. Description of the plugin/theme
msgid "Create responsive tables using Gutenberg."
msgstr ""
#. Author of the plugin/theme
msgid "Mainul Hassan Main"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://mainulhassan.info"
msgstr ""

View File

@@ -0,0 +1,2 @@
February 20, 2020 Version 1.0
- Version 1.0 Initial Release

View File

@@ -0,0 +1,32 @@
{
"name": "bleumi/bleumi-pay-woocommerce",
"type": "wordpress-plugin",
"description": "Enable your WooCommerce store to accept cryptocurrency payments with Bleumi Pay.",
"version": "1.0.2",
"keywords": [
"bleumipay",
"woocommerce",
"payment",
"payment-gateway",
"payment-processing",
"crypto-payments",
"accept-crypto-payments",
"ethereum",
"eth",
"erc20-tokens",
"algorand"
],
"homepage": "https://bleumi.pay.com",
"license": "MIT",
"authors": [
{
"name": "Bleumi Pay",
"email": "support@bleumi.com",
"homepage": "https://bleumi.pay.com",
"role": "Developer"
}
],
"require": {
"bleumi/bleumi-pay-sdk-php":"^1.0.21"
}
}

View File

@@ -0,0 +1,7 @@
# Change Log
## [1.0.0] - 2020-04-02
### Added
- Everything is new. This is version 1.0!

View File

@@ -0,0 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.0] - 04-04-2020
### Added
- @wordpress/scripts and @wordpress/creat-block to scaffold plugin and webpack
- custom webpack file to utilize postcss, & css modules
- custom postcss.config file
- custom .eslintrc file that extends wordpress for editor to use as formatter
- Tailwindcss for the css
- Axios for api key testing within gutenberg
- CSS modules to keep css in scope
- React to build the field editing & front-end components
- Transients to cache the fetched data for 1 minute at a time or if attibributes have changed

View File

@@ -0,0 +1,31 @@
{
"name": "blocks-for-eventbrite",
"version": "1.0.0",
"description": "WordPress Gutenberg blocks that display eventbrite events",
"author": "Jon Waldstein",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^4.0.0",
"@wordpress/scripts": "^7.1.3",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"style-loader": "^1.1.3"
},
"dependencies": {
"@tippyjs/react": "^4.0.0-alpha.4",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"tailwindcss": "^1.2.0"
}
}

View File

@@ -0,0 +1,31 @@
# Copyright (C) 2020 Chris J. Zähller / Messenger Web Design
# This file is distributed under the same license as the Conditionally Load CF7 plugin.
msgid ""
msgstr ""
"Project-Id-Version: Conditionally Load CF7 1.0.5\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/conditionally-load-cf7\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-25T20:01:04+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: cf7-conditional\n"
#. Plugin Name of the plugin
msgid "Conditionally Load CF7"
msgstr ""
#. Description of the plugin
msgid "In its default settings, Contact Form 7 loads its JavaScript and CSS stylesheet on every page. This slows page loading and taxes server and client resources. Use this plugin to control which pages the scripts load on."
msgstr ""
#. Author of the plugin
msgid "Chris J. Zähller / Messenger Web Design"
msgstr ""
#. Author URI of the plugin
msgid "https://github.com/seezee"
msgstr ""

View File

@@ -0,0 +1,181 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: CF7 Constant Contact Fields Mapping 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-01 16:58+0530\n"
"PO-Revision-Date: 2012-11-19 10:21+0100\n"
"Last-Translator: remi\n"
"Language-Team: ReloadWeb <info@reloadweb.co.uk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e;_x;_n;esc_attr__;esc_attr_e;esc_html__;esc_html_e;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 2.3\n"
"X-Poedit-SearchPath-0: .\n"
#: cf7-constant-contact-fields-mapping.php:89
msgid "First Name"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:90
msgid "Last Name"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:91
msgid "Full Name (First and Last)"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:92
msgid "Email Address"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:93
msgid "Job Title"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:94
msgid "Company Name"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:95
msgid "Birthday Month"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:96
msgid "Birthday Day"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:97
msgid "Birthday Month & Day"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:98
msgid "Anniversary"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:99
msgid "Phone Number"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:100
msgid "Address Street"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:101
msgid "Address City"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:102
msgid "Address State"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:103
msgid "Address Postal Code"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:104
msgid "Address Country"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:137
msgid "Contact Form 7 Constant Contact Fields Mapping - requires Contact Form 7 plugin to be installed and activated."
msgstr ""
#: cf7-constant-contact-fields-mapping.php:153
#: cf7-constant-contact-fields-mapping.php:240
msgid "Constant Contact Fields Mapping"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:161
#, php-format
msgid "Step 1: Connect the Constant Contact API if you are not connected, please %s to connect the Constant Contact API follow instruction guide."
msgstr ""
#: cf7-constant-contact-fields-mapping.php:163
#: cf7-constant-contact-fields-mapping.php:261
msgid "click here"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:173
#, php-format
msgid "Step 1: You need to %s vesion of plugin, after buy you will receive confirmation email with plugin installation guide please flollow installation guide"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:175
#: cf7-constant-contact-fields-mapping.php:304
#: cf7-constant-contact-fields-mapping.php:341
msgid "Buy Pro"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:180
#, php-format
msgid "Step 2: Login to your constant contact account %s After adding custom fields in constant contact account."
msgstr ""
#: cf7-constant-contact-fields-mapping.php:183
msgid "https://knowledgebase.constantcontact.com/articles/KnowledgeBase/5328-add-and-manage-custom-fields?lang=en_US"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:186
msgid "Add, View, and Manage Custom Fields."
msgstr ""
#: cf7-constant-contact-fields-mapping.php:210
msgid "Select form fields"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:213
msgid "Select constant contact fields"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:259
#, php-format
msgid "This site is not connected to the Constant Contact API. Please %s to connect the Constant Contact API."
msgstr ""
#: cf7-constant-contact-fields-mapping.php:281
msgid "Fields Mapping"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:287
#, php-format
msgid "(Please follow %s how to map fields or %s.)"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:289
msgid "this guide"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:292
msgid "contact us"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:302
#, php-format
msgid "( Map constant contact custom fields %s vesion of the plugin.)"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:312
msgid "Form Fields"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:314
msgid "Fields"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:326
msgid "Constant Contact Fields"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:328
msgid "Default Fields"
msgstr ""
#: cf7-constant-contact-fields-mapping.php:334
#: cf7-constant-contact-fields-mapping.php:340
msgid "Custom Fields"
msgstr ""

View File

@@ -0,0 +1,38 @@
# Copyright (c) 2020 Sébastien Dumont
# This file is distributed under the same license as the CoCart - Get Cart Enhanced package.
msgid ""
msgstr ""
"Project-Id-Version: CoCart - Get Cart Enhanced 1.2.0\n"
"Report-Msgid-Bugs-To: "
"https://github.com/co-cart/cocart-get-cart-enhanced/issues\n"
"POT-Creation-Date: 2020-03-16 18:38:04+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Sébastien Dumont <mailme@sebastiendumont.com>\n"
"Language: en_US\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Country: United States\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: cocart-get-cart-enhanced.php:83
msgid "In Stock"
msgstr ""
#: cocart-get-cart-enhanced.php:87
msgid "Out of Stock"
msgstr ""
#: cocart-get-cart-enhanced.php:91
msgid "Available on backorder"
msgstr ""

View File

@@ -1187,3 +1187,6 @@ s0.parentNode.insertBefore(s1,s0);
<!-- paypal-for-woocommerce -->
<!-- This site has installed PayPal for WooCommerce v2.1.12 - https://www.angelleye.com/product/woocommerce-paypal-plugin/ -->

View File

@@ -0,0 +1,726 @@
# Copyright (C) 2020 ilGhera
# This file is distributed under the same license as the CRM in Cloud for WooCommerce - Premium plugin.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: CRM in Cloud for WooCommerce - Premium 0.9.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crm-in-cloud-for-wc\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-04-03 08:25+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: Poedit 2.2.4\n"
"X-Domain: crm-in-cloud-for-wc\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-crmfwc-admin.php:84
msgid "It seems like you don't have permission to see this page"
msgstr ""
#: admin/class-crmfwc-admin.php:96
msgid "ATTENTION! It seems like Woocommerce is not installed."
msgstr ""
#: admin/class-crmfwc-admin.php:105
msgid "CRM in Cloud for WooCommerce - Premium"
msgstr ""
#: admin/class-crmfwc-admin.php:120
msgid "Premium Key"
msgstr ""
#: admin/class-crmfwc-admin.php:121
msgid "Add your Premium Key"
msgstr ""
#: admin/class-crmfwc-admin.php:122
msgid "Add your Premium Key and keep updated your copy of CRM in Cloud for WooCommerce."
msgstr ""
#: admin/class-crmfwc-admin.php:124 admin/crmfwc-wc-template.php:37
msgid "Save"
msgstr ""
#: admin/class-crmfwc-admin.php:130
msgid "Settings"
msgstr ""
#: admin/class-crmfwc-admin.php:131
msgid "Contacts"
msgstr ""
#: admin/class-crmfwc-admin.php:132
msgid "WooCommerce"
msgstr ""
#: admin/crmfwc-contacts-template.php:22
msgid "User roles"
msgstr ""
#: admin/crmfwc-contacts-template.php:40
msgid "Select the user role(s) to export to CRM in Cloud"
msgstr ""
#: admin/crmfwc-contacts-template.php:45
msgid "Export company"
msgstr ""
#: admin/crmfwc-contacts-template.php:48
msgid "Export the company if present in the user profile"
msgstr ""
#: admin/crmfwc-contacts-template.php:52 admin/crmfwc-wc-template.php:26
msgid "Export orders"
msgstr ""
#: admin/crmfwc-contacts-template.php:55
msgid "Export user orders as opportunities in CRM in Cloud"
msgstr ""
#: admin/crmfwc-contacts-template.php:61
msgid "Export to CRM in Cloud"
msgstr ""
#: admin/crmfwc-contacts-template.php:71
msgid "Delete contacts"
msgstr ""
#: admin/crmfwc-contacts-template.php:73
msgid "Delete all contacts on CRM in Cloud"
msgstr ""
#: admin/crmfwc-contacts-template.php:77
msgid "Delete company"
msgstr ""
#: admin/crmfwc-contacts-template.php:80
msgid "Delete the company linked to the contact in CRM in Cloud"
msgstr ""
#: admin/crmfwc-contacts-template.php:86
msgid "Delete from CRM in Cloud"
msgstr ""
#: admin/crmfwc-settings-template.php:21
msgid "Connect"
msgstr ""
#: admin/crmfwc-settings-template.php:23
msgid "Email"
msgstr ""
#: admin/crmfwc-settings-template.php:29
msgid "Password"
msgstr ""
#: admin/crmfwc-settings-template.php:30
msgid "Connect with your CRM in Cloud credentials"
msgstr ""
#: admin/crmfwc-settings-template.php:32
msgid "Connect to CRM in Cloud"
msgstr ""
#: admin/crmfwc-wc-template.php:29
msgid "Export new orders as opportunities in CRM in Cloud"
msgstr ""
#: crm-in-cloud-for-wc.php:25
msgid "WARNING! CRM in Cloud for WC requires WooCommerce to be activated."
msgstr ""
#: includes/class-crmfwc-contacts.php:474
#, php-format
msgid "%1$d contact(s) export process has begun"
msgstr ""
#: includes/class-crmfwc-contacts.php:481
msgid "No contacts to export"
msgstr ""
#: includes/class-crmfwc-contacts.php:591
#, php-format
msgid "%1$d users(s) delete process has begun"
msgstr ""
#: includes/class-crmfwc-contacts.php:600
msgid "ERROR! There are not users to delete"
msgstr ""
#: includes/class-crmfwc-settings.php:160
msgid "Disconnect from CRM in Cloud"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ActionFactory.php:161
msgid "Invalid action - must be a recurring action."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:60
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:75
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:76
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:89
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:19
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:30
msgid "Scheduled Actions"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:127
msgid "About"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:129
#, php-format
msgid "About Action Scheduler %s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:131
msgid "Action Scheduler is a scalable, traceable job queue for background processing large sets of actions. Action Scheduler works by triggering an action hook to run at some time in the future. Scheduled actions can also be scheduled to run on a recurring schedule."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:139
msgid "Columns"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:141
msgid "Scheduled Action Columns"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:143
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:96
msgid "Hook"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:143
msgid "Name of the action hook that will be triggered."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:144
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:97
msgid "Status"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:144
msgid "Action statuses are Pending, Complete, Canceled, Failed"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:145
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:98
msgid "Arguments"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:145
msgid "Optional data array passed to the action hook."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:146
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:99
msgid "Group"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:146
msgid "Optional action group."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:147
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:100
msgid "Recurrence"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:147
msgid "The action's schedule frequency."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:148
msgid "Scheduled"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:148
msgid "The date/time the action is/was scheduled to run."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:149
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:102
msgid "Log"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_AdminView.php:149
msgid "Activity log for the action."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_DataController.php:137
msgid "Attempting to reduce used memory..."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_InvalidActionException.php:21
#, php-format
msgid "Action [%1$s] has an invalid schedule: %2$s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_InvalidActionException.php:40
#, php-format
msgid "Action [%1$s] has invalid arguments. It cannot be JSON decoded to an array. $args = %2$s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:92
msgid "Delete"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:101
msgid "Scheduled Date"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:122
msgid "Claim ID"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:129
msgid "Run"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:130
msgid "Process the action now as if it were run as part of a queue"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:133
msgid "Cancel"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:134
msgid "Cancel the action now to avoid it being run in future"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:201
msgid "Now!"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:237
#, php-format
msgid "Every %s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:243
msgid "Non-repeating"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:341
msgid "It appears one or more database tables were missing. Attempting to re-create the missing table(s)."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:374
#, php-format
msgid "A new queue has begun processing. <a href=\"%s\">View actions in-progress &raquo;</a>"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:377
#, php-format
msgid "The next queue will begin processing in approximately %d seconds."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:398
#, php-format
msgid "Successfully executed action: %s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:402
#, php-format
msgid "Successfully canceled action: %s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:406
#, php-format
msgid "Successfully processed change for action: %s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:412
#, php-format
msgid "Could not process change for action: \"%1$s\" (ID: %2$d). Error: %3$s"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:458
#, php-format
msgid " (%s ago)"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:461
#, php-format
msgid " (%s)"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_ListTable.php:609
msgid "Search hook, args and claim ID"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_QueueRunner.php:193
msgid "Every minute"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php:103
#, php-format
msgid "This data will be deleted in %s."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php:108
#, php-format
msgid "Action Scheduler has migrated data to custom tables; however, orphaned log entries exist in the WordPress Comments table. %1$s <a href=\"%2$s\">Learn more &raquo;</a>"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:101
msgid "Action Scheduler"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:101
msgid "This section shows scheduled action counts."
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:104
msgid "Version:"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:108
msgid "Action Status"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:110
msgid "Count"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:111
msgid "Oldest Scheduled Date"
msgstr ""
#: libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:112
msgid "Newest Scheduled Date"
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:33
#: libraries/action-scheduler/classes/WP_CLI/ProgressBar.php:47
#, php-format
msgid "The %s class can only be run within WP CLI."
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:59
msgid "There are too many concurrent batches, but the run is forced to continue."
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:61
msgid "There are too many concurrent batches."
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:113
msgid "The claim has been lost. Aborting current batch."
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:138
#, php-format
msgid "Started processing action %s"
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:155
#, php-format
msgid "Completed processing action %1$s with hook: %2$s"
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:170
#, php-format
msgid "Error processing action %1$s: %2$s"
msgstr ""
#: libraries/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:136
#, php-format
msgid "There was an error running the action scheduler: %s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:467
msgid "Filter"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:567
#, php-format
msgid "Search results for \"%s\""
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:672
msgid "Search"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:72
msgid "action created"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:76
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php:134
msgid "action canceled"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:82
#, php-format
msgid "action started via %s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:84
msgid "action started"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:92
#, php-format
msgid "action complete via %s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:94
msgid "action complete"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:102
#, php-format
msgid "action failed via %1$s: %2$s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:105
#, php-format
msgid "action failed: %s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:112
#, php-format
msgid "action timed out after %s seconds"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:118
#, php-format
msgid "unexpected shutdown: PHP Fatal error %1$s in %2$s on line %3$s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:123
msgid "action reset"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:129
#, php-format
msgid "action ignored via %s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:131
msgid "action ignored"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:146
#, php-format
msgid "There was a failure fetching this action: %s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:148
msgid "There was a failure fetching this action"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:156
#, php-format
msgid "There was a failure scheduling the next instance of this action: %s"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Store.php:227
#, php-format
msgid "ActionScheduler_Action::$args too long. To ensure the args column can be indexed, action args should not be more than %d characters when encoded as JSON."
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Store.php:301
msgid "Complete"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Store.php:302
msgid "Pending"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Store.php:303
msgid "In-progress"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Store.php:304
msgid "Failed"
msgstr ""
#: libraries/action-scheduler/classes/abstracts/ActionScheduler_Store.php:305
msgid "Canceled"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:67
msgid "Database error."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:75
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:25
#: libraries/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php:44
#, php-format
msgid "Error saving action: %s"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:268
msgid "Invalid value for select or count parameter. Cannot query actions."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:458
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:548
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:580
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:777
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:819
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:457
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:468
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:495
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:773
#, php-format
msgid "Unidentified action %s"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:661
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:627
#, php-format
msgid "The group \"%s\" does not exist."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:675
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:607
msgid "Unable to claim actions. Database error."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:838
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:740
msgid "Invalid action ID. No status found."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:840
msgid "Unknown status found for action."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:62
msgid "Unable to save action."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:283
msgid "Invalid schedule. Cannot save action."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:689
#, php-format
msgid "Unable to unlock claim %s. Database error."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:704
#, php-format
msgid "Unable to unlock claim on action %s. Database error."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:716
#, php-format
msgid "Unable to mark failure on action %s. Database error."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:840
#, php-format
msgid "%s Support for strings longer than this will be removed in a future version."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:20
msgid "Scheduled actions are hooks triggered on a cetain date and time."
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:31
msgid "Scheduled Action"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:33
msgid "Add"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:34
msgid "Add New Scheduled Action"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:35
msgid "Edit"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:36
msgid "Edit Scheduled Action"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:37
msgid "New Scheduled Action"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:38
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:39
msgid "View Action"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:40
msgid "Search Scheduled Actions"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:41
msgid "No actions found"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:42
msgid "No actions found in trash"
msgstr ""
#: libraries/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php:14
msgid "Action Group"
msgstr ""
#: libraries/action-scheduler/classes/migration/ActionMigrator.php:95
#, php-format
msgid "Unable to remove source migrated action %s"
msgstr ""
#: libraries/action-scheduler/classes/migration/Config.php:52
msgid "Source store must be configured before running a migration"
msgstr ""
#: libraries/action-scheduler/classes/migration/Config.php:74
msgid "Source logger must be configured before running a migration"
msgstr ""
#: libraries/action-scheduler/classes/migration/Config.php:96
msgid "Destination store must be configured before running a migration"
msgstr ""
#: libraries/action-scheduler/classes/migration/Config.php:118
msgid "Destination logger must be configured before running a migration"
msgstr ""
#: libraries/action-scheduler/classes/migration/Controller.php:142
msgid "Action Scheduler migration in progress. The list of scheduled actions may be incomplete."
msgstr ""
#: libraries/action-scheduler/classes/migration/Runner.php:107
#, php-format
msgid "Migrated action with ID %1$d in %2$s to ID %3$d in %4$s"
msgstr ""
#: plugin-update-checker/Puc/v4p7/Plugin/Ui.php:54
msgid "View details"
msgstr ""
#: plugin-update-checker/Puc/v4p7/Plugin/Ui.php:77
#, php-format
msgid "More information about %s"
msgstr ""
#: plugin-update-checker/Puc/v4p7/Plugin/Ui.php:128
msgid "Check for updates"
msgstr ""
#: plugin-update-checker/Puc/v4p7/Plugin/Ui.php:223
#, php-format
msgid "Unknown update checker status \"%s\""
msgstr ""
#: plugin-update-checker/Puc/v4p7/Vcs/PluginUpdateChecker.php:98
msgid "There is no changelog available."
msgstr ""

View File

@@ -0,0 +1,83 @@
msgid ""
msgstr ""
"Project-Id-Version: CTC Countdown Timer Cookies 1.0.0\n"
"POT-Creation-Date: 2020-03-18 16:32+0000\n"
"PO-Revision-Date: 2020-03-18 16:33+0000\n"
"Last-Translator: \n"
"Language-Team: CTCTeam\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.3\n"
"X-Poedit-Basepath: E:/XAMPP/htdocs/MacroExcel/httpdocs/wp-content/plugins/"
"ctc-countdown-timer-cookies\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-ctc-countdown-timer-cookies-admin.php:111
#: admin/class-ctc-countdown-timer-cookies-admin.php:112
#: admin/class-ctc-countdown-timer-cookies-admin.php:113
msgid "Ctc Countdown"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:114
msgid "Countdown List"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:115
msgid "View"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:116
msgid "Add new Countdown"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:117
msgid "Add Countdown"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:118
msgid "Edit Countdown"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:119
msgid "Update Countdown"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:120
msgid "Search Countdown"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:121
msgid "Not Countdown Found"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:122
msgid "Not found in Trash"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:153
msgid "Countdown Options"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:161
msgid "Countdown Shortcode"
msgstr ""
#: admin/class-ctc-countdown-timer-cookies-admin.php:196
msgid "<p>Copy this shortcode and paste it into your post,page...<p>"
msgstr ""
#: admin/partials/ctc-countdown-timer-cookies-admin-display.php:20
msgid "Days"
msgstr ""
#: admin/partials/ctc-countdown-timer-cookies-admin-display.php:27
msgid "Hours"
msgstr ""
#: admin/partials/ctc-countdown-timer-cookies-admin-display.php:33
msgid "Minutes"
msgstr ""

View File

@@ -0,0 +1,10 @@
{
"name": "wp-db-analyzer",
"version": "1.0",
"description": "WordPress Database Analyzer Plugin",
"author": "Joel Masci <masci.joel@gmail.com>",
"private": true,
"scripts": {},
"dependencies": {},
"devDependencies": {}
}

View File

@@ -0,0 +1,75 @@
# Copyright (C) 2020 Pratyush Deb
# This file is distributed under the same license as the Eazy Ad Unblocker plugin.
msgid ""
msgstr ""
"Project-Id-Version: Eazy Ad Unblocker 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/eazy-ad-"
"unblocker\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-01-31T10:36:35+01:00\n"
"PO-Revision-Date: 2020-01-31 15:27+0530\n"
"X-Generator: Poedit 2.2.4\n"
"X-Domain: eazy-ad-unblocker\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: de_DE\n"
#. Plugin Name of the plugin
msgid "Eazy Ad Unblocker"
msgstr "Eazy Ad Unblocker"
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://myplugins.net/"
msgstr "https://myplugins.net/"
#. Description of the plugin
msgid "Prevent ad blockers from blocking ads on your site."
msgstr "Prevent ad blockers from blocking ads on your site."
#. Author of the plugin
msgid "Pratyush Deb"
msgstr "Pratyush Deb"
#: index.php:130
msgid "Form not verified"
msgstr "Formular nicht verifiziert"
#: index.php:143
msgid "You must give a heading!"
msgstr "Sie müssen eine Überschrift geben!"
#: index.php:148
msgid "You must give a text!"
msgstr "Sie müssen einen Text geben!"
#: index.php:153
msgid "Opacity must be a number!"
msgstr "Deckkraft muss eine Zahl sein!"
#: index.php:165
msgid "Settings saved!"
msgstr "Einstellungen gespeichert!"
#: index.php:198
msgid "Eazy Ad Unblocker Settings"
msgstr "Eazy Ad Unblocker-Einstellungen"
#: index.php:213
msgid "Popup Title"
msgstr "Popup-Titel"
#: index.php:214
msgid "Popup Body"
msgstr "Popup-Körper"
#: index.php:215
msgid "Popup Opacity"
msgstr "Popup-Deckkraft"
#: index.php:227
msgid "Save"
msgstr "Speichern"

View File

@@ -0,0 +1,663 @@
# Copyright (C) 2020 Fibrika Workshop
# This file is distributed under the same license as the Entego N11 Entegrasyon plugin.
msgid ""
msgstr ""
"Project-Id-Version: Entego N11 Entegrasyon 1.0.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-24T06:10:50+00:00\n"
"PO-Revision-Date: 2020-03-24 09:32+0300\n"
"X-Generator: Poedit 2.3\n"
"X-Domain: entego-n11\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: tr\n"
#. Plugin Name of the plugin
msgid "Entego N11 Entegrasyon"
msgstr "Entego N11 Entegrasyon"
#. Plugin URI of the plugin
msgid "https://entego.com.tr"
msgstr "https://entego.com.tr"
#. Description of the plugin
msgid "WooCommerce üzerinden satışını yaptığınız ürünleri bu eklenti sayesinde kolaylıkla n11.com'a gönderebileceksiniz."
msgstr "WooCommerce üzerinden satışını yaptığınız ürünleri bu eklenti sayesinde kolaylıkla n11.coma gönderebileceksiniz."
#. Author of the plugin
msgid "Fibrika Workshop"
msgstr "Fibrika Workshop"
#. Author URI of the plugin
msgid "https://fibrika.com.tr/"
msgstr "https://fibrika.com.tr/"
#: admin/class-entego-n11-admin-kurulum-wizard.php:129
msgid "N11 Anahtarlar"
msgstr "N11 Anahtarlar"
#: admin/class-entego-n11-admin-kurulum-wizard.php:134
msgid "Şablon Seçimi"
msgstr "Şablon Seçimi"
#: admin/class-entego-n11-admin-kurulum-wizard.php:139
msgid "Önemli Bilgiler"
msgstr "Önemli Bilgiler"
#: admin/class-entego-n11-admin-kurulum-wizard.php:144
msgid "Hazır!"
msgstr "Hazır!"
#: admin/class-entego-n11-admin-kurulum-wizard.php:205
msgid "Entego WooCoomerce &rsaquo; N11 Eklentisi Yükleme"
msgstr "Entego WooCoomerce &rsaquo; N11 Eklentisi Yükleme"
#: admin/class-entego-n11-admin-kurulum-wizard.php:212 admin/class-entego-n11-admin-kurulum-wizard.php:294
msgid "Entego WooCommerce N11 Eklentisi"
msgstr "Entego WooCommerce N11 Eklentisi"
#: admin/class-entego-n11-admin-kurulum-wizard.php:222
msgid "Şimdilik geç"
msgstr "Şimdilik geç"
#: admin/class-entego-n11-admin-kurulum-wizard.php:224
msgid "Bu Adımı Atla"
msgstr "Bu Adımı Atla"
#: admin/class-entego-n11-admin-kurulum-wizard.php:293
msgid "Hoşgeldiniz"
msgstr "Hoşgeldiniz"
#: admin/class-entego-n11-admin-kurulum-wizard.php:295
msgid ""
"Entego WooCoomerce N11 Eklentisini kurduğunuz için teşekkür ederiz. Amacımız sizlerin ürün gönderiminde ve mağazalarınızı yönetmenizi kolaylaştırmak, eklenti kurulumuna devam etmek istiyormusunuz ?"
msgstr ""
"Entego WooCoomerce N11 Eklentisini kurduğunuz için teşekkür ederiz. Amacımız sizlerin ürün gönderiminde ve mağazalarınızı yönetmenizi kolaylaştırmak, eklenti kurulumuna devam etmek istiyormusunuz ?"
#: admin/class-entego-n11-admin-kurulum-wizard.php:300
msgid "Evet, lütfen"
msgstr "Evet, lütfen"
#: admin/class-entego-n11-admin-kurulum-wizard.php:305
msgid "Bu adımdan sonra N11 tarafından size verilen bilgileri girmeniz gerekiyor."
msgstr "Bu adımdan sonra N11 tarafından size verilen bilgileri girmeniz gerekiyor."
#: admin/class-entego-n11-admin-kurulum-wizard.php:339
msgid "N11 tarafından Mağaza yönetim panelinde size verilen api ve api secret keylerini girmelisiniz. Nerede olduğunu bilmiyorsanız aşşağıdaki linke tıklayınız."
msgstr "N11 tarafından Mağaza yönetim panelinde size verilen api ve api secret keylerini girmelisiniz. Nerede olduğunu bilmiyorsanız aşşağıdaki linke tıklayınız."
#: admin/class-entego-n11-admin-kurulum-wizard.php:340
msgid "Api Anahtarların nasıl alındığını bilmiyorsanız tıklayın."
msgstr "Api Anahtarların nasıl alındığını bilmiyorsanız tıklayın."
#: admin/class-entego-n11-admin-kurulum-wizard.php:343
msgid "N11 Api Anahtarı"
msgstr "N11 Api Anahtarı"
#: admin/class-entego-n11-admin-kurulum-wizard.php:346
msgid "N11 Api Secret Anahtarı"
msgstr "N11 Api Secret Anahtarı"
#: admin/class-entego-n11-admin-kurulum-wizard.php:353
msgid "Kontrol Et"
msgstr "Kontrol Et"
#: admin/class-entego-n11-admin-kurulum-wizard.php:369
msgid "N11 Api Keylerin Yerlerini Öğrenme"
msgstr "Kapat"
#: admin/class-entego-n11-admin-kurulum-wizard.php:378
msgid "Kapat"
msgstr "Kapat"
#: admin/class-entego-n11-admin-kurulum-wizard.php:466 admin/partials/class-entego-n11-help.php:74 admin/partials/help/kategori-eslestirme.php:13
msgid "Kategori Eşleştirme"
msgstr "Kategori Eşleştirme"
#: admin/class-entego-n11-admin-kurulum-wizard.php:510
msgid "Entego'ya bağlantı sağlanamadı, lütfen daha sonra tekrar deneyiniz."
msgstr "Entegoya bağlantı sağlanamadı, lütfen daha sonra tekrar deneyiniz."
#: admin/class-entego-n11-admin-kurulum-wizard.php:555
msgid "Devam Et"
msgstr "Devam Et"
#. translators: %s: Link
#: admin/class-entego-n11-admin-kurulum-wizard.php:677
msgid ""
"N11 entegrasyonu ile ürünlerini gönderebilmeniz için Kargo Teslimat Şablonu seçmelisiniz. <a href=\"%s\" target=\"_blank\">Şablon Nedir ?</a> Eğer şablonunuz yok ise n11 mağaza yönetim panelinden bir "
"adet şablon oluşturmalısınız. Daha sonra bu şablon değiştirilebilir."
msgstr ""
"N11 entegrasyonu ile ürünlerini gönderebilmeniz için Kargo Teslimat Şablonu seçmelisiniz. <a href=“%s” target=“_blank”>Şablon Nedir ?</a> Eğer şablonunuz yok ise n11 mağaza yönetim panelinden bir adet "
"şablon oluşturmalısınız. Daha sonra bu şablon değiştirilebilir."
#: admin/class-entego-n11-admin-kurulum-wizard.php:712
msgid "N11 Ürün Gönderme Şablonu Seçiniz"
msgstr "N11 Ürün Gönderme Şablonu Seçiniz"
#: admin/class-entego-n11-admin-kurulum-wizard.php:713
msgid "Hangi Şablonu&hellip; kullanmak istersiniz"
msgstr "Hangi Şablonu&hellip; kullanmak istersiniz"
#: admin/class-entego-n11-admin-kurulum-wizard.php:713
msgid "Kargo Şablonu"
msgstr "Kargo Şablonu"
#: admin/class-entego-n11-admin-kurulum-wizard.php:721
msgid "Devam"
msgstr "Devam"
#: admin/class-entego-n11-admin-kurulum-wizard.php:754
msgid "Entego WooCommerce Eklentisi"
msgstr "Entego WooCommerce Eklentisi"
#: admin/class-entego-n11-admin-kurulum-wizard.php:756
msgid "Eklentimizi indirdiğiniz için teşekkür ederiz. Bu Eklentiyi kullanama bilmek için bilmeniz gereken bir kaç bilgi mevcut."
msgstr "Eklentimizi indirdiğiniz için teşekkür ederiz. Bu Eklentiyi kullanama bilmek için bilmeniz gereken bir kaç bilgi mevcut."
#: admin/class-entego-n11-admin-kurulum-wizard.php:761
msgid "Öncelikli olarak ürünlerinizi senkronize bir şekilde n11'e göndermek için sitenizde kayıtlı her ürününü N11 Kategorileri ile eşleştirmeniz gerekiyor."
msgstr "Öncelikli olarak ürünlerinizi senkronize bir şekilde n11e göndermek için sitenizde kayıtlı her ürününü N11 Kategorileri ile eşleştirmeniz gerekiyor."
#: admin/class-entego-n11-admin-kurulum-wizard.php:769
msgid ""
"Kategorilerinizi eşleştirdikden sonra her kategoride yer alan ürünlerin bazı özellikleri mevcut bu özelliklerden isteğe bağlı olanı ve zorunlu olan özellikleri mevcut bu zorunlu özellikleri "
"girmediğiniz takdirde ürünleriniz eksik özellik nedeni ile gönderilemeyecektir."
msgstr ""
"Kategorilerinizi eşleştirdikden sonra her kategoride yer alan ürünlerin bazı özellikleri mevcut bu özelliklerden isteğe bağlı olanı ve zorunlu olan özellikleri mevcut bu zorunlu özellikleri "
"girmediğiniz takdirde ürünleriniz eksik özellik nedeni ile gönderilemeyecektir."
#: admin/class-entego-n11-admin-kurulum-wizard.php:775
msgid ""
"Bu zorunlu ve isteğe bağlı özelliklerin hangileri olduğunu ve eklenmesi ürün düzenleme sayfasında sağ tarafta olan N11 Sekmesinden görüntüleyebilir ve üzerine tıkladınız takdirde seçeneklerin arasında "
"seçerek ekleyebilirsiniz."
msgstr ""
"Bu zorunlu ve isteğe bağlı özelliklerin hangileri olduğunu ve eklenmesi ürün düzenleme sayfasında sağ tarafta olan N11 Sekmesinden görüntüleyebilir ve üzerine tıkladınız takdirde seçeneklerin arasında "
"seçerek ekleyebilirsiniz."
#: admin/class-entego-n11-admin-kurulum-wizard.php:783
msgid "Hazırsanız artık ilk ürün gönderme işlemine geçebiliriz."
msgstr "Hazırsanız artık ilk ürün gönderme işlemine geçebiliriz."
#: admin/class-entego-n11-admin-kurulum-wizard.php:790
msgid "Ürün Gönder"
msgstr "Ürün Gönder"
#: admin/class-entego-n11-admin-kurulum-wizard.php:812
msgid "Girmiş olduğunuz Api Anahtarı veya Api Şifre Anahtarı hatalıdır. Tekrar kontrol edip deneyiniz."
msgstr "Girmiş olduğunuz Api Anahtarı veya Api Şifre Anahtarı hatalıdır. Tekrar kontrol edip deneyiniz."
#: admin/class-entego-n11-admin-kurulum-wizard.php:813
msgid "Her hangi bir Kargo Teslimat Şablonu Seçmediniz."
msgstr "Her hangi bir Kargo Teslimat Şablonu Seçmediniz."
#: admin/class-entego-n11-admin-kurulum-wizard.php:814
msgid "Kategori seçimi yapmadınız veya eksik bir bilgi gönderdildi, tekrar deneyiniz."
msgstr "Kategori seçimi yapmadınız veya eksik bir bilgi gönderdildi, tekrar deneyiniz."
#: admin/class-entego-n11-admin-kurulum-wizard.php:815
msgid "Kategori Eşleştirmesi veritabanına kayıt edilirken bir hata oluştu."
msgstr "Kategori Eşleştirmesi veritabanına kayıt edilirken bir hata oluştu."
#. translators: %1$s: link to videos, %2$s: link to docs
#: admin/class-entego-n11-admin-kurulum-wizard.php:833
msgid "Eklentinin nasıl kullanılacağı hakkında daha fazla bilgi ve içeriğe internet sitemizden ulaşabilirsiniz <a href=\"%1$s\" target=\"_blank\">Entego Entegrasyon</a>."
msgstr "Eklentinin nasıl kullanılacağı hakkında daha fazla bilgi ve içeriğe internet sitemizden ulaşabilirsiniz <a href=“%1$s” target=“_blank”>Entego Entegrasyon</a>."
#: admin/class-entego-n11-admin-kurulum-wizard.php:837
msgid "Artık Ürünlerinizi N11 ile Entegre Etmeye Hazırsınız!"
msgstr "Artık Ürünlerinizi N11 ile Entegre Etmeye Hazırsınız!"
#: admin/class-entego-n11-admin-kurulum-wizard.php:840
msgid "En Son gelişmelerden ve yeni eklentilerimizden haberdar olmak isterseniz E-Posta adresinizi bize gönderin."
msgstr "En Son gelişmelerden ve yeni eklentilerimizden haberdar olmak isterseniz E-Posta adresinizi bize gönderin."
#: admin/class-entego-n11-admin-kurulum-wizard.php:849
msgid "E-Posta Adresiniz"
msgstr "E-Posta Adresiniz"
#: admin/class-entego-n11-admin-kurulum-wizard.php:855 admin/class-entego-n11-admin-kurulum-wizard.php:859
msgid "Evet Lütfen!"
msgstr "Evet Lütfen!"
#: admin/class-entego-n11-admin-kurulum-wizard.php:868
msgid "Sonraki Adım"
msgstr "Sonraki Adım"
#: admin/class-entego-n11-admin-kurulum-wizard.php:869
msgid "Artık Eklentiyi Kullanmaya Hazırsınız"
msgstr "Artık Eklentiyi Kullanmaya Hazırsınız"
#: admin/class-entego-n11-admin-kurulum-wizard.php:870
msgid "Tüm Ürünler Sayfasından Ürünlerinizi tek tek veya toplu olarak gönderebilirsiniz."
msgstr "Tüm Ürünler Sayfasından Ürünlerinizi tek tek veya toplu olarak gönderebilirsiniz."
#: admin/class-entego-n11-admin-kurulum-wizard.php:875
msgid "Tüm Ürünlere git"
msgstr "Tüm Ürünlere git"
#: admin/partials/class-entego-n11-help.php:62
msgid "Kullanmaya Başlarken"
msgstr "Kullanmaya Başlarken"
#: admin/partials/class-entego-n11-help.php:66
msgid "Api Anahtarları"
msgstr "Api Anahtarları"
#: admin/partials/class-entego-n11-help.php:70
msgid "Şablon seçimi ve Kargo Süresi"
msgstr "Şablon seçimi ve Kargo Süresi"
#: admin/partials/class-entego-n11-help.php:78 admin/partials/help/urun-ozellikleri.php:13
msgid "Ürün Özellikleri"
msgstr "Ürün Özellikleri"
#: admin/partials/class-entego-n11-help.php:82 admin/partials/help/urun-gonderme.php:13
msgid "Ürün Gönderme"
msgstr "Ürün Gönderme"
#: admin/partials/class-entego-n11-help.php:86 admin/partials/help/toplu-urun-gonderme.php:13
msgid "Toplu Ürün Gönderme"
msgstr "Toplu Ürün Gönderme"
#: admin/partials/class-entego-n11-help.php:93
msgid "Entego WooCommerce N11 Eklentisi Kullanma Kılavuzu"
msgstr "Entego WooCommerce N11 Eklentisi Kullanma Kılavuzu"
#: admin/partials/entego-n11-admin-column.php:57
msgid "N11'de Ürünü Güncelle"
msgstr "N11de Ürünü Güncelle"
#: admin/partials/entego-n11-admin-column.php:59
msgid "Ürünü N11'e Gönder"
msgstr "Ürünü N11e Gönder"
#: admin/partials/entego-n11-admin-column.php:72
msgid "N11'e Gönder"
msgstr "N11e Gönder"
#: admin/partials/entego-n11-admin-column.php:73
msgid "N11'den Sil"
msgstr "N11den Sil"
#: admin/partials/entego-n11-admin-column.php:74
msgid "N11 Otomatik Güncelleme Aç"
msgstr "N11 Otomatik Güncelleme Aç"
#: admin/partials/entego-n11-admin-column.php:75
msgid "N11 Otomatik Güncelleme Kapat"
msgstr "N11 Otomatik Güncelleme Kapat"
#: admin/partials/entego-n11-admin-column.php:222
msgid "N11 Kategori Ürün Nitelikleri"
msgstr "N11 Kategori Ürün Nitelikleri"
#: admin/partials/entego-n11-admin-column.php:636 admin/partials/entego-n11-admin-column.php:689
msgid "Ürünün global ticari öğe numarası"
msgstr "Ürünün global ticari öğe numarası"
#: admin/partials/entego-n11-admin-column.php:636 admin/partials/entego-n11-admin-column.php:689
msgid "GTIN"
msgstr "GTIN"
#: admin/partials/entego-n11-admin-column.php:638 admin/partials/entego-n11-admin-column.php:691
msgid "N11 tarafından bazı OEM ürünlerde zorunlu olarak istenmektedir. Eğer Bilmiyorsanız N11 yönetici panelinden sorgulatarak öğrene bilirsiniz."
msgstr "N11 tarafından bazı OEM ürünlerde zorunlu olarak istenmektedir. Eğer Bilmiyorsanız N11 yönetici panelinden sorgulatarak öğrene bilirsiniz."
#: admin/partials/entego-n11-admin-column.php:647 admin/partials/entego-n11-admin-column.php:699
msgid "Parça/Ürün bağlantı numarası"
msgstr "Parça/Ürün bağlantı numarası"
#: admin/partials/entego-n11-admin-column.php:647 admin/partials/entego-n11-admin-column.php:699
msgid "OEM"
msgstr "OEM"
#: admin/partials/entego-n11-admin-column.php:649 admin/partials/entego-n11-admin-column.php:701
msgid "N11'de ürün listelemek için kullanılan bir özellik isteğe bağlıdır."
msgstr "N11de ürün listelemek için kullanılan bir özellik isteğe bağlıdır."
#: admin/partials/entego-n11-admin-column.php:658 admin/partials/entego-n11-admin-column.php:678
msgid "N11.com'da satmak istediğiniz tutar"
msgstr "N11.comda satmak istediğiniz tutar"
#: admin/partials/entego-n11-admin-column.php:658 admin/partials/entego-n11-admin-column.php:678
msgid "N11 Satış Ücreti"
msgstr "N11 Satış Ücreti"
#: admin/partials/entego-n11-admin-column.php:660 admin/partials/entego-n11-admin-column.php:680
msgid "Eğer N11.com'a farklı fiyatta göndermek istiyorsanız, fiyat sekmesine bunu girmelisiniz."
msgstr "Eğer N11.coma farklı fiyatta göndermek istiyorsanız, fiyat sekmesine bunu girmelisiniz."
#: admin/partials/entego-n11-admin-column.php:963 admin/partials/entego-n11-admin-column.php:966
msgid ""
"<strong>Entego WooCommerce Entegrasyon</strong> eklentimizi beğendiyseniz lütfen bize <a href=\"https://tr.wordpress.org/plugins/entego-n11/\">yorum</a> yapmayı unutmayınız. <br>Şimdiden yapacağınız "
"her türlü yorum için teşekkür ederiz."
msgstr ""
"<strong>Entego WooCommerce Entegrasyon</strong> eklentimizi beğendiyseniz lütfen bize <a href=“https://tr.wordpress.org/plugins/entego-n11/“>yorum</a> yapmayı unutmayınız. <br>Şimdiden yapacağınız her "
"türlü yorum için teşekkür ederiz."
#. translators: %1$s: link to videos, %2$s: link to docs
#: admin/partials/entego-n11-admin-column.php:1452
msgid "Ürün N11'e gönderilirken hata oluştu, \"%1$s\" değeri hatalı olarak girilmiş. Tekrar Kontrol ediniz."
msgstr "Ürün N11e gönderilirken hata oluştu, “%1$s” değeri hatalı olarak girilmiş. Tekrar Kontrol ediniz."
#: admin/partials/entego-n11-admin-sonuclar.php:117
msgid "Sırada Bekleyen İşlem Sayısı(%1$s)"
msgstr "N11 Alt Başlıkda Gözüken Not”"
#: admin/partials/entego-n11-admin-sonuclar.php:311
msgid "N11 Alt Başlık'da Gözüken Not\""
msgstr "N11 Alt Başlıkda Gözüken Not”"
#: admin/partials/entego-n11-admin-sonuclar.php:335
msgid ""
"<p style=\"color:red\">Entego N11 Eklentisi Kurulum tamamlanmamış veya api bağlantısında sıkıntı olduğu için kapatılmış <a href=\"%1$s\" target=\"_blank\">ayarlar sayfası</a> giderek tekrar kontrol "
"ediniz.</p>"
msgstr ""
"<p style=“color:red”>Entego N11 Eklentisi Kurulum tamamlanmamış veya api bağlantısında sıkıntı olduğu için kapatılmış <a href=“%1$s” target=“_blank”>ayarlar sayfası</a> giderek tekrar kontrol ediniz.</"
"p>"
#: admin/partials/help/api-anahtarlar.php:14
msgid "API Anahtarları"
msgstr "API Anahtarları"
#: admin/partials/help/api-anahtarlar.php:16
msgid "N11 ile eklentimizin bağlantısını sağlaması için api anahtarı ve api şifresine ihtiyacınız gerekmektedir."
msgstr "N11 ile eklentimizin bağlantısını sağlaması için api anahtarı ve api şifresine ihtiyacınız gerekmektedir."
#: admin/partials/help/api-anahtarlar.php:19
msgid "Bu API Anahtarını ve API Şifresini N11 yönetim panelinizden edinebilirsiniz."
msgstr "Bu API Anahtarını ve API Şifresini N11 yönetim panelinizden edinebilirsiniz."
#: admin/partials/help/api-anahtarlar.php:21
msgid "<a href=\"%1$s\" target=\"_blank\">N11 Firma Yönetim Paneli</a>."
msgstr "<a href=“%1$s” target=“_blank”>N11 Firma Yönetim Paneli</a>."
#: admin/partials/help/api-anahtarlar.php:27 admin/partials/help/api-anahtarlar.php:30 admin/partials/help/api-anahtarlar.php:33
msgid "N11 API Şifresi alma talimatı"
msgstr "N11 API Şifresi alma talimatı"
#: admin/partials/help/api-anahtarlar.php:36
msgid "API Anahtarınızı aldıkdan sonra E-Posta hesabıza gönderilen API şifresinide ayarladan kaydebilirsiniz."
msgstr "API Anahtarınızı aldıkdan sonra E-Posta hesabıza gönderilen API şifresinide ayarladan kaydebilirsiniz."
#: admin/partials/help/api-anahtarlar.php:39
msgid "Bu verilerinizide kaydettikden sonra diğer sekmeye geçebilirsiniz."
msgstr "Bu verilerinizide kaydettikden sonra diğer sekmeye geçebilirsiniz."
#: admin/partials/help/baslarken.php:15
msgid "Eklentimize hoşgeldiniz, Eklentimiz WooCommerce üzerindeki ürünlerinizi yüksek derece uyuyumluluk ve kolaylıkla N11.com'a göndermek için tasasarlanmıştır."
msgstr "Eklentimize hoşgeldiniz, Eklentimiz WooCommerce üzerindeki ürünlerinizi yüksek derece uyuyumluluk ve kolaylıkla N11.coma göndermek için tasasarlanmıştır."
#: admin/partials/help/baslarken.php:18
msgid "Eklentimizi kullanmaya başlamadan önce bilmeniz gereken bazı konular var bunlardan hızlıca bahsetmemiz gerekirse.."
msgstr "Eklentimizi kullanmaya başlamadan önce bilmeniz gereken bazı konular var bunlardan hızlıca bahsetmemiz gerekirse.."
#: admin/partials/help/baslarken.php:21
msgid "N11'e ürünler belirli şablonlar ile gönderilir. Bu Şablonlar Teslimat şablonu olarak adlandırılır."
msgstr "N11e ürünler belirli şablonlar ile gönderilir. Bu Şablonlar Teslimat şablonu olarak adlandırılır."
#: admin/partials/help/baslarken.php:22
msgid "Varsayılan olarak bir şablon seçmelisiniz ki ürünleriniz o şablonlar ile eşleştirilerek gönderim yapılabilsin."
msgstr "Varsayılan olarak bir şablon seçmelisiniz ki ürünleriniz o şablonlar ile eşleştirilerek gönderim yapılabilsin."
#: admin/partials/help/baslarken.php:25
msgid "N11'de ürünlerin kargoya teslimat süreleri mevcuttur. Bu süreler değişkenlik gösterebilir."
msgstr "N11de ürünlerin kargoya teslimat süreleri mevcuttur. Bu süreler değişkenlik gösterebilir."
#: admin/partials/help/baslarken.php:26
msgid "Varsayılan olarak bir süre belirtmeniz gerekmektedir. Bu süreyi belirlerken dikkat etmeniz gereken nokta n11 yeni firmalara minimum 2 gün olarak belirler."
msgstr "Varsayılan olarak bir süre belirtmeniz gerekmektedir. Bu süreyi belirlerken dikkat etmeniz gereken nokta n11 yeni firmalara minimum 2 gün olarak belirler."
#: admin/partials/help/baslarken.php:27
msgid "Yani 1 gün olarak belirlediğinizde n11 bunu kabul etmeyerek ürünleri göndermenize müsade etmeyecektir."
msgstr "Yani 1 gün olarak belirlediğinizde n11 bunu kabul etmeyerek ürünleri göndermenize müsade etmeyecektir."
#: admin/partials/help/baslarken.php:30
msgid "N11'e gönderim yapabilmeniz için göndermek istediğiniz ürününü n11'de karşılığı olan kategori ile eşleştirmeniz gerekmektedir."
msgstr "N11e gönderim yapabilmeniz için göndermek istediğiniz ürününü n11de karşılığı olan kategori ile eşleştirmeniz gerekmektedir."
#: admin/partials/help/baslarken.php:33
msgid "Daha detaylı bilgileri diğer sekmelerden öğrenebilirsiniz."
msgstr "Daha detaylı bilgileri diğer sekmelerden öğrenebilirsiniz."
#: admin/partials/help/kategori-eslestirme.php:15
msgid "WooCommerce üzerindeki ürünlerinizin N11'deki karşılığını seçmeslisinizki ürünleriniz bu eşleştirmlere göre gönderilir."
msgstr "WooCommerce üzerindeki ürünlerinizin N11deki karşılığını seçmeslisinizki ürünleriniz bu eşleştirmlere göre gönderilir."
#: admin/partials/help/kategori-eslestirme.php:19
msgid "N11 Kategori Eşletirme sayfasından toplu olarak belli kategori içersindeki ürünlere eşletirmlerinizi yapabilirsiniz. <a href=\"%1$s\" target=\"_blank\">N11 Kategoriler Sayfası</a>"
msgstr "N11 Kategori Eşletirme sayfasından toplu olarak belli kategori içersindeki ürünlere eşletirmlerinizi yapabilirsiniz. <a href=“%1$s” target=“_blank”>N11 Kategoriler Sayfası</a>"
#: admin/partials/help/kategori-eslestirme.php:25
msgid "N11 Kategorileri sırasıyla en üstten alta doğru devam eder sırasıyla seçerek devam etmelisiniz. Alt Kategori mevcut ise seçim yapmalısınız. Aksi takdirde seçim yapmanıza gerek yoktur."
msgstr "N11 Kategorileri sırasıyla en üstten alta doğru devam eder sırasıyla seçerek devam etmelisiniz. Alt Kategori mevcut ise seçim yapmalısınız. Aksi takdirde seçim yapmanıza gerek yoktur."
#: admin/partials/help/kategori-eslestirme.php:28
msgid "Ayrıca her ürünün sayfasından da bu eşleştirmeyi yapabilirsiniz."
msgstr "Ayrıca her ürünün sayfasından da bu eşleştirmeyi yapabilirsiniz."
#: admin/partials/help/sablon-secimi.php:14
msgid "Şablon Seçimi ve Kargo Teslimat Süresi"
msgstr "Şablon Seçimi ve Kargo Teslimat Süresi"
#: admin/partials/help/sablon-secimi.php:18
msgid "Şablonlar nedir ne için kullanılır daha detaylı bilgi alabilmeniz için tıklayınız. <a href=\"%1$s\" target=\"_blank\">Şablon Nedir ?</a>"
msgstr "Şablonlar nedir ne için kullanılır daha detaylı bilgi alabilmeniz için tıklayınız. <a href=“%1$s” target=“_blank”>Şablon Nedir ?</a>"
#: admin/partials/help/sablon-secimi.php:25
msgid ""
"API Anahtarınızı ve API Şifrenizi kayıt edip onayladıkdan sonra <a href=\"%1$s\" target=\"_blank\">Ayarlar sayfasında</a> şablonlarınız listelenicektir. Listeden isteğinize göre bir şablon seçerek "
"devam edebilirsiniz."
msgstr ""
"API Anahtarınızı ve API Şifrenizi kayıt edip onayladıkdan sonra <a href=“%1$s” target=“_blank”>Ayarlar sayfasında</a> şablonlarınız listelenicektir. Listeden isteğinize göre bir şablon seçerek devam "
"edebilirsiniz."
#: admin/partials/help/sablon-secimi.php:31
msgid ""
"Ürünleriniz N11'e gönderilirken sizin belirlediğiniz kargo teslimat süresi ile gönderilir. Bu süreyi istediğiniz her zaman değiştirebilirsiniz. Kargo teslimat süresini Entego Ayarlar sayfasından kayıt "
"etmeniz gerekmektedir."
msgstr "Dikkat etmeniz gereken önemli olan husus şudur ki bu süre yeni kullanıcılar için en az 2 gün olarak belirlenmiştir."
#: admin/partials/help/sablon-secimi.php:34
msgid "Dikkat etmeniz gereken önemli olan husus şudur ki bu süre yeni kullanıcılar için en az 2 gün olarak belirlenmiştir."
msgstr "Dikkat etmeniz gereken önemli olan husus şudur ki bu süre yeni kullanıcılar için en az 2 gün olarak belirlenmiştir."
#: admin/partials/help/sablon-secimi.php:37
msgid "Diğer bilgiler için diğer sekmeleride ziyaret edebilirsiniz."
msgstr "Diğer bilgiler için diğer sekmeleride ziyaret edebilirsiniz."
#: admin/partials/help/toplu-urun-gonderme.php:15
msgid "Ürünlerinizi tek tek gönderebileceğiniz gibi ayrıca toplu olarakda kolaylıkla gönderebilir ve güncelleyebilirsiniz."
msgstr "Ürünlerinizi tek tek gönderebileceğiniz gibi ayrıca toplu olarakda kolaylıkla gönderebilir ve güncelleyebilirsiniz."
#: admin/partials/help/toplu-urun-gonderme.php:18 admin/partials/help/urun-gonderme.php:18 admin/partials/help/urun-gonderme.php:24 admin/partials/help/urun-ozellikleri.php:21
#: admin/partials/help/urun-ozellikleri.php:33 admin/partials/help/urun-ozellikleri.php:42
msgid "N11 Ürün Nitelikleri Metabox"
msgstr "N11 Ürün Nitelikleri Metabox"
#: admin/partials/help/toplu-urun-gonderme.php:21
msgid "Ürünlerinizi gönderebildiğiniz gibi aynı şekilde sadece n11'den silebilirsiniz."
msgstr "Ürünlerinizi gönderebildiğiniz gibi aynı şekilde sadece n11den silebilirsiniz."
#: admin/partials/help/toplu-urun-gonderme.php:25
msgid ""
"Toplu gönderme işlemlerinizde ürünler sıraya alınır ve en kısa süre içerisinde ürün sayısına göre tamamlar. Bu tamamlama sırasında ürünlerin durumunu N11 <a href=\"%1$s\" target=\"_blank\">Ürün "
"Gönderme Sonuçları</a> sayfasından takip edebilirsiniz."
msgstr ""
"Toplu gönderme işlemlerinizde ürünler sıraya alınır ve en kısa süre içerisinde ürün sayısına göre tamamlar. Bu tamamlama sırasında ürünlerin durumunu N11 <a href=“%1$s” target=“_blank”>Ürün Gönderme "
"Sonuçları</a> sayfasından takip edebilirsiniz."
#: admin/partials/help/urun-gonderme.php:15
msgid ""
"Varsayılan Şablonuzu işaretleyip, Kargo teslimat sürenizi belirtip, Kategori Eşleştirmesini yaptıysanız ve Ürün Özelliklerini tamamladıysanız artık geriye sadece ürününüzü n11'e göndermek kalmıştır."
msgstr ""
"Varsayılan Şablonuzu işaretleyip, Kargo teslimat sürenizi belirtip, Kategori Eşleştirmesini yaptıysanız ve Ürün Özelliklerini tamamladıysanız artık geriye sadece ürününüzü n11e göndermek kalmıştır."
#: admin/partials/help/urun-gonderme.php:21
msgid "Entego Ürün Nitelikleri Menüsünde bulunan yukarıda gördüğünüz buton ilede yapabilirsiniz. Ayrıca aşşağıda göstermiş olduğumuz kısayol ilede yapabilirsiniz."
msgstr "Entego Ürün Nitelikleri Menüsünde bulunan yukarıda gördüğünüz buton ilede yapabilirsiniz. Ayrıca aşşağıda göstermiş olduğumuz kısayol ilede yapabilirsiniz."
#: admin/partials/help/urun-ozellikleri.php:15
msgid "N11 çeşitleri kategorilerde her kategoriye özgü ürün özellikleri istemekde bunlardan zorunlu olanları ve isteğe bağlı olanları mevcuttur."
msgstr "N11 çeşitleri kategorilerde her kategoriye özgü ürün özellikleri istemekde bunlardan zorunlu olanları ve isteğe bağlı olanları mevcuttur."
#: admin/partials/help/urun-ozellikleri.php:18
msgid "Bu özellikleri ürün sayfasında sağ kısımda \"Entego N11 Ürün Menüsünde\" görebilirsiniz."
msgstr "Bu özellikleri ürün sayfasında sağ kısımda “Entego N11 Ürün Menüsünde” görebilirsiniz."
#: admin/partials/help/urun-ozellikleri.php:24
msgid "Burada size örnek olarak \"Bilgisayar > Çevre Birimleri > Monitör & Ekran\" kategorisindeki bir ürünün özelliklerini görüntülemektesiniz."
msgstr "Burada size örnek olarak “Bilgisayar > Çevre Birimleri > Monitör & Ekran” kategorisindeki bir ürünün özelliklerini görüntülemektesiniz."
#: admin/partials/help/urun-ozellikleri.php:27
msgid "Bu özelliklerin zorunlu olanları görmüş olduğunuz gibi belirtilmiştir. Ürünleri bu zorunlu özellikleri eklemeden kayıt edemezsiniz."
msgstr "Bu özelliklerin zorunlu olanları görmüş olduğunuz gibi belirtilmiştir. Ürünleri bu zorunlu özellikleri eklemeden kayıt edemezsiniz."
#: admin/partials/help/urun-ozellikleri.php:30
msgid "Bu özellikleri ürünlerinize ekmlemeniz gayet kolaydır, Tek yapmanız gereken eklemek istediğiniz bulunmayan özelliğin üzerine tıklayarak gelen listeden seçim yapmalısınız."
msgstr "Bu özellikleri ürünlerinize ekmlemeniz gayet kolaydır, Tek yapmanız gereken eklemek istediğiniz bulunmayan özelliğin üzerine tıklayarak gelen listeden seçim yapmalısınız."
#: admin/partials/help/urun-ozellikleri.php:36
msgid ""
"Yukarıdaki örnekte \"Monitör & Ekran\" kategorisindeki \"Çözünürlük\" özelliğini görüntülemektesiniz. Buradan ürünüzüde uygun olan özelliği seçerek Kaydet butonu tıklamanız yeterli artık o özellik "
"WooCommerce Ürün Nitelikleri Sekmesine kayıt edilmiştir."
msgstr ""
"Yukarıdaki örnekte “Monitör & Ekran” kategorisindeki “Çözünürlük” özelliğini görüntülemektesiniz. Buradan ürünüzüde uygun olan özelliği seçerek Kaydet butonu tıklamanız yeterli artık o özellik "
"WooCommerce Ürün Nitelikleri Sekmesine kayıt edilmiştir."
#: admin/partials/help/urun-ozellikleri.php:39
msgid "Bu özellikleri kaldırmanız için yapmanız gereken WooCommerce Ürün Verisine gelerek Nitelikler sekmesinden istediğiniz niteliği kaldırabilirsiniz."
msgstr "Bu özellikleri kaldırmanız için yapmanız gereken WooCommerce Ürün Verisine gelerek Nitelikler sekmesinden istediğiniz niteliği kaldırabilirsiniz."
#: admin/partials/help/urun-ozellikleri.php:45
msgid ""
"Dikkat etmeniz gereken nokta bu özellikler sitenizde daha öncedende kayıtlı olabilir bu durumda o özelliği silip yeniden Entego N11 Ürün Nitelikleri menüsünden tekrar ekleyiniz. Çünki n11 bu "
"özellikleri kendi veritabanında eşleştirmektedir, eşleştiremediği özellikleri kabul etmeyerek ürünü ekleyemeyecektir."
msgstr ""
"Dikkat etmeniz gereken nokta bu özellikler sitenizde daha öncedende kayıtlı olabilir bu durumda o özelliği silip yeniden Entego N11 Ürün Nitelikleri menüsünden tekrar ekleyiniz. Çünki n11 bu "
"özellikleri kendi veritabanında eşleştirmektedir, eşleştiremediği özellikleri kabul etmeyerek ürünü ekleyemeyecektir."
#: entego-n11.php:91
msgid ""
"Entego N11 Eklentisini tercih ettiğiniz için teşekkür ederiz. Eklentiyi kullanmak için kurulumu tamamlamanız gerekiyor. Eklentinin kullanımı hakkında bilgileri eklentinin menüsündeki yardım kısmından "
"inceleyerek öğrenebilirsiniz."
msgstr ""
"Entego N11 Eklentisini tercih ettiğiniz için teşekkür ederiz. Eklentiyi kullanmak için kurulumu tamamlamanız gerekiyor. Eklentinin kullanımı hakkında bilgileri eklentinin menüsündeki yardım kısmından "
"inceleyerek öğrenebilirsiniz."
#: entego-n11.php:92
msgid "Eklenti Kurulumu"
msgstr "Eklenti Kurulumu"
#: entego-n11.php:92
msgid "İptal"
msgstr "İptal"
#. Short description.
msgid "Direk Ürünlerinizi n11 de apı bağlantısını sağlayıp ürünleri bir anda tek tuşla n11de satmaya başlayabilirsiniz."
msgstr "Direk Ürünlerinizi n11 de apı bağlantısını sağlayıp ürünleri bir anda tek tuşla n11de satmaya başlayabilirsiniz."
#. Plugin name.
msgid "Entego N11 Entegrasyon Eklentisi"
msgstr "Entego N11 Entegrasyon Eklentisi"
#. Found in description paragraph.
msgid ""
"Detaylı bilgilere sitemizden erişebilirisiniz (entego.com.tr)\n"
"<br />\n"
"WooCommerce üzerinden satışını yaptığınız ürünleri büyük bir kolaylıkla tek bir tuşla n11\\'e gönderebileceksiniz.\n"
"<br />\n"
"Çok Yakın zamanda siparişlerinizide bu eklentinin içersine dahil edilerek çok daha düzenli bir çalışma gerkçekleşicek."
msgstr ""
"Detaylı bilgilere sitemizden erişebilirisiniz (entego.com.tr)\n"
"<br />\n"
"WooCommerce üzerinden satışını yaptığınız ürünleri büyük bir kolaylıkla tek bir tuşla n11\\e gönderebileceksiniz.\n"
"<br />\n"
"Çok Yakın zamanda siparişlerinizide bu eklentinin içersine dahil edilerek çok daha düzenli bir çalışma gerkçekleşicek."
#. Found in description header.
msgid "Özellikler"
msgstr "Özellikler"
#. Found in description header.
msgid "İnternet Sitemizi Ziyaret Edin"
msgstr "İnternet Sitemizi Ziyaret Edin"
#. Found in description list item.
msgid "Yüklediğiniz zaman kayıt işlemi gerçekleştikten sonra 100 İşlem Kredisi hesabınıza yüklenir."
msgstr "Yüklediğiniz zaman kayıt işlemi gerçekleştikten sonra 100 İşlem Kredisi hesabınıza yüklenir."
#. Found in description list item.
msgid "Stok düşmelerinde otomatik olarak stok azaltma"
msgstr "Stok düşmelerinde otomatik olarak stok azaltma"
#. Found in description list item.
msgid "Otomatik güncelleme özelliği"
msgstr "Otomatik güncelleme özelliği"
#. Found in description list item.
msgid "Son 2 günlük siparişlerinizi görüntüleyebilme özelliği"
msgstr "Son 2 günlük siparişlerinizi görüntüleyebilme özelliği"
#. Found in description list item.
msgid "WooCommerce ile tam entegrasyonlu bir şekilde ürünlerinizi tüm detayları ile n11\\'e göndermek"
msgstr "WooCommerce ile tam entegrasyonlu bir şekilde ürünlerinizi tüm detayları ile n11\\e göndermek"
#. Found in faq paragraph.
msgid ""
"Siparişler entegrasyonu ne zaman gelir ?\n"
"Şuan yapım aşamasında en kısa süre içerisinde tamamlanara gerekli güncelleme gönderilecektir."
msgstr ""
"Siparişler entegrasyonu ne zaman gelir ?\n"
"Şuan yapım aşamasında en kısa süre içerisinde tamamlanara gerekli güncelleme gönderilecektir."
#. Screenshot description.
msgid "Ürün Verileri"
msgstr "Ürün Verileri"
#. Screenshot description.
msgid "Ürün Bilgileri"
msgstr ""
#. Screenshot description.
msgid "Ürün Gönderme Kısayolu Toplu"
msgstr "Ürün Gönderme Kısayolu Toplu"
#. Screenshot description.
msgid "Ürün Gönderme Kısayolu"
msgstr "Ürün Gönderme Kısayolu"
#. Screenshot description.
msgid "Ürün Gönderme İşlemi"
msgstr "Ürün Gönderme İşlemi"
#. Screenshot description.
msgid "Özelliklerin Seçilmesi"
msgstr "Özelliklerin Seçilmesi"
#. Found in faq paragraph.
msgid ""
"Eklenti nasıl kullanılır ?\n"
"Kurulum tamamlandıkdan sonra ve api anahtarı girildikden sonra eklenti tam anlamıyla çalışmaya başlar ve eklenti menüsünde kullanım kılavuzunu okuyarak gayet kolay bir kullanımı olduğunu görebilirsiniz."
msgstr ""
#. Found in faq paragraph.
msgid ""
"Nasıl yüklenir ?\n"
"Eklenti etkinleştirdikden sonra gelecek olan eklenti kurulum aşamaları ile kolaylık la yükleyebilirsiniz."
msgstr ""
"Nasıl yüklenir ?\n"
"Eklenti etkinleştirdikden sonra gelecek olan eklenti kurulum aşamaları ile kolaylık la yükleyebilirsiniz."
#. Found in installation paragraph.
msgid "Eklentiyi yükledikten sonra açılacak olan eklenti kurulum aşamlarında kolaylık eklentiyi yükleyebilirsiniz."
msgstr "Eklentiyi yükledikten sonra açılacak olan eklenti kurulum aşamlarında kolaylık eklentiyi yükleyebilirsiniz."
#. Found in changelog list item.
msgid "Entego N11 Eklentisinin yayın hayatına başlaması"
msgstr "Entego N11 Eklentisinin yayın hayatına başlaması"

View File

@@ -0,0 +1,250 @@
# Copyright (C) 2020 Chris Andrews
# This file is distributed under the same license as the GN Publisher plugin.
msgid ""
msgstr ""
"Project-Id-Version: GN Publisher 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gn-publisher\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-08T09:31:26+11:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: gn-publisher\n"
#. Plugin Name of the plugin
#: controllers/admin/class-gnpub-menu.php:35
msgid "GN Publisher"
msgstr ""
#. Plugin URI of the plugin
msgid "https://andrews.com/gn-publisher"
msgstr ""
#. Description of the plugin
msgid "GN Publisher makes RSS feeds that meet the Google News Publisher technical requirements."
msgstr ""
#. Author of the plugin
msgid "Chris Andrews"
msgstr ""
#. Author URI of the plugin
msgid "https://andrews.com"
msgstr ""
#: controllers/admin/class-gnpub-menu.php:34
#: templates/settings.php:9
msgid "GN Publisher Settings"
msgstr ""
#: controllers/admin/class-gnpub-menu.php:81
msgctxt "Text for GN Publisher plugin settings link"
msgid "Settings"
msgstr ""
#: controllers/admin/class-gnpub-settings.php:35
msgid "GN Publisher settings were not saved because the form has expired. Try again."
msgstr ""
#: controllers/admin/class-gnpub-settings.php:51
msgid "GN Publisher settings saved."
msgstr ""
#: templates/settings.php:16
msgid "Include the featured image for a post in the feed"
msgstr ""
#: templates/settings.php:19
msgid "Include featured image"
msgstr ""
#: templates/settings.php:20
msgid "Deactivate this option if your posts already include the featured image in the content."
msgstr ""
#: templates/settings.php:26
msgid "Make GN Publisher the default feed"
msgstr ""
#: templates/settings.php:29
msgid "Set GN Publisher feed as the default WordPress feed"
msgstr ""
#: templates/settings.php:30
msgid "Activate this option to make GN Publisher feed available at the default feed URL (%s)."
msgstr ""
#: templates/settings.php:39
msgid "Save Changes"
msgstr ""
#: templates/settings.php:48
msgid "Hi,<br/> I'm Chris Andrews, a Platinum Level Product Expert on the <a href=\"%1$s\">Google News Publisher Help forum</a> and the owner of <a href=\"%2$s\">Andrews Consulting</a>."
msgstr ""
#: templates/settings.php:57
msgid "GN Publisher is a WordPress plugin designed to output RSS feeds that comply with the <a href=\"%1$s\">Google News RSS Feed Technical Requirements</a> for inclusion in the <a href=\"%2$s\">Google News Publisher Center</a>."
msgstr ""
#: templates/settings.php:63
msgid "The plugin addresses common issues in the RSS feed that cause publications to be turned down, including:"
msgstr ""
#: templates/settings.php:65
msgid "Incomplete articles"
msgstr ""
#: templates/settings.php:66
msgid "Duplicate images"
msgstr ""
#: templates/settings.php:67
msgid "Missing images or media"
msgstr ""
#: templates/settings.php:68
msgid "Missing content (usually social media/Instagram embeds)"
msgstr ""
#: templates/settings.php:69
msgid "Title errors (missing or repeated title)"
msgstr ""
#: templates/settings.php:74
msgid "Installation"
msgstr ""
#: templates/settings.php:75
msgid "GN Publisher is a standard WordPress plugin and can be installed and activated through your site's WordPress admin section. Just search for GN Publisher in the WP plugins repository and install and activate."
msgstr ""
#: templates/settings.php:76
msgid "GN Publisher may also be downloaded to your computer and uploaded, installed, and activated through your WP Admin plugins section."
msgstr ""
#: templates/settings.php:77
msgid "Once installed and activated, you can find your GN Publisher RSS feed that contains all of your posts at:"
msgstr ""
#: templates/settings.php:78
msgid "If permalinks are enabled:"
msgstr ""
#: templates/settings.php:79
msgid "https://yoursite.com/feed/gn (primary feed)"
msgstr ""
#: templates/settings.php:80
msgid "https://yoursite.com/yourcategory/feed/gn (category feeds)"
msgstr ""
#: templates/settings.php:81
msgid "If permalinks are not used:"
msgstr ""
#: templates/settings.php:82
msgid "https://yoursite.com/?feed=gn (primary feed)"
msgstr ""
#: templates/settings.php:83
msgid "https://yoursite.com/yourcategory/?feed=gn (category feeds)"
msgstr ""
#: templates/settings.php:87
msgid "Settings"
msgstr ""
#: templates/settings.php:88
msgid "Remove Featured Image"
msgstr ""
#: templates/settings.php:89
msgid "Some publishers find that their featured image is displayed twice when the article is rendered in the Google News Publisher Center. Google News will turn your site down if that happens. If you see your featured image twice in your articles in the Publisher Center, click on this setting and save."
msgstr ""
#: templates/settings.php:93
msgid "Next, return to your <a href=\"%1$s\">Google News Publisher Center.</a> Under the &#8216;content&#8217; tab, refresh the feed. Wait 10 minutes to give the crawler time to recrawl the feed. Then refresh the entire page in your browser and view your articles to make sure the duplicate images are gone."
msgstr ""
#: templates/settings.php:98
msgid "Replace WP feeds with GN Publisher feeds"
msgstr ""
#: templates/settings.php:99
msgid "If you already have your feeds set up in the Google News Publisher Center and wish to keep them in place without making changes to the feed url, but want to use GN Publisher feeds, activate this setting. This may affect any other services that crawl your standard WordPress RSS feed."
msgstr ""
#: templates/settings.php:103
msgid "Before Applying In The Google News Publisher Center"
msgstr ""
#: templates/settings.php:104
msgid "Check your publication carefully!"
msgstr ""
#: templates/settings.php:105
msgid "Because of the huge number of ways that publishers, plugins, and themes, can manipulate WordPress posts, we can't guarantee that this plugin will result in the technical requirements being met."
msgstr ""
#: templates/settings.php:106
msgid "In the Publisher Center, check under &#8216;content&#8217; &gt; &#8216;articles&#8217;, and make sure:"
msgstr ""
#: templates/settings.php:108
msgid "That each article includes at least one image, and that images are not repeated within an article."
msgstr ""
#: templates/settings.php:109
msgid "Your articles include the full text and appear correctly."
msgstr ""
#: templates/settings.php:110
msgid "Fonts and formatting appear normal."
msgstr ""
#: templates/settings.php:111
msgid "There's no missing media, extra or garbled characters, or other issues that cause the article to appear odd or unfinished."
msgstr ""
#: templates/settings.php:113
msgid "You'll also need to meet additional requirements in the Publisher Center, such as verifying your domain, selecting an appropriate publication name, and setting up your logos correctly."
msgstr ""
#: templates/settings.php:117
msgid "Be aware that Google has certain <a href=\"%1$s\">Content Polices</a> for sites included on Google News properties. More information about applying is available on the <a href=\"%2$s\">Google News Publisher Help Center</a>."
msgstr ""
#: templates/settings.php:126
msgid "Where To Get Help!"
msgstr ""
#: templates/settings.php:127
msgid "Free"
msgstr ""
#: templates/settings.php:131
msgid "If you need help with the GN Publisher plugin or anything related to the RSS feeds that are created, please ask on the official <a href=\"%1$s\">WordPress GN Publisher plugin support forum</a>."
msgstr ""
#: templates/settings.php:139
msgid "If you need general help as a Google News publisher, or help with the Google News Publisher Center, please ask for help on the official <a href=\"%1$s\">Google News Publisher Help Forum</a>. I or some of the other regulars on the forum will try to help."
msgstr ""
#: templates/settings.php:144
msgid "Paid Consulting"
msgstr ""
#: templates/settings.php:145
msgid "I am also available for private consulting with a focus on discoverability and optimization for surfacing on Google News, Newsstand, Top Stories, Discover, Articles for You, and other Google related (and emerging) properties, plus content and readership development."
msgstr ""
#: templates/settings.php:146
msgid "Ready to take your site to the next level?"
msgstr ""
#: templates/settings.php:150
msgid "Contact me at <a href=\"%1$s\">chris@andrews.com</a>"
msgstr ""

View File

@@ -0,0 +1,35 @@
# Copyright (C) 2020 HeroThemes
# This file is distributed under the same license as the Heroic Table of Contents plugin.
msgid ""
msgstr ""
"Project-Id-Version: Heroic Table of Contents 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ht-toc\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-16T11:34:10+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: ht-toc\n"
#. Plugin Name of the plugin
msgid "Heroic Table of Contents"
msgstr ""
#. Plugin URI of the plugin
msgid "https://herothemes.com/heroic-table-of-contents"
msgstr ""
#. Description of the plugin
msgid "Table of Contents section block"
msgstr ""
#. Author of the plugin
msgid "HeroThemes"
msgstr ""
#. Author URI of the plugin
msgid "https://www.herothemes.com/"
msgstr ""

View File

@@ -0,0 +1,28 @@
{
"name": "html-block-with-highlighting",
"repository": {
"url": "https://gitlab.com/css-daily/html-block-with-highlighting"
},
"version": "1.0.0",
"description": "HTML Block with syntax highlighting.",
"scripts": {
"build": "wp-scripts build && node ./copy-deps && node ./pack"
},
"keywords": [],
"author": {
"name": "CSS Daily",
"url": "https://www.css-daily.com/"
},
"license": "GPL-2.0-or-later",
"devDependencies": {
"@wordpress/scripts": "^7.1.3",
"archiver": "^3.1.1",
"fs-extra": "^9.0.0"
},
"dependencies": {
"@wordpress/blocks": "^6.12.1",
"@wordpress/element": "^2.11.0",
"codemirror": "^5.52.2",
"react-codemirror2": "^7.1.0"
}
}

View File

@@ -0,0 +1,4 @@
== Changelog ==
= 1.0.0 =
* Première version d'Infocob Tracking disponible.

View File

@@ -0,0 +1,22 @@
{
"name": "insert-giphy-block",
"version": "0.1.0",
"description": "Search and insert a Giphy directly from your Gutenberg editor.",
"author": "Michael Joseph Panaga",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update"
},
"devDependencies": {
"@wordpress/scripts": "^7.1.2"
},
"dependencies": {
"react-photo-gallery": "^8.0.0"
}
}

View File

@@ -0,0 +1,7 @@
# Changelog
All notable changes to **IP Locator** is documented in this *changelog*.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **IP Locator** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.1] - 2020-04-02
### Initial release

View File

@@ -0,0 +1,238 @@
# Copyright (C) 2020 Symmetria d.o.o.
# This file is distributed under the same license as the Woo KigoKasa API Integration plugin.
msgid ""
msgstr ""
"Project-Id-Version: Woo KigoKasa API Integration 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-kigokasa-"
"api\n"
"POT-Creation-Date: 2020-03-07T03:29:57+01:00\n"
"PO-Revision-Date: 2020-03-07 03:30+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2.4\n"
"X-Domain: kigokasa-api-for-woocommerce\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Plugin Name of the plugin
msgid "Woo KigoKasa API Integration"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.symmetria.hr/kigokasa-api-for-woocommerce/"
msgstr ""
#. Description of the plugin
msgid ""
"This plugin provides integration of KigoKasa API service with WooCommerce."
msgstr ""
#. Author of the plugin
msgid "Symmetria d.o.o."
msgstr ""
#. Author URI of the plugin
msgid "https://www.symmetria.hr/"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:154
msgid "KigoKasa Api"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:168
msgid "KigoKasa API"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:184
msgid "pos_type_0"
msgstr "Disabled"
#: admin/class-woo-kigokasa-api-admin.php:185
msgid "pos_type_1"
msgstr "Invoice"
#: admin/class-woo-kigokasa-api-admin.php:186
msgid "pos_type_2"
msgstr "Offer"
#: admin/class-woo-kigokasa-api-admin.php:205
msgid "Document type"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:210
msgid "Disabled"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:211
msgid "Invoice"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:212
msgid "Offer"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:219
msgid "Payment type"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:224
msgid "Transaction account"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:225
msgid "Card"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:226
msgid "Cash"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:227
msgid "Cheque"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:228
msgid "Other"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:234
msgid "Send Email with document PDF"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:239
msgid "No"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:240
msgid "Yes"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:254
msgid "API account"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:259
msgid "API Username"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:263
msgid "Enter API username here"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:269
msgid "API Password"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:273
msgid "Enter API password here"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:287
msgid "Misc"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:292
msgid "Employee PIN"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:296
msgid "Enter API employee PIN here"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:302
msgid "Shipping Reference Number"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:306
msgid "Enter Shipping Reference Number here"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:314
msgid "E-mail settings"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:316
msgid "This change is global."
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:319
msgid "From name"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:323
msgid "Enter 'From' Name field here"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:329
msgid "From e-mail"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:333
msgid "Enter 'From' E-mail here"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:356
msgid "Shipping VAT number"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:364
msgid "Billing VAT number"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:381
msgid "ID"
msgstr ""
#: admin/class-woo-kigokasa-api-admin.php:389
msgid "Document number"
msgstr ""
#: includes/class-woo-kigokasa-api-activator.php:41
msgid "You do not have proper authorization to activate a plugin!"
msgstr ""
#: includes/class-woo-kigokasa-api-activator.php:49
msgid "This plugin requires "
msgstr ""
#: includes/class-woo-kigokasa-api-activator.php:49
msgid " plugin to be active!"
msgstr ""
#: includes/class-woo-kigokasa-api-request.php:72
msgid "pos_type_"
msgstr ""
#: includes/class-woo-kigokasa-api-request.php:83
msgid "Web Order #"
msgstr ""
#: includes/class-woo-kigokasa-api-request.php:84
#: includes/class-woo-kigokasa-api-request.php:245
msgid "KigoKasa %1$s created. Document number: %2$s"
msgstr "KigoKasa %1$s created. Document number: %2$s"
#: includes/class-woo-kigokasa-api-request.php:289
msgid "%1$s sending you %2$s no. %3$s"
msgstr ""
#: includes/class-woo-kigokasa-api-request.php:297
msgid ""
"Hi %1$s,<br /><br />Thank you for your order.<br /><br />Your %2$s with "
"number <b>%3$s</b> is in the attachment.<br /><br />We look forward to "
"fulfilling your order soon."
msgstr ""
#: public/class-woo-kigokasa-api-public.php:110
#: public/class-woo-kigokasa-api-public.php:118
msgid "VAT number"
msgstr ""
#: public/class-woo-kigokasa-api-public.php:111
#: public/class-woo-kigokasa-api-public.php:119
msgctxt "placeholder"
msgid "12345678901"
msgstr ""

View File

@@ -0,0 +1,27 @@
# Copyright (C) 2020 Vukica Tomić
# This file is distributed under the same license as the Latin Now! plugin.
msgid ""
msgstr ""
"Project-Id-Version: Latin Now! 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/latin-now\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-20T13:42:50+01:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: latin-now\n"
#. Plugin Name of the plugin
msgid "Latin Now!"
msgstr ""
#. Description of the plugin
msgid "Converts the Serbian WordPress admin panel into the latin alphabet. No configuration required."
msgstr "Odmah menja Vordpres admin panel iz ćirilice u latinicu. Bez dodatnih podešavanja."
#. Author of the plugin
msgid "Vukica Tomić"
msgstr ""

View File

@@ -0,0 +1,4 @@
## Change log
### 1.0.0
* Initial release

View File

@@ -0,0 +1,213 @@
# Copyright (C) 2020 MadrasThemes
# This file is distributed under the same license as the MAS Brands for WooCommerce package.
msgid ""
msgstr ""
"Project-Id-Version: MAS Brands for WooCommerce 1.0.2\n"
"Report-Msgid-Bugs-To: "
"https://github.com/transvelo/mas-woocommerce-brands/issues\n"
"POT-Creation-Date: 2020-03-23 04:27:22+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: includes/class-mas-wc-brands-admin-settings.php:17
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-settings.php:17
msgid "Brands"
msgstr ""
#: includes/class-mas-wc-brands-admin-settings.php:38
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-settings.php:38
msgid "Brands Settings"
msgstr ""
#: includes/class-mas-wc-brands-admin-settings.php:41
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-settings.php:41
msgid "Brand Attribute"
msgstr ""
#: includes/class-mas-wc-brands-admin-settings.php:42
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-settings.php:42
msgid "Choose a product attribute that will be used as brand."
msgstr ""
#: includes/class-mas-wc-brands-admin-settings.php:53
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-settings.php:53
msgid "Enable Plugins Styles"
msgstr ""
#: includes/class-mas-wc-brands-admin-settings.php:54
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-settings.php:54
msgid "Choose to enable plugin styles."
msgstr ""
#: includes/class-mas-wc-brands-admin-settings.php:107
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-settings.php:107
msgid "Choose a attribute"
msgstr ""
#: includes/class-mas-wc-brands-admin-taxonomies.php:37
#: includes/class-mas-wc-brands-admin-taxonomies.php:68
#: includes/class-mas-wc-brands-admin-taxonomies.php:141
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:37
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:68
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:141
msgid "Thumbnail"
msgstr ""
#: includes/class-mas-wc-brands-admin-taxonomies.php:41
#: includes/class-mas-wc-brands-admin-taxonomies.php:73
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:41
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:73
msgid "Upload/Add image"
msgstr ""
#: includes/class-mas-wc-brands-admin-taxonomies.php:42
#: includes/class-mas-wc-brands-admin-taxonomies.php:74
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:42
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:74
msgid "Remove image"
msgstr ""
#: includes/class-mas-wc-brands-admin-taxonomies.php:108
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin-taxonomies.php:108
msgid "Image"
msgstr ""
#: includes/class-mas-wc-brands-admin.php:33
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin.php:33
msgid "Choose an image"
msgstr ""
#: includes/class-mas-wc-brands-admin.php:34
#: mas-woocommerce-brands/includes/class-mas-wc-brands-admin.php:34
msgid "Use image"
msgstr ""
#: includes/class-mas-wc-brands.php:48 includes/class-mas-wc-brands.php:55
#: mas-woocommerce-brands/includes/class-mas-wc-brands.php:48
#: mas-woocommerce-brands/includes/class-mas-wc-brands.php:55
msgid "Cheatin&#8217; huh?"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-description.php:25
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-description.php:25
msgid "MAS WC Brand Description"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-description.php:26
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-description.php:26
msgid "When viewing a brand archive, show the current brands description."
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-description.php:78
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:127
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-description.php:78
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:127
msgid "Title:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:24
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:24
msgid "MAS WC Brand Thumbnails"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:25
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:25
msgid "Show a grid of brand thumbnails."
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:132
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:132
msgid "Columns:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:137
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:137
msgid "Image Size:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:142
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:142
msgid "Fluid columns:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:147
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:147
msgid "Number:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:148
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:148
msgid "All"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:152
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:152
msgid "Exclude:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:153
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:153
msgid "None"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:157
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:157
msgid "Hide empty brands:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:159
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:159
msgid "Yes"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:160
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:160
msgid "No"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:165
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:165
msgid "Order by:"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:167
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:167
msgid "Name"
msgstr ""
#: includes/widgets/class-mas-wc-widget-brand-thumbnails.php:168
#: mas-woocommerce-brands/includes/widgets/class-mas-wc-widget-brand-thumbnails.php:168
msgid "Count"
msgstr ""
#: mas-woocommerce-brands/templates/shortcodes/brands-a-z.php:35
#: templates/shortcodes/brands-a-z.php:35
msgid "&uarr; Top"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "MAS Brands for WooCommerce"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://github.com/madrasthemes/mas-woocommerce-brands"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Add brands to your products, as well as widgets and shortcodes for "
"displaying your brands."
msgstr ""
#. Author of the plugin/theme
msgid "MadrasThemes"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://madrasthemes.com/"
msgstr ""

View File

@@ -0,0 +1,6 @@
*** Changelog ***
= 1.0.0 - 2020-04-06 =
* First Release
* accept payments via Mobipaid.
* support partial / full refund.

View File

@@ -0,0 +1,104 @@
msgid ""
msgstr ""
"Project-Id-Version: Mobipaid 1.0.0\n"
"POT-Creation-Date: 2020-04-02 15:22+0700\n"
"PO-Revision-Date: 2020-04-02 15:23+0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: __\n"
"X-Poedit-SearchPath-0: .\n"
#: includes/class-mobipaid.php:26 includes/class-mobipaid.php:73
msgid "Mobipaid"
msgstr "Mobipaid"
#: includes/class-mobipaid.php:27
msgid ""
"Mobipaid redirects customers to Mobipaid to enter their payment information."
msgstr "Mobipaid 将客户重定向到 Mobi付款输入他们的付款信息。"
#: includes/class-mobipaid.php:64
msgid "Enable/Disable"
msgstr "启用/禁用"
#: includes/class-mobipaid.php:65
msgid "Enable Mobipaid"
msgstr "启用 Mobipaid"
#: includes/class-mobipaid.php:70
msgid "Title"
msgstr "标题"
#: includes/class-mobipaid.php:72
msgid "This is the title which the user sees during checkout."
msgstr "这是用户在结账时看到的标题。"
#: includes/class-mobipaid.php:77
msgid "Description"
msgstr "描述"
#: includes/class-mobipaid.php:79
msgid "This is the description which the user sees during checkout."
msgstr "这是用户在结账时看到的描述。"
#: includes/class-mobipaid.php:84
msgid "Access Key"
msgstr "访问密钥"
#: includes/class-mobipaid.php:86
msgid ""
"* This is the access key, received from Mobipaid developer portal. "
"( required )"
msgstr "* 这是从 Mobipaid 开发人员门户网站接收的访问密钥 ( 必填项 )"
#: includes/class-mobipaid.php:90
msgid "Enable Logging"
msgstr "启用日志记录"
#: includes/class-mobipaid.php:92
msgid "Enable transaction logging for mobipaid."
msgstr "启用 mobipaid 的事务日志记录。"
#: includes/class-mobipaid.php:105
msgid "Please enter an access key!"
msgstr "请输入访问密钥!"
#: includes/class-mobipaid.php:209
msgid "We are sorry, currency is not supported. Please contact us."
msgstr "很抱歉,不支持货币。 请联系我们。"
#: includes/class-mobipaid.php:212
msgid "Error while Processing Request: please try again."
msgstr "处理请求时出错:请重试。"
#: includes/class-mobipaid.php:291
msgid "Mobipaid partial refund successfull."
msgstr "Mobipaid 部分退款成功。"
#: includes/class-mobipaid.php:297 includes/class-mobipaid.php:330
msgid "Refund Failed"
msgstr "退款失败"
#: includes/class-mobipaid.php:325
msgid "Mobipaid full refund successfull."
msgstr "Mobipaid 全额退款成功。"
#: includes/class-mobipaid.php:356
msgid ""
"Mobipaid notes: You still have amount to be refunded, because Merchant use "
"tax/tip when customer paid. Please contact the merchant to refund the tax/"
"tip amount."
msgstr ""
"Mobipaid 备注:您仍有退款金额,因为卖家在买家付款时使用税费/小费。 请联系商"
"家以退还税款/小费金额。"
#: mobipaid.php:92
msgid "Settings"
msgstr "设置"

View File

@@ -0,0 +1,477 @@
# Copyright (C) 2020 Manfred Rodríguez
# This file is distributed under the same license as the Mojito Shipping plugin.
msgid ""
msgstr ""
"Project-Id-Version: Mojito Shipping 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mojito-shipping\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-12T11:30:09-05:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.3.0\n"
"X-Domain: mojito-shipping\n"
#. Plugin Name of the plugin
msgid "Mojito Shipping"
msgstr ""
#. Plugin URI of the plugin
msgid "https://mojitowp.com/"
msgstr ""
#. Description of the plugin
msgid "Mojito Shipping, add Correos de Costa Rica Shipping options."
msgstr ""
#. Author of the plugin
msgid "Manfred Rodríguez"
msgstr ""
#. Author URI of the plugin
msgid "https://marodok.com"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:38
#: admin/class-mojito-shipping-admin.php:115
msgid "Carrier settings"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:39
#: admin/class-mojito-shipping-admin.php:116
msgid "Select your Carrier"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:43
#: admin/class-mojito-shipping-admin.php:120
msgid "Carrier"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:48
#: admin/class-mojito-shipping-admin.php:125
msgid "Select your service provider"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:61
#: admin/class-mojito-shipping-admin.php:139
msgid "Your business settings"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:62
#: admin/class-mojito-shipping-admin.php:140
msgid "Set settings for your store."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:66
#: admin/class-mojito-shipping-admin.php:144
msgid "Store location"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:70
#: admin/class-mojito-shipping-admin.php:148
msgid "Inside GAM"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:71
#: admin/class-mojito-shipping-admin.php:149
msgid "Outsite GAM"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:73
#: admin/class-mojito-shipping-admin.php:151
msgid "Indicate if your store is located inside or outside the GAM"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:77
#: admin/class-mojito-shipping-admin.php:155
msgid "Service for local shipping"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:81
#: admin/class-mojito-shipping-admin.php:159
msgid "Pymexpress"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:82
#: admin/class-mojito-shipping-admin.php:160
msgid "EMS Courier"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:84
#: admin/class-mojito-shipping-admin.php:162
msgid "Select the service to deliver the packages inside Costa Rica"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:88
msgid "Service for international shipping"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:92
msgid "Exporta Fácil"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:93
msgid "EMS Premium"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:94
msgid "Correo Internacional Prioritario"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:95
msgid "Correo No Internacional Prioritario"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:96
msgid "Correo Internacional Prioritario con Certificado"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:98
msgid "Select the service to deliver the packages outside Costa Rica"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:102
msgid "Add IVA calculation"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:105
msgid "Yes, I must pay IVA to Correos de Costa Rica"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:106
msgid "No, my business is IVA exempt"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:109
msgid "Please be sure that your business has an IVA exemption into Correos de Costa Rica system."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:174
msgid "Minimal amounts and rounding"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:175
#: admin/class-mojito-shipping-admin.php:303
msgid "Set the minimal amount to charge."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:179
msgid "Round the final amount"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:182
msgid "Do not round the amount"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:183
msgid "Round to the next 100 (eg: 3203.56 => 3300)"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:184
msgid "Round to the next 500 (eg: 3203.56 => 3500)"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:185
msgid "Round to the next 1000 (eg: 3203.56 => 4000)"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:188
msgid "Round the final amount of the shipment to facilitate the reading of the amount."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:192
#: admin/class-mojito-shipping-admin.php:307
msgid "Enable minimal amounts"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:195
#: admin/class-mojito-shipping-admin.php:310
msgid "Disable the minimal amounts"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:196
#: admin/class-mojito-shipping-admin.php:311
msgid "Enable the minimal amounts"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:199
#: admin/class-mojito-shipping-admin.php:314
msgid "This setting allows you to ensure a minimum shipping charge."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:203
#: admin/class-mojito-shipping-admin.php:318
msgid "General minimal amount"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:205
#: admin/class-mojito-shipping-admin.php:320
msgid "Set a minimum charge."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:210
msgid "Minimal amount for local Shipping inside the GAM"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:212
msgid "Set a minimum charge for your local shipping in the GAM."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:217
msgid "Minimal amount for local Shipping outside the GAM"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:219
msgid "Set a minimum charge for your local shipping out the GAM."
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:224
msgid "Minimal amount for international Shipping"
msgstr ""
#: admin/class-mojito-shipping-admin-pro.php:226
msgid "Set a minimum charge for your international shipping."
msgstr ""
#: admin/class-mojito-shipping-admin.php:105
msgid "General"
msgstr ""
#: admin/class-mojito-shipping-admin.php:106
msgid "Correos de Costa Rica"
msgstr ""
#: admin/class-mojito-shipping-admin.php:107
#: admin/class-mojito-shipping-admin.php:337
msgid "Information"
msgstr ""
#: admin/class-mojito-shipping-admin.php:178
msgid "Web Service Settings"
msgstr ""
#: admin/class-mojito-shipping-admin.php:179
msgid "Configuration to consume the Correos de Costa Rica web service."
msgstr ""
#: admin/class-mojito-shipping-admin.php:183
msgid "URL Web Service"
msgstr ""
#: admin/class-mojito-shipping-admin.php:187
msgid "Be sure the URL ends with \"?WSDL\", example: http://amistad.correos.go.cr:82/wserPruebas/wsAppCorreos.wsAppCorreos.svc?WSDL"
msgstr ""
#: admin/class-mojito-shipping-admin.php:191
msgid "User"
msgstr ""
#: admin/class-mojito-shipping-admin.php:196
msgid "Pass"
msgstr ""
#: admin/class-mojito-shipping-admin.php:201
msgid "User ID"
msgstr ""
#: admin/class-mojito-shipping-admin.php:206
msgid "Client Type"
msgstr ""
#: admin/class-mojito-shipping-admin.php:211
msgid "Service ID"
msgstr ""
#: admin/class-mojito-shipping-admin.php:216
msgid "Client code"
msgstr ""
#: admin/class-mojito-shipping-admin.php:233
msgid "Sender Settings"
msgstr ""
#: admin/class-mojito-shipping-admin.php:234
msgid "Your company or store information."
msgstr ""
#: admin/class-mojito-shipping-admin.php:238
msgid "Name"
msgstr ""
#: admin/class-mojito-shipping-admin.php:240
msgid "Sender Name"
msgstr ""
#: admin/class-mojito-shipping-admin.php:244
msgid "Address"
msgstr ""
#: admin/class-mojito-shipping-admin.php:246
msgid "Sender physical address"
msgstr ""
#: admin/class-mojito-shipping-admin.php:250
msgid "Zip Code"
msgstr ""
#: admin/class-mojito-shipping-admin.php:252
msgid "Sender zip code"
msgstr ""
#: admin/class-mojito-shipping-admin.php:256
msgid "Phone"
msgstr ""
#: admin/class-mojito-shipping-admin.php:258
msgid "Sender's phone number"
msgstr ""
#: admin/class-mojito-shipping-admin.php:274
msgid "Message In Mail Orders Settings"
msgstr ""
#: admin/class-mojito-shipping-admin.php:275
msgid "Custom message to show it on orders mail."
msgstr ""
#: admin/class-mojito-shipping-admin.php:279
msgid "Label"
msgstr ""
#: admin/class-mojito-shipping-admin.php:284
msgid "Message"
msgstr ""
#: admin/class-mojito-shipping-admin.php:302
msgid "Minimal amounts"
msgstr ""
#: admin/class-mojito-shipping-admin.php:338
msgid "Settings details."
msgstr ""
#: admin/class-mojito-shipping-admin.php:355
msgid "Carriers enabled"
msgstr ""
#: admin/class-mojito-shipping-admin.php:362
msgid "No carrier is enabled"
msgstr ""
#: admin/class-mojito-shipping-admin.php:376
msgid "SoapClient is enabled"
msgstr ""
#: admin/class-mojito-shipping-admin.php:378
msgid "SoapClient is not enabled"
msgstr ""
#: admin/class-mojito-shipping-admin.php:387
msgid "WooCommerce weight unit is \"g\""
msgstr ""
#: admin/class-mojito-shipping-admin.php:389
msgid "WooCommerce weight unit is \"kg\", conversion will be kg => g (1kg = 1000g)"
msgstr ""
#: admin/class-mojito-shipping-admin.php:391
msgid "WooCommerce weight unit is \"lbs\", conversion will be lbs => g (1lbs = 453.59g)"
msgstr ""
#: admin/class-mojito-shipping-admin.php:393
msgid "WooCommerce weight unit is \"oz\", conversion will be oz => g (1oz = 28.35g)"
msgstr ""
#: admin/class-mojito-shipping-admin.php:430
msgid "Your lightest product weight %1$s%2$s and the heaviest %3$s%4$s."
msgstr ""
#: admin/class-mojito-shipping-admin.php:434
msgid "You have %s product without weight"
msgstr ""
#: admin/class-mojito-shipping-admin.php:444
msgid "All its products have defined weight"
msgstr ""
#: admin/class-mojito-shipping-admin.php:451
msgid "The rate calculation does not include the collection amount. (Service provided by Correos de Costa Rica)"
msgstr ""
#: admin/class-mojito-shipping-admin.php:452
msgid "The calculated cost is only an estimate and the price may change depending on the contract, cost table, rate adjustments, and final plant weight."
msgstr ""
#: admin/class-mojito-shipping-admin.php:453
msgid "This information is intended to be used as an estimate."
msgstr ""
#: admin/class-mojito-shipping-admin.php:454
msgid "The final cost of your bill may vary depending on the weight, area of origin and destination, policies in force at the time of shipment and the service contract."
msgstr ""
#: admin/partials/mojito-shipping-admin-display.php:16
msgid "Settings"
msgstr ""
#: admin/partials/mojito-shipping-require-plugins.php:13
msgid "Mojito Shipping requires WC Provincia-Canton-Distrito to be active."
msgstr ""
#: admin/partials/mojito-shipping-require-plugins.php:24
msgid "Mojito Shipping Plugin requires WooCommerce to be active."
msgstr ""
#: includes/class-mojito-shipping-method-ccr-webservice-client.php:189
#: includes/class-mojito-shipping-method-ccr-webservice-client.php:195
msgid "There was an error with Correos de Costa Rica:"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:33
#: includes/class-mojito-shipping-method-ccr.php:37
#: includes/class-mojito-shipping-method-ccr.php:107
#: includes/class-mojito-shipping-method-ccr.php:128
msgid "Mojito Shipping: Correos de Costa Rica"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:38
msgid "Send packages using Correos de Costa Rica services"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:97
msgid "Enable/Disable"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:99
msgid "Enable this shipping method"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:104
msgid "Title"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:106
msgid "Title to be display on site"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:331
msgid "shipping to"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:332
msgid "grams"
msgstr ""
#: includes/class-mojito-shipping-method-ccr.php:337
msgid "Alert: The maximum weight allowed by Correos de Costa Rica is 30,000 grams (30 kg)"
msgstr ""
#: includes/class-mojito-shipping.php:323
msgid "Correos de Costa Rica Answer:"
msgstr ""
#: includes/class-mojito-shipping.php:378
msgid "Guide number from Correos de Costa Rica: "
msgstr ""

View File

@@ -0,0 +1,111 @@
# Changelog
## [0.5.16]
### Updated
- JS integration. Use of jquery and jquery-ui built in libraries
## [0.5.15]
### Fixed
- Engine support coverage in choose product. Allow uncheck a coverage
## [0.5.14]
### Updated
- Engine to support coverage in choose product
## [0.5.13]
### Updated
- Product calendar : Updated engine library + translations
## [0.5.12]
### Added
- Selector form micro-templates integration. Selector form adapts fields
depending on the instance configuration.
## [0.5.11]
### Fixed
- Use get_queried_object() in order to get the current page in order
to prepare it for mybooking-js-engine library. (check shortcodes)
## [0.5.10]
### Fixed
- Custom JS and CSS enqueue version adjust : Use get_file_data
## [0.5.9]
### Added
- Custom JS and CSS enqueue version
## [0.5.8]
### Added
- Integration WMPL slugs
## [0.5.7]
### Added
- Renting translations
## [0.5.6]
### Added
- Wizard integration
### Fixed
- Multiple quantities
## [0.5.5]
### Added
- Bootstrap Javascript integration
## [0.5.4]
### Added
- Activities module: Activities Api client
- Activities module: Activities list and pagination shortcode
- Activities module: Activity detail page route
## [0.5.3] 2020-02-10
### Added
- Activities module: Shopping cart new templates
- Activities module: Summary page new templates
- Activities module: Order page shortcode and templates
### Updated
- Reservation Engine JS
## [0.5.2] 2020-02-07
### Fixed
- Storing activities workflow pages in settings. Incorrect name in mybooking_plugin_settings_activities
## [0.5.1] 2020-02-03
### Fixed
- Updated reservation engine. Extract two characters language code from five characters one.

View File

@@ -0,0 +1,693 @@
# Copyright (C) 2020 Vlado Grčić
# This file is distributed under the same license as the Page Restrict for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Page Restrict for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/page_restrict_domain\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-04-03T19:56:08+02:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.3.0\n"
"X-Domain: page_restrict_domain\n"
#. Plugin Name of the plugin
#: includes/class-page-restrict.php:84
msgid "Page Restrict for WooCommerce"
msgstr ""
#. Description of the plugin
msgid "Restricts access to pages using WooCommerce products."
msgstr ""
#. Author of the plugin
msgid "Vlado Grčić"
msgstr ""
#. Author URI of the plugin
msgid "vladogrcic.com"
msgstr ""
#: admin/class-page-restrict-admin.php:422
msgid "Page Restrict"
msgstr ""
#: admin/class-page-restrict-admin.php:423
#: admin/partials/page-restrict-admin-pages.php:19
msgid "Page Restrict Pages"
msgstr ""
#: admin/class-page-restrict-admin.php:423
msgid "Pages"
msgstr ""
#: admin/class-page-restrict-admin.php:425
#: admin/partials/page-restrict-admin-settings.php:18
msgid "Page Restrict Settings"
msgstr ""
#: admin/class-page-restrict-admin.php:425
#: admin/class-page-restrict-admin.php:548
msgid "Settings"
msgstr ""
#: admin/class-page-restrict-admin.php:427
#: admin/partials/page-restrict-admin-quick-start.php:60
msgid "Page Restrict Quick Start"
msgstr ""
#: admin/class-page-restrict-admin.php:427
#: admin/class-page-restrict-admin.php:550
msgid "Quick Start"
msgstr ""
#: admin/class-page-restrict-admin.php:489
msgid "You haven't disabled GUEST CHECKOUT in WooCommerce!"
msgstr ""
#: admin/class-page-restrict-admin.php:490
msgid "If your unregistered users are buying products with WooCommerce without that disabled the products will not be able to be connected to any account which means this plugin can't know who bought it and can't allow access to specified pages correctly."
msgstr ""
#: admin/class-page-restrict-admin.php:491
msgid "Go to:"
msgstr ""
#: admin/class-page-restrict-admin.php:492
msgid "WooCommerce --> Settings --> Accounts & Privacy"
msgstr ""
#: admin/class-page-restrict-admin.php:493
msgid "Disable option: \"Allow customers to place orders without an account\"."
msgstr ""
#: admin/includes/class-page-restrict-admin-classic-metabox-main.php:38
msgid "Restrict Page for WooCommerce"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:33
msgid "Post Title"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:41
msgid "Post Slug"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:51
msgid "Post Status"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:59
msgid "Published"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:62
msgid "Scheduled"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:72
msgid "View"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:73
msgid "Edit"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:83
#: admin/partials/page-restrict-admin-classic-metabox.php:54
#: admin/assets/js/block-section-restrict.js:385
#: admin/assets/js/metas.js:283
msgid "Products"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:86
#: admin/partials/page-restrict-admin-classic-metabox.php:57
#: admin/assets/js/block-section-restrict.js:372
#: admin/assets/js/metas.js:278
msgid "Lock by Products"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:103
#: admin/partials/page-restrict-admin-classic-metabox.php:75
#: admin/assets/js/metas.js:289
msgid "Page to show if product not bought"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:124
#: admin/partials/page-restrict-admin-classic-metabox.php:95
#: admin/assets/js/metas.js:295
msgid "Redirect if product was not bought"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:126
#: admin/partials/page-restrict-admin-classic-metabox.php:100
#: admin/assets/js/metas.js:305
msgid "Page to show if user is not logged in"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:147
#: admin/partials/menu-pages/settings/tabs/tab-general.php:272
#: admin/partials/page-restrict-admin-classic-metabox.php:120
#: admin/assets/js/metas.js:311
msgid "Redirect if user is not logged in"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:150
#: admin/partials/page-restrict-admin-classic-metabox.php:125
#: admin/assets/js/block-section-restrict.js:448
#: admin/assets/js/metas.js:351
msgid "Timeout"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:154
#: admin/partials/page-restrict-admin-classic-metabox.php:128
#: admin/assets/js/block-section-restrict.js:394
#: admin/assets/js/metas.js:323
msgid "Days"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:159
#: admin/partials/page-restrict-admin-classic-metabox.php:132
#: admin/assets/js/block-section-restrict.js:405
#: admin/assets/js/metas.js:329
msgid "Hours"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:164
#: admin/partials/page-restrict-admin-classic-metabox.php:136
#: admin/assets/js/block-section-restrict.js:416
#: admin/assets/js/metas.js:335
msgid "Minutes"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:169
#: admin/partials/page-restrict-admin-classic-metabox.php:140
#: admin/assets/js/block-section-restrict.js:427
#: admin/assets/js/metas.js:341
msgid "Seconds"
msgstr ""
#: admin/partials/menu-pages/pages/pages-page.php:174
#: admin/partials/page-restrict-admin-classic-metabox.php:144
#: admin/assets/js/metas.js:348
msgid "Views"
msgstr ""
#: admin/partials/menu-pages/pages/pages.php:29
msgid "Filter by Post Type"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:43
msgid "/en/page/all-page-settings-classic.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:45
msgid "/en/page/all-page-settings-classic-screen-options.png"
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:48
msgid "For older WordPress versions or if you just want to use the classic editor you will see classic WordPress metaboxes. The options are the same as on the new gutenberg editor."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:49
msgid "In the Products section you can choose which product to restrict the page with."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:50
msgid "In the Page to Show section you can choose which pages to show if the user hasn't bought a product, if it expired or if the user hasn't logged in. You can also choose to redirect to that page instead of just inserting the content into your chosen restricted page which is the default."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:51
msgid "In the Timeout section set the time you want the bought product to expire if at all. You can choose to also expire it by views."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:53
msgid "If you don't see it remember to turn it on in Screen Options."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict-classic.php:58
msgid "Restrict the entire page if using the classic editor"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:46
msgid "/en/page/check-plugin-box.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:48
msgid "/en/page/enable-meta.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:50
msgid "/en/page/products-page-settings.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:52
msgid "/en/page/page-to-show-page-settings.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:54
msgid "/en/page/timeout-page-settings.png"
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:56
msgid "While editing your page click on the menu shown below."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:57
msgid "If its not there click on"
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:59
msgid "[ More tools & options ] --> [ Plugins ] --> [ Page Restrict for WooCommerce ]."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:60
msgid "Choose which product or products you want to use in order to restrict the page."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:61
msgid "Choose which pages to use for restrict messages if the user didn't buy the product, the bought product expired or didn't login into the site."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:63
msgid "Choose whether you want to redirect to those pages instead of the default which is to insert the selected page content into the restricted page."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:65
msgid "Restrict access to the page by setting the time you want the bought product to expire or you can choose to also expire it by views as well."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:66
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:61
msgid "Leave it 0 to just restrict by products only. That means it just checks if the user bought the product. If they did it will give them access to the page indefinitely."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-page-restrict.php:71
msgid "Restrict the entire page"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-restrict-general.php:42
msgid "/en/page/all-pages-in-one.png"
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-restrict-general.php:44
msgid "You can look over multiple pages at once and restrict them by going to the"
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-restrict-general.php:46
msgid "[ Page Restrict ] --> [ Pages ] menu page."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-restrict-general.php:51
msgid "General features available for the plugin"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:46
msgid "/en/section/add-restrict-section.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:48
msgid "/en/section/general-section-settings.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:50
msgid "/en/section/products-sections-settings.png"
msgstr ""
#. translators: Replace this entire string with the url to your image.
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:52
msgid "/en/section/timeout-sections-settings.png"
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:54
msgid "The Restrict Section for WooCommerce block is located under Layout Element pictured below."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:55
msgid "Using Inverse Block you can change whether the content in the section should be shown or hidden. By default it hides the section content."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:56
msgid "If you want to tell the user what to do to get access to the hidden blocks you use the Inverse block to show that."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:57
msgid "You can mirror settings from a block above or below the current one."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:58
msgid "For example if you put a 100 day timeout in that other block this block will have a 100 day timeout as well."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:59
msgid "Products using which you can restrict access to the blocks content. You can choose one or multiple products."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:60
msgid "Restrict access to the section by setting the time you want the bought product to expire."
msgstr ""
#: admin/partials/menu-pages/quick_start/tabs/tab-add-section-restrict.php:66
msgid "Restrict blocks"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:26
msgid "Limit Available Products to Restrict Pages With"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:30
msgid "Limit to Virtual Products"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:34
msgid "Limit to Downloadable Products"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:41
msgid "* Warning:"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:42
msgid "If you decide to reduce available products to choose from for page restriction,"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:43
msgid "all products not matching"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:44
msgid "those checked attributes for all existing restricted pages"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:45
msgid "will be removed."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:52
msgid "Limit Pages by Post Type"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:54
msgid "Post Types"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:108
msgid "* When you have chosen your post types"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:112
msgid "only pages matching them"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:116
msgid "can be used for"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:120
msgid "restrict messages."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:126
msgid "Restrict messages"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:130
msgid "= Messages used to show your users they have no access to them either because they haven't logged in, haven't bought the product or their bought product expired."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:137
msgid "Default page if product not bought on site pages"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:140
msgid "Page to show if not bought"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:164
msgid "Choose which page to use if a"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:168
msgid "product wasn't bought or expired"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:172
msgid "for all restricted pages."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:180
msgid "Redirect if page not bought"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:186
msgid "Choose to"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:190
#: admin/partials/menu-pages/settings/tabs/tab-general.php:282
msgid "redirect to the page"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:194
msgid "instead of the default which is to show the chosen page into the content area of the restricted page."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:200
#: admin/partials/menu-pages/settings/tabs/tab-general.php:292
msgid "Warning:"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:201
#: admin/partials/menu-pages/settings/tabs/tab-general.php:293
msgid "If you decide to choose a private page regular users won't be able to redirect to it. It will just return a 404 error."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:211
#: admin/partials/menu-pages/settings/tabs/tab-general.php:303
msgid "* General settings for pages when the user"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:215
msgid "didn't buy the product or it expired"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:219
#: admin/partials/menu-pages/settings/tabs/tab-general.php:311
msgid "if a page wasn't chosen on a per page bases."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:227
msgid "Default page if user is not logged on site pages"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:230
msgid "Page to show if not logged in"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:256
msgid "Choose which page to use if a user"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:260
msgid "wasn't logged"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:264
msgid "in for all restricted pages."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:278
msgid "Choose to "
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:286
msgid " instead of the default which is to show the chosen page into the content area of the restricted page."
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-general.php:307
msgid "wasn't logged in"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-plugin.php:26
msgid "On Plugin Uninstallion"
msgstr ""
#: admin/partials/menu-pages/settings/tabs/tab-plugin.php:30
msgid "Delete all data connected to the plugin on uninstall"
msgstr ""
#: admin/partials/page-restrict-admin-classic-metabox.php:72
#: admin/assets/js/metas.js:317
msgid "Page to Show"
msgstr ""
#: admin/partials/page-restrict-admin-classic-metabox.php:155
#: admin/partials/page-restrict-admin-pages.php:49
#: admin/partials/page-restrict-admin-settings.php:72
#: admin/assets/js/general-block-var.js:51
msgid "Select Value"
msgstr ""
#: admin/partials/page-restrict-admin-classic-metabox.php:158
#: admin/partials/page-restrict-admin-pages.php:53
#: admin/partials/page-restrict-admin-settings.php:75
#: admin/assets/js/general-block-var.js:53
msgid "Search"
msgstr ""
#: admin/partials/page-restrict-admin-classic-metabox.php:159
#: admin/partials/page-restrict-admin-pages.php:54
#: admin/partials/page-restrict-admin-settings.php:76
#: admin/assets/js/general-block-var.js:54
msgid "No Results"
msgstr ""
#: admin/partials/page-restrict-admin-classic-metabox.php:160
#: admin/partials/page-restrict-admin-pages.php:55
#: admin/partials/page-restrict-admin-settings.php:77
msgid "Searching.."
msgstr ""
#: admin/partials/page-restrict-admin-pages.php:39
#: admin/partials/page-restrict-admin-settings.php:47
msgid "Save"
msgstr ""
#: admin/partials/page-restrict-admin-quick-start.php:67
msgid "Add Section Restrict"
msgstr ""
#: admin/partials/page-restrict-admin-quick-start.php:68
msgid "Add Page Restrict"
msgstr ""
#: admin/partials/page-restrict-admin-quick-start.php:69
msgid "Add Page Restrict - Classic Editor"
msgstr ""
#: admin/partials/page-restrict-admin-quick-start.php:70
#: admin/partials/page-restrict-admin-settings.php:28
#: admin/assets/js/block-section-restrict.js:355
msgid "General"
msgstr ""
#: admin/partials/page-restrict-admin-settings.php:29
msgid "Plugin"
msgstr ""
#: public/includes/class-page-restrict-public-section-blocks.php:297
#: public/includes/class-page-restrict-public-section-blocks.php:392
msgid "Your access to this page expired or you haven't bought products needed to access this page. Buy"
msgstr ""
#: public/includes/class-page-restrict-public-section-blocks.php:297
msgid "in order to access this section!"
msgstr ""
#: public/includes/class-page-restrict-public-section-blocks.php:392
#: public/includes/class-page-restrict-public-section-blocks.php:406
#: public/includes/class-page-restrict-public-section-blocks.php:511
msgid "in order to access this page!"
msgstr ""
#: public/includes/class-page-restrict-public-section-blocks.php:405
#: public/includes/class-page-restrict-public-section-blocks.php:510
msgid "logged in"
msgstr ""
#: public/includes/class-page-restrict-public-section-blocks.php:406
#: public/includes/class-page-restrict-public-section-blocks.php:511
msgid "You need to be"
msgstr ""
#: admin/assets/js/block-section-restrict.js:28
msgid "Restrict Section for WooCommerce"
msgstr ""
#: admin/assets/js/block-section-restrict.js:29
msgid "Restricts access to sections of pages using WooCommerce products."
msgstr ""
#: admin/assets/js/block-section-restrict.js:284
msgid "Show restricted content"
msgstr ""
#: admin/assets/js/block-section-restrict.js:288
msgid "Inverse Block"
msgstr ""
#: admin/assets/js/block-section-restrict.js:298
msgid "Show content if user has no access."
msgstr ""
#: admin/assets/js/block-section-restrict.js:300
msgid "This is to notify the user they don't have access and what to do to access it."
msgstr ""
#: admin/assets/js/block-section-restrict.js:306
msgid "Default: The user will not see the text in the section"
msgstr ""
#: admin/assets/js/block-section-restrict.js:311
msgid "Default Restrict Message"
msgstr ""
#: admin/assets/js/block-section-restrict.js:320
msgid "Show a Restrict Message which contains products needed to buy instead of nothing."
msgstr ""
#: admin/assets/js/block-section-restrict.js:325
msgid "Default: Section will be empty."
msgstr ""
#: admin/assets/js/block-section-restrict.js:328
msgid "Copy settings from another block"
msgstr ""
#: admin/assets/js/block-section-restrict.js:332
msgid "Above block"
msgstr ""
#: admin/assets/js/block-section-restrict.js:344
msgid "Below block"
msgstr ""
#: admin/assets/js/block-section-restrict.js:383
#: admin/assets/js/metas.js:275
msgid "No available products to show"
msgstr ""
#: admin/assets/js/general-block-var.js:55
msgid "Searching..."
msgstr ""
#: admin/assets/js/general-block-var.js:85
msgid "You had the \"Above block\" or \"Below block\" setting checked but you dont have a usable block. Add a Section Block below or above in order to be able to check that setting"
msgstr ""
#: admin/assets/js/metas.js:286
#: admin/assets/js/metas.js:302
msgid "No available pages to show"
msgstr ""
#: admin/assets/js/metas.js:300
msgid "Default: Render the not bought page content into the current page"
msgstr ""
#: admin/assets/js/metas.js:316
msgid "Default: Render the user is not logged in page content into the current page"
msgstr ""

View File

@@ -0,0 +1,4 @@
== Changelog ==
= 1.0 =
* Initial release.

View File

@@ -0,0 +1,2 @@
/*1.0.0 */
- Release version 1.0.0

View File

@@ -586,6 +586,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/agile-store-locator/public/js/libs_new.min.js?ver=1.1.1"></script>
<!-- ahachat-messenger-marketing -->
<link rel="stylesheet" id="ahachat_frontend_style-css" href="http://wp.lab/wp-content/plugins/ahachat-messenger-marketing/assets/css/ahachat_frontend.css?ver=1.0" media="all">
<!-- aibuy-player -->
<link rel="stylesheet" id="aibuy_simple_content_video_player-css" href="http://wp.lab/wp-content/plugins/aibuy-player/public/css/aibuy_simple_content_video_player-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aibuy-player/public/js/aibuy_simple_content_video_player-public.js?ver=1.0.0"></script>
@@ -1688,6 +1692,11 @@
<link rel="stylesheet" id="bin-opt-in-front-css" href="http://wp.lab/wp-content/plugins/bin-opt-in/css/front.css?ver=1.0.0" type="text/css" media="all">
<!-- bin-soprop -->
<link rel="stylesheet" id="bin-soprop-front-css" href="http://wp.lab/wp-content/plugins/bin-soprop/css/front.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/bin-soprop/js/front.js?ver=1.0.0"></script>
<!-- bin-stripe-donation -->
<link rel="stylesheet" id="bin-stripe-donation-front-css" href="http://wp.lab/wp-content/plugins/bin-stripe-donation/css/front.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bin-stripe-donation/js/front.js?ver=1.0.0"></script>
@@ -2210,6 +2219,11 @@
<link rel="stylesheet" id="brokebot-css" href="http://wp.lab/wp-content/plugins/brokebot/public/css/brokebot-public.css?ver=1.0.8" type="text/css" media="all">
<!-- browser-scroll-bar -->
<link rel="stylesheet" id="bsb-plugin-css" href="http://wp.lab/wp-content/plugins/browser-scroll-bar/public/css/bsb-plugin-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/browser-scroll-bar/public/js/bsb-plugin-public.js?ver=1.0.0"></script>
<!-- browser-theme-colors -->
<link rel="stylesheet" id="browser-theme-colors-css" href="http://wp.lab/wp-content/plugins/browser-theme-colors/public/css/browser-theme-colors-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/browser-theme-colors/public/js/browser-theme-colors-public.js?ver=1.0.0"></script>
@@ -3350,6 +3364,8 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contact-list/public/js/contact-list-public.js?ver=1.0.0"></script>
<link rel="stylesheet" id="contact-list-css" href="http://wp.lab/wp-content/plugins/contact-list/public/contact-list-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contact-list/public/contact-list-public.js?ver=1.0.0"></script>
<link rel="stylesheet" id="contact-list-css" href="http://wp.lab/wp-content/plugins/contact-list/dist/css/main.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/contact-list/dist/js/main.js?ver=1.0.0"></script>
<!-- contact-me-on-zalo -->
@@ -3500,6 +3516,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cornerstone/js/lib.core.js?ver=0.7.5"></script>
<!-- corona-virus-data -->
<link rel="stylesheet" id="corona-virus-data-css" href="http://wp.lab/wp-content/plugins/corona-virus-data/public/css/corona-virus-data-public.css?ver=1.2.4" media="all">
<script src="http://wp.lab/wp-content/plugins/corona-virus-data/public/js/corona-virus-data-public.js?ver=1.2.4"></script>
<!-- coronavirus -->
<link rel="stylesheet" id="coronavirus-css" href="http://wp.lab/wp-content/plugins/coronavirus/public/css/coronavirus-public.css?ver=1.2.0" media="all">
<script src="http://wp.lab/wp-content/plugins/coronavirus/public/js/coronavirus-public.js?ver=1.2.0"></script>
<!-- cosmic-blocks -->
<link rel="stylesheet" id="cwp-base-style-css" href="http://wp.lab/wp-content/plugins/cosmic-blocks/assets/css/cosmic-blocks.style.css?ver=0.32" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cosmic-blocks/assets/js/scrollClass.js?ver=0.32"></script>
@@ -3666,6 +3692,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cryptoniq-lite/assets/js/cryptoniq.engine.js?ver=1.0"></script>
<!-- css-for-elementor -->
<link rel="stylesheet" id="css-for-elementor-css" href="http://wp.lab/wp-content/plugins/css-for-elementor/public/css/css-for-elementor-public.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/css-for-elementor/public/js/css-for-elementor-public.js?ver=1.0.1"></script>
<!-- cssjockey-add-ons -->
<link rel="stylesheet" id="cjwpbldr-vendors-global-css" href="http://wp.lab/wp-content/plugins/cssjockey-add-ons/assets/css/vendors-global.min.css?ver=3.0.1" type="text/css" media="all">
<link rel="stylesheet" id="cjwpbldr-vendors-frontend-css" href="http://wp.lab/wp-content/plugins/cssjockey-add-ons/assets/css/vendors-frontend.min.css?ver=3.0.1" type="text/css" media="all">
@@ -4061,6 +4092,11 @@
<link rel="stylesheet" id="wp-ew-css" href="http://wp.lab/wp-content/plugins/earnware-connect/public/css/wp-ew-public.css?ver=1.0.27" type="text/css" media="all">
<!-- earth-day-live-wp -->
<link rel="stylesheet" id="earth-day-live-wp-css" href="http://wp.lab/wp-content/plugins/earth-day-live-wp/public/css/earth-day-live-wp-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/earth-day-live-wp/public/js/earth-day-live-wp-public.js?ver=1.0.0"></script>
<!-- easily-generate-rest-api-url -->
<link rel="stylesheet" id="generate-rest-api-url-css" href="http://wp.lab/wp-content/plugins/easily-generate-rest-api-url/public/css/generate-rest-api-url-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easily-generate-rest-api-url/public/js/generate-rest-api-url-public.js?ver=1.0.0"></script>
@@ -4252,6 +4288,11 @@
<link rel="stylesheet" id="easy-widget-columns-css" href="http://wp.lab/wp-content/plugins/easy-widget-columns/public/css/easy-widget-columns-public.css?ver=1.2.1" type="text/css" media="all">
<!-- easy-woocommerce-tracking-code-free -->
<link rel="stylesheet" id="easy-woocommerce-tracking-code-free-css" href="http://wp.lab/wp-content/plugins/easy-woocommerce-tracking-code-free/public/css/easy-woocommerce-tracking-code-free-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/easy-woocommerce-tracking-code-free/public/js/easy-woocommerce-tracking-code-free-public.js?ver=1.0.0"></script>
<!-- easy-youtube-gallery -->
<link rel="stylesheet" id="magnific-popup-au-css" href="http://wp.lab/wp-content/plugins/easy-youtube-gallery/assets/lib/magnific-popup/magnific-popup.min.css?ver=1.0.4" type="text/css" media="all">
<link rel="stylesheet" id="easy-youtube-gallery-css" href="http://wp.lab/wp-content/plugins/easy-youtube-gallery/assets/css/eytg.css?ver=1.0.4" type="text/css" media="all">
@@ -6699,6 +6740,13 @@
<link rel="stylesheet" id="hover-css-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/hover-min.css?ver=1.6.8.1" type="text/css" media="all">
<!-- immonex-kickstart -->
<link rel="stylesheet" id="inx-frontend-css" href="http://wp.lab/wp-content/plugins/immonex-kickstart/css/frontend.css?ver=1.0.3" media="all">
<link rel="stylesheet" id="inx-skin-css" href="http://wp.lab/wp-content/plugins/immonex-kickstart/skins/default/css/index.css?ver=1.0.3" media="all">
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart/js/frontend.js?ver=1.0.3"></script>
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart/skins/default/js/index.js?ver=1.0.3"></script>
<!-- improved-let-it-snow -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/improved-let-it-snow/script/snowstorm-min.js?ver=3.5"></script>
@@ -8313,6 +8361,11 @@
<link rel="stylesheet" id="material-testimonials-css" href="http://wp.lab/wp-content/plugins/material-testimonials/css/style.css?ver=1.5" type="text/css" media="all">
<!-- materialize-accordions -->
<link rel="stylesheet" id="materialize_accordions-css" href="http://wp.lab/wp-content/plugins/materialize-accordions/public/css/materialize.min.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/materialize-accordions/public/js/materialize.min.js?ver=1.0.0"></script>
<!-- maven-member -->
<link rel="stylesheet" id="maven_validation-css-css" href="http://wp.lab/wp-content/plugins/maven-member/css/validation/css/validationEngine.jquery.css?ver=1.0.35" type="text/css" media="all">
<link rel="stylesheet" id="maven_validation-template-css-css" href="http://wp.lab/wp-content/plugins/maven-member/css/validation/css/template.css?ver=1.0.35" type="text/css" media="all">
@@ -8562,6 +8615,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mh-pusher/public/js/message-hub-public.js?ver=1.0.0"></script>
<!-- mhr-gallery -->
<link rel="stylesheet" id="mhr-gallery-css" href="http://wp.lab/wp-content/plugins/mhr-gallery/public/css/mhr-gallery-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/mhr-gallery/public/js/mhr-gallery-public.js?ver=1.0.0"></script>
<!-- mhr-post-ticker -->
<link rel="stylesheet" id="mhr-post-ticker-css" href="http://wp.lab/wp-content/plugins/mhr-post-ticker/public/css/mhr-post-ticker-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/mhr-post-ticker/public/js/mhr-post-ticker-public.js?ver=1.0.0"></script>
<!-- mhstudio-hubspotform -->
<link rel="stylesheet" id="mhs_hubspotform-css" href="http://wp.lab/wp-content/plugins/mhstudio-hubspotform/public/css/mhs-hubspotform-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mhstudio-hubspotform/public/js/mhs-hubspotform-public.js?ver=1.0.0"></script>
@@ -8598,6 +8661,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mingrana-wp-to-blockchain/public/js/mingrana-wp-public.js?ver=1.0.0"></script>
<!-- mini-cart-for-woocommerce -->
<link rel="stylesheet" id="WHMC-css" href="http://wp.lab/wp-content/plugins/mini-cart-for-woocommerce/public/css/style.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/mini-cart-for-woocommerce/public/js/pushmenu.js?ver=1.0.1"></script>
<script src="http://wp.lab/wp-content/plugins/mini-cart-for-woocommerce/public/js/whmc-public.js?ver=1.0.1"></script>
<!-- minitek-slider -->
<link rel="stylesheet" id="minitek-slider_flickity-css" href="http://wp.lab/wp-content/plugins/minitek-slider/public/css/flickity.css?ver=1.0.1" media="all">
<link rel="stylesheet" id="minitek-slider_flickity-fade-css" href="http://wp.lab/wp-content/plugins/minitek-slider/public/css/flickity.fade.css?ver=1.0.1" media="all">
@@ -8856,6 +8925,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mpcx-slider/public/js/slider.min.js?ver=1.3.10"></script>
<!-- mphb-styles -->
<link rel="stylesheet" id="mphbs-style-css" href="http://wp.lab/wp-content/plugins/mphb-styles/style.css?ver=0.0.1" media="all">
<!-- mplus-intercom-subscription -->
<link rel="stylesheet" id="mplus-intercom-subscription-css" href="http://wp.lab/wp-content/plugins/mplus-intercom-subscription/assets/css/mplus-intercom-subscription-public.css?ver=1.0.18" type="text/css" media="all">
<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>
@@ -8928,6 +9001,11 @@
<link rel="stylesheet" id="mltlngg_stylesheet-css" href="http://wp.lab/wp-content/plugins/multilanguage/css/style.css?ver=1.2.8" type="text/css" media="all">
<!-- multilevel-navigation-menu -->
<link rel="stylesheet" id="mnmwp-frontend-css-css" href="http://wp.lab/wp-content/plugins/multilevel-navigation-menu/assets/css/mnmwp-front.css?ver=1.0.0" media="">
<script src="http://wp.lab/wp-content/plugins/multilevel-navigation-menu/assets/js/mnmwp-front.js?ver=1.0.0"></script>
<!-- multilingual-comments -->
<link rel="stylesheet" id="multilingual-comments-css" href="http://wp.lab/wp-content/plugins/multilingual-comments/public/css/multilingual-comments-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/multilingual-comments/public/js/multilingual-comments-public.js?ver=1.0.0"></script>
@@ -8984,6 +9062,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/my-chatbot/assets/js/frontend.js?ver=0.5"></script>
<!-- my-faves -->
<link rel="stylesheet" id="myfaves-css" href="http://wp.lab/wp-content/plugins/my-faves/public/css/myfaves-public.css?ver=1.1.1" media="all">
<script src="http://wp.lab/wp-content/plugins/my-faves/public/js/gscript.js?ver=1.1.1"></script>
<script src="http://wp.lab/wp-content/plugins/my-faves/public/js/myfaves-public.js?ver=1.1.1"></script>
<!-- my-restaurant-reviews -->
<link rel="stylesheet" id="my_restaurant_reviews-css" href="http://wp.lab/wp-content/plugins/my-restaurant-reviews/public/css/mrr-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/my-restaurant-reviews/public/js/mrr-public.js?ver=1.0.0"></script>
@@ -9187,6 +9271,13 @@
<link rel="stylesheet" id="nglazyloadcss-css" href="http://wp.lab/wp-content/plugins/ng-lazyload//nglazyload.css?ver=1.1" media="all">
<!-- ng-wp-gallery -->
<link rel="stylesheet" id="mwrpg-infinite-style-css" href="http://wp.lab/wp-content/plugins/ng-wp-gallery/assets/css/infinite-scroll-docs.css?ver=1.0" media="all">
<link rel="stylesheet" id="mwrpg-grid-style-css" href="http://wp.lab/wp-content/plugins/ng-wp-gallery/assets/css/mwrpg-grid.css?ver=1.0" media="all">
<link rel="stylesheet" id="fancybox-style-css" href="http://wp.lab/wp-content/plugins/ng-wp-gallery/assets/css/jquery.fancybox.min.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/ng-wp-gallery/assets/js/infinite-scroll-docs.min.js?ver=1.0"></script>
<!-- nggimagerotation -->
<link rel="stylesheet" id="galleryview-css" href="http://wp.lab/wp-content/plugins/nggimagerotation/view.css?ver=1.0" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nggimagerotation/view.js?ver=1.0"></script>
@@ -9246,6 +9337,8 @@
<!-- nines-music -->
<link rel="stylesheet" id="nines_music_css-css" href="http://wp.lab/wp-content/plugins/nines-music/dist/APlayer.min.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nines-music/dist/APlayer.min.js?ver=1.0.2"></script>
<link rel="stylesheet" id="nines_music_css-css" href="http://wp.lab/wp-content/plugins/nines-music/static/APlayer.min.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/nines-music/static/APlayer.min.js?ver=1.0.2"></script>
<!-- nitek-carousel-cool-transitions -->
@@ -9564,6 +9657,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/opes-wp-ads-manager/inc/front/assets/js/script-front-stats.js?ver=1.2.0"></script>
<!-- opinions-clients -->
<script src="http://wp.lab/wp-content/plugins/opinions-clients/opcl_front.js?ver=1.0.0"></script>
<!-- opt-in-hound -->
<link rel="stylesheet" id="oih-style-css" href="http://wp.lab/wp-content/plugins/opt-in-hound/assets/css/style-front-opt-in-hound.css?ver=1.4.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/opt-in-hound/assets/js/script-front-opt-in-hound.js?ver=1.4.3"></script>
@@ -10361,6 +10458,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-list-generator/next-page.js?ver=1.3.0"></script>
<!-- post-list-with-load-more -->
<link rel="stylesheet" id="post-list-with-load-more-css" href="http://wp.lab/wp-content/plugins/post-list-with-load-more/public/css/post-list-with-load-more-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/post-list-with-load-more/public/js/post-list-with-load-more-public.js?ver=1.0.0"></script>
<!-- post-notif -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-notif/public/js/post-notif-public.min.js?ver=1.2.0"></script>
@@ -11004,6 +11106,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ray-social-feeds-for-twitter/js/rc_myctf_image_slider.js?ver=1.0"></script>
<!-- rd-wapp -->
<link rel="stylesheet" id="rdwapp-style-css" href="http://wp.lab/wp-content/plugins/rd-wapp/assets/css/rdwapp-style-front.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/rd-wapp/assets/js/rdwapp-script-front.js?ver=1.0"></script>
<!-- rdp-google-custom-search -->
<link rel="stylesheet" id="gsc-default-en-css" href="http://wp.lab/wp-content/plugins/rdp-google-custom-search/pl/style/gsc.default-en.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="gsc-default-css" href="http://wp.lab/wp-content/plugins/rdp-google-custom-search/pl/style/gsc.default.css?ver=1.0.0" type="text/css" media="all">
@@ -11398,6 +11505,17 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rest-api-cache/public/js/rest-api-cache-public.js?ver=1.0.0"></script>
<!-- restaurant-cafe-addon-for-elementor -->
<link rel="stylesheet" id="niche-frame-css" href="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/css/niche-frame.css?ver=1.0" media="all">
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/css/magnific-popup.min.css?ver=1.0" media="all">
<link rel="stylesheet" id="slick-theme-css" href="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/css/slick-theme.min.css?ver=1.0" media="all">
<link rel="stylesheet" id="slick-css" href="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/css/slick.min.css?ver=1.0" media="all">
<link rel="stylesheet" id="narestaurant-responsive-css" href="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/css/responsive.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/js/jquery.counterup.min.js?ver=1.0"></script>
<script src="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/js/jquery.multiscroll.min.js?ver=1.0"></script>
<script src="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/js/scripts.js?ver=1.0"></script>
<!-- restaurantpress -->
<link rel="stylesheet" id="restaurantpress-layout-css" href="http://wp.lab/wp-content/plugins/restaurantpress/assets/css/restaurantpress-layout.css?ver=1.6.0" type="text/css" media="all">
<link rel="stylesheet" id="restaurantpress-smallscreen-css" href="http://wp.lab/wp-content/plugins/restaurantpress/assets/css/restaurantpress-smallscreen.css?ver=1.6.0" type="text/css" media="only screen and (max-width: 768px)">
@@ -11688,6 +11806,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/samuweb-skim-blog/samuweb-skim-blog.js?ver=1.0"></script>
<!-- saoshyant-page-builder -->
<script src="http://wp.lab/wp-content/plugins/saoshyant-page-builder/assets/js/script.js?ver=1.1"></script>
<!-- sapphire-rms -->
<link rel="stylesheet" id="SapphireRMSdatetimepicker-css" href="http://wp.lab/wp-content/plugins/sapphire-rms/public/css/bootstrap-datetimepicker.min.css?ver=1.5.9" type="text/css" media="all">
<link rel="stylesheet" id="SapphireRMS-css" href="http://wp.lab/wp-content/plugins/sapphire-rms/public/css/SapphireRMS-public.css?ver=1.5.9" type="text/css" media="all">
@@ -12078,6 +12200,8 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shared-files/public/js/shared-files-public.js?ver=1.0.2"></script>
<link rel="stylesheet" id="shared-files-css" href="http://wp.lab/wp-content/plugins/shared-files/public/shared-files-public.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shared-files/public/shared-files-public.js?ver=1.0.2"></script>
<link rel="stylesheet" id="shared-files-css" href="http://wp.lab/wp-content/plugins/shared-files/dist/css/main.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/shared-files/dist/js/main.js?ver=1.0.2"></script>
<!-- shared-whiteboard -->
@@ -12351,6 +12475,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-emoji-reactions/public/js/simple-emoji-reactions-public.js?ver=1.0.0"></script>
<!-- simple-emzon-links -->
<link rel="stylesheet" id="salfwp-style-css" href="http://wp.lab/wp-content/plugins/simple-emzon-links/assets/css/salfwp-widgets.css?ver=0.1.0" media="all">
<!-- simple-events-calendar -->
<link rel="stylesheet" id="sec-styling-css" href="http://wp.lab/wp-content/plugins/simple-events-calendar/simple-events-calendar.css?ver=1.3.5" type="text/css" media="all">
@@ -12387,6 +12515,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-faq-manager//assets/js/simple_faq.js?ver=1.0"></script>
<!-- simple-floating-menu -->
<link rel="stylesheet" id="sfm-fontawesome-css" href="http://wp.lab/wp-content/plugins/simple-floating-menu/assets/css/all.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="sfm-eleganticons-css" href="http://wp.lab/wp-content/plugins/simple-floating-menu/assets/css/eleganticons.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="sfm-essential-icon-css" href="http://wp.lab/wp-content/plugins/simple-floating-menu/assets/css/essential-icon.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="sfm-iconfont-css" href="http://wp.lab/wp-content/plugins/simple-floating-menu/assets/css/icofont.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="sfm-materialdesignicons-css" href="http://wp.lab/wp-content/plugins/simple-floating-menu/assets/css/materialdesignicons.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="sfm-style-css" href="http://wp.lab/wp-content/plugins/simple-floating-menu/assets/css/style.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/simple-floating-menu/assets/js/custom-scripts.js?ver=1.0.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">
@@ -12789,6 +12927,11 @@
<link rel="stylesheet" id="popupcss-css" href="http://wp.lab/wp-content/plugins/smart-visitor-tracker/assets/css/alerts.css?ver=1.0.0" type="text/css" media="all">
<!-- smartarget-contact-us -->
<link rel="stylesheet" id="smartarget-css" href="http://wp.lab/wp-content/plugins/smartarget-contact-us/public/css/smartarget-public.css?ver=1.1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/smartarget-contact-us/public/js/smartarget-public.js?ver=1.1.0"></script>
<!-- smartcat-video-image-slider -->
<link rel="stylesheet" id="camera-style-css" href="http://wp.lab/wp-content/plugins/smartcat-video-image-slider/assets/css/camera.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="scslider-style-css" href="http://wp.lab/wp-content/plugins/smartcat-video-image-slider/assets/css/style.css?ver=1.0.0" type="text/css" media="all">
@@ -13064,6 +13207,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sparrow/public/js/getsparrow-public.js?ver=1.0.0"></script>
<!-- spec-theme-options -->
<link rel="stylesheet" id="spec-theme-options-public-css" href="http://wp.lab/wp-content/plugins/spec-theme-options/public/css/spec-theme-options-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="FontAwesome-css" href="http://wp.lab/wp-content/plugins/spec-theme-options/extensions/font-awesome/css/all.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/spec-theme-options/public/js/spec-theme-options-public.js?ver=1.0.0"></script>
<!-- speed-up-lazy-load -->
<script type="text/javascript" async="async" src="http://wp.lab/wp-content/plugins/speed-up-lazy-load/js/lazy-load.min.js?ver=1.0.16"></script>
@@ -13120,6 +13269,7 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sports-leagues/public/js/sl-public.js?ver=0.5.3"></script>
<link rel="stylesheet" id="anwp-data-tables-css" href="http://wp.lab/wp-content/plugins/sports-leagues/vendor/datatables/datatables.min.css?ver=0.5.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sports-leagues/vendor/datatables/datatables.min.js?ver=0.5.3"></script>
<script src="http://wp.lab/wp-content/plugins/sports-leagues/public/js/sl-public.min.js?ver=0.5.3"></script>
<!-- sportspress -->
@@ -13251,6 +13401,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-add-to-cart-for-woo/public/js/satcwoo-public.js?ver=1.0.0"></script>
<!-- sticky-banner -->
<link rel="stylesheet" id="hdsb-stickybanner-style-css" href="http://wp.lab/wp-content/plugins/sticky-banner/css/hdsb-stickybanner.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/sticky-banner/js/hdsb-stickybanner.js?ver=1.0.0"></script>
<!-- sticky-block -->
<script src="http://wp.lab/wp-content/plugins/sticky-block/dist/sticky-block.min.js?ver=1.0"></script>
@@ -13275,6 +13430,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stickyadmin/lib/js/sticky-adminbar.min.js?ver=1.0.6"></script>
<!-- still-be-widget -->
<link rel="stylesheet" id="stillbe_widgets-insta_widget_css-css" href="http://wp.lab/wp-content/plugins/still-be-widget/asset/css/instagram.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/still-be-widget/asset/js/lazyload.js?ver=1.0"></script>
<!-- stock-market-news -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stock-market-news/assets/stockdio-wp.js?ver=1.7.12"></script>
@@ -13909,6 +14069,8 @@
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/tickera-event-ticketing-system/css/font-awesome.min.css?ver=3.2.7.8" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tickera-event-ticketing-system/js/cart.js?ver=3.2.7.8"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tickera-event-ticketing-system/js/jquery.validate.min.js?ver=3.2.7.8"></script>
<link rel="stylesheet" id="tc-admin-select2-css" href="http://wp.lab/wp-content/plugins/tickera-event-ticketing-system/css/select2.min.css?ver=3.2.7.8" media="all">
<link rel="stylesheet" id="tc-elementor-sc-popup-css" href="http://wp.lab/wp-content/plugins/tickera-event-ticketing-system/css/elementor-sc-popup.css?ver=3.2.7.8" media="all">
<!-- ticketmaster -->
@@ -15447,6 +15609,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wext-woocommerce-product-tab/js/tab-active.js?ver=1.0"></script>
<!-- wftda-rankings-widget -->
<link rel="stylesheet" id="league-wftda-ranking-css" href="http://wp.lab/wp-content/plugins/wftda-rankings-widget/public/css/league-wftda-ranking-public.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/wftda-rankings-widget/public/js/league-wftda-ranking-public.js?ver=1.0.1"></script>
<!-- wgauge -->
<link rel="stylesheet" id="wgauge-css" href="http://wp.lab/wp-content/plugins/wgauge/public/css/wgauge-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wgauge/public/js/wgauge-public.js?ver=1.0.0"></script>
@@ -15955,6 +16122,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woosaleskit-bar/public/js/woosaleskit_bar-public.js?ver=1.0.0"></script>
<!-- woovirtualwallet -->
<link rel="stylesheet" id="lws-wvw-currency-symbol-css" href="http://wp.lab/wp-content/plugins/woovirtualwallet/css/currency.css?ver=1.0.0" media="all">
<!-- woowbox -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woowbox/assets/js/woowbox.min.js?ver=1.0.0"></script>
@@ -16396,6 +16567,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-console/assets/js/wp-console.js?ver=1.3.0"></script>
<!-- wp-contact-form-7-spam-blocker -->
<link rel="stylesheet" id="spam-protect-for-contact-form7-css" href="http://wp.lab/wp-content/plugins/wp-contact-form-7-spam-blocker/frontend/css/spam-protect-for-contact-form7.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/wp-contact-form-7-spam-blocker/frontend/js/spam-protect-for-contact-form7.js?ver=1.0.0"></script>
<!-- wp-contact-form7-email-spam-blocker -->
<link rel="stylesheet" id="contact-form-7-email-spam-blocker-css" href="http://wp.lab/wp-content/plugins/wp-contact-form7-email-spam-blocker/public/css/contact-form-7-email-spam-blocker-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-contact-form7-email-spam-blocker/public/js/contact-form-7-email-spam-blocker-public.js?ver=1.0.0"></script>
@@ -16437,6 +16613,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-coupons-and-deals/assets/js/main.js?ver=2.4.0"></script>
<!-- wp-covid-19-data -->
<link rel="stylesheet" id="wp-covid-19-data-css" href="http://wp.lab/wp-content/plugins/wp-covid-19-data/public/css/wp-covid-19-data-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/wp-covid-19-data/public/js/wp-covid-19-data-public.js?ver=1.0.0"></script>
<!-- wp-currency-exchange-rate -->
<link rel="stylesheet" id="wp-currency-exchange-rate-css" href="http://wp.lab/wp-content/plugins/wp-currency-exchange-rate/public/css/wp-currency-exchange-rate-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-currency-exchange-rate/public/js/wp-currency-exchange-rate-public.js?ver=1.0.0"></script>
@@ -18116,6 +18297,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpac-like-system/assets/js/ajax.js?ver=1.0.0"></script>
<!-- wpadcenter -->
<link rel="stylesheet" id="wpadcenter-block-css" href="http://wp.lab/wp-content/plugins/wpadcenter/admin/css/wpadcenter-admin-block.min.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/wpadcenter/admin/js/blocks/wpadcenter-admin-block.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/wpadcenter/admin/js/libraries/cycle2/cycle2.js?ver=1.0.0"></script>
<!-- wpaudio-mp3-player -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpaudio-mp3-player/wpaudio.min.js?ver=3.1"></script>
@@ -18331,6 +18518,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpr-comments-categories/assets/js/wpr-comments-categories.js?ver=1.0.0"></script>
<!-- wprequal -->
<link rel="stylesheet" id="wprequal_app_min-css" href="http://wp.lab/wp-content/plugins/wprequal/assets/css/app.min.css?ver=7.5.12" media="all">
<script src="http://wp.lab/wp-content/plugins/wprequal/assets/js/app.min.js?ver=7.5.12"></script>
<!-- wprong-testimonial-slider -->
<link rel="stylesheet" id="bxslider_css-css" href="http://wp.lab/wp-content/plugins/wprong-testimonial-slider/public/css/jquery.bxslider.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="wprong-testimonial-plugin-css" href="http://wp.lab/wp-content/plugins/wprong-testimonial-slider/public/css/wprong-testimonial-plugin-public.css?ver=1.0.0" type="text/css" media="all">
@@ -18516,6 +18708,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xo-event-calendar/js/ajax.js?ver=1.1.6"></script>
<!-- xoxzo-sms-voice-notification-for-woocommerce -->
<link rel="stylesheet" id="wc-xoxzo-css" href="http://wp.lab/wp-content/plugins/xoxzo-sms-voice-notification-for-woocommerce/public/css/wc-xoxzo-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/xoxzo-sms-voice-notification-for-woocommerce/public/js/wc-xoxzo-public.js?ver=1.0.0"></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">
@@ -18745,6 +18942,10 @@
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/zovonto/assets/css/font-awesome.min.css?ver=1.0" type="text/css" media="all">
<!-- zpr-zeumic-products-database -->
<link rel="stylesheet" id="zpr-css" href="http://wp.lab/wp-content/plugins/zpr-zeumic-products-database/css/style.css?ver=1.7.7" media="all">
<!-- ztr-zeumic-work-timer -->
<link rel="stylesheet" id="ztr-css" href="http://wp.lab/wp-content/plugins/ztr-zeumic-work-timer/css/style.css?ver=1.8.2" type="text/css" media="all">

View File

@@ -0,0 +1,209 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 3.2.9 (2020-03-13)
### build
* migrate real-category-library to monorepo (#3ugu6a)
### fix
* i18n is not correctly initialized
## 3.2.8 (2020-03-10)
* prepare for WordPress 5.4
* fix bug with quick edit after fast mode content
* fix bug with WooCommerce panel
* update links to devowl.io
## 3.2.7 (2019-11-07)
* fix drag&drop of categories now represents the correct order after movement
* fix bug with ReactJS v17 warnings in your console
## 3.2.6 (2019-10-04)
* fix bug with two instances of MobX loaded
## 3.2.5 (2019-08-20)
* improve experience when sorting post entries
* fix bug with sort mode in subcategories
* fix bug with search box height in some cases that it needed too much space
## 3.2.4 (2019-06-02)
* fix bug when copy post that it is draggable again
## 3.2.3 (2019-05-07)
* add "title" attribute to tree node for accessibility
* update to latest AIOT version
## 3.2.2 (2019-03-19)
* add button to expand/collapse all node items
* fix bug with style/script dependencies
* fix bug with missing animations
* improve performance: Loading a tree with 10,000 nodes in 1s (the old way in 30s)
## 3.2.1 (2018-12-10)
* add notice to the tree if the product is not yet registered
# 3.2.0 (2018-10-27)
* add auto update functionality
* fix bug with new created folders and droppable posts
* fix bug with WPML API requests
## 3.1.1 (2018-08-17)
* fix bug with relocating categories to a category with no childs yet
# 3.1.0 (2018-08-05)
* improve the custom order performance
* improve the way of handling custom order
* fix bug with mass categories
* fix bug with "Plain" permalink structure
* fix bug with collapsable/expandable folders
## 3.0.6 (2018-July-20)
* improve error handling with plugins like Clearfy
* fix bug with "&" in category names
* fix bug with PHP 5.3
* fix bug with non-SSL API root urls
* fix bug with pagination in list mode after switching folder
* fix bug with Gutenberg 3.1.x (https://git.io/f4SXU)
## 3.0.5 (2018-06-15)
* add compatibility with WP Dark Mode plugin
* add help message if WP REST API is not reachable through HTTP verbs
* fix bug with scroll container in media modal in IE/Edge/Firefox
* Use global WP REST API parameters instead of DELETE / PUT
## 3.0.4 (2018-06-4)
* fix bug with spinning loader when permalink structure is "Plain"
* fix bug with german translation
* fix bug with IE11/Edge browser
## 3.0.3 (2018-05-17)
* fix bug with WPML and fetching a tree from another language within admin dashboard
## 3.0.2 (2018-05-08)
* improve performance
* fix bug with switching from category to "All posts"
* add Mobx State Tree for frontend state management
## 3.0.1 (2018-03-09)
* fix bug with mobile devices
# 3.0.0 (2018-02-28)
* Complete code rewrite
* ... Same functionality with improved performance
* ... with an eye on smooth user interface and experience
* The plugin is now available in the following languages: English, German
* fix bug with WooCommerce 3.3.x product attributes
* Sidebar is now fully written in ReactJS v16
* The plugin is now bundled with webpack v3
* Minimum of PHP 5.3 required now (in each update you'll find v2.4 for PHP 5.0+ compatibility)
* Minimum of WordPress 4.4 required now (in each update you'll find v2.4 for 4.0+ compatibility)
* PHP Classes modernized with autoloading and namespaces
* WP REST API v2 for API programming, no longer use admin-ajax.php for your CRUD operations
* Implemented cachebuster to avoid cache problems
* ApiGen for PHP Documentation
* JSDoc for JavaScript Documentation
* apiDoc for API Documentation
* WP HookDoc for Filters & Actions Documentation
* Custom filters and actions which affected the tree ouput are now removed, you have to do this in JS now
* All JavaScript events / hooks are removed now - contact me so I can implement for you
# 2.4.0 (2018-01-16)
* add support for WooCommerce attributes (through an option)
* improve the tax switcher (when multiple category types are available)
## 2.3.2 (2017-11-24)
* fix bug with hidden sidebar without resized before
* add filter to hide category try for specific taxonomies (RCL/Available)
## 2.3.1 (2017-10-31)
* fix bug after creating a new post the nodes are not clickable
* fix bug when switching taxonomy when fast mode is deactivated
# 2.3.0 (2017-10-28)
* add ability to expand/collapse the complete sidebar by doubleclick the resize button
* fix bug with WooCommerce 3.x
* fix bug with touch devices (no dropdown was touchable)
* fix bug with ESC key in rename mode
* fix bug with creating a new folder and switch back to previous
* fix bug with taxonomy switcher (especially WooCommerce products)
* improve the save of localStorage items within one row per tree instance
## 2.2.1 (2017-09-22)
* improve the tax switcher when more than two taxonomies are available
* fix bug when switching to an taxonomy with no categories
* add new filter to disable RCL sorting mechanism
# 2.2.0 (2017-06-24)
* add full compatibility with WordPress 4.8
* add ESC to close the rename category action
* add F2 handler to rename a category
* add double click event to open category hierarchy
* add search input field for categories
* fix bug with some browsers when local storage is disabled
## 2.1.1 (2017-03-24)
* add https://matthias-web.com as author url
* improve the way of rearrange mode, the folders gets expand after 700ms of hover
* fix bug with > 600 categories
* fix bug with styles and scripts
* fix bug with rearrange
# 2.1.0 (2016-11-24)
* add new version of AIO tree view (1.3.1)
* add the MatthiasWeb promotion dialog
* add responsivness
* improve performance with lazy loading of categories
* improve changelog
* Use rootParentId in jQuery AIO tree
* fix bug with jQuery AIO tree version when RML is enabled
## 2.0.2 (2016-09-09)
* Conflict with jQuery.allInOneTree
## 2.0.1 (2016-09-02)
* add minified scripts and styles
* fix capability bug while logged out
* add Javascript polyfill's to avoid browser incompatibility
* fix bug for crashed safari browser
* fix bug with boolval function
# 2.0.0 (2016-08-08)
* add more userfriendly toolbar (ported from RML)
* add fixed header
* add "fast mode" for switching between taxonomies without page reload
* add "fast mode" for switching between categories without page reload
* add "fast mode" for switching between pages without page reload
* add taxonomy to pages
* add custom order for taxonomies
* add new advertisment system for MatthiasWeb
* Complete recode of PHP and Javascript
## 1.1.1 (2016-01-20)
* add facebook advert on plugin activation
* fix count of categories
# 1.1.0 (2015-11-28)
* fix conditional tag to create / sort items
* fix hierarchical read of categories
* fix append method with CTRL - now tap and hold any key to append
## 1.0.2 (2015-11-13)
* remove unnecessary code
* fix jquery conflict
## 1.0.1 (2015-11-10)
* fix javascript error for firefox, ie and opera
# 1.0.0 (2015-11-08)
* initial Release

View File

@@ -0,0 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.0.1 (2020-03-23)
### build
* initial release of WP Real Custom Post Order plugin (#46ftef)

View File

@@ -0,0 +1,132 @@
# Copyright (C) 2020 Marek Hrabe
# This file is distributed under the same license as the RideShare Importer plugin.
msgid ""
msgstr ""
"Project-Id-Version: RideShare Importer 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/rideshare-importer\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-15T17:52:38+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: rideshare-importer\n"
#. Plugin Name of the plugin
msgid "RideShare Importer"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/rideshare-importer/"
msgstr ""
#. Description of the plugin
msgid "Import your history of trips from ride sharing applications."
msgstr ""
#. Author of the plugin
msgid "Marek Hrabe"
msgstr ""
#. Author URI of the plugin
msgid "https://github.com/marekhrabe"
msgstr ""
#: class-rideshare-import.php:56
msgid "Import RideShare"
msgstr ""
#: class-rideshare-import.php:72
msgid "Upload your RideShare JSON to import rides into this blog."
msgstr ""
#: class-rideshare-import.php:75
msgid "How to get the JSON export?"
msgstr ""
#: class-rideshare-import.php:76
msgid "Uber doesn't allow you to conveniently export your data including maps so this plugin uses data gathered using a browser extension."
msgstr ""
#: class-rideshare-import.php:79
msgid "Run the extension from the browser toolbar"
msgstr ""
#: class-rideshare-import.php:80
msgid "When asked \"Request individual trip data?\", pick \"YES\""
msgstr ""
#: class-rideshare-import.php:81
msgid "A new RideShare Stats page will open up once all data is downloaded"
msgstr ""
#: class-rideshare-import.php:82
msgid "At the bottom of the page, there is an \"Export\" button. Use it with option \"JSON (Full Data)\""
msgstr ""
#: class-rideshare-import.php:83
msgid "Upload your JSON file and use it in this importer"
msgstr ""
#. translators: 1: Service name (like "Uber Pool"), 2: Name of a city
#: class-rideshare-import.php:160
msgid "Rode %1$s in %2$s"
msgstr ""
#. translators: %s: Full address of pickup.
#: class-rideshare-import.php:187
msgid "Pickup: %s"
msgstr ""
#. translators: %s: Full address of dropoff.
#: class-rideshare-import.php:194
msgid "Dropoff: %s"
msgstr ""
#: class-rideshare-import.php:204
msgid "Car Make"
msgstr ""
#: class-rideshare-import.php:209
msgid "Time"
msgstr ""
#: class-rideshare-import.php:214
msgid "Distance"
msgstr ""
#: class-rideshare-import.php:219
msgid "Driver"
msgstr ""
#: class-rideshare-import.php:224
msgid "Fare"
msgstr ""
#. translators: %s: first name of the driver.
#: class-rideshare-import.php:275
msgid "Driver %s"
msgstr ""
#: class-rideshare-import.php:296
msgid "Sorry, there has been an error."
msgstr ""
#. translators: %s: trip id
#: class-rideshare-import.php:325
msgid "Importing %s."
msgstr ""
#: class-rideshare-import.php:332
msgid "All done."
msgstr ""
#: class-rideshare-import.php:332
msgid "Have fun!"
msgstr ""
#: rideshare-importer.php:20
msgid "Import your <strong>ride history</strong> from ride sharing services."
msgstr ""

View File

@@ -0,0 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.
## [Unreleased]
## [2.0.2] - 2020-04-03
- we found a whole lot of gremlins once adding the plugin to a variety of sites, this should resolve those issues.
## [2.0.1] - 2020-04-03
- add_action
## [2.0.0] - 2020-04-02
- complete overhaul of the plugin
- improved options and choices
## [1.0.0] - 2020-03-31
- Released to WordPress Repository

View File

@@ -0,0 +1,585 @@
# Copyright (C) 2020 Weblizar
# This file is distributed under the same license as the Service Showcase plugin.
msgid ""
msgstr ""
"Project-Id-Version: Service Showcase 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/service-showcase\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-30T07:51:32+02:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: service-showcase\n"
#. Plugin Name of the plugin
#: admin/inc/WLSBP_ServiceBox_Admin.php:16
#: public/inc/WLSBP_Service_cpt.php:16
msgid "Service Showcase"
msgstr ""
#. Plugin URI of the plugin
msgid "https://weblizar.com/plugins"
msgstr ""
#. Description of the plugin
msgid "Service Showcase plugin is manage your showcase of your services and it comes with different style layouts which can be used to create and display multiple showcase of your services on your WordPress website.it also Easily add unlimited services box."
msgstr ""
#. Author of the plugin
msgid "Weblizar"
msgstr ""
#. Author URI of the plugin
msgid "https://weblizar.com"
msgstr ""
#: admin/inc/metaboxes/add_services.php:20
#: admin/inc/metaboxes/add_services.php:53
msgid "Service Icon"
msgstr ""
#: admin/inc/metaboxes/add_services.php:27
#: admin/inc/metaboxes/add_services.php:59
msgid "Service Title"
msgstr ""
#: admin/inc/metaboxes/add_services.php:31
msgid "Service Description"
msgstr ""
#: admin/inc/metaboxes/add_services.php:36
msgid "Read More link"
msgstr ""
#: admin/inc/metaboxes/add_services.php:51
msgid "Service Icon "
msgstr ""
#: admin/inc/metaboxes/add_services.php:58
msgid "Service Title "
msgstr ""
#: admin/inc/metaboxes/add_services.php:59
msgid "Enter Service Title"
msgstr ""
#: admin/inc/metaboxes/add_services.php:62
msgid "Service Description "
msgstr ""
#: admin/inc/metaboxes/add_services.php:63
msgid "Enter Service Description"
msgstr ""
#: admin/inc/metaboxes/add_services.php:67
msgid "Read More link "
msgstr ""
#: admin/inc/metaboxes/add_services.php:68
msgid "Enter Service Link"
msgstr ""
#: admin/inc/metaboxes/add_services.php:80
msgid "Service Icon :"
msgstr ""
#: admin/inc/metaboxes/add_services.php:80
msgid "Service Title :"
msgstr ""
#: admin/inc/metaboxes/add_services.php:80
msgid "Service Description :"
msgstr ""
#: admin/inc/metaboxes/add_services.php:80
msgid "Read More link :"
msgstr ""
#: admin/inc/metaboxes/add_services.php:81
msgid "Add New service showcase"
msgstr ""
#: admin/inc/metaboxes/add_services.php:86
msgid "Delete All"
msgstr ""
#: admin/inc/metaboxes/add_services.php:91
#: admin/inc/metaboxes/wlsbp_settings.php:2300
msgid "Back to top"
msgstr ""
#: admin/inc/metaboxes/meta_shortcode.php:4
msgid "Use below shortcode to publish your ServiceBox in any post/pages"
msgstr ""
#: admin/inc/metaboxes/theme_shortcode.php:5
msgid "Use below code in your theme to display the ServiceBox"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:311
msgid "Service Layout"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:318
msgid "Style 1"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:322
msgid "Style 2"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:326
msgid "Style 3"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:330
msgid "Style 4"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:335
msgid "Style 5"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:339
msgid "Style 6"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:348
msgid "Display Service Title"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:369
msgid "Select Yes/No option to show/hide service showcase title above service showcase."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:384
#: admin/inc/metaboxes/wlsbp_settings.php:732
#: admin/inc/metaboxes/wlsbp_settings.php:1076
#: admin/inc/metaboxes/wlsbp_settings.php:1402
#: admin/inc/metaboxes/wlsbp_settings.php:1729
#: admin/inc/metaboxes/wlsbp_settings.php:2018
msgid "Applied setting Service Shortcode"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:395
#: admin/inc/metaboxes/wlsbp_settings.php:741
#: admin/inc/metaboxes/wlsbp_settings.php:1086
#: admin/inc/metaboxes/wlsbp_settings.php:1411
#: admin/inc/metaboxes/wlsbp_settings.php:1738
#: admin/inc/metaboxes/wlsbp_settings.php:2027
msgid "Display Service Icon"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:415
#: admin/inc/metaboxes/wlsbp_settings.php:762
#: admin/inc/metaboxes/wlsbp_settings.php:1106
#: admin/inc/metaboxes/wlsbp_settings.php:1431
#: admin/inc/metaboxes/wlsbp_settings.php:1758
#: admin/inc/metaboxes/wlsbp_settings.php:2047
msgid "Select Yes/No option to show/hide service showcase Icon."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:424
#: admin/inc/metaboxes/wlsbp_settings.php:771
#: admin/inc/metaboxes/wlsbp_settings.php:1115
#: admin/inc/metaboxes/wlsbp_settings.php:1440
#: admin/inc/metaboxes/wlsbp_settings.php:1767
#: admin/inc/metaboxes/wlsbp_settings.php:2056
msgid "Display Service Read More Button"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:444
#: admin/inc/metaboxes/wlsbp_settings.php:790
#: admin/inc/metaboxes/wlsbp_settings.php:1135
#: admin/inc/metaboxes/wlsbp_settings.php:1460
#: admin/inc/metaboxes/wlsbp_settings.php:1787
#: admin/inc/metaboxes/wlsbp_settings.php:2076
msgid "Select Yes/No option to show/hide service showcase Read More Button."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:453
#: admin/inc/metaboxes/wlsbp_settings.php:817
#: admin/inc/metaboxes/wlsbp_settings.php:1162
msgid "Service Icon background Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:461
#: admin/inc/metaboxes/wlsbp_settings.php:825
#: admin/inc/metaboxes/wlsbp_settings.php:1170
msgid "Choose background color for service icon."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:471
#: admin/inc/metaboxes/wlsbp_settings.php:835
#: admin/inc/metaboxes/wlsbp_settings.php:1180
#: admin/inc/metaboxes/wlsbp_settings.php:1505
#: admin/inc/metaboxes/wlsbp_settings.php:1814
#: admin/inc/metaboxes/wlsbp_settings.php:2103
msgid "Service background Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:479
#: admin/inc/metaboxes/wlsbp_settings.php:843
#: admin/inc/metaboxes/wlsbp_settings.php:1188
#: admin/inc/metaboxes/wlsbp_settings.php:1513
#: admin/inc/metaboxes/wlsbp_settings.php:1822
#: admin/inc/metaboxes/wlsbp_settings.php:2111
msgid "Choose background color for service."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:489
#: admin/inc/metaboxes/wlsbp_settings.php:853
msgid "Service Hover background Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:497
#: admin/inc/metaboxes/wlsbp_settings.php:861
msgid "Choose background color on service hover ."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:507
#: admin/inc/metaboxes/wlsbp_settings.php:799
#: admin/inc/metaboxes/wlsbp_settings.php:1144
#: admin/inc/metaboxes/wlsbp_settings.php:1469
#: admin/inc/metaboxes/wlsbp_settings.php:1796
#: admin/inc/metaboxes/wlsbp_settings.php:2085
msgid "Service Icon Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:515
#: admin/inc/metaboxes/wlsbp_settings.php:807
#: admin/inc/metaboxes/wlsbp_settings.php:1152
#: admin/inc/metaboxes/wlsbp_settings.php:1477
#: admin/inc/metaboxes/wlsbp_settings.php:1804
#: admin/inc/metaboxes/wlsbp_settings.php:2093
msgid "Choose color for service icon."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:525
#: admin/inc/metaboxes/wlsbp_settings.php:871
#: admin/inc/metaboxes/wlsbp_settings.php:1198
#: admin/inc/metaboxes/wlsbp_settings.php:1523
#: admin/inc/metaboxes/wlsbp_settings.php:1832
#: admin/inc/metaboxes/wlsbp_settings.php:2121
msgid "Service Title Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:533
#: admin/inc/metaboxes/wlsbp_settings.php:879
#: admin/inc/metaboxes/wlsbp_settings.php:1206
#: admin/inc/metaboxes/wlsbp_settings.php:1531
#: admin/inc/metaboxes/wlsbp_settings.php:1840
#: admin/inc/metaboxes/wlsbp_settings.php:2129
msgid "Choose color for service title."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:543
#: admin/inc/metaboxes/wlsbp_settings.php:889
#: admin/inc/metaboxes/wlsbp_settings.php:1216
#: admin/inc/metaboxes/wlsbp_settings.php:1541
#: admin/inc/metaboxes/wlsbp_settings.php:1850
#: admin/inc/metaboxes/wlsbp_settings.php:2139
msgid "Description Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:551
#: admin/inc/metaboxes/wlsbp_settings.php:897
#: admin/inc/metaboxes/wlsbp_settings.php:1224
#: admin/inc/metaboxes/wlsbp_settings.php:1549
#: admin/inc/metaboxes/wlsbp_settings.php:1858
#: admin/inc/metaboxes/wlsbp_settings.php:2147
msgid "Choose color for service description."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:561
#: admin/inc/metaboxes/wlsbp_settings.php:907
#: admin/inc/metaboxes/wlsbp_settings.php:1234
#: admin/inc/metaboxes/wlsbp_settings.php:1559
#: admin/inc/metaboxes/wlsbp_settings.php:1868
#: admin/inc/metaboxes/wlsbp_settings.php:2157
msgid "Service Read More Text Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:569
#: admin/inc/metaboxes/wlsbp_settings.php:915
#: admin/inc/metaboxes/wlsbp_settings.php:1242
#: admin/inc/metaboxes/wlsbp_settings.php:1567
#: admin/inc/metaboxes/wlsbp_settings.php:1876
#: admin/inc/metaboxes/wlsbp_settings.php:2165
msgid "Choose color for service read more text."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:579
#: admin/inc/metaboxes/wlsbp_settings.php:925
#: admin/inc/metaboxes/wlsbp_settings.php:1252
#: admin/inc/metaboxes/wlsbp_settings.php:1577
msgid "Service Read More Background Color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:587
#: admin/inc/metaboxes/wlsbp_settings.php:933
#: admin/inc/metaboxes/wlsbp_settings.php:1260
#: admin/inc/metaboxes/wlsbp_settings.php:1585
msgid "Choose color for service read more background."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:597
#: admin/inc/metaboxes/wlsbp_settings.php:943
#: admin/inc/metaboxes/wlsbp_settings.php:1270
#: admin/inc/metaboxes/wlsbp_settings.php:1595
#: admin/inc/metaboxes/wlsbp_settings.php:1886
#: admin/inc/metaboxes/wlsbp_settings.php:2175
msgid "Service Title Font Size"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:606
#: admin/inc/metaboxes/wlsbp_settings.php:628
#: admin/inc/metaboxes/wlsbp_settings.php:647
#: admin/inc/metaboxes/wlsbp_settings.php:952
#: admin/inc/metaboxes/wlsbp_settings.php:971
#: admin/inc/metaboxes/wlsbp_settings.php:990
#: admin/inc/metaboxes/wlsbp_settings.php:1279
#: admin/inc/metaboxes/wlsbp_settings.php:1298
#: admin/inc/metaboxes/wlsbp_settings.php:1317
#: admin/inc/metaboxes/wlsbp_settings.php:1604
#: admin/inc/metaboxes/wlsbp_settings.php:1623
#: admin/inc/metaboxes/wlsbp_settings.php:1642
#: admin/inc/metaboxes/wlsbp_settings.php:1895
#: admin/inc/metaboxes/wlsbp_settings.php:1914
#: admin/inc/metaboxes/wlsbp_settings.php:1933
#: admin/inc/metaboxes/wlsbp_settings.php:2184
#: admin/inc/metaboxes/wlsbp_settings.php:2203
#: admin/inc/metaboxes/wlsbp_settings.php:2222
msgid "px"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:609
msgid "(Use arrow keys for exact numbers)"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:619
#: admin/inc/metaboxes/wlsbp_settings.php:962
#: admin/inc/metaboxes/wlsbp_settings.php:1289
#: admin/inc/metaboxes/wlsbp_settings.php:1614
#: admin/inc/metaboxes/wlsbp_settings.php:1905
#: admin/inc/metaboxes/wlsbp_settings.php:2194
msgid "Service Description Font Size"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:638
#: admin/inc/metaboxes/wlsbp_settings.php:981
#: admin/inc/metaboxes/wlsbp_settings.php:1308
#: admin/inc/metaboxes/wlsbp_settings.php:1633
#: admin/inc/metaboxes/wlsbp_settings.php:1924
#: admin/inc/metaboxes/wlsbp_settings.php:2213
msgid "Service Read More Text Font Size"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:657
#: admin/inc/metaboxes/wlsbp_settings.php:1000
#: admin/inc/metaboxes/wlsbp_settings.php:1327
#: admin/inc/metaboxes/wlsbp_settings.php:1652
#: admin/inc/metaboxes/wlsbp_settings.php:1943
#: admin/inc/metaboxes/wlsbp_settings.php:2232
msgid "Font Family"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:665
#: admin/inc/metaboxes/wlsbp_settings.php:1008
#: admin/inc/metaboxes/wlsbp_settings.php:1335
#: admin/inc/metaboxes/wlsbp_settings.php:1660
#: admin/inc/metaboxes/wlsbp_settings.php:1951
#: admin/inc/metaboxes/wlsbp_settings.php:2240
msgid "Select service showcase font family."
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:674
#: admin/inc/metaboxes/wlsbp_settings.php:1018
#: admin/inc/metaboxes/wlsbp_settings.php:1344
#: admin/inc/metaboxes/wlsbp_settings.php:1670
#: admin/inc/metaboxes/wlsbp_settings.php:1960
#: admin/inc/metaboxes/wlsbp_settings.php:2249
msgid "Service Grid Layout"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:693
#: admin/inc/metaboxes/wlsbp_settings.php:1037
#: admin/inc/metaboxes/wlsbp_settings.php:1363
#: admin/inc/metaboxes/wlsbp_settings.php:1689
#: admin/inc/metaboxes/wlsbp_settings.php:1979
#: admin/inc/metaboxes/wlsbp_settings.php:2268
msgid "One Column"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:700
#: admin/inc/metaboxes/wlsbp_settings.php:1044
#: admin/inc/metaboxes/wlsbp_settings.php:1370
#: admin/inc/metaboxes/wlsbp_settings.php:1696
#: admin/inc/metaboxes/wlsbp_settings.php:1986
#: admin/inc/metaboxes/wlsbp_settings.php:2275
msgid "Two Column"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:707
#: admin/inc/metaboxes/wlsbp_settings.php:1051
#: admin/inc/metaboxes/wlsbp_settings.php:1377
#: admin/inc/metaboxes/wlsbp_settings.php:1703
#: admin/inc/metaboxes/wlsbp_settings.php:1993
#: admin/inc/metaboxes/wlsbp_settings.php:2282
msgid "Three Column"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:714
#: admin/inc/metaboxes/wlsbp_settings.php:1058
#: admin/inc/metaboxes/wlsbp_settings.php:1384
#: admin/inc/metaboxes/wlsbp_settings.php:1710
#: admin/inc/metaboxes/wlsbp_settings.php:2000
#: admin/inc/metaboxes/wlsbp_settings.php:2289
msgid "Four Column"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:718
#: admin/inc/metaboxes/wlsbp_settings.php:1062
#: admin/inc/metaboxes/wlsbp_settings.php:1388
#: admin/inc/metaboxes/wlsbp_settings.php:1714
#: admin/inc/metaboxes/wlsbp_settings.php:2004
#: admin/inc/metaboxes/wlsbp_settings.php:2293
msgid "Choose a column layout for service showcase"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:1487
msgid "Service Icon Color background color"
msgstr ""
#: admin/inc/metaboxes/wlsbp_settings.php:1495
msgid "Choose color for service icon background."
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:21
#: admin/inc/WLSBP_ServiceBox_Admin.php:353
#: public/inc/WLSBP_Service_cpt.php:17
#: public/inc/WLSBP_Service_cpt.php:36
msgid "ServiceBox"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:23
msgid "Apply Settings On ServiceBox"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:25
msgid "Copy ServiceBox Shortcode"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:27
msgid "Display ServiceBox in your Theme"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:344
msgid "Enter ServiceBox Name"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:354
msgid "ServiceBox Shortcode"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:355
msgid "Display ServiceBox in Theme"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:356
msgid "Author"
msgstr ""
#: admin/inc/WLSBP_ServiceBox_Admin.php:357
msgid "Date"
msgstr ""
#: public/inc/style-layouts/style2/style2.php:160
msgid "Read More"
msgstr ""
#: public/inc/WLSBP_ServiceBox_Shortcode.php:37
msgid "Layout is not set for this ServiceBox."
msgstr ""
#: public/inc/WLSBP_ServiceBox_Shortcode.php:40
msgid "Settings not found for this ServiceBox."
msgstr ""
#: public/inc/WLSBP_ServiceBox_Shortcode.php:43
msgid "Please provide a valid ServiceBox shortcode ID."
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:14
msgctxt "Post Type General Name"
msgid "ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:15
msgctxt "Post Type Singular Name"
msgid "ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:18
msgid "ServiceBox Archives"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:19
msgid "ServiceBox Attributes"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:20
msgid "All ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:21
msgid "Add New ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:22
msgid "Add New"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:23
msgid "New ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:24
msgid "Edit ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:25
msgid "Update ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:26
#: public/inc/WLSBP_Service_cpt.php:27
msgid "View ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:28
msgid "Search ServiceBox"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:29
msgid "Not found"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:30
msgid "Not found in Trash"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:31
msgid "ServiceBox list"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:32
msgid "ServiceBox list navigation"
msgstr ""
#: public/inc/WLSBP_Service_cpt.php:33
msgid "Filter ServiceBox list"
msgstr ""

View File

@@ -0,0 +1,7 @@
# Changelog
All notable changes to **Sessions** are documented in this *changelog*.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Sessions** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.0] - 2020-03-24
### Initial release

View File

@@ -0,0 +1,23 @@
{
"name" : "wddportfolio/simple-emzon-links",
"description": "Simple Emzon Links is a simple WordPress plugin that uses Amazon Product Advertising API and allow you to display desired product from Amazon within your WordPress Post Editor.",
"keywords": [
"wordpress",
"amazon affiliate",
"Amazon",
"product advertising api"
],
"version" : "0.1.0",
"type" : "wordpress-plugin",
"license" : "GPL-2.0-or-later",
"authors" : [
{
"name" : "WDDPortfolio",
"homepage": "https://www.wddportfolio.com/"
},
{
"name" : "Muhammad Furqan Abid",
"homepage": "https://www.mfurqanabid.com/"
}
]
}

View File

@@ -0,0 +1,69 @@
# Copyright (C) 2020 SourceKnowledge
# This file is distributed under the same license as the SourceKnowledge Shopping Ads plugin.
msgid ""
msgstr ""
"Project-Id-Version: SourceKnowledge Shopping Ads 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sourceknowledge-shopping-ads\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-30T14:21:55-04:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
#. Plugin Name of the plugin
#: includes/class-sokno-shopping-ads-integration.php:50
msgid "SourceKnowledge Shopping Ads"
msgstr ""
#. Plugin URI of the plugin
msgid "https://sourceknowledge.com/shopping-ads-app"
msgstr ""
#. Description of the plugin
msgid "Reach in-market shoppers to drive new sales."
msgstr ""
#. Author of the plugin
msgid "SourceKnowledge"
msgstr ""
#. Author URI of the plugin
msgid "https://sourceknowledge.com/"
msgstr ""
#. translators: Placeholders: %1$s - opening <strong> HTML strong tag, %2$s - closing </strong> HTML strong tag, %3$s - opening <a> HTML link tag, %4$s - closing </a> HTML link tag
#: admin/class-sokno-shopping-ads-admin.php:107
msgid "%1$sSourceKnowledge Shopping Ads%2$s requires permalink enabled. Please %3$senable permalink%4$s."
msgstr ""
#. translators: Placeholders: %1$s - opening <strong> HTML strong tag, %2$s - closing </strong> HTML strong tag, %3$s - opening <a> HTML link tag, %4$s - closing </a> HTML link tag
#: admin/class-sokno-shopping-ads-admin.php:130
msgid "%1$sSourceKnowledge Shopping Ads%2$s is almost ready. To link your store, please %3$scomplete the setup steps%4$s."
msgstr ""
#: admin/partials/sokno-shopping-ads-admin-display.php:17
msgid "This plugin doesn't work without permalink enabled."
msgstr ""
#: admin/partials/sokno-shopping-ads-admin-display.php:19
msgid "Please enable permalink support in your settings."
msgstr ""
#: admin/partials/sokno-shopping-ads-admin-display.php:21
msgid "Go to permalink settings"
msgstr ""
#: admin/partials/sokno-shopping-ads-admin-display.php:30
msgid "Get Started"
msgstr ""
#: admin/partials/sokno-shopping-ads-admin-display.php:32
msgid "You successfully installed the SourceKnowledge integration."
msgstr ""
#: includes/class-sokno-shopping-ads-integration.php:54
msgid "Reach in-market shoppers to drive new sales"
msgstr ""

View File

@@ -0,0 +1,4 @@
Changelog
=========
#### 1.0.0 - March 11, 2020
** Initial release plugin**

View File

@@ -0,0 +1,13 @@
{
"name": "unicard",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.23.0"
}
}

View File

@@ -0,0 +1,239 @@
# Copyright (C) 2020 Vipps AS
# This file is distributed under the same license as the Vipps Recurring Payments Gateway for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Vipps Recurring Payments Gateway for WooCommerce 1.2.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vipps-recurring-payments-gateway-for-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-04-03T14:51:31+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: woo-vipps-recurring\n"
#. Plugin Name of the plugin
msgid "Vipps Recurring Payments Gateway for WooCommerce"
msgstr ""
#. Description of the plugin
msgid "Offer recurring payments with Vipps for WooCommerce Subscriptions"
msgstr ""
#. Author of the plugin
msgid "Vipps AS"
msgstr ""
#. Author URI of the plugin
msgid "https://vipps.no"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:11
msgid "Enable/Disable"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:12
msgid "Enable Vipps Recurring Payments"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:18
msgid "Title"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:20
msgid "This controls the title which the user sees during checkout."
msgstr ""
#: includes/admin/vipps-recurring-settings.php:21
msgid "Vipps"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:25
msgid "Description"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:27
msgid "This controls the description which the user sees during checkout."
msgstr ""
#: includes/admin/vipps-recurring-settings.php:28
msgid "Pay with Vipps."
msgstr ""
#: includes/admin/vipps-recurring-settings.php:32
msgid "client_id"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:34
#: includes/admin/vipps-recurring-settings.php:41
#: includes/admin/vipps-recurring-settings.php:48
msgid "Get your API keys from your Vipps developer portal."
msgstr ""
#: includes/admin/vipps-recurring-settings.php:39
msgid "client_secret"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:46
msgid "Vipps-Subscription-Key"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:53
msgid "Logging"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:54
msgid "Log debug messages"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:56
msgid "Save debug messages to the WooCommerce System Status log."
msgstr ""
#: includes/admin/vipps-recurring-settings.php:62
msgid "Cancelled order redirect page"
msgstr ""
#: includes/admin/vipps-recurring-settings.php:63
msgid "The page to redirect cancelled orders to."
msgstr ""
#: includes/admin/vipps-recurring-settings.php:65
msgid "Create a new page"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:80
#: includes/pages/admin/vipps-recurring-admin-menu-page.php:3
#: woo-vipps-recurring.php:265
#: woo-vipps-recurring.php:266
#: woo-vipps-recurring.php:300
msgid "Vipps Recurring Payments"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:81
msgid "Vipps Recurring Payments works by redirecting your customers to the Vipps portal for confirmation. It creates a payment plan and charges your users on the intervals you specify."
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:108
msgid "Pay with Vipps"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:219
msgid "It looks like you cancelled your order in Vipps. If this was a mistake you can try again by checking out again :)"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:222
msgid "Cancelled Vipps Purchase"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:232
msgid "Could not create or find the \"Cancelled Vipps Purchase\" page"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:344
msgid "The subtotal is zero, the order is free for this subscription period."
msgstr ""
#. translators: Vipps Charge ID
#: includes/class-wc-gateway-vipps-recurring.php:364
msgid "Vipps charge captured instantly (Charge ID: %s)"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:369
msgid "Vipps awaiting manual capture"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:379
msgid "The agreement was cancelled or expired in Vipps"
msgstr ""
#. translators: Vipps Charge ID
#: includes/class-wc-gateway-vipps-recurring.php:425
msgid "Vipps charge completed (Charge ID: %s)"
msgstr ""
#. translators: Vipps Charge ID
#: includes/class-wc-gateway-vipps-recurring.php:441
#: includes/class-wc-gateway-vipps-recurring.php:636
msgid "Vipps charge awaiting payment: %s. The amount will be drawn from your customer in 6 days."
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:446
msgid "Vipps payment cancelled."
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:452
msgid "Vipps payment failed."
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:556
msgid "You can not refund a pending or due Vipps charge. Please wait till the payment clears first!"
msgstr ""
#: includes/class-wc-gateway-vipps-recurring.php:657
msgid "Vipps failed to create charge"
msgstr ""
#. translators: Vipps Agreement ID
#: includes/class-wc-gateway-vipps-recurring.php:741
msgid "Vipps agreement created: %s. Customer sent to Vipps for confirmation."
msgstr ""
#: includes/class-wc-vipps-recurring-api.php:83
#: includes/class-wc-vipps-recurring-api.php:87
msgid "Could not get Vipps access token"
msgstr ""
#: includes/class-wc-vipps-recurring-api.php:334
msgid "No response from Vipps"
msgstr ""
#. translators: link to the plugin's settings page
#: includes/pages/admin/vipps-recurring-admin-menu-page.php:8
msgid "This area is for special actions that aren't settings. If you are looking for the plugin's settings, click <a href='%s'>here</a>."
msgstr ""
#: includes/pages/admin/vipps-recurring-admin-menu-page.php:13
msgid "If you have a lot of Vipps subscription orders that are currently on-hold you might want to force check the status of all the orders instead of waiting for the cron-job to do it's job."
msgstr ""
#: includes/pages/admin/vipps-recurring-admin-menu-page.php:21
msgid "Check status of all Vipps subscription orders now"
msgstr ""
#. translators: 1. URL link.
#: woo-vipps-recurring.php:30
msgid "Vipps recurring payments requires WooCommerce to be installed and active. You can download %s here."
msgstr ""
#. translators: 1. URL link.
#: woo-vipps-recurring.php:41
msgid "Vipps recurring payments requires WooCommerce Subscriptions to be installed and active. You can download %s here."
msgstr ""
#: woo-vipps-recurring.php:252
msgid "Vipps Recurring Payments is currently in test mode - no real transactions will occur. Disable this in your wp_config when you are ready to go live!"
msgstr ""
#: woo-vipps-recurring.php:317
msgid "Capture payment instantly"
msgstr ""
#: woo-vipps-recurring.php:318
msgid "Capture payment instantly even if the product is not virtual. Please make sure you are following Norwegian law when using this option."
msgstr ""
#: woo-vipps-recurring.php:366
msgid "Capture payment"
msgstr ""
#: woo-vipps-recurring.php:449
msgid "Settings"
msgstr ""
#. translators: Amount of orders checked
#: assets/js/vipps-recurring-admin.js:13
msgid "Done. Checked the status of %s orders"
msgstr ""

View File

@@ -0,0 +1,181 @@
= 1.24.19 =
* 8 January 2020
* UPDATE: REST API Device Fingerprinting Implementation
* FIXED: REST API BUG response code 00
= 1.23.18 =
* 31 December 2019
* UPDATE: update default signed field names
* FIXED: remove rest API capture button in the sop and wm
* UPDATE: MMD REST API implemented
= 1.22.17 =
* 19 October 2019
* UPDATE: REST API Integration
* FIXED: SOAP MDD Fields
* TWEAK: Adjustable Customer Address length settings
= 1.21.16 =
* 8 September 2019
* UPDATE: Silent Order Post (SOP) Subscription Integration
= 1.20.16 =
* 27 July 2019
* FIXED: save token not working in the first time checkout
* FIXED: PHP SOAP if not exist no methor available
* TESTED: Wordpress Version up to 5.2.2
* TESTED: WooCommerce Version up to 3.6.5
* TESTED: PHP 7 Version up to 7.2.20
* TESTED: MySQL Version up to 5.6.41-84.1
= 1.19.15 =
* 20 July 2019
* FIXED: save token not working in the first time checkout
* FIXED: PHP SOAP if not exist no methor available
* TESTED: Wordpress Version up to 5.2.2
* TESTED: WooCommerce Version up to 3.6.5
* TESTED: PHP 7 Version up to 7.2.20
* TESTED: MySQL Version up to 5.6.41-84.1
= 1.19.14 =
* 05 May 2019
* UPDATE: Envato Authot WordPress Plugin Requirements
* UPDATE: WC_Payment_Tokens implementation
* UPDATE: add order id into cybersource_add_signed_field_names filter to apply_filters( 'cybersource_add_signed_field_names', $order_id, true );
* FIXED: Offer-Line Details add new validation for a single quote (') item_x_name
* 24 Dec 2018
* FIXED: SO and SOP Card Expiration Year
* UPDATE: Add Extra links online documentation and support
= 1.18.12 =
* 03 Nov 2018
* UPDATE: depricated calls for WC 3.5.x
* FIXED: payment form html
* TESTED: Wordpress Version up to 4.9.9
* TESTED: WooCommerce Version up to 3.5.1
= 1.17.11 =
* 06 Oct 2018
* UPDATE: Add random number in consumer_id if guest user.
* UPDATE: Add save token if merchant notication is active.
* FIXED: Deprecated woocommerce order_key
* FIXED: Deprecated woocommerce WC_Cart::get_checkout_url()
* FIXED: Deprecated woocommerce get order id
* FIXED: Deprecated woocommerce get status
* FIXED: Deprecated woocommerce woocommerce_clean
* FIXED: Deprecated woocommerce credit_card_form
* TESTED: Wordpress Version up to 4.9.9
* TESTED: WooCommerce Version up to 3.4.5
= 1.16.10 =
* 05 July 2018
* UPDATE: License API URI Validator
= 1.15.10 =
* 30 June 2018
* UPDATE: Support WooCommerce Subscription Addon
= 1.14.10 =
* 06 June 2018
* UPDATE: add consumer_id field in Secure Acceptance Web/Mobile
* UPDATE: Merchant Notifications Post URL Supported (http://my-store.com/?wc-api=WC_API_Cybersource_SAWM&mnp=1).
* UPDATE: Redirection Message CSS Div Block Mobile Responsive Supported.
* TESTED: Wordpress Version up to 4.9.9
* TESTED: WooCommerce Version up to 3.3.5
= 1.13.10 =
* 10 Mar 2018
* FIXED: woocommerce_clean is deprecated.
* FIXED: item name with special charaters.
* FIXED: bill_to_company_name maximmum of string(40) length error
* NEW: add new feature counter check for the order status if the cybersource payment success but the order status still pending
= 1.12.9 =
* 21 Jan 2018
* NEW: add new readme.txt for plugin compatibality.
* FIXED: Simple Order API (SOAP) - SOAP-ERROR: Parsing WSDL: Couldn't load
* TESTED: Wordpress Version up to 4.9
* TESTED: WooCommerce Version up to 3.2
= 1.11.8 =
* 01 Dec 2017
* NEW: Fingerprint Device ID Profiler
* New: Multisite Supported
* UPDATE: Simple Order API (SOAP) - Options Settings to disable Address Verification Services (AVS)
* UPDATE: Options to set Accepted Card Logos
= 1.10.7 =
* 09 Oct 2017
* UPDATE: Web/Mobile Save Card / eCheck Options
= 1.9.7 =
* 12 Sept 2017
* FIXED: Bugs when CodeCanyon Purchase Code Activation.
= 1.9.6 =
* 09 Sept 2017
* UPDATE: Total amount type order to (double).
* UPDATE: Add new settings for MDD Fields.
* UPDATE: Add New settings CodeCanyon Purchase Code Activation.
* FIXED: Bugs when submitting cart item name to cybersource with '"'.
= 1.8.5 (30 july 2017 ) =
UPDATE: Additional Signed Field Names
- merchant_id
- Merchant Defined Data (MDD) Fields
UPDATE: Request and Response Logger for Cybersource Simple Order API(SOAP)
FIXED: Removed Order Noted ($order->add_order_note()) call function creating error on transaction_response()
= 1.7.4 (16 july 2017 ) =
NEW: Cybersource APIs option settings
- Simple Order API (SOAP)
- Secure Acceptance Silent Order POST
- Secure Acceptance Web/Mobile
- Secure Acceptance Web/Mobile & Silent Order POST
NEW: additional custom code functionality Merchant Defined Data (MDD) Fields add_filter implementation.
UPDATE: Cybersource Profile credentials live and test option settings
UPDATE: additional settings disable round off total amount
UPDATE: additional settings disable round off line tax amount and line total amount
UPDATE: additional Generate HEADER HTML function into the settings
UPDATE: additional Generate HR HTML function into the settings
FIXED: Support WC version 3.x Customer information getters function during checkout and order receipt.
FIXED: Get Product SKU.
= 1.6.3 (28 mar 2017) =
UPDATE: Additional Signed Field Names
bill_address1
bill_city
= 1.5.3 (11 mar 2017) =
FIXED: item_0_unit_price invalid format.
= 1.5.2 (02 mar 2017) =
UPDATE: Checkout Reference Order Id change to Order No.
UPDATE: Auto Detect if order is virtual. the order status is automatically complete after payment.
FIXED: Web/Mobile Secure Acceptance not using token.
= 1.4.1 (16 feb 2017) =
UPDATE: Option to set enable save card.
= 1.3.1 (06 feb 2017) =
FIXED: Fatal error, Can't use method return value in write context line 437
FIXED: Logger Request and Response Parameters
= 1.3.0 (14 Nov 17) =
UPDATE: Additional Signed Field Names
ship_to_address_city, ship_to_address_country, ship_to_address_line1, ship_to_address_line2, ship_to_address_postal_code, ship_to_address_state, ship_to_forename, ship_to_phone, ship_to_surname, tax_amount, item_#_name, item_#_code, item_#_quantity, item_#_sku, item_#_unit_price, item_#_tax_amount, line_item_count
UPDATE: Additional Offer-Line Details Settings
UPDATE: Plugin Name and Description Update
UPDATE: Payment Gateway method title and Description Update
UPDATE: Additional plugin settings links
= 1.2.0 (22 Nov 17) =
UPDATE: Storing card tokens for future payments
UPDATE: Web/Mobile and SOP Integration
= 1.0.0 (21 july 15) =
Initial release version

View File

@@ -0,0 +1,92 @@
# Aelia PayPal Standard gateway with multi account support
## Version 1.x
####1.3.3.180413
* Tweak - Improved logic to fetch the PayPal email address during IPN verification.
####1.3.2.171220
* Fix - Fixed refund logic in WooCommerce 3.2.6.
####1.3.1.170308
* Improved compatibility with WooCommerce 2.7:
* Replaced calls to `WC_Order::get_order_currency()` with `WC_Order::get_currency()`.
* Updated requirements.
* Updated requirement checking class.
* Improved compatibility with WordPress 4.7 and later. Added new logic to process the global `$wp_filter` variable.
####1.3.0.160106
* Rewritten gateway for WooCommerce 2.4.x. WC 2.4 includes the improvements we submitted to make the PayPal gateway more extensible. The rewritten gateway takes advantage of such changes, simplifying the multi-account logic.
####1.2.6.151208
* Fixed bug in `woocommerce_subscriptions_paypal_change_status_data` handler. Removed call to `WC_Gateway_Paypal_MultiAccount::obsolete get_order_from_subscriber_id()` method.
####1.2.5.151020
* Added new filter `payment_status_completed_data`. This new filter will allow 3rd party to pre-process payment data before it's validated.
####1.2.4.150903
* Removed unneeded code that raised some minor warnings.
####1.2.3.150731
* Updated requirement checking class.
####1.2.4.150630
* Refactored logic to validate IPN. Added mechanism to remove all references to the base IPN Handler class.
####1.2.3.150610
* Fixed bug in IPN handling in WooCommerce 2.3.10. The bug was caused by incorrect references in base `WC_Gateway_Paypal_IPN_Handler` class, which caused the PayPal merchant email validation to fail. Ref. https://github.com/woothemes/woocommerce/pull/8348.
####1.2.2.150519
* Refactored `WC_Gateway_Paypal_MultiAccount::woocommerce_subscriptions_paypal_change_status_data()`. The method now uses the order object passed to it by the Subscription plugin.
* Added `WC_Gateway_Paypal_MultiAccount::woocommerce_subscriptions_paypal_change_status_data()` method to PayPal gateway for WooCommerce 2.2 and earlier.
####1.2.1.150515
* Improved support for Subscriptions. The plugin can now alter the API keys used by the Subscriptions plugin depending on the currency used to buy the subscription.
* Set requirements to WooCommerce 2.3.8. The plugin cannot work properly with WooCommerce 2.3.0 to 2.3.7 due to some issues in the core.
* Imported logic to use a single logger for all PayPal Standard classes in WooCommerce 2.3. Ref. https://github.com/woothemes/woocommerce/commit/33d94aaea46137a0d8366e9033e6bebd218333cc.
####1.2.0.150506
* Added support for PayPal API settings in multiple currencies.
* Added support for refunds.
####1.1.2.150422
* Rewritten PayPal Request, PDT and IPN classes to work with unpatched WooCommerce. This was necessary after the decision, from WooCommerce team, of not fixing the PayPal gateway in WC 2.3.x.
####1.1.1.150420
* Fixed bug in `WC_Gateway_Paypal_IPN_Handler` class. The bug caused IPN validation to fail.
####1.1.0.150319
* Added support for the complicated PayPal Standard gateway included with WC2.3:
* Added new `WC_Gateway_Paypal_MultiAccount` class.
* Added new `WC_Gateway_Paypal_Request` class.
* Added new `WC_Gateway_Paypal_IPN_Handler` class.
* Added new `WC_Gateway_Paypal_PDT_Handler` class.
* Updated requirements. Plugin now required WooCommerce 2.1, 2.2 or 2.3.8 and later.
####1.0.8.150310
* Improved requirements checking. The new logic will prevent the plugin from crashing when the requirements are not met.
####1.0.7.140903
* Packaged plugin for public release.
####1.0.6.140318
* Added WC_Gateway_Paypal_MultiAccount::get_paypal_order() method.
####1.0.5.140318
* Improved debug code.
####1.0.4.140228
* Improved debug code.
####1.0.3.140228
* Corrected PayPal notification URL.
####1.0.2.140228
* Fixed bug in retrieving the default receiver email for a currency.
* Improved logging.
####1.0.1.140227
* Improved debug mode.
* Corrected plugin name.
####1.0.0.140227
* First release.

View File

@@ -0,0 +1,24 @@
*** WooCommerce Payments Changelog ***
2020-04-09 - version 0.9.1
* Fix - Add logging for OAuth initialization failures
2020-04-08 - version 0.9.0
* Release for Public Beta
2020-03-10 - version 0.8.2
* Add - Dispute file evidence upload support
* Add - Basic support for Pay for Order
* Fix - Styling improvements in wp-admin
* Fix - Undefined variable PHP notice in cancel_authorization
* Fix - Remove unused variable in authentication
* Fix - Improve Jetpack connection checking
2020-02-25 - version 0.8.1
* Update link to test card documentation
2020-02-24 - version 0.8.0
* First beta release
2020-02-05 - version 0.7.0
* Alpha release

View File

@@ -0,0 +1,733 @@
# Copyright (C) 2020 WPEka Club
# This file is distributed under the same license as the WP AdCenter plugin.
msgid ""
msgstr ""
"Project-Id-Version: WP AdCenter 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpadcenter\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-23T06:19:58+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: wpadcenter\n"
#. Plugin Name of the plugin
msgid "WP AdCenter"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wpadcenter.com/"
msgstr ""
#. Description of the plugin
msgid "Advertising management plugin for WordPress."
msgstr ""
#. Author of the plugin
msgid "WPEka Club"
msgstr ""
#. Author URI of the plugin
msgid "https://club.wpeka.com/"
msgstr ""
#: admin/class-wpadcenter-admin.php:128
msgid "Go Pro"
msgstr ""
#: admin/class-wpadcenter-admin.php:141
msgid "Settings"
msgstr ""
#: admin/class-wpadcenter-admin.php:142
#: admin/class-wpadcenter-admin.php:219
#: admin/class-wpadcenter-admin.php:221
msgid "Ad Zones"
msgstr ""
#: admin/class-wpadcenter-admin.php:143
#: admin/class-wpadcenter-admin.php:257
#: admin/class-wpadcenter-admin.php:259
msgid "Advertisers"
msgstr ""
#: admin/class-wpadcenter-admin.php:144
#: admin/class-wpadcenter-admin.php:295
#: admin/class-wpadcenter-admin.php:297
msgid "Campaigns"
msgstr ""
#: admin/class-wpadcenter-admin.php:145
#: admin/class-wpadcenter-admin.php:333
#: admin/class-wpadcenter-admin.php:335
msgid "Banners"
msgstr ""
#: admin/class-wpadcenter-admin.php:147
#: admin/views/admin-display-getting-started.php:21
msgid "Getting Started"
msgstr ""
#: admin/class-wpadcenter-admin.php:167
#: admin/class-wpadcenter-admin.php:199
msgid "You do not have sufficient permission to perform this operation"
msgstr ""
#: admin/class-wpadcenter-admin.php:185
msgid "Settings Updated."
msgstr ""
#: admin/class-wpadcenter-admin.php:220
msgid "Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:222
msgid "All Ad Zones"
msgstr ""
#: admin/class-wpadcenter-admin.php:223
msgid "Add New Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:224
#: admin/class-wpadcenter-admin.php:262
#: admin/class-wpadcenter-admin.php:300
#: admin/class-wpadcenter-admin.php:338
msgid "Add New"
msgstr ""
#: admin/class-wpadcenter-admin.php:225
msgid "New Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:226
msgid "Edit Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:227
msgid "Update Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:228
msgid "View Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:229
msgid "View Ad Zones"
msgstr ""
#: admin/class-wpadcenter-admin.php:230
msgid "Search Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:231
#: admin/class-wpadcenter-admin.php:269
#: admin/class-wpadcenter-admin.php:307
#: admin/class-wpadcenter-admin.php:345
msgid "Not found"
msgstr ""
#: admin/class-wpadcenter-admin.php:232
#: admin/class-wpadcenter-admin.php:270
#: admin/class-wpadcenter-admin.php:308
#: admin/class-wpadcenter-admin.php:346
msgid "Not found in Trash"
msgstr ""
#: admin/class-wpadcenter-admin.php:258
msgid "Advertiser"
msgstr ""
#: admin/class-wpadcenter-admin.php:260
msgid "All Advertisers"
msgstr ""
#: admin/class-wpadcenter-admin.php:261
msgid "Add New Advertiser"
msgstr ""
#: admin/class-wpadcenter-admin.php:263
msgid "New Advertiser"
msgstr ""
#: admin/class-wpadcenter-admin.php:264
msgid "Edit Advertiser"
msgstr ""
#: admin/class-wpadcenter-admin.php:265
msgid "Update Advertiser"
msgstr ""
#: admin/class-wpadcenter-admin.php:266
msgid "View Advertiser"
msgstr ""
#: admin/class-wpadcenter-admin.php:267
msgid "View Advertisers"
msgstr ""
#: admin/class-wpadcenter-admin.php:268
msgid "Search Advertiser"
msgstr ""
#: admin/class-wpadcenter-admin.php:296
msgid "Campaign"
msgstr ""
#: admin/class-wpadcenter-admin.php:298
msgid "All Campaigns"
msgstr ""
#: admin/class-wpadcenter-admin.php:299
msgid "Add New Campaign"
msgstr ""
#: admin/class-wpadcenter-admin.php:301
msgid "New Campaign"
msgstr ""
#: admin/class-wpadcenter-admin.php:302
msgid "Edit Campaign"
msgstr ""
#: admin/class-wpadcenter-admin.php:303
msgid "Update Campaign"
msgstr ""
#: admin/class-wpadcenter-admin.php:304
msgid "View Campaign"
msgstr ""
#: admin/class-wpadcenter-admin.php:305
msgid "View Campaigns"
msgstr ""
#: admin/class-wpadcenter-admin.php:306
msgid "Search Campaign"
msgstr ""
#: admin/class-wpadcenter-admin.php:334
msgid "Banner"
msgstr ""
#: admin/class-wpadcenter-admin.php:336
msgid "All Banners"
msgstr ""
#: admin/class-wpadcenter-admin.php:337
msgid "Add New Banner"
msgstr ""
#: admin/class-wpadcenter-admin.php:339
msgid "New Banner"
msgstr ""
#: admin/class-wpadcenter-admin.php:340
msgid "Edit Banner"
msgstr ""
#: admin/class-wpadcenter-admin.php:341
msgid "Update Banner"
msgstr ""
#: admin/class-wpadcenter-admin.php:342
msgid "View Banner"
msgstr ""
#: admin/class-wpadcenter-admin.php:343
msgid "View Banners"
msgstr ""
#: admin/class-wpadcenter-admin.php:344
msgid "Search Banner"
msgstr ""
#: admin/class-wpadcenter-admin.php:392
msgctxt "Advertiser Status"
msgid "Approved"
msgstr ""
#. translators: %s: number of advertisers
#: admin/class-wpadcenter-admin.php:395
msgid "Approved <span class=\"count\">(%s)</span>"
msgid_plural "Approved <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: admin/class-wpadcenter-admin.php:402
msgctxt "Advertiser Status"
msgid "Pending"
msgstr ""
#. translators: %s: number of advertisers
#: admin/class-wpadcenter-admin.php:405
msgid "Pending <span class=\"count\">(%s)</span>"
msgid_plural "Pending <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: admin/class-wpadcenter-admin.php:412
msgctxt "Advertiser Status"
msgid "Declined"
msgstr ""
#. translators: %s: number of advertisers
#: admin/class-wpadcenter-admin.php:415
msgid "Declined <span class=\"count\">(%s)</span>"
msgid_plural "Declined <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: admin/class-wpadcenter-admin.php:439
msgctxt "Campaign Status"
msgid "Paused"
msgstr ""
#. translators: %s: number of advertisers
#: admin/class-wpadcenter-admin.php:442
msgid "Paused <span class=\"count\">(%s)</span>"
msgid_plural "Paused <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: admin/class-wpadcenter-admin.php:449
msgctxt "Campaign Status"
msgid "Running"
msgstr ""
#. translators: %s: number of advertisers
#: admin/class-wpadcenter-admin.php:452
msgid "Running <span class=\"count\">(%s)</span>"
msgid_plural "Running <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: admin/class-wpadcenter-admin.php:459
msgctxt "Campaign Status"
msgid "Scheduled"
msgstr ""
#. translators: %s: number of advertisers
#: admin/class-wpadcenter-admin.php:462
msgid "Scheduled <span class=\"count\">(%s)</span>"
msgid_plural "Scheduled <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: admin/class-wpadcenter-admin.php:469
msgctxt "Campaign Status"
msgid "Finished"
msgstr ""
#. translators: %s: number of advertisers
#: admin/class-wpadcenter-admin.php:472
msgid "Finished <span class=\"count\">(%s)</span>"
msgid_plural "Finished <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: admin/class-wpadcenter-admin.php:496
#: includes/class-wpadcenter-widget.php:233
msgid "Select Ad Zone"
msgstr ""
#: admin/class-wpadcenter-admin.php:723
#: admin/class-wpadcenter-admin.php:741
msgid "No Ads found."
msgstr ""
#: admin/class-wpadcenter-admin.php:737
msgid "No Campaigns found."
msgstr ""
#: admin/class-wpadcenter-admin.php:744
msgid "Please choose ad zone."
msgstr ""
#: admin/class-wpadcenter-admin.php:1711
msgid "None"
msgstr ""
#: admin/class-wpadcenter-admin.php:1712
msgid "Fade"
msgstr ""
#: admin/class-wpadcenter-admin.php:1713
msgid "Fade Out"
msgstr ""
#: admin/class-wpadcenter-admin.php:1714
msgid "Zoom"
msgstr ""
#: admin/class-wpadcenter-admin.php:1715
msgid "Fade Zoom"
msgstr ""
#: admin/class-wpadcenter-admin.php:1716
msgid "Cover"
msgstr ""
#: admin/class-wpadcenter-admin.php:1717
msgid "Uncover"
msgstr ""
#: admin/class-wpadcenter-admin.php:1718
msgid "Toss"
msgstr ""
#: admin/class-wpadcenter-admin.php:1719
msgid "Wipe"
msgstr ""
#: admin/class-wpadcenter-admin.php:1720
msgid "Shuffle"
msgstr ""
#: admin/class-wpadcenter-admin.php:1721
msgid "Slide X"
msgstr ""
#: admin/class-wpadcenter-admin.php:1722
msgid "Slide Y"
msgstr ""
#: admin/class-wpadcenter-admin.php:1723
msgid "Blind X"
msgstr ""
#: admin/class-wpadcenter-admin.php:1724
msgid "Blind Y"
msgstr ""
#: admin/class-wpadcenter-admin.php:1725
msgid "Blind Z"
msgstr ""
#: admin/class-wpadcenter-admin.php:1726
msgid "Grow X"
msgstr ""
#: admin/class-wpadcenter-admin.php:1727
msgid "Grow Y"
msgstr ""
#: admin/class-wpadcenter-admin.php:1728
msgid "Curtain X"
msgstr ""
#: admin/class-wpadcenter-admin.php:1729
msgid "Curtain Y"
msgstr ""
#: admin/class-wpadcenter-admin.php:1730
msgid "Scroll Up"
msgstr ""
#: admin/class-wpadcenter-admin.php:1731
msgid "Scroll Down"
msgstr ""
#: admin/class-wpadcenter-admin.php:1732
msgid "Scroll Left"
msgstr ""
#: admin/class-wpadcenter-admin.php:1733
msgid "Scroll Right"
msgstr ""
#: admin/class-wpadcenter-admin.php:1734
msgid "Scroll Horizontal"
msgstr ""
#: admin/class-wpadcenter-admin.php:1735
msgid "Scroll Vertical"
msgstr ""
#: admin/class-wpadcenter-admin.php:1736
msgid "Turn Up"
msgstr ""
#: admin/class-wpadcenter-admin.php:1737
msgid "Turn Down"
msgstr ""
#: admin/class-wpadcenter-admin.php:1738
msgid "Turn Left"
msgstr ""
#: admin/class-wpadcenter-admin.php:1739
msgid "Turn Right"
msgstr ""
#. translators: %s: custom post type
#: admin/class-wpadcenter-admin.php:1767
#: admin/class-wpadcenter-admin.php:1769
msgid "%s updated."
msgstr ""
#. translators: %s: custom post type
#: admin/class-wpadcenter-admin.php:1771
#: admin/class-wpadcenter-admin.php:1773
#: admin/class-wpadcenter-admin.php:1775
msgid "%s saved."
msgstr ""
#. translators: %s: post title
#: admin/class-wpadcenter-admin.php:1806
msgid "Approve &#8220;%s&#8221;"
msgstr ""
#: admin/class-wpadcenter-admin.php:1810
msgid "Approve"
msgstr ""
#. translators: %s: post title
#: admin/class-wpadcenter-admin.php:1819
msgid "Decline &#8220;%s&#8221;"
msgstr ""
#: admin/class-wpadcenter-admin.php:1823
msgid "Decline"
msgstr ""
#. translators: %s: post title
#: admin/class-wpadcenter-admin.php:1836
msgid "Re-Run &#8220;%s&#8221;"
msgstr ""
#: admin/class-wpadcenter-admin.php:1840
msgid "Re-Run"
msgstr ""
#. translators: %s: post title
#: admin/class-wpadcenter-admin.php:1851
msgid "Pause &#8220;%s&#8221;"
msgstr ""
#: admin/class-wpadcenter-admin.php:1855
msgid "Pause"
msgstr ""
#: admin/class-wpadcenter-admin.php:2064
msgid "Yes"
msgstr ""
#: admin/class-wpadcenter-admin.php:2066
msgid "No"
msgstr ""
#: admin/class-wpadcenter-admin.php:2267
msgid "The advertiser you are trying to approve no longer exists."
msgstr ""
#: admin/class-wpadcenter-admin.php:2271
#: admin/class-wpadcenter-admin.php:2317
#: admin/class-wpadcenter-admin.php:2363
#: admin/class-wpadcenter-admin.php:2407
msgid "Invalid post type."
msgstr ""
#: admin/class-wpadcenter-admin.php:2313
msgid "The advertiser you are trying to decline no longer exists."
msgstr ""
#: admin/class-wpadcenter-admin.php:2359
msgid "The campaign you are trying to re-run no longer exists."
msgstr ""
#: admin/class-wpadcenter-admin.php:2403
msgid "The campaign you are trying to pause no longer exists."
msgstr ""
#: admin/class-wpadcenter-admin.php:2437
msgid "Approved"
msgstr ""
#: admin/class-wpadcenter-admin.php:2438
msgid "Pending"
msgstr ""
#: admin/class-wpadcenter-admin.php:2439
msgid "Declined"
msgstr ""
#: admin/class-wpadcenter-admin.php:2456
msgid "Paused"
msgstr ""
#: admin/class-wpadcenter-admin.php:2457
msgid "Running"
msgstr ""
#: admin/class-wpadcenter-admin.php:2458
msgid "Scheduled"
msgstr ""
#: admin/class-wpadcenter-admin.php:2459
msgid "Finished"
msgstr ""
#: admin/partials/wpadcenter-admin-display.php:16
msgid "Settings updated."
msgstr ""
#: admin/partials/wpadcenter-admin-display.php:17
msgid "Unable to update Settings."
msgstr ""
#: admin/partials/wpadcenter-admin-display.php:26
msgid "General"
msgstr ""
#: admin/views/admin-display-general.php:23
msgid "Auto Refresh"
msgstr ""
#: admin/views/admin-display-general.php:25
msgid "Enable"
msgstr ""
#: admin/views/admin-display-general.php:26
msgid "Disable"
msgstr ""
#: admin/views/admin-display-general.php:27
msgid "Auto refresh all ads on pages."
msgstr ""
#: admin/views/admin-display-general.php:31
msgid "Transition Effect"
msgstr ""
#: admin/views/admin-display-general.php:36
msgid "Transition effect for ads, if Auto Refresh is enabled."
msgstr ""
#: admin/views/admin-display-general.php:40
msgid "Transition Speed"
msgstr ""
#: admin/views/admin-display-general.php:43
msgid "Speed in milliseconds for ad transitions, if Auto Refresh is enabled."
msgstr ""
#: admin/views/admin-display-general.php:47
msgid "Transition Delay"
msgstr ""
#: admin/views/admin-display-general.php:50
msgid "Delay in milliseconds between ad transitions, if Auto Refresh is enabled."
msgstr ""
#: admin/views/admin-display-getting-started.php:22
msgid "1. Setup WP AdCenter"
msgstr ""
#: admin/views/admin-display-getting-started.php:24
msgid "Configure WP AdCenter settings including:"
msgstr ""
#: admin/views/admin-display-getting-started.php:26
msgid "Auto-refresh of ads"
msgstr ""
#: admin/views/admin-display-getting-started.php:27
msgid "Transitions, and more"
msgstr ""
#: admin/views/admin-display-getting-started.php:30
msgid "Configure WP AdCenter"
msgstr ""
#: admin/views/admin-display-getting-started.php:32
msgid "2. Create Ad Zones"
msgstr ""
#: admin/views/admin-display-getting-started.php:34
msgid "Ad Zone contains multiple ads. They can be displayed anywhere on your website using a simple WordPress Gutenberg block."
msgstr ""
#: admin/views/admin-display-getting-started.php:35
msgid "Create Ad Zone"
msgstr ""
#: admin/views/admin-display-getting-started.php:37
msgid "3. Add Advertisers"
msgstr ""
#: admin/views/admin-display-getting-started.php:39
msgid "Advertisers pay you to display banner ads on your website. Before you create banner ads, youll need to create an advertiser."
msgstr ""
#: admin/views/admin-display-getting-started.php:40
msgid "Add Advertiser"
msgstr ""
#: admin/views/admin-display-getting-started.php:42
msgid "4. Create Campaigns"
msgstr ""
#: admin/views/admin-display-getting-started.php:44
msgid "Campaigns determine how long your ads run."
msgstr ""
#: admin/views/admin-display-getting-started.php:45
msgid "Create Campaign"
msgstr ""
#: admin/views/admin-display-getting-started.php:47
msgid "5. Create Ads"
msgstr ""
#: admin/views/admin-display-getting-started.php:49
msgid "Ads can be images, external image URLs, or javascript code from Google AdSense, Amazon Shopping, Media.net or other any ad network."
msgstr ""
#: admin/views/admin-display-getting-started.php:50
msgid "Create Ad"
msgstr ""
#: admin/views/admin-display-getting-started.php:53
msgid "About WP AdCenter"
msgstr ""
#: admin/views/admin-display-getting-started.php:55
msgid "WPAdCenter is a Powerful WordPress Ads Plugin. You can control every aspect of advertising on any WordPress powered website. Place banners or Ad scripts anywhere on your site. Compatible with Gutenberg & Popular Page Builders."
msgstr ""
#: admin/views/admin-display-getting-started.php:57
msgid "Help & Support"
msgstr ""
#: admin/views/admin-display-getting-started.php:60
msgid "Documentation"
msgstr ""
#: admin/views/admin-display-getting-started.php:62
msgid "Support"
msgstr ""
#: admin/views/admin-display-getting-started.php:64
msgid "Forums"
msgstr ""
#: admin/views/admin-display-getting-started.php:65
msgid "Upgrade to WP AdCenter Pro"
msgstr ""
#: admin/views/admin-display-save-button.php:23
msgid "Update"
msgstr ""
#: includes/class-wpadcenter-widget.php:29
msgid "Display ads in a Widget"
msgstr ""
#. translators: %s: Adzone title
#: includes/class-wpadcenter-widget.php:263
msgid "Edit %s"
msgstr ""

View File

@@ -0,0 +1,211 @@
# Copyright (C) 2020 WPClever.net
# This file is distributed under the same license as the WPC Countdown Timer for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: WPC Countdown Timer for WooCommerce 1.0.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-countdown-timer\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-03-27T16:59:25+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: wpc-countdown-timer\n"
#. Plugin Name of the plugin
msgid "WPC Countdown Timer for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wpclever.net/"
msgstr ""
#. Description of the plugin
msgid "WPC Countdown Timer helps you display countdown timer in single product pages and shop page."
msgstr ""
#. Author of the plugin
msgid "WPClever.net"
msgstr ""
#. Author URI of the plugin
msgid "https://wpclever.net"
msgstr ""
#: wpc-countdown-timer.php:125
#: wpc-countdown-timer.php:135
msgid "WPC Countdown Timer"
msgstr ""
#: wpc-countdown-timer.php:125
msgid "Countdown Timer"
msgstr ""
#: wpc-countdown-timer.php:138
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
msgstr ""
#: wpc-countdown-timer.php:141
msgid "Reviews"
msgstr ""
#: wpc-countdown-timer.php:143
msgid "Changelog"
msgstr ""
#: wpc-countdown-timer.php:145
msgid "Discussion"
msgstr ""
#: wpc-countdown-timer.php:152
msgid "How to use?"
msgstr ""
#: wpc-countdown-timer.php:156
#: wpc-countdown-timer.php:411
msgid "Settings"
msgstr ""
#: wpc-countdown-timer.php:160
#: wpc-countdown-timer.php:271
msgid "Shortcode"
msgstr ""
#: wpc-countdown-timer.php:164
msgid "Premium Version"
msgstr ""
#: wpc-countdown-timer.php:172
msgid "When adding/editing the product you can choose the \"Countdown\" tab then add your countdown timer."
msgstr ""
#: wpc-countdown-timer.php:184
msgid "General"
msgstr ""
#: wpc-countdown-timer.php:188
msgid "Position on archive"
msgstr ""
#: wpc-countdown-timer.php:193
#: wpc-countdown-timer.php:224
msgid "Under title"
msgstr ""
#: wpc-countdown-timer.php:197
msgid "Under rating"
msgstr ""
#: wpc-countdown-timer.php:201
msgid "Under price"
msgstr ""
#: wpc-countdown-timer.php:205
#: wpc-countdown-timer.php:236
msgid "Above add to cart"
msgstr ""
#: wpc-countdown-timer.php:209
#: wpc-countdown-timer.php:240
msgid "Under add to cart"
msgstr ""
#: wpc-countdown-timer.php:213
#: wpc-countdown-timer.php:252
msgid "None (hide it)"
msgstr ""
#: wpc-countdown-timer.php:219
msgid "Position on single"
msgstr ""
#: wpc-countdown-timer.php:228
msgid "Under price & rating"
msgstr ""
#: wpc-countdown-timer.php:232
msgid "Under excerpt"
msgstr ""
#: wpc-countdown-timer.php:244
msgid "Under meta"
msgstr ""
#: wpc-countdown-timer.php:248
msgid "Under sharing"
msgstr ""
#: wpc-countdown-timer.php:260
msgid "Update Options"
msgstr ""
#: wpc-countdown-timer.php:274
msgid "Configure below options to build your shortcode :)"
msgstr ""
#: wpc-countdown-timer.php:306
msgid "Active"
msgstr ""
#: wpc-countdown-timer.php:309
msgid "Yes"
msgstr ""
#: wpc-countdown-timer.php:310
msgid "No"
msgstr ""
#: wpc-countdown-timer.php:316
msgid "Start time"
msgstr ""
#: wpc-countdown-timer.php:324
msgid "End time"
msgstr ""
#: wpc-countdown-timer.php:332
msgid "Above text"
msgstr ""
#: wpc-countdown-timer.php:340
msgid "Under text"
msgstr ""
#: wpc-countdown-timer.php:348
msgid "Ended text"
msgstr ""
#: wpc-countdown-timer.php:356
msgid "Style"
msgstr ""
#: wpc-countdown-timer.php:359
msgid "Style 01 (flat)"
msgstr ""
#: wpc-countdown-timer.php:360
msgid "Style 02 (square)"
msgstr ""
#: wpc-countdown-timer.php:361
msgid "Style 03 (rounded)"
msgstr ""
#: wpc-countdown-timer.php:427
msgid "Premium support"
msgstr ""
#: wpc-countdown-timer.php:438
#: wpc-countdown-timer.php:604
msgid "Countdown"
msgstr ""
#: wpc-countdown-timer.php:458
msgid "Current time"
msgstr ""
#: wpc-countdown-timer.php:462
msgid "Date/time settings"
msgstr ""

View File

@@ -474,3 +474,8 @@ FooBox.ready(function() {
<meta name="exopin" content="3.5.5;1">
<!-- wp-traffic-pro -->
<meta name="generator" content="WP-Traffic 1.0.0">

View File

@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.name = 'wpscan'
s.version = WPScan::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.4'
s.required_ruby_version = '>= 2.5'
s.authors = ['WPScanTeam']
s.date = Time.now.utc.strftime('%Y-%m-%d')
s.email = ['team@wpscan.org']
@@ -21,14 +21,14 @@ Gem::Specification.new do |s|
s.executables = ['wpscan']
s.require_paths = ['lib']
s.add_dependency 'cms_scanner', '~> 0.8.5'
s.add_dependency 'cms_scanner', '~> 0.9.0'
s.add_development_dependency 'bundler', '>= 1.6'
s.add_development_dependency 'memory_profiler', '~> 0.9.13'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.9.0'
s.add_development_dependency 'rspec-its', '~> 1.3.0'
s.add_development_dependency 'rubocop', '~> 0.80.0'
s.add_development_dependency 'rubocop', '~> 0.81.0'
s.add_development_dependency 'rubocop-performance', '~> 1.5.0'
s.add_development_dependency 'simplecov', '~> 0.18.2'
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'