Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
452126b56a | ||
|
|
28dfd8b3b9 | ||
|
|
d3196bc03f | ||
|
|
0bff3231cd | ||
|
|
6e9d147dd0 | ||
|
|
9a7872a7c4 | ||
|
|
e8f10fb2db | ||
|
|
221f3fcbfd | ||
|
|
ab5153363f | ||
|
|
8576145d3f | ||
|
|
7908fb7d97 | ||
|
|
44b934540e | ||
|
|
9978595237 | ||
|
|
109c701e4f | ||
|
|
11f35d86ff | ||
|
|
fa3005f2b7 | ||
|
|
f30255d6d8 | ||
|
|
183df75112 |
@@ -1,6 +1,7 @@
|
||||
require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
SuggestExtensions: false
|
||||
TargetRubyVersion: 2.5
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
|
||||
23
README.md
23
README.md
@@ -24,10 +24,11 @@
|
||||
## Prerequisites
|
||||
|
||||
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
|
||||
- Ruby >= 2.3 - Recommended: latest
|
||||
- Ruby >= 2.5 - Recommended: latest
|
||||
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
|
||||
- Curl >= 7.21 - Recommended: latest
|
||||
- Curl >= 7.72 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
|
||||
- RubyGems - Recommended: latest
|
||||
- Nokogiri might require packages to be installed via your package manager depending on your OS, see https://nokogiri.org/tutorials/installing_nokogiri.html
|
||||
|
||||
@@ -35,6 +36,10 @@
|
||||
|
||||
When using a pentesting distubution (such as Kali Linux), it is recommended to install/update wpscan via the package manager if available.
|
||||
|
||||
### In macOSX via Homebrew
|
||||
|
||||
`brew install wpscanteam/tap/wpscan`
|
||||
|
||||
### From RubyGems
|
||||
|
||||
```shell
|
||||
@@ -80,9 +85,19 @@ For more options, open a terminal and type ```wpscan --help``` (if you built wps
|
||||
|
||||
The DB is located at ~/.wpscan/db
|
||||
|
||||
## Vulnerability Database
|
||||
## Optional: WordPress Vulnerability Database API
|
||||
|
||||
The WPScan CLI tool uses the [WPScan API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan](https://wpscan.com/register). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan](https://wpscan.com/).
|
||||
The WPScan CLI tool uses the [WordPress Vulnerability Database API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan.com](https://wpscan.com/register).
|
||||
|
||||
Up to 25 API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 25 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan.com](https://wpscan.com/).
|
||||
|
||||
#### The Free plan allows 25 API requests per day. View the different [available API plans](https://wpscan.com/api).
|
||||
|
||||
### How many API requests do you need?
|
||||
|
||||
- Our WordPress scanner makes one API request for the WordPress version, one request per installed plugin and one request per installed theme.
|
||||
- On average, a WordPress website has 22 installed plugins.
|
||||
- The Free plan should cover around 50% of all WordPress websites.
|
||||
|
||||
## Load CLI options from file/s
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ module WPScan
|
||||
output('@notice', msg: 'It seems like you have not updated the database for some time.')
|
||||
print '[?] Do you want to update now? [Y]es [N]o, default: [N]'
|
||||
|
||||
/^y/i.match?(Readline.readline) ? true : false
|
||||
/^y/i.match?(Readline.readline)
|
||||
end
|
||||
|
||||
def update_db
|
||||
|
||||
@@ -7,7 +7,7 @@ module WPScan
|
||||
class KnownLocations < CMSScanner::Finders::Finder
|
||||
include CMSScanner::Finders::Finder::Enumerator
|
||||
|
||||
SQL_PATTERN = /(?:DROP|(?:UN)?LOCK|CREATE) TABLE|INSERT INTO/.freeze
|
||||
SQL_PATTERN = /(?:DROP|(?:UN)?LOCK|CREATE|ALTER) (?:TABLE|DATABASE)|INSERT INTO/.freeze
|
||||
|
||||
# @param [ Hash ] opts
|
||||
# @option opts [ String ] :list
|
||||
|
||||
@@ -63,7 +63,7 @@ module WPScan
|
||||
def webshot_enabled?
|
||||
res = Browser.get(url, params: { webshot: 1, src: "http://#{default_allowed_domains.sample}" })
|
||||
|
||||
/WEBSHOT_ENABLED == true/.match?(res.body) ? false : true
|
||||
!/WEBSHOT_ENABLED == true/.match?(res.body)
|
||||
end
|
||||
|
||||
# @return [ Array<String> ] The default allowed domains (between the 2.0 and 2.8.13)
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPScan API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
<%= warning_icon %> You can get a free API token with 25 daily requests by registering at https://wpscan.com/register
|
||||
<% end -%>
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 25 daily requests by registering at https://wpscan.com/register"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.13'
|
||||
VERSION = '3.8.15'
|
||||
end
|
||||
|
||||
@@ -7,7 +7,7 @@ describe WPScan::Controller::VulnApi do
|
||||
|
||||
before do
|
||||
WPScan::ParsedCli.options = rspec_parsed_options(cli_args)
|
||||
WPScan::DB::VulnApi.instance_variable_set(:'@default_request_params', nil)
|
||||
WPScan::DB::VulnApi.instance_variable_set(:@default_request_params, nil)
|
||||
end
|
||||
|
||||
describe '#cli_options' do
|
||||
|
||||
@@ -102,19 +102,29 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
expect(target).to receive(:homepage_or_404?).twice.and_return(false)
|
||||
end
|
||||
|
||||
it 'returns the expected Array<DbExport>' do
|
||||
expected = []
|
||||
context 'when matching the pattern' do
|
||||
it 'returns the expected Array<DbExport>' do
|
||||
expected = []
|
||||
|
||||
found_files.each do |file|
|
||||
url = "#{target.url}#{file}"
|
||||
expected << WPScan::Model::DbExport.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
found_files.each do |file|
|
||||
url = "#{target.url}#{file}"
|
||||
expected << WPScan::Model::DbExport.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
|
||||
expect(finder.aggressive(opts)).to eql expected
|
||||
end
|
||||
end
|
||||
|
||||
expect(finder.aggressive(opts)).to eql expected
|
||||
context 'when not matching the pattern' do
|
||||
let(:db_export) { '' }
|
||||
|
||||
it 'returns an empty array' do
|
||||
expect(finder.aggressive(opts)).to eql []
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -172,7 +172,7 @@ describe WPScan::Model::Plugin do
|
||||
|
||||
after do
|
||||
expect(plugin.vulnerabilities).to eq @expected
|
||||
expect(plugin.vulnerable?).to eql @expected.empty? ? false : true
|
||||
expect(plugin.vulnerable?).to eql !@expected.empty?
|
||||
end
|
||||
|
||||
context 'when plugin not in the DB' do
|
||||
|
||||
@@ -200,7 +200,7 @@ describe WPScan::Model::Theme do
|
||||
|
||||
after do
|
||||
expect(theme.vulnerabilities).to eq @expected
|
||||
expect(theme.vulnerable?).to eql @expected.empty? ? false : true
|
||||
expect(theme.vulnerable?).to eql !@expected.empty?
|
||||
end
|
||||
|
||||
context 'when theme not in the DB' do
|
||||
|
||||
1866
spec/fixtures/db/dynamic_finders.yml
vendored
1866
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
827
spec/fixtures/dynamic_finders/expected.yml
vendored
827
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
19
spec/fixtures/dynamic_finders/plugin_version/audius-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/audius-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "audius-wp",
|
||||
"version": "1.1.0",
|
||||
"description": "Audius.co Wordpress plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "12.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"hashids": "^2.2.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
# Copyright (C) 2021 Kan-Ru Chen
|
||||
# This file is distributed under the same license as the Auto Login with Cloudflare plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Login with Cloudflare 0.9.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/auto-login-with-cloudflare\n"
|
||||
"POT-Creation-Date: 2021-02-02T14:25:58+09:00\n"
|
||||
"PO-Revision-Date: 2021-01-31 00:43+09:00\n"
|
||||
"Last-Translator: Kan-Ru Chen <kanru@kanru.info>\n"
|
||||
"Language-Team: Kan-Ru Chen <kanru@kanru.info>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: auto-login-with-cloudflare\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: settings.php:114 settings.php:115
|
||||
msgid "Auto Login with Cloudflare"
|
||||
msgstr "用 Cloudflare 自動登入"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/kanru/auto-login-with-cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allow login to Wordpress when using Cloudflare Access."
|
||||
msgstr "讓 Wordpress 可以用 Cloudflare Access 自動登入。"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Kan-Ru Chen"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/kanru"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:18
|
||||
msgid "Application settings"
|
||||
msgstr "應用程式設定"
|
||||
|
||||
#: settings.php:25
|
||||
msgid "Auth domain"
|
||||
msgstr "認證網域"
|
||||
|
||||
#: settings.php:37
|
||||
msgid "Application audience (AUD) tag"
|
||||
msgstr "應用程式代表碼 (AUD)"
|
||||
|
||||
#: settings.php:49
|
||||
msgid "Redirect login page"
|
||||
msgstr "重新導向登入頁"
|
||||
|
||||
#: settings.php:106
|
||||
msgid "redirect to Cloudflare Access"
|
||||
msgstr "自動重新導向登入頁面到 Cloudflare Access"
|
||||
|
||||
#: settings.php:136
|
||||
msgid "Save Settings"
|
||||
msgstr "儲存設定"
|
||||
|
||||
#: auto-login-with-cloudflare.php:187
|
||||
msgid "Settings"
|
||||
msgstr "設定"
|
||||
|
||||
#: auto-login-with-cloudflare.php:188
|
||||
msgid "Buy me a coffee"
|
||||
msgstr "贊助我一杯咖啡"
|
||||
@@ -0,0 +1,55 @@
|
||||
# Copyright (C) 2021 Tammersoft
|
||||
# This file is distributed under the same license as the Blogging Tools plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blogging Tools 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blogging-tools-pro\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: 2021-01-23T09:42:38+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: blogging-tools\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Blogging Tools"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Various tools to help blogging."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Tammersoft"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.tammersoft.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:11
|
||||
msgid "Word count"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:12
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:13
|
||||
msgid "Links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:43
|
||||
msgid "Outlinks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:44
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:45
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/boleto-cora/composer_file/package.json
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/boleto-cora/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "cora-woocommerce",
|
||||
"description": "Powerfully simple financial services",
|
||||
"version": "1.0",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"load-grunt-tasks": "0.2.0",
|
||||
"grunt-contrib-imagemin": "~0.4.0",
|
||||
"grunt-rsync": "~0.2.1",
|
||||
"grunt-shell": "~0.6.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8.0",
|
||||
"npm": ">=1.1.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "woo-telegram",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"browser-sync": "^2.26.13",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-cached": "^1.1.1",
|
||||
"gulp-cssbeautify": "^3.0.0",
|
||||
"gulp-livereload": "^4.0.2",
|
||||
"gulp-sass": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {}
|
||||
}
|
||||
46
spec/fixtures/dynamic_finders/plugin_version/cision-modules/composer_file/composer.json
vendored
Normal file
46
spec/fixtures/dynamic_finders/plugin_version/cision-modules/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "cyclonecode/cision-modules",
|
||||
"type": "wordpress-plugin",
|
||||
"version": "1.0.0",
|
||||
"keywords": [
|
||||
"cision",
|
||||
"modules",
|
||||
"ticker"
|
||||
],
|
||||
"description": "Cision client modules.",
|
||||
"require": {
|
||||
"composer/installers": "^1.6",
|
||||
"php": ">=5.4",
|
||||
"cyclonecode/plugin": "^1.0.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"squizlabs/php_codesniffer": "^3.5.8"
|
||||
},
|
||||
"time": "2021-01-28",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"readme": "readme.txt",
|
||||
"homepage": "https://wordpress.org/plugins/cision-modules",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Cyclonecode",
|
||||
"email": "cyclonecode@gmail.com",
|
||||
"role": "Maintainer"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"email": "cyclonecode.help@gmail.com",
|
||||
"issues": "https://wordpress.org/support/plugin/cision-modules/",
|
||||
"source": "https://plugins.trac.wordpress.org/browser/cision-modules/",
|
||||
"docs": "https://wordpress.org/plugins/cision-modules/#description",
|
||||
"rss": "https://plugins.trac.wordpress.org/log/cision-modules/?limit=100&mode=stop_on_copy&format=rss",
|
||||
"chat": "https://join.slack.com/t/cyclonecode/shared_invite/zt-6bdtbdab-n9QaMLM~exHP19zFDPN~AQ"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"CisionModules\\": [
|
||||
"src/"
|
||||
]
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable"
|
||||
}
|
||||
@@ -0,0 +1,390 @@
|
||||
# Copyright (C) 2021 AitThemes
|
||||
# This file is distributed under the same license as the Citadela Directory Plugin Lite plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Citadela Directory Plugin Lite 1.0.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/citadela-directory-lite\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: 2021-02-05T10:09:17+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: citadela-directory-lite\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Citadela Directory Plugin Lite"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.citadelawp.com/wordpress-plugins/free-directory-plugin/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create directory listing website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.citadelawp.com/"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:71
|
||||
msgid "Full Version"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:141
|
||||
msgid "Posted on"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:182
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:200
|
||||
msgid "Comments<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:214
|
||||
msgid "Comment<span class=\"screen-reader-text\"> on %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:219
|
||||
msgid "Comments<span class=\"screen-reader-text\"> on %s"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:399
|
||||
msgid "Citadela Directory Lite Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:22
|
||||
msgid "%s plugin and PHP incompatiblity"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:22
|
||||
#: plugin/compatibility.php:27
|
||||
#: plugin/compatibility.php:56
|
||||
#: plugin/compatibility.php:61
|
||||
#: plugin/compatibility.php:77
|
||||
#: plugin/compatibility.php:79
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:17
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:27
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:45
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:47
|
||||
#: plugin/settings/CitadelaDirectorySettings.php:25
|
||||
#: plugin/settings/CitadelaDirectorySettings.php:26
|
||||
msgid "Citadela Directory Lite"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. url to upgrading guide, 2. plugin's name
|
||||
#: plugin/compatibility.php:25
|
||||
msgid "We've noticed that you're running an outdated version of PHP which is no longer supported, therefore <em>the plugin was deactivated</em>. Make sure your site is fast and secure, by <a href='%1$s'>upgrading PHP to the latest version</a>. Minimal requirement for %2$s is <strong>PHP 5.6.20</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:56
|
||||
msgid "%s plugin and WordPress incompatiblity"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. url to WordPress Update page, 2. plugin's name
|
||||
#: plugin/compatibility.php:59
|
||||
msgid "We've noticed that you're running an outdated version of WordPress, therefore <em>the plugin was deactivated</em>. Make sure your site is secure and up to date, by <a href='%1$s'>updating WordPress to the latest version</a>. Minimal requirement for %2$s is <strong>WordPress 5.2</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:77
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:17
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:27
|
||||
msgid "%s plugin could not be activated"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:79
|
||||
msgid "You have already active Citadela Directory plugin, therefore the plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:22
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:70
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:14
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:28
|
||||
msgid "Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:35
|
||||
msgid "Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/templates/control-citadela_map.php:31
|
||||
msgid "Find address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/templates/control-citadela_map.php:69
|
||||
msgid "Couldn't find location, try different address."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:26
|
||||
msgctxt "post type general name"
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:27
|
||||
msgctxt "post type singular name"
|
||||
msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:28
|
||||
msgctxt "post type menu name"
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:29
|
||||
msgctxt "Item"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:30
|
||||
msgid "Add New Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:31
|
||||
msgid "Edit Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:32
|
||||
msgid "New Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:33
|
||||
msgid "View Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:34
|
||||
msgid "Search Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:35
|
||||
msgid "No Items found"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:36
|
||||
msgid "No Items found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:37
|
||||
msgid "All Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:86
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:94
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:98
|
||||
msgid "Opening Hours"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:112
|
||||
msgid "Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:134
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:35
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:141
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:45
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:148
|
||||
msgid "Show Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:149
|
||||
msgid "Decide if email address is visible for visitors"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:155
|
||||
msgid "Website Link"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:156
|
||||
msgid "Use correct full website url"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:163
|
||||
msgid "Website Link Label"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:164
|
||||
msgid "Text displayed instead of full website url"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemMetabox.php:66
|
||||
msgid "Item Options"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/archive-item-page-title.php:8
|
||||
msgid "Archives: "
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/archive-item-page-title.php:9
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/content-none.php:12
|
||||
msgid "It seems we can’t find what you’re looking for."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:62
|
||||
msgid "View more"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:77
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:55
|
||||
msgid "Web"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:25
|
||||
msgid "GPS"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:18
|
||||
msgid "You have already active Citadela Directory plugin, therefore the free version of plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:28
|
||||
msgid "Plugin is not compatible with the current active theme."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:45
|
||||
msgid "%s plugin incompatibility"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:47
|
||||
msgid "Recently activated theme is not compatible with %s plugin, therefore the plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:7
|
||||
msgid "Created by AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:8
|
||||
msgid "Thank you for installing Citadela Directory Lite by AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:9
|
||||
msgid "Citadela Directory Lite plugin allows you to add map with listing items to your WordPress website. Lite plugin is fully functional but only includes basic functionality. We also have a full version of Citadela Directory plugin that will allow you to do way more. Please see below for quick comparison."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:172
|
||||
msgid "Directory Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:196
|
||||
msgid "Directory Archive Pages"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:221
|
||||
msgid "Directory Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:250
|
||||
msgid "Directory Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:164
|
||||
#: blocks/directory-items-list/src/edit.js:29
|
||||
msgid "Items List Options"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:167
|
||||
#: blocks/directory-items-list/src/edit.js:33
|
||||
msgid "Number of items"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:177
|
||||
#: blocks/directory-items-list/src/edit.js:45
|
||||
msgid "Order by"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:180
|
||||
#: blocks/directory-items-list/src/edit.js:48
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:183
|
||||
#: blocks/directory-items-list/src/edit.js:49
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:186
|
||||
#: blocks/directory-items-list/src/edit.js:50
|
||||
msgid "Order number"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:189
|
||||
#: blocks/directory-items-list/src/edit.js:51
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:200
|
||||
#: blocks/directory-items-list/src/edit.js:63
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:203
|
||||
#: blocks/directory-items-list/src/edit.js:64
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:212
|
||||
#: blocks/directory-items-list/src/edit.js:74
|
||||
msgid "Show featured image"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:320
|
||||
#: blocks/directory-items-list/src/index.js:7
|
||||
msgid "Directory Items List"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:321
|
||||
#: blocks/directory-items-list/src/index.js:8
|
||||
msgid "Displays directory items in grid layout."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:431
|
||||
#: blocks/directory-map/src/index.js:7
|
||||
msgid "Directory Map"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:432
|
||||
#: blocks/directory-map/src/index.js:8
|
||||
msgid "Displays directory items on map."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/common-scripts/leaflet-maps-initializer.js:459
|
||||
#: blocks/components/leaflet-popup.js:34
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "complianz-terms-conditions",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/i18n": "^3.9.0",
|
||||
"axios": "^0.21.1",
|
||||
"cgb-scripts": "^1.23.0",
|
||||
"composer": "^4.1.0",
|
||||
"mpdf": "^1.0.0",
|
||||
"po2json": "^1.0.0-beta-2"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
4
spec/fixtures/dynamic_finders/plugin_version/coyote/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/coyote/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* First release of the plugin.
|
||||
@@ -0,0 +1,865 @@
|
||||
# Copyright (C) 2021 PressX
|
||||
# This file is distributed under the same license as the Custom Codes plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Codes 2.1.9\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-codes\n"
|
||||
"Last-Translator: Bilal TAS <bilal@pressx.co>\n"
|
||||
"Language-Team: PressX <info@pressx.co>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-20T21:53:46+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: custom-codes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: lib/post-type.php:21
|
||||
#: lib/post-type.php:29
|
||||
msgid "Custom Codes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/custom-codes/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Your custom SASS, CSS, JS and PHP customizations in same directory."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PressX"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://pressx.co"
|
||||
msgstr ""
|
||||
|
||||
#: lib/activation.php:44
|
||||
#: lib/views/settings-area.php:20
|
||||
#: lib/views/settings-area.php:21
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:23
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:24
|
||||
#: lib/views/locations-area.php:21
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:25
|
||||
msgid "Release Order"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:26
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:47
|
||||
msgid "Not selected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:67
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:73
|
||||
#: lib/views/locations-area.php:52
|
||||
msgid "Frontend"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:79
|
||||
#: lib/views/locations-area.php:148
|
||||
msgid "Backend"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:82
|
||||
msgid "All roles"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:98
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:103
|
||||
#: lib/views/locations-area.php:161
|
||||
msgid "Everywhere"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:108
|
||||
#: lib/views/locations-area.php:163
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:116
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:119
|
||||
msgid "All pages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:135
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:138
|
||||
msgid "All posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:154
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:157
|
||||
msgid "All post types"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:174
|
||||
#: lib/views/locations-area.php:100
|
||||
msgid "Categories / Terms"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:177
|
||||
msgid "All terms"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:196
|
||||
#: lib/views/locations-area.php:114
|
||||
msgid "Archives / Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:199
|
||||
msgid "All taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:216
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:219
|
||||
msgid "All templates"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:207
|
||||
msgid "DESKTOP STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:208
|
||||
msgid "TABLET LANDSCAPE STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:209
|
||||
msgid "TABLET PORTRAIT STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:210
|
||||
msgid "SMARTPHONE LANDSCAPE STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:211
|
||||
msgid "SMARTPHONE PORTRAIT STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:212
|
||||
msgid "RETINA DISPLAY STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:254
|
||||
msgid "Could not be written to the file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:270
|
||||
msgid "Could not be written to the bundle file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:279
|
||||
#: lib/editor-saver.php:318
|
||||
msgid "Bundle file could not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:289
|
||||
msgid "File could not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:306
|
||||
msgid "File output could not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:335
|
||||
#: lib/editor-saver.php:434
|
||||
msgid "No compiler found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:361
|
||||
#: lib/editor-saver.php:459
|
||||
msgid "Compiled output could not be written to the file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:427
|
||||
msgid "Output could not be written to the file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:38
|
||||
msgid "\"wp-content/custom_codes\" folder does not have correct permissions. Please update its permissions to be able to use the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Exists:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Readable:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Writable:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Executable:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:19
|
||||
#: lib/views/admin-bar.php:34
|
||||
msgid "Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:20
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:22
|
||||
msgid "Edit Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:23
|
||||
msgid "Add New Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:24
|
||||
msgid "No code added yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:25
|
||||
msgid "Search Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:25
|
||||
msgid "Selected language for the custom code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:37
|
||||
msgid "Location of the code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:51
|
||||
msgid "Pages that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:63
|
||||
msgid "Posts that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:75
|
||||
msgid "Post types that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:87
|
||||
msgid "Terms that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:99
|
||||
msgid "Taxonomies that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:111
|
||||
msgid "Templates that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:123
|
||||
msgid "Code includes list."
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:137
|
||||
msgid "Roles that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:149
|
||||
msgid "Save count of each code post"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:162
|
||||
msgid "User defined editor theme"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:174
|
||||
msgid "User defined editor font size"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:186
|
||||
msgid "User defined editor indent option"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:199
|
||||
msgid "AJAX Saver"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:211
|
||||
msgid "Play sound when saved"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:223
|
||||
msgid "Save with \"Cmd/Ctrl S\""
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:235
|
||||
msgid "Emmet Feature"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:248
|
||||
#: lib/views/settings-area.php:151
|
||||
msgid "Initial Editor Tab"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:260
|
||||
msgid "Output Order"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:272
|
||||
msgid "Desktop <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:284
|
||||
msgid "Tablet Landscape <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:296
|
||||
msgid "Tablet Portrait <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:308
|
||||
msgid "Smartphone Landscape <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:320
|
||||
msgid "Smartphone Portrait <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:332
|
||||
msgid "Retina Displays <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:345
|
||||
msgid "Show admin bar menu"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:357
|
||||
msgid "Store codes after uninstallation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:19
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Code Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:20
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:21
|
||||
msgid "Search Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:22
|
||||
msgid "All Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:23
|
||||
msgid "Parent Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:24
|
||||
msgid "Parent Group:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:25
|
||||
msgid "Edit Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:26
|
||||
msgid "Update Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:27
|
||||
msgid "Add New Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:28
|
||||
msgid "New Group Name"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:29
|
||||
msgid "Code Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:59
|
||||
#: lib/upgrade.php:118
|
||||
msgid "Public Mixins"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:59
|
||||
#: lib/upgrade.php:118
|
||||
msgid "Admin Mixins"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:93
|
||||
#: lib/upgrade.php:234
|
||||
msgid "Import Mixins"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:172
|
||||
#: lib/upgrade.php:271
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:172
|
||||
#: lib/upgrade.php:271
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Admin or Public 2: Language selected
|
||||
#: lib/upgrade.php:191
|
||||
#: lib/upgrade.php:290
|
||||
msgid "%1$s Side %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:347
|
||||
msgid "Custom PHP Functions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:391
|
||||
#: lib/upgrade.php:405
|
||||
msgid "Admin Notes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/admin-bar.php:50
|
||||
msgid "Untitled Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/admin-bar.php:61
|
||||
msgid "All Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/admin-bar.php:70
|
||||
msgid "+ New Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:42
|
||||
msgid "SELECT EDITOR TYPE"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:51
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:77
|
||||
msgid "SHORTCUTS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:79
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:80
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:81
|
||||
msgid "Find & Replace"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:82
|
||||
msgid "Multiple Lines"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:82
|
||||
msgid "Option/Alt + Click and Drag"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:83
|
||||
msgid "Add Multi Cursor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:83
|
||||
msgid "Command/Ctrl + Click"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:84
|
||||
msgid "Comment the Line"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:85
|
||||
msgid "Tidy Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:86
|
||||
msgid "Toggle Fullscreen Mode"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:87
|
||||
msgid "Space Hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:87
|
||||
msgid "(Select) + Shift + Tab"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:88
|
||||
msgid "Emmet Abbreviations"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:88
|
||||
msgid "Write Abbs. + Tab"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:91
|
||||
msgid "Code Folding"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Editor Name 2: Language name
|
||||
#: lib/views/editor-area.php:163
|
||||
msgid "Write your custom %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:169
|
||||
msgid "Insufficient permissions to write this editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:172
|
||||
msgid "Editor file might exist but content is not readable and writable"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:207
|
||||
msgid "Please click \"Update\" to confirm the new language."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:215
|
||||
msgid "Dark Theme"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:216
|
||||
msgid "Light Theme"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:223
|
||||
msgid "Font Size:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:269
|
||||
msgid "OUTPUT"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:270
|
||||
msgid "SAVE"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/includes-area.php:28
|
||||
msgid "Includes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:56
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:58
|
||||
#: lib/views/locations-area.php:69
|
||||
#: lib/views/locations-area.php:89
|
||||
#: lib/views/locations-area.php:102
|
||||
#: lib/views/locations-area.php:116
|
||||
#: lib/views/locations-area.php:126
|
||||
#: lib/views/locations-area.php:150
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:58
|
||||
msgid "Select specific page(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:64
|
||||
msgid "If none of them selected, codes will be applied all pages."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:67
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:69
|
||||
msgid "Select specific post(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:84
|
||||
#: lib/views/locations-area.php:97
|
||||
msgid "If none of them selected, codes will be applied all single posts."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:87
|
||||
msgid "Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:89
|
||||
msgid "Select specific post type(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:102
|
||||
msgid "Select specific term(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:116
|
||||
msgid "Select specific taxonomy(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:124
|
||||
msgid "Templates"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:126
|
||||
msgid "Select specific template(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:143
|
||||
msgid "If none of them selected, codes will be applied all the pages that have any assigned custom template."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:150
|
||||
msgid "Select specific role(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:156
|
||||
msgid "If none of them selected, codes will be applied all roles."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:159
|
||||
msgid "Login Screen"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:171
|
||||
msgid "Current Editor File:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:172
|
||||
#: lib/views/locations-area.php:174
|
||||
#: lib/views/locations-area.php:181
|
||||
#: lib/views/locations-area.php:183
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:172
|
||||
#: lib/views/locations-area.php:174
|
||||
#: lib/views/locations-area.php:181
|
||||
#: lib/views/locations-area.php:183
|
||||
msgid "Click to Copy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:174
|
||||
#: lib/views/locations-area.php:183
|
||||
msgid "Compiled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:180
|
||||
msgid "Output File:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:194
|
||||
msgid "Release Order:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:48
|
||||
msgid "Custom Codes Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:53
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:54
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:59
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:60
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:61
|
||||
msgid "Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:72
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:72
|
||||
msgid "Note: If you just update the media queries, you need to update the style codes to apply new ones."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:73
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:85
|
||||
msgid "Editor Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:86
|
||||
msgid "Change the general settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:95
|
||||
#: lib/views/settings-area.php:109
|
||||
#: lib/views/settings-area.php:307
|
||||
msgid "Yes, please"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:95
|
||||
#: lib/views/settings-area.php:109
|
||||
#: lib/views/settings-area.php:120
|
||||
msgid "Recommended for better experience"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:96
|
||||
msgid "No, use default WP post saver"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:104
|
||||
msgid "Only works if AJAX saver enabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:110
|
||||
msgid "No sound"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:120
|
||||
msgid "Yes, use keyboard shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:121
|
||||
msgid "No keyboard shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:131
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:131
|
||||
msgid "Recommended"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:132
|
||||
msgid "Deactive"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:145
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:146
|
||||
msgid "Change the settings related to styles"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:157
|
||||
msgid "First Editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:157
|
||||
#: lib/views/settings-area.php:192
|
||||
#: lib/views/settings-area.php:206
|
||||
#: lib/views/settings-area.php:220
|
||||
#: lib/views/settings-area.php:234
|
||||
#: lib/views/settings-area.php:248
|
||||
#: lib/views/settings-area.php:262
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:161
|
||||
msgid "Global Editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:161
|
||||
msgid "Editor without Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:174
|
||||
msgid "Mobile First"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:175
|
||||
msgid "Recommended for mobile performance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:179
|
||||
msgid "Desktop First"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:191
|
||||
#: lib/views/settings-area.php:194
|
||||
#: lib/views/settings-area.php:205
|
||||
#: lib/views/settings-area.php:219
|
||||
#: lib/views/settings-area.php:233
|
||||
#: lib/views/settings-area.php:247
|
||||
#: lib/views/settings-area.php:249
|
||||
#: lib/views/settings-area.php:261
|
||||
msgid "No media query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:270
|
||||
msgid "Reset Media Queries as"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:273
|
||||
msgid "Mobile First (Min Width)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:274
|
||||
msgid "Desktop First (Max Width)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:286
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:287
|
||||
msgid "Change the core plugin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:296
|
||||
msgid "Yes, show the menu"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:296
|
||||
msgid "Recommended for easy access"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:297
|
||||
msgid "Hide the menu on admin bar"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:307
|
||||
msgid "Recommended for later use"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:308
|
||||
msgid "Delete the codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:319
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,172 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dark Mode Lite 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://frsarker.com\n"
|
||||
"POT-Creation-Date: 2021-01-17 07:08+0600\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\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=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: functions.php:56
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/save_advanced.php:20
|
||||
msgid "Advanced Settings Updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/save_general.php:22
|
||||
msgid "General Settings Updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/save_style.php:21
|
||||
msgid "Style Settings Updated."
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:11
|
||||
msgid "Dark Mode Lite"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:12
|
||||
msgid "Dark Night Mode functionality for your WordPress Website"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:27
|
||||
msgid "General Settings:"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:30
|
||||
msgid "Dark Mode (Visitor)"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:33 views/main-container.php:43
|
||||
#: views/main-container.php:82
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:34 views/main-container.php:44
|
||||
#: views/main-container.php:83
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:40
|
||||
msgid "Dark Mode (Admin Panel)"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:50
|
||||
msgid "Make Dark First"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:53
|
||||
msgid "Enable - Visitors will see the dark mode first"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:54
|
||||
msgid "Disable - Visitors will see the light mode first"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:60 views/main-container.php:122
|
||||
#: views/main-container.php:184
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:68
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:76
|
||||
msgid "Advanced Settings:"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:79
|
||||
msgid "Low Image Brightness"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:91
|
||||
msgid "Image Brightness Level"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:129
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:137
|
||||
msgid "Style Settings:"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:140
|
||||
msgid "Floating Switch Style"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:143
|
||||
msgid "Switch 1"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:144
|
||||
msgid "Switch 2 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:150
|
||||
msgid "Floating Switch Color (Pro)"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:157
|
||||
msgid "Floating Switch Position"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:160
|
||||
msgid "Bottom Right"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:161
|
||||
msgid "Bottom Left"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:167
|
||||
msgid "Color Preset"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:170
|
||||
msgid "Color Preset 1"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:171
|
||||
msgid "Color Preset 2 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:172
|
||||
msgid "Color Preset 3 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:173
|
||||
msgid "Color Preset 4 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:174
|
||||
msgid "Color Preset 5 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:175
|
||||
msgid "Color Preset 6 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:176
|
||||
msgid "Color Preset 7 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:177
|
||||
msgid "Custom Background/Text/Link Color - Available in Pro Version"
|
||||
msgstr ""
|
||||
149
spec/fixtures/dynamic_finders/plugin_version/deau-api/translation_file/languages/deau-api-en_US.po
vendored
Normal file
149
spec/fixtures/dynamic_finders/plugin_version/deau-api/translation_file/languages/deau-api-en_US.po
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
# Copyright (C) 2020 Caronima Inc.
|
||||
# This file is distributed under the same license as the DBP Cloud WP Plugin package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: deAU API Plugin Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2021-01-06 21:21+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: info@caronima.com\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: assets/sidebar.php:9
|
||||
msgid "開発者"
|
||||
msgstr "Developer"
|
||||
|
||||
#: assets/sidebar.php:9
|
||||
msgid "株式会社カロニマ"
|
||||
msgstr "Caronima Inc."
|
||||
|
||||
#: assets/sidebar.php:11
|
||||
msgid "WebアプリのYouTube"
|
||||
msgstr "Web App YouTube"
|
||||
|
||||
#: assets/sidebar.php:12
|
||||
msgid "WebアプリのFacebook"
|
||||
msgstr "Web App Facebook"
|
||||
|
||||
#: assets/sidebar.php:13
|
||||
msgid "WebアプリのTwitter"
|
||||
msgstr "Web App Twitter"
|
||||
|
||||
#: assets/sidebar.php:14
|
||||
msgid "Webアプリ"
|
||||
msgstr "Web App"
|
||||
|
||||
#: assets/sidebar.php:15
|
||||
msgid "Webアプリの利用規約"
|
||||
msgstr "Web App Terms"
|
||||
|
||||
#: assets/sidebar.php:16
|
||||
msgid "Webアプリのプライバシーポリシー"
|
||||
msgstr "Web App Privacy Policy"
|
||||
|
||||
#: assets/sidebar.php:17
|
||||
msgid "開発者のWebサイト"
|
||||
msgstr "Corporate Website"
|
||||
|
||||
#: assets/sidebar.php:21
|
||||
msgid "プラグイン名"
|
||||
msgstr "Plugin Name"
|
||||
|
||||
#: assets/sidebar.php:23
|
||||
msgid "プラグインバージョン"
|
||||
msgstr "Plugin Version"
|
||||
|
||||
#: assets/sidebar.php:25
|
||||
msgid "Webアプリ名"
|
||||
msgstr "Web App Name"
|
||||
|
||||
#: deau-api.php:36
|
||||
#, php-format
|
||||
msgid "このプラグインは、PHP %s 以上が必要になります。"
|
||||
msgstr "Oops, this plugin will soon require PHP %s or higher."
|
||||
|
||||
#: deau-api.php:69
|
||||
msgid "PHPのクラス名が競合しています。"
|
||||
msgstr "Oops, PHP Class Name Conflict."
|
||||
|
||||
#: function.php:91
|
||||
msgid "法人番号"
|
||||
msgstr "Japan Corporate Number"
|
||||
|
||||
#: function.php:95
|
||||
msgid "deAU Appパスワード"
|
||||
msgstr "deAU App password"
|
||||
|
||||
#: function.php:100
|
||||
msgid "法人情報"
|
||||
msgstr "Corporate information"
|
||||
|
||||
#: function.php:106
|
||||
msgid "ERROR! CODE 402: WebアプリのAPIが停止中です。"
|
||||
msgstr "ERROR! CODE 402: The API of the web application is stopped."
|
||||
|
||||
#: function.php:162
|
||||
msgid "deAUのWebアプリでデータの編集・確認"
|
||||
msgstr "Edit / check data on deAU web app"
|
||||
|
||||
#: function.php:166
|
||||
msgid "ERROR! CODE 404: WebアプリのAPIのエンドポイントが見つかりません。"
|
||||
msgstr "ERROR! CODE 404: Web app API endpoint not found."
|
||||
|
||||
#: function.php:172
|
||||
msgid "ショートコード: "
|
||||
msgstr "Shortcodes: "
|
||||
|
||||
#: function.php:181 function.php:189
|
||||
msgid "削除"
|
||||
msgstr "Delete"
|
||||
|
||||
#: function.php:189
|
||||
msgid "このショートコードを削除しますか?この操作は取り消せません。"
|
||||
msgstr "Do you want to remove this shortcode? This operation cannot be undone."
|
||||
|
||||
#: function.php:190
|
||||
msgid "ショートコードを作成"
|
||||
msgstr "Create a shortcode"
|
||||
|
||||
#: function.php:195
|
||||
msgid "法人沿革"
|
||||
msgstr "Corporate history"
|
||||
|
||||
#: function.php:196
|
||||
msgid "沿革表示ショートコード: "
|
||||
msgstr "History display shortcode: "
|
||||
|
||||
#: function.php:203
|
||||
msgid ""
|
||||
"ショートコードで書き出されたHTML及び法人沿革のスタイルは、左メニューの 外観 "
|
||||
"-> カスタマイズ -> 追加 CSS にて編集できます。(Wordpress ver.4.7以降)"
|
||||
msgstr ""
|
||||
"The HTML and corporate history styles exported by shortcode can be edited "
|
||||
"with Appearance-> Customize-> Additional CSS on the left menu. (Wordpress "
|
||||
"ver.4.7 or later)"
|
||||
|
||||
#: function.php:275
|
||||
msgid ""
|
||||
"ERROR: deAU APIのショートコードのslugの値が空か又はその値が存在しません。"
|
||||
msgstr "ERROR: The deAU API shortcode slug value is empty or does not exist."
|
||||
|
||||
#: function.php:284
|
||||
msgid "ERROR: deAU APIのショートコードのslugの値を指定してください。"
|
||||
msgstr "ERROR: Specify the slug value of the deAU API shortcode."
|
||||
|
||||
#~ msgid "Author"
|
||||
#~ msgstr "Author"
|
||||
@@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2021 WP Ninjas - Jonas Tietgen, Ferry Abt
|
||||
# This file is distributed under the same license as the Duplicate Pages, Posts & CPT plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Duplicate Pages, Posts & CPT 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicate-by-wpninjas\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: 2021-01-28T11:31:53+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: duplicate-pages-posts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Duplicate Pages, Posts & CPT"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wp-ninjas.de/plugins/duplicate-pages-posts/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Duplicate pages, posts and custom post types with all their settings and contents with a single click."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Ninjas - Jonas Tietgen, Ferry Abt"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wp-ninjas.de/"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-pages-posts.php:43
|
||||
msgctxt "list link"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-pages-posts.php:72
|
||||
msgctxt "admin bar"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-pages-posts.php:98
|
||||
msgctxt "post title"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
156
spec/fixtures/dynamic_finders/plugin_version/easy-contact-form-pro/change_log/changelogs.txt
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/easy-contact-form-pro/change_log/changelogs.txt
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
== Changelog ==
|
||||
= 1.1.1.0 =* TWEAK : Ability to use custom Date Format in Date form field
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
|
||||
= 1.1.0.9 =* FIXED : RTL ( right to left ) language issue for several countries
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
|
||||
= 1.1.0.7 =* FIXED : Date Range dropdown issue on mobile devices
|
||||
* FIXED : PHP error issue on Submissions page
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
* FIXED : Simple Captcha random char not show up on first load
|
||||
* FIXED : SMTP password and configuration issue in PHP 7
|
||||
* TWEAK : Now you can easily add the form using Gutenberg block
|
||||
* TWEAK : Now this plugin support for using GMAIL SMTP with OAuth method for both Gmail or G Suite
|
||||
* TWEAK : Form preview now opened in lightbox instead of in a new tab
|
||||
|
||||
= 1.1.0.5 =* FIXED : Shortcode generator CSS conflict with another GhozyLab plugins
|
||||
|
||||
= 1.1.0.3 =* FIXED : Shortcode Generator button disappeared in Gutenberg editor (WP version 5+)
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
|
||||
= 1.1.0.1 =* UPDATED : PHP 7 Compatibility
|
||||
* FIXED : Sender Maps API
|
||||
* FIXED : PHP Switch error on several host
|
||||
* FIXED : Icon indicator not update if has same IP Address on block/unblock IP Address
|
||||
|
||||
= 1.1.0.0 =* FIXED : Ability to set email subject
|
||||
* FIXED : PHP error when export to CSV
|
||||
* FIXED : Checkbox validation issue
|
||||
* FIXED : Form not appear when only available one form in widget list
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
* TWEAK : Sent, error and warning notifications with modal message box
|
||||
* TWEAK : Permission on Submissions page, only Admin that can read the sensitive data such as email or IP address
|
||||
* UPDATED : Font Awesome to 4.7.0
|
||||
* UPDATED : Form Validation script
|
||||
|
||||
= 1.0.9.9 =* FIXED : CSS focus issue on submit button
|
||||
* FIXED : Simple Captcha issue on first load
|
||||
* FIXED : Google new reCaptcha issue on mobile device
|
||||
* FIXED : Form footer width issue on several themes
|
||||
* FIXED : jQuery error on Support Page
|
||||
* FIXED : Form styles not applied to modal form
|
||||
* FIXED : Image header PHP error on several themes / hosting provider
|
||||
* TWEAK : Ability to insert the form easily via Visual Composer Components list
|
||||
* TWEAK : Ability to disable Sticky / Popup form on mobile device. See on Global Settings > Sticky Form > Disable on Mobile
|
||||
* TWEAK : Ability to set Form Align. See on Docs & Help Center > Troubleshooting & Tutorials > Align
|
||||
* TWEAK : Ability to export sender email to CSV format. See on Submissions > Top Left Dropdown menu > Export Email to CSV option
|
||||
* UPDATED : Form builder core script
|
||||
|
||||
= 1.0.9.7 =* FIXED : Lightbox issue on free plugins page
|
||||
* FIXED : Typography issue ( font color & size not applied ) when use Open Sans font type
|
||||
* TWEAK : Ability to change field text color. See on Settings > Layout & Styles > Form Elements > Fields Text Color
|
||||
* TWEAK : Ability to set the background color if there are error/no error on fields when form submitted. See on Settings > Layout & Styles > Form Elements > Fields Background Color on Success & Fields Background Color on Error
|
||||
* TWEAK : Ability to use image for your form background. See on Settings > Layout & Styles > Form Layout > Form Pattern or Form Background
|
||||
|
||||
= 1.0.9.5 =* ADDED : Option to clone/duplicate forms. See on Forms Overview Page
|
||||
* ADDED : Two Error message styles ( Shake & Pulsate effect ). See on Settings > Layout & Styles > Form Elements > Error Message Style
|
||||
* FIXED : Cross-site scripting (XSS) vulnerability. PLEASE UPDATE NOW!
|
||||
* FIXED : Field icons not appear in several Themes
|
||||
* FIXED : Form pattern and form background color issue on Popup Mode
|
||||
* TWEAK : Menu form ( edit, duplicate, preview & delete ) on Forms Overview
|
||||
* TWEAK : Function to avoid conflict with Lite version
|
||||
|
||||
= 1.0.9.3 =* FIXED : Date Range issue
|
||||
* FIXED : Email Subject will auto use Email Header when no email field on the form
|
||||
* FIXED : Label font size & style
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
* ADDED : Number field
|
||||
* ADDED : Custom HTML Code field
|
||||
* ADDED : New Option to set fields margin. See on Settings > Layout & Styles > Form Elements > Fields Margin
|
||||
* TWEAK : Ability to change field icon color. See on Settings > Layout & Styles > Form Elements > Fields Icon Color
|
||||
* TWEAK : Ability to change field border color. See on Settings > Layout & Styles > Form Elements > Fields Border Color
|
||||
* TWEAK : Ability to set Message and Textarea rows ( height ). Click Message and Textarea field on Form editor and you will find the option on the left panel named Field Attributes
|
||||
|
||||
= 1.0.9.1 =* ADDED : Send a Copy Option. See on Form Settings > Email
|
||||
* UPDATED : Font Awesome to 4.5.0
|
||||
* TWEAK : Submission details list so you can get all form data based on user input. See on Submissions > View Details
|
||||
|
||||
= 1.0.9.0 =* FIXED : Contact Form Widget disappear
|
||||
|
||||
= 1.0.8.9 =* TWEAK : Ability to set multiple recipient ( multiple recipients may be specified using a comma-separated email ). For example : a@domain.com, b@domain.com, c@domain.com etc.
|
||||
* TWEAK : Ability to change language for BROWSE text on Attachment field and --- SELECT --- text on Dropdown field. See on Settings > Miscellaneous > Custom Text / Label
|
||||
|
||||
= 1.0.8.7 =* FIXED : Sticky Form scrollbar issue in several modern browser
|
||||
|
||||
= 1.0.8.5 =* ADDED : Ability to reply message directly from Submissions list. See on Easy Contact Pro > Submissions
|
||||
* ADDED : Sticky Form Posts / Pages exclusion option
|
||||
= 1.0.8.3 =* FIXED : Disable Metabox Toggle Function
|
||||
* FIXED : CSS conflict with several themes
|
||||
* FIXED : Widget issue in version WP 4.2.4 and ready for WP 4.3 ( Release on August 18 )
|
||||
* ADDED : General Settings page, see on Global Settings menu
|
||||
* ADDED : Google Fonts Support
|
||||
* ADDED : Ability to open Form from Link ( image or text link ), see on Docs & Help Center Page to apply it
|
||||
* ADDED : Typography option, see on Form Settings > Layout & Styles
|
||||
* ADDED : Option to be able to get popup notification in admin area if you get a new email or when available new info or news. See on Global Settings > General Settings
|
||||
|
||||
= 1.0.8.1 =* FIXED : Send email error message
|
||||
* ADDED : New Feature that allow you to use image in form header. See on Settings > Layout & Styles > Header & Footer Area
|
||||
* ADDED : Refresh Captcha ( Simple Captcha ) button
|
||||
* ADDED : WP_DEBUG check on Admin Init
|
||||
* ADDED : Contact Support Form, see on Easy Contact Pro > Docs & Help Center menu
|
||||
* UPDATED : Ability to remove default name, email and message fields
|
||||
* FIXED : Optimizing for Mobile
|
||||
|
||||
= 1.0.7.19 =* FIXED : Submit loading animation when reCaptcha error
|
||||
* UPDATED : Font Awesome to 4.3.0
|
||||
* UPDATED : Global Settings Page interface, now using AJAX
|
||||
* ADDED : Extra Page, this feature will make you more easy to earn money with GhozyLab Affiliate Program. See on Whats New tab.
|
||||
* ADDED : New Hook in form header, this option to make the form support for the next Addons release such as Change form header with image/icon, etc
|
||||
* FIXED : Deactivate license when WP_DEBUG is true
|
||||
|
||||
= 1.0.7.17 =* NEW : Welcome Page
|
||||
* FIXED : New reCAPTCHA & Old reCAPTCHA responsive issue
|
||||
* FIXED : Preview mode on several themes
|
||||
* FIXED : Preview mode on site with SSL ON
|
||||
* FIXED : Undefined ajaxurl
|
||||
|
||||
= 1.0.7.15 =* ADDED : Slider field
|
||||
* ADDED : Date Range field so you can easily set start and finish date just one click
|
||||
* ADDED : Sender information including country, location ( Geolocation ), IP Address, etc. See on Easy Contact Pro > Submissions > View Details
|
||||
* ADDED : Option to set the error message ( Tooltip or Text under each field ). See on Layout & Styles > Form Elements > Error Message Style
|
||||
* ADDED : Option to set form padding
|
||||
* ADDED : New function to be able to use Addons ( BETA )
|
||||
* FIXED : Single quote issue in Message after sent.
|
||||
* FIXED : Preview mode on several themes, for example Avada theme.
|
||||
* FIXED : Loss SMTP password when re-save the settings
|
||||
* IMPORTANT : Connection issue with GhozyLab server, please update NOW!
|
||||
|
||||
= 1.0.7.13 =* FIXED : Global setting missing style when saved on WP Multisite
|
||||
* FIXED : Encrypt/Decrypt SMTP password function
|
||||
* ADDED : Address field
|
||||
|
||||
= 1.0.7.11 =* FIXED : Text area width
|
||||
* ADDED : Phone field with fancy mask
|
||||
|
||||
= 1.0.7.10 =* FIXED : Disappearance of name field.
|
||||
|
||||
= 1.0.7.9 =* ADDED : Sticky Popup Form. You can put the form to show in sticky/Popup mode. See on Global Settings > Sticky Popup Form
|
||||
* ADDED : Form Preview option in Form Editor
|
||||
* ADDED : Date and Rating System form fields
|
||||
* ADDED : form Pattern Option ( see on Layout & Styles > Form Layout )
|
||||
* ADDED : New Option to set Form footer color ( see on Layout & Styles > Header & Footer Area )
|
||||
* FIXED : Send email error when WP_DEBUG ( in wp-config.php ) set to TRUE
|
||||
|
||||
= 1.0.7.7 =* ADDED : Form pre-loader
|
||||
* ADDED : SMPT mail function and SMPT Mail Settings Page ( Global Settings )
|
||||
* FIXED : Fields CSS issue on several themes
|
||||
* FIXED : Submission page issue
|
||||
|
||||
= 1.0.7.5 =* ADDED : Submissions Report & Statistic Page
|
||||
* ADDED : Free Install Plugin Page
|
||||
* FIXED : Default form width and default form title
|
||||
|
||||
= 1.0.7.3 =* FIXED : If checkbox label containing single quote
|
||||
|
||||
= 1.0.0.0 =* This is the launch version. No changes yet
|
||||
46
spec/fixtures/dynamic_finders/plugin_version/emissary-for-woocommerce/change_log/changelog.txt
vendored
Normal file
46
spec/fixtures/dynamic_finders/plugin_version/emissary-for-woocommerce/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
=== Emissary for Woocommerce ===
|
||||
Contributors: jsaldanav
|
||||
Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
|
||||
Requires at least: 4.6
|
||||
Donate link: https://emissary.mx/
|
||||
Requires PHP: 5.2.17
|
||||
Tested up to: 5.6
|
||||
Stable tag: 1.0
|
||||
License: GPLv2 or later
|
||||
|
||||
The essential logistics software for your business. Show shipping costs based on purchase weight and zip codes.
|
||||
|
||||
== Description ==
|
||||
|
||||
Emissary for Woocommerce displays various shipping options based on weight, zip codes, and carrier coverage.
|
||||
|
||||
Major features in Emissary for Woocommerce include:
|
||||
|
||||
* Dynamic shipping costs.
|
||||
* includes extended zones.
|
||||
|
||||
== Installation ==
|
||||
|
||||
Upload the Emissary for woocommerce plugin to your blog, activate it, and then enter your Emissary.mx API key.
|
||||
|
||||
1, 2, 3: You're done!
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0 =
|
||||
*Release Date - 05 February 2021
|
||||
|
||||
* Release initial
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
Any questions or problems please report it to the emissary.mx chat
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.0 =
|
||||
Release initial
|
||||
|
||||
== Screenshots ==
|
||||
1. Emissary for Woocommerce configuration
|
||||
2. Emissary for woocommerce in the checkout
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"name": "extended-simple-history-beaver-builder",
|
||||
"version": "1.0.0",
|
||||
"description": "Extended Simple History for Beaver Builder",
|
||||
"main": "extended-simple-history-beaver-builder.php",
|
||||
"scripts": {
|
||||
"lint:js": "wp-scripts lint-js assets/js/src/",
|
||||
"lint:css": "wp-scripts lint-style assets/css/scss/",
|
||||
"build:js": "node build-scripts/js.js;",
|
||||
"build:css": "node build-scripts/css.js;",
|
||||
"build:i18n": "node ./node_modules/node-wp-i18n/bin/wpi18n addtextdomain && node ./node_modules/node-wp-i18n/bin/wpi18n makepot",
|
||||
"watch:css": "./node_modules/watch/cli.js 'npm run build:css' assets/css/scss/ --ignoreDotFiles --wait=2",
|
||||
"watch:js": "./node_modules/watch/cli.js 'npm run build:js' assets/js/src/ --ignoreDotFiles --wait=2",
|
||||
"watch:i18n": "./node_modules/watch/cli.js 'npm run build:i18n' includes/ --ignoreDotFiles --wait=2",
|
||||
"watch": "npm run watch:css & npm run watch:js",
|
||||
"build": "npm run build:css && npm run build:js && npm run build:i18n;"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git"
|
||||
},
|
||||
"author": "WEBDOGS",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@wordpress/browserslist-config": "^2.7.0",
|
||||
"@wordpress/scripts": "^12.6.1",
|
||||
"autoprefixer": "^9.8.6",
|
||||
"babelify": "^10.0.0",
|
||||
"browserify": "^16.5.2",
|
||||
"cssnano": "^4.1.10",
|
||||
"fs": "0.0.1-security",
|
||||
"node-sass": "^4.14.1",
|
||||
"node-wp-i18n": "^1.2.4",
|
||||
"postcss": "^7.0.35",
|
||||
"postcss-preset-env": "^6.7.0",
|
||||
"uglify-js": "^3.12.4",
|
||||
"watch": "^1.0.2"
|
||||
},
|
||||
"babel": {
|
||||
"presets": [
|
||||
[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
"targets": {
|
||||
"browsers": [
|
||||
"extends @wordpress/browserslist-config"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"browserslist": [
|
||||
"extends @wordpress/browserslist-config"
|
||||
],
|
||||
"dependencies": {}
|
||||
}
|
||||
@@ -0,0 +1,141 @@
|
||||
# Copyright (C) 2021 WEBDOGS
|
||||
# This file is distributed under the same license as the Extended Simple History for Beaver Builder package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Extended Simple History for Beaver Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/extended-simple-history-beaver-builder\n"
|
||||
"POT-Creation-Date: 2021-01-25 18:06:12+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.4\n"
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:79
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:79
|
||||
msgid "Rendered"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:80
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:80
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:81
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:81
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:111
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:111
|
||||
msgid "Beaver Builder {post_type_label} \"{post_title}\" updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:115
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:115
|
||||
msgid "Beaver Builder {post_type_label} \"{post_title}\" draft saved"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:119
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:119
|
||||
msgid "Beaver Builder Global Settings Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:193
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:193
|
||||
#. Translators: %s is the Beaver Builder setting slug.
|
||||
msgid "Global Setting %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:460
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:460
|
||||
#. Translators: %s is the Beaver Builder setting slug.
|
||||
msgid "Layout %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:478
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:478
|
||||
#. Translators: %1$s is the Beaver Builder node type (Row, Column-group,
|
||||
#. Column, or Module). %2$s is the Module type if the node type is module,
|
||||
#. otherwise an empty string.
|
||||
msgid "Deleted: %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:498
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:498
|
||||
#. Translators: %1$s is the Beaver Builder node type (Row, Column-group,
|
||||
#. Column, or Module). %2$s is the Module type if the node type is module,
|
||||
#. otherwise an empty string.
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:519
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:519
|
||||
#. Translators: %1$s is the Beaver Builder node type (Row, Column-group,
|
||||
#. Column, or Module). %2$s is the Module type if the node type is module,
|
||||
#. otherwise an empty string.
|
||||
msgid "New %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:567
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:567
|
||||
msgid "Moved"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:629
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:629
|
||||
#. Translators: %s is the post type.
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:639
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:639
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
msgid " Click to view/hide"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#. Translators: %s is the diff label.
|
||||
msgid "Drafted change: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
#. Translators: %s is the diff label.
|
||||
msgid "Updated: %s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Extended Simple History for Beaver Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "A Simple History extension to log additional data from Beaver Builder."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WEBDOGS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://webdogs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:99
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:99
|
||||
msgctxt "Logger: Beaver Builder"
|
||||
msgid "Logs more details for Beaver Builder edits."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:104
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:104
|
||||
msgctxt "Logger: Beaver Builder"
|
||||
msgid "Using plugin Beaver Builder"
|
||||
msgstr ""
|
||||
229
spec/fixtures/dynamic_finders/plugin_version/fail2wp/translation_file/languages/fail2wp.pot
vendored
Normal file
229
spec/fixtures/dynamic_finders/plugin_version/fail2wp/translation_file/languages/fail2wp.pot
vendored
Normal file
@@ -0,0 +1,229 @@
|
||||
# Fail2WP WordPress plugin <LANGUAGE> translation
|
||||
# Copyright (C) 2021 Joaquim Homrighausen
|
||||
# This file is distributed under the same license as the Fail2WP package.
|
||||
# Joaquim Homrighausen <joho@webbplatsen.se>, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: fail2wp 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-03 10:24+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Joaquim Homrighausen <joho@webbplatsen.se>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: fail2wp.php:184
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:240 fail2wp.php:245
|
||||
msgid "Unknown role"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:286
|
||||
msgid ""
|
||||
"Provides authentication related logging and security functions for "
|
||||
"WordPress, suitable for use with Fail2ban"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:289
|
||||
msgid "Basic configuration"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:292
|
||||
msgid "Logging"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:295
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:298
|
||||
msgid "Cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:301
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:307
|
||||
msgid ""
|
||||
"One or more of openlog(), closelog(), and/or syslog() seem to be missing on "
|
||||
"this system"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:355
|
||||
msgid "Thank you for installing"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:356
|
||||
msgid ""
|
||||
"This plugin provides security functions and integration between "
|
||||
"WordPress and"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:360
|
||||
msgid "Commercial support and customizations for this plugin is available from"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:362
|
||||
msgid "in Stockholm, Sweden. We speak Swedish and English"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:364
|
||||
msgid ""
|
||||
"The plugin is written by Joaquim Homrighausen and sponsored by WebbPlatsen i "
|
||||
"Sverige AB."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:365
|
||||
msgid ""
|
||||
"If you find this plugin useful, the author is happy to receive a donation, "
|
||||
"good review, or just a kind word."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:366
|
||||
msgid ""
|
||||
"If there is something you feel to be missing from this plugin, or if you "
|
||||
"have found a problem with the code or a feature, please do not hesitate to "
|
||||
"reach out to"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:381
|
||||
msgid "Site label"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:382
|
||||
msgid "Block user enum"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:383
|
||||
msgid "Block username login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:384
|
||||
msgid "Secure login messages"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:385
|
||||
msgid "Other settings"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:386
|
||||
msgid "Remove settings"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:389
|
||||
msgid "Successful login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:390
|
||||
msgid "Unsuccessful login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:395
|
||||
msgid "Logging prefix"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:396
|
||||
msgid "Also log to PHP log"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:399
|
||||
msgid "Check for Cloudflare IP"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:400
|
||||
msgid "Cloudflare IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:401
|
||||
msgid "Cloudflare IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:484
|
||||
msgid ""
|
||||
"The site name to use for logging, defaults to your site name if left empty"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:529
|
||||
msgid "Unknown users"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:537
|
||||
msgid "User enumeration attempts (i.e. your.site/...?author=nnn)"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:545
|
||||
msgid "Remove all plugin settings and data when plugin is uninstalled"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:553
|
||||
msgid "Block user enumeration attempts (i.e. your.site/...?author=nnn)"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:561
|
||||
msgid "Require users to login with their e-mail address"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:569
|
||||
msgid "Change login failure messages to contain less detail"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:577
|
||||
msgid ""
|
||||
"Please make sure you understand how these settings can impact the operation "
|
||||
"of the plugin before making changes to them."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:585
|
||||
msgid "These settings allows the plugin to better interact with Cloudflare."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:587
|
||||
msgid ""
|
||||
"If your site is not published via Cloudflare, you can safely ignore these "
|
||||
"settings."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:589
|
||||
msgid "For an updated list of Cloudflare IPs, please use this link"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:599
|
||||
msgid "The logging prefix, this should normally be left empty"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:606
|
||||
msgid "Log the same information to PHP log using error_log()"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:614
|
||||
msgid "Attempt to unmask real IP when Cloudflare IP is detected"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:626 fail2wp.php:637
|
||||
msgid ""
|
||||
"IPs matching these addresses will be considerd to be coming from Cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:962 fail2wp.php:966
|
||||
msgid "Please specify your e-mail address to login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:989
|
||||
msgid "E-mail address"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:1094 fail2wp.php:1122
|
||||
msgid "Invalid login credentials, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:1126
|
||||
msgid "Lost password"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,25 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 =
|
||||
* Beta release
|
||||
|
||||
= 1.0.1 =
|
||||
* Adicionando cancelamento da venda
|
||||
|
||||
= 1.0.2 =
|
||||
* Adicionando validação no valor do cancelamento
|
||||
|
||||
= 1.0.3 =
|
||||
* Ajuste no valor do cancelamento
|
||||
|
||||
= 1.0.4 =
|
||||
* Ajustes internos para futura inserção de novos tipos de pagamento
|
||||
|
||||
= 1.0.5 =
|
||||
* Mudança nas credenciais de configuração
|
||||
|
||||
= 1.0.6 =
|
||||
* Ajustes campos adicionais
|
||||
|
||||
= 1.0.7 =
|
||||
* Ajustes nas instruções do plugin
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,67 @@
|
||||
# Copyright (C) 2021 Espen Munthe
|
||||
# This file is distributed under the same license as the Insert Block Pattern Block plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Insert Block Pattern Block 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ibpb\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: 2021-01-17T12:02:03+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: ibpb\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Insert Block Pattern Block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Gutenberg Block for inserting Theme Block Patterns into page/post or into a insertable block areas (like columns)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Espen Munthe"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://espenmunthe.com"
|
||||
msgstr ""
|
||||
|
||||
#: insert-block-pattern-block.php:48
|
||||
#: insert-block-pattern-block.php:84
|
||||
#: src/insert-block-pattern-block/edit.js:169
|
||||
#: src/insert-block-pattern-block/register-block-type.js:19
|
||||
#: dist/ibpb_blocks_registration.js:292
|
||||
#: dist/ibpb_blocks_registration.js:340
|
||||
msgid "Insert Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: insert-block-pattern-block.php:49
|
||||
#: src/insert-block-pattern-block/register-block-type.js:20
|
||||
#: dist/ibpb_blocks_registration.js:341
|
||||
msgid "Block for inserting a Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: insert-block-pattern-block.php:50
|
||||
#: src/insert-block-pattern-block/register-block-type.js:22
|
||||
#: dist/ibpb_blocks_registration.js:343
|
||||
msgid "Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/insert-block-pattern-block/edit.js:61
|
||||
#: dist/ibpb_blocks_registration.js:205
|
||||
msgid "Select a Block Pattern Category"
|
||||
msgstr ""
|
||||
|
||||
#: src/insert-block-pattern-block/edit.js:66
|
||||
#: dist/ibpb_blocks_registration.js:211
|
||||
msgid "Uncategorized"
|
||||
msgstr ""
|
||||
|
||||
#: src/insert-block-pattern-block/edit.js:106
|
||||
#: dist/ibpb_blocks_registration.js:247
|
||||
msgid "Select a Block Pattern"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,57 @@
|
||||
# Copyright (C) 2021 JSM's Show Comment Metadata
|
||||
# This file is distributed under the same license as the JSM's Show Comment Metadata package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSM's Show Comment Metadata 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jsm-show-comment-"
|
||||
"meta\n"
|
||||
"POT-Creation-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: jsm-show-comment-meta.php:95
|
||||
msgid ""
|
||||
"The %1$s plugin requires %2$s version %3$s or newer and has been deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:97
|
||||
msgid "Please upgrade %1$s before trying to re-activate the %2$s plugin."
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:121
|
||||
msgid "Comment Metadata"
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:172
|
||||
msgid "Key"
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:174
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "JSM's Show Comment Metadata"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/extend/plugins/jsm-show-comment-meta/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Show all comment meta (aka custom fields) in a metabox on comment editing "
|
||||
"pages."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,8 @@
|
||||
= 1.0.2 - 13 january 2021 =
|
||||
* Fixed: Fatal error during Sendinblue Api call
|
||||
|
||||
= 1.0.1 - 12 janauary 2021 =
|
||||
* Update: Plugin URI, Using WordPress uri instead of Github uri
|
||||
|
||||
= 1.0.0 - 11 january 2021 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,178 @@
|
||||
# Copyright (C) 2020 Michael Baierl - Einfach Websites
|
||||
# This file is distributed under the same license as the Divi Projects by mbaierl plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Divi Projects by mbaierl 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mbaierl-divi-"
|
||||
"projects\n"
|
||||
"POT-Creation-Date: 2020-11-21T15:37:00+00:00\n"
|
||||
"PO-Revision-Date: 2020-11-21 16:37+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Domain: et_builder\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Projects Custom Post Type for Divi by mbaierl"
|
||||
msgstr "Projekte von Divi - by mbaierl"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mbaierl.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"The Divi \"Projects\" Custom Post Type - in case you move away from Divi but "
|
||||
"still want to use the Projects."
|
||||
msgstr ""
|
||||
"Die Divi “Projekte” Sammlung - falls du von Divi zu einem anderen Theme "
|
||||
"wechselst, aber “Projekte” nach wie vor verwenden willst."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Michael Baierl - Einfach Websites"
|
||||
msgstr ""
|
||||
|
||||
#: includes/divi-projects-cpt.php:17
|
||||
msgid "Projects"
|
||||
msgstr "Projekte"
|
||||
|
||||
#: includes/divi-projects-cpt.php:18
|
||||
msgid "Project"
|
||||
msgstr "Projekt"
|
||||
|
||||
#: includes/divi-projects-cpt.php:19
|
||||
msgid "Add New"
|
||||
msgstr "Neu"
|
||||
|
||||
#: includes/divi-projects-cpt.php:20
|
||||
msgid "Add New Project"
|
||||
msgstr "Neues Projekt"
|
||||
|
||||
#: includes/divi-projects-cpt.php:21
|
||||
msgid "Edit Project"
|
||||
msgstr "Projekt bearbeiten"
|
||||
|
||||
#: includes/divi-projects-cpt.php:22
|
||||
msgid "New Project"
|
||||
msgstr "Neues Projekt"
|
||||
|
||||
#: includes/divi-projects-cpt.php:23
|
||||
msgid "All Projects"
|
||||
msgstr "Alle Projekte"
|
||||
|
||||
#: includes/divi-projects-cpt.php:24
|
||||
msgid "View Project"
|
||||
msgstr "Projekt anzeigen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:25
|
||||
msgid "Search Projects"
|
||||
msgstr "Projekte durchsuchen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:26
|
||||
msgid "Nothing found"
|
||||
msgstr "Nichts gefunden"
|
||||
|
||||
#: includes/divi-projects-cpt.php:27
|
||||
msgid "Nothing found in Trash"
|
||||
msgstr "Nichts im Papierkorb gefunden"
|
||||
|
||||
#: includes/divi-projects-cpt.php:58
|
||||
msgid "Project Categories"
|
||||
msgstr "Projekt Kategorien"
|
||||
|
||||
#: includes/divi-projects-cpt.php:59
|
||||
msgid "Project Category"
|
||||
msgstr "Projekt Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:60
|
||||
msgid "Search Categories"
|
||||
msgstr "Kategorien durchsuchen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:61
|
||||
msgid "All Categories"
|
||||
msgstr "Alle Kategorien"
|
||||
|
||||
#: includes/divi-projects-cpt.php:62
|
||||
msgid "Parent Category"
|
||||
msgstr "Übergeordnete Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:63
|
||||
msgid "Parent Category:"
|
||||
msgstr "Übergeordnete Kategorie:"
|
||||
|
||||
#: includes/divi-projects-cpt.php:64
|
||||
msgid "Edit Category"
|
||||
msgstr "Kategorie bearbeiten"
|
||||
|
||||
#: includes/divi-projects-cpt.php:65
|
||||
msgid "Update Category"
|
||||
msgstr "Kategorie aktualisieren"
|
||||
|
||||
#: includes/divi-projects-cpt.php:66
|
||||
msgid "Add New Category"
|
||||
msgstr "Neue Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:67
|
||||
msgid "New Category Name"
|
||||
msgstr "Name der neuen Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:68
|
||||
msgid "Categories"
|
||||
msgstr "Kategorien"
|
||||
|
||||
#: includes/divi-projects-cpt.php:69
|
||||
msgid "You currently don't have any project categories."
|
||||
msgstr "Du hast aktuell keine Projekt-Kategorien."
|
||||
|
||||
#: includes/divi-projects-cpt.php:83
|
||||
msgid "Project Tags"
|
||||
msgstr "Projekt Schlagwörter"
|
||||
|
||||
#: includes/divi-projects-cpt.php:84
|
||||
msgid "Project Tag"
|
||||
msgstr "Projekt Schlagwort"
|
||||
|
||||
#: includes/divi-projects-cpt.php:85
|
||||
msgid "Search Tags"
|
||||
msgstr "Schlagwörter suchen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:86
|
||||
msgid "All Tags"
|
||||
msgstr "Alle Schlagwörter"
|
||||
|
||||
#: includes/divi-projects-cpt.php:87
|
||||
msgid "Parent Tag"
|
||||
msgstr "Übergeordnetes Schlagwort"
|
||||
|
||||
#: includes/divi-projects-cpt.php:88
|
||||
msgid "Parent Tag:"
|
||||
msgstr "Übergeordnetes Schlagwort:"
|
||||
|
||||
#: includes/divi-projects-cpt.php:89
|
||||
msgid "Edit Tag"
|
||||
msgstr "Schlagwort bearbeiten"
|
||||
|
||||
#: includes/divi-projects-cpt.php:90
|
||||
msgid "Update Tag"
|
||||
msgstr "Schlagwort aktualisieren"
|
||||
|
||||
#: includes/divi-projects-cpt.php:91
|
||||
msgid "Add New Tag"
|
||||
msgstr "Neues Schlagwort erstellen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:92
|
||||
msgid "New Tag Name"
|
||||
msgstr "Name des neuen Schlagwortes"
|
||||
|
||||
#: includes/divi-projects-cpt.php:93
|
||||
msgid "Tags"
|
||||
msgstr "Schlagwörter"
|
||||
|
||||
#~ msgid "Divi Projects by mbaierl"
|
||||
#~ msgstr "Divi Projekte von mbaierl"
|
||||
File diff suppressed because it is too large
Load Diff
13
spec/fixtures/dynamic_finders/plugin_version/mobile-pages/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/mobile-pages/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "gbmp-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,883 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Quickboard\n"
|
||||
"POT-Creation-Date: 2021-02-09 11:44+0100\n"
|
||||
"PO-Revision-Date: 2021-02-09 11:44+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: UKischkel\n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/help.php:2
|
||||
msgid "Movable Mobile Menu Help"
|
||||
msgstr "Movable Mobile Menü Hilfe"
|
||||
|
||||
#: admin/help.php:3
|
||||
msgid "Creating a menu"
|
||||
msgstr "Erstellen eines Menüs"
|
||||
|
||||
#: admin/help.php:4
|
||||
msgid ""
|
||||
"Go to Appearance -> Menus and create a new menu. Connect this menu to the "
|
||||
"display location named\" Movable Mobile Menu\"."
|
||||
msgstr ""
|
||||
"Wechseln Sie zu \"Design > Menüs, und erstellen Sie ein neues Menü. "
|
||||
"Verbinden Sie dieses Menü mit dem Anzeigeort mit dem Namen \"Movable Mobile "
|
||||
"Menu\"."
|
||||
|
||||
#: admin/help.php:6
|
||||
msgid "For menu items with a sub-menu use custom links with URL \"#\"."
|
||||
msgstr ""
|
||||
"Verwenden Sie für Menüelemente mit einem Untermenü benutzerdefinierte Links "
|
||||
"mit der URL \"#\"."
|
||||
|
||||
#: admin/help.php:13
|
||||
msgid "View on mobile device"
|
||||
msgstr "Ansicht auf mobilem Gerät"
|
||||
|
||||
#: admin/help.php:18
|
||||
msgid ""
|
||||
"The area with the <span class='dashicons dashicons-move' ></span> is to grab "
|
||||
"the navigation drawer and drag it to a comfortable position."
|
||||
msgstr ""
|
||||
"Der Bereich mit dem <span class='dashicons dashicons-move' ></span> ist, um "
|
||||
"die Navigation zu ziehen Sie es in einer bequemen Position abzulegen."
|
||||
|
||||
#: admin/help.php:20
|
||||
msgid ""
|
||||
"The area with the <span class='dashicons dashicons-menu' ></span> is to open "
|
||||
"a modal containing the menu."
|
||||
msgstr ""
|
||||
"Der Bereich mit dem <span class='dashicons dashicons-menu' ></span> ist, um "
|
||||
"ein Modal zu öffnen, dass das Menü enthält."
|
||||
|
||||
#: admin/help.php:23
|
||||
msgid ""
|
||||
"This is how the menu will look.<br>The appearance depends on your theme."
|
||||
msgstr "So sieht das Menü aus.<br>Das Aussehen hängt von Ihrem Theme ab."
|
||||
|
||||
#: admin/pro.php:2 movablemobilemenu.php:272
|
||||
msgid "Movable Mobile Menu"
|
||||
msgstr "Movable Mobile Menü"
|
||||
|
||||
#: admin/pro.php:3
|
||||
msgid "Advantage of Pro version"
|
||||
msgstr "Vorteil der Pro-Version"
|
||||
|
||||
#: admin/pro.php:8
|
||||
msgid ""
|
||||
"Style the Movable Mobile Menu and add up to 2 extra buttons with custom "
|
||||
"links."
|
||||
msgstr ""
|
||||
"Stylen Sie das mobile Menü und fügen Sie bis zu 2 zusätzliche Schaltflächen "
|
||||
"mit benutzerdefinierten Links hinzu."
|
||||
|
||||
#: admin/pro.php:11
|
||||
msgid ""
|
||||
"This is how the menu will look.<br>The icons <span class='dashicons "
|
||||
"dashicons-insert' ></span> and <span class='dashicons dashicons-remove' ></"
|
||||
"span> are to toggle the view of a submenu."
|
||||
msgstr ""
|
||||
"So sieht das Menü aus.<br>Die Symbole <span class='dashicons dashicons-"
|
||||
"insert' ></span> und sollen die Ansicht eines <span class='dashicons "
|
||||
"dashicons-remove' ></span> Untermenüs umschalten."
|
||||
|
||||
#: admin/pro.php:13
|
||||
msgid ""
|
||||
"This menu also can be styled to your needs. Set background, link-color, sub-"
|
||||
"menu background and color of the toggle button."
|
||||
msgstr ""
|
||||
"Dieses Menü kann auch nach Ihren Bedürfnissen formatiert werden. Legen Sie "
|
||||
"Hintergrund, Link-Farbe, Untermenü-Hintergrund und Farbe der Umschaltfläche "
|
||||
"fest."
|
||||
|
||||
#: admin/pro.php:27
|
||||
msgid "Get the Movable Mobile Menu Pro version now."
|
||||
msgstr "Holen Sie sich jetzt die Movable Mobile Menu Pro Version."
|
||||
|
||||
#: movablemobilemenu.php:23
|
||||
msgid ""
|
||||
"Movable Mobile Menu is a menu which appeares on mobile devices for improved "
|
||||
"navigation."
|
||||
msgstr ""
|
||||
"Movable Float Menu ist ein Menü, das auf mobilen Geräten für eine "
|
||||
"verbesserte Navigation angezeigt wird."
|
||||
|
||||
#: movablemobilemenu.php:29
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: movablemobilemenu.php:32
|
||||
msgid "Go Pro"
|
||||
msgstr "Pro Version holen"
|
||||
|
||||
#: movablemobilemenu.php:125
|
||||
msgid "Mobile Menu has not been set"
|
||||
msgstr "Mobiles Menü wurde nicht festgelegt"
|
||||
|
||||
#: movablemobilemenu.php:271
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires %2$s version %3$s or greater."
|
||||
msgstr "\"%1$s\" benötigt %2$s Version %3$s oder neuer."
|
||||
|
||||
#: movablemobilemenu.php:273
|
||||
msgid "PHP"
|
||||
msgstr "PHP"
|
||||
|
||||
#~ msgid "Settings"
|
||||
#~ msgstr "Einstellungen"
|
||||
|
||||
#~ msgid "Mobile Float Menu"
|
||||
#~ msgstr "Mobiles Schwebe Menü"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Mobile Float Menu"
|
||||
#~ msgid "Mobile Float menu"
|
||||
#~ msgstr "Mobiles Schwebe Menü"
|
||||
|
||||
#~ msgid "Flowmenu"
|
||||
#~ msgstr "Flowmenü"
|
||||
|
||||
#~ msgid "please select"
|
||||
#~ msgstr "bitte auswählen"
|
||||
|
||||
#~ msgid "Select to set or edit"
|
||||
#~ msgstr "Wählen zum speichern oder editieren"
|
||||
|
||||
#~ msgid "Modules"
|
||||
#~ msgstr "Module"
|
||||
|
||||
#~ msgid "Design module buttons"
|
||||
#~ msgstr "Designen der Modulschaltflächen"
|
||||
|
||||
#~ msgid "Design"
|
||||
#~ msgstr "Design"
|
||||
|
||||
#~ msgid "Close and save"
|
||||
#~ msgstr "Schliessen und speichern"
|
||||
|
||||
#~ msgid "Rename and close."
|
||||
#~ msgstr "Umbenennen und schliessen."
|
||||
|
||||
#~ msgid "BACKGROUND"
|
||||
#~ msgstr "HINTERGRUND"
|
||||
|
||||
#~ msgid "LOGO"
|
||||
#~ msgstr "LOGO"
|
||||
|
||||
#~ msgid "BUTTON"
|
||||
#~ msgstr "Button"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choose a background-image or background-color for the Quickdashboard."
|
||||
#~ msgstr ""
|
||||
#~ "Wählen Sie ein Hintergrundbild oder eine Hintergrundfarbe für das "
|
||||
#~ "Quickdashboard aus."
|
||||
|
||||
#~ msgid "Do you need help with this"
|
||||
#~ msgstr "Benötigen Sie Hilfe dabei?"
|
||||
|
||||
#~ msgid "Quickdashboard background color"
|
||||
#~ msgstr "Quickdashboard Hintergrund"
|
||||
|
||||
#~ msgid "Quickdashboard background-image"
|
||||
#~ msgstr "Quickdashboard Hintergrundbild"
|
||||
|
||||
#~ msgid "Click to choose image"
|
||||
#~ msgstr "Zur Bildauswahl klicken"
|
||||
|
||||
#~ msgid "Remove image"
|
||||
#~ msgstr "Bild entfernen"
|
||||
|
||||
#~ msgid "Choose a logo-image for the Quickdashboard."
|
||||
#~ msgstr "Zur Bildauswahl klicken"
|
||||
|
||||
#~ msgid "Image"
|
||||
#~ msgstr "Bild"
|
||||
|
||||
#~ msgid "max. 350px width"
|
||||
#~ msgstr "max. 350px breit"
|
||||
|
||||
#~ msgid "Remove logo"
|
||||
#~ msgstr "Logo entfernen"
|
||||
|
||||
#~ msgid "Max. width"
|
||||
#~ msgstr "Max. Breite"
|
||||
|
||||
#~ msgid "in px"
|
||||
#~ msgstr "in px"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Position"
|
||||
|
||||
#~ msgid "left"
|
||||
#~ msgstr "links"
|
||||
|
||||
#~ msgid "middle"
|
||||
#~ msgstr "mitte"
|
||||
|
||||
#~ msgid "right"
|
||||
#~ msgstr "rechts"
|
||||
|
||||
#~ msgid "Style the buttons for the Quickdashboard."
|
||||
#~ msgstr "Designen der Modulschaltflächen"
|
||||
|
||||
#~ msgid "Width"
|
||||
#~ msgstr "Breite"
|
||||
|
||||
#~ msgid "Hight"
|
||||
#~ msgstr "Höhe"
|
||||
|
||||
#~ msgid "Gap"
|
||||
#~ msgstr "Abstand"
|
||||
|
||||
#~ msgid "Shadow"
|
||||
#~ msgstr "Schatten"
|
||||
|
||||
#~ msgid "no comma"
|
||||
#~ msgstr "kein Komma"
|
||||
|
||||
#~ msgid "Border-radius"
|
||||
#~ msgstr "Rahmen-Radius"
|
||||
|
||||
#~ msgid "Lock/ unlock"
|
||||
#~ msgstr "alle/einzeln"
|
||||
|
||||
#~ msgid "Border"
|
||||
#~ msgstr "Rahmen"
|
||||
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Hintergrundfarbe"
|
||||
|
||||
#~ msgid "Font-size"
|
||||
#~ msgstr "Textgröße"
|
||||
|
||||
#~ msgid "Font-color"
|
||||
#~ msgstr "Textfarbe"
|
||||
|
||||
#~ msgid "Font-style"
|
||||
#~ msgstr "Textstil"
|
||||
|
||||
#~ msgid "Save Design"
|
||||
#~ msgstr "Änderungen speichern"
|
||||
|
||||
#~ msgid "Reset Design"
|
||||
#~ msgstr "Reset Design"
|
||||
|
||||
#~ msgid "Attention"
|
||||
#~ msgstr "Achtung"
|
||||
|
||||
#~ msgid "Are you sure to delete the design settings?"
|
||||
#~ msgstr "Sind Sie sicher, dass Sie die Design-Einstellungen löschen möchten?"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#~ msgid "example"
|
||||
#~ msgstr "Beispiel"
|
||||
|
||||
#~ msgid "example "
|
||||
#~ msgstr "Beispiel "
|
||||
|
||||
#~ msgid "second row"
|
||||
#~ msgstr "ZWEITE REIHE"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choose a new WordPress user for whom you want to provide the "
|
||||
#~ "Quickdashboard."
|
||||
#~ msgstr ""
|
||||
#~ "Wählen Sie einen WordPress-Benutzer aus, für den die Einstellungen gelten "
|
||||
#~ "sollen."
|
||||
|
||||
#~ msgid "New"
|
||||
#~ msgstr "Neu"
|
||||
|
||||
#~ msgid "Duplicate a configuration from one configured user to another."
|
||||
#~ msgstr ""
|
||||
#~ "Duplizieren Sie eine Konfiguration auf einen anderen WordPress Nutzer."
|
||||
|
||||
#~ msgid "Duplicate"
|
||||
#~ msgstr "Duplizieren"
|
||||
|
||||
#~ msgid "Remove, modify or delete assigned WordPress modules for a user."
|
||||
#~ msgstr "Entfernen, ändern oder löschen von Einstellungen für einen Nutzer."
|
||||
|
||||
#~ msgid "Edit"
|
||||
#~ msgstr "Bearbeiten"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choose a WordPress user for whom you want to provide the Quickdashboard."
|
||||
#~ msgstr ""
|
||||
#~ "Wählen Sie einen WordPress-Benutzer aus, für den die Einstellungen gelten "
|
||||
#~ "sollen."
|
||||
|
||||
#~ msgid "Please choose a user..."
|
||||
#~ msgstr "Bitte einen Nutzer auswählen..."
|
||||
|
||||
#~ msgid "Save"
|
||||
#~ msgstr "Speichern"
|
||||
|
||||
#~ msgid "Abort"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#~ msgid "select from user"
|
||||
#~ msgstr "wähle von Nutzer"
|
||||
|
||||
#~ msgid "select to new user"
|
||||
#~ msgstr "wähle nach Nutzer"
|
||||
|
||||
#~ msgid "Copy & Save"
|
||||
#~ msgstr "Kopieren und speichern"
|
||||
|
||||
#~ msgid "Remove usersettings"
|
||||
#~ msgstr "Einstellungen entfernen"
|
||||
|
||||
#~ msgid "Save changes"
|
||||
#~ msgstr "Änderungen speichern"
|
||||
|
||||
#~ msgid "New comments"
|
||||
#~ msgstr "Kommentare"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Quickdashboard Pro enables a custom wp-admin dashboard for certain users."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard Pro ermöglicht ein benutzerdefiniertes wp-admin-Dashboard "
|
||||
#~ "für bestimmte Benutzer."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Quickdashboard enables a custom dashboard. User will get a special "
|
||||
#~ "dashboard when accessing the wp-admin area. From there they only can "
|
||||
#~ "access the setting pages which are allowed. These rules are configured by "
|
||||
#~ "an admin."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard ermöglicht ein benutzerdefiniertes Dashboard. Der Benutzer "
|
||||
#~ "erhält ein spezielles Dashboard, wenn er auf den wp-admin-Bereich "
|
||||
#~ "zugreift. Von dort aus können sie nur auf die erlaubten Einstellseiten "
|
||||
#~ "zugreifen. Diese Regeln werden von einem Administrator konfiguriert."
|
||||
|
||||
#~ msgid "Quickdashboard Pro"
|
||||
#~ msgstr "Quickdashboard Pro"
|
||||
|
||||
#~ msgid "Your Quickdashboard Pro license may be deactivated or expired!"
|
||||
#~ msgstr ""
|
||||
#~ "Ihre Quickdashboard Pro Lizenz wurde entweder deaktiviert oder ist "
|
||||
#~ "abgelaufen!"
|
||||
|
||||
#~ msgid "You are not allowed to visit this page!"
|
||||
#~ msgstr "Sie dürfen diese Seite nicht aufrufen!"
|
||||
|
||||
#~ msgid "Copy"
|
||||
#~ msgstr "Kopiere"
|
||||
|
||||
#~ msgid "to"
|
||||
#~ msgstr "nach"
|
||||
|
||||
#~ msgid "Please select a user first!"
|
||||
#~ msgstr "Bitte erst einen Nutzer auswählen!"
|
||||
|
||||
#~ msgid "Drag and drop to sort"
|
||||
#~ msgstr "Ziehen zum sortieren"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Löschen"
|
||||
|
||||
#~ msgid "Clear color"
|
||||
#~ msgstr "Farbe löschen"
|
||||
|
||||
#~ msgid "Default"
|
||||
#~ msgstr "Standard"
|
||||
|
||||
#~ msgid "Select default color"
|
||||
#~ msgstr "Standard-Farbe wählen"
|
||||
|
||||
#~ msgid "Select Color"
|
||||
#~ msgstr "Farbe wählen"
|
||||
|
||||
#~ msgid "Color value"
|
||||
#~ msgstr "Farbwert"
|
||||
|
||||
#~ msgid "Activate license"
|
||||
#~ msgstr "Lizenz aktivieren"
|
||||
|
||||
#~ msgid "Deactivate license"
|
||||
#~ msgstr "Lizenz deaktivieren"
|
||||
|
||||
#~ msgid "License Management"
|
||||
#~ msgstr "Lizenz Management"
|
||||
|
||||
#~ msgid "The following message came from the server"
|
||||
#~ msgstr "Die folgende Meldung kam vom Server"
|
||||
|
||||
#~ msgid "Activation successful!"
|
||||
#~ msgstr "Aktivierung erfolgreich!"
|
||||
|
||||
#~ msgid "Deactivation successful!"
|
||||
#~ msgstr "Deaktivierung erfolgreich!"
|
||||
|
||||
#~ msgid "Please enter a license key."
|
||||
#~ msgstr "Bitte geben Sie einen Lizenzschlüssel ein."
|
||||
|
||||
#~ msgid "License key"
|
||||
#~ msgstr "Lizenzschlüssel"
|
||||
|
||||
#~ msgid "Activate"
|
||||
#~ msgstr "Aktivieren"
|
||||
|
||||
#~ msgid "Deactivate"
|
||||
#~ msgstr "Deaktivieren"
|
||||
|
||||
#~ msgid "Your license expires on "
|
||||
#~ msgstr "Ihre Lizenz endet am "
|
||||
|
||||
#~ msgid "Your license expired on "
|
||||
#~ msgstr "Ihr Lizenzschlüssel ist abgelaufen seit "
|
||||
|
||||
#~ msgid "select"
|
||||
#~ msgstr "wählen"
|
||||
|
||||
#~ msgid "Quickdashboard Pro allows you to create a custom dashboard for user."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard Pro ermöglicht ein spezielles Dashboard für einzelne "
|
||||
#~ "Nutzer zu erstellen."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Before working with Quickdashboard Pro you need to have at leased one "
|
||||
#~ "additional user."
|
||||
#~ msgstr ""
|
||||
#~ "Bevor Sie mit Quickdashboard Pro arbeiten, müssen Sie einen zusätzlichen "
|
||||
#~ "Benutzer angelegt haben."
|
||||
|
||||
#~ msgid "Notice:"
|
||||
#~ msgstr "Hinweis:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Be aware: you can link a user to any module, but if the neccessary rights "
|
||||
#~ "are missing, the user can't access this module. So give this user the "
|
||||
#~ "appropriate role."
|
||||
#~ msgstr ""
|
||||
#~ "Beachten Sie: Sie können einen Benutzer mit einem beliebigen Modul "
|
||||
#~ "verknüpfen. Wenn jedoch die erforderlichen Rechte fehlen, kann der "
|
||||
#~ "Benutzer nicht auf dieses Modul zugreifen. Geben Sie diesem Benutzer die "
|
||||
#~ "entsprechende Rolle."
|
||||
|
||||
#~ msgid "Here you choose the user to which your settings will apply."
|
||||
#~ msgstr ""
|
||||
#~ "Hier wählen Sie den Benutzer aus, auf den Ihre Einstellungen angewendet "
|
||||
#~ "werden sollen."
|
||||
|
||||
#~ msgid "This will load the Quickdashboard Pro Menu into the WP-Menu."
|
||||
#~ msgstr "Dies lädt das Quickdashboard Pro Menü in das WP-Menü."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There you can select the modules which will be addressed to the user you "
|
||||
#~ "have choosen."
|
||||
#~ msgstr ""
|
||||
#~ "Dort können Sie die Module auswählen, die dem von Ihnen ausgewählten "
|
||||
#~ "Benutzer zugeordnet werden."
|
||||
|
||||
#~ msgid "The modules will be shown as buttons."
|
||||
#~ msgstr "Die Module werden als Schaltflächen angezeigt."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "After saving, you can repeat this for another user wih different settings."
|
||||
#~ msgstr ""
|
||||
#~ "Nach dem Speichern können Sie dies für einen anderen Benutzer mit anderen "
|
||||
#~ "Einstellungen wiederholen."
|
||||
|
||||
#~ msgid "Or you can copy settings from one to another user."
|
||||
#~ msgstr ""
|
||||
#~ "Oder Sie können Einstellungen von einem auf einen anderen Benutzer "
|
||||
#~ "kopieren."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You also can choose an saved user to edit or delete completly from "
|
||||
#~ "Quickdashboard Pro settings."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können auch einen gespeicherten Benutzer auswählen, der bearbeitet "
|
||||
#~ "oder vollständig aus den Quickdashboard Pro-Einstellungen gelöscht werden "
|
||||
#~ "soll."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "After selecting an user to edit, saved modules will be shown as buttons."
|
||||
#~ msgstr ""
|
||||
#~ "Nachdem Sie einen zu bearbeitenden Benutzer ausgewählt haben, werden "
|
||||
#~ "gespeicherte Module als Schaltflächen angezeigt."
|
||||
|
||||
#~ msgid "By drag and drop you are able to rearrange the buttons."
|
||||
#~ msgstr ""
|
||||
#~ "Mittels Drag & Drop können Sie die Reihenfolge der Schaltflächen ändern."
|
||||
|
||||
#~ msgid "You may click onto the button text to edit it."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können auf den Schaltflächen Text klicken um diese zu bearbeiten."
|
||||
|
||||
#~ msgid "This ist our button designer."
|
||||
#~ msgstr "Dies ist unser Schaltflächen Designer."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It allows you to change the appearance of the module-buttons, change the "
|
||||
#~ "page background, add a logo image which will be appear above the module "
|
||||
#~ "buttons or even add a background image. Also custom fonts for the buttons "
|
||||
#~ "are possible."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können das Erscheinungsbild der Modulschaltflächen ändern, den "
|
||||
#~ "Seitenhintergrund ändern, ein Logo hinzufügen, das über den "
|
||||
#~ "Modulschaltflächen angezeigt wird, oder sogar ein Hintergrundbild "
|
||||
#~ "hinzufügen. Auch benutzerdefinierte Schriftarten für die Schaltflächen "
|
||||
#~ "sind möglich."
|
||||
|
||||
#~ msgid "You can add a custom font by linking to an extern hoster."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können eine benutzerdefinierte Schriftart hinzufügen, indem Sie eine "
|
||||
#~ "Verknüpfung zu einem externen Hoster herstellen."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Example: choose your font from Google Fonts, then choose \"embed\", then "
|
||||
#~ "\"@import\"."
|
||||
#~ msgstr ""
|
||||
#~ "Beispiel: Wählen Sie Ihre Schriftart aus Google Fonts aus, wählen Sie "
|
||||
#~ "\"embed\" und dann \"@import\"."
|
||||
|
||||
#~ msgid "You get this code snippet"
|
||||
#~ msgstr "Sie erhalten dieses Code-Snipsel"
|
||||
|
||||
#~ msgid "You only need the part with the yellow background! No quotes!"
|
||||
#~ msgstr ""
|
||||
#~ "Sie brauchen nur den Teil mit dem gelben Hintergrund! Keine "
|
||||
#~ "Anführungszeichen!"
|
||||
|
||||
#~ msgid "Copy and past it into the text field \"Font link\"."
|
||||
#~ msgstr "Kopieren Sie es und fügen Sie es in das Textfeld \"Font Link\" ein."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The text field named \"Font name\" is just to save a name to it as "
|
||||
#~ "reminder when editing."
|
||||
#~ msgstr ""
|
||||
#~ "Das Textfeld mit dem Namen \"Font Name\" dient lediglich dazu, einen "
|
||||
#~ "Namen als Erinnerung beim Bearbeiten zu speichern."
|
||||
|
||||
#~ msgid "Only one kind of style can be saved. It applys to all user."
|
||||
#~ msgstr ""
|
||||
#~ "Es kann nur eine Art von Style gespeichert werden. Es gilt für alle "
|
||||
#~ "Benutzer."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Quickdashboard Pro has a function to stop calling not assigned modules by "
|
||||
#~ "manupulating the URL."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard Pro verhindert, Module, die nicht zugeordnet sind, durch "
|
||||
#~ "URL Manipulation aufzurufen."
|
||||
|
||||
#~ msgid "Known issues"
|
||||
#~ msgstr "Bekannte Probleme"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Some Plugins have own rights. Quickdashboard Pro still will create a link "
|
||||
#~ "in the custom Dashboard, but it might happen that the linked page will "
|
||||
#~ "not be loaded and an error will occur. Best practise is to check the "
|
||||
#~ "Quickdashboard with the user to whom the settings apply logged in."
|
||||
#~ msgstr ""
|
||||
#~ "Einige Plugins haben eigene Rechte. Quickdashboard Pro erstellt weiterhin "
|
||||
#~ "einen Link im benutzerdefinierten Dashboard. Es kann jedoch vorkommen, "
|
||||
#~ "dass die verknüpfte Seite nicht geladen wird und ein Fehler auftritt. Am "
|
||||
#~ "besten überprüfen Sie das Quickboard mit dem Benutzer, für den die "
|
||||
#~ "Einstellungen gelten."
|
||||
|
||||
#~ msgid "This applys often to SEO plugins!"
|
||||
#~ msgstr "Meist tritt dies bei SEO Plugins auf!"
|
||||
|
||||
#~ msgid "Contact:"
|
||||
#~ msgstr "Kontakt:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you need further help or have any other reason to contact us, we are "
|
||||
#~ "looking forward to hear from you."
|
||||
#~ msgstr ""
|
||||
#~ "Wenn Sie weitere Hilfe benötigen oder einen anderen Grund haben, uns zu "
|
||||
#~ "kontaktieren, freuen wir uns, von Ihnen zu hören."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "In case of trouble, please give us as many details as possible, maybe add "
|
||||
#~ "a screenshot for reference."
|
||||
#~ msgstr ""
|
||||
#~ "Im Falle von Problemen geben Sie uns bitte so viele Details wie möglich "
|
||||
#~ "und fügen Sie möglicherweise einen Screenshot als Referenz hinzu."
|
||||
|
||||
#~ msgid "Contact to Quickdashboard Pro"
|
||||
#~ msgstr "Kontakt zu Quickdashboard Pro"
|
||||
|
||||
#~ msgid "1.0.0 - Stable release version"
|
||||
#~ msgstr "1.0.0 - Stabile Release-Version"
|
||||
|
||||
#~ msgid "Remove settings for this user or save changes."
|
||||
#~ msgstr ""
|
||||
#~ "Entfernen Sie die Einstellungen für diesen Benutzer oder speichern Sie "
|
||||
#~ "die Änderungen."
|
||||
|
||||
#~ msgid "Copy settings."
|
||||
#~ msgstr "Kopieren der Einstellungen."
|
||||
|
||||
#~ msgid "Logo image"
|
||||
#~ msgstr "Logo Bild"
|
||||
|
||||
#~ msgid "Button width"
|
||||
#~ msgstr "Button Breite"
|
||||
|
||||
#~ msgid "Button hight"
|
||||
#~ msgstr "Button Höhe"
|
||||
|
||||
#~ msgid "Font"
|
||||
#~ msgstr "Schriftart"
|
||||
|
||||
#~ msgid "Link to extern hosted font, like Google-Fonts"
|
||||
#~ msgstr "Link zu externem Hoster, wie z.B. Google-Fonts"
|
||||
|
||||
#~ msgid "For more info look in our help section"
|
||||
#~ msgstr "Mehr Info finden Sie in der Hilfe"
|
||||
|
||||
#~ msgid "Font link URL"
|
||||
#~ msgstr "Font Link URL"
|
||||
|
||||
#~ msgid "Font name"
|
||||
#~ msgstr "Font Name"
|
||||
|
||||
#~ msgid "in px, em, pt..."
|
||||
#~ msgstr "in px, em, pt..."
|
||||
|
||||
#~ msgid "Button gap"
|
||||
#~ msgstr "Button Abstand"
|
||||
|
||||
#~ msgid "Button shadow"
|
||||
#~ msgstr "Button Schatten"
|
||||
|
||||
#~ msgid "Reset"
|
||||
#~ msgstr "Reset"
|
||||
|
||||
#~ msgid "Quickdashboardpro"
|
||||
#~ msgstr "Quickdashboard Pro"
|
||||
|
||||
#~ msgid "Upload of files not allowed!"
|
||||
#~ msgstr "Hochladen von Dateien nicht erlaubt!"
|
||||
|
||||
#~ msgid "Unexpected error."
|
||||
#~ msgstr "Unerwarteter Fehler."
|
||||
|
||||
#~ msgid "The license key on this domain is already inactive"
|
||||
#~ msgstr "Der Lizenzschlüssel für diese Domain ist bereits inaktiv"
|
||||
|
||||
#~ msgid "success"
|
||||
#~ msgstr "Erfolgreich"
|
||||
|
||||
#~ msgid "requires to be registered. Please enter your key"
|
||||
#~ msgstr "muss registriert werden. Bitte geben Sie Ihren Key"
|
||||
|
||||
#~ msgid "HERE"
|
||||
#~ msgstr "HIER ein"
|
||||
|
||||
#~ msgid "Your License has expired. Please add a new key"
|
||||
#~ msgstr ""
|
||||
#~ "Ihre Lizenz ist abgelaufen. Bitte geben Sie einen neuen Lizenzschlüssel"
|
||||
|
||||
#~ msgid "License key activated"
|
||||
#~ msgstr "Lizenzschlüssel aktiviert"
|
||||
|
||||
#~ msgid "Your License key is blocked"
|
||||
#~ msgstr "Lizenzschlüssel blockiert"
|
||||
|
||||
#~ msgid "Your License key has expired"
|
||||
#~ msgstr "Ihr Lizenzschlüssel ist abgelaufen"
|
||||
|
||||
#~ msgid "License key already in use on"
|
||||
#~ msgstr "Lizenzschlüssel wird bereits genutzt"
|
||||
|
||||
#~ msgid "Reached maximum activation. License key already in use on"
|
||||
#~ msgstr ""
|
||||
#~ "Maximale Aktivierung erreicht. Der Lizenzschlüssel wird bereits genutzt"
|
||||
|
||||
#~ msgid "Reached maximum allowable domains"
|
||||
#~ msgstr "Maximale erlaubte Domains erreicht"
|
||||
|
||||
#~ msgid "Invalid license key"
|
||||
#~ msgstr "Ungültiger Lizenzschlüssel"
|
||||
|
||||
#~ msgid "New user"
|
||||
#~ msgstr "Neuer Benutzer"
|
||||
|
||||
#~ msgid "Copy usersettings"
|
||||
#~ msgstr "Kopieren von Benutzereinstellungen"
|
||||
|
||||
#~ msgid "Choose user to copy settings:"
|
||||
#~ msgstr "Wählen Sie einen Benutzer aus, um die Einstellungen zu kopieren:"
|
||||
|
||||
#~ msgid "Choose user to edit settings:"
|
||||
#~ msgstr "Wählen Sie einen Benutzer aus, um die Einstellungen zu bearbeiten:"
|
||||
|
||||
#~ msgid "We reccommend to delete saved options first before saving new ones."
|
||||
#~ msgstr ""
|
||||
#~ "Wir empfehlen, gespeicherte Optionen zuerst zu löschen, bevor neue "
|
||||
#~ "gespeichert werden."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Here you can add a logo image which will be appear above the module "
|
||||
#~ "buttons."
|
||||
#~ msgstr ""
|
||||
#~ "Hier können Sie ein Logo-Bild hinzufügen, das über den Modulschaltflächen "
|
||||
#~ "angezeigt wird."
|
||||
|
||||
#~ msgid "Plugins"
|
||||
#~ msgstr "Plugins"
|
||||
|
||||
#~ msgid "Updates"
|
||||
#~ msgstr "Updates"
|
||||
|
||||
#~ msgid "Welcome"
|
||||
#~ msgstr "Willkommen"
|
||||
|
||||
#~ msgid "Choose modules"
|
||||
#~ msgstr "Module wählen"
|
||||
|
||||
#~ msgid "Welcome to Quickboard Pro"
|
||||
#~ msgstr "Willkommen zu Quickboard Pro"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We tried to make your work experience with our tool as easy as possible."
|
||||
#~ msgstr ""
|
||||
#~ "Wir haben versucht, Ihre Arbeitserfahrung mit unserem Tool so einfach wie "
|
||||
#~ "möglich zu gestalten."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Just follow the options in order, but best read our workflow and help "
|
||||
#~ "which you will find at this menu point"
|
||||
#~ msgstr ""
|
||||
#~ "Befolgen Sie einfach die Optionen in der angegebenen Reihenfolge, aber "
|
||||
#~ "lesen Sie am besten unseren Workflow und die Hilfe, die Sie unter diesem "
|
||||
#~ "Menüpunkt finden"
|
||||
|
||||
#~ msgid "Choose modules from our menu, rename, rearrange and save."
|
||||
#~ msgstr "Module auswählen, umbenennen, sortieren und abspeichern."
|
||||
|
||||
#~ msgid " - File editing not available!"
|
||||
#~ msgstr " - Dateibearbeitung nicht verfügbar!"
|
||||
|
||||
#~ msgid "Dashboard to Quickboard"
|
||||
#~ msgstr "Dashboard to Quickboard"
|
||||
|
||||
#~ msgid "Add a logo"
|
||||
#~ msgstr "Logo hinzufügen"
|
||||
|
||||
#~ msgid "Button text converting:"
|
||||
#~ msgstr "Button Text formatieren:"
|
||||
|
||||
#~ msgid "none"
|
||||
#~ msgstr "nichts gewählt"
|
||||
|
||||
#~ msgid "First letter uppercase"
|
||||
#~ msgstr "Erster Buchstabe Groß"
|
||||
|
||||
#~ msgid "All letters uppercase"
|
||||
#~ msgstr "Alle Buchstaben GROSS"
|
||||
|
||||
#~ msgid "All letters lowercase"
|
||||
#~ msgstr "Alle Buchstaben klein"
|
||||
|
||||
#~ msgid "max. Buttons in row"
|
||||
#~ msgstr "Max. Schaltflächen in Reihe"
|
||||
|
||||
#~ msgid "Standard auto-fit"
|
||||
#~ msgstr "Standard-Auto-Fit"
|
||||
|
||||
#~ msgid "Delete"
|
||||
#~ msgstr "Löschen"
|
||||
|
||||
#~ msgid "Dashboard to Quickboard adds a new role named \"Quickbord\"."
|
||||
#~ msgstr ""
|
||||
#~ "Dashboard to Quickboard legt eine neue Benutzerrolle \"Quickboard\" an."
|
||||
|
||||
#~ msgid "The following rules are directed to the role \"Quickbord\":"
|
||||
#~ msgstr ""
|
||||
#~ "Folgende Befugnisse nach Wordpress werden der Rolle \"Quickbord\" "
|
||||
#~ "zugeordnet:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Under the tab \"Choose from menu\" you choose from the main navigation "
|
||||
#~ "and, if applies, from the subnavigation which options should be "
|
||||
#~ "accessible for the role \"Quickbord\"."
|
||||
#~ msgstr ""
|
||||
#~ "Unter der Registerkarte \"Menü wählen\" wählen Sie aus der "
|
||||
#~ "Hauptnavigation und, falls zutreffend, aus der Unternavigation, die "
|
||||
#~ "Optionen aus, die für die Rolle \"Quickbord\" zugänglich sein soll."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "In the submenu navigation you can set your own names for the buttons on "
|
||||
#~ "the Quickboard."
|
||||
#~ msgstr ""
|
||||
#~ "In der Untermenünavigation können Sie eigene Namen für die Schaltflächen "
|
||||
#~ "auf dem Quickboard festlegen."
|
||||
|
||||
#~ msgid "Notice: "
|
||||
#~ msgstr "Hinweis:"
|
||||
|
||||
#~ msgid "Not all options under the main navigation have a submenu!"
|
||||
#~ msgstr "Nicht alle Optionen unter der Hauptnavigation haben ein Untermenü!"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you, after saving, want to add more buttons, click twice slowly on the "
|
||||
#~ "main navigation option. This reloads all navigation points in the "
|
||||
#~ "subnavigation and can then be activated."
|
||||
#~ msgstr ""
|
||||
#~ "Wenn Sie nach dem Speichern weitere Schaltflächen hinzufügen möchten, "
|
||||
#~ "klicken Sie zweimal langsam auf die Hauptnavigationsoption. Dadurch "
|
||||
#~ "werden alle Navigationspunkte in der Unternavigation neu geladen und "
|
||||
#~ "können dann aktiviert werden."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Under the tab \"Button Design\" you can set how the Buttons should look."
|
||||
#~ msgstr ""
|
||||
#~ "Unter \"Button Design\" stellen Sie ein, wie die Schaltflächen aussehen "
|
||||
#~ "sollen."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Under the tab \"Logo\" you can upload a logo. Max. width: 250px, max. "
|
||||
#~ "height: 100px."
|
||||
#~ msgstr ""
|
||||
#~ "Unter \"Logo\" können Sie ein Logo hochladen. Maximale Breite: 250px, "
|
||||
#~ "max. Höhe: 100px."
|
||||
|
||||
#~ msgid "Quickboard"
|
||||
#~ msgstr "Quickboard"
|
||||
|
||||
#~ msgid "MOVE ME"
|
||||
#~ msgstr "Zieh mich"
|
||||
|
||||
#~ msgid "Logo"
|
||||
#~ msgstr "Logo"
|
||||
|
||||
#~ msgid "Help/ Workflow"
|
||||
#~ msgstr "Hilfe / Workflow"
|
||||
|
||||
#~ msgid "Main navigation"
|
||||
#~ msgstr "Hauptnavigation"
|
||||
|
||||
#~ msgid "Sub navigation and renaming"
|
||||
#~ msgstr "Subnavigation und eigener Name"
|
||||
|
||||
#~ msgid "Personal"
|
||||
#~ msgstr "Personal"
|
||||
|
||||
#~ msgid "EXAMPLE"
|
||||
#~ msgstr "Beispiel"
|
||||
|
||||
#~ msgid "SECOND ROW"
|
||||
#~ msgstr "ZWEITE REIHE"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The license key on this domain is already inactive"
|
||||
#~ msgid "The license key on this domain is already inactived"
|
||||
#~ msgstr "Der Lizenzschlüssel für diese Domain ist bereits inaktiv"
|
||||
522
spec/fixtures/dynamic_finders/plugin_version/nextgen-gallery-pro/change_log/changelog.txt
vendored
Normal file
522
spec/fixtures/dynamic_finders/plugin_version/nextgen-gallery-pro/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,522 @@
|
||||
NextGEN Pro
|
||||
by Imagely
|
||||
|
||||
= V3.1.7 - 01.14.2021 =
|
||||
* Fixed: Pro Lightbox not opening via trigger icons
|
||||
* Fixed: Removed Composer dev dependencies from build
|
||||
|
||||
= V3.1.5 - 01.13.2021 =
|
||||
* Fixed: Pro Lightbox not opening
|
||||
* Fixed: Direct digital download links not working
|
||||
* Fixed: Coupon details could not be saved or edited
|
||||
* Fixed: Image proofs could not be submitted
|
||||
* Fixed: PHP 8 compatibility
|
||||
|
||||
= v3.1.2 - 11.25.2020 =
|
||||
* Fixed: The "Search" display type could not search or tag filter using some UTF8 characters
|
||||
* Changed: Several changes have been made for future jQuery 3.5 compatibility
|
||||
|
||||
= V3.0.18 - 08.17.2020 =
|
||||
* Fixed: Manage Pricelist page had several features broken by the WordPress 5.5 update
|
||||
|
||||
= v3.0.17 - 08.14.2020 =
|
||||
* Fixed: Proofing submission and some ecommerce cart functions were broken by the WordPress 5.5 update
|
||||
|
||||
= v3.0.16 - 08.10.2020 =
|
||||
* Fixed: Digital downloads were being served from the 'main' rather than 'backup' image files
|
||||
* Fixed: Hover captions are broken with WordPress 5.5's jQuery upgrade
|
||||
* Fixed: Hover captions styling was slightly misaligned with MS Edge
|
||||
|
||||
= v3.0.15 - 07.22.2020 =
|
||||
* NEW: Added 'minimum relevance' setting to Search display type
|
||||
* Fixed: "Delete pricelist" button was not working
|
||||
* Fixed: Allow digital downloads of images to continue even if the image is deleted from NextGen as long as the file remains on the server
|
||||
* Fixed: Bulk actions dropdown on Manage Orders didn't always appear
|
||||
* Fixed: ECommerce setup wizard was halting at step 4
|
||||
* Fixed: Fixed a PHP warning generated when calculating sales taxes
|
||||
* Fixed: Hover captions would misalign Pro Tile displays
|
||||
* Fixed: PayPal Checkout transactions failed if a coupon was applied to the cart
|
||||
* Fixed: PayPal Checkout would not work with non-USD currencies
|
||||
* Fixed: Pro Lightbox routing issue could cause the incorrect image to appear when loaded a second time
|
||||
* Fixed: Pro Search's template used incorrect HTML closing tags
|
||||
* Fixed: Search display types could not be inserted into a page when results were limited to albums that were also sub-albums to another album
|
||||
* Fixed: The regions of France was out of date and required adjustments
|
||||
|
||||
= v3.0.13 - 04.21.2020 =
|
||||
* Changed: Pro Lightbox will now enforce a minimum of 50% available screenpace when calculating padding
|
||||
* Fixed: "(number) items" string in the cart sidebar was not translateable
|
||||
* Fixed: 'Open in Pro Lightbox' setting not being honored by Pro Albums
|
||||
* Fixed: Buttons on the cart checkout page were styled incorrectly with the Photocrati theme
|
||||
* Fixed: Cart checkout page was not showing countries in the shipping fields when using IE11
|
||||
* Fixed: Cart sidebar would generate javascript errors when using IE11
|
||||
* Fixed: Images with very long descriptions could not be shared to Pinterest due to URL limits
|
||||
* Fixed: Pro Film displays were not centered
|
||||
* Fixed: Pro Film images were not center aligned when using the Photocrati theme
|
||||
* Fixed: Pro Lightbox was bugged when viewing the results of a Pro Search display type
|
||||
* Fixed: Removed inline javascript from display type templates
|
||||
* Fixed: Resetting non-ecommerce settings caused the 'studio email' field to lose its value
|
||||
* Fixed: Stripe webhook was failing to automatically mark orders as paid while generating an error about signature verification
|
||||
* Fixed: Trim whitespace from shipping information when validating and processing orders
|
||||
|
||||
= v3.0.10 - 03.16.2020 =
|
||||
* NEW: Added WP-CLI methods for viewing pricelists and orders
|
||||
* NEW: Added frontend image search display type
|
||||
* NEW: Added optional image title and descriptions to Pro Film displays
|
||||
* Changed: Removed use of jquery.placeholder.js as it is no longer needed
|
||||
* Fixed: Applying an invalid coupon after a valid coupon did not remove the valid coupon from the cart
|
||||
* Fixed: Browser validation was failing to highlight the pricelist title field when saving a pricelist without a title
|
||||
* Fixed: Customer order confirmation page did not include the second shipping line if provided
|
||||
* Fixed: Horizontal filmstrip carousels were appearing incorrectly when using a right-to-left language
|
||||
* Fixed: Hover Captions did not appear correctly with the TwentyTwenty theme
|
||||
* Fixed: Hover captions' "Titlebar" style was displaying incorrectly
|
||||
* Fixed: Prevent Pro Albums from displaying duplicate sub-albums and galleries when more than one Pro Album display exists on a page
|
||||
* Fixed: Pro Albums could not display albums / galleries if they included an ampersand in their title
|
||||
* Fixed: Pro Masonry displays were not working if the WordPress provided masonry.js was enqueued
|
||||
* Fixed: Pro Sidescroll displays could sometimes show a horizontal scrollbar
|
||||
* Fixed: Stripe orders were not including discounts from coupons
|
||||
* Fixed: Stripe webhook handler was not sending admin notifications when encountering errors
|
||||
* Fixed: Twitter Cards were passing a deprecated parameter
|
||||
|
||||
= v3.0.9 - 12.12.2019 =
|
||||
* NEW: Added new PayPal Checkout payment gateway
|
||||
* NEW: Added 'ngg_order_details_content' filter to control order confirmation text
|
||||
* NEW: Added methods to WP-CLI to view and manipulate pricelists
|
||||
* Changed: Include WHCC nexus states in sales tax by default if print lab is ready
|
||||
* Changed: Increased list of WHCC nexus states from 8 to 31
|
||||
* Changed: Renamed nextgen-gallery-pro.po to nextgen-gallery-pro.pot for better Loco Translate compatibility
|
||||
* Changed: Set NGG_PRO_USE_WHCC_NEXUS to TRUE by default if print lab is ready
|
||||
* Changed: The Stripe payment gateway no longer requires manually verifying the private key provided
|
||||
* Changed: Updated basil.js used by ecommerce for cart storage
|
||||
* Changed: Updated datetimepicker.js used by the coupons admin
|
||||
* Changed: Updated pressure.js used for image protection features
|
||||
* Changed: Updated sprintf.js used by ecommerce templates
|
||||
* Changed: Updated velocity.js used by the pro lightbox to scroll the comments sidebar
|
||||
* Fixed: Coupon codes could not be saved or edited when the site language was not English
|
||||
* Fixed: Digital Downloads did not appear on the cart sidebar if they did not exceed minimum requirements
|
||||
* Fixed: Hover captions sometimes caused JS errors if both image titles and descriptions were hidden
|
||||
* Fixed: Masonry galleries could have small thumbnails along the right column with certain themes (like TwentyTwenty)
|
||||
* Fixed: PayPal IPN events were generating multiple print lab orders
|
||||
* Fixed: Some cart sidebar texts were not translating
|
||||
* Fixed: Stripe checkout with free items in the cart would result in an error given to the customer
|
||||
* Fixed: Submitting image proofs was bugged when the site language was not English
|
||||
* Fixed: Testing keys or gateways were generating actual WHCC orders
|
||||
* Fixed: The category dropdown when adding new pricelist items was not displaying correctly with WordPress 5.3
|
||||
* Fixed: The shopping cart page loading-spinner appeared incorrectly with TwentyTwenty
|
||||
|
||||
= V3.0.6 - 11.06.2019 =
|
||||
* Fixed: Stripe orders not marked as paid automatically.
|
||||
* NOTE: Please click "Verify Stripe Keys" in Ecommerce Options -> Payment Gateways -> Stripe
|
||||
|
||||
= V3.0.5 - 10.15.2019 =
|
||||
* NEW: (Optional) Free download items can now be downloaded directly from the Pro Lightbox cart sidebar
|
||||
* Changed: Made "Resize images" feature an option when selling manually fulfilled items
|
||||
* Changed: Stripe SDK has been upgraded to support 3DS. Now requires PHP 5.4.0+
|
||||
* Changed: Updated gettext PO source
|
||||
* Fixed: Applying an invalid coupon on the cart page would display "Invalid coupon" but apply the deduction anyway on the cart page display
|
||||
* Fixed: Irish 'Eircode' were not validating correctly
|
||||
* Fixed: Orders consisting entirely of downloadable items were being marked 'unpaid' if processed via PayPal
|
||||
* Fixed: Orders processed by PayPal Express were not displaying the gateway name in the "Payment Gateway" column on the View Orders page
|
||||
* Fixed: Orders with items from more than one pricelist could have the shipping costs applied for each pricelist
|
||||
* Fixed: Pro Tiled Gallery images sometimes had incorrect sizing and/or aspect ratios
|
||||
* Fixed: Some PayPal Standard IPN were not being processed
|
||||
* Fixed: Subtotal amounts were not updating on the cart page when users with coupons changed item quantities
|
||||
|
||||
= v3.0.4 - 09.17.2019 =
|
||||
* Changed: Renamed zip to postal code (more universal)
|
||||
* Changed: Removed fullscreen button in Pro Lightbox (deprecated by browsers)
|
||||
* Fixed: Add to cart buttons not appearing in IE Edge
|
||||
* Fixed: Pro Lightbox urls invalid and not sharable
|
||||
* Fixed: Do not allow items added to the cart without ecommerce requirements met
|
||||
* Fixed: Cost of goods not formatted as currency in confirmation e-mails
|
||||
* Fixed: CSS typo galleria.nextgen_pro_lightbox.css
|
||||
* Fixed: Do not send emails until PayPal Standard orders are marked as paid
|
||||
|
||||
= v3.0.1 - 09.10.2019 =
|
||||
* NEW: Added ngg_pro_taxjar_nexus and ngg_pro_taxjar_params filters
|
||||
* NEW: Integrated with WHCC to provide automatic print lab fulfillment
|
||||
* NEW: Integrated with TaxJar to provide automated sales tax calculations
|
||||
* NEW: Ecommerce setup wizard
|
||||
* NEW: Revamped interface for managing pricelists
|
||||
* NEW: NextGEN Pro Tile display type
|
||||
* NEW: Integration with currency conversion service
|
||||
* NEW: Ability to crop images at checkout
|
||||
* NEW: Validation of ecommerce options and payment gateways
|
||||
* NEW: When NGG_PRO_LAB_TEST_MODE constant is set to true, print lab orders will not be fulfilled
|
||||
* NEW: Automatically retry loading dynamic thumbnail generation urls
|
||||
* Changed: Minimum version of NextGEN Gallery increased to 3.0.0
|
||||
* Changed: Order data integrity is always preserved
|
||||
* Changed: Added notices about SSL requirements
|
||||
* Changed: Test gateway will always assume that NGG_PRO_LAB_TEST_MODE is set to true
|
||||
* Fixed: Retina images generated at appropriate size
|
||||
* Fixed: Memory optimizations when generating images
|
||||
* Fixed: Excessive license checks and problems with caching
|
||||
* Fixed: PHP warning when no nav menus exist for shopping cart icon
|
||||
* Fixed: Styling and markup tweaks for 2019 redesign
|
||||
|
||||
|
||||
= v2.6.12 - 03.27.2019 =
|
||||
* Changed: Sharing with Facebook is now done through /share.php instead of the old /sharer/sharer.php
|
||||
* Fixed: Albums did not display nested sub-albums if the child albums name was an integer
|
||||
* Fixed: Horizontal Filmstrip and Slideshow galleries failed to run if their parent container was hidden at startup
|
||||
* Fixed: NextGen Pro's product file was causing NextGen's activation routine to run too frequently
|
||||
* Fixed: Pro Lightbox was scrolling to the top of the page after viewing a Pro Mosaic image
|
||||
|
||||
= v2.6.8 - 12.13.2018 =
|
||||
* Fixed: Images "shared" to Facebook will no longer be directed to the site frontpage when visited
|
||||
* Fixed: Stripe TLS 1.2 warnings were displaying even though the system supported TLS 1.2+
|
||||
* Fixed: Pro Lightbox was unable to open older, "preview image" based ATP galleries
|
||||
|
||||
= v2.6.7 - 10.09.2018 =
|
||||
* Changed: Improved quantity selectors in the Pro Lightbox ecommerce sidebar
|
||||
* Changed: Numerous phpdoc entries have been corrected
|
||||
* Changed: Pro Lightbox 'cart updated' message was moved to avoid other elements being repositioned
|
||||
* Changed: Upgraded FontAwesome to version 5
|
||||
* Fixed: Pro Imagebrowser navigation was positioned incorrectly with RTL languages
|
||||
* Fixed: Pro Lightbox carousel was misstyled with RTL languages
|
||||
* Fixed: Pro Lightbox was not honoring 'Apply to all images' lightbox setting
|
||||
|
||||
= V2.6.3 - 07.24.2018 =
|
||||
* NEW: Added French translations
|
||||
* NEW: Added German translations
|
||||
* NEW: Added Slovakian translations
|
||||
* NEW: Browsers on mobile devices can now use the Pro Lightbox open-with-cart-sidebar and open-with-comments-sidebar features
|
||||
* NEW: Pro Masonry displays can now have proofing enabled (requires hover captions, pro lightbox)
|
||||
* NEW: Warn admins that Stripe requires TLS 1.2 and their system is affected
|
||||
* Changed: Plugin URL in nggallery-pro.php has been updated for accuracy
|
||||
* Fixed: Hover captions compatibility with thickbox effect
|
||||
* Fixed: Pro Lightbox image captions were sometimes floated when sharing icons were disabled
|
||||
* Fixed: Pro Lightbox images were not correctly centered at startup under iOS
|
||||
* Fixed: Pro Masonry displays included a single gallery-level trigger icon that should not have been included
|
||||
|
||||
= V2.6.0 - 05.16.2018 =
|
||||
* NEW: Complete redesign of NextGEN Gallery backend interface
|
||||
* NEW: Pro Lightbox option to disable carousel thumbnails
|
||||
* NEW: Pro Lightbox uses Facebook JS SDK to generate share dialogs
|
||||
* Changed: Location of NextGen Pro Ecommerce in the main WordPress admin menu
|
||||
* Changed: Optimized Pro Lightbox for performance, especially mobile devices
|
||||
* Changed: Galleria.js upgraded to the latest version (1.5.7)
|
||||
* Fixed: Gutenberg compatibility
|
||||
* Fixed: Pro Lightbox sidebar overlay not being removed when comments are disabled / users must be registered
|
||||
* Fixed: Pro Lightbox will no longer attempt to use synchronous XHR
|
||||
|
||||
= V2.5.7 - 06.21.2017 =
|
||||
* NEW: Added Dutch translations as provided by Frank Leenders
|
||||
* Changed: Updated Pro Lightbox comment mechanism to use latest WP conventions
|
||||
* Changed: Uses KSES sanitization where applicable
|
||||
* Fixed: Pro Lightbox routing when wordpress_page_root not defined
|
||||
* Fixed: Pricelist requires at least one item to be saved
|
||||
* Fixed: NextGEN Widget always opens first image in Pro Lightbox
|
||||
* Fixed: Masonry display in Twenty Seventeen has overlapping image borders
|
||||
|
||||
= V2.5.5 - 05.23.2017 =
|
||||
* Changed: Updated to PictureFill 3.0.2
|
||||
* Changed: Use KSES sanitization for output of properties which allow HTML
|
||||
* Changed: Provide the ability to reset NGG options with and without ecommerce settings
|
||||
* Changed: Proofs sent to Ecommerce Options > Email > Order notification e-mail recipient
|
||||
* Fixed: Ability to include html in pro thumbnail caption templates
|
||||
* Fixed: Removed tooltip caption showing on top Pro Mosaic hover captions
|
||||
* Fixed: Stripped certain html tags from hover caption effects
|
||||
* Fixed: Removed use of PHP Sessions from Cheque module
|
||||
|
||||
= V2.5.0 - 03.28.2017 =
|
||||
* NEW: Pro Imagebrowser Gallery
|
||||
* NEW: Template support for Pro Galleries (requires NextGEN Gallery 2.2.0 or later)
|
||||
* NEW: Three new Pro Imagebrowser templates (requires NextGEN Gallery 2.2.0 or later)
|
||||
* NEW: Three new Pro Thumbnail Grid templates (requires NextGEN Gallery 2.2.0 or later)
|
||||
* Changed: Updated Imagely branding in Pro Modules
|
||||
* Changed: Branding changes from Photocrati to Imagely
|
||||
* Changed: Use localStorage for cart instead of cookies by default. May adjust using option.
|
||||
* Fixed: Digital Downloads tab showing in sidebar without products added
|
||||
* Fixed: View Cart button in Pro Lightbox not working in IE11 in certain cases
|
||||
* Fixed: Album setting 'Open gallery in Pro Lightbox' working on thumbnail but not title
|
||||
* Fixed: Pro Lightbox settings to display comments and cart initially can both be selected
|
||||
* Fixed: Presure.js generating errors in IE11 in certain cases
|
||||
* Fixed: Pro Lightbox 'Localize limit' interferes with Pro Album 'Open in Lightbox' option
|
||||
* Fixed: Ensure that modules are loaded when NGG re-activates using WordPress 4.7
|
||||
* Fixed: Incompatibilities with Elegant Themes
|
||||
* Fixed: Hover captions not appearing
|
||||
* Fixed: Misalignment of images in the Pro Lightbox
|
||||
* Fixed: Images appear as zoomed in the Pro Lightbox
|
||||
* Fixed: Ability to use quotes in pricelist titles
|
||||
* Fixed: Various PHP warnings and notices
|
||||
|
||||
= V2.3.63 - 12.13.2016 =
|
||||
* NEW: Added display type aliases to Pro display types
|
||||
* Changed: Minimum required version of NextGEN Gallery is now 2.1.49 or higher
|
||||
* Changed: Upgrading PHP-Parser to 2.1.0 for PHP7 compatibility for build generation
|
||||
* Fixed: The ability to add-to-cart on devices that have both touch and mouse inputs
|
||||
* Fixed: Conflict with Gravity Forms
|
||||
* Fixed: Local shipping rate applied to international orders
|
||||
* Fixed: The ability to key "k" during a Pro Sidescroll
|
||||
* Fixed: Pagination not working with "Open gallery in Pro Lightbox" feature for albums
|
||||
|
||||
= V2.3.61 - 11.17.2016 =
|
||||
* Fixed: Removed experimental category support for pricelists
|
||||
|
||||
= V2.3.60 - 11.16.2016 =
|
||||
* Fixed: Don't double-minify static resources in gulp build script
|
||||
* Fixed: Hover captions working on all display types
|
||||
* Fixed: Pro lightbox not working on iOS
|
||||
* Fixed: Scrolling not working on iOS
|
||||
* Fixed: Long tap image protection improvements on iOS
|
||||
* Fixed: Only show "display galleries as" option for albums when relevant
|
||||
* Fixed: Pro Sidescroll galleries are moved offscreen until they initialize
|
||||
|
||||
= V2.3.58 - 10.12.2016 =
|
||||
* Fixed: Use local version of imagesloaded if not provided by WordPress for Pro Sidescroll
|
||||
|
||||
= V2.3.56 - 10.12.2016 =
|
||||
* NEW: Added Pro Sidescroll Gallery
|
||||
* Changed: Now uses gulp for package compilation & JS/CSS minification
|
||||
* Changed: Removed "by Photocrati" from plugin description
|
||||
* Changed: Reorganized lightbox settings design to be more intuitive
|
||||
* Fixed: Hover captions not running and/or not including image descriptions in some circumstances
|
||||
* Fixed: Long press on mobile devices opening context menu when image protection was enabled
|
||||
* Fixed: Pro Mosaic previously required NextGen's lightbox setting to not be "None"
|
||||
|
||||
= V2.3.53 - 08.31.2016 =
|
||||
* NEW: Added the ability to click on album galleries to open in Pro Lightbox
|
||||
* NEW: Display a cart with dynamic total in menu
|
||||
* Changed: Mentions of Photocrati to Imagely
|
||||
* Fixed: Images not responsive for all display types
|
||||
* Fixed: Cannot save or delete pricelists using non-english languages
|
||||
* Fixed: Long image descriptions being obscured by the Pro Lightbox sidebar
|
||||
* Fixed: Ensure Pro albums show gallery descriptions on gallery-within-album pages
|
||||
* Fixed: Ensure that Retina images fit within the same dimensions as non-retina images on Pro Film and Pro Album types
|
||||
* Fixed: New pages not created in Ecommerce Options page
|
||||
|
||||
= V2.3.48 - 08.01.2016 =
|
||||
* NEW: Coupons and discount support
|
||||
* NEW: Free items and $0 orders
|
||||
* NEW: Gulp build system
|
||||
* NEW: Added "Enable fullscreen" option to Pro Lightbox
|
||||
* NEW: Added image thumbnail to lightbox sidebars (when browser width < 520px)
|
||||
* Changed: Increased size of Pro Lightbox sidebar
|
||||
* Changed: Pro Lightbox carousel no longer obscures the displayed image
|
||||
* Changed: Updated JustifiedGallery to 3.6.1
|
||||
* Fixed: Display the tax on the thank you page
|
||||
* Fixed: Dynamic ecommerce pages not being rendered correctly on home pages with no loop
|
||||
* Fixed: Resolved all found PHP warnings/notices/deprecations and strict errors
|
||||
* Fixed: Pro Mosaic spacing issue when margin option set to zero
|
||||
* Fixed: Convert PayPal Express Checkout module to use curl and fsockopen directly instead of using WP HTTP classes
|
||||
* Fixed: Display tax at PayPal Standard
|
||||
* Fixed: PayPal IPNs not being processed correctly for PayPal Standard
|
||||
* Fixed: PayPal Standard customer receipts have $0.00 order total
|
||||
|
||||
= V2.3.45 - 04.26.2016 =
|
||||
- NEW: A simple percentage tax option
|
||||
- Fixed: Navigating to a new image in the Pro Lightbox sometimes using the prior images url when sharing to social media
|
||||
- Fixed: Horizontal Filmstrip & Slideshow not displaying ecommerce triggers
|
||||
- Fixed: Horizontal Filmstrip not displaying carousel thumbnails with Photocrati-theme
|
||||
- Fixed: Display of existing orders totals, subtotals, and shipping amounts whose pricelist was edited post-purchase
|
||||
|
||||
= V2.3.42 - 03.15.2016 =
|
||||
* Fixed: Ensure that modules are compiled and that CSS/JS is minified
|
||||
|
||||
= V2.3.41 - 02.29.2016 =
|
||||
* Fixed: Pro Lightbox navigation when image protection is enabled
|
||||
|
||||
= V2.3.40 - 02.25.2016 =
|
||||
* NEW: Add-To-Cart and Proofing icons are added to Pro Captions
|
||||
* NEW: Added filter "ngg_ecommerce_page_list"
|
||||
* NEW: All Pro modules are now compiled before distribution
|
||||
* NEW: Finnish translation (first Pro translation!)
|
||||
* NEW: NextGen Pro Mosaic display type
|
||||
* NEW: Pro Lightbox can be padded and toggled full-browser
|
||||
* NEW: Pro Lightbox sets opacity through CSS class instead of inline style
|
||||
* Changed: "Lato" font is used for all parts of the ecommerce / checkout process now
|
||||
* Changed: All Pro templates now use "echo esc_attr()" instead of esc_attr_e() to avoid possible translation incompatibility
|
||||
* Changed: Digital Downloads page now hides the description column if the browser width is less than 400px
|
||||
* Changed: If the browser width is under 650px the cart & order-confirmation pages will place preview images and order description on their own rows rather than side-by-side
|
||||
* Changed: Pro Lightbox can now more efficiently initialize with large galleries
|
||||
* Changed: Pro Lightbox close-lightbox, toggle-sidebar, and toggle-carousel icons are much larger on touch devices
|
||||
* Changed: Pro Lightbox now defaults to the "white" style
|
||||
* Changed: Pro Lightbox now has its own routing code and does not rely on backbone.js. Closing the pro-lightbox no longer ends in a URL of "#"
|
||||
* Changed: Pro Lightbox sidebars are now 350px and not a variable width
|
||||
* Changed: Pro Thumbnail Grid now defaults to never displaying trigger icons
|
||||
* Changed: Removed Pro Lightbox option "touch transition effect": Galleria.js ignores this setting for touch devices if swipe is enabled.
|
||||
* Changed: Removed iframes from Pro Slideshow and Pro Horizontal Filmstrip, upgraded to Galleria 1.4.2
|
||||
* Changed: Several tweaks to the ecommerce checkout styling
|
||||
* Fixed: Changing the orientation of Chrome on iOS will no longer result in more than one main-image being displayed at once
|
||||
* Fixed: Comments module was generating a warning post WP 4.4
|
||||
* Fixed: Picturefill module was not working correctly with images containing spaces in their URL
|
||||
* Fixed: Pro Blog Gallery compatibility with TwentyFifteen theme (some attributes were not applying to the img element, our CSS needed a finer selector)
|
||||
* Fixed: Pro Grid Album thumbnails appeared outside their container with IE-11
|
||||
* Fixed: Pro Horizontal Filmstrip now handles mixed-height thumbnails in the carousel
|
||||
* Fixed: Pro Lightbox comments were not linking to the origin URL correctly
|
||||
* Fixed: Several changes were made to the Pro Lightbox to be more mobile (especially iOS 9) friendly
|
||||
* Fixed: View Orders page compatibility with WordPress 4.4
|
||||
|
||||
|
||||
= V2.3.5 - 07.13.2015 =
|
||||
* Fixed: Galleria and comments modules not updated during auto-update process
|
||||
|
||||
= V2.3.0 - 06.22.2015 =
|
||||
* NEW: Retina support for Pro display types
|
||||
* NEW: Hover captions for Pro display types
|
||||
* NEW: Breadcrumb support for Pro Albums
|
||||
* NEW: Internationalization support
|
||||
* NEW: Sharing images supports Twitter Card
|
||||
* NEW: Added max height option for Pro Blog display type
|
||||
* Changed: NextGEN Pro Lightbox does not require transients
|
||||
* Changed: Significant performance improvement to NextGEN Pro Lightbox. Removed iframes.
|
||||
* Changed: Updated to the latest Stripe SDK
|
||||
* Changed: Default thumbnail dimensions for horizontal filmstrips are 120x90
|
||||
* Fixed: jQuery explicitly marked as dependency for Masonry
|
||||
* Fixed: Auto deactivation of NextGEN Pro when NextGEN Plus is activated
|
||||
* Fixed: Various styling issues of NextGEN Pro Lightbox
|
||||
* Fixed: Styling conflicts between Shopping Cart page and TwentyFifteen theme
|
||||
* Fixed: CSS z-index issues with the Pro Lightbox
|
||||
* Fixed: Restore scroll position after closing the Pro Lightbox in full-screen mode
|
||||
* Fixed: Various styling improvements to the autogenerated ecommerce-related content
|
||||
* Fixed: Display checkboxes in comment form regardless of theme
|
||||
* Fixed: Display triggers for blog style galleries when images are a mix of landscape and portrait photos
|
||||
* Fixed: Determine whether override image settings is enabled for blog style
|
||||
* Fixed: Broken blog style images
|
||||
|
||||
= V2.1.4 - 11.18.2014 =
|
||||
* Fixed: Activating Plus doesn't deactivate Pro; fatal error
|
||||
* Fixed: Fatal error when NextGEN Gallery is disabled
|
||||
|
||||
= V2.1.1 - 11.17.2014 =
|
||||
* Fixed: Fatal error when activating without NextGEN Gallery installed
|
||||
|
||||
= V2.1 - 11.13.2014 =
|
||||
* NEW: Added the ability to proof galleries
|
||||
* NEW: Image protection feature to protect from theft
|
||||
* NEW: Added Test Gateway to evaluate checkout procedure
|
||||
* NEW: Added "Pay by Check" mechanism
|
||||
* NEW: Added NGG_ALLOW_CROSS_ORIGIN_FRAMING constant for those that need it
|
||||
* NEW: Added "%%file_list%%" placeholder for ecommerce-related e-mails
|
||||
* NEW: Digital downloads are served from PHP for compatibility and security reasons
|
||||
* NEW: Added "display cart" setting to Pro Lightbox to open sidebar automatically
|
||||
* NEW: Ability to duplicate pricelists
|
||||
* Changed: When NextGEN Gallery 2.0.68 is installed, only enqueue static resources when needed
|
||||
* Changed: Don't enqueue scripts or styles unless we require them
|
||||
* Changed: Updated Stripe SDK to the latest version
|
||||
* Changed: Don't use SSLv3 when connecting to PayPal via cURL to avoid Poodle vulnerability
|
||||
* Changed: Default all pro display types ngg_triggers_display to 'always'
|
||||
* Fixed: Forward-compatibility with NextGEN Gallery
|
||||
* Fixed: Use NextGEN Gallery's version of FontAwesome
|
||||
* Fixed: Problems with album routing
|
||||
* Fixed: Dynamic ecommerce pages not using default is_singular page templates
|
||||
* Fixed: Pro Lightbox not opening correctly on Firefox
|
||||
* Fixed: Display of currency in wide variety of character sets
|
||||
* Fixed: Ecommerce instructions should be the last item in the menu
|
||||
* Fixed: Social sharing links of the Pro Lightbox pointed to the wrong image
|
||||
* Fixed: Pro Lightbox performance improvements
|
||||
* Fixed: Cart not clearing after successful checkout
|
||||
* Fixed: Pricelists cannot be deleted, only trashed
|
||||
* Fixed: Optimized queries related to pricelists
|
||||
* Fixed: Use image filename as item id for PayPal Standard
|
||||
* Fixed: Display of view licensing terms link in ecommerce sidebar
|
||||
* Fixed: Reversed pro thumbnail grid hover effect to avoid image saturation
|
||||
* Fixed: Correct calculation and display of order totals for international orders
|
||||
* Fixed: Display image filename in cart
|
||||
* Fixed: Alignment issues
|
||||
* Fixed: Allow a shipping rate of $0
|
||||
* Fixed: Show processing indicator when checkout button is clicked
|
||||
|
||||
= V2.0 – 06.18.2014 =
|
||||
* NEW: E-commerce functionality added to the Pro Lightbox
|
||||
* NEW: Payment gateways for Stripe, PayPal Standard, and PayPal Express Checkout
|
||||
* NEW: Forward compatibility with new lightbox manager implementation
|
||||
* Fixed: Added notice to Roles tab about Change options capability and ecommerce
|
||||
* Fixed: Use image filename as item number for PayPal Standard.
|
||||
* Fixed: Masonary display type adjusted for responsiveness; no longer relies on dynamic thumbnails
|
||||
* Fixed: Captions position issues with Horizontal Filmstrip and Slideshow display types
|
||||
|
||||
= V1.0.17 - 04.24.2014 =
|
||||
* NEW: NextGEN Pro will automatically deactivate if it's dependencies aren't met
|
||||
* NEW: Compatibility fixes with WordPress 3.9
|
||||
* NEW: Added an option to the Pro Lightbox to display captions automatically
|
||||
* NEW: Added an option to the Pro Lightbox to open the comment/social sidebar automatically
|
||||
* NEW: Renamed all constants to use NGG_ prefix
|
||||
* Changed: Removed double-tap capability for the Pro Lightbox in fullscreen mode
|
||||
* Changed: Adjusted the way setting parameters are passed to Galleria themes
|
||||
* Changed: Removed thumbnail_quality & thumbnail_watermark fields for all display types
|
||||
* Changed: Use FontAwesome library that is bundled with NextGEN Gallery
|
||||
* Changed: Removed obsolete CSS rules used for Jetpack compatibility
|
||||
* Changed: Removed 1px black border from images in Pro Film galleries
|
||||
* Changed: Removed backbone/underscore from Pro Lightbox scripts property
|
||||
* Changed: Use relative urls instead of absolute urls for Pro Lightbox resources
|
||||
* Fixed: Various iOS compatibility issues
|
||||
* Fixed: Fix size and positioning of images in Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Positioning of captions for Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Flickering between image transitions for Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Image alignment and cropping settings for Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Center Film galleries within their parent container. Remove any whitespace in the markup
|
||||
* Fixed: Vertically-align images to the top of the image container for Grid Albums
|
||||
* Fixed: Remove "crop" setting for Blog Style galleries
|
||||
* Fixed: Styling of Pro List Albums
|
||||
* Fixed: Routing conflicts for albums on the same page
|
||||
* Fixed: Adjust position of comment toggle icon
|
||||
* Fixed: Apply nl2br() to all gallery descriptions
|
||||
* Fixed: Images aren't forced to be larger than their original dimensions in Blog Style galleries
|
||||
* Fixed: Don't display PHP errors/warnings in JSON response for pre_comments AJAX action
|
||||
* Fixed: Don't open Pro Lightbox for links that are to use ImageBrowser as the lightbox effect
|
||||
* Fixed: Allow HTML in the Pro Lightbox for image titles & descriptions
|
||||
* Fixed: Use original sized image when sharing an image via Facebook/OpenGraph
|
||||
* Fixed: Provide detailed data in OpenGraph representation
|
||||
* Fixed: OpenGraph should work with default and custom permalinks
|
||||
* Fixed: Use correct value for Yes/No setting selections for Pro Lightbox
|
||||
* Fixed: When opening the Pro Lightbox for a gallery using random images, display the correct image
|
||||
|
||||
= V1.0.12 - 03.28.2014 =
|
||||
* NEW: Added E-commerce functionality
|
||||
|
||||
= V1.0.10 - 11.26.2013 =
|
||||
* NEW: Pro Lightbox may be applied to non-NGG images
|
||||
* NEW: Pro Lightbox appearance now configurable with two presets, "Light" and "Dark"
|
||||
* NEW: Added Slideshow and Transition Speed settings for Pro Lightbox
|
||||
* NEW: Added "faux fullscreen" mode for browsers that don't support native fullscreen
|
||||
* NEW: Provide instructions after activation for enabling the Pro Lightbox
|
||||
* NEW: Ability to choose display type for galleries within Pro Albums
|
||||
* NEW: Grid albums are responsive
|
||||
* NEW: Added NextGEN Gallery version detection for compatibility reasons
|
||||
* Changed: Auto-update modules shared across Photocrati products (NextGEN Pro + Photocrati Theme)
|
||||
* Fixed: Addressed many performance concerns with Pro Lightbox
|
||||
* Fixed: The ability to view galleries within albums that have numeric names
|
||||
* Fixed: Generate thumbnails if they don't exist before trying to use them
|
||||
* Fixed: Properly enqueue scripts/styles to avoid "did it wrong" errors from WordPress
|
||||
* Fixed: Toggle-fullscreen button now toggles its icon-type correctly when users leave fullscreen
|
||||
* Fixed: Slideshows/filmstrips jumping to top left corner when clicking on the image
|
||||
* Fixed: Check existence of transient before rendering gallery
|
||||
* Fixed: Don't apply Pro Lightbox to images that specify a non-existing target
|
||||
* Fixed: Filmstrip captions cutting off tall images
|
||||
* Fixed: Compatibility with third party plugins and themes that use FontAwesome
|
||||
* Fixed: Custom CSS stylesheets are now applied to the Pro Lightbox
|
||||
* Fixed: Pro Lightbox compatibility with Opera
|
||||
* Fixed: Increase minimum screen size for displaying trigger buttons
|
||||
* Fixed: Share original images with Pinterest
|
||||
* Fixed: Lightbox conflicts with Photocrati Theme
|
||||
|
||||
= V1.0.6 - 08.21.2013 =
|
||||
* Fixed: Use settings class compatible with multisite
|
||||
* Fixed: Fixed PHP notices for invalid index in wp-admin
|
||||
* Fixed: Fixed invalid use of wp_register_script/wp_enqueue_script notices
|
||||
* Changed: Comments: return in comment_post_redirect filter
|
||||
* Fixed: Ensure that we don't check for updates until our check time has expired
|
||||
|
||||
= V1.0.4 - 08.09.2013 =
|
||||
* NEW: All Pro display types' styles can be customized by "Other Options -> Styles"
|
||||
* Changed: NextGEN Pro requires NextGEN Gallery 2.0.7 or later
|
||||
* Fixed: Pro Slideshows and Horizontal Filmstrip are fully responsive
|
||||
* Fixed: NextGEN Pro is loaded after NextGEN Gallery 2.0.x
|
||||
* Fixed: Pro Lightbox CSS is compatible with many other themes
|
||||
* Fixed: Incompatibility with WPMUDEV's Membership plugin
|
||||
* Fixed: Fix autoupdate cache not being properly managed when the server would return 0 updates
|
||||
* Fixed: Pro Album styling issues in some themes such as 2013
|
||||
|
||||
= V1.0 - 07.30.2013 =
|
||||
* NEW: Added Pro Lightbox, with social sharing and commenting functionality
|
||||
* NEW: Added Pro Blog Style display type
|
||||
* NEW: Added Pro Thumbnail Grid Style display type
|
||||
* NEW: Added Pro List & Grid Album display types
|
||||
* NEW: Added Pro Film display type
|
||||
* NEW: Added Galleria Display Type Engine
|
||||
* NEW: Added Pro Horizontal Filmstrip display type
|
||||
* NEW: Added Pro Slideshow display type
|
||||
* NEW: Added Pro Masonry display type
|
||||
* Changed: Since Beta #1, we're using a new Installer and Settings Manager implementation
|
||||
* Changed: Since Beta #1, we cache the final rendering output of display galleries
|
||||
@@ -0,0 +1,141 @@
|
||||
# Copyright (C) 2020 Caronima Inc.
|
||||
# This file is distributed under the same license as the DBP Cloud WP Plugin package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Posts Search Plugin Pot "
|
||||
"v1.0.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2021-01-20 23:25+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\n"
|
||||
"Language-Team: https://"
|
||||
"profiles.wordpress.org/"
|
||||
"takashimatsuyama/\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit "
|
||||
"2.4.2\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: assets/results.php:36
|
||||
msgid "read more"
|
||||
msgstr ""
|
||||
|
||||
#: assets/results.php:44
|
||||
msgid ""
|
||||
"There are no articles "
|
||||
"that hit the search "
|
||||
"criteria."
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:38
|
||||
msgid ""
|
||||
"No search keyword has "
|
||||
"been entered."
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:45
|
||||
msgid "Read further"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:46
|
||||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:80
|
||||
msgid "Search keyword"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:81
|
||||
msgid "Search area"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:93
|
||||
msgid "item display"
|
||||
msgid_plural ""
|
||||
"items display"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: assets/shortcode-searchform.php:21
|
||||
msgid "Enter a keyword"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:29
|
||||
msgid ""
|
||||
"Select a search area"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:31
|
||||
#: assets/wp_query.php:35
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:51
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:95
|
||||
#, php-format
|
||||
msgid "Filter by %s"
|
||||
msgstr ""
|
||||
|
||||
#: function.php:57
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<span class=\"number\">"
|
||||
"%s</span><span class="
|
||||
"\"unit\">item</span>"
|
||||
msgid_plural ""
|
||||
"<span class=\"number\">"
|
||||
"%s</span><span class="
|
||||
"\"unit\">items</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: posts-search.php:36
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Oops, this plugin will "
|
||||
"soon require PHP %s or "
|
||||
"higher."
|
||||
msgstr ""
|
||||
|
||||
#: posts-search.php:62
|
||||
msgid ""
|
||||
"Oops, PHP Class Name "
|
||||
"Conflict."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,273 @@
|
||||
# Copyright (C) 2021 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Recommendations - Custom Locations 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://woocommerce.com/my-account/create-a-ticket/\n"
|
||||
"POT-Creation-Date: 2021-01-27 14:56:58+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:58
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:94
|
||||
#: includes/class-wc-prl-cl-post-types.php:56
|
||||
msgid "Custom Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:69
|
||||
#: includes/class-wc-prl-cl-post-types.php:60
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:79
|
||||
#: includes/class-wc-prl-cl-post-types.php:63
|
||||
msgid "Edit Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin.php:75
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin.php:168
|
||||
msgid "Shortcode copied."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:113
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:114
|
||||
msgid "Deployments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:115
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:116
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:180
|
||||
msgid "Regenerate recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:181
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-shortcode.php:64
|
||||
msgid "Copy shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:43
|
||||
msgid "Location Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:80
|
||||
msgid "Expand all"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:81
|
||||
msgid "Close all"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:113
|
||||
msgid "No Engines found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:114
|
||||
msgid "You have not added Engines to this location. Deploy an Engine now?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:121
|
||||
msgid "Deploy an Engine"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:122
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-shortcode.php:43
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-shortcode.php:62
|
||||
msgid ""
|
||||
"To render the recommendations generated in this Custom Location, add the "
|
||||
"following shortcode to any post or page:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-location-shortcode.php:29
|
||||
#: includes/class-wc-prl-cl-location-shortcode.php:60
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:57
|
||||
msgid "Custom Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:58
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:61
|
||||
msgid "Add custom location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:62
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:64
|
||||
msgid "New Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:65
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:66
|
||||
msgid "View Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:67
|
||||
msgid "Search Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:69
|
||||
msgid "No Locations found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:70
|
||||
msgid "Parent Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:71
|
||||
msgid "Filter Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:72
|
||||
msgid "Location navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:73
|
||||
msgid "Locations list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:75
|
||||
msgid ""
|
||||
"Create additional Locations for your recommendation Engines and use "
|
||||
"shortcodes to display them anywhere."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:102
|
||||
msgid "Create Custom Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:105
|
||||
msgid "Need to display product recommendations using shortcodes or blocks?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:107
|
||||
msgid "Start by creating a Custom Location, and then use its shortcode anywhere."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:109
|
||||
msgid "Add Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:129
|
||||
#: includes/class-wc-prl-cl-post-types.php:130
|
||||
msgid "Location updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:132
|
||||
#. translators: %s: date and time of the revision
|
||||
msgid "Location restored to revision from %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:133
|
||||
msgid "Location created."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:134
|
||||
msgid "Location saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:135
|
||||
msgid "Location submitted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:136
|
||||
msgid "Location draft updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:153
|
||||
#. translators: %s: location count
|
||||
msgid "%s item permanently deleted."
|
||||
msgid_plural "%s items permanently deleted."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:155
|
||||
#. translators: %s: location count
|
||||
msgid "%s item moved to Trash."
|
||||
msgid_plural "%s items moved to Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:157
|
||||
#. translators: %s: location count
|
||||
msgid "%s item restored from Trash."
|
||||
msgid_plural "%s items restored from Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: product-recommendations-custom-locations.php:75
|
||||
#: product-recommendations-custom-locations.php:82
|
||||
msgid "Foul!"
|
||||
msgstr ""
|
||||
|
||||
#: product-recommendations-custom-locations.php:234
|
||||
msgid ""
|
||||
"Product Recommendations - Custom Locations requires at least WooCommerce "
|
||||
"<strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: product-recommendations-custom-locations.php:236
|
||||
msgid ""
|
||||
"<strong>Product Recommendations - Custom Locations</strong> requires at "
|
||||
"least <a href=\"%1$s\" target=\"_blank\">WooCommerce Product "
|
||||
"Recommendations</a> version <strong>%2$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Product Recommendations - Custom Locations"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://woocommerce.com/products/product-recommendations/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Use shortcodes and blocks to display product recommendations in custom "
|
||||
"pages and locations. Free feature plugin for the official WooCommerce "
|
||||
"Product Recommendations extension."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:59
|
||||
msgctxt "Admin menu name"
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
@@ -357,6 +357,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/js/eae.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- addonify-recaptcha-for-edd -->
|
||||
<script src="http://wp.lab/wp-content/plugins/addonify-recaptcha-for-edd/public/js/addonify-recaptcha-for-edd-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- addons-for-beaver-builder -->
|
||||
<link rel="stylesheet" id="labb-frontend-styles-css" href="http://wp.lab/wp-content/plugins/addons-for-beaver-builder/assets/css/labb-frontend.css?ver=1.4.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="labb-icomoon-styles-css" href="http://wp.lab/wp-content/plugins/addons-for-beaver-builder/assets/css/icomoon.css?ver=1.4.1" type="text/css" media="all">
|
||||
@@ -1168,6 +1172,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/art-picture-gallery/apg.class/file-upload/js/jquery.blueimp-gallery.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- art-video-player -->
|
||||
<script src="http://wp.lab/wp-content/plugins/art-video-player/assets/js/artplayer.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- as-store-locator -->
|
||||
<link rel="stylesheet" id="assl-style-css" href="http://wp.lab/wp-content/plugins/as-store-locator/assets/frontend/css/assl-style.css?ver=1.5.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/as-store-locator/assets/frontend/js/assl-script.min.js?ver=1.5.6"></script>
|
||||
@@ -1530,6 +1538,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/b-pinterest-feed/public/assets/js/pgallery.custom.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- b-testimonial -->
|
||||
<script src="http://wp.lab/wp-content/plugins/b-testimonial/assets/js/carousel.min.js?ver=1.0.0" id="bplugins-owl-carousel-js"></script>
|
||||
|
||||
|
||||
<!-- b2i-investor-tools -->
|
||||
<link rel="stylesheet" id="chartstyle-css" href="http://wp.lab/wp-content/plugins/b2i-investor-tools/css/style.css?ver=0.7.2" type="text/css" media="">
|
||||
<link rel="stylesheet" id="export-css" href="http://wp.lab/wp-content/plugins/b2i-investor-tools/css/export.css?ver=0.7.2" type="text/css" media="">
|
||||
@@ -1946,6 +1958,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blip-slideshow/blip-mootools.js?ver=1.2.7"></script>
|
||||
|
||||
|
||||
<!-- block-conditions -->
|
||||
<link rel="stylesheet" id="block-conditions-front-css-css" href="http://wp.lab/wp-content/plugins/block-conditions/public/css/block-conditions-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/block-conditions/public/js/block-conditions-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- block-fancy-list-item -->
|
||||
<link rel="stylesheet" id="block-fancy-list-item-css" href="http://wp.lab/wp-content/plugins/block-fancy-list-item/public/css/block-fancy-list-item-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/block-fancy-list-item/public/js/block-fancy-list-item-public.js?ver=1.0.0"></script>
|
||||
@@ -2147,6 +2164,15 @@
|
||||
<link rel="stylesheet" id="bogo-css" href="http://wp.lab/wp-content/plugins/bogo/includes/css/style.css?ver=3.1.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- bold-page-builder -->
|
||||
<link rel="stylesheet" id="bt_bb_content_elements-css" href="http://wp.lab/wp-content/plugins/bold-page-builder/css/front_end/content_elements.crush.css?ver=3.0.5" media="all">
|
||||
<link rel="stylesheet" id="bt_bb_slick-css" href="http://wp.lab/wp-content/plugins/bold-page-builder/slick/slick.css?ver=3.0.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/bold-page-builder/slick/slick.min.js?ver=3.0.5" id="bt_bb_slick-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bold-page-builder/content_elements_misc/js/jquery.magnific-popup.min.js?ver=3.0.5" id="bt_bb_magnific-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bold-page-builder/content_elements_misc/js/content_elements.js?ver=3.0.5" id="bt_bb-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bold-page-builder/script_fe.js?ver=3.0.5" id="bt_bb_fe-js"></script>
|
||||
|
||||
|
||||
<!-- boo-recipes -->
|
||||
<link rel="stylesheet" id="boorecipe-css" href="http://wp.lab/wp-content/plugins/boo-recipes/public/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/boo-recipes/public/js/boorecipe-public.js?ver=1.0.0"></script>
|
||||
@@ -2309,6 +2335,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/boozang/public/js/boozang-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- borderless -->
|
||||
<link rel="stylesheet" id="borderless_frontend_style-css" href="http://wp.lab/wp-content/plugins/borderless/assets/styles/borderless.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/borderless/includes/svg/svg.min.js?ver=1.0.1" id="borderless_svg_js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/borderless/assets/scripts/borderless.js?ver=1.0.1" id="borderless_frontend_script-js"></script>
|
||||
|
||||
|
||||
<!-- botamp -->
|
||||
<link rel="stylesheet" id="botamp-css" href="http://wp.lab/wp-content/plugins/botamp/public/css/botamp-public.css?ver=1.3.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/botamp/public/js/botamp-public.js?ver=1.3.2"></script>
|
||||
@@ -2378,6 +2410,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/brader-kits/public/js/brader-kits-public.js?ver=20.8.21"></script>
|
||||
|
||||
|
||||
<!-- brand-coupons-for-woocommerce -->
|
||||
<link rel="stylesheet" id="woocommerce-brand-coupons-css" href="http://wp.lab/wp-content/plugins/brand-coupons-for-woocommerce/public/css/woocommerce-brand-coupons-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/brand-coupons-for-woocommerce/public/js/woocommerce-brand-coupons-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- branding -->
|
||||
<link rel="stylesheet" id="lolita-css-loader-css" href="http://wp.lab/wp-content/plugins/branding/LolitaFramework/CssLoader/assets/css/lolita_css_loader.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -2422,6 +2459,12 @@
|
||||
<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>
|
||||
|
||||
|
||||
<!-- browsing-history -->
|
||||
<link rel="stylesheet" id="ccc_browsing_history-list-css-css" href="http://wp.lab/wp-content/plugins/browsing-history/assets/list.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/browsing-history/assets/save.js?ver=1.1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/browsing-history/assets/list.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- bs-faq -->
|
||||
<link rel="stylesheet" id="bs_faq_plugin-css" href="http://wp.lab/wp-content/plugins/bs-faq/public/css/bs_faq_plugin-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bs_faq_my_css-css" href="http://wp.lab/wp-content/plugins/bs-faq/public/css/bs_faq_my_css.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -2637,6 +2680,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/calendarista-basic-edition/assets/scripts/calendarista.1.0.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- california-state-grants -->
|
||||
<link rel="stylesheet" id="csl_grants_submissions_shared-css" href="http://wp.lab/wp-content/plugins/california-state-grants/dist/css/shared-style.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="csl_grants_submissions_frontend-css" href="http://wp.lab/wp-content/plugins/california-state-grants/dist/css/style.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/california-state-grants/dist/js/shared.js?ver=1.0" id="csl_grants_submissions_shared-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/california-state-grants/dist/js/frontend.js?ver=1.0" id="csl_grants_submissions_frontend-js"></script>
|
||||
|
||||
|
||||
<!-- call-button -->
|
||||
<link rel="stylesheet" id="pushlabs-callbutton-css" href="http://wp.lab/wp-content/plugins/call-button/assets/css/pushlabs-callbutton.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -3066,6 +3116,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cforms2/js/cforms.js?ver=14.14"></script>
|
||||
|
||||
|
||||
<!-- chalet-montagne-com-tools -->
|
||||
<link rel="stylesheet" id="jqueryui-min.css-css" href="http://wp.lab/wp-content/plugins/chalet-montagne-com-tools/assets/css/jquery-ui.min.css?ver=2.6.2" media="all">
|
||||
<link rel="stylesheet" id="bootstrap.min.css-css" href="http://wp.lab/wp-content/plugins/chalet-montagne-com-tools/assets/css/bootstrap.min.css?ver=2.6.2" media="all">
|
||||
<link rel="stylesheet" id="chalet-montagne-front.css-css" href="http://wp.lab/wp-content/plugins/chalet-montagne-com-tools/assets/css/chalet-montagne-front.css?ver=2.6.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/chalet-montagne-com-tools/assets/js/jquery.ui-datepicker-fr.js?ver=2.6.2" id="jquery.ui-datepicker-fr.js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/chalet-montagne-com-tools/assets/js/bootstrap.min.js?ver=2.6.2" id="bootstrap.min.js-js"></script>
|
||||
|
||||
|
||||
<!-- challonge -->
|
||||
<link rel="stylesheet" id="challonge.css-css" href="http://wp.lab/wp-content/plugins/challonge/challonge.css?ver=1.1.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/challonge/moment-with-locales.min.js?ver=1.1.6"></script>
|
||||
@@ -3893,6 +3951,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/country-code-selector/public/js/country-code-selector-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- coupon-bulker -->
|
||||
<link rel="stylesheet" id="coupon-bulker-css" href="http://wp.lab/wp-content/plugins/coupon-bulker/public/css/coupon-bulker-public.css?ver=1.2.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/coupon-bulker/public/js/coupon-bulker-public.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- coupon-reveal-button -->
|
||||
<link rel="stylesheet" id="spbcta-stylesheet-front-css" href="http://wp.lab/wp-content/plugins/coupon-reveal-button/css/spbcta-stylesheet-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/coupon-reveal-button/js/spbcta-nm.js?ver=1.0.0"></script>
|
||||
@@ -4142,6 +4205,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/custom-job-fields-for-wp-job-manager/public/js/cfwjm-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- custom-layouts -->
|
||||
<script src="http://wp.lab/wp-content/plugins/custom-layouts/assets/js/frontend/custom-layouts.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- custom-map-for-real-estate -->
|
||||
<link rel="stylesheet" id="maps-points-css" href="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/css/maps_points.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/js/maps_points.js?ver=1.1.1"></script>
|
||||
@@ -4234,6 +4301,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dakpion/public/js/dakpion-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- dark-mode-lite -->
|
||||
<link rel="stylesheet" id="dml-visitor-style-css" href="http://wp.lab/wp-content/plugins/dark-mode-lite/styles/css/dml-visitor-mode.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="dml-toggle-style-css" href="http://wp.lab/wp-content/plugins/dark-mode-lite/styles/css/toggle.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/dark-mode-lite/styles/js/dml-visitor-mode.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- darklup-lite-wp-dark-mode -->
|
||||
<link rel="stylesheet" id="darkluplite-style-css" href="http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0" media="">
|
||||
|
||||
@@ -4301,6 +4374,10 @@
|
||||
<link rel="stylesheet" id="demetrachat-css" href="http://wp.lab/wp-content/plugins/demetra-chat/public/css/demetrachat-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- designbro-business-name-generator -->
|
||||
<link rel="stylesheet" id="dbro-style-css" href="http://wp.lab/wp-content/plugins/designbro-business-name-generator/css/style.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- destroy-this-site -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/destroy-this-site/scripts.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -4424,6 +4501,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/document-gallery/assets/js/gallery.min.js?ver=4.4.3"></script>
|
||||
|
||||
|
||||
<!-- dolphy -->
|
||||
<link rel="stylesheet" id="dolphy-core-css" href="http://wp.lab/wp-content/plugins/dolphy/assets/css/core.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="dolphy-front-css" href="http://wp.lab/wp-content/plugins/dolphy/assets/css/front.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/dolphy/assets/js/core.min.js?ver=1.0.0" id="dolphy-core-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/dolphy/assets/js/front.min.js?ver=1.0.0" id="dolphy-front-js"></script>
|
||||
|
||||
|
||||
<!-- donate-visa -->
|
||||
<link rel="stylesheet" id="donate_visa_dvsmp_css-css" href="http://wp.lab/wp-content/plugins/donate-visa/assets/css/donate-visa-dvsmp.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/donate-visa/assets/js/donate-visa-dvsmp.js?ver=1.0.0"></script>
|
||||
@@ -4527,6 +4611,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dynamic-content-for-woocommerce/public/js/cc-for-woocommerce-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- dynamically-display-posts -->
|
||||
<link rel="stylesheet" id="mxddp_style-css" href="http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/css/style.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/add/vue_js/vue.production.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- dynast-admin-panel -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dynast-admin-panel/assets/js/admin_contact.js?ver=v1.0"></script>
|
||||
|
||||
@@ -4762,6 +4852,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=1.3"></script>
|
||||
|
||||
|
||||
<!-- easy-tag-and-tracking-id-inserter -->
|
||||
<link rel="stylesheet" id="easy-tag-and-tracking-id-inserter-css" href="http://wp.lab/wp-content/plugins/easy-tag-and-tracking-id-inserter/public/css/easy-tag-and-tracking-id-inserter-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-tag-and-tracking-id-inserter/public/js/easy-tag-and-tracking-id-inserter-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- easy-twitter-feeds -->
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-twitter-feeds/public/js/widget.js?ver=1.0"></script>
|
||||
|
||||
@@ -4859,6 +4954,9 @@
|
||||
|
||||
<!-- economic-market-news -->
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio-wp.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/Sortable.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio_search.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="customStockdioSearchStyles-css" href="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio_search.css?v=1.0.0&ver=5.3.1" media="all">
|
||||
|
||||
|
||||
<!-- ecwid-widgets-avalanche -->
|
||||
@@ -5001,6 +5099,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ellie-code-snippet/public/js/ellie-code-snippet-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- elquarto -->
|
||||
<link rel="stylesheet" id="elquartopublic-css" href="http://wp.lab/wp-content/plugins/elquarto/public/css/public.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="elquartofonts-css" href="http://wp.lab/wp-content/plugins/elquarto/public/css/fonts.css?ver=1.0.2" media="all">
|
||||
|
||||
|
||||
<!-- els-ajax-login -->
|
||||
<link rel="stylesheet" id="els-ajax-login-css-css" href="http://wp.lab/wp-content/plugins/els-ajax-login/css/els-ajax-login-css.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/els-ajax-login/js/els-ajax-login-def.js?ver=1.0.1"></script>
|
||||
@@ -5112,6 +5215,12 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/envychimp/public/js/ajaxChimp.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envydoc -->
|
||||
<link rel="stylesheet" id="envydoc-font-awesome-css" href="http://wp.lab/wp-content/plugins/envydoc/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-doc-css" href="http://wp.lab/wp-content/plugins/envydoc/public/css/envy-doc-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envydoc/public/js/envy-doc-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envynotifs -->
|
||||
<link rel="stylesheet" id="envy-notifs-font-awesome-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-notifs-bootstrap-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
@@ -5736,6 +5845,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/final-tiles-grid-gallery-lite/scripts/jquery.finalTilesGallery.js?ver=3.3.27"></script>
|
||||
|
||||
|
||||
<!-- finance-calculator-with-application-form -->
|
||||
<script src="http://wp.lab/wp-content/plugins/finance-calculator-with-application-form/includes/js.finance.js?ver=2.1.6" id="wpfcs-js"></script>
|
||||
|
||||
|
||||
<!-- findusat -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/findusat/assets/js/findusat.js?ver=1.1"></script>
|
||||
|
||||
@@ -5774,6 +5887,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flash-album-gallery/assets/script.js?ver=5.1.7"></script>
|
||||
|
||||
|
||||
<!-- flash-notification -->
|
||||
<link rel="stylesheet" id="flash-frontend-css" href="http://wp.lab/wp-content/plugins/flash-notification//views/assets/css/style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/flash-notification//views/assets/js/cww-frontend.js?ver=1.0.0" id="flash-frontend-js"></script>
|
||||
|
||||
|
||||
<!-- flat-preloader -->
|
||||
<link rel="stylesheet" id="flat-preloader-css" href="http://wp.lab/wp-content/plugins/flat-preloader/assets/css/flat-preloader-public.css?ver=1.1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flat-preloader/assets/js/flat-preloader.js?ver=1.1.2"></script>
|
||||
@@ -6295,6 +6413,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gallery-made-easy/template/main.js?ver=1.3"></script>
|
||||
|
||||
|
||||
<!-- gambling-addiction-test -->
|
||||
<link rel="stylesheet" id="mga-style-css" href="http://wp.lab/wp-content/plugins/gambling-addiction-test/css/mga.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gambling-addiction-test/js/mga.js?ver=1.0" id="mga-plugin-js"></script>
|
||||
|
||||
|
||||
<!-- game-showcase -->
|
||||
<link rel="stylesheet" id="game-showcase-css" href="http://wp.lab/wp-content/plugins/game-showcase/public/css/game-showcase-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/game-showcase/public/js/game-showcase-public.js?ver=1.0.0"></script>
|
||||
@@ -6971,6 +7094,29 @@
|
||||
<link rel="stylesheet" id="guardian_headlines_style-css" href="http://wp.lab/wp-content/plugins/guardian-news-headlines/guardian_headlines.css?ver=0.5.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- guto-toolkit -->
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/animate.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="boxicons-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/boxicons.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="nice-select-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/nice-select.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/owl.carousel.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="odometer-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/odometer.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/magnific-popup.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="guto-main-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/main-style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/nice-select.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/magnific-popup.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/owl.carousel.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/meanmenu.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/parallax.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/jquery.appear.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/odometer.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/wow.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/jquery.ajaxchimp.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/guto-toolkit-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- h5p -->
|
||||
<link rel="stylesheet" id="h5p-plugin-styles-css" href="http://wp.lab/wp-content/plugins/h5p/h5p-php-library/styles/h5p.css?ver=1.10.0" type="text/css" media="all">
|
||||
|
||||
@@ -7190,6 +7336,11 @@
|
||||
<link rel="stylesheet" id="button-contact-css" href="http://wp.lab/wp-content/plugins/hk-button-contact/css/button-contact.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- hm-logo-showcase -->
|
||||
<link rel="stylesheet" id="hmls-front-style-css" href="http://wp.lab/wp-content/plugins/hm-logo-showcase/assets/css/hmls-front-style.css?ver=1.1" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/hm-logo-showcase/assets/js/hmls-front-script.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- hm-product-catalog -->
|
||||
<link rel="stylesheet" id="wphpc-front-style-w3-css" href="http://wp.lab/wp-content/plugins/hm-product-catalog/assets/css/wphpc-w3.css?ver=1.0" type="text/css" media="">
|
||||
<link rel="stylesheet" id="wphpc-front-style-css" href="http://wp.lab/wp-content/plugins/hm-product-catalog/assets/css/wphpc-front-style.css?ver=1.0" type="text/css" media="">
|
||||
@@ -7201,6 +7352,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/hm-resume-manager/assets/js/hmrm-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hm-simple-facebook-page -->
|
||||
<link rel="stylesheet" id="hmsfp-front-style-css" href="http://wp.lab/wp-content/plugins/hm-simple-facebook-page/assets/css/hmsfp-front-style.css?ver=1.4" media="">
|
||||
|
||||
|
||||
<!-- hmh-footer-builder-for-elementor -->
|
||||
<link rel="stylesheet" id="bbfb-css" href="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/css/bbfb.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/js/script.js?ver=1.0"></script>
|
||||
@@ -7277,6 +7432,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hover-product-details/js/webappdesign_hover_product_details.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hr-performance -->
|
||||
<link rel="stylesheet" id="hr-performance-css" href="http://wp.lab/wp-content/plugins/hr-performance/public/css/hr-performance-public.css?ver=1.0.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hr-performance/public/js/hr-performance-public.js?ver=1.0.0.1" id="hr-performance-js"></script>
|
||||
|
||||
|
||||
<!-- ht-event -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ht-event/assets/js/htevent-widgets-active.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -7347,6 +7507,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/i-search/front/js/frontend.min.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- i2-azon -->
|
||||
<link rel="stylesheet" id="i2_azon_style_css-css" href="http://wp.lab/wp-content/plugins/i2-azon/dist/css/style.css?ver=0.2.4" media="all">
|
||||
|
||||
|
||||
<!-- ic-besocial -->
|
||||
<link rel="stylesheet" id="ic-besocial-css" href="http://wp.lab/wp-content/plugins/ic-besocial/besocial.css?ver=3.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ic-besocial/besocial.js?ver=3.0"></script>
|
||||
@@ -7763,6 +7927,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/intelly-welcome-bar/assets/js/library.js?v=1.1.0&ver=4.9.1"></script>
|
||||
|
||||
|
||||
<!-- interact-do-conversation-and-chat-ui -->
|
||||
<link rel="stylesheet" id="interact-do-ui-css" href="http://wp.lab/wp-content/plugins/interact-do-conversation-and-chat-ui/public/css/interact-do-ui-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/interact-do-conversation-and-chat-ui/public/js/interact-do-ui-public.js?ver=1.0.0" id="interact-do-ui-js"></script>
|
||||
|
||||
|
||||
<!-- interactive-svg-map -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/interactive-svg-map/js/jquery.vmap.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/interactive-svg-map/js/maps/jquery.vmap..js?ver=1.0.0"></script>
|
||||
@@ -7972,6 +8141,16 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/jp-scrollbar/js/jquery.mousewheel.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- jp-students-exam-admit-card-generator -->
|
||||
<link rel="stylesheet" id="jseacg_fstyle-css" href="http://wp.lab/wp-content/plugins/jp-students-exam-admit-card-generator/assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/jp-students-exam-admit-card-generator/assets/js/frontend.min.js?ver=1.0.0" id="jseacg_fscript-js"></script>
|
||||
|
||||
|
||||
<!-- jp-students-result-management-system -->
|
||||
<link rel="stylesheet" id="jsrms_fstyle-css" href="http://wp.lab/wp-content/plugins/jp-students-result-management-system/css/style.css?ver=1.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/jp-students-result-management-system/js/scripts.js?ver=1.5"></script>
|
||||
|
||||
|
||||
<!-- jps-affiliate -->
|
||||
<link rel="stylesheet" id="jps-affiliate-css" href="http://wp.lab/wp-content/plugins/jps-affiliate/jps-affiliate.css?ver=0.1" type="text/css" media="all">
|
||||
|
||||
@@ -9322,6 +9501,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/matador-jobs/assets/scripts/matador.js?ver=3.3.2"></script>
|
||||
|
||||
|
||||
<!-- material-design -->
|
||||
<link rel="stylesheet" id="material-front-end-css-css" href="http://wp.lab/wp-content/plugins/material-design/assets/css/front-end-compiled.css?ver=0.1.0" media="all">
|
||||
<link rel="stylesheet" id="material-overrides-css-css" href="http://wp.lab/wp-content/plugins/material-design/assets/css/overrides-compiled.css?ver=0.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/material-design/assets/js/front-end.js?ver=0.1.0" id="material-front-end-js-js"></script>
|
||||
|
||||
|
||||
<!-- material-design-for-contact-form-7 -->
|
||||
<link rel="stylesheet" id="cf7-material-design-css" href="http://wp.lab/wp-content/plugins/material-design-for-contact-form-7/assets/css/cf7-material-design.css?ver=2.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/material-design-for-contact-form-7/assets/js/cf7-material-design-bundle.js?ver=2.2.1"></script>
|
||||
@@ -9632,6 +9817,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/microslider/public/js/microslider-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- mihanpanel-lite -->
|
||||
<link rel="stylesheet" id="mw_fontawesome_css-css" href="http://wp.lab/wp-content/plugins/mihanpanel-lite/css/fa/css/all.css?ver=8.5" media="all">
|
||||
<link rel="stylesheet" id="mw-profile-widget-css" href="http://wp.lab/wp-content/plugins/mihanpanel-lite/css/profile-widget.css?ver=8.5" media="all">
|
||||
|
||||
|
||||
<!-- militant-moderates-css-parent-selector-mmps -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/militant-moderates-css-parent-selector-mmps/js/mmParentSelector.min.js?ver=1.2.2"></script>
|
||||
|
||||
@@ -10090,6 +10280,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/my-faves/public/js/myfaves-public.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- my-favorites -->
|
||||
<link rel="stylesheet" id="ccc_my_favorite-select-css-css" href="http://wp.lab/wp-content/plugins/my-favorites/assets/select.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/my-favorites/assets/select.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- my-idx-home-search -->
|
||||
<link rel="stylesheet" id="homeasap-search-css" href="http://wp.lab/wp-content/plugins/my-idx-home-search/public/css/homeasap-search-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/my-idx-home-search/public/js/homeasap-search-public.js?ver=1.0.1"></script>
|
||||
@@ -10374,6 +10569,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nicechat/public/js/nicechat-cart-service.js?ver=0.1.2"></script>
|
||||
|
||||
|
||||
<!-- night-mode-and-font-size-kit -->
|
||||
<link rel="stylesheet" id="nmfs-styles-css" href="http://wp.lab/wp-content/plugins/night-mode-and-font-size-kit/assets/css/nmfs-styles.css?ver=2.4" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/night-mode-and-font-size-kit/assets/js/nmfs-scripts.js?ver=2.4" id="nmfs-scripts-js"></script>
|
||||
|
||||
|
||||
<!-- nimble-builder -->
|
||||
<link rel="stylesheet" id="sek-base-css" href="http://wp.lab/wp-content/plugins/nimble-builder/assets/front/css/sek-base.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nimble-builder/assets/front/js/sek-main.js?ver=1.0.2"></script>
|
||||
@@ -10578,6 +10778,7 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-main.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/florist-one-flower-delivery-public.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-condolences.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-photo-gallery.min.js?ver=1.9.1"></script>
|
||||
|
||||
|
||||
<!-- obituary-central-newspaper-obituary-editor -->
|
||||
@@ -11357,6 +11558,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/planaday-api/js/fullcalendar.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- player-leaderboard -->
|
||||
<link rel="stylesheet" id="player-leaderboard-css" href="http://wp.lab/wp-content/plugins/player-leaderboard/public/css/player-leaderboard-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="player-leaderboard-ui-css" href="http://wp.lab/wp-content/plugins/player-leaderboard/public/css/jquery-ui.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="player-leaderboard-ui-theme-css" href="http://wp.lab/wp-content/plugins/player-leaderboard/public/css/jquery-ui.theme.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="player-leaderboard-ui-struct-css" href="http://wp.lab/wp-content/plugins/player-leaderboard/public/css/jquery-ui.structure.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/player-leaderboard/public/js/player-leaderboard-public.js?ver=1.0.0" id="player-leaderboard-js"></script>
|
||||
|
||||
|
||||
<!-- plestar-directory-listing -->
|
||||
<link rel="stylesheet" id="pdl-widgets-css" href="http://wp.lab/wp-content/plugins/plestar-directory-listing/assets/css/widgets.min.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -11686,6 +11895,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/posts-data-table/assets/js/posts-data-table.min.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- posts-filter -->
|
||||
<link rel="stylesheet" id="ccc_terms_filter_ajax-css-css" href="http://wp.lab/wp-content/plugins/posts-filter/assets/filter.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/posts-filter/assets/filter.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- posts-grid -->
|
||||
<link rel="stylesheet" id="gspostsbootstrap-css-css" href="http://wp.lab/wp-content/plugins/posts-grid/gs-wpposts-files/assets/css/gswpposts_custom_bootstrap.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="gsposts-gswppost-custom-css-css" href="http://wp.lab/wp-content/plugins/posts-grid/gs-wpposts-files/assets/css/gswpposts_custom.css?ver=1.1" type="text/css" media="all">
|
||||
@@ -11695,6 +11909,11 @@
|
||||
<link rel="stylesheet" id="posts-from-category-widget-stylesheet-css" href="http://wp.lab/wp-content/plugins/posts-in-category-widget/style.css?ver=1.2.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- posts-search -->
|
||||
<link rel="stylesheet" id="ccc_search_ajax-found_posts-css-css" href="http://wp.lab/wp-content/plugins/posts-search/assets/found_posts.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/posts-search/assets/found_posts.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- posts-slider-shortcode -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/posts-slider-shortcode/js/owl.carousel.js?ver=1.0"></script>
|
||||
|
||||
@@ -11913,6 +12132,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/private-google-calendars/lib/tippy/tippy-bundle.umd.min.js?ver=20191205"></script>
|
||||
|
||||
|
||||
<!-- privy-crm-integration -->
|
||||
<link rel="stylesheet" id="privyr-cf7-css" href="http://wp.lab/wp-content/plugins/privy-crm-integration/public/css/privyr-crm-public.css?ver=0.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/privy-crm-integration/public/js/privyr-crm-public.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- pro-adblock -->
|
||||
<link rel="stylesheet" id="padb-style-css" href="http://wp.lab/wp-content/plugins/pro-adblock/assets/css/padb-style.css?ver=1.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pro-adblock/gads.js?ver=1.2.1"></script>
|
||||
@@ -12158,6 +12382,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js?ver=5.0.4"></script>
|
||||
|
||||
|
||||
<!-- qa-heatmap-analytics -->
|
||||
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/load-file.js?ver=1.0.7.1" id="qahm-load-file-js"></script>
|
||||
|
||||
|
||||
<!-- qbot-question-answer -->
|
||||
<link rel="stylesheet" id="qbot-style-css" href="http://wp.lab/wp-content/plugins/qbot-question-answer/css//style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -12183,6 +12411,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/qreatmenu-restaurant-qr-menu-for-woocommerce/public/js/qrm-woocommerce-qr-menu-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- quabads -->
|
||||
<link rel="stylesheet" id="quabads-css" href="http://wp.lab/wp-content/plugins/quabads/admin/css/quabads-admin.css?ver=1.2.1" media="all">
|
||||
|
||||
|
||||
<!-- quadmenu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quadmenu/assets/frontend/js/quadmenu.min.js?ver=1.1.6"></script>
|
||||
|
||||
@@ -12792,6 +13024,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/restaurantpress/assets/js/frontend/restaurantpress.min.js?ver=1.6.0"></script>
|
||||
|
||||
|
||||
<!-- restrict-access -->
|
||||
<link rel="stylesheet" id="restrict-access-css" href="http://wp.lab/wp-content/plugins/restrict-access/dist/css/p.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- restropress -->
|
||||
<link rel="stylesheet" id="rpress-styles-css" href="http://wp.lab/wp-content/plugins/restropress/templates/rpress.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/restropress/assets/js/rpress-ajax.js?ver=1.0.0"></script>
|
||||
@@ -13053,6 +13289,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/js/rw-elephant.min.js?ver=2.1.2"></script>
|
||||
|
||||
|
||||
<!-- rw-recent-post -->
|
||||
<link rel="stylesheet" id="rwrpt_style-css" href="http://wp.lab/wp-content/plugins/rw-recent-post/css/rwstyle.css?ver=1.1" media="all">
|
||||
|
||||
|
||||
<!-- ryviu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ryviu/assets/js/local-ryviu.js?ver=2.2.7"></script>
|
||||
|
||||
@@ -13520,6 +13760,11 @@
|
||||
<link rel="stylesheet" id="shaplatools-css" href="http://wp.lab/wp-content/plugins/shaplatools/assets/css/style.css?ver=1.3.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- share-by-email -->
|
||||
<link rel="stylesheet" id="share-by-email-css" href="http://wp.lab/wp-content/plugins/share-by-email/public/css/share-by-email-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/share-by-email/public/js/share-by-email-public.js?ver=1.0.0" id="share-by-email-js"></script>
|
||||
|
||||
|
||||
<!-- share-monkey -->
|
||||
<link rel="stylesheet" id="share-monkey-shared-css" href="http://wp.lab/wp-content/plugins/share-monkey//shared/css/share-monkey-shared.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="share-monkey-socicon-css" href="http://wp.lab/wp-content/plugins/share-monkey//shared/socicon/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -14563,6 +14808,17 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-sharing-buttons-and-counters/assets/js/jc-social-sharing.js?ver=1.1.5"></script>
|
||||
|
||||
|
||||
<!-- social-stream-design -->
|
||||
<link rel="stylesheet" id="effects-css" href="http://wp.lab/wp-content/plugins/social-stream-design/css/effects.css?ver=1.0" media="">
|
||||
<link rel="stylesheet" id="ssd_fontawesome-css" href="http://wp.lab/wp-content/plugins/social-stream-design/css/fontawesome-all.min.css?ver=1.0" media="">
|
||||
<link rel="stylesheet" id="stream-css" href="http://wp.lab/wp-content/plugins/social-stream-design/css/style.css?ver=1.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/social-stream-design/js/isotope.pkgd.min.js?ver=1.0" id="isotop-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/social-stream-design/js/modernizr.custom.js?ver=1.0" id="ssd_modernizr_custom-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/social-stream-design/js/classie.min.js?ver=1.0" id="ssd_classie-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/social-stream-design/js/AnimOnScroll.js?ver=1.0" id="anim-on-scroll-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/social-stream-design/js/script.js?ver=1.0" id="script-js"></script>
|
||||
|
||||
|
||||
<!-- social-warfare -->
|
||||
<link rel="stylesheet" id="social_warfare-css" href="http://wp.lab/wp-content/plugins/social-warfare/css/style.min.css?ver=2.3.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-warfare/js/script.min.js?ver=2.3.3"></script>
|
||||
@@ -14605,6 +14861,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sold-alerts/static/js.js?ver=1.7"></script>
|
||||
|
||||
|
||||
<!-- solid-post-likes -->
|
||||
<link rel="stylesheet" id="icomoon-css" href="http://wp.lab/wp-content/plugins/solid-post-likes/vendor/htmlburger/carbon-field-icon/build/icomoon.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="oacs-spl-public-css" href="http://wp.lab/wp-content/plugins/solid-post-likes/views/public/css/solid-post-likes-public.css?ver=1.0.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/solid-post-likes/views/public/js/solid-post-likes-public.js?ver=1.0.0" id="solid-post-likes-public-js-js"></script>
|
||||
|
||||
|
||||
<!-- solidres -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/solidres/assets/js/site.js?ver=0.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/solidres/assets/js/common.js?ver=0.9.2"></script>
|
||||
@@ -14737,6 +14999,9 @@
|
||||
<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>
|
||||
<link rel="stylesheet" id="sl_styles-css" href="http://wp.lab/wp-content/plugins/sports-leagues/public/css/styles.min.css?ver=0.5.3" media="all">
|
||||
<link rel="stylesheet" id="modaal-css" href="http://wp.lab/wp-content/plugins/sports-leagues/vendor/modaal/modaal.min.css?ver=0.5.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sports-leagues/vendor/modaal/modaal.min.js?ver=0.5.3"></script>
|
||||
|
||||
|
||||
<!-- sportspress -->
|
||||
@@ -14937,6 +15202,9 @@
|
||||
|
||||
<!-- stock-quotes-list -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio-wp.js?ver=2.7.13"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/Sortable.min.js?ver=2.7.13"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio_search.js?ver=2.7.13"></script>
|
||||
<link rel="stylesheet" id="customStockdioSearchStyles-css" href="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio_search.css?v=2.7.13&ver=5.3.1" media="all">
|
||||
|
||||
|
||||
<!-- stock-ticker -->
|
||||
@@ -15108,6 +15376,10 @@
|
||||
<link rel="stylesheet" id="superpack-widgets-style-css" href="//wp.lab/wp-content/plugins/superpack/assets/css/widgets.min.css?ver=0.3.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- supportbubble -->
|
||||
<script src="http://wp.lab/wp-content/plugins/supportbubble/frontend/dist/bundle.js?ver=1.1.1" id="support-bubble-js"></script>
|
||||
|
||||
|
||||
<!-- supportcandy -->
|
||||
<link rel="stylesheet" id="wpsc-bootstrap-css-css" href="http://wp.lab/wp-content/plugins/supportcandy/asset/css/bootstrap-iso.css?version=1.0.7&ver=4.9.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpsc-fa-css-css" href="http://wp.lab/wp-content/plugins/supportcandy/asset/lib/font-awesome/css/all.css?version=1.0.7&ver=4.9.1" type="text/css" media="all">
|
||||
@@ -15207,6 +15479,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/sympose/js/dist/public/sympose.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sync-post-with-other-site -->
|
||||
<link rel="stylesheet" id="sps_front_css-css" href="http://wp.lab/wp-content/plugins/sync-post-with-other-site/assets/css/sps_front_style.css?rand=578&ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sync-post-with-other-site/assets/js/sps_front_js.js?rand=749&ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- syndication-links -->
|
||||
<link rel="stylesheet" id="syndication-style-css" href="http://wp.lab/wp-content/plugins/syndication-links/css/syn.min.css?ver=3.3.0" type="text/css" media="all">
|
||||
|
||||
@@ -15327,6 +15604,18 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tags-cloud-manager/public/js/tcm-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tainacan-extra-view-modes -->
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-mosaic-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-mosaic.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-frame-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-frame.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-exhibition-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-exhibition.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-books-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-books.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-polaroid-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-polaroid.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-document-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-document.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-albums-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-albums.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-view-mode-gallery-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/_view-mode-gallery.css?ver=0.0.2" media="all">
|
||||
<link rel="stylesheet" id="tainacan-extra-viewmodes-bootstrap-grid-only-css" href="http://wp.lab/wp-content/plugins/tainacan-extra-view-modes/css/bootstrap-grid-only.min.css?ver=0.0.2" media="all">
|
||||
|
||||
|
||||
<!-- tainacan-url-metadata-type -->
|
||||
<link rel="stylesheet" id="TainacanURLPluginStyle-css" href="http://wp.lab/wp-content/plugins/tainacan-url-metadata-type/metadata_type/metadata-type.css?ver=0.0.5" media="all">
|
||||
|
||||
@@ -17065,6 +17354,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-guest-checkout-single-product/public/js/wc-guest-checkout-single-product-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wc-improved-guest-checkout -->
|
||||
<script src="http://wp.lab/wp-content/plugins/wc-improved-guest-checkout/assets/js/guestCheckout.js?ver=1.0" id="guestCheckout-js"></script>
|
||||
|
||||
|
||||
<!-- wc-product-videos -->
|
||||
<link rel="stylesheet" id="woocommerce-product-videos-css" href="http://wp.lab/wp-content/plugins/wc-product-videos/public/css/woocommerce-product-videos-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-product-videos/public/js/woocommerce-product-videos-public.js?ver=1.0.0"></script>
|
||||
@@ -18575,6 +18868,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-dropkick/public/js/wp-dropkick-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-dummy-content-generator -->
|
||||
<link rel="stylesheet" id="wp_dummy_content_generator-css" href="http://wp.lab/wp-content/plugins/wp-dummy-content-generator/public/css/wp_dummy_content_generator-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-dummy-content-generator/public/js/wp_dummy_content_generator-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-easter-egg -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-easter-egg/lib/wp-easter-egg.js?ver=2.0.6"></script>
|
||||
|
||||
@@ -18766,6 +19064,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-food/js/ex_s_lick/ex_s_lick.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-food-manager -->
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-food-manager/assets/js/common.min.js?ver=1.0.0" id="wp-food-manager-common-js"></script>
|
||||
|
||||
|
||||
<!-- wp-foundation-shortcodes -->
|
||||
<link rel="stylesheet" id="wp-foundation-shortcodes-css" href="http://wp.lab/wp-content/plugins/wp-foundation-shortcodes/stylesheets/app.css?ver=0.8.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-foundation-shortcodes/js/app.js?ver=0.8.5"></script>
|
||||
@@ -20356,6 +20658,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpcountdown/static/js/countdown.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- wpdirectorykit -->
|
||||
<link rel="stylesheet" id="wpdirectorykit-css" href="http://wp.lab/wp-content/plugins/wpdirectorykit/public/css/wpdirectorykit-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wpdirectorykit/public/js/wpdirectorykit-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpdownload -->
|
||||
<link rel="stylesheet" id="dwpl-data-css" href="http://wp.lab/wp-content/plugins/wpdownload/public/css/dwpl-data-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpdownload/public/js/dwpl-data-public.js?ver=1.0.0"></script>
|
||||
@@ -20633,6 +20940,14 @@
|
||||
<link rel="stylesheet" id="wsb-hub3-css" href="http://wp.lab/wp-content/plugins/wsb-hub3/public/css/wsb-hub3-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wskr-posts -->
|
||||
<link rel="stylesheet" id="wskrsnackbar-css" href="http://wp.lab/wp-content/plugins/wskr-posts/public/css/snackbar.css?ver=1.1.0" media="all">
|
||||
<link rel="stylesheet" id="wskr-css" href="http://wp.lab/wp-content/plugins/wskr-posts/public/css/wskr-public.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wskr-posts/public/js/js-cookie.js?ver=1.1.0" id="wskrjs-cookie-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wskr-posts/public/js/snackbar.js?ver=1.1.0" id="wskrsnackbar-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wskr-posts/public/js/wskr-public.js?ver=1.1.0" id="wskr-js"></script>
|
||||
|
||||
|
||||
<!-- wt-advanced-woocommerce-report -->
|
||||
<link rel="stylesheet" id="wt-advanced-woocommerce-report-css" href="http://wp.lab/wp-content/plugins/wt-advanced-woocommerce-report/public/css/wt-advanced-woocommerce-report-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wt-advanced-woocommerce-report/public/js/wt-advanced-woocommerce-report-public.js?ver=1.0.0"></script>
|
||||
@@ -20928,6 +21243,10 @@
|
||||
<link rel="stylesheet" id="zerowp-social-profiles-styles-css" href="http://wp.lab/wp-content/plugins/zerowp-social-profiles/assets/css/styles.css?ver=1.1.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- zhu-posts-icon-carousel -->
|
||||
<script src="http://wp.lab/wp-content/plugins/zhu-posts-icon-carousel/js/zhu-pic-1.js?ver=1.0.0" id="zhu_pic_1_js-js"></script>
|
||||
|
||||
|
||||
<!-- zi-hide-price-and-add-to-cart-for-woocommerce -->
|
||||
<link rel="stylesheet" id="zi-woo-hide-price-cart-css" href="http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/css/zi-woo-hide-price-cart-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/js/zi-woo-hide-price-cart-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
# Copyright (C) 2021 Tammersoft
|
||||
# This file is distributed under the same license as the Restrict Access plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Restrict Access 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/restrict-access-pro\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: 2021-02-06T10:19:06+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: restrict-access\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-ra-admin-main.php:14
|
||||
msgid "Restrict Access"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Restrict access to specific pages."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Tammersoft"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.tammersoft.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-ajax.php:23
|
||||
msgid "Protected"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:19
|
||||
msgid "Any kind of feedback is welcome. You may contact the author at"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:20
|
||||
msgid "Tip: After you have restricted the access to a page, open the link in an incognito window to see the behaviour."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:25
|
||||
msgid "How to use the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:28
|
||||
msgid "Below is a list of all pages on your site. If a page is green, all visitors have access to it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:32
|
||||
msgid "When you select \"Logged in\" from the dropdown, that page's status changes to \"Protected\" and it is accessible to logged in users only."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:55
|
||||
msgid "Page name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:63
|
||||
msgid "Page modified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:66
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-main.php:69
|
||||
msgid "Restrict access to"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ra-admin-walker.php:100
|
||||
msgid "Logged in"
|
||||
msgstr ""
|
||||
10
spec/fixtures/dynamic_finders/plugin_version/rollback-update-failure/change_log/CHANGELOG.md
vendored
Normal file
10
spec/fixtures/dynamic_finders/plugin_version/rollback-update-failure/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
[unreleased]
|
||||
|
||||
#### 0.5.0 / 2021-02-10
|
||||
* initial commit
|
||||
* use simpler hook for `extract_rollback`
|
||||
* update for `upgrader_install_package_result` filter and parameters passed
|
||||
* add text domain
|
||||
* update error message display
|
||||
* added filter `rollback_update_testing` to simulate a failure.
|
||||
* override filter if there's already a WP_Error
|
||||
@@ -0,0 +1,11 @@
|
||||
*** RSilitech postcode availability ***
|
||||
|
||||
|
||||
Version 1.0.3
|
||||
* "Delivery Time (in days)" has been updated
|
||||
|
||||
Version 1.0.2
|
||||
* "Change postcode button" in check availability section in frontend updated
|
||||
|
||||
Version 1.0.1
|
||||
* Initial release.
|
||||
@@ -0,0 +1,5 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 - 2021-01-12 =
|
||||
* Initial Release
|
||||
|
||||
693
spec/fixtures/dynamic_finders/plugin_version/smart-docs/translation_file/languages/smart-docs.pot
vendored
Normal file
693
spec/fixtures/dynamic_finders/plugin_version/smart-docs/translation_file/languages/smart-docs.pot
vendored
Normal file
@@ -0,0 +1,693 @@
|
||||
# Copyright (C) 2021 IdeaBox Creations
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Smart Docs 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/smart-docs\n"
|
||||
"POT-Creation-Date: 2021-02-09 13:04:48+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: classes/admin-settings.php:55 classes/admin-settings.php:56
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/admin-settings.php:63
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: classes/admin-settings.php:92 includes/template-functions.php:39
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/admin-settings.php:203
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: classes/admin-settings.php:207
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: classes/admin-settings.php:243
|
||||
msgid "You need to run `npm start` or `npm run build` first."
|
||||
msgstr ""
|
||||
|
||||
#: classes/admin-settings.php:305
|
||||
msgid "Visit Documentation (SmartDocs)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/ajax.php:91
|
||||
msgid "No documentation found."
|
||||
msgstr ""
|
||||
|
||||
#: classes/ajax.php:128
|
||||
msgid "Sorry, you've already voted."
|
||||
msgstr ""
|
||||
|
||||
#: classes/ajax.php:141
|
||||
msgid "Thanks for the vote!"
|
||||
msgstr ""
|
||||
|
||||
#: classes/blocks.php:53
|
||||
msgid "Smart Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: classes/breadcrumb.php:100
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/breadcrumb.php:187
|
||||
#. translators: %d: page number
|
||||
msgid "Page %d"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:65
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:66 classes/cpt.php:67
|
||||
msgid "Add New Doc"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:68
|
||||
msgid "View Doc"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:69
|
||||
msgid "Edit Doc"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:70
|
||||
msgid "All Docs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:71
|
||||
msgid "Search Docs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:72
|
||||
msgid "Parent Docs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:73
|
||||
msgid "No Docs found."
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:74
|
||||
msgid "No Docs found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:75
|
||||
msgid "New Doc Published."
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:76
|
||||
msgid "Doc post updated."
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:111 classes/cpt.php:113
|
||||
msgid "Docs Categories"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:112
|
||||
msgid "Doc Category"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:114 classes/cpt.php:115
|
||||
msgid "Parent category"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:116
|
||||
msgid "Edit Category"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:117
|
||||
msgid "Update Category"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:118
|
||||
msgid "Add New Docs Category"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:119
|
||||
msgid "New Docs Name"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:120 classes/cpt.php:258 classes/widgets/category.php:110
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:121
|
||||
msgid "Search Categories"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:255
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:283
|
||||
msgid "Upvotes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:286
|
||||
msgid "Downvotes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:426 classes/customizer/sections/hero-section.php:38
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:472 classes/cpt.php:527
|
||||
msgid "term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:478 classes/cpt.php:533
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:496 classes/cpt.php:537
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:503 classes/cpt.php:541
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:508 classes/cpt.php:546
|
||||
#. translators: %1$s for label.
|
||||
msgid "Add an image from media library to this %1$s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:15
|
||||
msgid "Docs Archive"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:31
|
||||
msgid "Show Articles"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:36
|
||||
#: classes/customizer/sections/breadcrumbs.php:37
|
||||
#: classes/customizer/sections/breadcrumbs.php:60
|
||||
#: classes/customizer/sections/single.php:36
|
||||
#: classes/customizer/sections/single.php:59
|
||||
#: classes/customizer/sections/single.php:99
|
||||
#: classes/customizer/sections/single.php:144
|
||||
#: classes/customizer/sections/single.php:166
|
||||
#: classes/customizer/sections/single.php:188
|
||||
#: classes/customizer/sections/single.php:211
|
||||
#: classes/customizer/sections/single.php:234
|
||||
#: templates/single-doc-feedback.php:34
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:37
|
||||
#: classes/customizer/sections/breadcrumbs.php:38
|
||||
#: classes/customizer/sections/breadcrumbs.php:61
|
||||
#: classes/customizer/sections/single.php:37
|
||||
#: classes/customizer/sections/single.php:60
|
||||
#: classes/customizer/sections/single.php:100
|
||||
#: classes/customizer/sections/single.php:145
|
||||
#: classes/customizer/sections/single.php:167
|
||||
#: classes/customizer/sections/single.php:189
|
||||
#: classes/customizer/sections/single.php:212
|
||||
#: classes/customizer/sections/single.php:235
|
||||
#: templates/single-doc-feedback.php:40
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:56
|
||||
msgid "Order By"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:61
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:62
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:63
|
||||
msgid "Term ID"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:64
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:65
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:81
|
||||
msgid "Sorting Order"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:86
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:87
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:109
|
||||
#: classes/customizer/sections/archive.php:137
|
||||
#: classes/customizer/sections/archive.php:165
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:193
|
||||
msgid "Spacing (px)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:220
|
||||
msgid "Category Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:242
|
||||
msgid "Category Title HTML Tag"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:243
|
||||
msgid "Select HTML tag for the category title."
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:248
|
||||
msgid "H2"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:249
|
||||
msgid "H3"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:250
|
||||
msgid "H4"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:251
|
||||
msgid "H5"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:252
|
||||
msgid "H6"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:271
|
||||
#: classes/customizer/sections/archive.php:294
|
||||
#: classes/customizer/sections/archive.php:317
|
||||
msgid "Category Title Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:340
|
||||
msgid "Category Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:365
|
||||
#: classes/customizer/sections/archive.php:388
|
||||
#: classes/customizer/sections/archive.php:411
|
||||
msgid "Category Description Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:434
|
||||
msgid "Category Description Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:456
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:461
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:462
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:463
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:503
|
||||
#: classes/customizer/sections/archive.php:526
|
||||
#: classes/customizer/sections/archive.php:549
|
||||
msgid "Category Action Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:572
|
||||
msgid "Category Action Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:597
|
||||
msgid "Category Action Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/archive.php:622
|
||||
msgid "Separator Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breadcrumbs.php:15
|
||||
msgid "Breadcrumbs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breadcrumbs.php:31
|
||||
msgid "Show on Single Doc"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breadcrumbs.php:32
|
||||
msgid "Show breadcrumbs on the single doc page."
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breadcrumbs.php:54
|
||||
msgid "Show on Taxonomy Archives"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breadcrumbs.php:55
|
||||
msgid "Show breadcrumbs on the taxonomy archives."
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breakpoints.php:15
|
||||
msgid "Breakpoints"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breakpoints.php:33
|
||||
msgid "Medium/Tablet (px)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/breakpoints.php:55
|
||||
msgid "Small/Mobile (px)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:15
|
||||
msgid "Hero Section"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:31
|
||||
msgid "Background Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:32
|
||||
msgid "Select background type."
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:37
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:57
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:81
|
||||
msgid "Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:101
|
||||
msgid "Overlay Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:126
|
||||
msgid "Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/hero-section.php:151
|
||||
msgid "Description Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:15
|
||||
msgid "Docs Single"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:31
|
||||
msgid "Show Table of Contents"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:53
|
||||
msgid "Collapsible Table of Contents"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:54
|
||||
msgid ""
|
||||
"Enable to make Table of Contents collapsible on click and by default when "
|
||||
"document is loaded."
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:76
|
||||
msgid "Table of Contents Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:94
|
||||
msgid "Show Print Button"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:116
|
||||
msgid "Show Meta Data"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:121
|
||||
msgid "After Content"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:122
|
||||
msgid "After Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:123
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:139
|
||||
msgid "Show Action Content"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:161
|
||||
msgid "Show Feedback Content"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:183
|
||||
msgid "Show Related Articles"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:205
|
||||
msgid "Show Anchor Links"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:206
|
||||
msgid "Add anchor links to headings in content for readers to easily share them."
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:228
|
||||
msgid "Show Navigation Links"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer/sections/single.php:229
|
||||
msgid ""
|
||||
"Add navigation links for readers to access the next or previous article "
|
||||
"easily."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Smart Docs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/customizer.php:59
|
||||
msgid "Controls the layout and elements of SmartDocs frontend."
|
||||
msgstr ""
|
||||
|
||||
#: classes/plugin.php:194 classes/plugin.php:207
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: classes/widget.php:31
|
||||
msgid "Smart Docs Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widget.php:33
|
||||
msgid "Widgets in this area will be shown on all single docs and category pages."
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:29
|
||||
msgid "Smart Docs - Categories"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:31
|
||||
msgid "Widget to display list of docs categories."
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:72
|
||||
msgid "Select Category"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:128
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:135
|
||||
msgid "Display as dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:139
|
||||
msgid "Show post count"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:143
|
||||
msgid "Show empty categories"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/category.php:147
|
||||
msgid "Show hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/template-functions.php:204
|
||||
msgid "Table of Contents"
|
||||
msgstr ""
|
||||
|
||||
#: includes/template-functions.php:286
|
||||
msgid "Print this Document"
|
||||
msgstr ""
|
||||
|
||||
#: smart-docs.php:68
|
||||
#. translators: %s: PHP version
|
||||
msgid "SmartDocs requires PHP version %s+, plugin is currently NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#: smart-docs.php:85
|
||||
#. translators: %s: WordPress version
|
||||
msgid ""
|
||||
"SmartDocs requires WordPress version %s+. Because you are using an earlier "
|
||||
"version, the plugin is currently NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#: templates/archive-smart-docs.php:47
|
||||
msgid ""
|
||||
"Not yet started. Add some categories to see them on the SmartDocs Archive "
|
||||
"Page."
|
||||
msgstr ""
|
||||
|
||||
#: templates/categories.php:59
|
||||
msgid "Article"
|
||||
msgid_plural "Articles"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: templates/categories.php:63
|
||||
msgid "View All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/related-articles.php:23
|
||||
msgid "Related Articles"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-form.php:23
|
||||
msgid "Search for answers"
|
||||
msgstr ""
|
||||
|
||||
#: templates/sidebar.php:30
|
||||
msgid ""
|
||||
"This is Smart Docs Sidebar. You can add Categories widget or edit the "
|
||||
"content that appears here by visting <a href=\"%s\">Widgets panel</a>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-doc-actions.php:23
|
||||
msgid "Not the solution you are looking for?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-doc-actions.php:28
|
||||
#. translators: %1$s denotes docs page link and %2$s denotes support page link.
|
||||
msgid ""
|
||||
"Please check other <a href=\"%1$s\">articles</a> or open a <a "
|
||||
"href=\"%2$s\">support ticket</a>."
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-doc-feedback.php:26 templates/single-doc-feedback.php:27
|
||||
msgid "No votes yet"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-doc-feedback.php:26
|
||||
msgid "%d person found this useful"
|
||||
msgid_plural "%d persons found this useful"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: templates/single-doc-feedback.php:27
|
||||
msgid "%d person found this not useful"
|
||||
msgid_plural "%d persons found this not useful"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: templates/single-doc-feedback.php:31
|
||||
msgid "Was this article helpful to you?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-doc-meta.php:21
|
||||
msgid "Updated on %s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpsmartdocs.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Knowledge Base and Documentation plugin for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "IdeaBox Creations"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://ideabox.io/"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:61
|
||||
msgctxt "Post type general name"
|
||||
msgid "Smart Docs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:62
|
||||
msgctxt "Post type singular name"
|
||||
msgid "Smart Doc"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:63
|
||||
msgctxt "Admin Menu text"
|
||||
msgid "Smart Docs"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:64
|
||||
msgctxt "Admin Menu Toolbar text"
|
||||
msgid "Doc"
|
||||
msgstr ""
|
||||
|
||||
#: classes/cpt.php:226
|
||||
msgctxt "slug"
|
||||
msgid "uncategorized"
|
||||
msgstr ""
|
||||
|
||||
#: includes/shortcode.php:22
|
||||
msgctxt "placeholder"
|
||||
msgid "Search for answers.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/shortcode.php:25
|
||||
msgctxt "text for input title attribute"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,30 @@
|
||||
= Version 1.2.5 =
|
||||
* Fixed minor bugs
|
||||
|
||||
= Version 1.2.4 =
|
||||
* Added PE ID while sending SMS
|
||||
|
||||
= Version 1.2.3 =
|
||||
* Added International SMS Support.
|
||||
* Added Unicode SMS Support.
|
||||
* Added Flash SMS Support.
|
||||
* Few improvements.
|
||||
|
||||
= Version 1.2.1 =
|
||||
* Fixed SMS Check balance bug.
|
||||
|
||||
= Version 1.2.1 =
|
||||
* Fixed SMS Check balance bug.
|
||||
* Few improvements.
|
||||
|
||||
=======
|
||||
= Version 1.2.1 =
|
||||
* Fixed SMS Check balance bug.
|
||||
* Few improvements.
|
||||
|
||||
= Version 1.2 =
|
||||
* Added functionality to check SMS balance, change account password.
|
||||
|
||||
|
||||
= Version 1.1 =
|
||||
* New Version released.
|
||||
@@ -0,0 +1,279 @@
|
||||
# Copyright (C) 2021 oacsTudio
|
||||
# This file is distributed under the same license as the Solid Post Likes plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Solid Post Likes 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/solid-post-"
|
||||
"likes\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: English (United States)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-13 19:16+0100\n"
|
||||
"PO-Revision-Date: 2021-01-13 18:23+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: oaspl\n"
|
||||
"\n"
|
||||
"Language: en_US\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Loco-Version: 2.5.0; wp-5.6"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Solid Post Likes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://oacstudio.de"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A like button for all post types. Lightweight and flexible."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "oacsTudio"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/SolidPostLikesProcess.php:21
|
||||
msgid "<h3>Session expired. Please login again or reload the page.</h3>"
|
||||
msgstr ""
|
||||
|
||||
#: solid-post-likes.php:24
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:55
|
||||
msgid "oacs SPL"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:59
|
||||
msgid "Likes"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:60
|
||||
msgid "Enable Likes"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:62
|
||||
msgid ""
|
||||
"Masterswitch. Uncheck this to disable likes completely. Likes can also be "
|
||||
"toggled per post."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:63
|
||||
msgid "Enable Likes for the following Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:65
|
||||
msgid ""
|
||||
"You can choose which posts should display likes selectively. <br>If you only "
|
||||
"want to use the shortcode for displaying likes, select no post types here. "
|
||||
"<br>Shortcode usage: <code>[oacsspl]</code>"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:67
|
||||
msgid "Like Position in Posts and Comments"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:70
|
||||
msgid "top"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:71
|
||||
msgid "bottom"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:74
|
||||
msgid ""
|
||||
"Top = Likes display before main post content / comment. <br> Bottom = Likes "
|
||||
"display after main post content / comment. Note that the main post content "
|
||||
"is everything before the <code>!--more-</code> tag"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:75
|
||||
msgid "Enable Comment Likes"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:77
|
||||
msgid ""
|
||||
"When active, comments will display regardless of whether post likes are "
|
||||
"active."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:78
|
||||
msgid "Show Like Count"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:80
|
||||
msgid ""
|
||||
"Displays the amount of likes as number next to the like icon in the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:81
|
||||
msgid "Show Liked Posts in Backend User Profile"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:83
|
||||
msgid ""
|
||||
"Displays all liked post of a user in the backend profile: <code>/wp-"
|
||||
"admin/profile.php</code> "
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:84
|
||||
msgid "Show Like Text"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:85
|
||||
msgid ""
|
||||
"This text displays after the like counter if the post is currently unliked."
|
||||
"<br><b>Format:</b>A-Z,0-9, spaces and <code>_!?-:.,</code> are allowed."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:90
|
||||
msgid "Show Unlike Text"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:91
|
||||
msgid "This text displays after the like counter if the post is liked."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:99
|
||||
msgid "Button Style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:100
|
||||
msgid "Liked Icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:103
|
||||
msgid "Like Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:105
|
||||
msgid "Like Icon Padding"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:106 views/SolidPostLikesAdmin.php:130
|
||||
msgid ""
|
||||
"Use this to manually align icons. <code>10px 12px 14px 16px</code><br> "
|
||||
"translates to: <br>padding-top: 10px;<br>\n"
|
||||
"\t\t\t\tpadding-right: 12px;<br>\n"
|
||||
"\t\t\t\tpadding-bottom: 14px;<br>\n"
|
||||
"\t\t\t\tpadding-left: 16px;<br>"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:117
|
||||
msgid "Like Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:118 views/SolidPostLikesAdmin.php:142
|
||||
#: views/SolidPostLikesAdmin.php:165 views/SolidPostLikesAdmin.php:182
|
||||
#: views/SolidPostLikesAdmin.php:199
|
||||
msgid "Enter size in px or em: i.e. <code>1em</code> or <code>12px</code>."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:124
|
||||
msgid "Unliked Icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:127
|
||||
msgid "Unlike Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:129
|
||||
msgid "Unlike Icon Padding"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:141
|
||||
msgid "Unlike Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:151
|
||||
msgid "Text Style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:152
|
||||
msgid "Counter Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:155 views/SolidPostLikesAdmin.php:172
|
||||
#: views/SolidPostLikesAdmin.php:189
|
||||
msgid ""
|
||||
"Use this to manually align the counter. <code>10px 12px 14px 16px</code><br> "
|
||||
"translates to: <br>padding-top: 10px;<br>\n"
|
||||
"\t\t\t\tpadding-right: 12px;<br>\n"
|
||||
"\t\t\t\tpadding-bottom: 14px;<br>\n"
|
||||
"\t\t\t\tpadding-left: 16px;<br>"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:206
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:211
|
||||
msgid "Set Like Position via Hook for Posts"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:212
|
||||
msgid ""
|
||||
"You can place the likes by entering a theme action hook manually here "
|
||||
"instead of using \"Top\" or \"Bottom\". <br>If this is empty: <code>"
|
||||
"the_content</code> is used to append / prepend the likes."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:216
|
||||
msgid "Set Like Position via Hook for WooCommerce Products"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:217
|
||||
msgid ""
|
||||
"You can place the WooCommerce likes by entering a theme action hook manually "
|
||||
"here instead of using. <br>If this is empty: <code>"
|
||||
"woocommerce_single_product_summary</code> is used."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:226
|
||||
msgid ""
|
||||
"Enter one (not multiple) post ID number to target a post.<br><strong>"
|
||||
"Format</strong>: Number."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:232
|
||||
msgid "Enter desired new like count. <br><strong>Format</strong>: Number."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:240
|
||||
msgid "Deinstallation"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:243
|
||||
msgid ""
|
||||
"Enable this to delete all plugin data on plugin removal. Plugin deactivation "
|
||||
"will keep all data."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:251
|
||||
msgid "Per Post Like"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesAdmin.php:257
|
||||
msgid "Enable / Disable Like for this post and post comments."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesPostList.php:38 views/SolidPostLikesUserProfile.php:48
|
||||
msgid "You do not like anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesPublic.php:87
|
||||
msgid "Unlike"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesPublic.php:93
|
||||
msgid "Like"
|
||||
msgstr ""
|
||||
|
||||
#: views/SolidPostLikesUserProfile.php:20
|
||||
msgid "You Like:"
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/spatie-ray/change_log/CHANGELOG.md
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/spatie-ray/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to `wordpress-ray` will be documented in this file.
|
||||
|
||||
## 1.1.0 - 2021-01-14
|
||||
|
||||
- upgrade `Ray` to 1.9.1
|
||||
|
||||
## 1.0.3 - 2021-01-13
|
||||
|
||||
- improve production check
|
||||
|
||||
## 1.0.2 - 2021-01-13
|
||||
|
||||
- fix tagging issues
|
||||
|
||||
## 1.0.1 - 2021-01-13
|
||||
|
||||
- fix zip
|
||||
|
||||
## 1.0.0 - 2021-01-13
|
||||
|
||||
- stable release
|
||||
298
spec/fixtures/dynamic_finders/plugin_version/texty/translation_file/languages/texty.pot
vendored
Normal file
298
spec/fixtures/dynamic_finders/plugin_version/texty/translation_file/languages/texty.pot
vendored
Normal file
@@ -0,0 +1,298 @@
|
||||
# Copyright (c) 2021 weDevs Pte. Ltd. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Texty 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/weDevsOfficial/texty/issues\n"
|
||||
"Last-Translator: support@wedevs.com\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: 2021-01-22T10:29:12+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: texty\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/Admin/Menu.php:26
|
||||
#: includes/Admin/Menu.php:27
|
||||
msgid "Texty"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/texty/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "SMS Notification for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "weDevs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wedevs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Profile.php:28
|
||||
msgid "Phone Number (Texty)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Send.php:35
|
||||
#: includes/Api/Tools.php:35
|
||||
msgid "The to phone number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Send.php:40
|
||||
msgid "The message to be sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:127
|
||||
msgid "The selected gateway"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Clickatell.php:25
|
||||
msgid "Clickatell"
|
||||
msgstr ""
|
||||
|
||||
#. translators: URL to Twilio settings and help docs
|
||||
#: includes/Gateways/Clickatell.php:36
|
||||
msgid "Send SMS with Clickatell. Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the API. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Clickatell.php:64
|
||||
#: includes/Gateways/Vonage.php:64
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Fake.php:20
|
||||
msgid "Fake Gateway"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Fake.php:29
|
||||
msgid "This is a fake gateway that logs the messages to <code>debug.log</code> file without sending the actual SMS."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:25
|
||||
msgid "Plivo"
|
||||
msgstr ""
|
||||
|
||||
#. translators: URL to Plivo settings and help docs
|
||||
#: includes/Gateways/Plivo.php:36
|
||||
msgid "Send SMS with Plivo. Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the Auth ID and Token from Plivo. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:64
|
||||
msgid "Auth ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:70
|
||||
#: includes/Gateways/Twilio.php:70
|
||||
msgid "Auth Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:76
|
||||
#: includes/Gateways/Twilio.php:76
|
||||
#: includes/Gateways/Vonage.php:76
|
||||
msgid "From Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:79
|
||||
msgid "Must be a valid number associated with your Plivo account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Twilio.php:25
|
||||
msgid "Twilio"
|
||||
msgstr ""
|
||||
|
||||
#. translators: URL to Twilio settings and help docs
|
||||
#: includes/Gateways/Twilio.php:36
|
||||
msgid "Send SMS with Twilio. Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the Account SID and Token from Twilio. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Twilio.php:64
|
||||
msgid "Account SID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Twilio.php:79
|
||||
msgid "Must be a valid number associated with your Twilio account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Vonage.php:25
|
||||
msgid "Vonage (nexmo)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Vonage dashboard settings URL and help docs
|
||||
#: includes/Gateways/Vonage.php:45
|
||||
msgid "Send SMS with Vonage (formerly Nexmo). Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the API Key and Secret from Vonage. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Vonage.php:70
|
||||
msgid "API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications.php:83
|
||||
msgid "WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications.php:88
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications.php:93
|
||||
msgid "Dokan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/Dokan/CompleteVendor.php:11
|
||||
msgid "Vendor - When Order Status is Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/Dokan/ProcessingVendor.php:11
|
||||
msgid "Vendor - When Order Status is Processing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/CompleteAdmin.php:11
|
||||
msgid "Admin - When Order Status is Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/CompleteCustomer.php:11
|
||||
msgid "Customer - When Order Status is Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/HoldCustomer.php:11
|
||||
msgid "Customer - When Order Status is On Hold"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/ProcessingAdmin.php:11
|
||||
msgid "Admin - When Order Status is Processing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/ProcessingCustomer.php:11
|
||||
msgid "Customer - When Order Status is Processing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WP/Comment.php:18
|
||||
msgid "New Comment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WP/Registration.php:18
|
||||
msgid "New User Registration"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Header.js:35
|
||||
#: src/components/Header.js:38
|
||||
msgid "Gateway Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Header.js:44
|
||||
#: src/components/Header.js:47
|
||||
#: src/pages/Notifications.js:90
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Header.js:53
|
||||
#: src/components/Header.js:56
|
||||
#: src/pages/Tools.js:15
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:35
|
||||
msgid "active"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:35
|
||||
msgid "inactive"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:41
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:52
|
||||
msgid "Select one or multiple user roles. Users with phone number in their profile will receive the text"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:78
|
||||
#: src/components/QuickSend.js:58
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:86
|
||||
msgid "You may use these variables: "
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:29
|
||||
#: src/components/TestMessage.js:27
|
||||
msgid "Message has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:32
|
||||
#: src/components/TestMessage.js:30
|
||||
msgid "Error, message could not be sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:49
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:60
|
||||
msgid "Write your message..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:68
|
||||
#: src/components/TestMessage.js:59
|
||||
msgid "Sending..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:68
|
||||
msgid "Send Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Status.js:33
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Status.js:33
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/TestMessage.js:47
|
||||
msgid "Test Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/TestMessage.js:52
|
||||
msgid "Enter a phone number to test the SMS sending."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/TestMessage.js:59
|
||||
msgid "Send Test"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:75
|
||||
msgid "Changes have been saved"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:92
|
||||
msgid "Enable or disable notification based on different events."
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:113
|
||||
msgid "Plugin not installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:151
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:151
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Tools.js:22
|
||||
msgid "Test Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Tools.js:30
|
||||
msgid "Quick Send"
|
||||
msgstr ""
|
||||
321
spec/fixtures/dynamic_finders/plugin_version/th-reviews-bar/translation_file/lang/thrb-de_DE.po
vendored
Normal file
321
spec/fixtures/dynamic_finders/plugin_version/th-reviews-bar/translation_file/lang/thrb-de_DE.po
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
# Copyright (C) 2021 triopsi
|
||||
# This file is distributed under the same license as the TH Reviews Bar plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TH Reviews Bar 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/th-reviews-bar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-09T12:22:00+01:00\n"
|
||||
"PO-Revision-Date: 2021-02-09 12:47+0100\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: thrb\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TH Reviews Bar"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.wiki.profoxi.de"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple reviews plugin. Create and display reviews on your site or posts. Includes: Widget"
|
||||
msgstr "Ein einfacher Bewertungs Plugin. Erstelle und zeige Bewertungen auf deiner Seite oder in deinen Beiträgen. Inklusiv: Widget"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "triopsi"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://wiki.profoxi.de"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-help.php:30
|
||||
msgid "How It Works"
|
||||
msgstr "Wie es funktioniert"
|
||||
|
||||
#: inc/thrb-help.php:31 inc/thrb-setting.php:186
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: inc/thrb-help.php:54
|
||||
msgid "How It Works - Display and shortcode"
|
||||
msgstr "Wie es funktioniert - Übersicht aller Shortcodes"
|
||||
|
||||
#: inc/thrb-help.php:62
|
||||
msgid "Geeting Started with TH Review Bar"
|
||||
msgstr "Erste Schritte mit TH Reviews Bar"
|
||||
|
||||
#: inc/thrb-help.php:66
|
||||
msgid "Step 1. Go to \"All Reviews --> Add New Review\""
|
||||
msgstr "Schritt 1. Gehe auf \"Alle Bewertungen --> Neue Bewertung hinzufügen\""
|
||||
|
||||
#: inc/thrb-help.php:67
|
||||
msgid "Step 2. Add Review title, a Review image under the featured image section and rating the review."
|
||||
msgstr "Schritt 2. Füge ein Titel, ein Bewertungsbild unter dem Bereich Beitragsbild und bewerte die Bewertung."
|
||||
|
||||
#: inc/thrb-help.php:68
|
||||
msgid "Step 3a. Copy-paste the shortcode <span class=\"thrb-shortcode-preview\">[thrb]</span> anywhere in your post or site for show a list of reviews"
|
||||
msgstr "Schritt 3a. Kopiere und füge den Shortcode <span class=\"thrb-shortcode-preview\">[thrb]</span>, für eine liste von Bewertungen, überall auf deiner Seite ein"
|
||||
|
||||
#: inc/thrb-help.php:69
|
||||
msgid "or"
|
||||
msgstr "oder"
|
||||
|
||||
#: inc/thrb-help.php:70
|
||||
msgid "Step 3b. Copy-paste the shortcode <span class=\"thrb-shortcode-preview\">[thrb reviewid=\"<id>\"]</span> anywhere in your post or site for show a single review"
|
||||
msgstr "Schritt 3b. Kopiere und füge den Shortcode <span class=\"thrb-shortcode-preview\">[thrb reviewid=\"<id>\"]</span>, für eine Einzelansicht, überall auf deiner Seite ein"
|
||||
|
||||
#: inc/thrb-help.php:77
|
||||
msgid "All Shortcodes"
|
||||
msgstr "Alle Shortcodes"
|
||||
|
||||
#: inc/thrb-help.php:80
|
||||
msgid "Default shortcode. Show reviews in a list"
|
||||
msgstr "Standard Shortcode. Zeigt alle Bewertungen in einer Liste"
|
||||
|
||||
#: inc/thrb-help.php:81
|
||||
msgid "show a single review"
|
||||
msgstr "Zeigt eine einzelne Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:87
|
||||
msgid "All Shortcodes parameters"
|
||||
msgstr "Alle Shortcode Parameter"
|
||||
|
||||
#: inc/thrb-help.php:90 inc/thrb-widget.php:74
|
||||
msgid "Show random reviews instead of sorted by date"
|
||||
msgstr "Zeige zufällige Bewertungen, anstatt sortiert nach Datum, an"
|
||||
|
||||
#: inc/thrb-help.php:91 inc/thrb-widget.php:69
|
||||
msgid "Images have a round radios"
|
||||
msgstr "Bild hat runde Ecken"
|
||||
|
||||
#: inc/thrb-help.php:92
|
||||
msgid "sort the Review in ascending or descending order. Value=asc or desc"
|
||||
msgstr "Sortieren Sie die Bwertungen in aufsteigender oder absteigender Reihenfolge. Value=asc oder desc"
|
||||
|
||||
#: inc/thrb-help.php:93 inc/thrb-widget.php:108
|
||||
msgid "Show stars on review"
|
||||
msgstr "Zeige Sterne in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:94 inc/thrb-widget.php:113
|
||||
msgid "Show the title of the review"
|
||||
msgstr "Zeige Titel in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:95 inc/thrb-widget.php:103
|
||||
msgid "Show author name on review"
|
||||
msgstr "Zeige Authornamen in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:96 inc/thrb-widget.php:118
|
||||
msgid "Show the descriptions of review"
|
||||
msgstr "Zeige die Beschreibung in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:97 inc/thrb-widget.php:95
|
||||
msgid "Number of reviews to show"
|
||||
msgstr "Anzahl der angezeigten Bewertungen"
|
||||
|
||||
#: inc/thrb-help.php:97
|
||||
msgid "-1 to show all reviews."
|
||||
msgstr "-1 zeigt alle Bewertungen an."
|
||||
|
||||
#: inc/thrb-help.php:98 inc/thrb-widget.php:123
|
||||
msgid "HTML or text before the random review"
|
||||
msgstr "HTML oder Text vor der zufälligen Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:99 inc/thrb-widget.php:130
|
||||
msgid "HTML or text after the random review"
|
||||
msgstr "HTML oder Text nach der zufälligen Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:100
|
||||
msgid "e.g."
|
||||
msgstr "z.B."
|
||||
|
||||
#: inc/thrb-help.php:107
|
||||
msgid "Widget"
|
||||
msgstr "Widget"
|
||||
|
||||
#: inc/thrb-help.php:110
|
||||
msgid "Use the widget to insert a list of reviews in your page or post."
|
||||
msgstr "Benutze das Widget für das hinzufügen einer Bewertungsliste auf deiner Seite oder Beitrag."
|
||||
|
||||
#: inc/thrb-help.php:118
|
||||
msgid "Need Support?"
|
||||
msgstr "Brauchst du Support?"
|
||||
|
||||
#: inc/thrb-help.php:121
|
||||
msgid "Check plugin document for shortcode parameters."
|
||||
msgstr "Checke die Plugin Dokumentation für Shortcodes Parameters."
|
||||
|
||||
#: inc/thrb-help.php:122
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#: inc/thrb-help.php:123 inc/thrb-setting.php:185
|
||||
msgid "Donate"
|
||||
msgstr "Spende"
|
||||
|
||||
#: inc/thrb-help.php:129
|
||||
msgid "Used libraries"
|
||||
msgstr "Benutzte Bibliotheken"
|
||||
|
||||
#: inc/thrb-post-metabox.php:28
|
||||
msgid "Review details"
|
||||
msgstr "Bewertungsdetails"
|
||||
|
||||
#: inc/thrb-post-metabox.php:56
|
||||
msgid "Author name"
|
||||
msgstr "Authornamen"
|
||||
|
||||
#: inc/thrb-post-metabox.php:58
|
||||
msgid "e.g. Max"
|
||||
msgstr "z.B. Max"
|
||||
|
||||
#: inc/thrb-post-metabox.php:61
|
||||
msgid "Rating"
|
||||
msgstr "Bewertung"
|
||||
|
||||
#: inc/thrb-setting.php:36
|
||||
msgid "Color shema"
|
||||
msgstr "Farbschema"
|
||||
|
||||
#: inc/thrb-setting.php:44
|
||||
msgid "Choose a color for bottom border:"
|
||||
msgstr "Wähle eine Farbe für den unteren Rand aus:"
|
||||
|
||||
#: inc/thrb-setting.php:61
|
||||
msgid "Use Font Awesome CDN?"
|
||||
msgstr "Font Awesome CDN benutzen?"
|
||||
|
||||
#: inc/thrb-setting.php:78
|
||||
msgid "This color will use for the review section"
|
||||
msgstr "Diese Farbe wird für die Bewertungsseite benutzt"
|
||||
|
||||
#: inc/thrb-setting.php:87
|
||||
msgid "Want to use the CDN for Font Awesome Icons?"
|
||||
msgstr "Möchtest du die CDN für Font Awesome Icons benutzen?"
|
||||
|
||||
#. translators: %s is replaced with the link
|
||||
#: inc/thrb-setting.php:96
|
||||
msgid "By default the plugin used and needed the font awesome icon libary(%s)."
|
||||
msgstr "Standardmäßig braucht und nutzt das Plugin die Font Awesome Icons Bibliothek(%s)."
|
||||
|
||||
#: inc/thrb-setting.php:126
|
||||
msgid "yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: inc/thrb-setting.php:128
|
||||
msgid "no"
|
||||
msgstr "Nein"
|
||||
|
||||
#: inc/thrb-setting.php:141 inc/thrb-setting.php:142
|
||||
msgid "TH Reviews Options"
|
||||
msgstr "TH Reviews Einstellungen"
|
||||
|
||||
#: inc/thrb-setting.php:176
|
||||
msgid "Save Settings"
|
||||
msgstr "Speicher Einstellungen"
|
||||
|
||||
#: inc/thrb-setting.php:183
|
||||
msgid "Supports"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-setting.php:193
|
||||
msgid "Debug information"
|
||||
msgstr "Debuginformationen"
|
||||
|
||||
#: inc/thrb-setting.php:194
|
||||
msgid "You are seeing this because your WP_DEBUG variable is set to true."
|
||||
msgstr "Du siehst diesen Bereich, weil du in deiner Konfig-Datei die Variable DEBUG auf true gesetzt hast."
|
||||
|
||||
#: inc/thrb-types.php:37
|
||||
msgid "TH Review"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-types.php:38
|
||||
msgid "Review"
|
||||
msgstr "Bewertung"
|
||||
|
||||
#: inc/thrb-types.php:39 inc/thrb-types.php:40
|
||||
msgid "TH Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-types.php:41 inc/thrb-types.php:42
|
||||
msgid "Add New Review"
|
||||
msgstr "Neue Bewertung hinzufügen"
|
||||
|
||||
#: inc/thrb-types.php:43
|
||||
msgid "New Review"
|
||||
msgstr "Neue Bewertung"
|
||||
|
||||
#: inc/thrb-types.php:44
|
||||
msgid "Edit Review"
|
||||
msgstr "Bewertung bearbeiten"
|
||||
|
||||
#: inc/thrb-types.php:45
|
||||
msgid "View Review"
|
||||
msgstr "Bewertung anzeigen"
|
||||
|
||||
#: inc/thrb-types.php:46
|
||||
msgid "All Reviews"
|
||||
msgstr "Alle Bewertungen"
|
||||
|
||||
#: inc/thrb-types.php:47
|
||||
msgid "Search Review"
|
||||
msgstr "Suche Bewertung"
|
||||
|
||||
#: inc/thrb-types.php:48
|
||||
msgid "No Reviews found."
|
||||
msgstr "Keine Bewertungen gefunden."
|
||||
|
||||
#: inc/thrb-types.php:49
|
||||
msgid "No Reviews found in Trash."
|
||||
msgstr "Keine Bewertungen im Papierkorb gefunden."
|
||||
|
||||
#: inc/thrb-types.php:88 inc/thrb-types.php:89
|
||||
msgid "Review updated."
|
||||
msgstr "Bewertung aktualisiert."
|
||||
|
||||
#: inc/thrb-types.php:90
|
||||
msgid "Review published."
|
||||
msgstr "Bewertung veröffentlicht."
|
||||
|
||||
#: inc/thrb-types.php:91
|
||||
msgid "Reviews saved."
|
||||
msgstr "Bewertungen gespeichert."
|
||||
|
||||
#: inc/thrb-types.php:92
|
||||
msgid "Reviews draft updated."
|
||||
msgstr "Bewertungsentwürfe aktualisiert."
|
||||
|
||||
#: inc/thrb-types.php:130
|
||||
msgid "Review name"
|
||||
msgstr "Bewertungsnamen"
|
||||
|
||||
#: inc/thrb-widget.php:29
|
||||
msgid "TH Review Panel"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-widget.php:32
|
||||
msgid "Widget for the Plugin TH Reviews Bar"
|
||||
msgstr "Widget für das Plugin TH Reviews Bar"
|
||||
|
||||
#: inc/thrb-widget.php:79
|
||||
msgid "Sorted by"
|
||||
msgstr "Sortieren nach"
|
||||
|
||||
#: inc/thrb-widget.php:89
|
||||
msgid "ascending order from newest to oldest date"
|
||||
msgstr "Aufsteigende Reihenfolge vom neuesten zum ältesten Datum"
|
||||
|
||||
#: inc/thrb-widget.php:90
|
||||
msgid "descending order from oldest to newest date"
|
||||
msgstr "Absteigende Reihenfolge vom ältesten zum neuesten Datum"
|
||||
|
||||
#: inc/thrb-widget.php:98
|
||||
msgid "to show all reviews."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "vie-faq",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"description": "FAQ Collapsible Dropdown Gutenberg Block",
|
||||
"author": "AUTbite OG",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"block"
|
||||
],
|
||||
"main": "build/index.js",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^9.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
}
|
||||
}
|
||||
824
spec/fixtures/dynamic_finders/plugin_version/wowrestro/translation_file/languages/wowrestro.pot
vendored
Normal file
824
spec/fixtures/dynamic_finders/plugin_version/wowrestro/translation_file/languages/wowrestro.pot
vendored
Normal file
@@ -0,0 +1,824 @@
|
||||
# Copyright (C) 2021 MagniGenie
|
||||
# This file is distributed under the same license as the WOWRestro plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WOWRestro 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wowrestro\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: 2021-02-08T12:35:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wowrestro\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/admin/class-wowrestro-admin-menus.php:37
|
||||
msgid "WOWRestro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WOWRestro is an Ordering system for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MagniGenie"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-assets.php:73
|
||||
msgid "wowrestro"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-settings.php:75
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-settings.php:324
|
||||
msgid "Upload File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-settings.php:557
|
||||
msgid "Select a page…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin.php:138
|
||||
#: includes/class-wowrestro-services.php:205
|
||||
#: includes/class-wowrestro-services.php:220
|
||||
#: includes/class-wowrestro-services.php:234
|
||||
#: includes/class-wowrestro-services.php:424
|
||||
msgid "Service Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin.php:139
|
||||
msgid "Service Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:25
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:38
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:42
|
||||
msgid "General Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:49
|
||||
msgid "Override Shop Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:50
|
||||
msgid "Change WooCommerce default shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:55
|
||||
msgid "Use Default Shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:56
|
||||
msgid "Show Only WOWRestro item on shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:57
|
||||
msgid "Remove WOWRestro items from shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:63
|
||||
msgid "Shop Sales type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:64
|
||||
msgid "Choose what you want to sale on your website."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:69
|
||||
msgid "Sale all types of product."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:70
|
||||
msgid "Sale only WOWRestro item."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:76
|
||||
msgid "Veg / Non Veg option for WOWRestro items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:77
|
||||
msgid "Check this box if you want to include veg / non veg option to your WOWRestro items."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:84
|
||||
msgid "Exclude Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:85
|
||||
msgid "This would exclude the categories from the frontend categories menu and items under those."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:94
|
||||
msgid "Exclude Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:95
|
||||
msgid "This would exclude the products from the frontend items."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:25
|
||||
msgid "Misc"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:71
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:77
|
||||
msgid "Include Other Product Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:78
|
||||
msgid "Keep other product options like <i>Grouped</i>, <i>External</i>, <i>Virtual</i> etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:85
|
||||
msgid "Purge Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:86
|
||||
msgid "Remove WoWRestro data when plugin is deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:27
|
||||
msgid "Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:45
|
||||
msgid "Notification Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:52
|
||||
msgid "Enable Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:55
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:56
|
||||
msgid "Enable push notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:61
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:62
|
||||
msgid "Enter notification title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:68
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:76
|
||||
msgid "Notification sound"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:77
|
||||
msgid "Select mp3 file for the notification sound.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:83
|
||||
msgid "Play notification sound in loop"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:84
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:88
|
||||
msgid "Enable this if you want the notificaiton sound to not stop until the notification duration."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:92
|
||||
msgid "Notification Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:93
|
||||
msgid "Select an image to use as the notification icon."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:99
|
||||
msgid "Notification Length"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:100
|
||||
msgid "Time in seconds, \"0\" = Default notification length"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:25
|
||||
msgid "Services"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:39
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:98
|
||||
msgid "Pickup Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:40
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:186
|
||||
msgid "Delivery Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:87
|
||||
msgid "Pickup Service is <b><i>Enabled</i></b> by default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:105
|
||||
msgid "Enable Pickup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:108
|
||||
msgid "Enable Pickup Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:113
|
||||
msgid "Pickup Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:116
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:325
|
||||
#: includes/wowrestro-core-functions.php:1004
|
||||
msgid "Pickup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:120
|
||||
msgid "Pickup Time Interval"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:124
|
||||
msgid "Enter pickup time interval in mins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:133
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:221
|
||||
msgid "Minimum Order Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:136
|
||||
msgid "Minimum order amount for pickup service."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:140
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:230
|
||||
msgid "Minimum Order Amount Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:144
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:234
|
||||
msgid "Minimum order price for {service_type} is {min_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:145
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:235
|
||||
msgid "Error message for minimum order amount. You can use variable {service_type} and {min_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:149
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:239
|
||||
msgid "Maximum Order Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:152
|
||||
msgid "Maximum order amount for pickup service."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:156
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:248
|
||||
msgid "Maximum Order Amount Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:160
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:252
|
||||
msgid "Maximum order price for {service_type} is {max_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:161
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:253
|
||||
msgid "Error message for maximum order amount. You can use variable {service_type} and {max_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:175
|
||||
msgid "Delivery Service is <b><i>Enabled</i></b> by default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:193
|
||||
msgid "Enable Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:196
|
||||
msgid "Enable Delivery Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:201
|
||||
msgid "Delivery Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:204
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:326
|
||||
#: includes/wowrestro-core-functions.php:1005
|
||||
msgid "Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:208
|
||||
msgid "Delivery Time Interval"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:212
|
||||
msgid "Enter delivery time interval in mins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:226
|
||||
msgid "Enter Minimum order amount for delivery service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:244
|
||||
msgid "Enter Maximum order amount for delivery service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:272
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:278
|
||||
msgid "Store Open Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:284
|
||||
msgid "Set store open time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:288
|
||||
msgid "Store Close Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:294
|
||||
msgid "Set store close time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:298
|
||||
msgid "Cooking Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:301
|
||||
msgid "Set WOWRestro item preparation time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:312
|
||||
msgid "Store Closed Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:314
|
||||
msgid "Sorry, We not available right now."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:317
|
||||
msgid "Set message for users to see when your store is closed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:321
|
||||
msgid "Default Selected Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:329
|
||||
msgid "Set default selected service type."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:333
|
||||
msgid "Enable ASAP option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:334
|
||||
msgid "Check this box if you want to add ASAP option on your time slot."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:341
|
||||
msgid "ASAP label "
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:342
|
||||
msgid "Add the as soon as possible text to show on service popup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:349
|
||||
msgid "Order later label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:350
|
||||
msgid "Add the later text to show on service popup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:357
|
||||
msgid "Service Popup Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:361
|
||||
msgid "Hide completely on items page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:362
|
||||
msgid "Set available service type and time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:363
|
||||
msgid "Open modal once items page is loaded."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:364
|
||||
msgid "Open modal when add to cart is clicked."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:367
|
||||
msgid "Choose how you want your customers to select the Service Settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:25
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:38
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:85
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:91
|
||||
msgid "Select Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:92
|
||||
msgid "Change color for Links, Buttons and Active Classes etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:100
|
||||
msgid "Select Secondary Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:101
|
||||
msgid "Change for Button/Link Hovers, Borders etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:109
|
||||
msgid "Include item count for category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:110
|
||||
msgid "Displays the number of items available for the category."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:117
|
||||
msgid "WOWRestro Item Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:118
|
||||
msgid "Please select how would you like to show the item images on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:123
|
||||
msgid "Medium Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:124
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:125
|
||||
msgid "Hide Image Completely"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:132
|
||||
msgid "Include Lazy Load"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:133
|
||||
msgid "Item image will be loaded once you scroll to it. Loads your items page faster."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:140
|
||||
msgid "Show Image in Popup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:141
|
||||
msgid "Display item image/gallery in popup."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:46
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:16
|
||||
msgid "Enter Variation Pricing Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:21
|
||||
msgid "Customized text to display on price selection label."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:30
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:31
|
||||
msgid "Vegetarian"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:32
|
||||
msgid "Non Vegiterian"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:50
|
||||
#: includes/class-wowrestro-modifiers.php:45
|
||||
msgid "Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:51
|
||||
#: includes/admin/views/html-product-data-food-options.php:150
|
||||
msgid "Create New Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:78
|
||||
#: includes/admin/views/html-product-data-food-options.php:112
|
||||
msgid "Select a Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:98
|
||||
#: includes/admin/views/html-product-data-food-options.php:133
|
||||
msgid "Please Select a Modifier first."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:144
|
||||
#: includes/admin/views/html-product-data-food-options.php:197
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:159
|
||||
msgid "Modifier:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:160
|
||||
msgid "Type:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:169
|
||||
#: includes/class-wowrestro-metaboxes.php:98
|
||||
msgid "Single"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:170
|
||||
#: includes/class-wowrestro-metaboxes.php:99
|
||||
msgid "Multiple"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:181
|
||||
msgid "Modifier Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:182
|
||||
#: includes/class-wowrestro-metaboxes.php:124
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:206
|
||||
#: includes/wowrestro-core-functions.php:172
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-ajax.php:293
|
||||
msgid "%s added to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-ajax.php:414
|
||||
msgid "%s updated in cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-ajax.php:457
|
||||
msgid "%s has been removed from cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-install.php:89
|
||||
msgid "View WOWRestro settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-install.php:89
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:93
|
||||
msgid "Selection Choice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:101
|
||||
msgid "Please choose how you want this modifier to be associated with the WOWRestro item."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:128
|
||||
msgid "Add a Price for this modifier item."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:172
|
||||
msgid "WOWRestro Item Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:261
|
||||
msgid "Simple WOWRestro Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:262
|
||||
msgid "Variable WOWRestro Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:43
|
||||
msgctxt "Modifier General Name"
|
||||
msgid "Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:44
|
||||
msgctxt "Modifier Singular Name"
|
||||
msgid "Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:46
|
||||
msgid "All Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:47
|
||||
msgid "Parent Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:48
|
||||
msgid "Parent Modifier:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:49
|
||||
msgid "New Modifier Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:50
|
||||
msgid "Add New Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:51
|
||||
msgid "Edit Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:52
|
||||
msgid "Update Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:53
|
||||
msgid "View Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:54
|
||||
msgid "Separate modifiers with commas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:55
|
||||
msgid "Add or remove modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:56
|
||||
msgid "Choose from the most used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:57
|
||||
msgid "Popular Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:58
|
||||
msgid "Search Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:59
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:60
|
||||
msgid "No modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:61
|
||||
msgid "Modifiers list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:62
|
||||
msgid "Modifiers list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-public-scripts.php:317
|
||||
msgid "Please select a service time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-public.php:309
|
||||
msgid "Special Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-public.php:399
|
||||
msgid "Choose Price Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:243
|
||||
#: includes/class-wowrestro-services.php:401
|
||||
#: includes/wowrestro-core-functions.php:936
|
||||
msgid "ASAP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:244
|
||||
#: includes/wowrestro-core-functions.php:957
|
||||
msgid "Later"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:252
|
||||
#: templates/services/service-types.php:45
|
||||
#: templates/services/service-types.php:74
|
||||
msgid "When would you like your order?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:272
|
||||
#: includes/class-wowrestro-services.php:423
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:370
|
||||
msgid "Please choose service time for your Order."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:439
|
||||
#: includes/class-wowrestro-services.php:454
|
||||
msgid " Time : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro.php:226
|
||||
msgid "WOWRestro requires <a href=\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:185
|
||||
msgid "Add To Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:198
|
||||
msgid "Update Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:211
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:224
|
||||
msgid "Clear all"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:237
|
||||
msgid "Your cart is empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:334
|
||||
msgid "<span class=\"wowrestro-service-type\">%1s</span> : <span class=\"wowrestro-service-time\">%2s</span> <a class=\"wowrestro-change-service wwr-primary-color\" href=\"%3s\">Change?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/cart-contents.php:72
|
||||
msgid "Special Note : %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:37
|
||||
msgid "Your Order"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:57
|
||||
#: templates/cart/wowrestro-cart.php:94
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:84
|
||||
msgid " %s Items"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:86
|
||||
msgid " %s Item"
|
||||
msgstr ""
|
||||
|
||||
#: templates/content-search.php:22
|
||||
msgid "Search dishes.."
|
||||
msgstr ""
|
||||
|
||||
#: templates/services/service-modal.php:23
|
||||
msgid "Your order setting"
|
||||
msgstr ""
|
||||
|
||||
#: templates/services/service-modal.php:32
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-product/add-to-cart/modifiers.php:80
|
||||
msgid "Extra instructions"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-product/add-to-cart/modifiers.php:82
|
||||
msgid "List any special requests here"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,296 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP-Chatbot Builder 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-01-05 12:35+0530\n"
|
||||
"PO-Revision-Date: 2021-01-05 12:35+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: BotMyWork\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../wp-chatbot-main\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html;esc_html_e;esc_attr;esc_attr_e;esc_url;"
|
||||
"esc_url_raw\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-wp-chatbot-builder-admin.php:192
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:44
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:45
|
||||
msgid "Gender"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:46
|
||||
msgid "Locale"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:47
|
||||
msgid "TimeZone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:48
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:51
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:53
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:62
|
||||
msgid "Messenger Theme Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:67
|
||||
msgid ""
|
||||
"Select Facebook Messenger theme color, Facebook highly recommends to choose "
|
||||
"a color that has a high contrast to white."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:78
|
||||
msgid "Greeting Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:83
|
||||
msgid "For logged in users:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:89
|
||||
msgid "For logged out users:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:94
|
||||
msgid "Enter Facebook Messenger greeting text, leave blank to use default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:102
|
||||
msgid "Device Behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:108
|
||||
msgid "Show on desktop and mobile both"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:109
|
||||
msgid "Show on desktop only"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:110
|
||||
msgid "Show on mobile only"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:112
|
||||
msgid ""
|
||||
"Select devices where you want to display Facebook Messenger. Mobile devices "
|
||||
"include both Smartphones and Tablets."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:119
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:125
|
||||
msgid "Show Everywhere"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:126
|
||||
msgid "Show Everywhere except for these Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:127
|
||||
msgid "Only show on these Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:128
|
||||
msgid "Only show on Home Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:134
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:145
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:195
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:239
|
||||
msgid "hidden"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:138
|
||||
msgid "The Facebook Messenger will be displayed on all pages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:149
|
||||
msgid ""
|
||||
"The Facebook Messenger will be displayed on all pages, except for these "
|
||||
"selected pages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:163
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:213
|
||||
msgid "Select Pages: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:184
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:229
|
||||
msgid "Sorry No Page found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:199
|
||||
msgid "The Facebook Messenger will be displayed only on these selected pages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:243
|
||||
msgid "The Facebook Messenger will be displayed only on the Home Page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:252
|
||||
msgid "Greeting Dialog Delay"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:257
|
||||
msgid ""
|
||||
"Sets the number of seconds of delay before the greeting dialog is shown "
|
||||
"after the plugin is loaded."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:269
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:14
|
||||
msgid "Welcome to WP-Chatbot Builder!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:15
|
||||
msgid "To get started, connect your Facebook page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:19
|
||||
msgid "Connect Facebook Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:23
|
||||
msgid "By connecting with Facebook you are agreeing to the "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:23
|
||||
msgid "WP-Chatbot Builder Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:23
|
||||
msgid "Connect to your Facebook page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:25
|
||||
msgid "Logout WP-Chatbot Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:53
|
||||
#: admin/partials/wp-cbb-admin-display.php:47
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:57
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:68
|
||||
msgid "Sorry, No pages found!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:20
|
||||
msgid "assets/images/cbb_logo.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:25
|
||||
msgid "WP-Chatbot Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:29
|
||||
msgid "Enjoy ceaseless chatting experience with WP-Chatbot Builder."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:36
|
||||
msgid "Complete Setup Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:33
|
||||
msgid "Something went wrong: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:42
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:45
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:45
|
||||
msgid "Enable WP-Chatbot Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:48
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:79
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:110
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:50
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:81
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:112
|
||||
#: admin/partials/wp-cbb-admin-display.php:41
|
||||
msgid "assets/images/loading.gif"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:56
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:87
|
||||
msgid "Default Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:118
|
||||
msgid "Q&A"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:122
|
||||
msgid ""
|
||||
"Chatbot will answer questions on your page based on keywords detected in the "
|
||||
"user’s question."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:128
|
||||
msgid "If user says something similar to "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:129
|
||||
msgid "Bot randomly replies with "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:130
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:200
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:225
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:237
|
||||
msgid " + Add Q&A"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-cbb-admin-display.php:46
|
||||
msgid "WP-Chatbot Builder Settings"
|
||||
msgstr ""
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/wp-foft-loader/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/wp-foft-loader/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "wp-foft-loader",
|
||||
"version": "2.1.5",
|
||||
"description": "This plugin implements and automates Zach Leatherman’s Critical FOFT with preload, with a polyfill fallback emulating font-display: optional to optimize and speed up webfont loading and improve UX by minimizing Flash of Invisible Text, Flash of Unstyled Text, and DOM Reflow. See [https://github.com/zachleat/web-font-loading-recipes#the-compromise-critical-foft-with-preload-with-a-polyfill-fallback-emulating-font-display-optional](https://github.com/zachleat/web-font-loading-recipes#the-compromise-critical-foft-with-preload-with-a-polyfill-fallback-emulating-font-display-optional).",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/seezee/WP-FOFT-Loader.git"
|
||||
},
|
||||
"keywords": [
|
||||
"font",
|
||||
"wordpress",
|
||||
"performance",
|
||||
"webfont"
|
||||
],
|
||||
"author": "Chris J. Zähller",
|
||||
"license": "GPL-3.0+",
|
||||
"bugs": {
|
||||
"url": "https://github.com/seezee/WP-FOFT-Loader/issues"
|
||||
},
|
||||
"homepage": "https://github.com/seezee/WP-FOFT-Loader#readme",
|
||||
"dependencies": {
|
||||
"htmlpurifier": "ezyang/htmlpurifier",
|
||||
"CSSTidy": "Cerdic/CSSTidy",
|
||||
"Are-you-sure": "codedance/jquery.AreYouSure"
|
||||
},
|
||||
"bundledDependencies": [
|
||||
"htmlpurifier", "CSSTidy", "Are-you-sure"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,191 @@
|
||||
# Copyright (C) 2021 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Product FAQs for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Product FAQs for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-product-faqs\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: 2021-01-28T03:51:39+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-product-faqs\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Product FAQs for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Ultimate solution to manage WooCommerce product FAQs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:79
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Product FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:80
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:81
|
||||
msgid "Add New Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:82
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:83
|
||||
msgid "Edit Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:84
|
||||
msgid "Update Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:85
|
||||
msgid "Search Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:89
|
||||
msgid "Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:114
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:129
|
||||
msgid "Select which products you want to add this FAQs automatically. If \"None\" is set, you can still manually choose to add this in the \"FAQs\" tab of each individual product page."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:135
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:136
|
||||
#: wpc-product-faqs.php:144
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:137
|
||||
#: wpc-product-faqs.php:170
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:138
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:152
|
||||
msgid "Search for a category…"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:174
|
||||
msgid "Add some tags, split by a comma..."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:227
|
||||
#: wpc-product-faqs.php:399
|
||||
msgid "How to use?"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:243
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:253
|
||||
#: wpc-product-faqs.php:382
|
||||
msgid "WPC Product FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:253
|
||||
msgid "Product FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:264
|
||||
#: wpc-product-faqs.php:310
|
||||
msgid "FAQ title"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:299
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:302
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:357
|
||||
msgid "Global FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:358
|
||||
msgid "Custom FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:361
|
||||
msgid "+ Add new FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:385
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:388
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:390
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:392
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:403
|
||||
msgid "Global FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:407
|
||||
msgid "Essential Kit"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:415
|
||||
msgid "1. Global FAQs: Switch to Global FAQs tab to add the FAQs then you can use these FAQs in each product."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:418
|
||||
msgid "2. Product basis FAQs: When adding/editing the product you can choose the FAQs tab then add some global/custom FAQs as you want."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:451
|
||||
#: wpc-product-faqs.php:657
|
||||
msgid "FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:673
|
||||
msgid "Manage Global FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:676
|
||||
msgid "You can use the shortcode %s to show this product FAQs."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,520 @@
|
||||
# Copyright (C) 2021 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Smart Notification for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Smart Notification for WooCommerce 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-smart-notification\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: 2021-02-03T02:21:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-smart-notification\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Smart Notification for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Increase trust, credibility, and sales with smart notifications."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: core/initialization.php:38
|
||||
#: core/options.php:566
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/initialization.php:96
|
||||
msgid "Can't save data"
|
||||
msgstr ""
|
||||
|
||||
#: core/initialization.php:134
|
||||
msgid "(%s item)"
|
||||
msgid_plural "(%s items)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/_ajax-processing.php:38
|
||||
msgid "Save Successful"
|
||||
msgstr ""
|
||||
|
||||
#: core/_ajax-processing.php:41
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:18
|
||||
msgid "Data Sources Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:23
|
||||
msgid "Data Sources"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:24
|
||||
msgid "Select the source(s) to display the feeds."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:27
|
||||
#: core/options.php:83
|
||||
#: core/options.php:124
|
||||
msgid "New Orders"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:30
|
||||
#: core/options.php:87
|
||||
#: core/options.php:155
|
||||
msgid "Virtual Orders"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:33
|
||||
#: core/options.php:91
|
||||
#: core/options.php:205
|
||||
msgid "On Sale Products"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:36
|
||||
#: core/options.php:95
|
||||
#: core/options.php:221
|
||||
msgid "Low Stock Products"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:39
|
||||
#: core/options.php:99
|
||||
#: core/options.php:252
|
||||
msgid "Related Products"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:42
|
||||
#: core/options.php:103
|
||||
#: core/options.php:268
|
||||
msgid "Viewing"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:45
|
||||
#: core/options.php:107
|
||||
#: core/options.php:304
|
||||
#: core/options.php:529
|
||||
msgid "Cart"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:48
|
||||
#: core/options.php:111
|
||||
#: core/options.php:337
|
||||
msgid "Manual"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:51
|
||||
#: core/options.php:115
|
||||
#: core/options.php:378
|
||||
msgid "Text Editor"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:58
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:59
|
||||
msgid "The order in which messages are displayed."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:62
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:65
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:72
|
||||
msgid "Sort"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:73
|
||||
msgid "Sort the data sources."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:137
|
||||
#: core/options.php:198
|
||||
#: core/options.php:214
|
||||
#: core/options.php:234
|
||||
#: core/options.php:261
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:138
|
||||
msgid "Number of orders."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:146
|
||||
msgid "Within (hours)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:147
|
||||
msgid "Get orders within (x) hours from the present time."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:156
|
||||
msgid "Below information will be combined randomly."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:165
|
||||
msgid "Buyer Name(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:166
|
||||
msgid "Type a name and press \"Enter\" to add."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:173
|
||||
msgid "Buyer Address(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:174
|
||||
msgid "Type an address and press \"Enter\" to add."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:184
|
||||
msgid "Product(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:185
|
||||
msgid "Product of virtual orders. If left blank the product will be taken at random."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:192
|
||||
msgid "Within (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:193
|
||||
msgid "The time will be generated randomly within this value (seconds) and be calculated into minutes, hours, or days."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:199
|
||||
msgid "Maximum number of orders to be generated."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:215
|
||||
#: core/options.php:235
|
||||
#: core/options.php:262
|
||||
msgid "Number of products."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:243
|
||||
msgid "Low stock Threshold"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:244
|
||||
msgid "Number of products remaining in stock."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:269
|
||||
msgid "The range of people are viewing a product."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:279
|
||||
#: core/options.php:314
|
||||
#: core/options.php:352
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:289
|
||||
msgid "Minimum"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:296
|
||||
msgid "Maximum"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:319
|
||||
#: core/options.php:364
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:320
|
||||
msgid "Choose the way to open the cart. If choose \"Show the WPC Fly Cart\", you need to install plugin WPC Fly Cart."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:323
|
||||
msgid "Open cart page in same tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:326
|
||||
msgid "Open cart page in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:329
|
||||
msgid "Show the WPC Fly Cart"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:345
|
||||
#: core/options.php:388
|
||||
msgid "Notification(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:358
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:370
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:379
|
||||
msgid "Please buy Premium Version to use this feature."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:390
|
||||
msgid "Please enter html here, with shortcode support."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:396
|
||||
msgid "Box Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:405
|
||||
msgid "Show Effect"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:406
|
||||
msgid "Animation when showing item."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:409
|
||||
msgid "Bounce In"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:412
|
||||
msgid "Bounce In Up"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:415
|
||||
msgid "Bounce In Down"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:418
|
||||
msgid "Bounce In Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:421
|
||||
msgid "Bounce In Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:429
|
||||
msgid "Hide Effect"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:430
|
||||
msgid "Animation when hiding item."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:433
|
||||
msgid "Bounce Out"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:436
|
||||
msgid "Bounce Out Up"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:439
|
||||
msgid "Bounce Out Down"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:442
|
||||
msgid "Bounce Out Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:445
|
||||
msgid "Bounce Out Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:456
|
||||
msgid "Autoplay (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:457
|
||||
msgid "Autoplay time in seconds."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:462
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:463
|
||||
msgid "Choose where to show the box on the screen."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:466
|
||||
msgid "Top Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:469
|
||||
msgid "Bottom Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:472
|
||||
msgid "Top Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:475
|
||||
msgid "Bottom Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:482
|
||||
msgid "Infinite Loop"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:485
|
||||
#: core/options.php:498
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:488
|
||||
#: core/options.php:501
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:495
|
||||
msgid "Pause On Hover"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:508
|
||||
msgid "Product Link"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:509
|
||||
msgid "Choose the way to open the product link. If choose \"Open quick view popup\", you need to install plugin WPC Smart Quick View."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:512
|
||||
msgid "Open in same tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:515
|
||||
msgid "Open in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:518
|
||||
msgid "Open quick view popup"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:525
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:526
|
||||
msgid "Select the where you want to disable the box."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:532
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:535
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:549
|
||||
msgid "WPC Smart Notification"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:552
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:555
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:557
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:559
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:571
|
||||
msgid "Premium Version"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:575
|
||||
msgid "Essential Kit"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:590
|
||||
msgid "Update Options"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:88
|
||||
msgid "Your cart: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:121
|
||||
#: core/notification.php:211
|
||||
msgid "about %d minute ago."
|
||||
msgid_plural "about %d minutes ago."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/notification.php:123
|
||||
#: core/notification.php:213
|
||||
msgid "about %d hour ago."
|
||||
msgid_plural "about %d hours ago."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/notification.php:125
|
||||
#: core/notification.php:215
|
||||
msgid "about %d day ago."
|
||||
msgid_plural "about %d days ago."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/notification.php:146
|
||||
#: core/notification.php:222
|
||||
msgid "%s from %s purchased a"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:252
|
||||
msgid "%s is on-sale. Hurry up!"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:299
|
||||
msgid "%s has %d left only. Don't miss it!"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:372
|
||||
msgid "You may also like %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:393
|
||||
msgid "%s people are viewing this product now."
|
||||
msgstr ""
|
||||
|
||||
#: core/control/fields/image.php:4
|
||||
#: core/control/views/image.php:4
|
||||
msgid "Upload Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: core/control/_class-form.php:250
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: core/control/_class-form.php:345
|
||||
msgid "Add more"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,181 @@
|
||||
# Copyright (C) 2021 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Variations Table for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Variations Table for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-variations-table\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: 2021-02-03T23:30:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-variations-table\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Variations Table for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WPC Variations Table will replace dropdown selects with a beautiful table."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:89
|
||||
#: wpc-variations-table.php:99
|
||||
msgid "WPC Variations Table"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:89
|
||||
#: wpc-variations-table.php:298
|
||||
msgid "Variations Table"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:102
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:105
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:108
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:110
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:117
|
||||
#: wpc-variations-table.php:261
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:122
|
||||
#: wpc-variations-table.php:262
|
||||
msgid "Premium Version"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:126
|
||||
msgid "Essential Kit"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:129
|
||||
#: wpc-variations-table.php:278
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:148
|
||||
#: wpc-variations-table.php:316
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:152
|
||||
#: wpc-variations-table.php:164
|
||||
#: wpc-variations-table.php:185
|
||||
#: wpc-variations-table.php:196
|
||||
#: wpc-variations-table.php:207
|
||||
#: wpc-variations-table.php:218
|
||||
#: wpc-variations-table.php:325
|
||||
#: wpc-variations-table.php:357
|
||||
#: wpc-variations-table.php:368
|
||||
#: wpc-variations-table.php:379
|
||||
#: wpc-variations-table.php:390
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:153
|
||||
#: wpc-variations-table.php:165
|
||||
#: wpc-variations-table.php:186
|
||||
#: wpc-variations-table.php:197
|
||||
#: wpc-variations-table.php:208
|
||||
#: wpc-variations-table.php:219
|
||||
#: wpc-variations-table.php:328
|
||||
#: wpc-variations-table.php:358
|
||||
#: wpc-variations-table.php:369
|
||||
#: wpc-variations-table.php:380
|
||||
#: wpc-variations-table.php:391
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:155
|
||||
msgid "This is the default status, you can set status for individual product in the its settings."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:160
|
||||
msgid "Hide unpurchasable variation"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:170
|
||||
#: wpc-variations-table.php:342
|
||||
msgid "Variation name"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:173
|
||||
#: wpc-variations-table.php:345
|
||||
msgid "Default (e.g Product A - Green, M)"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:174
|
||||
#: wpc-variations-table.php:346
|
||||
msgid "Formatted without attribute label (e.g Green, M)"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:175
|
||||
#: wpc-variations-table.php:347
|
||||
msgid "Formatted with attribute label (e.g Color: Green, Size: M)"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:181
|
||||
#: wpc-variations-table.php:353
|
||||
msgid "Show image"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:192
|
||||
#: wpc-variations-table.php:364
|
||||
msgid "Show price"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:203
|
||||
#: wpc-variations-table.php:375
|
||||
msgid "Show availability"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:214
|
||||
#: wpc-variations-table.php:386
|
||||
msgid "Show description"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:226
|
||||
msgid "Update Options"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:319
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:322
|
||||
msgid "settings"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:419
|
||||
msgid "Custom name for WPC Variations Table"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:425
|
||||
msgid "Custom image for WPC Variations Table"
|
||||
msgstr ""
|
||||
@@ -479,3 +479,7 @@ FooBox.ready(function() {
|
||||
|
||||
|
||||
|
||||
<!-- bit-smtp -->
|
||||
<meta name="generator" content="Forms by BitCode 1.0.2">
|
||||
|
||||
|
||||
|
||||
6
spec/fixtures/finders/db_exports/dump.sql
vendored
6
spec/fixtures/finders/db_exports/dump.sql
vendored
@@ -35,3 +35,9 @@ LOCK TABLES `wp_comments` WRITE;
|
||||
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2017-02-17 18:22:27','2017-02-17 18:22:27','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0);
|
||||
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
CREATE DATABASE Sales;
|
||||
|
||||
ALTER DATABASE Test1
|
||||
ADD FILEGROUP Test1FG1;
|
||||
GO
|
||||
|
||||
@@ -12,7 +12,7 @@ describe WPScan::DB::VulnApi do
|
||||
|
||||
before do
|
||||
# Reset the default_request_params
|
||||
api.instance_variable_set(:'@default_request_params', nil)
|
||||
api.instance_variable_set(:@default_request_params, nil)
|
||||
end
|
||||
|
||||
describe '#uri' do
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
[!] No WPScan API Token given, as a result vulnerability data has not been output.
|
||||
[!] You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
[!] You can get a free API token with 25 daily requests by registering at https://wpscan.com/register
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"vuln_api": {
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 25 daily requests by registering at https://wpscan.com/register"
|
||||
}
|
||||
}
|
||||
@@ -32,7 +32,7 @@ shared_examples 'App::Views::VulnApi' do
|
||||
|
||||
it 'outputs the expected string' do
|
||||
@tpl_vars = tpl_vars.merge(
|
||||
status: { 'success': true, 'plan' => 'free', 'requests_remaining' => 0 },
|
||||
status: { 'success' => true, 'plan' => 'free', 'requests_remaining' => 0 },
|
||||
api_requests: 3
|
||||
)
|
||||
end
|
||||
@@ -43,7 +43,7 @@ shared_examples 'App::Views::VulnApi' do
|
||||
|
||||
it 'outputs the expected string' do
|
||||
@tpl_vars = tpl_vars.merge(
|
||||
status: { 'success': true, 'plan' => 'paid', 'requests_remaining' => 120 },
|
||||
status: { 'success' => true, 'plan' => 'paid', 'requests_remaining' => 120 },
|
||||
api_requests: 3
|
||||
)
|
||||
end
|
||||
@@ -54,7 +54,7 @@ shared_examples 'App::Views::VulnApi' do
|
||||
|
||||
it 'outputs the expected string' do
|
||||
@tpl_vars = tpl_vars.merge(
|
||||
status: { 'success': true, 'plan' => 'enterprise', 'requests_remaining' => 'Unlimited' },
|
||||
status: { 'success' => true, 'plan' => 'enterprise', 'requests_remaining' => 'Unlimited' },
|
||||
api_requests: 3
|
||||
)
|
||||
end
|
||||
|
||||
@@ -21,14 +21,14 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.0'
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.1'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.10.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.8.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.9.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.9.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
|
||||
Reference in New Issue
Block a user