Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
824697490f | ||
|
|
62e01cb9d6 | ||
|
|
87c2f82b80 | ||
|
|
f887f8baa4 | ||
|
|
4d00d97be9 | ||
|
|
b0e946ee29 | ||
|
|
1220b9f47b | ||
|
|
12d2d0ffb0 | ||
|
|
4581113741 | ||
|
|
a20c769eae | ||
|
|
3259316cf1 | ||
|
|
9cc06234e4 | ||
|
|
1ee73268d7 | ||
|
|
f477620899 | ||
|
|
8a9dc1ce2c | ||
|
|
b584aa24bd | ||
|
|
8dfe78a210 | ||
|
|
7143cb5def | ||
|
|
e6c49d99b6 | ||
|
|
6e71f9771c | ||
|
|
452126b56a | ||
|
|
28dfd8b3b9 | ||
|
|
d3196bc03f | ||
|
|
0bff3231cd |
@@ -52,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
|
||||
|
||||
|
||||
@@ -170,6 +170,12 @@ module WPScan
|
||||
['--users-detection MODE',
|
||||
'Use the supplied mode to enumerate Users, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
),
|
||||
OptRegexp.new(
|
||||
[
|
||||
'--exclude-usernames REGEXP_OR_STRING',
|
||||
'Exclude usernames matching the Regexp/string (case insensitive). Regexp delimiters are not required.'
|
||||
], options: Regexp::IGNORECASE
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -11,6 +11,16 @@ require_relative 'users/yoast_seo_author_sitemap'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
# Specific Finders container to filter the usernames found
|
||||
# and remove the ones matching ParsedCli.exclude_username if supplied
|
||||
class UsersFinders < SameTypeFinders
|
||||
def filter_findings
|
||||
findings.delete_if { |user| ParsedCli.exclude_usernames.match?(user.username) } if ParsedCli.exclude_usernames
|
||||
|
||||
findings
|
||||
end
|
||||
end
|
||||
|
||||
module Users
|
||||
# Users Finder
|
||||
class Base
|
||||
@@ -28,6 +38,10 @@ module WPScan
|
||||
Users::AuthorIdBruteForcing.new(target) <<
|
||||
Users::LoginErrorMessages.new(target)
|
||||
end
|
||||
|
||||
def finders
|
||||
@finders ||= Finders::UsersFinders.new
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
module Finders
|
||||
# Specific Finders container to filter the version detected
|
||||
# and remove the one with low confidence to avoid false
|
||||
# positive when there is not enought information to accurately
|
||||
# positive when there is not enough information to accurately
|
||||
# determine it.
|
||||
class WpVersionFinders < UniqueFinders
|
||||
def filter_findings
|
||||
|
||||
@@ -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.14'
|
||||
VERSION = '3.8.17'
|
||||
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
|
||||
|
||||
@@ -76,7 +76,7 @@ describe WPScan::Controller::Enumeration do
|
||||
config_backups_list config_backups_detection
|
||||
db_exports_list db_exports_detection
|
||||
medias_detection
|
||||
users_list users_detection]
|
||||
users_list users_detection exclude_usernames]
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
3025
spec/fixtures/db/dynamic_finders.yml
vendored
3025
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"
|
||||
}
|
||||
]
|
||||
}
|
||||
1340
spec/fixtures/dynamic_finders/expected.yml
vendored
1340
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
|
||||
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
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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
***CHANGELOG***
|
||||
|
||||
|
||||
Version 1.0.0 - 09 March 2021
|
||||
|
||||
|
||||
* Initial release
|
||||
|
||||
@@ -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,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
|
||||
@@ -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.
|
||||
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"
|
||||
}
|
||||
}
|
||||
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,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 ""
|
||||
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
File diff suppressed because it is too large
Load Diff
@@ -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,2 @@
|
||||
/*1.0.0 - 2021.03.10 */
|
||||
- The first released
|
||||
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,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 ""
|
||||
@@ -0,0 +1,623 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"Project-Id-Version: Starter Sites 1.5.1\n"
|
||||
"POT-Creation-Date: 2021-03-10 11:02+0000\n"
|
||||
"PO-Revision-Date: 2020-05-22 10:11+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: WP Starter Sites - https://wpstartersites.com\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"
|
||||
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
||||
"X-Poedit-WPHeader: starter-sites.php\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
||||
|
||||
#: inc/class-wpss-customizer-importer.php:36
|
||||
#, php-format
|
||||
msgid "The customizer import file is missing! File path: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-customizer-importer.php:56
|
||||
msgid ""
|
||||
"The customizer import file is not in a correct format. Please make sure to "
|
||||
"use the correct customizer import file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-customizer-importer.php:62
|
||||
msgid ""
|
||||
"The customizer import file is not suitable for current theme. You can only "
|
||||
"import customizer settings for the same theme or a child theme."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:70
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\"import_file_url\" or \"local_import_file\" for %s%s%s are not defined!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:181
|
||||
#, php-format
|
||||
msgid "URL for %s%s%s file is not defined!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:203
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error occurred while fetching %s%s%s file from the server!%sReason: %s - "
|
||||
"%s."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:243 inc/class-wpss-helpers.php:287
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error occurred while writing file to your server! Tried to write a file "
|
||||
"to: %s%s."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:322
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error occurred while reading a file from your server! Tried reading file "
|
||||
"from path: %s%s."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:346
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This WordPress page does not have %sdirect%s write file access. This plugin "
|
||||
"needs it in order to save the demo import xml file to the upload directory "
|
||||
"of your site. You can change this setting with these instructions: %s."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: inc/class-wpss-helpers.php:357 inc/class-wpss-helpers.php:358
|
||||
#: inc/class-wpss-main.php:84 inc/class-wpss-main.php:85
|
||||
#: inc/class-wpss-main.php:205
|
||||
msgid "Starter Sites"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:370
|
||||
msgid ""
|
||||
"An error occurred while retrieving reading/writing permissions to your "
|
||||
"server (could not retrieve WP filesystem credentials)!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:378
|
||||
msgid "Your WordPress login credentials don't allow to use WP_Filesystem!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:443
|
||||
msgid "Starter Sites - "
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:479
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%sYour user role is not high enough. You do not have permission to import "
|
||||
"demo data.%s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:515
|
||||
msgid ""
|
||||
"Please upload XML file for content import. If you want to import widgets or "
|
||||
"customizer settings only, please use Widget Importer & Exporter or the "
|
||||
"Customizer Export/Import plugin."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:517 inc/class-wpss-helpers.php:539
|
||||
#: inc/class-wpss-helpers.php:558 inc/class-wpss-helpers.php:566
|
||||
msgid "Upload files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:535
|
||||
#, php-format
|
||||
msgid "Widget file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:554
|
||||
#, php-format
|
||||
msgid "Customizer file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:564
|
||||
msgid "The import files were successfully uploaded!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:582
|
||||
#, php-format
|
||||
msgid "Initial max execution time = %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:586
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Files info:%1$sSite URL = %2$s%1$sData file = %3$s%1$sWidget file = %4$s"
|
||||
"%1$sCustomizer file = %5$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-helpers.php:590 inc/class-wpss-helpers.php:591
|
||||
msgid "not defined!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:99
|
||||
msgid "Preview Sites"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:140
|
||||
msgid "Activating Theme..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:149
|
||||
msgid ""
|
||||
"Your user role is not high enough. You do not have permission to activate "
|
||||
"themes."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:161
|
||||
msgid ""
|
||||
"Your user role is not high enough. You do not have permission to install "
|
||||
"themes."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:170
|
||||
msgid "Activating Plugins..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:179
|
||||
msgid ""
|
||||
"Your user role is not high enough. You do not have permission to activate "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:191
|
||||
msgid ""
|
||||
"Your user role is not high enough. You do not have permission to install "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%sWarning: your server is using %sPHP safe mode%s. This means that you might "
|
||||
"experience server timeout errors.%s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:224
|
||||
msgid "Ready to go WordPress starter sites and demos."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:227
|
||||
msgid "Quickly import live demo content, widgets and settings."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:230
|
||||
msgid ""
|
||||
"This will provide you with a basic layout to build your website and speed up "
|
||||
"the development process."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:235
|
||||
msgid "The following data will be imported:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:237
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:238
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:239
|
||||
msgid "Products (if e-commerce)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:240
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:241
|
||||
msgid "Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:242
|
||||
msgid "Menus"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:243
|
||||
msgid "Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:248
|
||||
msgid ""
|
||||
"It is recommended to import demo content to a brand new, fresh WordPress "
|
||||
"site."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:249
|
||||
msgid ""
|
||||
"Your existing content will NOT be deleted or modified, and your existing "
|
||||
"theme customizations will NOT be overwritten."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:277
|
||||
msgid "There seems to be a connection error. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:302
|
||||
msgid "Browse by theme:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:307
|
||||
msgid "All Themes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:347
|
||||
msgid "This demo will be available very soon!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:360
|
||||
msgid "update required"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:366
|
||||
msgid "PRO"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:446
|
||||
msgid "Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:455
|
||||
msgid "Plugins:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:491
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:496
|
||||
msgid "Activate Theme & Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:498
|
||||
msgid "Activate Theme"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:500
|
||||
msgid "Activate Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:513 inc/class-wpss-main.php:519
|
||||
msgid "GO PRO"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:530
|
||||
msgid "View Demo"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:539
|
||||
msgid "More sites and demos here soon."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:554
|
||||
msgid "Importing, please wait!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:580
|
||||
msgid "No preview image defined for this import."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:638
|
||||
msgid "Manually uploaded files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:655 inc/class-wpss-main.php:666
|
||||
msgid "Downloaded files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:662
|
||||
#, php-format
|
||||
msgid "The import files for: %s were successfully downloaded!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:672
|
||||
msgid "No import files specified!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:716
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$s%3$sThat's it, all done!%4$s%2$sThe import has finished. Please "
|
||||
"%6$scheck your site%7$s and make sure that everything has imported correctly."
|
||||
"%5$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:729
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$sThe demo import has finished, but there were some import errors.%2$sMore "
|
||||
"details about the errors can be found in this %3$s%5$slog file%6$s%4$s%7$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:783
|
||||
msgid "Max execution time after content import = "
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:785
|
||||
msgid "Importing content"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:824 inc/class-wpss-main.php:836
|
||||
msgid "Importing widgets"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:858 inc/class-wpss-main.php:866
|
||||
msgid "Importing customizer settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:864
|
||||
msgid "Customizer settings import finished!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:916
|
||||
msgid "Completed AJAX call number: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:1194 inc/class-wpss-main.php:1228
|
||||
#: inc/class-wpss-main.php:1248 inc/class-wpss-main.php:1299
|
||||
msgid "Activated"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-main.php:1196 inc/class-wpss-main.php:1230
|
||||
#: inc/class-wpss-main.php:1250 inc/class-wpss-main.php:1301
|
||||
msgid "Could not be activated"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:44
|
||||
msgid "Widget import file could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:76
|
||||
msgid "Widget import data could not be read. Please try a different file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:116
|
||||
msgid "Sidebar does not exist in theme (moving widget to Inactive)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:138
|
||||
msgid "Site does not support widget"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:173
|
||||
msgid "Widget already exists"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:232
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:236
|
||||
msgid "Imported to Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:242
|
||||
msgid "No Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpss-widget-importer.php:291
|
||||
msgid "No results for widget import!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:130
|
||||
msgid "Could not open the file for parsing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:166
|
||||
#: inc/importer/class-wxr-importer.php:282
|
||||
#: inc/importer/class-wxr-importer.php:355
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This WXR file (version %s) is newer than the importer (version %s) and may "
|
||||
"not be supported. Please consider updating."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:504
|
||||
msgid "The file does not exist, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:564
|
||||
msgid "Invalid author mapping"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:665
|
||||
msgid "Cannot import auto-draft posts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:753
|
||||
#, php-format
|
||||
msgid "Failed to import \"%s\": Invalid post type %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:763
|
||||
#, php-format
|
||||
msgid "%s \"%s\" already exists."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:841
|
||||
#, php-format
|
||||
msgid "Skipping attachment \"%s\", fetching attachments disabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:855
|
||||
#, php-format
|
||||
msgid "Failed to import \"%s\" (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:887
|
||||
#: inc/importer/class-wxr-importer.php:1705
|
||||
#, php-format
|
||||
msgid "Imported \"%s\" (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:892
|
||||
#, php-format
|
||||
msgid "Post %d remapped to %d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1036
|
||||
msgid "Invalid file type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1519
|
||||
#, php-format
|
||||
msgid "Failed to import user \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1540
|
||||
#, php-format
|
||||
msgid "Imported user \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1544
|
||||
#, php-format
|
||||
msgid "User %d remapped to %d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1681
|
||||
#, php-format
|
||||
msgid "Failed to import %s %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1710
|
||||
#, php-format
|
||||
msgid "Term %d remapped to %d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1763
|
||||
#, php-format
|
||||
msgid "Remote server returned %1$d %2$s for %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1776
|
||||
msgid "Remote file is incorrect size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1781
|
||||
msgid "Zero size file downloaded"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1787
|
||||
#, php-format
|
||||
msgid "Remote file is too large, limit is %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1809
|
||||
#, php-format
|
||||
msgid "Running post-processing for post %d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1822
|
||||
#, php-format
|
||||
msgid "Could not find the post parent for \"%s\" (post #%d)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1827
|
||||
#, php-format
|
||||
msgid "Post %d was imported with parent %d, but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1841
|
||||
#, php-format
|
||||
msgid "Could not find the author for \"%s\" (post #%d)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1846
|
||||
#, php-format
|
||||
msgid "Post %d was imported with author \"%s\", but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1872
|
||||
#, php-format
|
||||
msgid "Post %d was marked for post-processing, but none was required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1883
|
||||
#, php-format
|
||||
msgid "Could not update \"%s\" (post #%d) with mapped data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1928
|
||||
#, php-format
|
||||
msgid "Could not find the menu object for \"%s\" (post #%d)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1933
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Post %d was imported with object \"%d\" of type \"%s\", but could not be "
|
||||
"found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1955
|
||||
#, php-format
|
||||
msgid "Could not find the comment parent for comment #%d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1959
|
||||
#, php-format
|
||||
msgid "Comment %d was imported with parent %d, but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1973
|
||||
#, php-format
|
||||
msgid "Could not find the author for comment #%d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1977
|
||||
#, php-format
|
||||
msgid "Comment %d was imported with author %d, but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importer/class-wxr-importer.php:1994
|
||||
#, php-format
|
||||
msgid "Could not update comment #%d with mapped data"
|
||||
msgstr ""
|
||||
|
||||
#: starter-sites.php:30
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The %2$sStarter Sites%3$s plugin requires %2$sPHP 5.6+%3$s to run properly. "
|
||||
"Please contact your hosting company and ask them to update the PHP version "
|
||||
"of your site to at least PHP 5.6.%4$s Your current version of PHP: %2$s%1$s"
|
||||
"%3$s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpstartersites.com/plugin/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Ready to go WordPress starter sites and demos, created with the visual "
|
||||
"blocks (Gutenberg) editor. Quickly import demo content, widgets, and theme "
|
||||
"customizer settings."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Starter Sites"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpstartersites.com/"
|
||||
msgstr ""
|
||||
321
spec/fixtures/dynamic_finders/plugin_version/th-reviews-bar/translation_file/lang/thrb-de_DE.po
vendored
Normal file
321
spec/fixtures/dynamic_finders/plugin_version/th-reviews-bar/translation_file/lang/thrb-de_DE.po
vendored
Normal file
@@ -0,0 +1,321 @@
|
||||
# Copyright (C) 2021 triopsi
|
||||
# This file is distributed under the same license as the TH Reviews Bar plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TH Reviews Bar 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/th-reviews-bar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-09T12:22:00+01:00\n"
|
||||
"PO-Revision-Date: 2021-02-09 12:47+0100\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: thrb\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TH Reviews Bar"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.wiki.profoxi.de"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple reviews plugin. Create and display reviews on your site or posts. Includes: Widget"
|
||||
msgstr "Ein einfacher Bewertungs Plugin. Erstelle und zeige Bewertungen auf deiner Seite oder in deinen Beiträgen. Inklusiv: Widget"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "triopsi"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://wiki.profoxi.de"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-help.php:30
|
||||
msgid "How It Works"
|
||||
msgstr "Wie es funktioniert"
|
||||
|
||||
#: inc/thrb-help.php:31 inc/thrb-setting.php:186
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: inc/thrb-help.php:54
|
||||
msgid "How It Works - Display and shortcode"
|
||||
msgstr "Wie es funktioniert - Übersicht aller Shortcodes"
|
||||
|
||||
#: inc/thrb-help.php:62
|
||||
msgid "Geeting Started with TH Review Bar"
|
||||
msgstr "Erste Schritte mit TH Reviews Bar"
|
||||
|
||||
#: inc/thrb-help.php:66
|
||||
msgid "Step 1. Go to \"All Reviews --> Add New Review\""
|
||||
msgstr "Schritt 1. Gehe auf \"Alle Bewertungen --> Neue Bewertung hinzufügen\""
|
||||
|
||||
#: inc/thrb-help.php:67
|
||||
msgid "Step 2. Add Review title, a Review image under the featured image section and rating the review."
|
||||
msgstr "Schritt 2. Füge ein Titel, ein Bewertungsbild unter dem Bereich Beitragsbild und bewerte die Bewertung."
|
||||
|
||||
#: inc/thrb-help.php:68
|
||||
msgid "Step 3a. Copy-paste the shortcode <span class=\"thrb-shortcode-preview\">[thrb]</span> anywhere in your post or site for show a list of reviews"
|
||||
msgstr "Schritt 3a. Kopiere und füge den Shortcode <span class=\"thrb-shortcode-preview\">[thrb]</span>, für eine liste von Bewertungen, überall auf deiner Seite ein"
|
||||
|
||||
#: inc/thrb-help.php:69
|
||||
msgid "or"
|
||||
msgstr "oder"
|
||||
|
||||
#: inc/thrb-help.php:70
|
||||
msgid "Step 3b. Copy-paste the shortcode <span class=\"thrb-shortcode-preview\">[thrb reviewid=\"<id>\"]</span> anywhere in your post or site for show a single review"
|
||||
msgstr "Schritt 3b. Kopiere und füge den Shortcode <span class=\"thrb-shortcode-preview\">[thrb reviewid=\"<id>\"]</span>, für eine Einzelansicht, überall auf deiner Seite ein"
|
||||
|
||||
#: inc/thrb-help.php:77
|
||||
msgid "All Shortcodes"
|
||||
msgstr "Alle Shortcodes"
|
||||
|
||||
#: inc/thrb-help.php:80
|
||||
msgid "Default shortcode. Show reviews in a list"
|
||||
msgstr "Standard Shortcode. Zeigt alle Bewertungen in einer Liste"
|
||||
|
||||
#: inc/thrb-help.php:81
|
||||
msgid "show a single review"
|
||||
msgstr "Zeigt eine einzelne Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:87
|
||||
msgid "All Shortcodes parameters"
|
||||
msgstr "Alle Shortcode Parameter"
|
||||
|
||||
#: inc/thrb-help.php:90 inc/thrb-widget.php:74
|
||||
msgid "Show random reviews instead of sorted by date"
|
||||
msgstr "Zeige zufällige Bewertungen, anstatt sortiert nach Datum, an"
|
||||
|
||||
#: inc/thrb-help.php:91 inc/thrb-widget.php:69
|
||||
msgid "Images have a round radios"
|
||||
msgstr "Bild hat runde Ecken"
|
||||
|
||||
#: inc/thrb-help.php:92
|
||||
msgid "sort the Review in ascending or descending order. Value=asc or desc"
|
||||
msgstr "Sortieren Sie die Bwertungen in aufsteigender oder absteigender Reihenfolge. Value=asc oder desc"
|
||||
|
||||
#: inc/thrb-help.php:93 inc/thrb-widget.php:108
|
||||
msgid "Show stars on review"
|
||||
msgstr "Zeige Sterne in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:94 inc/thrb-widget.php:113
|
||||
msgid "Show the title of the review"
|
||||
msgstr "Zeige Titel in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:95 inc/thrb-widget.php:103
|
||||
msgid "Show author name on review"
|
||||
msgstr "Zeige Authornamen in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:96 inc/thrb-widget.php:118
|
||||
msgid "Show the descriptions of review"
|
||||
msgstr "Zeige die Beschreibung in der Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:97 inc/thrb-widget.php:95
|
||||
msgid "Number of reviews to show"
|
||||
msgstr "Anzahl der angezeigten Bewertungen"
|
||||
|
||||
#: inc/thrb-help.php:97
|
||||
msgid "-1 to show all reviews."
|
||||
msgstr "-1 zeigt alle Bewertungen an."
|
||||
|
||||
#: inc/thrb-help.php:98 inc/thrb-widget.php:123
|
||||
msgid "HTML or text before the random review"
|
||||
msgstr "HTML oder Text vor der zufälligen Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:99 inc/thrb-widget.php:130
|
||||
msgid "HTML or text after the random review"
|
||||
msgstr "HTML oder Text nach der zufälligen Bewertung"
|
||||
|
||||
#: inc/thrb-help.php:100
|
||||
msgid "e.g."
|
||||
msgstr "z.B."
|
||||
|
||||
#: inc/thrb-help.php:107
|
||||
msgid "Widget"
|
||||
msgstr "Widget"
|
||||
|
||||
#: inc/thrb-help.php:110
|
||||
msgid "Use the widget to insert a list of reviews in your page or post."
|
||||
msgstr "Benutze das Widget für das hinzufügen einer Bewertungsliste auf deiner Seite oder Beitrag."
|
||||
|
||||
#: inc/thrb-help.php:118
|
||||
msgid "Need Support?"
|
||||
msgstr "Brauchst du Support?"
|
||||
|
||||
#: inc/thrb-help.php:121
|
||||
msgid "Check plugin document for shortcode parameters."
|
||||
msgstr "Checke die Plugin Dokumentation für Shortcodes Parameters."
|
||||
|
||||
#: inc/thrb-help.php:122
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#: inc/thrb-help.php:123 inc/thrb-setting.php:185
|
||||
msgid "Donate"
|
||||
msgstr "Spende"
|
||||
|
||||
#: inc/thrb-help.php:129
|
||||
msgid "Used libraries"
|
||||
msgstr "Benutzte Bibliotheken"
|
||||
|
||||
#: inc/thrb-post-metabox.php:28
|
||||
msgid "Review details"
|
||||
msgstr "Bewertungsdetails"
|
||||
|
||||
#: inc/thrb-post-metabox.php:56
|
||||
msgid "Author name"
|
||||
msgstr "Authornamen"
|
||||
|
||||
#: inc/thrb-post-metabox.php:58
|
||||
msgid "e.g. Max"
|
||||
msgstr "z.B. Max"
|
||||
|
||||
#: inc/thrb-post-metabox.php:61
|
||||
msgid "Rating"
|
||||
msgstr "Bewertung"
|
||||
|
||||
#: inc/thrb-setting.php:36
|
||||
msgid "Color shema"
|
||||
msgstr "Farbschema"
|
||||
|
||||
#: inc/thrb-setting.php:44
|
||||
msgid "Choose a color for bottom border:"
|
||||
msgstr "Wähle eine Farbe für den unteren Rand aus:"
|
||||
|
||||
#: inc/thrb-setting.php:61
|
||||
msgid "Use Font Awesome CDN?"
|
||||
msgstr "Font Awesome CDN benutzen?"
|
||||
|
||||
#: inc/thrb-setting.php:78
|
||||
msgid "This color will use for the review section"
|
||||
msgstr "Diese Farbe wird für die Bewertungsseite benutzt"
|
||||
|
||||
#: inc/thrb-setting.php:87
|
||||
msgid "Want to use the CDN for Font Awesome Icons?"
|
||||
msgstr "Möchtest du die CDN für Font Awesome Icons benutzen?"
|
||||
|
||||
#. translators: %s is replaced with the link
|
||||
#: inc/thrb-setting.php:96
|
||||
msgid "By default the plugin used and needed the font awesome icon libary(%s)."
|
||||
msgstr "Standardmäßig braucht und nutzt das Plugin die Font Awesome Icons Bibliothek(%s)."
|
||||
|
||||
#: inc/thrb-setting.php:126
|
||||
msgid "yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: inc/thrb-setting.php:128
|
||||
msgid "no"
|
||||
msgstr "Nein"
|
||||
|
||||
#: inc/thrb-setting.php:141 inc/thrb-setting.php:142
|
||||
msgid "TH Reviews Options"
|
||||
msgstr "TH Reviews Einstellungen"
|
||||
|
||||
#: inc/thrb-setting.php:176
|
||||
msgid "Save Settings"
|
||||
msgstr "Speicher Einstellungen"
|
||||
|
||||
#: inc/thrb-setting.php:183
|
||||
msgid "Supports"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-setting.php:193
|
||||
msgid "Debug information"
|
||||
msgstr "Debuginformationen"
|
||||
|
||||
#: inc/thrb-setting.php:194
|
||||
msgid "You are seeing this because your WP_DEBUG variable is set to true."
|
||||
msgstr "Du siehst diesen Bereich, weil du in deiner Konfig-Datei die Variable DEBUG auf true gesetzt hast."
|
||||
|
||||
#: inc/thrb-types.php:37
|
||||
msgid "TH Review"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-types.php:38
|
||||
msgid "Review"
|
||||
msgstr "Bewertung"
|
||||
|
||||
#: inc/thrb-types.php:39 inc/thrb-types.php:40
|
||||
msgid "TH Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-types.php:41 inc/thrb-types.php:42
|
||||
msgid "Add New Review"
|
||||
msgstr "Neue Bewertung hinzufügen"
|
||||
|
||||
#: inc/thrb-types.php:43
|
||||
msgid "New Review"
|
||||
msgstr "Neue Bewertung"
|
||||
|
||||
#: inc/thrb-types.php:44
|
||||
msgid "Edit Review"
|
||||
msgstr "Bewertung bearbeiten"
|
||||
|
||||
#: inc/thrb-types.php:45
|
||||
msgid "View Review"
|
||||
msgstr "Bewertung anzeigen"
|
||||
|
||||
#: inc/thrb-types.php:46
|
||||
msgid "All Reviews"
|
||||
msgstr "Alle Bewertungen"
|
||||
|
||||
#: inc/thrb-types.php:47
|
||||
msgid "Search Review"
|
||||
msgstr "Suche Bewertung"
|
||||
|
||||
#: inc/thrb-types.php:48
|
||||
msgid "No Reviews found."
|
||||
msgstr "Keine Bewertungen gefunden."
|
||||
|
||||
#: inc/thrb-types.php:49
|
||||
msgid "No Reviews found in Trash."
|
||||
msgstr "Keine Bewertungen im Papierkorb gefunden."
|
||||
|
||||
#: inc/thrb-types.php:88 inc/thrb-types.php:89
|
||||
msgid "Review updated."
|
||||
msgstr "Bewertung aktualisiert."
|
||||
|
||||
#: inc/thrb-types.php:90
|
||||
msgid "Review published."
|
||||
msgstr "Bewertung veröffentlicht."
|
||||
|
||||
#: inc/thrb-types.php:91
|
||||
msgid "Reviews saved."
|
||||
msgstr "Bewertungen gespeichert."
|
||||
|
||||
#: inc/thrb-types.php:92
|
||||
msgid "Reviews draft updated."
|
||||
msgstr "Bewertungsentwürfe aktualisiert."
|
||||
|
||||
#: inc/thrb-types.php:130
|
||||
msgid "Review name"
|
||||
msgstr "Bewertungsnamen"
|
||||
|
||||
#: inc/thrb-widget.php:29
|
||||
msgid "TH Review Panel"
|
||||
msgstr ""
|
||||
|
||||
#: inc/thrb-widget.php:32
|
||||
msgid "Widget for the Plugin TH Reviews Bar"
|
||||
msgstr "Widget für das Plugin TH Reviews Bar"
|
||||
|
||||
#: inc/thrb-widget.php:79
|
||||
msgid "Sorted by"
|
||||
msgstr "Sortieren nach"
|
||||
|
||||
#: inc/thrb-widget.php:89
|
||||
msgid "ascending order from newest to oldest date"
|
||||
msgstr "Aufsteigende Reihenfolge vom neuesten zum ältesten Datum"
|
||||
|
||||
#: inc/thrb-widget.php:90
|
||||
msgid "descending order from oldest to newest date"
|
||||
msgstr "Absteigende Reihenfolge vom ältesten zum neuesten Datum"
|
||||
|
||||
#: inc/thrb-widget.php:98
|
||||
msgid "to show all reviews."
|
||||
msgstr ""
|
||||
80
spec/fixtures/dynamic_finders/plugin_version/tiket-payment-invoicing/composer_file/package.json
vendored
Normal file
80
spec/fixtures/dynamic_finders/plugin_version/tiket-payment-invoicing/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"name": "tiket-on-wordpress",
|
||||
"version": "1.0.4",
|
||||
"description": "React boilerplate for WordPress plugins",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "webpack --progress --colors --watch --mode=development",
|
||||
"prod": "webpack --progress --colors -p --config webpack.config.js --mode=production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gopangolin/tiket-on-wordpress.git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"react",
|
||||
"plugin",
|
||||
"webpack"
|
||||
],
|
||||
"author": "Pangolin",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/gopangolin/tiket-on-wordpress/issues"
|
||||
},
|
||||
"homepage": "https://github.com/gopangolin/tiket-on-wordpress#readme",
|
||||
"dependencies": {
|
||||
"@babel/polyfill": "^7.0.0",
|
||||
"@material-ui/core": "^4.11.1",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
"@material-ui/lab": "^4.0.0-alpha.57",
|
||||
"@testing-library/jest-dom": "^5.11.4",
|
||||
"@testing-library/react": "^11.1.0",
|
||||
"@testing-library/user-event": "^12.1.10",
|
||||
"@types/crypto-js": "^4.0.1",
|
||||
"@types/material-ui": "^0.21.8",
|
||||
"@types/react": "^17.0.0",
|
||||
"@types/react-datepicker": "^3.1.2",
|
||||
"@types/react-facebook-login": "^4.1.2",
|
||||
"@types/react-router-dom": "^5.1.6",
|
||||
"axios": "^0.21.0",
|
||||
"crypto-js": "^4.0.0",
|
||||
"css-loader": "^5.0.1",
|
||||
"file-loader": "^6.2.0",
|
||||
"isomorphic-fetch": "^2.2.1",
|
||||
"material-ui": "^0.20.2",
|
||||
"moment": "^2.29.1",
|
||||
"prettier": "^2.2.1",
|
||||
"prop-types": "^15.6.2",
|
||||
"query-string": "^6.13.8",
|
||||
"react": "16.8.0",
|
||||
"react-country-region-selector": "^3.0.1",
|
||||
"react-datepicker": "^3.3.0",
|
||||
"react-dom": "16.8.0",
|
||||
"react-facebook-login": "^4.1.1",
|
||||
"react-google-login": "^5.2.2",
|
||||
"react-material-ui-carousel": "^2.1.1",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"react-scripts": "^3.4.3",
|
||||
"react-update": "^0.4.4",
|
||||
"svg-inline-loader": "^0.8.2",
|
||||
"typescript": "^4.1.3",
|
||||
"uuid": "^8.3.2",
|
||||
"web-vitals": "^0.2.4",
|
||||
"yarn": "^1.22.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.1.2",
|
||||
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
||||
"@babel/preset-env": "^7.1.0",
|
||||
"@babel/preset-react": "^7.0.0",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-loader": "^8.0.4",
|
||||
"eslint": "^5.6.1",
|
||||
"eslint-plugin-import": "^2.14.0",
|
||||
"eslint-plugin-react": "^7.11.1",
|
||||
"webpack": "^5.15.0",
|
||||
"webpack-cli": "^3.1.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
# Copyright (C) 2020 bjorn
|
||||
# This file is distributed under the same license as the TvgExpress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TvgExpress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tvgexpress\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Íslenska\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-05-14T15:04:53+00:00\n"
|
||||
"PO-Revision-Date: 2020-05-14 15:09+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: tvgexpress\n"
|
||||
"Language: is_IS\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Loco-Version: 2.3.3; wp-5.4.1"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TvgExpress"
|
||||
msgstr "TvgExpress"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "tvgexpress"
|
||||
msgstr "tvgexpress"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"This is a short description of what the plugin does. It's displayed in the "
|
||||
"WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bjorn"
|
||||
msgstr "bjorn"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "smartmedia.is"
|
||||
msgstr "smartmedia.is"
|
||||
|
||||
#: admin/class-tvgexpress-admin.php:80
|
||||
msgid "TVG"
|
||||
msgstr "TVG"
|
||||
|
||||
#: admin/class-tvgexpress-admin.php:92
|
||||
msgid "Shipment number"
|
||||
msgstr "Sendingarnúmer"
|
||||
|
||||
#: admin/class-tvgexpress-admin.php:93
|
||||
msgid "Pdf"
|
||||
msgstr "Pdf"
|
||||
|
||||
#: admin/class-tvgexpress-admin.php:93
|
||||
msgid "Open ticket"
|
||||
msgstr "Opna miða"
|
||||
|
||||
#: admin/class-tvgexpress-admin.php:95
|
||||
msgid "Create Shipment"
|
||||
msgstr "Stofna sendingu"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:76
|
||||
msgid "Settings"
|
||||
msgstr "Stillingar"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:77
|
||||
msgid "Sender"
|
||||
msgstr "Sendandi"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:84
|
||||
msgid "General settings"
|
||||
msgstr "Almennar stillingar"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:95
|
||||
msgid "Create shipment automaticly"
|
||||
msgstr "Stofna sjálfkrafa við stöðu uppfærslu"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:99
|
||||
msgid "Status update"
|
||||
msgstr "Stöðu uppfærsla"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:104
|
||||
msgid "Kennitölu field"
|
||||
msgstr "Kennitölu reitur"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:107
|
||||
msgid "Ef notað er custom field fyrir kennitölu"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:113
|
||||
msgid "Name"
|
||||
msgstr "Nafn"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:116
|
||||
msgid "Sender name"
|
||||
msgstr "Nafn sendanda"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:124
|
||||
msgid "Kennitala sendanda"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:129
|
||||
msgid "Address"
|
||||
msgstr "Heimilisfang"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:132
|
||||
msgid "Sender address"
|
||||
msgstr "Heimilisfang sendanda"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:137
|
||||
msgid "City"
|
||||
msgstr "Borg"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:140
|
||||
msgid "Sender city"
|
||||
msgstr "Borg sendanda"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:145
|
||||
msgid "Postcode"
|
||||
msgstr "Póstnúmer"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:148
|
||||
msgid "Sender postcode"
|
||||
msgstr "Póstnúmer sendanda"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:153
|
||||
msgid "Country code"
|
||||
msgstr "Landkóði"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:156
|
||||
msgid "Sender country code"
|
||||
msgstr "Landkóði sendanda"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:171
|
||||
msgid "Email"
|
||||
msgstr "Netfang"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:174
|
||||
msgid "Sender email"
|
||||
msgstr "Netfang sendanda"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:180
|
||||
msgid "Phone"
|
||||
msgstr "Símanúmer"
|
||||
|
||||
#: admin/includes/class-tvgexpress-admin-settings.php:183
|
||||
msgid "Sender phone"
|
||||
msgstr "Símanúmer sendanda"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:11
|
||||
msgid "TVG Express"
|
||||
msgstr "TVG Express"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:12
|
||||
msgid ""
|
||||
"TVG Xpress is an express import/export service that delivers shipments in 24–"
|
||||
"72 hours.<br/>All handling of these shipments are high priority, and "
|
||||
"therefore, the delivery time is much shorter than normal air freight.<br />"
|
||||
"TVG Xpress is based on \"Door-to-Door\" delivery."
|
||||
msgstr ""
|
||||
"TVG Xpress er hraðflutningaþjónusta til og frá Íslandi sem sérhæfir sig í "
|
||||
"þjónustu við vefverslanir. <br />\n"
|
||||
"Öll afgreiðsla og meðferð vörunnar er í forgangi og afhendingartími frá því "
|
||||
"að varan kemur til landsins er mun skemmri en í almennum flugsendingum."
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:44
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Virkja/Óvirkja"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:46
|
||||
#: includes/class-tvgexpress-methods.php:61
|
||||
msgid "Enable"
|
||||
msgstr "Virkja"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:66
|
||||
msgid "Method Title"
|
||||
msgstr "Titill á valmöguleika"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:68
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr "Notandinn sér þetta í checkout"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:74
|
||||
msgid "Price type"
|
||||
msgstr "Verð tegund"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:77
|
||||
msgid "Use TVG price list"
|
||||
msgstr "Nota verðskrá TVG"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:78
|
||||
msgid "Use custom price"
|
||||
msgstr "Nota sérverð"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:80
|
||||
msgid ""
|
||||
"custom price is the price here below and tvg price list is the official "
|
||||
"price list from TVG in Iceland"
|
||||
msgstr ""
|
||||
"Verðskrá á við verðskrá frá TVG á íslandi, Sérverð eru gildin hér að neðan"
|
||||
|
||||
#: includes/class-tvgexpress-methods.php:89
|
||||
msgid "Custom price for"
|
||||
msgstr "Sérverð fyrir"
|
||||
|
||||
#: public/class-tvgexpress-public.php:260
|
||||
msgid "Print ticket"
|
||||
msgstr "Prenta miða"
|
||||
|
||||
#: public/class-tvgexpress-public.php:267
|
||||
msgid "Create tvg shipping"
|
||||
msgstr "Stofna sendingu"
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "vie-faq",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"description": "FAQ Collapsible Dropdown Gutenberg Block",
|
||||
"author": "AUTbite OG",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"block"
|
||||
],
|
||||
"main": "build/index.js",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^9.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
Version 1.0.0 - Monday, 7th Dec 2020
|
||||
- Initial Release
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/wc-firebase-analytics/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/wc-firebase-analytics/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
*** Changelog ***
|
||||
|
||||
2021-02-16 - version 0.2.7
|
||||
|
||||
* Minor fixes
|
||||
|
||||
2020-08-20 - version 0.2.6
|
||||
|
||||
* Firebase analytics for ecommerce_purchase log event
|
||||
* Minor fixes
|
||||
|
||||
2019-12-19 - version 0.1.0
|
||||
|
||||
* Initial release
|
||||
82
spec/fixtures/dynamic_finders/plugin_version/wc-theme-integration/change_log/changelog.md
vendored
Normal file
82
spec/fixtures/dynamic_finders/plugin_version/wc-theme-integration/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
# Theme Integration for WooCommerce Changelog
|
||||
|
||||
## 1.2.4, 20210311
|
||||
|
||||
### Update
|
||||
- Plugin name for WPORG repository
|
||||
|
||||
### File updates
|
||||
*.*
|
||||
|
||||
|
||||
## 1.2.3, 20210311
|
||||
|
||||
### Add
|
||||
- Shop page title styles
|
||||
- Fallback values to CSS variables
|
||||
|
||||
### Fix
|
||||
- WooCommerce blocks styles
|
||||
|
||||
### File updates
|
||||
changelog.md
|
||||
readme.txt
|
||||
wc-theme-integration.php
|
||||
assets/scss/woocommerce.scss
|
||||
|
||||
|
||||
## 1.2.2, 20210126
|
||||
|
||||
### Update
|
||||
- Preventing PHP error related to PHP7+ type hinting and plugins such as WPML
|
||||
|
||||
### File updates
|
||||
changelog.md
|
||||
wc-theme-integration.php
|
||||
includes/Loop.php
|
||||
|
||||
|
||||
## 1.2.1, 20201226
|
||||
|
||||
### Fix
|
||||
- PHP error introduced in previous version
|
||||
|
||||
### File updates
|
||||
changelog.md
|
||||
wc-theme-integration.php
|
||||
includes/Assets.php
|
||||
|
||||
|
||||
## 1.2.0, 20201215
|
||||
|
||||
### Update
|
||||
- All JavaScript is now vanilla (no jQuery)
|
||||
- Calling `get_plugin_data` only when needed
|
||||
|
||||
### File updates
|
||||
changelog.md
|
||||
wc-theme-integration.php
|
||||
includes/Assets.php
|
||||
|
||||
|
||||
## 1.1.0, 20201119
|
||||
|
||||
### Add
|
||||
- Featured Product block styling
|
||||
- Active Filters block styling
|
||||
|
||||
### Update
|
||||
- Styles
|
||||
|
||||
### Fixed
|
||||
- Password reset procedure styles
|
||||
|
||||
### File updates
|
||||
changelog.md
|
||||
wc-theme-integration.php
|
||||
assets/scss/woocommerce.scss
|
||||
|
||||
|
||||
## 1.0.0, 20200804
|
||||
|
||||
- Initial release.
|
||||
@@ -0,0 +1,150 @@
|
||||
# Copyright (C) 2021 André Brum
|
||||
# This file is distributed under the same license as the Widget Citation plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Widget Citation 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/widget-citation\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-24T13:49:43+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: widget-citation\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/widget_citation.class.php:18
|
||||
#: includes/widget_citation.class.php:29
|
||||
#: includes/widget_citation.class.php:74
|
||||
msgid "Widget Citation"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.andrebrum.com.br/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin to show a random citations widget in your Wordpress blog."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "André Brum"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:10
|
||||
msgid "Access denied..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:61
|
||||
msgid "An error ocurred: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:125
|
||||
msgid "Widget Citation Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:125
|
||||
msgid "Citations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:170
|
||||
msgid "Your message has been included"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:182
|
||||
msgid "The message's field can't be empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:190
|
||||
msgid "The author's field can't be empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:251
|
||||
msgid "«"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:252
|
||||
msgid "»"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:46
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:49
|
||||
msgid "Plugin to show random citation widget in your WordPress blog."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:56
|
||||
msgid "Author: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:63
|
||||
msgid "Author URI: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:71
|
||||
msgid "Follow on Instagram: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:79
|
||||
msgid "Follow on Facebook: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:87
|
||||
msgid "Version: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:96
|
||||
msgid "Add New Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:118
|
||||
#: includes/wc_adm_page.php:121
|
||||
#: includes/wc_adm_page.php:165
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:130
|
||||
#: includes/wc_adm_page.php:133
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:141
|
||||
msgid "Add Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:153
|
||||
msgid "Mensagens"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:168
|
||||
msgid "Citation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:171
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:195
|
||||
msgid "disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:201
|
||||
msgid "enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wc_adm_page.php:209
|
||||
msgid "delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget_citation.class.php:15
|
||||
msgid "Use this widget to display a randon famous citation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget_citation.class.php:80
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
824
spec/fixtures/dynamic_finders/plugin_version/wowrestro/translation_file/languages/wowrestro.pot
vendored
Normal file
824
spec/fixtures/dynamic_finders/plugin_version/wowrestro/translation_file/languages/wowrestro.pot
vendored
Normal file
@@ -0,0 +1,824 @@
|
||||
# Copyright (C) 2021 MagniGenie
|
||||
# This file is distributed under the same license as the WOWRestro plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WOWRestro 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wowrestro\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-08T12:35:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wowrestro\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/admin/class-wowrestro-admin-menus.php:37
|
||||
msgid "WOWRestro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WOWRestro is an Ordering system for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MagniGenie"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-assets.php:73
|
||||
msgid "wowrestro"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-settings.php:75
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-settings.php:324
|
||||
msgid "Upload File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin-settings.php:557
|
||||
msgid "Select a page…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin.php:138
|
||||
#: includes/class-wowrestro-services.php:205
|
||||
#: includes/class-wowrestro-services.php:220
|
||||
#: includes/class-wowrestro-services.php:234
|
||||
#: includes/class-wowrestro-services.php:424
|
||||
msgid "Service Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wowrestro-admin.php:139
|
||||
msgid "Service Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:25
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:38
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:42
|
||||
msgid "General Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:49
|
||||
msgid "Override Shop Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:50
|
||||
msgid "Change WooCommerce default shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:55
|
||||
msgid "Use Default Shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:56
|
||||
msgid "Show Only WOWRestro item on shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:57
|
||||
msgid "Remove WOWRestro items from shop page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:63
|
||||
msgid "Shop Sales type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:64
|
||||
msgid "Choose what you want to sale on your website."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:69
|
||||
msgid "Sale all types of product."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:70
|
||||
msgid "Sale only WOWRestro item."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:76
|
||||
msgid "Veg / Non Veg option for WOWRestro items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:77
|
||||
msgid "Check this box if you want to include veg / non veg option to your WOWRestro items."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:84
|
||||
msgid "Exclude Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:85
|
||||
msgid "This would exclude the categories from the frontend categories menu and items under those."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:94
|
||||
msgid "Exclude Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-general.php:95
|
||||
msgid "This would exclude the products from the frontend items."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:25
|
||||
msgid "Misc"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:71
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:77
|
||||
msgid "Include Other Product Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:78
|
||||
msgid "Keep other product options like <i>Grouped</i>, <i>External</i>, <i>Virtual</i> etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:85
|
||||
msgid "Purge Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-misc.php:86
|
||||
msgid "Remove WoWRestro data when plugin is deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:27
|
||||
msgid "Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:45
|
||||
msgid "Notification Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:52
|
||||
msgid "Enable Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:55
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:56
|
||||
msgid "Enable push notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:61
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:62
|
||||
msgid "Enter notification title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:68
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:76
|
||||
msgid "Notification sound"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:77
|
||||
msgid "Select mp3 file for the notification sound.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:83
|
||||
msgid "Play notification sound in loop"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:84
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:88
|
||||
msgid "Enable this if you want the notificaiton sound to not stop until the notification duration."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:92
|
||||
msgid "Notification Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:93
|
||||
msgid "Select an image to use as the notification icon."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:99
|
||||
msgid "Notification Length"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-notification.php:100
|
||||
msgid "Time in seconds, \"0\" = Default notification length"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:25
|
||||
msgid "Services"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:39
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:98
|
||||
msgid "Pickup Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:40
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:186
|
||||
msgid "Delivery Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:87
|
||||
msgid "Pickup Service is <b><i>Enabled</i></b> by default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:105
|
||||
msgid "Enable Pickup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:108
|
||||
msgid "Enable Pickup Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:113
|
||||
msgid "Pickup Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:116
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:325
|
||||
#: includes/wowrestro-core-functions.php:1004
|
||||
msgid "Pickup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:120
|
||||
msgid "Pickup Time Interval"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:124
|
||||
msgid "Enter pickup time interval in mins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:133
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:221
|
||||
msgid "Minimum Order Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:136
|
||||
msgid "Minimum order amount for pickup service."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:140
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:230
|
||||
msgid "Minimum Order Amount Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:144
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:234
|
||||
msgid "Minimum order price for {service_type} is {min_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:145
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:235
|
||||
msgid "Error message for minimum order amount. You can use variable {service_type} and {min_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:149
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:239
|
||||
msgid "Maximum Order Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:152
|
||||
msgid "Maximum order amount for pickup service."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:156
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:248
|
||||
msgid "Maximum Order Amount Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:160
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:252
|
||||
msgid "Maximum order price for {service_type} is {max_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:161
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:253
|
||||
msgid "Error message for maximum order amount. You can use variable {service_type} and {max_order_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:175
|
||||
msgid "Delivery Service is <b><i>Enabled</i></b> by default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:193
|
||||
msgid "Enable Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:196
|
||||
msgid "Enable Delivery Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:201
|
||||
msgid "Delivery Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:204
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:326
|
||||
#: includes/wowrestro-core-functions.php:1005
|
||||
msgid "Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:208
|
||||
msgid "Delivery Time Interval"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:212
|
||||
msgid "Enter delivery time interval in mins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:226
|
||||
msgid "Enter Minimum order amount for delivery service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:244
|
||||
msgid "Enter Maximum order amount for delivery service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:272
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:278
|
||||
msgid "Store Open Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:284
|
||||
msgid "Set store open time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:288
|
||||
msgid "Store Close Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:294
|
||||
msgid "Set store close time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:298
|
||||
msgid "Cooking Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:301
|
||||
msgid "Set WOWRestro item preparation time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:312
|
||||
msgid "Store Closed Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:314
|
||||
msgid "Sorry, We not available right now."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:317
|
||||
msgid "Set message for users to see when your store is closed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:321
|
||||
msgid "Default Selected Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:329
|
||||
msgid "Set default selected service type."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:333
|
||||
msgid "Enable ASAP option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:334
|
||||
msgid "Check this box if you want to add ASAP option on your time slot."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:341
|
||||
msgid "ASAP label "
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:342
|
||||
msgid "Add the as soon as possible text to show on service popup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:349
|
||||
msgid "Order later label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:350
|
||||
msgid "Add the later text to show on service popup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:357
|
||||
msgid "Service Popup Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:361
|
||||
msgid "Hide completely on items page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:362
|
||||
msgid "Set available service type and time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:363
|
||||
msgid "Open modal once items page is loaded."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:364
|
||||
msgid "Open modal when add to cart is clicked."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-services.php:367
|
||||
msgid "Choose how you want your customers to select the Service Settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:25
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:38
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:85
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:91
|
||||
msgid "Select Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:92
|
||||
msgid "Change color for Links, Buttons and Active Classes etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:100
|
||||
msgid "Select Secondary Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:101
|
||||
msgid "Change for Button/Link Hovers, Borders etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:109
|
||||
msgid "Include item count for category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:110
|
||||
msgid "Displays the number of items available for the category."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:117
|
||||
msgid "WOWRestro Item Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:118
|
||||
msgid "Please select how would you like to show the item images on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:123
|
||||
msgid "Medium Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:124
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:125
|
||||
msgid "Hide Image Completely"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:132
|
||||
msgid "Include Lazy Load"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:133
|
||||
msgid "Item image will be loaded once you scroll to it. Loads your items page faster."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:140
|
||||
msgid "Show Image in Popup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-wowrestro-settings-style.php:141
|
||||
msgid "Display item image/gallery in popup."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:46
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:16
|
||||
msgid "Enter Variation Pricing Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:21
|
||||
msgid "Customized text to display on price selection label."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:30
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:31
|
||||
msgid "Vegetarian"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:32
|
||||
msgid "Non Vegiterian"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:50
|
||||
#: includes/class-wowrestro-modifiers.php:45
|
||||
msgid "Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:51
|
||||
#: includes/admin/views/html-product-data-food-options.php:150
|
||||
msgid "Create New Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:78
|
||||
#: includes/admin/views/html-product-data-food-options.php:112
|
||||
msgid "Select a Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:98
|
||||
#: includes/admin/views/html-product-data-food-options.php:133
|
||||
msgid "Please Select a Modifier first."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:144
|
||||
#: includes/admin/views/html-product-data-food-options.php:197
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:159
|
||||
msgid "Modifier:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:160
|
||||
msgid "Type:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:169
|
||||
#: includes/class-wowrestro-metaboxes.php:98
|
||||
msgid "Single"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:170
|
||||
#: includes/class-wowrestro-metaboxes.php:99
|
||||
msgid "Multiple"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:181
|
||||
msgid "Modifier Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:182
|
||||
#: includes/class-wowrestro-metaboxes.php:124
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-product-data-food-options.php:206
|
||||
#: includes/wowrestro-core-functions.php:172
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-ajax.php:293
|
||||
msgid "%s added to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-ajax.php:414
|
||||
msgid "%s updated in cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-ajax.php:457
|
||||
msgid "%s has been removed from cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-install.php:89
|
||||
msgid "View WOWRestro settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-install.php:89
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:93
|
||||
msgid "Selection Choice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:101
|
||||
msgid "Please choose how you want this modifier to be associated with the WOWRestro item."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:128
|
||||
msgid "Add a Price for this modifier item."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:172
|
||||
msgid "WOWRestro Item Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:261
|
||||
msgid "Simple WOWRestro Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-metaboxes.php:262
|
||||
msgid "Variable WOWRestro Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:43
|
||||
msgctxt "Modifier General Name"
|
||||
msgid "Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:44
|
||||
msgctxt "Modifier Singular Name"
|
||||
msgid "Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:46
|
||||
msgid "All Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:47
|
||||
msgid "Parent Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:48
|
||||
msgid "Parent Modifier:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:49
|
||||
msgid "New Modifier Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:50
|
||||
msgid "Add New Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:51
|
||||
msgid "Edit Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:52
|
||||
msgid "Update Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:53
|
||||
msgid "View Modifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:54
|
||||
msgid "Separate modifiers with commas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:55
|
||||
msgid "Add or remove modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:56
|
||||
msgid "Choose from the most used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:57
|
||||
msgid "Popular Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:58
|
||||
msgid "Search Modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:59
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:60
|
||||
msgid "No modifiers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:61
|
||||
msgid "Modifiers list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-modifiers.php:62
|
||||
msgid "Modifiers list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-public-scripts.php:317
|
||||
msgid "Please select a service time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-public.php:309
|
||||
msgid "Special Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-public.php:399
|
||||
msgid "Choose Price Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:243
|
||||
#: includes/class-wowrestro-services.php:401
|
||||
#: includes/wowrestro-core-functions.php:936
|
||||
msgid "ASAP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:244
|
||||
#: includes/wowrestro-core-functions.php:957
|
||||
msgid "Later"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:252
|
||||
#: templates/services/service-types.php:45
|
||||
#: templates/services/service-types.php:74
|
||||
msgid "When would you like your order?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:272
|
||||
#: includes/class-wowrestro-services.php:423
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:370
|
||||
msgid "Please choose service time for your Order."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro-services.php:439
|
||||
#: includes/class-wowrestro-services.php:454
|
||||
msgid " Time : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wowrestro.php:226
|
||||
msgid "WOWRestro requires <a href=\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:185
|
||||
msgid "Add To Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:198
|
||||
msgid "Update Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:211
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:224
|
||||
msgid "Clear all"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:237
|
||||
msgid "Your cart is empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wowrestro-core-functions.php:334
|
||||
msgid "<span class=\"wowrestro-service-type\">%1s</span> : <span class=\"wowrestro-service-time\">%2s</span> <a class=\"wowrestro-change-service wwr-primary-color\" href=\"%3s\">Change?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/cart-contents.php:72
|
||||
msgid "Special Note : %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:37
|
||||
msgid "Your Order"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:57
|
||||
#: templates/cart/wowrestro-cart.php:94
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:84
|
||||
msgid " %s Items"
|
||||
msgstr ""
|
||||
|
||||
#: templates/cart/wowrestro-cart.php:86
|
||||
msgid " %s Item"
|
||||
msgstr ""
|
||||
|
||||
#: templates/content-search.php:22
|
||||
msgid "Search dishes.."
|
||||
msgstr ""
|
||||
|
||||
#: templates/services/service-modal.php:23
|
||||
msgid "Your order setting"
|
||||
msgstr ""
|
||||
|
||||
#: templates/services/service-modal.php:32
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-product/add-to-cart/modifiers.php:80
|
||||
msgid "Extra instructions"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-product/add-to-cart/modifiers.php:82
|
||||
msgid "List any special requests here"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,85 @@
|
||||
# Copyright (C) 2021 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Product Videos for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Product Videos for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-product-videos\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-09T03:35:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-product-videos\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Product Videos for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WPC Product Videos helps you add many videos for a product and linked to the feature image or product gallery images."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:83
|
||||
#: wpc-product-videos.php:94
|
||||
msgid "WPC Product Videos"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:83
|
||||
msgid "Product Videos"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:97
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:100
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:102
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:104
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:111
|
||||
#: wpc-product-videos.php:141
|
||||
msgid "How to use?"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:119
|
||||
msgid "When set product image or add product gallery images you can add the video URL for each image. You also can do it when editing an image via Media Library."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:123
|
||||
msgid "Then the video will be linked to the image on the product page."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:150
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:153
|
||||
msgid "Youtube/Vimeo URL for WPC Product Videos."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-videos.php:187
|
||||
msgid "WPC Product Videos require WooCommerce version 3.0 or greater."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,520 @@
|
||||
# Copyright (C) 2021 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Smart Notification for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Smart Notification for WooCommerce 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-smart-notification\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-03T02:21:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-smart-notification\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Smart Notification for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Increase trust, credibility, and sales with smart notifications."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: core/initialization.php:38
|
||||
#: core/options.php:566
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/initialization.php:96
|
||||
msgid "Can't save data"
|
||||
msgstr ""
|
||||
|
||||
#: core/initialization.php:134
|
||||
msgid "(%s item)"
|
||||
msgid_plural "(%s items)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/_ajax-processing.php:38
|
||||
msgid "Save Successful"
|
||||
msgstr ""
|
||||
|
||||
#: core/_ajax-processing.php:41
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:18
|
||||
msgid "Data Sources Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:23
|
||||
msgid "Data Sources"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:24
|
||||
msgid "Select the source(s) to display the feeds."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:27
|
||||
#: core/options.php:83
|
||||
#: core/options.php:124
|
||||
msgid "New Orders"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:30
|
||||
#: core/options.php:87
|
||||
#: core/options.php:155
|
||||
msgid "Virtual Orders"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:33
|
||||
#: core/options.php:91
|
||||
#: core/options.php:205
|
||||
msgid "On Sale Products"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:36
|
||||
#: core/options.php:95
|
||||
#: core/options.php:221
|
||||
msgid "Low Stock Products"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:39
|
||||
#: core/options.php:99
|
||||
#: core/options.php:252
|
||||
msgid "Related Products"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:42
|
||||
#: core/options.php:103
|
||||
#: core/options.php:268
|
||||
msgid "Viewing"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:45
|
||||
#: core/options.php:107
|
||||
#: core/options.php:304
|
||||
#: core/options.php:529
|
||||
msgid "Cart"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:48
|
||||
#: core/options.php:111
|
||||
#: core/options.php:337
|
||||
msgid "Manual"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:51
|
||||
#: core/options.php:115
|
||||
#: core/options.php:378
|
||||
msgid "Text Editor"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:58
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:59
|
||||
msgid "The order in which messages are displayed."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:62
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:65
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:72
|
||||
msgid "Sort"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:73
|
||||
msgid "Sort the data sources."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:137
|
||||
#: core/options.php:198
|
||||
#: core/options.php:214
|
||||
#: core/options.php:234
|
||||
#: core/options.php:261
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:138
|
||||
msgid "Number of orders."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:146
|
||||
msgid "Within (hours)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:147
|
||||
msgid "Get orders within (x) hours from the present time."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:156
|
||||
msgid "Below information will be combined randomly."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:165
|
||||
msgid "Buyer Name(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:166
|
||||
msgid "Type a name and press \"Enter\" to add."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:173
|
||||
msgid "Buyer Address(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:174
|
||||
msgid "Type an address and press \"Enter\" to add."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:184
|
||||
msgid "Product(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:185
|
||||
msgid "Product of virtual orders. If left blank the product will be taken at random."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:192
|
||||
msgid "Within (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:193
|
||||
msgid "The time will be generated randomly within this value (seconds) and be calculated into minutes, hours, or days."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:199
|
||||
msgid "Maximum number of orders to be generated."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:215
|
||||
#: core/options.php:235
|
||||
#: core/options.php:262
|
||||
msgid "Number of products."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:243
|
||||
msgid "Low stock Threshold"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:244
|
||||
msgid "Number of products remaining in stock."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:269
|
||||
msgid "The range of people are viewing a product."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:279
|
||||
#: core/options.php:314
|
||||
#: core/options.php:352
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:289
|
||||
msgid "Minimum"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:296
|
||||
msgid "Maximum"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:319
|
||||
#: core/options.php:364
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:320
|
||||
msgid "Choose the way to open the cart. If choose \"Show the WPC Fly Cart\", you need to install plugin WPC Fly Cart."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:323
|
||||
msgid "Open cart page in same tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:326
|
||||
msgid "Open cart page in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:329
|
||||
msgid "Show the WPC Fly Cart"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:345
|
||||
#: core/options.php:388
|
||||
msgid "Notification(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:358
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:370
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:379
|
||||
msgid "Please buy Premium Version to use this feature."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:390
|
||||
msgid "Please enter html here, with shortcode support."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:396
|
||||
msgid "Box Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:405
|
||||
msgid "Show Effect"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:406
|
||||
msgid "Animation when showing item."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:409
|
||||
msgid "Bounce In"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:412
|
||||
msgid "Bounce In Up"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:415
|
||||
msgid "Bounce In Down"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:418
|
||||
msgid "Bounce In Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:421
|
||||
msgid "Bounce In Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:429
|
||||
msgid "Hide Effect"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:430
|
||||
msgid "Animation when hiding item."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:433
|
||||
msgid "Bounce Out"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:436
|
||||
msgid "Bounce Out Up"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:439
|
||||
msgid "Bounce Out Down"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:442
|
||||
msgid "Bounce Out Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:445
|
||||
msgid "Bounce Out Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:456
|
||||
msgid "Autoplay (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:457
|
||||
msgid "Autoplay time in seconds."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:462
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:463
|
||||
msgid "Choose where to show the box on the screen."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:466
|
||||
msgid "Top Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:469
|
||||
msgid "Bottom Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:472
|
||||
msgid "Top Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:475
|
||||
msgid "Bottom Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:482
|
||||
msgid "Infinite Loop"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:485
|
||||
#: core/options.php:498
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:488
|
||||
#: core/options.php:501
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:495
|
||||
msgid "Pause On Hover"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:508
|
||||
msgid "Product Link"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:509
|
||||
msgid "Choose the way to open the product link. If choose \"Open quick view popup\", you need to install plugin WPC Smart Quick View."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:512
|
||||
msgid "Open in same tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:515
|
||||
msgid "Open in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:518
|
||||
msgid "Open quick view popup"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:525
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:526
|
||||
msgid "Select the where you want to disable the box."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:532
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:535
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:549
|
||||
msgid "WPC Smart Notification"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:552
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:555
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:557
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:559
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:571
|
||||
msgid "Premium Version"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:575
|
||||
msgid "Essential Kit"
|
||||
msgstr ""
|
||||
|
||||
#: core/options.php:590
|
||||
msgid "Update Options"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:88
|
||||
msgid "Your cart: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:121
|
||||
#: core/notification.php:211
|
||||
msgid "about %d minute ago."
|
||||
msgid_plural "about %d minutes ago."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/notification.php:123
|
||||
#: core/notification.php:213
|
||||
msgid "about %d hour ago."
|
||||
msgid_plural "about %d hours ago."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/notification.php:125
|
||||
#: core/notification.php:215
|
||||
msgid "about %d day ago."
|
||||
msgid_plural "about %d days ago."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: core/notification.php:146
|
||||
#: core/notification.php:222
|
||||
msgid "%s from %s purchased a"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:252
|
||||
msgid "%s is on-sale. Hurry up!"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:299
|
||||
msgid "%s has %d left only. Don't miss it!"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:372
|
||||
msgid "You may also like %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/notification.php:393
|
||||
msgid "%s people are viewing this product now."
|
||||
msgstr ""
|
||||
|
||||
#: core/control/fields/image.php:4
|
||||
#: core/control/views/image.php:4
|
||||
msgid "Upload Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: core/control/_class-form.php:250
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: core/control/_class-form.php:345
|
||||
msgid "Add more"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,181 @@
|
||||
# Copyright (C) 2021 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Variations Table for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Variations Table for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-variations-table\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-03T23:30:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-variations-table\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Variations Table for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WPC Variations Table will replace dropdown selects with a beautiful table."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:89
|
||||
#: wpc-variations-table.php:99
|
||||
msgid "WPC Variations Table"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:89
|
||||
#: wpc-variations-table.php:298
|
||||
msgid "Variations Table"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:102
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:105
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:108
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:110
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:117
|
||||
#: wpc-variations-table.php:261
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:122
|
||||
#: wpc-variations-table.php:262
|
||||
msgid "Premium Version"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:126
|
||||
msgid "Essential Kit"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:129
|
||||
#: wpc-variations-table.php:278
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:148
|
||||
#: wpc-variations-table.php:316
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:152
|
||||
#: wpc-variations-table.php:164
|
||||
#: wpc-variations-table.php:185
|
||||
#: wpc-variations-table.php:196
|
||||
#: wpc-variations-table.php:207
|
||||
#: wpc-variations-table.php:218
|
||||
#: wpc-variations-table.php:325
|
||||
#: wpc-variations-table.php:357
|
||||
#: wpc-variations-table.php:368
|
||||
#: wpc-variations-table.php:379
|
||||
#: wpc-variations-table.php:390
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:153
|
||||
#: wpc-variations-table.php:165
|
||||
#: wpc-variations-table.php:186
|
||||
#: wpc-variations-table.php:197
|
||||
#: wpc-variations-table.php:208
|
||||
#: wpc-variations-table.php:219
|
||||
#: wpc-variations-table.php:328
|
||||
#: wpc-variations-table.php:358
|
||||
#: wpc-variations-table.php:369
|
||||
#: wpc-variations-table.php:380
|
||||
#: wpc-variations-table.php:391
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:155
|
||||
msgid "This is the default status, you can set status for individual product in the its settings."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:160
|
||||
msgid "Hide unpurchasable variation"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:170
|
||||
#: wpc-variations-table.php:342
|
||||
msgid "Variation name"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:173
|
||||
#: wpc-variations-table.php:345
|
||||
msgid "Default (e.g Product A - Green, M)"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:174
|
||||
#: wpc-variations-table.php:346
|
||||
msgid "Formatted without attribute label (e.g Green, M)"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:175
|
||||
#: wpc-variations-table.php:347
|
||||
msgid "Formatted with attribute label (e.g Color: Green, Size: M)"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:181
|
||||
#: wpc-variations-table.php:353
|
||||
msgid "Show image"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:192
|
||||
#: wpc-variations-table.php:364
|
||||
msgid "Show price"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:203
|
||||
#: wpc-variations-table.php:375
|
||||
msgid "Show availability"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:214
|
||||
#: wpc-variations-table.php:386
|
||||
msgid "Show description"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:226
|
||||
msgid "Update Options"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:319
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:322
|
||||
msgid "settings"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:419
|
||||
msgid "Custom name for WPC Variations Table"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-variations-table.php:425
|
||||
msgid "Custom image for WPC Variations Table"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,244 @@
|
||||
# Copyright (C) 2021 WenPai.org
|
||||
# This file is distributed under the same license as the WPfanyi import plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPfanyi import 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpfanyi-import\n"
|
||||
"POT-Creation-Date: 2021-02-28T15:48:49+00:00\n"
|
||||
"PO-Revision-Date: 2021-02-28 23:49+0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Domain: wpfanyi-import\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPfanyi import"
|
||||
msgstr "文派翻译导入器"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Install translation package like a theme/plugin, no need for FTP. this tool "
|
||||
"will save you a lot of time."
|
||||
msgstr "像安装插件、主题那样安装翻译包,无需FTP。这个工具将为您节省大量时间。"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WenPai.org"
|
||||
msgstr "文派"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wenpai.org/"
|
||||
msgstr "https://wenpai.org/"
|
||||
|
||||
#: core.php:44 core.php:45
|
||||
msgid "import translation"
|
||||
msgstr "导入翻译"
|
||||
|
||||
#: core.php:74
|
||||
msgid "Translation imported successfully!"
|
||||
msgstr "翻译导入成功!"
|
||||
|
||||
#: core.php:109
|
||||
msgid "You don't have the authority to do that"
|
||||
msgstr "您无权这样做"
|
||||
|
||||
#: core.php:115
|
||||
msgid "Unexpected translation package type"
|
||||
msgstr "意外的翻译包类型"
|
||||
|
||||
#: core.php:122
|
||||
msgid "Translation package not selected"
|
||||
msgstr "没有选择翻译包"
|
||||
|
||||
#: core.php:127
|
||||
msgid "The translation package should be in ZIP format"
|
||||
msgstr "翻译包应为ZIP格式"
|
||||
|
||||
#: core.php:134
|
||||
msgid "Invalid URL format"
|
||||
msgstr "错误的URL格式"
|
||||
|
||||
#: core.php:139
|
||||
msgid "Parameter error: unknown translation package import method"
|
||||
msgstr "参数错误:翻译包导入方法未知"
|
||||
|
||||
#: core.php:161
|
||||
msgid ""
|
||||
"Translation package upload failed, please check whether the file system "
|
||||
"permissions are normal"
|
||||
msgstr "翻译包上传失败,请检查文件系统权限是否正常"
|
||||
|
||||
#: core.php:163
|
||||
msgid ""
|
||||
"Translation package acquisition failed, please check whether the URL is valid"
|
||||
msgstr "获取翻译包失败,请检查URL是否有效"
|
||||
|
||||
#. translators: %s: Translation storage directory
|
||||
#: core.php:176
|
||||
msgid "The translation storage directory of this WordPress is not writable:%s"
|
||||
msgstr "该WordPress的翻译存储目录不可写:%s"
|
||||
|
||||
#: core.php:183
|
||||
msgid ""
|
||||
"This server doesn‘t support the decompression of Zip archives. Please "
|
||||
"contact the service provider of this server to enable the zip extension "
|
||||
"module function of PHP."
|
||||
msgstr ""
|
||||
"此服务器不支持解压ZIP包。 请与服务器提供商联系以启用PHP的zip扩展模块功能。"
|
||||
|
||||
#: core.php:191
|
||||
msgid "Failed to parse the Zip package. The Zip package may be damaged"
|
||||
msgstr "无法解析ZIP包,该包可能已损坏"
|
||||
|
||||
#: core.php:212
|
||||
msgid "There are no valid Po and Mo files in the current translation package"
|
||||
msgstr "当前翻译包中没有有效的Po和Mo文件"
|
||||
|
||||
#: page.php:11
|
||||
msgid "Import translation"
|
||||
msgstr "导入翻译"
|
||||
|
||||
#: page.php:15
|
||||
msgid ""
|
||||
"The translation package is a Zip package including MO and PO files. Select "
|
||||
"the translation pack on this page and set its type correctly then click "
|
||||
"Import to add it to WordPress."
|
||||
msgstr ""
|
||||
"翻译包是一个包含MO和PO文件的Zip包。 在此页面上选择翻译包并正确设置其类型,然"
|
||||
"后单击“导入”以将其添加到WordPress。"
|
||||
|
||||
#: page.php:17
|
||||
msgid ""
|
||||
"Note: If a translation package with the same name already exists, this "
|
||||
"operation will overwrite it"
|
||||
msgstr "注意:若已存在同名翻译包,则此操作将覆盖它"
|
||||
|
||||
#: page.php:24
|
||||
msgid "Import from Local"
|
||||
msgstr "从本地导入"
|
||||
|
||||
#: page.php:25
|
||||
msgid "Import from URL"
|
||||
msgstr "从URL导入"
|
||||
|
||||
#: page.php:36
|
||||
msgid "Translation package:"
|
||||
msgstr "翻译包:"
|
||||
|
||||
#: page.php:44 page.php:83
|
||||
msgid "Package type:"
|
||||
msgstr "包类型:"
|
||||
|
||||
#: page.php:48 page.php:87
|
||||
msgid "Plugin"
|
||||
msgstr "插件"
|
||||
|
||||
#: page.php:51 page.php:90
|
||||
msgid "Theme"
|
||||
msgstr "主题"
|
||||
|
||||
#: page.php:58 page.php:97
|
||||
msgid "Import"
|
||||
msgstr "导入"
|
||||
|
||||
#: page.php:69
|
||||
msgid "URL address:"
|
||||
msgstr "URL地址:"
|
||||
|
||||
#: page.php:105
|
||||
msgid "Help"
|
||||
msgstr "帮助"
|
||||
|
||||
#: page.php:107
|
||||
msgid "common problem:"
|
||||
msgstr "常见问题:"
|
||||
|
||||
#: page.php:110
|
||||
msgid "The installed translation package does not work"
|
||||
msgstr "安装的翻译包不起作用"
|
||||
|
||||
#: page.php:111
|
||||
msgid ""
|
||||
"A:Please check whether the translation package contains a valid .mo file."
|
||||
msgstr "第一步:请检查该翻译包中是否包含有效的 .mo 文件。"
|
||||
|
||||
#: page.php:112
|
||||
msgid ""
|
||||
"B: Please check whether you have correctly selected the type of translation "
|
||||
"package (plugin or theme)."
|
||||
msgstr "第二步:请检查你是否正确选择了翻译包类型(插件或主题)。"
|
||||
|
||||
#: page.php:113
|
||||
msgid ""
|
||||
"C: Please upload by traditional manual method to finally confirm whether the "
|
||||
"translation package is valid."
|
||||
msgstr "第三步:请通过传统的手工方式上传语言包,以最终确认该语言包是否有效。"
|
||||
|
||||
#: page.php:116
|
||||
msgid "Found a bug in this plugin?"
|
||||
msgstr "发现了这个插件的BUG?"
|
||||
|
||||
#. translators: %s: https://github.com/WenPai-org/wpfanyi-import/issues
|
||||
#: page.php:118
|
||||
msgid ""
|
||||
"Please submit issues here: <a href=\"%s\" target=\"_blank\">https://github."
|
||||
"com/WenPai-org/wpfanyi-import/issues</a>, we will fix it in the next "
|
||||
"version, thank you for your feedback!"
|
||||
msgstr ""
|
||||
"请在此处提交问题:<a href=\"%s\" target=\"_blank\">https://github.com/WenPai-"
|
||||
"org/wpfanyi-import/issues</a>,我们将在下一个版本中对其进行修复,衷心感谢您的"
|
||||
"反馈!"
|
||||
|
||||
#: page.php:122
|
||||
msgid "Need to translate a WordPress plugin/theme?"
|
||||
msgstr "需要翻译一个WordPress插件/主题?"
|
||||
|
||||
#. translators: %s: https://wpfanyi.com/new-project
|
||||
#: page.php:124
|
||||
msgid ""
|
||||
"If he is hosted in wordpress.org we will handle its translation for free! "
|
||||
"Please send your needs to: <a href=\"%s\" target=\"_blank\">https://wpfanyi."
|
||||
"com/new-project</a>."
|
||||
msgstr ""
|
||||
"如果它托管在WordPress.org中,我们将免费处理它的翻译!请将您的需求发送至:<a "
|
||||
"href=\"%s\" target=\"_blank\">https://wpfanyi.com/new-project</a>。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This plugin provides an innovative translation package installation "
|
||||
#~ "method."
|
||||
#~ msgstr "该插件提供了创新的翻译包安装方法。"
|
||||
|
||||
#~ msgid "Old Method"
|
||||
#~ msgstr "旧方法"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You need to download the translation package to the local first, unzip "
|
||||
#~ "the package, and upload it to the correct path via FTP."
|
||||
#~ msgstr ""
|
||||
#~ "您需要先将翻译包下载到本地,解压缩该包,再通过FTP将其上传到正确的路径中。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Imagine the process of selecting a lengthy path on FTP with the mouse. "
|
||||
#~ "This is troublesome, right?"
|
||||
#~ msgstr "想象一下用鼠标在FTP上选取冗长路径的过程,这很麻烦,对吧?"
|
||||
|
||||
#~ msgid "New Method"
|
||||
#~ msgstr "新方法"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Now you only need to paste the download address of the translation "
|
||||
#~ "package in the text input, and correctly select the type of translation "
|
||||
#~ "package (plugin or theme), after clicking “Import”, the tool will help "
|
||||
#~ "you complete all operations."
|
||||
#~ msgstr ""
|
||||
#~ "现在,您只需要在文本框中粘贴翻译包的下载地址,并正确选择翻译包的类型(插件"
|
||||
#~ "或主题),在单击“导入”后,该工具将帮助您完成所有操作。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you have a local translation package, you can also easily import it "
|
||||
#~ "through this tool."
|
||||
#~ msgstr "如果您有一个本地翻译包,您也可以通过此工具轻松导入它。"
|
||||
@@ -478,8 +478,13 @@ FooBox.ready(function() {
|
||||
<meta name="generator" content="WP-Traffic 1.0.0">
|
||||
|
||||
|
||||
|
||||
<!-- bit-smtp -->
|
||||
<meta name="generator" content="Forms by BitCode 1.0.2">
|
||||
|
||||
|
||||
<!-- dozent -->
|
||||
<meta name="generator" content="DozentLMS 1.0.1">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
[!] No WPScan API Token given, as a result vulnerability data has not been output.
|
||||
[!] You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
[!] You can get a free API token with 25 daily requests by registering at https://wpscan.com/register
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"vuln_api": {
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 25 daily requests by registering at https://wpscan.com/register"
|
||||
}
|
||||
}
|
||||
@@ -21,17 +21,17 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.1'
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.3'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.10.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.9.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.9.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.11.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.10.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
s.add_development_dependency 'webmock', '~> 3.11.0'
|
||||
s.add_development_dependency 'webmock', '~> 3.12.0'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user