Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f887f8baa4 | ||
|
|
4d00d97be9 | ||
|
|
b0e946ee29 | ||
|
|
1220b9f47b | ||
|
|
12d2d0ffb0 | ||
|
|
4581113741 | ||
|
|
a20c769eae | ||
|
|
3259316cf1 | ||
|
|
9cc06234e4 | ||
|
|
1ee73268d7 | ||
|
|
f477620899 | ||
|
|
8a9dc1ce2c | ||
|
|
b584aa24bd | ||
|
|
8dfe78a210 | ||
|
|
7143cb5def | ||
|
|
e6c49d99b6 | ||
|
|
6e71f9771c | ||
|
|
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'
|
||||
|
||||
25
README.md
25
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
|
||||
@@ -47,7 +52,7 @@ On MacOSX, if a ```Gem::FilePermissionError``` is raised due to the Apple's Syst
|
||||
|
||||
You can update the local database by using ```wpscan --update```
|
||||
|
||||
Updating WPScan itself is either done via ```gem update wpscan``` or the packages manager (this is quite important for distributions such as in Kali Linux: ```apt-get update && apt-get upgrade```) depending how WPScan was (pre)installed
|
||||
Updating WPScan itself is either done via ```gem update wpscan``` or the packages manager (this is quite important for distributions such as in Kali Linux: ```apt-get update && apt-get upgrade```) depending on how WPScan was (pre)installed
|
||||
|
||||
# Docker
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -53,7 +53,9 @@ module WPScan
|
||||
#
|
||||
# @return [ Boolean ]
|
||||
def vulnerable_to?(vuln)
|
||||
return true unless version && vuln && vuln.fixed_in && !vuln.fixed_in.empty?
|
||||
return false if version && vuln&.introduced_in && version < vuln.introduced_in
|
||||
|
||||
return true unless version && vuln&.fixed_in && !vuln.fixed_in.empty?
|
||||
|
||||
version < vuln.fixed_in
|
||||
end
|
||||
|
||||
@@ -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.16'
|
||||
end
|
||||
|
||||
@@ -21,6 +21,7 @@ module WPScan
|
||||
references: references,
|
||||
type: json_data['vuln_type'],
|
||||
fixed_in: json_data['fixed_in'],
|
||||
introduced_in: json_data['introduced_in'],
|
||||
cvss: json_data['cvss']&.symbolize_keys
|
||||
)
|
||||
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
|
||||
@@ -195,50 +195,108 @@ describe WPScan::Model::Plugin do
|
||||
end
|
||||
|
||||
context 'when vulnerabilities' do
|
||||
let(:slug) { 'vulnerable-not-popular' }
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-not-popular') }
|
||||
context 'when only fixed_in' do
|
||||
let(:slug) { 'vulnerable-not-popular' }
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-not-popular') }
|
||||
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'First Vuln <= 6.3.10 - LFI',
|
||||
references: { wpvulndb: '1' },
|
||||
type: 'LFI',
|
||||
fixed_in: '6.3.10'
|
||||
),
|
||||
WPScan::Vulnerability.new('No Fixed In', references: { wpvulndb: '2' })
|
||||
]
|
||||
end
|
||||
|
||||
context 'when no plugin version' do
|
||||
before { expect(plugin).to receive(:version).at_least(1).and_return(false) }
|
||||
|
||||
it 'returns all the vulnerabilities' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when plugin version' do
|
||||
before do
|
||||
expect(plugin)
|
||||
.to receive(:version)
|
||||
.at_least(1)
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'First Vuln <= 6.3.10 - LFI',
|
||||
references: { wpvulndb: '1' },
|
||||
type: 'LFI',
|
||||
fixed_in: '6.3.10'
|
||||
),
|
||||
WPScan::Vulnerability.new('No Fixed In', references: { wpvulndb: '2' })
|
||||
]
|
||||
end
|
||||
|
||||
context 'when < to a fixed_in' do
|
||||
let(:number) { '5.0' }
|
||||
context 'when no plugin version' do
|
||||
before { expect(plugin).to receive(:version).at_least(1).and_return(false) }
|
||||
|
||||
it 'returns it' do
|
||||
it 'returns all the vulnerabilities' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to a fixed_in' do
|
||||
let(:number) { '6.3.10' }
|
||||
context 'when plugin version' do
|
||||
before do
|
||||
expect(plugin)
|
||||
.to receive(:version)
|
||||
.at_least(1)
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
end
|
||||
|
||||
it 'does not return it ' do
|
||||
@expected = [all_vulns.last]
|
||||
context 'when < to fixed_in' do
|
||||
let(:number) { '5.0' }
|
||||
|
||||
it 'returns it' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to fixed_in' do
|
||||
let(:number) { '6.3.10' }
|
||||
|
||||
it 'does not return it ' do
|
||||
@expected = [all_vulns.last]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when introduced_in' do
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-introduced-in') }
|
||||
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'Introduced In 6.4',
|
||||
fixed_in: '6.5',
|
||||
introduced_in: '6.4',
|
||||
references: { wpvulndb: '1' }
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
context 'when no plugin version' do
|
||||
before { expect(plugin).to receive(:version).at_least(1).and_return(false) }
|
||||
|
||||
it 'returns all the vulnerabilities' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when plugin version' do
|
||||
before do
|
||||
expect(plugin)
|
||||
.to receive(:version)
|
||||
.at_least(1)
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
end
|
||||
|
||||
context 'when < to introduced_in' do
|
||||
let(:number) { '5.0' }
|
||||
|
||||
it 'does not return it' do
|
||||
@expected = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to fixed_in' do
|
||||
let(:number) { '6.5' }
|
||||
|
||||
it 'does not return it' do
|
||||
@expected = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to introduced_in' do
|
||||
let(:number) { '6.4' }
|
||||
|
||||
it 'returns it' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
4082
spec/fixtures/db/dynamic_finders.yml
vendored
4082
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
13
spec/fixtures/db/vuln_api/plugins/vulnerable-introduced-in.json
vendored
Normal file
13
spec/fixtures/db/vuln_api/plugins/vulnerable-introduced-in.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"latest_version": null,
|
||||
"last_updated": null,
|
||||
"popular": false,
|
||||
"vulnerabilities" : [
|
||||
{
|
||||
"title": "Introduced In 6.4",
|
||||
"id": 1,
|
||||
"introduced_in": "6.4",
|
||||
"fixed_in": "6.5"
|
||||
}
|
||||
]
|
||||
}
|
||||
1763
spec/fixtures/dynamic_finders/expected.yml
vendored
1763
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,316 @@
|
||||
# Copyright (C) 2021 Web Rockstar
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Admin Notes 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-admin-notes-off\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-26T17:52:32+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-59d879d\n"
|
||||
"X-Domain: wp-admin-notes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-wp-admin-notes-admin.php:357
|
||||
msgid "WP Admin Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://webrockstar.net"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create and manage admin footer text, help tabs, and notices directly from the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Web Rockstar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:3
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:32
|
||||
msgid "Enter your note here."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:34
|
||||
msgid "Make Private"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:35
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:36
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:37
|
||||
msgid "Note is public and visible to all users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:71
|
||||
msgid "There are currently no admin notes."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:198
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:219
|
||||
msgid "Screen ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:238
|
||||
msgctxt "post type general name"
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:239
|
||||
msgctxt "post type singular name"
|
||||
msgid "Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:240
|
||||
msgctxt "admin menu"
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:241
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:242
|
||||
msgctxt "wpan_help_tab"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:243
|
||||
msgid "Add New Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:244
|
||||
msgid "New Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:245
|
||||
msgid "Edit Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:246
|
||||
msgid "View Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:247
|
||||
msgid "All Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:248
|
||||
msgid "Search Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:249
|
||||
msgid "Parent Help Tabs:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:250
|
||||
msgid "No Help Tabs found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:251
|
||||
msgid "No Help Tabs found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:258
|
||||
msgctxt "post type general name"
|
||||
msgid "Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:259
|
||||
msgctxt "post type singular name"
|
||||
msgid "Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:260
|
||||
msgctxt "admin menu"
|
||||
msgid "Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:261
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:262
|
||||
msgctxt "wpan_notice"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:263
|
||||
msgid "Add New Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:264
|
||||
msgid "New Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:265
|
||||
msgid "Edit Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:266
|
||||
msgid "View Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:267
|
||||
msgid "All Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:268
|
||||
msgid "Search Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:269
|
||||
msgid "Parent Admin Notices:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:270
|
||||
msgid "No Admin Notices found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:271
|
||||
msgid "No Admin Notices found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:114
|
||||
#: admin/class-wp-admin-notes-admin.php:183
|
||||
msgid "(click to copy)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:115
|
||||
msgid "(copied!)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:361
|
||||
msgid "Admin Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:362
|
||||
msgid ""
|
||||
"Overrides the default text in the very bottom left corner of every WordPress admin page.\n"
|
||||
"\t\t\t\t\tThis is typically used to highlight the department or company that developed/configured the website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:364
|
||||
msgid "Enable Admin Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:367
|
||||
msgid "Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:370
|
||||
msgid "Website built and configured by..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:377
|
||||
msgid "Allowed HTML: a, strong, em"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:378
|
||||
msgid "Footer Text Icon Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:379
|
||||
msgid ""
|
||||
"Optional image icon for the admin footer text. Icon is displayed at 24px X 24px and left aligned.\n"
|
||||
"\t\t\t\t Transparent PNG or SVG works best."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:389
|
||||
msgid "Notice Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:391
|
||||
msgid "Disable Notice Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:393
|
||||
msgid "Toggles the display of the Admin Notices post type on the left menu bar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:395
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:396
|
||||
msgid "Custom help tabs on WordPress admin pages. Created and managed in the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:397
|
||||
msgid "Disable Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:399
|
||||
msgid "Toggles the display of the Help Tab post type on the left menu bar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:402
|
||||
msgid "Global Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:403
|
||||
msgid ""
|
||||
"A single global help tab that appears on every WordPress admin page.\n"
|
||||
"\t\t\t\t\t This is typically used to display a message about who to contact regarding technical issues or feature requests."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:405
|
||||
msgid "Enable Global Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:407
|
||||
msgid "Global Help Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:416
|
||||
msgid "Global Help Tab Body"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:425
|
||||
msgid "Allowed HTML includes: a, strong, em, ul, ol, li, h1, h2, h3, h4, h5, h6. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:426
|
||||
msgid "Global Help Tab Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:427
|
||||
msgid ""
|
||||
"Optional logo image to display at the bottom of the global help tab content.\n"
|
||||
"\t\t\t\t\t\t This is typically the logo of the company that configured/developed the website, if applicable.\n"
|
||||
"\t\t\t\t\t\t This image is displayed with a maximum width and height of 200px. Transparent PNG or SVG works best."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:439
|
||||
msgid "Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:441
|
||||
msgid "Hide Default Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:445
|
||||
msgid "Animate Help Tab Before First Click"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:447
|
||||
msgid ""
|
||||
"To help users discover the help tab, it will bounce and highlight until clicked.\n"
|
||||
"\t\t\t\t\t After it is clicked once it will never animate again for that user."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,167 @@
|
||||
# Copyright (C) 2021 WP Concern
|
||||
# This file is distributed under the GPL3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Google reCAPTCHA 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/advanced-google-recaptcha\n"
|
||||
"POT-Creation-Date: 2021-03-09 07:19: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"
|
||||
"X-Generator: node-wp-i18n 1.2.5\n"
|
||||
|
||||
#: edd_templates/shortcode-login.php:16
|
||||
msgid "Log into Your Account"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:19
|
||||
msgid "Username or Email"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:23
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:30
|
||||
msgid "Remember Me"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:36
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:40
|
||||
msgid "Lost Password?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:26 inc/core.php:227
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:27
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:39
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Advanced Google reCAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:130
|
||||
#. translators: 1: link open, 2: link close
|
||||
msgid ""
|
||||
"Please %1$sregister your domain%2$s first, get required keys from Google "
|
||||
"(reCAPTCHA v2 or reCAPTCHA v3) and save them below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:139
|
||||
msgid "You can enable/disable reCAPTCHA for different forms separately."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:175
|
||||
msgid ""
|
||||
"Applies for default login, WooCommerce login and Easy Digital Downloads "
|
||||
"login."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:211
|
||||
msgid "Key Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:213
|
||||
msgid "reCAPTCHA Type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:215
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:216
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:218
|
||||
msgid "Status Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:220
|
||||
msgid "Enable for Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:221
|
||||
msgid "Enable for Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:222
|
||||
msgid "Enable for Lost Password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:224
|
||||
msgid "Enable for Comment Form"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:225
|
||||
msgid "Enable for WooCommerce Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:226
|
||||
msgid "Enable for Easy Digital Downloads Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:227
|
||||
msgid "Enable for BuddyPress Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:272
|
||||
msgid "To implement reCAPTCHA, Key settings should be completed first."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:274
|
||||
msgid "Captcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:314
|
||||
msgid "V2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:315
|
||||
msgid "V3"
|
||||
msgstr ""
|
||||
|
||||
#: inc/core.php:150 inc/core.php:153 inc/core.php:170 inc/core.php:173
|
||||
#: inc/core.php:192 inc/core.php:195 inc/core.php:211 inc/core.php:214
|
||||
#: inc/core.php:373 inc/core.php:383 inc/core.php:424 inc/core.php:434
|
||||
#: inc/core.php:452 inc/core.php:455 inc/core.php:471 inc/core.php:474
|
||||
msgid "Google reCAPTCHA verification failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/core.php:170 inc/core.php:173 inc/core.php:192 inc/core.php:195
|
||||
#: inc/core.php:211 inc/core.php:214 inc/core.php:373 inc/core.php:383
|
||||
#: inc/core.php:424 inc/core.php:434
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.wpconcern.com/advanced-google-recaptcha/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Advanced Google reCAPTCHA will safeguard your WordPress site from spam "
|
||||
"comments and brute force attacks."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Concern"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.wpconcern.com/"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/af-companion/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/af-companion/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
### 1.0.0 - 16/02/2021
|
||||
|
||||
Changes:
|
||||
*INITIAL RELEASE*
|
||||
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,4 @@
|
||||
*** Avalon23 Products Filter Changelog ***
|
||||
|
||||
2020-11-20 - version 1.0.1
|
||||
* Initial release
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
2361
spec/fixtures/dynamic_finders/plugin_version/booking-x/translation_file/languages/bookingx.pot
vendored
Normal file
2361
spec/fixtures/dynamic_finders/plugin_version/booking-x/translation_file/languages/bookingx.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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": {}
|
||||
}
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/carousel-glider-js/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/carousel-glider-js/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "static",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"dependencies": {
|
||||
"bulma": "^0.8.0",
|
||||
"bulma-extensions": "^6.2.7",
|
||||
"chart.js": "^2.9.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.26.7",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-clean-css": "^4.3.0",
|
||||
"gulp-group-css-media-queries": "^1.2.2",
|
||||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-rename": "^2.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-uglify-es": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/category-archives-block/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/category-archives-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "category-archives-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Displays a monthly or yearly archive of posts for one ore more specific categories.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^5.2.2",
|
||||
"@wordpress/blocks": "^6.25.2",
|
||||
"@wordpress/i18n": "^3.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^13.0.1"
|
||||
}
|
||||
}
|
||||
97
spec/fixtures/dynamic_finders/plugin_version/chillpay-payment-gateway/change_log/CHANGELOG.md
vendored
Normal file
97
spec/fixtures/dynamic_finders/plugin_version/chillpay-payment-gateway/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
# CHANGELOG
|
||||
|
||||
### 'v2.0.0 (Nov 2, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support Installment Payment (KBANK).
|
||||
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Using CURL Instead of HTTP API.
|
||||
- Code Refactoring, simplifying Callback and Result function.
|
||||
- Code Refactoring, simplifying ChillPay setting process.
|
||||
- ChillPay Setting Page, sanitizing input fields before save.
|
||||
- Added label to show mode on setting page.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.8.0 (Aug 14, 2020)'
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Add an enabled button to create new order in case of failed status.
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Adjust Updating Process for Order Status.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.7.1 (May 7, 2020)'
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Auto check when there is one channel.
|
||||
- Support custom incrementing order numbers for WooCommerce orders.
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Adjust Updating Process for Order Status.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.7.0 (, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support Alipay Payment.
|
||||
- Support WeChat Pay Payment.
|
||||
- Split Input Text on SandBox/PROD Mode
|
||||
|
||||
---
|
||||
|
||||
### 'v1.6.0 (Jan 7, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Add menu ChillPay : Manual sync payment status
|
||||
- Add process auto sync payment status
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.9 (Dec 26, 2019)`
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support multi currency.
|
||||
- Support Bill Payment.
|
||||
- Show payment methods as informed to ChillPay.
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Separate Mobile Banking from the Internet Banking.
|
||||
- Add URL Background (callback function) to use for sending payment results to the system.
|
||||
- Improve the UI of the payment methods.
|
||||
- Use Mode selection instead of copying the api url.
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.8 (Aug 20, 2019)`
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Error when user enter the mobile number that is not connected to the K PLUS.
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.7 (May 28, 2019)`
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Fix customer information retrieval.
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Add input text api url.
|
||||
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 ""
|
||||
@@ -1227,4 +1227,9 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
-->
|
||||
|
||||
|
||||
<!-- hyperise-opengraph-tags -->
|
||||
<!-- HR-2.6: -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -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,8 @@
|
||||
***CHANGELOG***
|
||||
|
||||
|
||||
Version 1.0.0 - 09 March 2021
|
||||
|
||||
|
||||
* Initial release
|
||||
|
||||
@@ -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,299 @@
|
||||
# Copyright (C) 2021 dozentlms.com
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dozent LMS Certificate 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-20 19:02:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: DozentLMS Certificate\n"
|
||||
"Language-Team: DozentLMS Certificate\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"
|
||||
|
||||
#: core/classes/Certificate_Download.php:46
|
||||
msgid "Download Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Download.php:128
|
||||
msgid "Course Not found"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Metabox.php:27
|
||||
msgid "Certificate Builder"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Metabox.php:111
|
||||
msgid "Perfect certificate image size : w-%s, h-%s"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:27
|
||||
msgid "Add New Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:28
|
||||
msgid "New Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:29
|
||||
msgid "Edit Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:30
|
||||
msgid "View Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:31 core/classes/WPDashboard.php:22
|
||||
#: core/views/certificates-list.php:13
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:32
|
||||
msgid "Search Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:33
|
||||
msgid "Parent Certificates:"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:34
|
||||
msgid "No lectures found."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:35
|
||||
msgid "No lectures found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:40
|
||||
msgid "Description."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Template.php:66
|
||||
msgid "Certificate Template"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Template.php:67
|
||||
msgid "Choose a certificate template to personalize your course certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:36
|
||||
msgid ""
|
||||
"%s PHP Version Upgrade Notice: %s In order to use %s, your server PHP "
|
||||
"version requires at least %s or greater"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:38
|
||||
msgid ""
|
||||
"Currently your server running PHP version %s which out of date, upgrade "
|
||||
"your PHP version"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:49
|
||||
msgid "In order to use %s Plugin, your server must have installed GD extension"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:93
|
||||
msgid ""
|
||||
"in order to work %s properly, you must need to activate the Dozent LMS Core "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:94
|
||||
msgid "Activate Dozent LMS Now"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:103
|
||||
msgid ""
|
||||
"in order to work %s properly, you must need to install the Dozent LMS Core "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:104
|
||||
msgid "Install Dozent LMS Now"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:134
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:138
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:139
|
||||
msgid "Set up certificate settings to control the Dozent LMS certificate plugin"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:143
|
||||
msgid "Course Specific Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:144
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:145
|
||||
msgid ""
|
||||
"Course-specific certificates allow instructors to choose certificate "
|
||||
"templates for each course."
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate.php:153
|
||||
msgid "Course Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:43
|
||||
msgid "Example Template"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:53
|
||||
msgid "Certificate Content"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:64
|
||||
msgid "Content Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:69
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:75
|
||||
msgid ""
|
||||
"Set total width of certificate content as per your certificate design, "
|
||||
"preferable width is 520"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:83 core/views/certificate_builder.php:174
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:97 core/views/certificate_builder.php:188
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:103
|
||||
#: core/views/certificate_builder.php:194
|
||||
msgid "Set font size, preferable 18"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:111
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:118
|
||||
msgid "Set color of the text"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:126
|
||||
msgid "Text Align"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:132
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:137
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:142
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:151
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:162
|
||||
msgid ""
|
||||
"Adjust top margin as per your designs requirement. To make center content, "
|
||||
"set left - auto, right - auto"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:169
|
||||
msgid "Student Name"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:206
|
||||
msgid "Test Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:15
|
||||
msgid "Add Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:44
|
||||
msgid "Set as Default"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:58 core/views/certificates-list.php:62
|
||||
msgid "Import Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:59
|
||||
msgid ""
|
||||
"Import pre-designed certificate to use those instants, you can always add "
|
||||
"your custom-designed certificate"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Dozent LMS Certificate"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.dozentlms.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&"
|
||||
"utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Dozent LMS Certificate allows students to receive a certificate when they "
|
||||
"completed any course."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "dozentlms.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.dozentlms.com/dozent-lms-certificate/?utm_source=wp-plugins&utm_"
|
||||
"campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:22
|
||||
msgctxt "post type general name"
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:23
|
||||
msgctxt "post type singular name"
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:24
|
||||
msgctxt "admin menu"
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:25
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:26
|
||||
msgctxt "certificate"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
3042
spec/fixtures/dynamic_finders/plugin_version/dozent/translation_file/languages/dozent.pot
vendored
Normal file
3042
spec/fixtures/dynamic_finders/plugin_version/dozent/translation_file/languages/dozent.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
@@ -0,0 +1,67 @@
|
||||
# Copyright (C) 2021 Erika Gili
|
||||
# This file is distributed under the same license as the Email Fields for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Email Fields for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-fields-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-16T10:40:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: email-fields-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Email Fields for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.penguinet.it/progetti/email-fields-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Manage Reply To and BCC of the WooCommerce emails"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Erika Gili"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.penguinet.it"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:38
|
||||
msgid "Email Reply-To options"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:44
|
||||
msgid "\"Reply-To\" name"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:45
|
||||
msgid "How the Reply-To name appears in outgoing WooCommerce emails."
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:57
|
||||
msgid "\"Reply-To\" address"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:58
|
||||
msgid "The Reply-To email address in outgoing WooCommerce emails. Add only one."
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:85
|
||||
msgid "Email Bcc options"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:91
|
||||
msgid "\"Bcc\" address"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:92
|
||||
msgid "Add one blind carbon copy address in outgoing WooCommerce emails."
|
||||
msgstr ""
|
||||
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,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
@@ -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,64 @@
|
||||
# Copyright (C) 2021 Lucia Dossin
|
||||
# This file is distributed under the same license as the FBC Latest Backup for UpdraftPlus plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FBC Latest Backup for UpdraftPlus 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fbc-latest-backup\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-03-12T14:02:27+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: fbc-latest-backup\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "FBC Latest Backup for UpdraftPlus"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a widget to the dashboard, letting you know the date and time of latest backup and how many edits were made since then, if any"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Lucia Dossin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:20
|
||||
msgid "No information available. Please make sure that UpdraftPlus Backup plugin is installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:57
|
||||
msgid "Edits since last backup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:59
|
||||
msgid "Edit since last backup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:67
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:70
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:73
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:80
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:91
|
||||
msgid "No information available. Please check if at least one backup has been made."
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:98
|
||||
#: admin/widget.php:106
|
||||
msgid "Latest Backup"
|
||||
msgstr ""
|
||||
1315
spec/fixtures/dynamic_finders/plugin_version/firebox/translation_file/languages/firebox.pot
vendored
Normal file
1315
spec/fixtures/dynamic_finders/plugin_version/firebox/translation_file/languages/firebox.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
23
spec/fixtures/dynamic_finders/plugin_version/firepro/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/firepro/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "firepro",
|
||||
"version": "0.1.0",
|
||||
"description": "Example block written with ESNext standard and JSX support – build step required.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "node compile/compile.js && wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1",
|
||||
"raw-loader": "^4.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/media-utils": "^1.18.0"
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
1880
spec/fixtures/dynamic_finders/plugin_version/forumwp/translation_file/languages/forumwp-en_US.po
vendored
Normal file
1880
spec/fixtures/dynamic_finders/plugin_version/forumwp/translation_file/languages/forumwp-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
25
spec/fixtures/dynamic_finders/plugin_version/friends/composer_file/package.json
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/friends/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "Friends",
|
||||
"version": "1.5.4",
|
||||
"private": true,
|
||||
"description": "Blocks of the Friends Plugin for WordPress",
|
||||
"homepage": "https://wpfriends.at/",
|
||||
"repository": "git+https://github.com/akirk/friends.git",
|
||||
"author": "Alex Kirk",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [],
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^14.0.0",
|
||||
"lerna": "^3.20.2",
|
||||
"spectre.css": "^0.5.9"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "lerna run build",
|
||||
"lint:js": "lerna run lint:js",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json ./package.json ./blocks/*/package.json",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js:fix": "npm run lint:js -- --fix",
|
||||
"test": "wp-scripts test-unit-js",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,996 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Get-A-Quote 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-13 12:35+0530\n"
|
||||
"PO-Revision-Date: 2021-03-13 12:35+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\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.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: esc_html_e;__;_e;esc_html__;esc_attr_e;esc_url_raw;"
|
||||
"esc_url;esc_attr;esc_html;esc_attr__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:189
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:45
|
||||
msgid "Get A Quote"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:196
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:251
|
||||
msgid "Enable Quote Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:253
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:264 admin/class-get-a-quote-admin.php:435
|
||||
#: admin/class-get-a-quote-admin.php:455
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:282
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:283
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:284
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:288
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:289
|
||||
msgid "Please submit a ticket , our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:290
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:335
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:338
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:355
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:32
|
||||
msgid "Form Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:360
|
||||
msgid "Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:364
|
||||
msgid "Email Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:390
|
||||
msgid "Activate Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:400
|
||||
msgid "Get reply on email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:407
|
||||
msgid "Enter reply back email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:410
|
||||
msgid "Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:417
|
||||
msgid "Subject Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:420
|
||||
msgid "Email Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:429
|
||||
msgid "Message Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:484
|
||||
msgid "Enable Quote Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:492 admin/class-get-a-quote-admin.php:505
|
||||
#: includes/class-get-a-quote.php:461 includes/class-get-a-quote.php:464
|
||||
#: includes/class-get-a-quote.php:467
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:493 admin/class-get-a-quote-admin.php:506
|
||||
#: includes/class-get-a-quote.php:461 includes/class-get-a-quote.php:464
|
||||
#: includes/class-get-a-quote.php:467
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:497
|
||||
msgid "Enable Service Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:519
|
||||
msgid "Quote Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:543
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:57
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:552
|
||||
msgid "Quote Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:555
|
||||
#: common/class-get-a-quote-common.php:152
|
||||
msgid "Quote Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:557
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:69
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:87
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:558
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:89
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:116
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:559
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
msgid "get-a-quote-support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:51
|
||||
msgid "&gaq_tab="
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:18
|
||||
msgid "admin/src/images/overview-banner.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:22
|
||||
msgid "What is Get A Quote for WordPress?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:26
|
||||
msgid ""
|
||||
"Get A Quote for WordPress plugin helps you create & add a quotation form on "
|
||||
"your WordPress website. Users can fill this form to submit a request for a "
|
||||
"quotation of the required services. With this plugin, you can add multiple "
|
||||
"statuses for\n"
|
||||
"\t\t\t\tyour quotations, multiple services in the form, & acknowledge users "
|
||||
"through an email for the successful submission of their quote request."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:32
|
||||
msgid "With our Get A Quote for WordPress plugin you can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:34
|
||||
msgid "Add a quote form on your website"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:35
|
||||
msgid "Notify customers for their quote submission through emails"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:36
|
||||
msgid "Enable/Disable your quotation form fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:37
|
||||
msgid "Enable/Disable service and quote status taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:38
|
||||
msgid "Add different statuses for your quotation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:45
|
||||
msgid "admin/src/images/Quotation-Form.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:48
|
||||
msgid "Quotation Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:52
|
||||
msgid ""
|
||||
"The plugin provides a quotation form you can add on your website. Customers "
|
||||
"will fill this form to submit a quotation request on your website. As soon "
|
||||
"as you install and activate our Get A Quote plugin, this form will "
|
||||
"automatically\n"
|
||||
"\t\t\t\t\t\t\tbe created."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:64
|
||||
msgid "admin/src/images/taxonomy.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:67
|
||||
msgid "Service and quote status taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:68
|
||||
msgid ""
|
||||
"The plugin provides you two different types of taxonomies. <b>1) Quote "
|
||||
"Service Taxonomy</b>, <b>2) Quote Status Taxonomy</b>. Merchants can enable/"
|
||||
"disable these taxonomies as per their requirements."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:75
|
||||
msgid "admin/src/images/Multiple-Quotation-Status.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:78
|
||||
msgid "Multiple quotation statuses"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:79
|
||||
msgid ""
|
||||
"Our Get A Quote plugin helps merchants to create multiple statuses for "
|
||||
"quotations. Admin can check and change the status for a particular quote."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:86
|
||||
msgid "admin/src/images/services.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:89
|
||||
msgid "Multiple services"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:93
|
||||
msgid ""
|
||||
"With this plugin, merchants can create multiple services to offer. Customers "
|
||||
"will be able to select these services through the quotation form you added "
|
||||
"to your website. These services will be displayed in the Services field of\n"
|
||||
"\t\t\t\t\t\t\tyour quotation form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:105
|
||||
msgid "admin/src/images/acknowledgement.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:108
|
||||
msgid "Submission Acknowledgement through email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:112
|
||||
msgid ""
|
||||
"Our Get A Quote plugin also lets you send an acknowledgment email to the "
|
||||
"user whenever s/he submits the quote requests. You can create and save your "
|
||||
"email subject and message which will be sent to the user to notify them "
|
||||
"about\n"
|
||||
"\t\t\t\t\t\t\ttheir successful submission of their quote request."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:124
|
||||
msgid "Exclusive Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:125
|
||||
msgid "Receive dedicated "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:125
|
||||
msgid "24x7 "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:128
|
||||
msgid ""
|
||||
"Phone, Email & Skype support. Our Support is ready to assist you regarding "
|
||||
"any query, issue, or feature request and if that doesn't help our Technical "
|
||||
"team will connect with you personally and have your query\n"
|
||||
"\t\t\t\t\tresolved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:145
|
||||
msgid "Connect with us in one click"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:146
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-email-setting.php:38
|
||||
#: admin/partials/get-a-quote-taxonomies.php:44
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:20
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:18
|
||||
msgid "admin/src/images/mwb-logo1.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:32
|
||||
msgid "(current)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:35
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:30
|
||||
msgid "Preview Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:41
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:52
|
||||
msgid "Save Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:57
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:105
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:61
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:65
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:67
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:73
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:77
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:96
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:81
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:77
|
||||
msgid "Zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:85
|
||||
msgid "Budget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:93
|
||||
msgid "Additional"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:101
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:103
|
||||
msgid "Placeholder-Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:36
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:18
|
||||
msgid "Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:19
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:20
|
||||
msgid "Operation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:23
|
||||
msgid "Contact Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:25
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:64
|
||||
#: common/class-get-a-quote-common.php:153
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:65
|
||||
msgid "Add Status Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:66
|
||||
#: admin/partials/get-a-quote-taxonomies.php:82
|
||||
msgid "Active Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:70
|
||||
#: admin/partials/get-a-quote-taxonomies.php:86
|
||||
msgid "Term Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:80
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:46
|
||||
#: common/class-get-a-quote-common.php:114
|
||||
msgid "Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:81
|
||||
msgid "Add Service Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:38
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:106
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:125
|
||||
msgid "Additional Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:136
|
||||
msgid "Attached File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:150
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:152
|
||||
msgid "No File Selected"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:72
|
||||
#: common/class-get-a-quote-common.php:83
|
||||
msgid "Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:73
|
||||
#: common/class-get-a-quote-common.php:140
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:74
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:75
|
||||
msgid "Add New Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:76
|
||||
msgid "Edit Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:77
|
||||
msgid "New Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:78
|
||||
msgid "All Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:79
|
||||
msgid "View Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:80
|
||||
msgid "Search Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:81
|
||||
msgid "No Quotes Found"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:82
|
||||
msgid "No Quotes Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:113
|
||||
#: common/class-get-a-quote-common.php:123
|
||||
msgid "Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:115
|
||||
msgid "Search Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:116
|
||||
msgid "All Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:117
|
||||
msgid "Parent Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:118
|
||||
msgid "Parent Service:"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:119
|
||||
msgid "Edit Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:120
|
||||
msgid "Update Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:121
|
||||
msgid "Add New Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:122
|
||||
msgid "New Service Name"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:139
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:154
|
||||
msgid "Search Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:155
|
||||
msgid "All Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:156
|
||||
msgid "Parent Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:157
|
||||
msgid "Parent Status:"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:158
|
||||
msgid "Edit Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:159
|
||||
msgid "Update Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:160
|
||||
msgid "Add New Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:161
|
||||
msgid "New Status Name"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:162
|
||||
msgid "Quote Statuses"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:178
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:179
|
||||
msgid "Pending For Review"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:28
|
||||
msgid "x"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:32
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:42
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:34
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:35
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:45
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: get-a-quote.php:76 get-a-quote.php:82
|
||||
msgid "get-a-quote"
|
||||
msgstr ""
|
||||
|
||||
#: get-a-quote.php:149
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1834
|
||||
msgid "A Coruña"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1835
|
||||
msgid "Araba"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1836
|
||||
msgid "Albacete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1837
|
||||
msgid "Alicante"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1838
|
||||
msgid "Almería"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1839
|
||||
msgid "Asturias"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1840
|
||||
msgid "Ávila"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1841
|
||||
msgid "Badajoz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1842
|
||||
msgid "Baleares"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1843
|
||||
msgid "Barcelona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1844
|
||||
msgid "Burgos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1845
|
||||
msgid "Cáceres"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1846
|
||||
msgid "Cádiz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1847
|
||||
msgid "Cantabria"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1848
|
||||
msgid "Castellón"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1849
|
||||
msgid "Ceuta"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1850
|
||||
msgid "Ciudad Real"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1851
|
||||
msgid "Córdoba"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1852
|
||||
msgid "Cuenca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1853
|
||||
msgid "Girona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1854
|
||||
msgid "Granada"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1855
|
||||
msgid "Guadalajara"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1856
|
||||
msgid "Gipuzkoa"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1857
|
||||
msgid "Huelva"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1858
|
||||
msgid "Huesca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1859
|
||||
msgid "Jaén"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1860
|
||||
msgid "La Rioja"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1861
|
||||
msgid "Las Palmas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1862
|
||||
msgid "León"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1863
|
||||
msgid "Lleida"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1864
|
||||
msgid "Lugo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1865
|
||||
msgid "Madrid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1866
|
||||
msgid "Málaga"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1867
|
||||
msgid "Melilla"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1868
|
||||
msgid "Murcia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1869
|
||||
msgid "Navarra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1870
|
||||
msgid "Ourense"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1871
|
||||
msgid "Palencia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1872
|
||||
msgid "Pontevedra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1873
|
||||
msgid "Salamanca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1874
|
||||
msgid "Santa Cruz de Tenerife"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1875
|
||||
msgid "Segovia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1876
|
||||
msgid "Sevilla"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1877
|
||||
msgid "Soria"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1878
|
||||
msgid "Tarragona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1879
|
||||
msgid "Teruel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1880
|
||||
msgid "Toledo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1881
|
||||
msgid "Valencia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1882
|
||||
msgid "Valladolid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1883
|
||||
msgid "Bizkaia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1884
|
||||
msgid "Zamora"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1885
|
||||
msgid "Zaragoza"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-activator.php:60
|
||||
msgid "Quote Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-activator.php:62
|
||||
msgid "[gaq_form_fields]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:183
|
||||
msgid "Name field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:186
|
||||
msgid "Name is to be character or alphanumeric."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:199
|
||||
msgid "Email field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:203
|
||||
msgid "Invalid email format."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:212
|
||||
msgid "Phone field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:219
|
||||
msgid "Enter numbers only in Phone field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:224
|
||||
msgid "Enter only number in Phone field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:234
|
||||
msgid "Only characters are allowed in City field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:245
|
||||
msgid "Invalid Zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:254
|
||||
msgid "Only numbers are not allowed in State."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:264
|
||||
msgid "Only numbers are not allowed in Country."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:355
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:379
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:437
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:446
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:449
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:452
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:455
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:458
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:470
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:473
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:476 includes/class-get-a-quote.php:482
|
||||
#: includes/class-get-a-quote.php:485 includes/class-get-a-quote.php:513
|
||||
#: includes/class-get-a-quote.php:516
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:479
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:497
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:500 includes/class-get-a-quote.php:509
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:519
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:330
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:347
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:382
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:392
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:635
|
||||
msgid "Select Any One Option..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:893
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/get-a-quote-public-display.php:43
|
||||
msgid "Type Of Service"
|
||||
msgstr ""
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/gev-email-validator/change_log/CHANGELOG.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/gev-email-validator/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 2021-02-09
|
||||
@@ -0,0 +1,163 @@
|
||||
# Copyright (C) 2021 maranqz
|
||||
# This file is distributed under the same license as the GEV Email Validator plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GEV Email Validator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gev-email-validator\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-09T16:11:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "GEV Email Validator"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The Cheapest advanced Email Address Validation to forms. Prevents typos in email address field and eliminates spam submissions with fake email addresses. The solution is based on <a href=\"https://rapidapi.com/maranqz/api/email-validator15\" target=\"_blank\">Email Validator</a> service."
|
||||
msgstr "Самая дешевая настраиваемая проверка адреса электронной почты (email) для форм. Предотвращает опечатки в поле адреса электронной почты и устраняет спам с поддельных адресов. Решение основано на сервисе <a href=\"https://rapidapi.com/maranqz/api/email-validator15\" target=\"_blank\">Email Validator</a>."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "maranqz"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-email-validator-admin.php:167
|
||||
msgid "Email Validator Settings"
|
||||
msgstr "Email Validator Настройки"
|
||||
|
||||
#: admin/class-email-validator-admin.php:173
|
||||
msgid "API Key"
|
||||
msgstr "API ключ"
|
||||
|
||||
#: admin/class-email-validator-admin.php:183
|
||||
msgid "Verify API Key"
|
||||
msgstr "Проверить API ключ"
|
||||
|
||||
#: admin/class-email-validator-admin.php:184
|
||||
#: admin/partials/email-validator-admin-display.php:27
|
||||
msgid "Checking..."
|
||||
msgstr "Проверка..."
|
||||
|
||||
#: admin/class-email-validator-admin.php:188
|
||||
msgid "You can find the key in <a href=\"https://rapidapi.com/developer/security/\" target=\"_blank\">Rapid Api</a>, <a href=\"https://docs.rapidapi.com/docs/keys\" target=\"_blank\">Documentation</a>."
|
||||
msgstr "Вы можете найти ключ на <a href=\"https://rapidapi.com/developer/security/\" target=\"_blank\">Rapid Api</a>, <a href=\"https://docs.rapidapi.com/docs/keys\" target=\"_blank\">Документация</a>."
|
||||
|
||||
#: admin/class-email-validator-admin.php:195
|
||||
msgid "Block Invalid Email"
|
||||
msgstr "Блокировать невальдный email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:201
|
||||
msgid "Block Role-Based Email"
|
||||
msgstr "Блокировать ролевой email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:207
|
||||
msgid "Block Free Email"
|
||||
msgstr "Блокировать бесплатный email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:213
|
||||
msgid "Block Disposable Email"
|
||||
msgstr "Блокировать одноразовый email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:219
|
||||
msgid "Block UnDeliverable Email"
|
||||
msgstr "Блокировать недоставляемый email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:225
|
||||
msgid "Use in WP-Admin"
|
||||
msgstr "Использовать в WP-Admin"
|
||||
|
||||
#: admin/class-email-validator-admin.php:231
|
||||
msgid "Pages to Skip"
|
||||
msgstr "Страницы для пропуска"
|
||||
|
||||
#: admin/class-email-validator-admin.php:235
|
||||
msgid "One line one page as regular expression"
|
||||
msgstr "Одна линия, одна страница в виде регулярного выражения"
|
||||
|
||||
#: admin/class-email-validator-admin.php:243
|
||||
msgid "Emails to Skip"
|
||||
msgstr "Emailы для пропуска"
|
||||
|
||||
#: admin/class-email-validator-admin.php:247
|
||||
msgid "One line one email as regular expression"
|
||||
msgstr "Одна линия, один email в виде регулярного выражения"
|
||||
|
||||
#: admin/class-email-validator-admin.php:254
|
||||
msgid "Integration with"
|
||||
msgstr "Интеграция с"
|
||||
|
||||
#: admin/class-email-validator-admin.php:271
|
||||
msgid "Please enter a API Key and click \"Save\"."
|
||||
msgstr "Пожалуйста введите API ключ и нажмите «Сохранить»."
|
||||
|
||||
#: admin/class-email-validator-admin.php:294
|
||||
msgid "API Key is valid. Click \"Save\" button below."
|
||||
msgstr "API ключ достоверный. Нажмите кнопку «Сохранить» ниже."
|
||||
|
||||
#: admin/class-email-validator-admin.php:329
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: admin/class-email-validator-admin.php:343
|
||||
msgid "On"
|
||||
msgstr "Вкл."
|
||||
|
||||
#: admin/class-email-validator-admin.php:347
|
||||
msgid "Off"
|
||||
msgstr "Выкл."
|
||||
|
||||
#: admin/class-email-validator-admin.php:379
|
||||
msgid "Reset default value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:15
|
||||
msgid "Save"
|
||||
msgstr "Сохранить"
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:19
|
||||
msgid "Email Validation Demo"
|
||||
msgstr "Email Validation Демонстрация"
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:20
|
||||
msgid "You can use this form to see how Email Validator validates email addresses."
|
||||
msgstr "Вы можете использовать эту форму, чтобы увидеть, как Email Validator проверяет адреса электронной почты."
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:26
|
||||
msgid "Validate Email"
|
||||
msgstr "Проверить Email"
|
||||
|
||||
#: includes/class-email-validator-validator.php:26
|
||||
msgid "Please enter a "
|
||||
msgstr "Пожалуйста введите "
|
||||
|
||||
#: includes/class-email-validator-validator.php:27
|
||||
msgid " email address."
|
||||
msgstr " email."
|
||||
|
||||
#: includes/class-email-validator-validator.php:30
|
||||
msgid "valid"
|
||||
msgstr "валидный"
|
||||
|
||||
#: includes/class-email-validator-validator.php:31
|
||||
msgid "non-free"
|
||||
msgstr "небесплатный"
|
||||
|
||||
#: includes/class-email-validator-validator.php:32
|
||||
msgid "non-disposable"
|
||||
msgstr "неодноразовый"
|
||||
|
||||
#: includes/class-email-validator-validator.php:33
|
||||
msgid "non-role"
|
||||
msgstr "неролевой"
|
||||
|
||||
#: includes/class-email-validator-validator.php:34
|
||||
msgid "existing"
|
||||
msgstr "существующий"
|
||||
|
||||
#: includes/class-email-validator-validator.php:92
|
||||
msgid "Address is valid."
|
||||
msgstr "Адрес действителен."
|
||||
@@ -0,0 +1,5 @@
|
||||
# Improving Search Form Accessibility Changelog
|
||||
|
||||
## 1.0.0, 20210313
|
||||
|
||||
- Initial release.
|
||||
@@ -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,90 @@
|
||||
# Copyright (C) 2020 Integration of Insightly with caldera forms
|
||||
# This file is distributed under the same license as the Integration of Insightly with caldera forms package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integration of Insightly with caldera forms 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/zetamatic-integration-insightly-caldera-forms\n"
|
||||
"POT-Creation-Date: 2020-10-28 04:58:17+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: inc/class-integration-insightly-calderaforms.php:96
|
||||
msgid "Insightly Integration"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-integration-insightly-calderaforms.php:97
|
||||
msgid "Send Caldera Forms submission data to Insightly using Insightly REST API."
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:3
|
||||
msgid "Your API Key and API URL can be determined by accessing User Settings. To know more click "
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:3
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:7
|
||||
msgid "Please provide Base64 encoded Insightly API key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:10
|
||||
msgid "Insightly API key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:18
|
||||
msgid "Insightly API URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:26
|
||||
msgid "Insightly Object"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:29
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:35
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:42
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:49
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-activation-error.php:19
|
||||
msgid "You must Deactivate the <strong>Integration of Insightly and Caldera Forms Pro</strong> plugin before activating <strong>Integration of Insightly and Caldera Forms</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: PHP version
|
||||
|
||||
#: integration-insightly-calderaforms.php:54
|
||||
msgid "Integration of Insightly and Caldera Forms requires PHP version %s+, plugin is currently NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#: integration-insightly-calderaforms.php:78
|
||||
msgid "Don't show this message again!"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Integration of Insightly with caldera forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://zetamatic.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "The Insightly and Caldera Forms Integration plugin lets you add a new Insightly Processor to Caldera form. It automatically syncs data from your Caldera form to your Insightly CRM when the form is submitted."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "ZetaMatic"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,936 @@
|
||||
# Copyright (C) 2021 3D FlipBook
|
||||
# This file is distributed under the same license as the 3D FlipBook package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3D FlipBook 1.10.18\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/3d-flip-book\n"
|
||||
"POT-Creation-Date: 2021-03-20 05:25:30+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: inc/dictionary.php:26
|
||||
msgid "auto"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:27
|
||||
msgid "Sorry something went wrong with the server please try again"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:28
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:29
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:30
|
||||
msgid "Book properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:31
|
||||
msgid "Sheet properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:32
|
||||
msgid "Cover properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:33
|
||||
msgid "Page properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:34
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:35
|
||||
msgid "PDF file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:36
|
||||
msgid "Images, HTMLs files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:37
|
||||
msgid "interactive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:38
|
||||
msgid "Page number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:39
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:40
|
||||
msgid "CSS Layer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:41
|
||||
msgid "CSS"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:42
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:43
|
||||
msgid "Java Script"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:44
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:45
|
||||
msgid "Select files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:46
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:47
|
||||
msgid "Add image pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:48
|
||||
msgid "Add HTML pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:49
|
||||
msgid "Add PDF page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:50
|
||||
msgid "Remove all pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:51
|
||||
msgid "items per page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:52
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:53
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:54
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:55
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:56
|
||||
msgid "PDF page number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:57
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:58
|
||||
msgid "Change image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:59
|
||||
msgid "Auto thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:60
|
||||
msgid "book height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:61
|
||||
msgid "book width"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:62
|
||||
msgid "gravity constant"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:63
|
||||
msgid "amount of rendered cached pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:64
|
||||
msgid "render loaded hidden pages in the background"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:65
|
||||
msgid "render pages while they are flipping, it can slow down animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:66
|
||||
msgid "amount of loaded by user pages that are used for predicting user behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:67
|
||||
msgid "quantity of predicted pages for automatic loading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:68
|
||||
msgid "initial flipping velocity, it should be enough to overcome the gravity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:69
|
||||
msgid "max corner (flexible part of the sheet) deviation from the whole sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:70
|
||||
msgid "sheet flexibility"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:71
|
||||
msgid "part of the sheet that can be flexed, should be in range (0, 1)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:72
|
||||
msgid "speed of changing bending angle of the flexible corner"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:73
|
||||
msgid "curvature of open sheet, 0 is for flat sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:74
|
||||
msgid "width texture resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:75
|
||||
msgid "height texture resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:76
|
||||
msgid "sheet color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:77
|
||||
msgid "sheet thickness"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:78
|
||||
msgid "sheet weight"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:79
|
||||
msgid "cover height is more on 2*padding and cover width more on 1*padding than page ones, so you can set different sizes for typical pages and cover like for real book"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:80
|
||||
msgid "binder texture"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:81
|
||||
msgid "Deep linking URL parameter name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:82
|
||||
msgid "items pre page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:83
|
||||
msgid "3D Flip Book"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:84
|
||||
msgid "View mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:85
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:86
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:87
|
||||
msgid "Thumbnail and Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:88
|
||||
msgid "Lightbox activation link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:89
|
||||
msgid "Fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:90
|
||||
msgid "Select skin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:91
|
||||
msgid "3D FlipBook container CSS classes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:92
|
||||
msgid "Lightbox theme"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:93
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:94
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:95
|
||||
msgid "default value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:96
|
||||
msgid "Default value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:97
|
||||
msgid "minimum value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:98
|
||||
msgid "maximum value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:99
|
||||
msgid "amount of zoom levels"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:100
|
||||
msgid "amount of lighting levels"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:101
|
||||
msgid "pan step for comands cmdPanLeft, cmdPanRight, cmdPanUp, cmdPanDown"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:102
|
||||
msgid "zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:103
|
||||
msgid "zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:104
|
||||
msgid "set default zoom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:105
|
||||
msgid "show bookmarks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:106
|
||||
msgid "turn 10 pages backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:107
|
||||
msgid "turn a page backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:108
|
||||
msgid "turn a page forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:109
|
||||
msgid "turn 10 pages forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:110
|
||||
msgid "download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:111
|
||||
msgid "print"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:112
|
||||
msgid "toggle fulscreen mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:113
|
||||
msgid "show/hide the settings toolbar button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:114
|
||||
msgid "toggle the smart pan mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:115
|
||||
msgid "toggle single page mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:116
|
||||
msgid "toggle sound effects"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:117
|
||||
msgid "toggle statistics monitor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:118
|
||||
msgid "increase lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:119
|
||||
msgid "reduce lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:120
|
||||
msgid "move pan to the left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:121
|
||||
msgid "move pan to the right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:122
|
||||
msgid "move pan to the up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:123
|
||||
msgid "move pan to the down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:124
|
||||
msgid "rotate the book by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:125
|
||||
msgid "zoom by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:126
|
||||
msgid "pan by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:127
|
||||
msgid "zoom by means mouse wheel operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:128
|
||||
msgid "rotate the book by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:129
|
||||
msgid "zoom by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:130
|
||||
msgid "pan by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:131
|
||||
msgid "Ctrl, Shift, Alt, or their combination like Ctrl+Shift"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:132
|
||||
msgid "modificator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:133
|
||||
msgid "keyboard key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:134
|
||||
msgid "key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:135
|
||||
msgid "mouse button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:136
|
||||
msgid "button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:137
|
||||
msgid "amount of touches"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:138
|
||||
msgid "touches"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:139
|
||||
msgid "event that activates the action"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:140
|
||||
msgid "event"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:141
|
||||
msgid "is action enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:142
|
||||
msgid "is action enabled in narrow view"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:143
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:144
|
||||
msgid "enabledInNarrow"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:145
|
||||
msgid "is active by default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:146
|
||||
msgid "active"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:147
|
||||
msgid "is active for mobile devices by default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:148
|
||||
msgid "activeForMobile"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:149
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:150
|
||||
msgid "Lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:151
|
||||
msgid "Pan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:152 inc/settings.php:7
|
||||
msgid "3D FlipBook - Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:153
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:154
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:155
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:156
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:157
|
||||
msgid "One"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:158
|
||||
msgid "Two"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:159
|
||||
msgid "Three"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:160
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:161
|
||||
msgid "Middle"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:162
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:163
|
||||
msgid "Mouse button down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:164
|
||||
msgid "Mouse move"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:165
|
||||
msgid "Mouse button up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:166
|
||||
msgid "Click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:167
|
||||
msgid "Double click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:168
|
||||
msgid "Touch start"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:169
|
||||
msgid "Touch move"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:170
|
||||
msgid "Touch end"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:171
|
||||
msgid "Key down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:172
|
||||
msgid "Key press"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:173
|
||||
msgid "Key up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:174
|
||||
msgid "rtl is a right-to-left, top-to-bottom script, writing starts from the right of the page and continues to the left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:175
|
||||
msgid "Please wait... the Application is Loading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:176
|
||||
msgid "PDF is Loading:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:177
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:178
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:179
|
||||
msgid "Table of contents"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:180
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:181
|
||||
msgid "Bookmarks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:182
|
||||
msgid "Thumbnails"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:183
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:184
|
||||
msgid "Zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:185
|
||||
msgid "Zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:186
|
||||
msgid "Fit view"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:187
|
||||
msgid "10 pages backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:188
|
||||
msgid "10 pages forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:189
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:190
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:191
|
||||
msgid "Full screen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:192 inc/settings.php:8
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:193
|
||||
msgid "Smart pan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:194
|
||||
msgid "Single page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:195
|
||||
msgid "Sounds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:196
|
||||
msgid "Stats"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:197
|
||||
msgid "Increase lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:198
|
||||
msgid "Reduce lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:199
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:200
|
||||
msgid "See the debugging console for details (Ctrl+Shift+I in Chrome)."
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:201
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:202
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:203
|
||||
msgid "Skin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:204
|
||||
msgid "default control skin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:205
|
||||
msgid "CSS text for skin customization"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:206
|
||||
msgid "Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:207
|
||||
msgid "default lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:208
|
||||
msgid "Loading Animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:209
|
||||
msgid "show the skin loading animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:210
|
||||
msgid "show the book loading animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:211
|
||||
msgid "Auto Resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:212
|
||||
msgid "the page texture resolution will be computed automatically"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:213
|
||||
msgid "the computed automatically resolution is multiplied by the coefficient"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:214
|
||||
msgid "Narrow View"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:215
|
||||
msgid "width in pixels when the view switches into the narrow mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:216
|
||||
msgid "Ready Function"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:217
|
||||
msgid "function ready(scene) {/* code */} ready"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:218
|
||||
msgid "global book ready function: function ready(scene) {/* code */} ready"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:219
|
||||
msgid "Control properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:220
|
||||
msgid "Book style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:221
|
||||
msgid "Pages customization"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:222
|
||||
msgid "show advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:223
|
||||
msgid "render loaded hidden pages in the background on mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:224
|
||||
msgid "curvature of open sheet, 0.05 is for flat sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:225
|
||||
msgid "side texture"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:226
|
||||
msgid "3D FlipBook source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:227
|
||||
msgid "Prebuilt"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:228
|
||||
msgid "PDF URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:229 inc/taxonomy.php:7
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:230
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:231
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:232
|
||||
msgid "500px, 50% - % of parent container height, empty - auto"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:233
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:234
|
||||
msgid "color: #333"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:235
|
||||
msgid "image: http://example.com/image.jpg"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:236
|
||||
msgid "http://example.com?fb3d-page=1"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:237
|
||||
msgid "Thumbnail URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:238
|
||||
msgid "Volumetric"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:239
|
||||
msgid "Volumetric with paddings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:240
|
||||
msgid "Flat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:12
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:25
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:40
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:81
|
||||
msgid "User Manual"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:84
|
||||
msgid "Video Examples"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:87
|
||||
msgid "Support Forum"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:100
|
||||
msgid "More options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post.php:7
|
||||
msgid "3D FlipBook"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post.php:9
|
||||
msgid "All Books"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode-generator.php:7 inc/shortcode-generator.php:24
|
||||
msgid "3D FlipBook - Shortcode Generator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode-generator.php:8
|
||||
msgid "Shortcode Generator"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "3D FlipBook"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://3dflipbook.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Interactive 3D FlipBook Powered Physics Engine WordPress Plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "iberezansky"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://3dflipbook.net/"
|
||||
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 ""
|
||||
2045
spec/fixtures/dynamic_finders/plugin_version/just-tables/translation_file/languages/just-tables.pot
vendored
Normal file
2045
spec/fixtures/dynamic_finders/plugin_version/just-tables/translation_file/languages/just-tables.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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
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"
|
||||
@@ -0,0 +1,592 @@
|
||||
# Copyright (C) 2021 MotoPress
|
||||
# This file is distributed under the same license as the Hotel Booking & Elementor Integration plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hotel Booking & Elementor Integration 1.1.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mphb-elementor\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-23T14:03:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: mphb-elementor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hotel Booking & Elementor Integration"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://motopress.com/products/hotel-booking-elementor-integration/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Manage hotel booking shortcodes in Elementor builder."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MotoPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://motopress.com/"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:67
|
||||
msgid "MotoPress Hotel Booking"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:16
|
||||
msgid "Availability Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:33
|
||||
#: widgets/availability-widget.php:33
|
||||
#: widgets/booking-confirmation-widget.php:33
|
||||
#: widgets/checkout-widget.php:33
|
||||
#: widgets/rates-widget.php:33
|
||||
#: widgets/room-widget.php:33
|
||||
#: widgets/rooms-widget.php:33
|
||||
#: widgets/search-form-widget.php:39
|
||||
#: widgets/search-results-widget.php:33
|
||||
#: widgets/services-widget.php:33
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:39
|
||||
#: widgets/availability-widget.php:39
|
||||
#: widgets/rates-widget.php:39
|
||||
#: widgets/room-widget.php:39
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:40
|
||||
#: widgets/rates-widget.php:40
|
||||
msgid "ID of accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:46
|
||||
msgid "How many months to show"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:47
|
||||
msgid "Set the number of columns or the number of rows and columns separated by comma. Example: \"3\" or \"2,3\""
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:53
|
||||
#: widgets/availability-widget.php:46
|
||||
#: widgets/booking-confirmation-widget.php:38
|
||||
#: widgets/checkout-widget.php:38
|
||||
#: widgets/rates-widget.php:46
|
||||
#: widgets/room-widget.php:134
|
||||
#: widgets/rooms-widget.php:134
|
||||
#: widgets/search-form-widget.php:86
|
||||
#: widgets/search-results-widget.php:115
|
||||
#: widgets/services-widget.php:53
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:54
|
||||
#: widgets/availability-widget.php:47
|
||||
#: widgets/booking-confirmation-widget.php:39
|
||||
#: widgets/checkout-widget.php:39
|
||||
#: widgets/rates-widget.php:47
|
||||
#: widgets/room-widget.php:135
|
||||
#: widgets/rooms-widget.php:135
|
||||
#: widgets/search-form-widget.php:87
|
||||
#: widgets/search-results-widget.php:116
|
||||
#: widgets/services-widget.php:54
|
||||
msgid "Custom CSS class for shortcode wrapper."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-widget.php:16
|
||||
msgid "Booking Form"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-widget.php:40
|
||||
msgid "ID of Accommodation Type to check availability."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/booking-confirmation-widget.php:16
|
||||
msgid "Booking Confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/checkout-widget.php:16
|
||||
msgid "Checkout Form"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rates-widget.php:16
|
||||
msgid "Accommodation Rates"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:16
|
||||
msgid "Single Accommodation"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:40
|
||||
msgid "ID of accommodation type to display."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:46
|
||||
#: widgets/rooms-widget.php:38
|
||||
#: widgets/search-results-widget.php:38
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:47
|
||||
#: widgets/rooms-widget.php:39
|
||||
#: widgets/search-results-widget.php:39
|
||||
msgid "Whether to display title of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:50
|
||||
#: widgets/room-widget.php:61
|
||||
#: widgets/room-widget.php:72
|
||||
#: widgets/room-widget.php:83
|
||||
#: widgets/room-widget.php:94
|
||||
#: widgets/room-widget.php:105
|
||||
#: widgets/room-widget.php:116
|
||||
#: widgets/room-widget.php:127
|
||||
#: widgets/rooms-widget.php:42
|
||||
#: widgets/rooms-widget.php:53
|
||||
#: widgets/rooms-widget.php:64
|
||||
#: widgets/rooms-widget.php:75
|
||||
#: widgets/rooms-widget.php:86
|
||||
#: widgets/rooms-widget.php:97
|
||||
#: widgets/rooms-widget.php:108
|
||||
#: widgets/rooms-widget.php:119
|
||||
#: widgets/search-results-widget.php:42
|
||||
#: widgets/search-results-widget.php:53
|
||||
#: widgets/search-results-widget.php:64
|
||||
#: widgets/search-results-widget.php:75
|
||||
#: widgets/search-results-widget.php:86
|
||||
#: widgets/search-results-widget.php:97
|
||||
#: widgets/search-results-widget.php:108
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:51
|
||||
#: widgets/room-widget.php:62
|
||||
#: widgets/room-widget.php:73
|
||||
#: widgets/room-widget.php:84
|
||||
#: widgets/room-widget.php:95
|
||||
#: widgets/room-widget.php:106
|
||||
#: widgets/room-widget.php:117
|
||||
#: widgets/room-widget.php:128
|
||||
#: widgets/rooms-widget.php:43
|
||||
#: widgets/rooms-widget.php:54
|
||||
#: widgets/rooms-widget.php:65
|
||||
#: widgets/rooms-widget.php:76
|
||||
#: widgets/rooms-widget.php:87
|
||||
#: widgets/rooms-widget.php:98
|
||||
#: widgets/rooms-widget.php:109
|
||||
#: widgets/rooms-widget.php:120
|
||||
#: widgets/search-results-widget.php:43
|
||||
#: widgets/search-results-widget.php:54
|
||||
#: widgets/search-results-widget.php:65
|
||||
#: widgets/search-results-widget.php:76
|
||||
#: widgets/search-results-widget.php:87
|
||||
#: widgets/search-results-widget.php:98
|
||||
#: widgets/search-results-widget.php:109
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:57
|
||||
#: widgets/rooms-widget.php:49
|
||||
#: widgets/search-results-widget.php:49
|
||||
msgid "Featured image"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:58
|
||||
#: widgets/rooms-widget.php:50
|
||||
#: widgets/search-results-widget.php:50
|
||||
msgid "Whether to display featured image of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:68
|
||||
#: widgets/rooms-widget.php:60
|
||||
#: widgets/search-results-widget.php:60
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:69
|
||||
#: widgets/rooms-widget.php:61
|
||||
#: widgets/search-results-widget.php:61
|
||||
msgid "Whether to display gallery of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:79
|
||||
#: widgets/rooms-widget.php:71
|
||||
#: widgets/search-results-widget.php:71
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:80
|
||||
#: widgets/rooms-widget.php:72
|
||||
#: widgets/search-results-widget.php:72
|
||||
msgid "Whether to display excerpt (short description) of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:90
|
||||
#: widgets/rooms-widget.php:82
|
||||
#: widgets/search-results-widget.php:82
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:91
|
||||
#: widgets/rooms-widget.php:83
|
||||
#: widgets/search-results-widget.php:83
|
||||
msgid "Whether to display details of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:101
|
||||
#: widgets/rooms-widget.php:93
|
||||
#: widgets/rooms-widget.php:196
|
||||
#: widgets/search-results-widget.php:93
|
||||
#: widgets/search-results-widget.php:145
|
||||
#: widgets/services-widget.php:83
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:102
|
||||
#: widgets/rooms-widget.php:94
|
||||
#: widgets/search-results-widget.php:94
|
||||
msgid "Whether to display price of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:112
|
||||
#: widgets/search-results-widget.php:104
|
||||
msgid "View button"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:113
|
||||
#: widgets/rooms-widget.php:105
|
||||
#: widgets/search-results-widget.php:105
|
||||
msgid "Whether to display \"View Details\" button with the link to accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:123
|
||||
#: widgets/rooms-widget.php:115
|
||||
msgid "Book Button"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:124
|
||||
#: widgets/rooms-widget.php:116
|
||||
msgid "Whether to display \"Book\" button."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:16
|
||||
msgid "Accommodation Types"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:104
|
||||
msgid "View Button"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:126
|
||||
#: widgets/services-widget.php:45
|
||||
msgid "Count per page"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:127
|
||||
#: widgets/services-widget.php:46
|
||||
msgid "-1 to display all."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:141
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:142
|
||||
msgid "Comma-separated IDs of categories that will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:148
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:149
|
||||
msgid "Comma-separated IDs of tags that will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:155
|
||||
#: widgets/services-widget.php:38
|
||||
msgid "IDs"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:156
|
||||
msgid "Comma-separated IDs of accommodations that will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:162
|
||||
msgid "Relation"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:163
|
||||
msgid "Logical relationship between each taxonomy when there is more than one."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:166
|
||||
msgid "AND"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:167
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:174
|
||||
#: widgets/rooms-widget.php:202
|
||||
#: widgets/search-results-widget.php:123
|
||||
#: widgets/search-results-widget.php:151
|
||||
#: widgets/services-widget.php:61
|
||||
#: widgets/services-widget.php:89
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:179
|
||||
#: widgets/search-results-widget.php:128
|
||||
#: widgets/services-widget.php:66
|
||||
msgid "Order By"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:182
|
||||
#: widgets/search-results-widget.php:131
|
||||
#: widgets/services-widget.php:69
|
||||
msgid "No order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:183
|
||||
#: widgets/search-results-widget.php:132
|
||||
#: widgets/services-widget.php:70
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:184
|
||||
#: widgets/search-results-widget.php:133
|
||||
#: widgets/services-widget.php:71
|
||||
msgid "Post author"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:185
|
||||
#: widgets/search-results-widget.php:134
|
||||
#: widgets/services-widget.php:72
|
||||
msgid "Post title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:186
|
||||
#: widgets/search-results-widget.php:135
|
||||
#: widgets/services-widget.php:73
|
||||
msgid "Post name (post slug)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:187
|
||||
#: widgets/search-results-widget.php:136
|
||||
#: widgets/services-widget.php:74
|
||||
msgid "Post date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:188
|
||||
#: widgets/search-results-widget.php:137
|
||||
#: widgets/services-widget.php:75
|
||||
msgid "Last modified date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:189
|
||||
#: widgets/search-results-widget.php:138
|
||||
#: widgets/services-widget.php:76
|
||||
msgid "Parent ID"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:190
|
||||
#: widgets/search-results-widget.php:139
|
||||
#: widgets/services-widget.php:77
|
||||
msgid "Random order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:191
|
||||
#: widgets/search-results-widget.php:140
|
||||
#: widgets/services-widget.php:78
|
||||
msgid "Number of comments"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:192
|
||||
#: widgets/search-results-widget.php:141
|
||||
#: widgets/services-widget.php:79
|
||||
msgid "Relevance"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:193
|
||||
#: widgets/search-results-widget.php:142
|
||||
#: widgets/services-widget.php:80
|
||||
msgid "Page order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:194
|
||||
#: widgets/search-results-widget.php:143
|
||||
#: widgets/services-widget.php:81
|
||||
msgid "Meta value"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:195
|
||||
#: widgets/search-results-widget.php:144
|
||||
#: widgets/services-widget.php:82
|
||||
msgid "Numeric meta value"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:205
|
||||
#: widgets/search-results-widget.php:154
|
||||
#: widgets/services-widget.php:92
|
||||
msgid "Ascending (1, 2, 3)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:206
|
||||
#: widgets/search-results-widget.php:155
|
||||
#: widgets/services-widget.php:93
|
||||
msgid "Descending (3, 2, 1)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:212
|
||||
#: widgets/search-results-widget.php:161
|
||||
#: widgets/services-widget.php:99
|
||||
msgid "Meta Name"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:213
|
||||
#: widgets/search-results-widget.php:162
|
||||
#: widgets/services-widget.php:100
|
||||
msgid "Custom field name. Required if \"orderby\" is one of the \"meta_value\", \"meta_value_num\" or \"meta_value_*\"."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:219
|
||||
#: widgets/search-results-widget.php:168
|
||||
#: widgets/services-widget.php:106
|
||||
msgid "Meta Type"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:220
|
||||
#: widgets/search-results-widget.php:169
|
||||
#: widgets/services-widget.php:107
|
||||
msgid "Specified type of the custom field. Can be used in conjunction with \"orderby\" = \"meta_value\"."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:223
|
||||
#: widgets/search-results-widget.php:172
|
||||
#: widgets/services-widget.php:110
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:224
|
||||
#: widgets/search-results-widget.php:173
|
||||
#: widgets/services-widget.php:111
|
||||
msgid "Numeric"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:225
|
||||
#: widgets/search-results-widget.php:174
|
||||
#: widgets/services-widget.php:112
|
||||
msgid "Binary"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:226
|
||||
#: widgets/search-results-widget.php:175
|
||||
#: widgets/services-widget.php:113
|
||||
msgid "String"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:227
|
||||
#: widgets/search-results-widget.php:176
|
||||
#: widgets/services-widget.php:114
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:228
|
||||
#: widgets/search-results-widget.php:177
|
||||
#: widgets/services-widget.php:115
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:229
|
||||
#: widgets/search-results-widget.php:178
|
||||
#: widgets/services-widget.php:116
|
||||
msgid "Date and time"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:230
|
||||
#: widgets/search-results-widget.php:179
|
||||
#: widgets/services-widget.php:117
|
||||
msgid "Decimal number"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:231
|
||||
#: widgets/search-results-widget.php:180
|
||||
#: widgets/services-widget.php:118
|
||||
msgid "Signed number"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:232
|
||||
#: widgets/search-results-widget.php:181
|
||||
#: widgets/services-widget.php:119
|
||||
msgid "Unsigned number"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:16
|
||||
msgid "Search Availability Form"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:44
|
||||
msgid "Adults"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:45
|
||||
msgid "The number of adults presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:53
|
||||
msgid "Children"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:54
|
||||
msgid "The number of children presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:62
|
||||
msgid "Check-in date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:63
|
||||
msgid "Check-in date presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:70
|
||||
msgid "Check-out date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:71
|
||||
msgid "Check-out date presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:78
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:79
|
||||
msgid "Custom attributes for advanced search."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:80
|
||||
msgid "Slugs of attributes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-results-widget.php:16
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/services-widget.php:16
|
||||
msgid "Services"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/services-widget.php:39
|
||||
msgid "Comma-separated IDs of services that will be shown. All services by default."
|
||||
msgstr ""
|
||||
177
spec/fixtures/dynamic_finders/plugin_version/mphb-styles/translation_file/languages/mphb-styles.pot
vendored
Normal file
177
spec/fixtures/dynamic_finders/plugin_version/mphb-styles/translation_file/languages/mphb-styles.pot
vendored
Normal file
@@ -0,0 +1,177 @@
|
||||
# Copyright (C) 2021 MotoPress
|
||||
# This file is distributed under the same license as the Hotel Booking Styles plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hotel Booking Styles 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mphb-styles\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-23T14:21:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: mphb-styles\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hotel Booking Styles"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Extra CSS styles to customize the MotoPress Hotel Booking plugin forms and widgets."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MotoPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://motopress.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:48
|
||||
#: includes/settings-tab.php:21
|
||||
msgid "Styles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:52
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:53
|
||||
#: includes/filters.php:274
|
||||
#: assets/js/extend-block-styles.js:6
|
||||
#: assets/js/extend-block-styles.js:11
|
||||
#: assets/js/extend-blocks.js:17
|
||||
#: assets/js/extend-blocks.js:22
|
||||
msgid "Horizontal Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:68
|
||||
msgid "Customization"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:75
|
||||
#: assets/js/extend-blocks.js:109
|
||||
msgid "Hide Labels"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:77
|
||||
#: includes/settings-tab.php:44
|
||||
#: assets/js/extend-blocks.js:110
|
||||
msgid "Remove all labels from the form fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:86
|
||||
#: assets/js/extend-blocks.js:121
|
||||
msgid "No Paddings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:88
|
||||
#: includes/settings-tab.php:50
|
||||
#: assets/js/extend-blocks.js:122
|
||||
msgid "Remove paddings between the form fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:97
|
||||
#: assets/js/extend-blocks.js:133
|
||||
msgid "Hide Tips"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:99
|
||||
#: includes/settings-tab.php:56
|
||||
#: assets/js/extend-blocks.js:134
|
||||
msgid "Hide message about required fields. Applied automatically on the horizontal form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:109
|
||||
#: includes/filters.php:280
|
||||
#: assets/js/extend-blocks.js:145
|
||||
msgid "Multiple Lines"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:111
|
||||
#: includes/filters.php:282
|
||||
#: includes/settings-tab.php:62
|
||||
#: assets/js/extend-blocks.js:146
|
||||
msgid "Wrap form fields onto multiple lines."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:121
|
||||
#: includes/filters.php:286
|
||||
#: assets/js/extend-blocks.js:157
|
||||
msgid "Stretch Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:123
|
||||
#: includes/filters.php:288
|
||||
#: includes/settings-tab.php:68
|
||||
#: assets/js/extend-blocks.js:158
|
||||
msgid "Stretch the button to the maximum available width."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:132
|
||||
#: includes/filters.php:291
|
||||
#: assets/js/extend-blocks.js:169
|
||||
msgid "Fields Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:134
|
||||
#: includes/filters.php:298
|
||||
#: includes/settings-tab.php:75
|
||||
#: assets/js/extend-blocks.js:170
|
||||
msgid "Limit the maximum width of the form fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:137
|
||||
#: includes/filters.php:263
|
||||
#: assets/js/extend-blocks.js:173
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:138
|
||||
msgid "20%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:139
|
||||
msgid "25%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:140
|
||||
msgid "33%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:141
|
||||
msgid "50%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:142
|
||||
msgid "100%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:276
|
||||
#: includes/settings-tab.php:38
|
||||
msgid "Make the form horizontal."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is an example of code
|
||||
#: includes/settings-tab.php:29
|
||||
msgid "Use spaces to add several classes. Example of using styles with shortcodes: %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-tab.php:39
|
||||
msgid "Available for Availability Search Form, Booking Form and Search Availability Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-tab.php:45
|
||||
#: includes/settings-tab.php:51
|
||||
#: includes/settings-tab.php:57
|
||||
msgid "Available for Availability Search Form and Booking Form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-tab.php:63
|
||||
#: includes/settings-tab.php:69
|
||||
#: includes/settings-tab.php:76
|
||||
msgid "Available for Availability Search Form and Search Availability Widget."
|
||||
msgstr ""
|
||||
189
spec/fixtures/dynamic_finders/plugin_version/newspack-newsletters/change_log/CHANGELOG.md
vendored
Normal file
189
spec/fixtures/dynamic_finders/plugin_version/newspack-newsletters/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,189 @@
|
||||
# 1.0.0 (2020-05-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add alpha to branches ([d3549f5](https://github.com/Automattic/newspack-newsletters/commit/d3549f5ea3984cd9b9344e8917f4e7406f81e859))
|
||||
* better docblock description ([f0e592b](https://github.com/Automattic/newspack-newsletters/commit/f0e592b84d3189351e952600ac581c3f69a675cf))
|
||||
* bring back groups ui ([df2da81](https://github.com/Automattic/newspack-newsletters/commit/df2da8186370ade3c849b181c92e0b97d810b6de))
|
||||
* condition ([4083d80](https://github.com/Automattic/newspack-newsletters/commit/4083d80fa3cb3a1b5d62d7ce4309fee2b78cedd9))
|
||||
* crash when editing 'from' fields ([934772a](https://github.com/Automattic/newspack-newsletters/commit/934772a7b10fc181402e416507e9390da2eded13))
|
||||
* custom colors ([125f18c](https://github.com/Automattic/newspack-newsletters/commit/125f18ccf00904d7cf84f5068270a1100201ca73)), closes [#93](https://github.com/Automattic/newspack-newsletters/issues/93)
|
||||
* default values for keys ([a5164dc](https://github.com/Automattic/newspack-newsletters/commit/a5164dc0c21e9c030fe95b7204347135893831ff)), closes [#97](https://github.com/Automattic/newspack-newsletters/issues/97)
|
||||
* error on data retrieval if no mailchimp campaign is set ([203d64b](https://github.com/Automattic/newspack-newsletters/commit/203d64bcbbba81020df3c23a513e2bace1f8295b))
|
||||
* layout preview viewport width ([#84](https://github.com/Automattic/newspack-newsletters/issues/84)) ([779b7cf](https://github.com/Automattic/newspack-newsletters/commit/779b7cf33634e6cb1ebda21f2b837822c31b183a))
|
||||
* link colour and text-decoration ([#125](https://github.com/Automattic/newspack-newsletters/issues/125)) ([29be13d](https://github.com/Automattic/newspack-newsletters/commit/29be13d081667c16c0e2ae66b1b45513ef045885))
|
||||
* missing externallink import, lost in rebase ([e289195](https://github.com/Automattic/newspack-newsletters/commit/e289195fde7ed7eba725d289eb2195d12e78ff53))
|
||||
* missing import; formatting ([1bf80d4](https://github.com/Automattic/newspack-newsletters/commit/1bf80d4c25395198efdab965aaafb68ce50535b7))
|
||||
* missing notice after campaign has been sent ([42a0889](https://github.com/Automattic/newspack-newsletters/commit/42a08891132fcc0bc820ac043102638487961070))
|
||||
* newsletter layouts preview thumbnails ([#175](https://github.com/Automattic/newspack-newsletters/issues/175)) ([7280483](https://github.com/Automattic/newspack-newsletters/commit/7280483e792b2ec5502ec8a538a262616b2aa144))
|
||||
* posts inserter infinite loop ([42508b0](https://github.com/Automattic/newspack-newsletters/commit/42508b06d5f88749e2361342da1bbcdde5c6b57f)), closes [#146](https://github.com/Automattic/newspack-newsletters/issues/146)
|
||||
* posts inserter no-insertion workflow ([#174](https://github.com/Automattic/newspack-newsletters/issues/174)) ([53d8b7c](https://github.com/Automattic/newspack-newsletters/commit/53d8b7cbc93e6939191fb02d79684471f7323502))
|
||||
* prevent duplication after insertion in Posts Inserted block ([#191](https://github.com/Automattic/newspack-newsletters/issues/191)) ([d4ac6d8](https://github.com/Automattic/newspack-newsletters/commit/d4ac6d80dfcde7a6568f8773e2c8747fc77751e6)), closes [#185](https://github.com/Automattic/newspack-newsletters/issues/185)
|
||||
* prevent fetching data if post is not saved yet ([458c8a1](https://github.com/Automattic/newspack-newsletters/commit/458c8a11be477c729ba21507590658c7a411e6d1))
|
||||
* publish button text to send|sending|sent ([6fcbefe](https://github.com/Automattic/newspack-newsletters/commit/6fcbefe3418eb3aaea6a1b1913042e0d6d0cbab8))
|
||||
* sticky text controls ([81e85a7](https://github.com/Automattic/newspack-newsletters/commit/81e85a77d3bfaa0dfc7419fbb40ceaca105ce00c))
|
||||
* **email:** fix custom column width issue ([#168](https://github.com/Automattic/newspack-newsletters/issues/168)) ([2624c48](https://github.com/Automattic/newspack-newsletters/commit/2624c48cc9dc41c38f9e3ed7e9edf4f570980820)), closes [#162](https://github.com/Automattic/newspack-newsletters/issues/162)
|
||||
* prevent updating content of a sent campaign ([cce029e](https://github.com/Automattic/newspack-newsletters/commit/cce029eb5b64e16faed42fcf5ab297588f57a9cd))
|
||||
* regression of test email error/success notifications ([55c12fe](https://github.com/Automattic/newspack-newsletters/commit/55c12fe6c52ae003aac37a835de1934b989f203f))
|
||||
* remove data center prefix from mailchimp url ([c7f741c](https://github.com/Automattic/newspack-newsletters/commit/c7f741c925c6a72376d43db43d296b9e2f412d69))
|
||||
* remove support for background gradients ([#152](https://github.com/Automattic/newspack-newsletters/issues/152)) ([f4b1120](https://github.com/Automattic/newspack-newsletters/commit/f4b112030cacb1b8666d170432d8adc96c7b6ea8))
|
||||
* remove unneeded hr and wrap externallink in a paragraph ([fa9fd68](https://github.com/Automattic/newspack-newsletters/commit/fa9fd68604453ff9ab08877ca84d666205c97a2b))
|
||||
* rename list->audience to reflect mailchimp ([7de6266](https://github.com/Automattic/newspack-newsletters/commit/7de6266883b7b61e17c1b9217e70a6b679f736da))
|
||||
* **blocks:** remove wide alignment for group block ([216aa9f](https://github.com/Automattic/newspack-newsletters/commit/216aa9f7af886791f8eb83ed5a01c02ad1fee69c)), closes [#153](https://github.com/Automattic/newspack-newsletters/issues/153)
|
||||
* remove unnecessary check ([ce6d767](https://github.com/Automattic/newspack-newsletters/commit/ce6d7676b4408dce9c376dc21ff61a3da2c5b5d9))
|
||||
* remove unneeded logic ([57c8ec0](https://github.com/Automattic/newspack-newsletters/commit/57c8ec06d7e3faf8a123160a928eef2adc9554ae))
|
||||
* **sidebar:** store sender data in post meta ([#110](https://github.com/Automattic/newspack-newsletters/issues/110)) ([9dcb9fa](https://github.com/Automattic/newspack-newsletters/commit/9dcb9fab2d9f03a2049157faca4ef739817471b6))
|
||||
* simplify title of newsletter settings panel ([#95](https://github.com/Automattic/newspack-newsletters/issues/95)) ([2897b58](https://github.com/Automattic/newspack-newsletters/commit/2897b58baf294b1ba1429241e99f5c556822a7ae))
|
||||
* support for reusable blocks in newsletters ([fdd72ae](https://github.com/Automattic/newspack-newsletters/commit/fdd72ae60551712cf8d9564bce60da454ae01395))
|
||||
* **editor:** button block alignment ([0486aef](https://github.com/Automattic/newspack-newsletters/commit/0486aef66dc2ac21329840957f734f2b1adab573)), closes [#55](https://github.com/Automattic/newspack-newsletters/issues/55)
|
||||
* add useEffect hook dependencies ([aee78b9](https://github.com/Automattic/newspack-newsletters/commit/aee78b94e577472d5293d294dc1349a26f7d387b))
|
||||
* campaign updating logic; save after template insertion ([7ae882a](https://github.com/Automattic/newspack-newsletters/commit/7ae882a824ceda33a231f29d0c8a48040fa86407))
|
||||
* change logo size to medium ([#50](https://github.com/Automattic/newspack-newsletters/issues/50)) ([db27e64](https://github.com/Automattic/newspack-newsletters/commit/db27e64064815553a6932898349c63014319ed47))
|
||||
* condition ([6f44e03](https://github.com/Automattic/newspack-newsletters/commit/6f44e0303f81f69ada2b7ce981672d88c14a31eb))
|
||||
* corrected license in package and composer files ([1a2fcd3](https://github.com/Automattic/newspack-newsletters/commit/1a2fcd3a2cccbd6bcbbc4f03054ac5da314e753c))
|
||||
* duplicate plugin registration from merge conflict error ([6726994](https://github.com/Automattic/newspack-newsletters/commit/67269940bbbc86197f31a94f1e161653c6f83a60))
|
||||
* ensure attribute exists in renderer ([dc6bbc9](https://github.com/Automattic/newspack-newsletters/commit/dc6bbc9def0b29f454ccd3d9a0cab5380f719e6c))
|
||||
* gpl 2.0 license ([41e7738](https://github.com/Automattic/newspack-newsletters/commit/41e7738a9b4ed4a4f322b5851ad9dc3a93ba92a7))
|
||||
* grid auto rows ([b9d0841](https://github.com/Automattic/newspack-newsletters/commit/b9d0841e444c47616c4013bdc511668b7980fc32))
|
||||
* grid on small screens ([a603ebb](https://github.com/Automattic/newspack-newsletters/commit/a603ebbda4c8b7d35d0007155f2d88edafb495ab))
|
||||
* identical placeholder text for blank template or no template ([7ff325b](https://github.com/Automattic/newspack-newsletters/commit/7ff325bd268c51a00ca75bc514ecc66732a073f2))
|
||||
* image size from template ([07bc7ed](https://github.com/Automattic/newspack-newsletters/commit/07bc7ed124ee3539dc37d720760b5e86979892e0))
|
||||
* include logo image ID in class ([1c7fbd3](https://github.com/Automattic/newspack-newsletters/commit/1c7fbd3960c031de7d7057eb7cbce247f8882c00))
|
||||
* include vendor in release package ([01928b5](https://github.com/Automattic/newspack-newsletters/commit/01928b55353fa7af7a7cd591b29deb8b24bd21c2))
|
||||
* increase mjml request timeout, handle errors ([aa1f3c4](https://github.com/Automattic/newspack-newsletters/commit/aa1f3c4a5cd3450698806bb22d71194e9de12b62))
|
||||
* loading text improvement ([59703cf](https://github.com/Automattic/newspack-newsletters/commit/59703cfe513b32d1c40545ad1ee145ba46cab6b2))
|
||||
* modal content background and preview items since gutenberg 7.9 ([#49](https://github.com/Automattic/newspack-newsletters/issues/49)) ([3eb5f1e](https://github.com/Automattic/newspack-newsletters/commit/3eb5f1e546c21d51324eb5509b366fe5c3a9a712))
|
||||
* move settings menu item to newspack newsletters menu ([b562a39](https://github.com/Automattic/newspack-newsletters/commit/b562a397f605aef0331087debbd70ed8ed60eeb5))
|
||||
* overflow scroll to preview ([cd0289f](https://github.com/Automattic/newspack-newsletters/commit/cd0289fcf8c3c13057005a605117f79b8bc69124))
|
||||
* patterns overflow when screen height is smaller ([e443814](https://github.com/Automattic/newspack-newsletters/commit/e443814aa8fe700915c9687987fc1e02db152267))
|
||||
* remove group block from template 1 to have focus on sitename ([1cd40ec](https://github.com/Automattic/newspack-newsletters/commit/1cd40ec8643e9fe9f8a9e2960eb993b4335193a4))
|
||||
* remove pointer-events when layout is selected ([3fc35fb](https://github.com/Automattic/newspack-newsletters/commit/3fc35fb9a8bb50c396693f9c7ea3c1dbe7811b2d))
|
||||
* remove todo that has been addressed ([fffbcd2](https://github.com/Automattic/newspack-newsletters/commit/fffbcd25eca2b7637f162566eee1725ba90de19a))
|
||||
* rename interests to groups ([d8f8802](https://github.com/Automattic/newspack-newsletters/commit/d8f8802a144c3a4a91bcb52a1686665ab9963e86))
|
||||
* rename labels ([0fd0ac2](https://github.com/Automattic/newspack-newsletters/commit/0fd0ac2c866062b2333e715d57430b53bc038eab))
|
||||
* replace SVGs with PNG in social icons folder ([bf79d6f](https://github.com/Automattic/newspack-newsletters/commit/bf79d6f48fbfffe09aa8f57563880aa125b51d5f)), closes [#38](https://github.com/Automattic/newspack-newsletters/issues/38)
|
||||
* resolve error occurring before list selection ([3aae4d4](https://github.com/Automattic/newspack-newsletters/commit/3aae4d4d3eaad66277c678bf9431bd5d414bba3c))
|
||||
* **template-modal:** prevent modal closing after autosave ([12965c4](https://github.com/Automattic/newspack-newsletters/commit/12965c4c2aea11c7cd18b95836d76676b6057c56)), closes [#45](https://github.com/Automattic/newspack-newsletters/issues/45)
|
||||
* send content to mailchimp immediately before sending campaign ([0d0bb5a](https://github.com/Automattic/newspack-newsletters/commit/0d0bb5a656688ad431cfb4e2c7364371ac41f2eb))
|
||||
* template image ([e77d1b0](https://github.com/Automattic/newspack-newsletters/commit/e77d1b02e1b0d88d863dc604cad83ae49aa1711f))
|
||||
* templates ([a1cb385](https://github.com/Automattic/newspack-newsletters/commit/a1cb38500709346c7942a6b0e207c1374510a9d9))
|
||||
* **validation:** invalid by default ([89ce8a9](https://github.com/Automattic/newspack-newsletters/commit/89ce8a93470707170b02687e9d0ed7e0def95de4))
|
||||
* settings update api supports individual fields ([cd7b18f](https://github.com/Automattic/newspack-newsletters/commit/cd7b18fa1483fd8adec65a6277d396ff5147b657))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* remove any other editor modifications ([#8](https://github.com/Automattic/newspack-newsletters/issues/8)) ([2cb3f4c](https://github.com/Automattic/newspack-newsletters/commit/2cb3f4c72c59abbfb782dd97e37a074e7473b2a5))
|
||||
* activation nag ([1cc6f04](https://github.com/Automattic/newspack-newsletters/commit/1cc6f040d94f33b605a0d830de5e14e07cf4902f))
|
||||
* add back a single spinner during XHR requests ([3c0d097](https://github.com/Automattic/newspack-newsletters/commit/3c0d097a77507dbaffe4d6fad6a3454d405beb48))
|
||||
* add class to wrapper when XHR request is in flight ([feb9db6](https://github.com/Automattic/newspack-newsletters/commit/feb9db64607d7137cc28a1753893fbfac4aa0da9))
|
||||
* add email validation ([#79](https://github.com/Automattic/newspack-newsletters/issues/79)) ([9b1dbb1](https://github.com/Automattic/newspack-newsletters/commit/9b1dbb1681d8ebca53dadabcf6ff9a9ac1b23690))
|
||||
* add Posts Inserter block ([#47](https://github.com/Automattic/newspack-newsletters/issues/47)) ([f36d8f3](https://github.com/Automattic/newspack-newsletters/commit/f36d8f35a1d6eb73364348b1efc115bddb42a666))
|
||||
* add posts inserter to modal and strip placeholder style ([#98](https://github.com/Automattic/newspack-newsletters/issues/98)) ([9fc9f46](https://github.com/Automattic/newspack-newsletters/commit/9fc9f466827c9ebe81c9a2bed4192714b2405f00))
|
||||
* add pre-send confirmation ([#181](https://github.com/Automattic/newspack-newsletters/issues/181)) ([3579363](https://github.com/Automattic/newspack-newsletters/commit/35793632d56c36096f9b422aa971bde4eda4eb03)), closes [#139](https://github.com/Automattic/newspack-newsletters/issues/139)
|
||||
* add preview modal ([#59](https://github.com/Automattic/newspack-newsletters/issues/59)) ([515f281](https://github.com/Automattic/newspack-newsletters/commit/515f2812516b338d98b6a0d3f623b7ad2b38a584))
|
||||
* add spacer block support ([996cb69](https://github.com/Automattic/newspack-newsletters/commit/996cb69b433f64a17d2b5abc31303f5dfd52be00)), closes [#100](https://github.com/Automattic/newspack-newsletters/issues/100)
|
||||
* adjust style of the settings ([3b94145](https://github.com/Automattic/newspack-newsletters/commit/3b941450ff70c27c220fa834932bde5696974f97))
|
||||
* api key ui in modal ([e6f9a6a](https://github.com/Automattic/newspack-newsletters/commit/e6f9a6a57df55b0ba1badb1c79ac19343a242fef))
|
||||
* change order of sidebar panels ([405773d](https://github.com/Automattic/newspack-newsletters/commit/405773d346dcf4e1135422faa85d22e54769f934))
|
||||
* clear notifications before showing success or error ([ab45d60](https://github.com/Automattic/newspack-newsletters/commit/ab45d604fefe1360d0646a3fbd57e0f394cd7aae))
|
||||
* clearer error messages ([b165075](https://github.com/Automattic/newspack-newsletters/commit/b165075401ad82f317dd2d102dde4c547b0811ef))
|
||||
* disabled options and empty subscribers info in select ([44cc68f](https://github.com/Automattic/newspack-newsletters/commit/44cc68f8bb7da02e266515462bbd27ff3d6642a4))
|
||||
* enable selecting specific post ids ([#170](https://github.com/Automattic/newspack-newsletters/issues/170)) ([1781d60](https://github.com/Automattic/newspack-newsletters/commit/1781d60e0415e0a449032c6656a4e098bd705d0e))
|
||||
* error catching and notification for lists and groups ([8582c04](https://github.com/Automattic/newspack-newsletters/commit/8582c04ebdd8c4c9ac50750e28d2d21dfc3135a5))
|
||||
* error handling in save and publish operations ([eac62c2](https://github.com/Automattic/newspack-newsletters/commit/eac62c2d9ff4b89d82bafd8ebfb87acaa9d85bc5))
|
||||
* error notifications for from name/email changes ([887afee](https://github.com/Automattic/newspack-newsletters/commit/887afeeef013d62c44dc0a3e68a8e3b3baa158e8))
|
||||
* error notifications when retrieving mailchimp data ([ce4fb32](https://github.com/Automattic/newspack-newsletters/commit/ce4fb32951b02cb93cb9dc0be31be6e5811507d1))
|
||||
* field-level error handling for sender email ([d1bcfaf](https://github.com/Automattic/newspack-newsletters/commit/d1bcfaf063b1bf8b92c0501b291f6ceb13069ce8))
|
||||
* fullscreen modal show the edit-post-fullscreen-mode-close button ([0cc6d5d](https://github.com/Automattic/newspack-newsletters/commit/0cc6d5db4f111ee2f64443bc07eb6d9711fb42c8))
|
||||
* handle campaign fetching in editor plugin ([a7a86e2](https://github.com/Automattic/newspack-newsletters/commit/a7a86e25b96e471683516b356c5b371accbf32f1))
|
||||
* handle color palette as it appears in the editor ([#176](https://github.com/Automattic/newspack-newsletters/issues/176)) ([862d3cf](https://github.com/Automattic/newspack-newsletters/commit/862d3cf712ffa7bc7ce72f0649d343f32f877d4b)), closes [#173](https://github.com/Automattic/newspack-newsletters/issues/173)
|
||||
* handle uninserted Posts Inserter block state ([#127](https://github.com/Automattic/newspack-newsletters/issues/127)) ([15b47b2](https://github.com/Automattic/newspack-newsletters/commit/15b47b2f8e80b5b5f9bfe7b45aa0906902c706d6)), closes [#114](https://github.com/Automattic/newspack-newsletters/issues/114)
|
||||
* hoc to handle api requests, notifications ([1be5ada](https://github.com/Automattic/newspack-newsletters/commit/1be5adad8e5a8fcaee20143e3cf8407ddbd0e7cd))
|
||||
* improved permissions ([a564813](https://github.com/Automattic/newspack-newsletters/commit/a564813485aee9eb5272210134b8f8513aef16b5))
|
||||
* list management link ([aa90782](https://github.com/Automattic/newspack-newsletters/commit/aa90782582bc922f98621ac66416d68ff173e1ab))
|
||||
* move preview button to post status slot ([1f450e2](https://github.com/Automattic/newspack-newsletters/commit/1f450e2c645aa56ca08049f3e7258ad4c63a2479))
|
||||
* move testing panel above layout ([d35b2ad](https://github.com/Automattic/newspack-newsletters/commit/d35b2ad41320d0ce086dd2822fc4d4948a07b11b))
|
||||
* override publish button ([2786afb](https://github.com/Automattic/newspack-newsletters/commit/2786afbc495506a60dc5f0701d9587dad78ffb16))
|
||||
* pass color settings from group and column blocks ([9f8a73e](https://github.com/Automattic/newspack-newsletters/commit/9f8a73e2204d67eee716ef2f4c7236bc589086cb))
|
||||
* prevent duplicate posts when multiple Posts Inserter instances ([#167](https://github.com/Automattic/newspack-newsletters/issues/167)) ([bbdbc3e](https://github.com/Automattic/newspack-newsletters/commit/bbdbc3e9820a65121711041dd9913ff16e0142a0)), closes [#147](https://github.com/Automattic/newspack-newsletters/issues/147)
|
||||
* remove custom preview button ([#136](https://github.com/Automattic/newspack-newsletters/issues/136)) ([d0e3eff](https://github.com/Automattic/newspack-newsletters/commit/d0e3eff5e874cbc557dff33e5a17907a19f322da))
|
||||
* remove post content before changing layout ([f253342](https://github.com/Automattic/newspack-newsletters/commit/f253342deae01247ddeb27713fecf060fbcf3bf4))
|
||||
* remove spinners, disable submission while fields are empty ([5607807](https://github.com/Automattic/newspack-newsletters/commit/5607807fb62cb91a9fdd38a0676b2cab45e08ef8))
|
||||
* reorder the sidebar settings ([#56](https://github.com/Automattic/newspack-newsletters/issues/56)) ([e9c4630](https://github.com/Automattic/newspack-newsletters/commit/e9c4630387910460bd6bff111f63f1a7d844d758))
|
||||
* save post before previewing or sending test email ([#108](https://github.com/Automattic/newspack-newsletters/issues/108)) ([cc05ed9](https://github.com/Automattic/newspack-newsletters/commit/cc05ed9ab162d657edfd2ef2b0d2fe45abb37b1b)), closes [#25](https://github.com/Automattic/newspack-newsletters/issues/25)
|
||||
* send button support for pending state ([db15bc6](https://github.com/Automattic/newspack-newsletters/commit/db15bc67fcc001d6dd3034e968122b2d82bb0df7))
|
||||
* separate panel for test email ui ([28a3be5](https://github.com/Automattic/newspack-newsletters/commit/28a3be5abf4db35180f5f4a1d38da07cff35246b))
|
||||
* sidebar ui to change template ([4b6da11](https://github.com/Automattic/newspack-newsletters/commit/4b6da11973355be91587bc8659cfb42dc2a8852d))
|
||||
* success/error messages when sending test emails ([1afb952](https://github.com/Automattic/newspack-newsletters/commit/1afb95213196488b7feca41375754ce04716cf04))
|
||||
* support image alignment in Posts Inserter block ([#137](https://github.com/Automattic/newspack-newsletters/issues/137)) ([0b1b446](https://github.com/Automattic/newspack-newsletters/commit/0b1b446661026a2f8649e5bc95d9b8250ea0a231)), closes [#128](https://github.com/Automattic/newspack-newsletters/issues/128)
|
||||
* support post scheduling ([db5c5be](https://github.com/Automattic/newspack-newsletters/commit/db5c5be4ff86045c83be64b4d829b311a02cba29))
|
||||
* template picker initial selection improvements ([af1bd2e](https://github.com/Automattic/newspack-newsletters/commit/af1bd2e208d0f75bc39a5d4286f45643919ef201))
|
||||
* throw error for unverified reply-to email ([8ba7906](https://github.com/Automattic/newspack-newsletters/commit/8ba7906a471b58d819165316187bdcbf4832bf8d))
|
||||
* update default layouts ([#192](https://github.com/Automattic/newspack-newsletters/issues/192)) ([5415704](https://github.com/Automattic/newspack-newsletters/commit/541570465307caf83bb62586ec8f3b35bfa62e89))
|
||||
* update general padding of newsletter to increase white space ([#178](https://github.com/Automattic/newspack-newsletters/issues/178)) ([e18064f](https://github.com/Automattic/newspack-newsletters/commit/e18064f48d1d40bb64147bfe31a41b4536deb1ad))
|
||||
* update post inserter placeholder style ([#83](https://github.com/Automattic/newspack-newsletters/issues/83)) ([916afa8](https://github.com/Automattic/newspack-newsletters/commit/916afa8d2c8a3fcb0306281472a999604559a277))
|
||||
* update posts inserter defaults ([#99](https://github.com/Automattic/newspack-newsletters/issues/99)) ([05d761f](https://github.com/Automattic/newspack-newsletters/commit/05d761f07863a499880a7c70adeca827d16cfb7f))
|
||||
* update posts inserter preview margins ([#182](https://github.com/Automattic/newspack-newsletters/issues/182)) ([7df27cc](https://github.com/Automattic/newspack-newsletters/commit/7df27ccd23cb30450a4e1a164b6c85a036f3650d))
|
||||
* update style of the layout preview and modal ([05c592f](https://github.com/Automattic/newspack-newsletters/commit/05c592f72728cdfbccd8efa29c08520b53699622))
|
||||
* update style when settings are in-flight ([fc46333](https://github.com/Automattic/newspack-newsletters/commit/fc463334d1fcf530686bf36a4d4d3ebac2db6e4a))
|
||||
* update templates ([be014b4](https://github.com/Automattic/newspack-newsletters/commit/be014b44212ce6d420fcf25eee182257ff8260ec))
|
||||
* wrap action buttons around a div for better positioning ([0b28524](https://github.com/Automattic/newspack-newsletters/commit/0b28524efd14655abf7ef2d0c2fdc84753a140da))
|
||||
* **sidebar:** default values ([d9e0bef](https://github.com/Automattic/newspack-newsletters/commit/d9e0bef35eef3236a5124df97f8e7d831f4405f3))
|
||||
* add blank layout ([70d9058](https://github.com/Automattic/newspack-newsletters/commit/70d9058871173d44571d8eb67f8d4cee1e181212))
|
||||
* add new layouts: daily/weekly (no image), breaking news, breaking news (no image), and support ([#48](https://github.com/Automattic/newspack-newsletters/issues/48)) ([424b550](https://github.com/Automattic/newspack-newsletters/commit/424b55095979a8fe398d60e779bb8d15a63e4b06))
|
||||
* add new template ([aa0336f](https://github.com/Automattic/newspack-newsletters/commit/aa0336ffceca95f5bb7e2254e8a0107840ddfea7))
|
||||
* add preview modal ([41c7348](https://github.com/Automattic/newspack-newsletters/commit/41c73481bdde02db917ae11e800f94843fc95338))
|
||||
* add template selection modal ([a765ddc](https://github.com/Automattic/newspack-newsletters/commit/a765ddc78eed8b419217a1db647fcd75aa3abba0))
|
||||
* adjust layout modal style to be fullscreen ([2378fd0](https://github.com/Automattic/newspack-newsletters/commit/2378fd0cb7f459499422c612361cdd72a82a4af0))
|
||||
* adjust ui if campaign is sent or sending ([69e60d0](https://github.com/Automattic/newspack-newsletters/commit/69e60d009c83187b67dd4f585cfa9dfe2644245f))
|
||||
* allow unsetting interest groups ([5498f66](https://github.com/Automattic/newspack-newsletters/commit/5498f666771bc8f51a9b06eb89599838b0d93063))
|
||||
* author newsletters in wordpress ([311de03](https://github.com/Automattic/newspack-newsletters/commit/311de0393b238f019bebe0ffed37fe1aa6f29bd9))
|
||||
* block publish and notify for missing sender fields ([a3269a2](https://github.com/Automattic/newspack-newsletters/commit/a3269a22bc909756cd6898443a7e38b1b6793074))
|
||||
* blocks to MJML conversion ([#5](https://github.com/Automattic/newspack-newsletters/issues/5)) ([5a30354](https://github.com/Automattic/newspack-newsletters/commit/5a30354418ca690ab97cd519e586ce0b3eb2c495))
|
||||
* clear mailchimp campaign id when post is trashed ([47810eb](https://github.com/Automattic/newspack-newsletters/commit/47810eb8c6c7f00c95071b3c4ce2c733791970e6))
|
||||
* custom field to assess template readiness ([5d8b6a3](https://github.com/Automattic/newspack-newsletters/commit/5d8b6a3642abb5495529f112322e61a9efe2c37c))
|
||||
* delete unsent mailchimp campaigns when cpt trashed ([164009f](https://github.com/Automattic/newspack-newsletters/commit/164009f27e099027084700428053e70bada08479))
|
||||
* disable column alignment ([a16876e](https://github.com/Automattic/newspack-newsletters/commit/a16876eb098e2b47fe614504608da386335ffcbb))
|
||||
* disable editor styles ([7f592df](https://github.com/Automattic/newspack-newsletters/commit/7f592df4018a82d1ccfeb465db9bfce539f8a529))
|
||||
* disable gradients for the Newsletter custom post type ([742e141](https://github.com/Automattic/newspack-newsletters/commit/742e1412b82a2603481590c074fa107566efa7fd))
|
||||
* display modal on new newsletter posts ([1247c59](https://github.com/Automattic/newspack-newsletters/commit/1247c5980886ea609ac4313d6b18d206f1680d42))
|
||||
* display validation errors in pre-publish slot ([92dd7d1](https://github.com/Automattic/newspack-newsletters/commit/92dd7d1cb82c4a7af5574b0e22dc7c5d7430f8f8))
|
||||
* display warnings in editor for unsupported features ([#9](https://github.com/Automattic/newspack-newsletters/issues/9)) ([1edd153](https://github.com/Automattic/newspack-newsletters/commit/1edd153fcfca0d2eec2f55accfe087f981e7793f))
|
||||
* handle campaign validation via post meta field ([58d090d](https://github.com/Automattic/newspack-newsletters/commit/58d090d6a54069ad7743b42f4876eccd34ee6e65))
|
||||
* handle group block ([#10](https://github.com/Automattic/newspack-newsletters/issues/10)) ([eda73d2](https://github.com/Automattic/newspack-newsletters/commit/eda73d2d03027ade775c5c698a4964656055a39d))
|
||||
* hide editor preview ui ([37315d0](https://github.com/Automattic/newspack-newsletters/commit/37315d00f4246d1b58039366a6a8d118e4116cd7))
|
||||
* hide title, add subject field in sidebar ([33fc00a](https://github.com/Automattic/newspack-newsletters/commit/33fc00a389ea585f2107443efb0cc1e2755c0553))
|
||||
* inputs for test email and sender ([09fa566](https://github.com/Automattic/newspack-newsletters/commit/09fa56610c696eaf7c2ae463cb49e503847c5906))
|
||||
* live block preview ([7247383](https://github.com/Automattic/newspack-newsletters/commit/72473836c2a20bcf9dedf8bad874af1786972037))
|
||||
* loading ui in pre publish checklist ([193edcb](https://github.com/Automattic/newspack-newsletters/commit/193edcbc8b8e41c8073abdce37c3114fe5ad4c3e))
|
||||
* move MJML creds to plugin settings ([06840ad](https://github.com/Automattic/newspack-newsletters/commit/06840ad514f1fa9702a9db53f6035868f9f22ec5)), closes [#16](https://github.com/Automattic/newspack-newsletters/issues/16)
|
||||
* multiple test emails ([8e0b444](https://github.com/Automattic/newspack-newsletters/commit/8e0b4443a2e72daa1c9ab91c58a7a4251c7ccc46))
|
||||
* placeholder text for no template or blank template ([6bbfcfe](https://github.com/Automattic/newspack-newsletters/commit/6bbfcfe94d5ad87cb9a41540b33dce4743afe7a6))
|
||||
* placeholder text for no template or blank template ([a378b54](https://github.com/Automattic/newspack-newsletters/commit/a378b54e6ba5d0c6b676d9c7020b0a32a8fbd352))
|
||||
* publish button state, pre-publish message ([eb6ed6f](https://github.com/Automattic/newspack-newsletters/commit/eb6ed6f2e2c380c17d4263e92b2ab057e4538476))
|
||||
* remove any other editor modifications ([946bc04](https://github.com/Automattic/newspack-newsletters/commit/946bc046b59e42e9be5b23ce4506a3988a0d5603))
|
||||
* remove image and use blockpreview instead ([dd0e489](https://github.com/Automattic/newspack-newsletters/commit/dd0e4897e9cf8452fcbf8c214e92458def04eb19))
|
||||
* remove is_ready meta ([1866393](https://github.com/Automattic/newspack-newsletters/commit/18663938dab2a3e93d16959978ffb9bec1e6730f))
|
||||
* remove send btn, sender name/email from campaign ([397f41f](https://github.com/Automattic/newspack-newsletters/commit/397f41fd5074dbe5f660b2217bf3181aa5ef3621))
|
||||
* Remove Unsupported Features From Core Blocks ([2184d1f](https://github.com/Automattic/newspack-newsletters/commit/2184d1f84cdc9d6cfd37f16c59fa7e52123ac5f2))
|
||||
* remove unsupported features of core blocks ([69a0f10](https://github.com/Automattic/newspack-newsletters/commit/69a0f10c34845f8aa6fac0ee2823d96c68b27bf6))
|
||||
* reorganize folders and remove images ([c2e643c](https://github.com/Automattic/newspack-newsletters/commit/c2e643cb8efcfba90431dac05976565fa47ae024))
|
||||
* save/publish flow ([757162c](https://github.com/Automattic/newspack-newsletters/commit/757162cfbfe301d2fa06979c8d82f1b554b8075f))
|
||||
* select mailchimp interests ([59f0643](https://github.com/Automattic/newspack-newsletters/commit/59f064315b7f1833212be6f3978461a9107cfedc))
|
||||
* select to display mailchimp interests (groups) ([48d1366](https://github.com/Automattic/newspack-newsletters/commit/48d136601af73b154e05167306853381cef512b1))
|
||||
* sender name/email updating ([85ac847](https://github.com/Automattic/newspack-newsletters/commit/85ac847d196ef3822d89164871b6d8438cb33803))
|
||||
* sidebar subject input ([321f047](https://github.com/Automattic/newspack-newsletters/commit/321f047dc892f9c14cca4c697e414509fbf0a080))
|
||||
* template insertion ([452c48b](https://github.com/Automattic/newspack-newsletters/commit/452c48b81fac539abde77598252558171f2e6ea4))
|
||||
* template selection modal - display regardless of side panel status ([9656712](https://github.com/Automattic/newspack-newsletters/commit/9656712c31061d005d271732fa6640ec2feb7318))
|
||||
* token replace function, logo or sitename token ([0bc8875](https://github.com/Automattic/newspack-newsletters/commit/0bc88750d8cf2c7167ddb745cbc4c8579df54393))
|
||||
* update campagin on save, send campaign on publish ([c316923](https://github.com/Automattic/newspack-newsletters/commit/c3169239c668465130915d1af81ed033cb64fcae))
|
||||
* update display of patterns using grid ([6e04641](https://github.com/Automattic/newspack-newsletters/commit/6e046419f8e2781405fbe26d7a3c80af11d8f62d))
|
||||
* update menu icon to material's alternate_email ([#6](https://github.com/Automattic/newspack-newsletters/issues/6)) ([f8ecaa4](https://github.com/Automattic/newspack-newsletters/commit/f8ecaa4914dc1c9a0dc2ab0ba90913ca1851d9c4))
|
||||
* update pre-check with notice and reorganize sidebar ([#42](https://github.com/Automattic/newspack-newsletters/issues/42)) ([ad9b6c1](https://github.com/Automattic/newspack-newsletters/commit/ad9b6c1fdf1461713d294a6a908915abbed21356))
|
||||
* update settings description to match MJML api email ([#46](https://github.com/Automattic/newspack-newsletters/issues/46)) ([df826c7](https://github.com/Automattic/newspack-newsletters/commit/df826c74401e46d308a15d4b0901912a4c11ec2c))
|
||||
* use current date as default title ([32ce655](https://github.com/Automattic/newspack-newsletters/commit/32ce65530965e303958ed8b0c5066e8091bc6541))
|
||||
* warn about nested groups ([43fb115](https://github.com/Automattic/newspack-newsletters/commit/43fb115d3c7bd6cdf930a0843a18f6d7dd5ad690))
|
||||
* **template:** thumbnail logo size ([65eba93](https://github.com/Automattic/newspack-newsletters/commit/65eba93bae2f35e1f1c686cad57115e0658217a2))
|
||||
* wrap modal content around its own div ([6cf6c3b](https://github.com/Automattic/newspack-newsletters/commit/6cf6c3b11159977eb9aaadd0d0b9c637a7a00d3e))
|
||||
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
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/novinhub/composer_file/composer.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/novinhub/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "masoud_sa/novinhub",
|
||||
"type": "project",
|
||||
"license": "MIT",
|
||||
"version": "0.0.5",
|
||||
"authors": [
|
||||
{
|
||||
"name": "datasc-masa",
|
||||
"email": "Masoudsa291171@gmail.com"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Novinhub\\Inc\\": "./inc"
|
||||
},
|
||||
"classmap": ["inc/"]
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "5.6"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"novinhubcom/php-sdk": "^0.0.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,527 @@
|
||||
# Copyright (C) 2021 OpenAgenda
|
||||
# This file is distributed under the same license as the OpenAgenda plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenAgenda 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/openagenda\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-02 15:45+0100\n"
|
||||
"PO-Revision-Date: 2021-03-10 14:38+0100\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: openagenda\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Language: fr\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "OpenAgenda"
|
||||
msgstr "OpenAgenda"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://openagenda.com/"
|
||||
msgstr "https://openagenda.com/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Display your OpenAgenda data on your WordPress site."
|
||||
msgstr "Affiche vos agendas OpenAgenda sur votre site WordPress."
|
||||
|
||||
#: inc/class-admin-pages.php:24
|
||||
msgid "OpenAgenda Settings"
|
||||
msgstr "Réglages OpenAgenda"
|
||||
|
||||
#: inc/class-admin-pages.php:25 openagenda.php:113
|
||||
msgid "Settings"
|
||||
msgstr "Réglages"
|
||||
|
||||
#: inc/class-admin-pages.php:32
|
||||
msgid "General"
|
||||
msgstr "Généraux"
|
||||
|
||||
#: inc/class-admin-pages.php:122 inc/class-settings.php:46
|
||||
msgid "General settings"
|
||||
msgstr "Réglages généraux"
|
||||
|
||||
#: inc/class-admin-pages.php:138
|
||||
msgid "Display settings"
|
||||
msgstr "Réglages d'affichage"
|
||||
|
||||
#: inc/class-ajax-handler.php:36
|
||||
msgid "No post ID was provided."
|
||||
msgstr "Aucun ID de publication n'a été fourni."
|
||||
|
||||
#: inc/class-ajax-handler.php:42
|
||||
msgid "The post ID provided does not refer to a calendar."
|
||||
msgstr "L'identifiant fourni ne correspond à aucun agenda."
|
||||
|
||||
#: inc/class-content-manager.php:18 inc/class-content-manager.php:105
|
||||
#: inc/class-settings.php:363
|
||||
msgid "calendar"
|
||||
msgstr "agenda"
|
||||
|
||||
#: inc/class-content-manager.php:23
|
||||
msgctxt "Post type general name"
|
||||
msgid "Calendars"
|
||||
msgstr "Agendas"
|
||||
|
||||
#: inc/class-content-manager.php:24
|
||||
msgctxt "Post type singular name"
|
||||
msgid "Calendar"
|
||||
msgstr "Agenda"
|
||||
|
||||
#: inc/class-content-manager.php:25
|
||||
msgctxt "Admin Menu text"
|
||||
msgid "Calendars"
|
||||
msgstr "Agendas"
|
||||
|
||||
#: inc/class-content-manager.php:26
|
||||
msgctxt "Add New on Toolbar"
|
||||
msgid "Calendar"
|
||||
msgstr "Agenda"
|
||||
|
||||
#: inc/class-content-manager.php:27
|
||||
msgid "Add New Calendar"
|
||||
msgstr "Ajouter un nouvel agenda"
|
||||
|
||||
#: inc/class-content-manager.php:28
|
||||
msgid "New Calendar"
|
||||
msgstr "Nouvel agenda"
|
||||
|
||||
#: inc/class-content-manager.php:29
|
||||
msgid "Edit Calendar"
|
||||
msgstr "Modifier l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:30
|
||||
msgid "View Calendar"
|
||||
msgstr "Voir l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:31
|
||||
msgid "All Calendars"
|
||||
msgstr "Tous les agendas"
|
||||
|
||||
#: inc/class-content-manager.php:32
|
||||
msgid "Search Calendars"
|
||||
msgstr "Chercher dans les agendas"
|
||||
|
||||
#: inc/class-content-manager.php:33
|
||||
msgid "Parent Calendars:"
|
||||
msgstr "Agenda parent :"
|
||||
|
||||
#: inc/class-content-manager.php:34
|
||||
msgid "No Calendars found."
|
||||
msgstr "Aucun agenda trouvé."
|
||||
|
||||
#: inc/class-content-manager.php:35
|
||||
msgid "No Calendars found in Trash."
|
||||
msgstr "Aucun agenda dans la corbeille."
|
||||
|
||||
#: inc/class-content-manager.php:36
|
||||
msgctxt ""
|
||||
"Overrides the “Featured Image” phrase for this post type. Added in 4.3"
|
||||
msgid "Calendar Cover Image"
|
||||
msgstr "Image mise en avant de l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:37
|
||||
msgctxt ""
|
||||
"The post type archive label used in nav menus. Default “Post Archives”. "
|
||||
"Added in 4.4"
|
||||
msgid "Calendar archives"
|
||||
msgstr "Archive des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:38
|
||||
msgctxt ""
|
||||
"Overrides the “Insert into post”/”Insert into page” phrase (used when "
|
||||
"inserting media into a post). Added in 4.4"
|
||||
msgid "Insert into Calendar"
|
||||
msgstr "Insérer dans l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:39
|
||||
msgctxt ""
|
||||
"Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used "
|
||||
"when viewing media attached to a post). Added in 4.4"
|
||||
msgid "Uploaded to this Calendar"
|
||||
msgstr "Téléversé vers cet agenda"
|
||||
|
||||
#: inc/class-content-manager.php:40
|
||||
msgctxt ""
|
||||
"Screen reader text for the filter links heading on the post type listing "
|
||||
"screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4"
|
||||
msgid "Filter Calendars list"
|
||||
msgstr "Filtrer la liste des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:41
|
||||
msgctxt ""
|
||||
"Screen reader text for the pagination heading on the post type listing "
|
||||
"screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4"
|
||||
msgid "Calendars list navigation"
|
||||
msgstr "Navigation de la liste des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:42
|
||||
msgctxt ""
|
||||
"Screen reader text for the items list heading on the post type listing "
|
||||
"screen. Default “Posts list”/”Pages list”. Added in 4.4"
|
||||
msgid "Calendars list"
|
||||
msgstr "Liste des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:148
|
||||
msgid "Please provide a calendar UID in this calendar's settings box first."
|
||||
msgstr "Veuillez fournir un UID d'agenda valide dans les réglages de l'agenda."
|
||||
|
||||
#: inc/class-customizer-settings.php:32
|
||||
msgid "Calendars"
|
||||
msgstr "Agendas"
|
||||
|
||||
#: inc/class-customizer-settings.php:33
|
||||
msgid "Manage calendars display settings here."
|
||||
msgstr "Gérez vos réglages d'affichage ici."
|
||||
|
||||
#: inc/class-customizer-settings.php:38
|
||||
msgid "Colors"
|
||||
msgstr "Couleurs"
|
||||
|
||||
#: inc/class-customizer-settings.php:48
|
||||
msgid "OpenAgenda main color"
|
||||
msgstr "Couleur principal Openagenda"
|
||||
|
||||
#: inc/class-filter-widget.php:29
|
||||
msgid "Open Agenda Filter"
|
||||
msgstr "Open Agenda - Filtre"
|
||||
|
||||
#: inc/class-filter-widget.php:31
|
||||
msgid "Displays a filter widget."
|
||||
msgstr "Affiche un filtre."
|
||||
|
||||
#: inc/class-filter-widget.php:81
|
||||
msgid "Title :"
|
||||
msgstr "Titre :"
|
||||
|
||||
#: inc/class-filter-widget.php:85
|
||||
msgid "Filter to display :"
|
||||
msgstr "Filtre à afficher :"
|
||||
|
||||
#: inc/class-filter-widget.php:87
|
||||
msgid "Choose filter"
|
||||
msgstr "Choisissez un filtre"
|
||||
|
||||
#: inc/class-filter-widget.php:183
|
||||
msgid "Map tiles link :"
|
||||
msgstr "Liens du fond de carte :"
|
||||
|
||||
#: inc/class-filter-widget.php:189
|
||||
msgid "Automatically update map on scroll ?"
|
||||
msgstr "Ajuster automatiquement la carte au défilement ?"
|
||||
|
||||
#: inc/class-filter-widget.php:195
|
||||
msgid "Default longitude :"
|
||||
msgstr "Longitude par défaut :"
|
||||
|
||||
#: inc/class-filter-widget.php:200
|
||||
msgid "Default latitude :"
|
||||
msgstr "Latitude par défaut :"
|
||||
|
||||
#: inc/class-filter-widget.php:205
|
||||
msgid "Map default zoom :"
|
||||
msgstr "Niveau de zoom par défaut :"
|
||||
|
||||
#: inc/class-filter-widget.php:214
|
||||
msgid "Agenda UID :"
|
||||
msgstr "UID de l'agenda :"
|
||||
|
||||
#: inc/class-filter-widget.php:220
|
||||
msgid "Preview label :"
|
||||
msgstr "Label du lien de prévisualisation :"
|
||||
|
||||
#: inc/class-filter-widget.php:222
|
||||
msgid "Preview"
|
||||
msgstr "Prévisualisation"
|
||||
|
||||
#: inc/class-filter-widget.php:223
|
||||
msgid "This corresponds to the text for the link to the calendar."
|
||||
msgstr "Correspond au texte du lien vers l'agenda."
|
||||
|
||||
#: inc/class-filter-widget.php:229
|
||||
msgid "Placeholder text :"
|
||||
msgstr "Texte de substitution :"
|
||||
|
||||
#: inc/class-filter-widget.php:231
|
||||
msgid "Search events"
|
||||
msgstr "Rechercher un événement"
|
||||
|
||||
#: inc/class-filter-widget.php:237
|
||||
msgid "Tag group :"
|
||||
msgstr "Groupe tag :"
|
||||
|
||||
#: inc/class-filter-widget.php:242
|
||||
msgid "Tags to display :"
|
||||
msgstr "Tags à afficher :"
|
||||
|
||||
#: inc/class-filter-widget.php:243
|
||||
msgid "Enter tags separated by a comma."
|
||||
msgstr "Entrer les tags séparés par des virgules."
|
||||
|
||||
#: inc/class-main.php:26
|
||||
msgctxt "Filter name"
|
||||
msgid "Active filters"
|
||||
msgstr "Filtres actifs"
|
||||
|
||||
#: inc/class-main.php:31
|
||||
msgctxt "Filter name"
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: inc/class-main.php:36
|
||||
msgctxt "Filter name"
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
||||
#: inc/class-main.php:41
|
||||
msgctxt "Filter name"
|
||||
msgid "Map"
|
||||
msgstr "Carte"
|
||||
|
||||
#: inc/class-main.php:46
|
||||
msgctxt "Filter name"
|
||||
msgid "Preview"
|
||||
msgstr "Prévisualisation"
|
||||
|
||||
#: inc/class-main.php:51
|
||||
msgctxt "Filter name"
|
||||
msgid "Upcoming"
|
||||
msgstr "Prochainement"
|
||||
|
||||
#: inc/class-main.php:56
|
||||
msgctxt "Filter name"
|
||||
msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
#: inc/class-metaboxes.php:24
|
||||
msgid "Calendar settings"
|
||||
msgstr "Réglages de l'agenda"
|
||||
|
||||
#: inc/class-metaboxes.php:36
|
||||
msgid "Calendar UID"
|
||||
msgstr "UID de l'agenda"
|
||||
|
||||
#: inc/class-metaboxes.php:41
|
||||
msgid "How to find my calendar UID ?"
|
||||
msgstr "Comment trouver l'UID de mon agenda ?"
|
||||
|
||||
#: inc/class-metaboxes.php:47
|
||||
msgid "Events per page"
|
||||
msgstr "Evénements par page"
|
||||
|
||||
#: inc/class-metaboxes.php:129
|
||||
msgid "New field"
|
||||
msgstr "Nouveau champ"
|
||||
|
||||
#: inc/class-openagenda.php:290
|
||||
msgid "XLSX"
|
||||
msgstr "XLSX"
|
||||
|
||||
#: inc/class-openagenda.php:291
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: inc/class-openagenda.php:292
|
||||
msgid "RSS"
|
||||
msgstr "RSS"
|
||||
|
||||
#: inc/class-openagenda.php:293
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
#: inc/class-openagenda.php:398
|
||||
msgid "There was an error parsing the JSON."
|
||||
msgstr "Il y a eu une erreur de lecture du JSON."
|
||||
|
||||
#: inc/class-settings.php:54
|
||||
msgid "OpenAgenda API key"
|
||||
msgstr "Clé API OpenAgenda"
|
||||
|
||||
#. translators: %s: openagenda site url
|
||||
#: inc/class-settings.php:67
|
||||
msgid ""
|
||||
"Your API key can be found in your <a href=\"%s\">OpenAgenda account</a>."
|
||||
msgstr ""
|
||||
"Vous pouvez trouver votre clé API sur votre <a href=\"%s\">compte "
|
||||
"OpenAgenda</a>."
|
||||
|
||||
#: inc/class-settings.php:74
|
||||
msgid "Allow embedded content."
|
||||
msgstr "Autoriser les contenus embarqués."
|
||||
|
||||
#: inc/class-settings.php:85
|
||||
msgid "Allow for embedded content in the event's content."
|
||||
msgstr "Autoriser le contenu embarqué dans le contenu des événements."
|
||||
|
||||
#: inc/class-settings.php:86
|
||||
msgid ""
|
||||
"By default, embedded content like Youtube players will be filtered, and will "
|
||||
"not appear on the frontend. Checking this option will disable filtering."
|
||||
msgstr ""
|
||||
"Par défaut, les contenus embarqués comme les lecteur Youtube sont filtrés et "
|
||||
"n'apparitront pas sur le devant du site. En cochant cette option, vous "
|
||||
"désactiverez ce filtrage."
|
||||
|
||||
#: inc/class-settings.php:91
|
||||
msgid "Load default stylesheets."
|
||||
msgstr "Charger des styles par défaut."
|
||||
|
||||
#: inc/class-settings.php:102
|
||||
msgid "Load default styling."
|
||||
msgstr "Charger les styles par défaut."
|
||||
|
||||
#: inc/class-settings.php:107
|
||||
msgid "Cache duration"
|
||||
msgstr "Durée du cache"
|
||||
|
||||
#: inc/class-settings.php:118
|
||||
msgid ""
|
||||
"Requests responses are temporarily stored for performance reasons. This "
|
||||
"setting controls the number of seconds basic requests responses are stored"
|
||||
msgstr ""
|
||||
"Les requêtes sont mise en cache temporaire pour des raisons de performance. "
|
||||
"Ce réglage contrôle le nombre de secondes pendant lesquelles les requêtes "
|
||||
"sont stockées"
|
||||
|
||||
#: inc/class-settings.php:123
|
||||
msgid "Default map tiles link"
|
||||
msgstr "Liens du fond de carte"
|
||||
|
||||
#: inc/class-settings.php:138
|
||||
msgid "Default map tiles attribution link"
|
||||
msgstr "URL des crédits du fond de carte"
|
||||
|
||||
#: inc/class-settings.php:153
|
||||
msgid "Delete all calendar content on uninstall ?"
|
||||
msgstr "Supprimer tous les contenus des agendas lors de la désinstallation ?"
|
||||
|
||||
#: inc/class-settings.php:164
|
||||
msgid ""
|
||||
"Delete all posts of type \"Calendar\" permanently when I uninstall the "
|
||||
"plugin. Content will NOT be deleted when deactivating the plugin."
|
||||
msgstr ""
|
||||
"Effacer tous les contenus de type \"Agenda\" définitivement quand je "
|
||||
"désinstalle cette extension. Le contenu NE sera PAS supprimé lors d'une "
|
||||
"désactivation."
|
||||
|
||||
#: inc/class-settings.php:169
|
||||
msgid "Delete all options on uninstall ?"
|
||||
msgstr ""
|
||||
"Supprimer tous les réglages de l'extension lors de la désinstallation ?"
|
||||
|
||||
#: inc/class-settings.php:180
|
||||
msgid ""
|
||||
"Delete all of this plugin's settings permanently when I uninstall the plugin."
|
||||
msgstr ""
|
||||
"Supprimer définitivement tous les réglages de cette extension quand je la "
|
||||
"désinstalle."
|
||||
|
||||
#: inc/class-settings.php:185
|
||||
msgid "Calendar base"
|
||||
msgstr "Base des agendas"
|
||||
|
||||
#. translators: %s : home url
|
||||
#: inc/class-settings.php:197
|
||||
msgid ""
|
||||
"You can modify the URL prefix for the calendars. For example, the default "
|
||||
"prefix is <code>calendar</code>, so URLs will look like <code>%s/calendar/"
|
||||
"calendar-name</code>."
|
||||
msgstr ""
|
||||
"Vous pouvez modifier le préfixe des URLs des agendas. Par exemple, le "
|
||||
"préfixe par défaut est <code>agenda</code>, donc vos URLs ressembleront à "
|
||||
"<code>%s/agenda/nom-de-l-agenda</code>."
|
||||
|
||||
#: inc/class-shortcodes.php:68
|
||||
msgid ""
|
||||
"Please provide a valid calendar UID to display in the calendar settings."
|
||||
msgstr "Veuillez fournir un UID d'agenda valide dans les réglages de l'agenda."
|
||||
|
||||
#: inc/class-shortcodes.php:216
|
||||
msgid "Preview the calendar"
|
||||
msgstr "Prévisualiser l'agenda"
|
||||
|
||||
#: inc/class-shortcodes.php:278
|
||||
msgid "Search this calendar"
|
||||
msgstr "Chercher dans cet agenda"
|
||||
|
||||
#: inc/helper-functions.php:263
|
||||
msgid "Fetching events... Please wait a moment."
|
||||
msgstr "Recherche des événements en cours... Veuillez patienter un moment."
|
||||
|
||||
#: inc/helper-functions.php:275
|
||||
msgid ""
|
||||
"There was an error updating the events. Pleaser refresh the page and try "
|
||||
"again."
|
||||
msgstr ""
|
||||
"Il y a eu une erreur lors de la mise à jour des événements. Veuillez "
|
||||
"rafraichir la page et réessayer."
|
||||
|
||||
#. translators: %s : next event relative timing
|
||||
#: inc/helper-functions.php:307
|
||||
msgctxt "next event timing"
|
||||
msgid "In %s"
|
||||
msgstr "Dans %s"
|
||||
|
||||
#. translators: %s : last event relative timing
|
||||
#: inc/helper-functions.php:309
|
||||
msgctxt "last event timing"
|
||||
msgid "%s ago"
|
||||
msgstr "Il y a %s"
|
||||
|
||||
#: inc/template-tags.php:246
|
||||
msgid "No timing avilable"
|
||||
msgstr "Pas d'horaire disponible"
|
||||
|
||||
#: inc/template-tags.php:306
|
||||
msgid "View previous month"
|
||||
msgstr "Voir le mois précédent"
|
||||
|
||||
#: inc/template-tags.php:309
|
||||
msgid "View next month"
|
||||
msgstr "Voir le mois suivant"
|
||||
|
||||
#: inc/template-tags.php:397
|
||||
msgid "Share on Facebook"
|
||||
msgstr "Partagez sur Facebook"
|
||||
|
||||
#: inc/template-tags.php:402
|
||||
msgid "Share on Twitter"
|
||||
msgstr "Partagez sur Twitter"
|
||||
|
||||
#: inc/template-tags.php:410
|
||||
msgid "Share on Linkedin"
|
||||
msgstr "Partagez sur LinkedIn"
|
||||
|
||||
#: inc/template-tags.php:440
|
||||
msgid "Share :"
|
||||
msgstr "Partager :"
|
||||
|
||||
#: inc/template-tags.php:504
|
||||
msgid "Previous page"
|
||||
msgstr "Page précédente"
|
||||
|
||||
#: inc/template-tags.php:505
|
||||
msgid "Next page"
|
||||
msgstr "Page suivante"
|
||||
|
||||
#: inc/template-tags.php:645
|
||||
msgid "Download :"
|
||||
msgstr "Télécharger :"
|
||||
|
||||
#: inc/template-tags.php:725
|
||||
msgctxt "event navigation"
|
||||
msgid "Next event"
|
||||
msgstr "Evénement suivant"
|
||||
|
||||
#: inc/template-tags.php:726
|
||||
msgctxt "event navigation"
|
||||
msgid "Previous event"
|
||||
msgstr "Evénement précédent"
|
||||
|
||||
#: templates/event-loop.php:28
|
||||
msgid "Sorry, we could not find any event."
|
||||
msgstr "Désolé, aucun événement n'a été trouvé."
|
||||
@@ -0,0 +1,181 @@
|
||||
# payware Mobile Payments for WooCommerce
|
||||
# Copyright (C) 2021
|
||||
# This file is distributed under the same license as the payware Mobile Payments for WooCommerce package.
|
||||
# info@payware.eu 2021
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-03-14 16:00+0200\n"
|
||||
"PO-Revision-Date: 2021-03-14 15:18+0200\n"
|
||||
"Last-Translator: info@payware.eu\n"
|
||||
"Language-Team: info@payware.eu\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-paywr-form-fields.php:9
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:10
|
||||
msgid "Enable payware mobile payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:16
|
||||
msgid "Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:17
|
||||
msgid "Enable Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:19
|
||||
msgid ""
|
||||
"Place the payment gateway in test mode.<br>Use the <a href=\"https://play."
|
||||
"google.com/store/apps/details?id=eu.payware.demo.fi\">payware e-wallet "
|
||||
"emulator</a> to confirm a payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:24
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:26
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:27
|
||||
msgid "Mobile payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:31
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:33
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:34
|
||||
msgid "Pay with your favorite payment mobile app."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:45
|
||||
msgid "Payware partner data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:49
|
||||
msgid "Partner ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:51
|
||||
msgid ""
|
||||
"<a href=\"https://kb.payware.eu/general/faqs#where-is-my-partner-identifier"
|
||||
"\" target=\"_blank\">Where is my payware partner identifier?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:52
|
||||
#: includes/class-paywr-form-fields.php:58
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:55
|
||||
msgid "vPOS identifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:57
|
||||
msgid ""
|
||||
"<a href=\"https://kb.payware.eu/general/faqs#where-are-my-virtual-pos-"
|
||||
"identifiers\" target=\"_blank\">Where is my vPOS identifier?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:62
|
||||
msgid "Payware Public Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:64
|
||||
msgid ""
|
||||
"<a href=\"https://kb.payware.eu/general/faqs#where-is-payware-public-key\" "
|
||||
"target=\"_blank\">Where is payware Public Key?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:68
|
||||
msgid "Payment period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:70
|
||||
msgid ""
|
||||
"The time allowed for payment completion in seconds. Accepted range 60 - 600."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:71
|
||||
msgid "600"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:74
|
||||
msgid "Mobile page url"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:75
|
||||
msgid "Use default if unsure, e.g. - mobile-payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:28
|
||||
msgid "Mobile payments by payware"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:29
|
||||
msgid "Enables receiving payments by customer's favorite payment app."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:156
|
||||
msgid "No valid payment link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:260
|
||||
msgid "Your order is paid. Thank you!"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:60
|
||||
msgid "Awaiting mobile payment"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:61
|
||||
msgid "Back to checkout"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:112
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:173
|
||||
msgid "Expired"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:174
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:193
|
||||
msgid "Shared payment"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:201
|
||||
msgid "Pay Now"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:213
|
||||
msgid "Action is missed"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:228
|
||||
msgid "Invalid order ID"
|
||||
msgstr ""
|
||||
@@ -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,2 @@
|
||||
/*1.0.0 - 2021.03.10 */
|
||||
- The first released
|
||||
@@ -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 ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -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 ""
|
||||
@@ -0,0 +1,350 @@
|
||||
# Copyright (C) 2021 Team ReviewPack
|
||||
# This file is distributed under the same license as the ReviewPack Reviews plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ReviewPack Reviews 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/reviewpack-reviews-seo\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-25T13:35:34+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: reviewpack\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "ReviewPack Reviews"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://reviewpack.eu"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Collect feedback about your company and site with this plugin for ReviewPack. Improve your business quality and sales."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Team ReviewPack"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://reviewpack.eu/about-us"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:56
|
||||
msgid "ReviewPack reviews"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:114
|
||||
#: views/admin_dashboard.php:7
|
||||
msgid "ReviewPack dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:116
|
||||
#: views/admin_dashboard.php:27
|
||||
#: views/admin_invites.php:25
|
||||
#: views/admin_settings.php:20
|
||||
#: views/admin_widgets.php:25
|
||||
msgid "Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:117
|
||||
#: views/admin_dashboard.php:24
|
||||
#: views/admin_invites.php:23
|
||||
#: views/admin_settings.php:18
|
||||
#: views/admin_widgets.php:22
|
||||
msgid "Invite mail"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:134
|
||||
msgid "Please activate an integration in the ReviewPack settings. Otherwise we will not be able to send invitations automatically!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:135
|
||||
#: src/Admin/Admin.php:146
|
||||
#: src/Admin/Admin.php:251
|
||||
msgid "Configure now"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:145
|
||||
msgid "Please validate the ReviewPack plugin settings and connect a (free) ReviewPack account. Otherwise we will not be able to send invitations!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:243
|
||||
msgid "Total reviews"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:245
|
||||
msgid "Open public page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:247
|
||||
msgid "Whoops: could not fetch data:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:250
|
||||
msgid "The plugin is not connected with ReviewPack."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Integrations.php:80
|
||||
msgid "ReviewPack invite planned, sent on %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Integrations.php:87
|
||||
msgid "ReviewPack error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:57
|
||||
msgid "API token"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:58
|
||||
msgid "API secret"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:60
|
||||
msgid "WordPress integrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:61
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:64
|
||||
msgid "Company settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:130
|
||||
msgid "Copy and paste the API token and secret here. You can find the tokens in the ReviewPack portal, at the Sales Channel section."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:138
|
||||
msgid "This company is linked with your API credentials and will be used on this WordPress site."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:144
|
||||
msgid "View public page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:147
|
||||
msgid "Could not fetch company details, please try again!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:156
|
||||
msgid "Select the integrations with which you want to automatically send invitations. This invitation will only be processed after the order or reservation has been completed. We automatically send an email to the customer to leave a review behind."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:198
|
||||
msgid "No compatible integrations activated, please contact us with your wishes! Currently, only WooCommerce is supported."
|
||||
msgstr ""
|
||||
|
||||
#: src/Frontend/Shortcodes.php:63
|
||||
msgid "Please define a valid widget type"
|
||||
msgstr ""
|
||||
|
||||
#: src/Resources/Api.php:247
|
||||
msgid "Wrong API response, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Resources/Api.php:252
|
||||
msgid "Wrong API response: "
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:12
|
||||
#: views/admin_invites.php:12
|
||||
#: views/admin_settings.php:10
|
||||
#: views/admin_widgets.php:12
|
||||
msgid "Open ReviewPack"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:19
|
||||
#: views/admin_invites.php:18
|
||||
#: views/admin_settings.php:16
|
||||
#: views/admin_widgets.php:18
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:21
|
||||
#: views/admin_invites.php:20
|
||||
#: views/admin_settings.php:17
|
||||
#: views/admin_widgets.php:20
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:34
|
||||
#: views/admin_invites.php:32
|
||||
#: views/admin_settings.php:26
|
||||
#: views/admin_widgets.php:32
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:39
|
||||
#: views/admin_invites.php:37
|
||||
#: views/admin_settings.php:30
|
||||
#: views/admin_widgets.php:37
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:54
|
||||
msgid "About your company"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:57
|
||||
msgid "Edit details"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:70
|
||||
msgid "Company rating"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:73
|
||||
msgid "No review data yet, please invite more customers."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:84
|
||||
msgid "Based on %d reviews"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:90
|
||||
msgid "Your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:93
|
||||
msgid "Upgrade plan"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:99
|
||||
msgid "Subscription"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:104
|
||||
msgid "Invites"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:110
|
||||
msgid "Invite reset date"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:119
|
||||
msgid "Recent reviews"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:122
|
||||
msgid "Manage reviews"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:129
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:130
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:131
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:145
|
||||
msgid "No title"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:157
|
||||
msgid "Recent invites"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:160
|
||||
msgid "Manage invites"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:167
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:168
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:169
|
||||
msgid "Planned"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:7
|
||||
#: views/admin_settings.php:6
|
||||
#: views/admin_widgets.php:7
|
||||
msgid "ReviewPack settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:52
|
||||
msgid "First invitation mail to customer"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:54
|
||||
msgid "Edit mail"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:60
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:67
|
||||
msgid "Hi [name],"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:73
|
||||
msgid "Click on the desired number of stars:"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:84
|
||||
msgid "Sincerely,"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:52
|
||||
msgid "Small review counter"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:62
|
||||
#: views/admin_widgets.php:78
|
||||
#: views/admin_widgets.php:94
|
||||
#: views/admin_widgets.php:113
|
||||
msgid "Use this shortcode:"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:68
|
||||
msgid "Score widget"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:84
|
||||
msgid "Score widget with title"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:103
|
||||
msgid "Big review Carrousel"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:2
|
||||
msgid "Connect a free ReviewPack account"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:4
|
||||
msgid "Create a free ReviewPack account"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:8
|
||||
msgid "We invite your customers automatically by email"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:9
|
||||
msgid "Public review page that increases trust in your online store"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:10
|
||||
msgid "Show widgets with your review score to increase conversion rates"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:11
|
||||
msgid "Start with a free account"
|
||||
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
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
# Copyright (C) 2020 Pdfcrowd <support@pdfcrowd.com>
|
||||
# This file is distributed under the same license as the Save as Image by Pdfcrowd plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Save as Image by Pdfcrowd 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/save-as-image-pdfcrowd\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-03T11:27:22+01:00\n"
|
||||
"PO-Revision-Date: 2021-01-27T09:46:19+01:00\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: save_as_image_pdfcrowd\n"
|
||||
|
||||
msgid "Save as Image by Pdfcrowd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email with the image has been sent."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error occurred."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enter your email:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,42 @@
|
||||
# Copyright (C) 2020 Pdfcrowd <support@pdfcrowd.com>
|
||||
# This file is distributed under the same license as the Save as PDF by Pdfcrowd plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Save as PDF by Pdfcrowd 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/save-as-pdf-pdfcrowd\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-03T11:27:22+01:00\n"
|
||||
"PO-Revision-Date: 2021-01-27T09:46:19+01:00\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: save_as_pdf_pdfcrowd\n"
|
||||
|
||||
msgid "Save as PDF by Pdfcrowd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email with PDF has been sent."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error occurred."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enter your email:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,624 @@
|
||||
# Copyright (C) 2021 SecurePay Sdn Bhd
|
||||
# This file is distributed under the same license as the SecurePay for Gravityforms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SecurePay for Gravityforms 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/securepay-for-gravityforms\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-03-17T15:35:55+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: securepaygfm\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SecurePay for Gravityforms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://securepay.my/?utm_source=wp-plugins-gravityforms&utm_campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept payment by using SecurePay. A Secure Marketplace Platform for Malaysian."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "SecurePay Sdn Bhd"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://securepay.my/?utm_source=wp-plugins-gravityforms&utm_campaign=author-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:318
|
||||
#: includes/src/GFSecurePay.php:626
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:304
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:304
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:305
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:613
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:305
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:613
|
||||
msgid "Pay with SecurePay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:518
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:504
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:504
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:505
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:505
|
||||
msgid "Live Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:522
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:509
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:509
|
||||
msgid "Your SecurePay Live Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:522
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:509
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:509
|
||||
msgid "Enter the SecurePay Live Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:526
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:512
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:512
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:513
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:513
|
||||
msgid "Live Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:530
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:517
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:517
|
||||
msgid "Your SecurePay Live Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:530
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:517
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:517
|
||||
msgid "Enter the SecurePay Live Checksum Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:534
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:520
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:520
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:521
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:521
|
||||
msgid "Live UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:538
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:525
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:525
|
||||
msgid "Your SecurePay Live UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:538
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:525
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:525
|
||||
msgid "Enter the SecurePay Live UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:542
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:528
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:528
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:529
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:529
|
||||
msgid "Live Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:533
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:533
|
||||
msgid "Your SecurePay Live Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:533
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:533
|
||||
msgid "Enter the SecurePay Live Partner UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:550
|
||||
#: includes/src/GFSecurePay.php:559
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:536
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:536
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:537
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:537
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:546
|
||||
msgid "Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:555
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:541
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:541
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:542
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:542
|
||||
msgid "Enable Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:559
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:546
|
||||
msgid "Enable Sandbox for testing purposes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:563
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:549
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:549
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:550
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:550
|
||||
msgid "Sandbox Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:567
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:554
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:554
|
||||
msgid "Your SecurePay Sandbox Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:567
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:554
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:554
|
||||
msgid "Enter the SecurePay Sandbox Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:571
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:557
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:557
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:558
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:558
|
||||
msgid "Sandbox Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:575
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:562
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:562
|
||||
msgid "Your SecurePay Sandbox Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:575
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:562
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:562
|
||||
msgid "Enter the SecurePay Sandbox Checksum Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:579
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:565
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:565
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:566
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:566
|
||||
msgid "Sandbox UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:583
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:570
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:570
|
||||
msgid "Your SecurePay Sandbox UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:583
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:570
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:570
|
||||
msgid "Enter the SecurePay Sandbox UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:587
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:573
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:573
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:574
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:574
|
||||
msgid "Sandbox Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:578
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:578
|
||||
msgid "Your SecurePay Sandbox Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:578
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:578
|
||||
msgid "Enter the SecurePay Sandbox Partner UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:595
|
||||
#: includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:581
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:581
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:582
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:582
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:591
|
||||
msgid "Show Bank List"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:600
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:586
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:586
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:587
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:587
|
||||
msgid "SecurePay Supported Banks"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:591
|
||||
msgid "SecurePay Supported Banks."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:608
|
||||
#: includes/src/GFSecurePay.php:617
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:594
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:594
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:595
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:595
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:604
|
||||
msgid "Show Bank Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:613
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:599
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:599
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:600
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:600
|
||||
msgid "Use supported banks logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:617
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:604
|
||||
msgid "SecurePay Supported Banks Logo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:621
|
||||
#: includes/src/GFSecurePay.php:625
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:607
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:607
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:608
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:608
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:612
|
||||
msgid "Bank Selection Header"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:625
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:612
|
||||
msgid "This is the header for bank selection."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:629
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:615
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:615
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:616
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:616
|
||||
msgid "Bill Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:632
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:619
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:619
|
||||
msgid "SecurePay Bills Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:632
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:619
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:619
|
||||
msgid "Enter your description here. It will displayed on Bill page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:647
|
||||
#: includes/src/GFSecurePay.php:651
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:633
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:633
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:634
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:638
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:634
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:638
|
||||
msgid "Return URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:651
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:638
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:638
|
||||
msgid "Return to this URL after payment complete. Leave blank for default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:655
|
||||
#: includes/src/GFSecurePay.php:659
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:641
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:641
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:642
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:646
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:642
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:646
|
||||
msgid "Cancel URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:659
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:646
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:646
|
||||
msgid "Return to this URL if payment failed. Leave blank for default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:666
|
||||
#: includes/src/GFSecurePay.php:668
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:652
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:652
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:653
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:655
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:653
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:655
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:668
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:655
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:655
|
||||
msgid "Enable this option if you would like to only send out this form's notifications for the 'Form is submitted' event after payment has been received. Leaving this option disabled will send these notifications immediately after the form is submitted. Notifications which are configured for other events will not be affected by this option."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:676
|
||||
#: includes/src/GFSecurePay.php:678
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:662
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:662
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:663
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:665
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:663
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:665
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:678
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:665
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:665
|
||||
msgid "Enable this option if you would like to only create the post after payment has been received."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:681
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:667
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:667
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:668
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:668
|
||||
msgid "Create post only when payment is received."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:722
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:708
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:708
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:709
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:709
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:727
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:713
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:713
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:714
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:714
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:732
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:718
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:718
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:719
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:719
|
||||
msgid "Mobile Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:737
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:723
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:733
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:723
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:724
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:724
|
||||
msgid "Reference #1 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:742
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:728
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:728
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:729
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:729
|
||||
msgid "Reference #1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:747
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:733
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:734
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:734
|
||||
msgid "Reference #2 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:752
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:738
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:738
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:739
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:739
|
||||
msgid "Reference #2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:757
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:744
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:744
|
||||
msgid "Reference #3 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:762
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:749
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:749
|
||||
msgid "Reference #3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:767
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:754
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:754
|
||||
msgid "Reference #4 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:772
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:759
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:759
|
||||
msgid "Reference #4"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:777
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:764
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:764
|
||||
msgid "Reference #5 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:782
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:769
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:769
|
||||
msgid "Reference #5"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:787
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:774
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:774
|
||||
msgid "Reference #6 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:792
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:779
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:779
|
||||
msgid "Reference #6"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:814
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:760
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:760
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:801
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:801
|
||||
msgid "SecurePay Field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:861
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:807
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:807
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:848
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:848
|
||||
msgid "Send notifications for the 'Form is submitted' event only when payment is received."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:948
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:894
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:894
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:935
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:935
|
||||
msgid "Mark Post as Draft"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:952
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:898
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:898
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:939
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:939
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:1280
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:1170
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:1170
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:1264
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:1264
|
||||
msgid "Payment Completed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:1281
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:1171
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:1171
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:1265
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:1265
|
||||
msgid "Payment Failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/SecurePayGFM.php:74
|
||||
msgid "SecurePay for GravityForms require GravityForms plugin. Please install and activate."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright (C) 2021 cs_army
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Seo Assistant 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/cs_army/seo-assistant/issues\n"
|
||||
"POT-Creation-Date: 2021-01-26 14:36:26+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: cs army <cs.army021@gmail.com>\n"
|
||||
"Language-Team: cs army <cs.army021@gmail.com>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:182
|
||||
msgid "Enable Google Webmaster"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:190
|
||||
msgid "Google Webmaster ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:213
|
||||
msgid "Enable Google Analytics"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:221
|
||||
msgid "Google Analytics ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:245
|
||||
msgid "Enable Google Tag Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:253
|
||||
msgid "Google Tag Manager ID"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Add tracking and verification script on your WordPress site with ease. "
|
||||
"Place your ids and content tags in *Easy Tags and Tracking Id Inserter* to "
|
||||
"get verified."
|
||||
msgstr ""
|
||||
181
spec/fixtures/dynamic_finders/plugin_version/shortnotes/translation_file/languages/shortnotes.pot
vendored
Normal file
181
spec/fixtures/dynamic_finders/plugin_version/shortnotes/translation_file/languages/shortnotes.pot
vendored
Normal file
@@ -0,0 +1,181 @@
|
||||
# Copyright (C) 2021 jeremyfelt
|
||||
# This file is distributed under the same license as the Shortnotes plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Shortnotes 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/shortnotes\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-03-12T20:01:18+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: shortnotes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Shortnotes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/shortnotes/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add a notes post type to WordPress. For your short notes."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "jeremyfelt"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://jeremyfelt.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:31
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:32
|
||||
#: includes/post-type-note.php:155
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:34
|
||||
msgid "Add New Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:35
|
||||
msgid "Edit Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:36
|
||||
msgid "New Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:37
|
||||
msgid "View Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:38
|
||||
msgid "View Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:39
|
||||
msgid "Search Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:40
|
||||
msgid "No notes found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:41
|
||||
msgid "No notes found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:42
|
||||
msgid "All Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:43
|
||||
msgid "Note Archives"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:44
|
||||
msgid "Note Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:45
|
||||
msgid "Insert into note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:46
|
||||
msgid "Uploaded to this note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:47
|
||||
msgid "Filter notess list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:48
|
||||
msgid "Notes list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:49
|
||||
msgid "Notes list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:50
|
||||
msgid "Note published."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:51
|
||||
msgid "Note published privately."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:52
|
||||
msgid "Note reverted to draft."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:53
|
||||
msgid "Note scheduled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:54
|
||||
msgid "Note updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:103
|
||||
msgid "The URL this note is a reply to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:117
|
||||
msgid "A name this note is a reply to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:190
|
||||
msgid "Image posted on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:192
|
||||
msgid "Images posted on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:242
|
||||
msgid "Your note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:270
|
||||
msgid "this post"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:26
|
||||
msgid "The Shortnotes WordPress plugin requires PHP 5.6 to function properly. Please upgrade PHP or deactivate the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:23
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:27
|
||||
msgid "Reply to URL (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:28
|
||||
msgid "Enter a URL if this note is a reply"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:33
|
||||
msgid "Reply to name (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:34
|
||||
msgid "Enter a name this reply is directed to"
|
||||
msgstr ""
|
||||
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
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user