Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f887f8baa4 | ||
|
|
4d00d97be9 | ||
|
|
b0e946ee29 | ||
|
|
1220b9f47b | ||
|
|
12d2d0ffb0 | ||
|
|
4581113741 | ||
|
|
a20c769eae | ||
|
|
3259316cf1 | ||
|
|
9cc06234e4 | ||
|
|
1ee73268d7 | ||
|
|
f477620899 | ||
|
|
8a9dc1ce2c | ||
|
|
b584aa24bd | ||
|
|
8dfe78a210 | ||
|
|
7143cb5def | ||
|
|
e6c49d99b6 | ||
|
|
6e71f9771c |
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.15'
|
||||
VERSION = '3.8.16'
|
||||
end
|
||||
|
||||
@@ -21,6 +21,7 @@ module WPScan
|
||||
references: references,
|
||||
type: json_data['vuln_type'],
|
||||
fixed_in: json_data['fixed_in'],
|
||||
introduced_in: json_data['introduced_in'],
|
||||
cvss: json_data['cvss']&.symbolize_keys
|
||||
)
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
2216
spec/fixtures/db/dynamic_finders.yml
vendored
2216
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"
|
||||
}
|
||||
]
|
||||
}
|
||||
940
spec/fixtures/dynamic_finders/expected.yml
vendored
940
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*
|
||||
@@ -0,0 +1,4 @@
|
||||
*** Avalon23 Products Filter Changelog ***
|
||||
|
||||
2020-11-20 - version 1.0.1
|
||||
* Initial release
|
||||
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.
|
||||
@@ -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,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 ""
|
||||
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
@@ -0,0 +1,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"
|
||||
}
|
||||
}
|
||||
@@ -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,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))
|
||||
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
|
||||
@@ -440,6 +440,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/admin-keys/assets/js/mousetrap-global-bind.min.js?ver=1.4.0"></script>
|
||||
|
||||
|
||||
<!-- admin-notes-wp -->
|
||||
<link rel="stylesheet" id="wp-admin-notes-css" href="http://wp.lab/wp-content/plugins/admin-notes-wp/public/css/wp-admin-notes-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/admin-notes-wp/public/js/wp-admin-notes-public.js?ver=1.0.0" id="wp-admin-notes-js"></script>
|
||||
|
||||
|
||||
<!-- ads-pixel -->
|
||||
<link rel="stylesheet" id="facebook-pixel-css" href="http://wp.lab/wp-content/plugins/ads-pixel/public/css/facebook-pixel-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ads-pixel/public/js/facebook-pixel-public.js?ver=1.0.0"></script>
|
||||
@@ -471,6 +476,14 @@
|
||||
<link rel="stylesheet" id="wpb-apt-grid-css" href="http://wp.lab/wp-content/plugins/advance-pricing-table/assets/css/main.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- advance-search -->
|
||||
<link rel="stylesheet" id="jquery-ui-css" href="http://wp.lab/wp-content/plugins/advance-search/inc/common/css/jquery-ui.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="font-awesome.min-css" href="http://wp.lab/wp-content/plugins/advance-search/assets/css/font-awesome.min.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="advance-search-css" href="http://wp.lab/wp-content/plugins/advance-search/inc/common/css/advance-search-common.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/advance-search/inc/frontend/js/advance-search-frontend.js?ver=1.1" id="advance-search-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/advance-search/inc/common/js/advance-search.js?ver=1.1" id="Advance_Search-js"></script>
|
||||
|
||||
|
||||
<!-- advance-social-icons -->
|
||||
<link rel="stylesheet" id="frontviewstyle-css" href="http://wp.lab/wp-content/plugins/advance-social-icons/css/asi-frontend.css?ver=1.0" media="all">
|
||||
|
||||
@@ -980,6 +993,7 @@
|
||||
<!-- anwp-post-grid-for-elementor -->
|
||||
<link rel="stylesheet" id="anwp-pg-admin-styles-css" href="http://wp.lab/wp-content/plugins/anwp-post-grid-for-elementor/public/css/styles.css?ver=0.5.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/anwp-post-grid-for-elementor/public/js/plugin.min.js?ver=0.5.1"></script>
|
||||
<link rel="stylesheet" id="anwp-pg-styles-css" href="http://wp.lab/wp-content/plugins/anwp-post-grid-for-elementor/public/css/styles.min.css?ver=0.5.1" media="all">
|
||||
|
||||
|
||||
<!-- aotomot-gallery -->
|
||||
@@ -1176,6 +1190,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/art-video-player/assets/js/artplayer.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- article -->
|
||||
<link rel="stylesheet" id="articleapp_main-css" href="http://wp.lab/wp-content/plugins/article/assets/css/articleapp_main.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/article/assets/js/articleapp_main.js?ver=1.0" id="articleapp_main-js"></script>
|
||||
|
||||
|
||||
<!-- as-store-locator -->
|
||||
<link rel="stylesheet" id="assl-style-css" href="http://wp.lab/wp-content/plugins/as-store-locator/assets/frontend/css/assl-style.css?ver=1.5.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/as-store-locator/assets/frontend/js/assl-script.min.js?ver=1.5.6"></script>
|
||||
@@ -1203,6 +1222,11 @@
|
||||
<link rel="stylesheet" id="af-widgets-css" href="http://wp.lab/wp-content/plugins/asgaros-forum/skin/widgets.css?ver=1.6.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- asimov -->
|
||||
<link rel="stylesheet" id="asimov-plugin-css" href="http://wp.lab/wp-content/plugins/asimov/public/css/asimov-plugin.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/asimov/public/js/asimov-plugin.js?ver=1.0.0" id="asimov-plugin-js"></script>
|
||||
|
||||
|
||||
<!-- aspen-shortcodes-and-widgets -->
|
||||
<link rel="stylesheet" id="aspen-sw-style-sheet-css" href="http://wp.lab/wp-content/plugins/aspen-shortcodes-and-widgets/aspen-sw-style.min.css?ver=2.0.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aspen-shortcodes-and-widgets/js/aspenswjslib.min.js?ver=2.0.5"></script>
|
||||
@@ -1594,6 +1618,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/banner-system/assets/js/frontend-banner-system.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- bannerly -->
|
||||
<link rel="stylesheet" id="bannerly-css" href="http://wp.lab/wp-content/plugins/bannerly/public/css/bannerly-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- barebones-twitter -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/barebones-twitter/public/js/barebones-twitter-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -1603,6 +1631,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/basepress/public/js/basepress.js?ver=1.7.8"></script>
|
||||
|
||||
|
||||
<!-- basic-gdpr-alert -->
|
||||
<link rel="stylesheet" id="basic-gdpr-alert-style-css" href="http://wp.lab/wp-content/plugins/basic-gdpr-alert/inc/style.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/basic-gdpr-alert/inc/main.js?ver=1.0.1" id="basic-gdpr-alert-js-js"></script>
|
||||
|
||||
|
||||
<!-- baslider -->
|
||||
<link rel="stylesheet" id="nextcodeslider-animate-css-css" href="http://wp.lab/wp-content/plugins/baslider/css/animate.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="nextcodeslider-css" href="http://wp.lab/wp-content/plugins/baslider/css/style.min.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -1864,6 +1897,10 @@
|
||||
<link rel="stylesheet" id="bin-access-control-front-css" href="http://wp.lab/wp-content/plugins/bin-access-control/css/front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- bin-event-calendar -->
|
||||
<script src="http://wp.lab/wp-content/plugins/bin-event-calendar/js/front.js?ver=1.5.6" id="bin-event-calendar-front-js"></script>
|
||||
|
||||
|
||||
<!-- bin-opt-in -->
|
||||
<link rel="stylesheet" id="bin-opt-in-front-css" href="http://wp.lab/wp-content/plugins/bin-opt-in/css/front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -2005,6 +2042,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/blog-sidebar-widget/public/js/blog-sidebar-widget-public.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- blogsafe-honeypot -->
|
||||
<link rel="stylesheet" id="blogsafe-honeypot-css" href="http://wp.lab/wp-content/plugins/blogsafe-honeypot/public/css/blogsafe-honeypot-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/blogsafe-honeypot/public/js/blogsafe-honeypot-public.js?ver=1.0.0" id="blogsafe-honeypot-js"></script>
|
||||
|
||||
|
||||
<!-- bloks-stripe-donation -->
|
||||
<link rel="stylesheet" id="blope-reset-css-css" href="http://wp.lab/wp-content/plugins/bloks-stripe-donation/assets/css/reset.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="blope-animate-css-css" href="http://wp.lab/wp-content/plugins/bloks-stripe-donation/assets/css/animate.min.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -2160,6 +2202,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/boast-display/public/js/build/boast-display-public.min.js?ver=1.2.2"></script>
|
||||
|
||||
|
||||
<!-- boffo -->
|
||||
<link rel="stylesheet" id="boffo-css" href="http://wp.lab/wp-content/plugins/boffo/assets/dist/public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/boffo/assets/dist/public.js?ver=1.0.1" id="boffo-js"></script>
|
||||
|
||||
|
||||
<!-- bogo -->
|
||||
<link rel="stylesheet" id="bogo-css" href="http://wp.lab/wp-content/plugins/bogo/includes/css/style.css?ver=3.1.4" type="text/css" media="all">
|
||||
|
||||
@@ -2227,6 +2274,19 @@
|
||||
<link rel="stylesheet" id="wpbm-calendar-css" href="http://wp.lab/wp-content/plugins/booking-manager/css/calendar.css?ver=2.0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- booking-x -->
|
||||
<link rel="stylesheet" id="owl-carousel-min-css" href="http://wp.lab/wp-content/plugins/booking-x/public/css/owl.carousel.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/booking-x/public/css/bootstrap.min.css?ver=1.0" media="">
|
||||
<link rel="stylesheet" id="line-awesome-min-css" href="http://wp.lab/wp-content/plugins/booking-x/public/css/line-awesome.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="style-main-css" href="http://wp.lab/wp-content/plugins/booking-x/public/css/style.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="fullcalendarcss-css" href="http://wp.lab/wp-content/plugins/booking-x/public/css/fullcalendar/min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="bookingx-twenty-twenty-one-main-css" href="http://wp.lab/wp-content/plugins/booking-x/public/css/theme/twenty-twenty-one.css?ver=1.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/booking-x/public/js/bookingx.js?ver=1.0" id="bookingx-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/booking-x/public/js/booking-form/bootstrap.min.js?ver=1.0" id="bootstrap-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/booking-x/public/js/booking-form/owl.carousel.min.js?ver=1.0" id="owl.carousel-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/booking-x/public/js/booking-form/calendar.js?ver=1.0" id="calendar-js"></script>
|
||||
|
||||
|
||||
<!-- bookly-responsive-appointment-booking-tool -->
|
||||
<link rel="stylesheet" id="bookly-intlTelInput-css" href="http://wp.lab/wp-content/plugins/bookly-responsive-appointment-booking-tool/frontend/resources/css/intlTelInput.css?ver=13.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bookly-ladda-min-css" href="http://wp.lab/wp-content/plugins/bookly-responsive-appointment-booking-tool/frontend/resources/css/ladda.min.css?ver=13.2" type="text/css" media="all">
|
||||
@@ -2593,6 +2653,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/business-open-hours-master/public/js/business-open-hours-master-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- business-reviews-wp -->
|
||||
<link rel="stylesheet" id="rtbr-app-css" href="http://wp.lab/wp-content/plugins/business-reviews-wp/assets/css/app.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/business-reviews-wp/assets/js/app.min.js?ver=1.0.0" id="rtbr-app-js"></script>
|
||||
|
||||
|
||||
<!-- buttons-with-style -->
|
||||
<link rel="stylesheet" id="button-css-css" href="http://wp.lab/wp-content/plugins/buttons-with-style/css/button-css.css?ver=1.0.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="button-foundation-css" href="http://wp.lab/wp-content/plugins/buttons-with-style/css/foundation-icons.css?ver=1.0.3" type="text/css" media="all">
|
||||
@@ -2828,6 +2893,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/cashtomer/public/js/cashtomer-points-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catalog-organization -->
|
||||
<link rel="stylesheet" id="catalog-css" href="http://wp.lab/wp-content/plugins/catalog-organization/css/catalog.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- catch-breadcrumb -->
|
||||
<link rel="stylesheet" id="catch-breadcrumb-css" href="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
|
||||
@@ -2870,6 +2939,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/categories-as-folders/public/js/categories-as-folders-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- category-displayer-by-resolvs -->
|
||||
<link rel="stylesheet" id="category-displayer-css" href="http://wp.lab/wp-content/plugins/category-displayer-by-resolvs/public/css/category-displayer-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/category-displayer-by-resolvs/public/js/category-displayer-public.js?ver=1.0.0" id="category-displayer-js"></script>
|
||||
|
||||
|
||||
<!-- category-post-slider -->
|
||||
<link rel="stylesheet" id="cps_css_style-css" href="http://wp.lab/wp-content/plugins/category-post-slider/css/cps-style.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/category-post-slider/js/jquery.cpsslider.js?ver=1.1"></script>
|
||||
@@ -3092,6 +3166,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-phone-mask-field/assets/js/jquery.maskedinput.js?ver=1.3"></script>
|
||||
|
||||
|
||||
<!-- cf7-popups -->
|
||||
<link rel="stylesheet" id="sweetalert2-css" href="http://wp.lab/wp-content/plugins/cf7-popups//views/assets/css/sweetalert2.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cf7-popups//views/assets/js/sweetalert2.min.js?ver=1.0.0" id="sweetalert2-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/cf7-popups//views/assets/js/cf7-popups.js?ver=1.0.0" id="cf7-popups-frontend-js"></script>
|
||||
|
||||
|
||||
<!-- cf7-reply-manager -->
|
||||
<link rel="stylesheet" id="cf7_rm_style-css" href="http://wp.lab/wp-content/plugins/cf7-reply-manager/admin/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-reply-manager/admin/js/cf7_rm.js?ver=1.0.0"></script>
|
||||
@@ -3258,6 +3338,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chimpmate/public/assets/js/public.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- chp-ads-block-detector -->
|
||||
<script src="http://wp.lab/wp-content/plugins/chp-ads-block-detector/js/chp-ads.js?ver=1.0" id="chp-ads-handler-js"></script>
|
||||
|
||||
|
||||
<!-- chrissy -->
|
||||
<link rel="stylesheet" id="crsy-front-css-css" href="http://wp.lab/wp-content/plugins/chrissy/assets/front.css?ver=1.0" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chrissy/assets/front.js?ver=1.0"></script>
|
||||
@@ -3738,6 +3822,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contact-form-z/js/CFileInput.js?ver=1.1.7"></script>
|
||||
|
||||
|
||||
<!-- contact-forms-anti-spam -->
|
||||
<link rel="stylesheet" id="elementor_forms_anti_spam-css" href="http://wp.lab/wp-content/plugins/contact-forms-anti-spam/public/css/settings-page-public.css?ver=0.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/contact-forms-anti-spam/public/js/settings-page-public.js?ver=0.0.2" id="elementor_forms_anti_spam-js"></script>
|
||||
|
||||
|
||||
<!-- contact-list -->
|
||||
<link rel="stylesheet" id="contact-list-css" href="http://wp.lab/wp-content/plugins/contact-list/public/css/contact-list-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contact-list/public/js/contact-list-public.js?ver=1.0.0"></script>
|
||||
@@ -4084,6 +4173,16 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/slick-carousel.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- crowdfundly -->
|
||||
<link rel="stylesheet" id="crowdfundly-bootstrap-css" href="http://wp.lab/wp-content/plugins/crowdfundly/assets/bootstrap/css/bootstrap.min.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="crowdfundly-slick-css" href="http://wp.lab/wp-content/plugins/crowdfundly/assets/slick-dist/slick/slick.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="crowdfundly-slick-theme-css" href="http://wp.lab/wp-content/plugins/crowdfundly/assets/slick-dist/slick/slick-theme.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="crowdfundly-css" href="http://wp.lab/wp-content/plugins/crowdfundly/public/css/crowdfundly-public.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/crowdfundly/assets/bootstrap/js/bootstrap.min.js?ver=1.0.2" id="crowdfundly-bootstrap-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/crowdfundly/assets/slick-dist/slick/slick.min.js?ver=1.0.2" id="crowdfundly-slick-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/crowdfundly/public/js/crowdfundly-public.js?ver=1.0.2" id="crowdfundlypublic-js"></script>
|
||||
|
||||
|
||||
<!-- crs-post-title-shortener -->
|
||||
<link rel="stylesheet" id="crs-post-title-shortener-css" href="http://wp.lab/wp-content/plugins/crs-post-title-shortener/public/css/crs-post-title-shortener-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/crs-post-title-shortener/public/js/crs-post-title-shortener-public.js?ver=1.0.0"></script>
|
||||
@@ -4195,6 +4294,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-cookie-message//assets/js/custom-cookie-message-popup.js?ver=2.2.9"></script>
|
||||
|
||||
|
||||
<!-- custom-event-tickets -->
|
||||
<link rel="stylesheet" id="ecet_custom_event_tickets_style-css" href="http://wp.lab/wp-content/plugins/custom-event-tickets/css/easy-custom-event-tickets.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- custom-facebook-feed -->
|
||||
<link rel="stylesheet" id="cff-css" href="http://wp.lab/wp-content/plugins/custom-facebook-feed/css/cff-style.css?ver=2.4.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-facebook-feed/js/cff-scripts.js?ver=2.4.6"></script>
|
||||
@@ -4315,6 +4418,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/darkmode/js/darkmode.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- dashboard-wiget -->
|
||||
<link rel="stylesheet" id="style.css-css" href="http://wp.lab/wp-content/plugins/dashboard-wiget/_inc/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- data-sync-q-by-wbsync -->
|
||||
<link rel="stylesheet" id="data-sync-q-css" href="http://wp.lab/wp-content/plugins/data-sync-q-by-wbsync/public/css/data-sync-q-woocommerce-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/data-sync-q-by-wbsync/public/js/data-sync-q-woocommerce-public.js?ver=1.0.0"></script>
|
||||
@@ -4325,6 +4432,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/data-sync-x-by-wbsync/public/js/data-sync-x-woocommerce-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- datacake-core -->
|
||||
<link rel="stylesheet" id="datacake_core-css" href="http://wp.lab/wp-content/plugins/datacake-core/src/Pub/css/datacake_core-public.css?ver=1.1.8" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/datacake-core/src/Pub/js/datacake_core-public.js?ver=1.1.8" id="datacake_core-js"></script>
|
||||
|
||||
|
||||
<!-- dbd-pinterest-widget -->
|
||||
<link rel="stylesheet" id="dbd_pinterest_style-css" href="http://wp.lab/wp-content/plugins/dbd-pinterest-widget/theme/css/dbd_pinterest.css?ver=1.0" media="screen">
|
||||
<script src="http://wp.lab/wp-content/plugins/dbd-pinterest-widget/theme/js/dbd_pinterest.js?ver=1.0"></script>
|
||||
@@ -4382,6 +4494,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/destroy-this-site/scripts.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- developry-google-fonts -->
|
||||
<link rel="stylesheet" id="developry-google-fonts-frontend-css" href="http://wp.lab/wp-content/plugins/developry-google-fonts/assets/css/frontend.min.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/developry-google-fonts/assets/js/frontend.min.js?ver=1.1" id="developry-google-fonts-frontend-js"></script>
|
||||
|
||||
|
||||
<!-- devrama-image-lazyload -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/devrama-image-lazyload/app/default/views/js/jquery.devrama.lazyload.min-0.9.3.js?ver=0.9.34"></script>
|
||||
|
||||
@@ -4472,6 +4589,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ditty-news-ticker/legacy/static/js/jquery.touchSwipe.min.js?ver=2.1.10"></script>
|
||||
|
||||
|
||||
<!-- diving-calculators -->
|
||||
<link rel="stylesheet" id="diving-calculators-css" href="http://wp.lab/wp-content/plugins/diving-calculators/public/css/diving-calculators-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/diving-calculators/public/js/diving-calculators-public.js?ver=1.0.0" id="diving-calculators-js"></script>
|
||||
|
||||
|
||||
<!-- dk-pdf -->
|
||||
<link rel="stylesheet" id="dkpdf-frontend-css" href="http://wp.lab/wp-content/plugins/dk-pdf/assets/css/frontend.css?ver=1.9.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dk-pdf/assets/js/frontend.js?ver=1.9.6"></script>
|
||||
@@ -4536,6 +4658,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/download-panel/assets/script.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- dozent -->
|
||||
<link rel="stylesheet" id="dozent-css" href="http://wp.lab/wp-content/plugins/dozent/assets/css/dozent.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/dozent/assets/js/dozent.min.js?ver=1.0.1" id="dozent-js"></script>
|
||||
|
||||
|
||||
<!-- draugiemlvlapas-fan-page -->
|
||||
<link rel="stylesheet" id="draugiem_sekotaji-css" href="http://wp.lab/wp-content/plugins/draugiemlvlapas-fan-page/css/draugiem-lapas-sekotaji.css?ver=3.5.4" media="all">
|
||||
|
||||
@@ -4554,6 +4681,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/drm-protected-video-streaming/dist/s3drm.min.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- droit-dark-mode -->
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/droit-dark-mode/assets/font-awesome/css/all.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="dtdr-public-css" href="http://wp.lab/wp-content/plugins/droit-dark-mode/assets/css/public-mode.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/droit-dark-mode/assets/scripts/public.js?ver=1.0.0" id="dtdr-public-js"></script>
|
||||
|
||||
|
||||
<!-- dropdown-navigation-menus -->
|
||||
<script src="http://wp.lab/wp-content/plugins/dropdown-navigation-menus/js/plugins-min.js?ver=0.1"></script>
|
||||
|
||||
@@ -4952,6 +5085,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/inc/echelon.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- ecommerce-addon -->
|
||||
<link rel="stylesheet" id="niche-frame-css" href="http://wp.lab/wp-content/plugins/ecommerce-addon/assets/css/niche-frame.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/ecommerce-addon/assets/css/magnific-popup.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="naecommerce-styles-css" href="http://wp.lab/wp-content/plugins/ecommerce-addon/assets/css/styles.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="naecommerce-responsive-css" href="http://wp.lab/wp-content/plugins/ecommerce-addon/assets/css/responsive.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ecommerce-addon/assets/js/jquery.counterup.min.js?ver=1.0" id="counterup-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ecommerce-addon/assets/js/scripts.js?ver=1.0" id="naecommerce-scripts-js"></script>
|
||||
|
||||
|
||||
<!-- economic-market-news -->
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio-wp.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/Sortable.min.js?ver=1.0.0"></script>
|
||||
@@ -5060,6 +5202,11 @@
|
||||
<link rel="stylesheet" id="einsatzverwaltung-frontend-css" href="http://wp.lab/wp-content/plugins/einsatzverwaltung/css/style-frontend.css?ver=1.3.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- elderlawanswers-content-terminal -->
|
||||
<link rel="stylesheet" id="ela-content-terminal-css" href="http://wp.lab/wp-content/plugins/elderlawanswers-content-terminal/public/css/plugin-name-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/elderlawanswers-content-terminal/public/js/plugin-name-public.js?ver=1.0.0" id="ela-content-terminal-js"></script>
|
||||
|
||||
|
||||
<!-- elearning-memberships -->
|
||||
<link rel="stylesheet" id="elm-frontend-css" href="http://wp.lab/wp-content/plugins/elearning-memberships/assets/css/frontend-style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -5068,6 +5215,27 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/electric-studio-cross-linker/js/highlighter.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- elegant-calendar-lite -->
|
||||
<link rel="stylesheet" id="elegant-grid-style-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/grid.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="elegant-front-style-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/front.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/library/bootstrap.min.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="tui-time-picker-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/tui-calendar/tui-time-picker.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="bootstrap3-block-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/library/bootstrap3-block-grid.min.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="bootstrap4-block-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/library/bootstrap4-block-grid.min.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="tui-date-picker-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/tui-calendar/tui-date-picker.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="tui-calendar-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/tui-calendar/tui-calendar.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="tui-default-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/tui-calendar/default.css?ver=1.0.2" media="">
|
||||
<link rel="stylesheet" id="tui-icons-css" href="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/css/tui-calendar/icons.css?ver=1.0.2" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/library/bootstrap.min.js?ver=1.0.2" id="bootstrap-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/tui-calendar/tui-code-snippet.min.js?ver=1.0.2" id="tui-code-snippet-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/tui-calendar/tui-time-picker.min.js?ver=1.0.2" id="tui-time-picker-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/tui-calendar/tui-date-picker.min.js?ver=1.0.2" id="tui-date-picker-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/tui-calendar/chance.min.js?ver=1.0.2" id="chance-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/tui-calendar/tui-calendar.js?ver=1.0.2" id="tui-calendar-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/calendar-front.js?ver=1.0.2" id="elegant-calendar-front-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/default.js?ver=1.0.2" id="elegant-calendar-default-js"></script>
|
||||
|
||||
|
||||
<!-- elegantui-social-media-icons -->
|
||||
<link rel="stylesheet" id="eui-smi-css" href="http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/css/eui-smi-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/js/eui-smi-public.js?ver=1.0.0"></script>
|
||||
@@ -5160,6 +5328,20 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/emoji-shortcode/public/js/emoji-shortcode-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- endless-addons-for-elementor -->
|
||||
<link rel="stylesheet" id="endless-addons-font-awesome-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-bootstrap-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-animate-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/animate.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-boxicons-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/boxicons.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-magnific-popup-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/magnific-popup.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-meanmenu-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/meanmenu.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-owl-carousel-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/owl.carousel.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-owl-theme-default-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/owl.theme.default.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-main-style-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/style.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-responsive-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/responsive.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="endless-addons-css" href="http://wp.lab/wp-content/plugins/endless-addons-for-elementor/public/css/endless-addons-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- energ1zer -->
|
||||
<link rel="stylesheet" id="energ1zer-plugin-styles-css" href="http://wp.lab/wp-content/plugins/energ1zer/public/assets/css/public.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/energ1zer/public/assets/js/public.js?ver=1.1.1"></script>
|
||||
@@ -5862,6 +6044,12 @@
|
||||
<link rel="stylesheet" id="fireems-css" href="http://wp.lab/wp-content/plugins/fireems-stats/public/css/fireems-stats-public.css?ver=2.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- five-star-ratings-shortcode -->
|
||||
<link rel="stylesheet" id="five-star-ratings-shortcode-fsrs-style-css" href="http://wp.lab/wp-content/plugins/five-star-ratings-shortcode/assets/css/style.min.css?ver=1.2.12" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/five-star-ratings-shortcode/assets/js/fsrs-fa-solid.min.js?ver=1.2.12" id="five-star-ratings-shortcode-fa-solid-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/five-star-ratings-shortcode/assets/js/fsrs-fa-regular.min.js?ver=1.2.12" id="five-star-ratings-shortcode-fa-reg-js"></script>
|
||||
|
||||
|
||||
<!-- fixed-bottom-menu -->
|
||||
<link rel="stylesheet" id="fixed-bottom-menu-css" href="http://wp.lab/wp-content/plugins/fixed-bottom-menu/css/fixedbottommenu.css?ver=1.00" type="text/css" media="all">
|
||||
|
||||
@@ -6233,6 +6421,10 @@
|
||||
<link rel="stylesheet" id="fcb-fontello-animation-css-css" href="http://wp.lab/wp-content/plugins/formcraft-form-builder/assets/fontello/css/animation.css?ver=1.0.7" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- formello -->
|
||||
<link rel="stylesheet" id="formello-form-block-css" href="http://wp.lab/wp-content/plugins/formello/build/style-index.css?ver=1.0.1" media="all">
|
||||
|
||||
|
||||
<!-- formidable -->
|
||||
<link rel="stylesheet" id="formidable-css" href="http://wp.lab/wp-content/plugins/formidable/css/formidableforms.css?ver=3.06.03" type="text/css" media="all">
|
||||
|
||||
@@ -6271,6 +6463,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/fragmentions/scripts/fragmention.min.js?ver=1.4.0"></script>
|
||||
|
||||
|
||||
<!-- fraudradar -->
|
||||
<link rel="stylesheet" id="fraudradar-css" href="http://wp.lab/wp-content/plugins/fraudradar/public/css/fraudradar-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/fraudradar/public/js/fraudradar-public.js?ver=1.0.0" id="fraudradar-js"></script>
|
||||
|
||||
|
||||
<!-- freedam-web-notices -->
|
||||
<link rel="stylesheet" id="freedam-web-notices-css" href="http://wp.lab/wp-content/plugins/freedam-web-notices/public/css/freedam-web-notices-public.css?ver=1.1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/freedam-web-notices/public/js/freedam-web-notices-moment.js?ver=1.1.1"></script>
|
||||
@@ -6600,6 +6797,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/geotargeting/public/js/ddslick.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- get-a-quote -->
|
||||
<link rel="stylesheet" id="get-a-quote-css" href="http://wp.lab/wp-content/plugins/get-a-quote/public/src/scss/get-a-quote-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="bootstrap-css-css" href="http://wp.lab/wp-content/plugins/get-a-quote/public/src/scss/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/get-a-quote/public/src/js/get-a-quote-public.js?ver=1.0.0" id="get-a-quote-js"></script>
|
||||
|
||||
|
||||
<!-- get-a-quote-button-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wpb-get-a-quote-button-sweetalert2-css" href="http://wp.lab/wp-content/plugins/get-a-quote-button-for-woocommerce/assets/css/sweetalert2.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="wpb-get-a-quote-button-styles-css" href="http://wp.lab/wp-content/plugins/get-a-quote-button-for-woocommerce/assets/css/frontend.css?ver=1.0" media="all">
|
||||
@@ -6663,6 +6866,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/getwid-megamenu/build/frontend.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- gev-email-validator -->
|
||||
<link rel="stylesheet" id="gev-email-validator-css" href="http://wp.lab/wp-content/plugins/gev-email-validator/public/css/email-validator-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/gev-email-validator/public/js/email-validator-public.js?ver=1.0.0" id="gev-email-validator-js"></script>
|
||||
|
||||
|
||||
<!-- gf-fields-persistence -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gf-fields-persistence/assets/js/gf-field-persistence.js?ver=1.0.1"></script>
|
||||
|
||||
@@ -6770,6 +6978,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/go-gallery-tags/assets/plugins/qtlb/scripts.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- go-night-pro -->
|
||||
<script src="http://wp.lab/wp-content/plugins/go-night-pro/public/js/go-night-pro.js?ver=1.0.4" id="go-night-pro-js"></script>
|
||||
|
||||
|
||||
<!-- go-viral -->
|
||||
<link rel="stylesheet" id="Go Viral-fawesome-css" href="http://wp.lab/wp-content/plugins/go-viral/public/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="Go Viral-anim-css" href="http://wp.lab/wp-content/plugins/go-viral/public/css/animate.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -7808,6 +8020,11 @@
|
||||
<link rel="stylesheet" id="inline_tweets_shared-css" href="http://wp.lab/wp-content/plugins/inline-tweets/css/shared.css?ver=2.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- innovs-hr-manager -->
|
||||
<link rel="stylesheet" id="innovs-hrm-css" href="http://wp.lab/wp-content/plugins/innovs-hr-manager/public/css/innovs-hrm-public.css?ver=1.0.3.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/innovs-hr-manager/public/js/innovs-hrm-public.js?ver=1.0.3.1" id="innovs-hrm-js"></script>
|
||||
|
||||
|
||||
<!-- innvonix-testimonials -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/innvonix-testimonials/assets/js/owl.carousel.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/innvonix-testimonials/assets/js/innvonix-custom.js?ver=1.0"></script>
|
||||
@@ -7892,6 +8109,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/instashow-lite/assets/instashow-lite/dist/jquery.instashow-lite.packaged.js?ver=1.4.0"></script>
|
||||
|
||||
|
||||
<!-- integrate-automate -->
|
||||
<link rel="stylesheet" id="integrate-automate-css" href="http://wp.lab/wp-content/plugins/integrate-automate/public/css/integrate-automate-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/integrate-automate/public/js/integrate-automate-public.js?ver=1.0.0" id="integrate-automate-js"></script>
|
||||
|
||||
|
||||
<!-- integrate-firebase -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/integrate-firebase/js/firebase.js?ver=0.2.2"></script>
|
||||
|
||||
@@ -7998,6 +8220,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/isiatotop/assets/public/js/init.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- isset-video -->
|
||||
<link rel="stylesheet" id="isset-video-publisher-css/main.css-css" href="http://wp.lab/wp-content/plugins/isset-video//css/main.css?ver=0.8.1-1613822359" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/isset-video/js/main.js?ver=0.8.1-1613822359" id="isset-video-publisher-js/main.js-js"></script>
|
||||
|
||||
|
||||
<!-- issuem -->
|
||||
<link rel="stylesheet" id="issuem_style-css" href="http://wp.lab/wp-content/plugins/issuem/css/issuem.css?ver=2.7.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jquery-issuem-flexslider-css" href="http://wp.lab/wp-content/plugins/issuem/css/flexslider.css?ver=2.7.1" type="text/css" media="all">
|
||||
@@ -8293,6 +8520,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/js/kvp.js?ver=3.2.1"></script>
|
||||
|
||||
|
||||
<!-- katorymnd-reaction-process -->
|
||||
<script src="http://wp.lab/wp-content/plugins/katorymnd-reaction-process/js/katorymnd_qjsk.js?ver=1.0" id="katorymnd_vubc_css_js-js"></script>
|
||||
|
||||
|
||||
<!-- kaya-qr-code-generator -->
|
||||
<link rel="stylesheet" id="wpkqcg-style-css" href="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/css/wpkqcg-pkg.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/assets/qrcode.js?ver=1.0.2"></script>
|
||||
@@ -8923,6 +9154,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lnd-for-wp/public/js/lnd-for-wp-public.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- load-more-posts -->
|
||||
<script src="http://wp.lab/wp-content/plugins/load-more-posts/js/custom.js?ver=1.2.2" id="wp_loadmore_js-js"></script>
|
||||
|
||||
|
||||
<!-- load-your-site-url-in-any-page -->
|
||||
<link rel="stylesheet" id="load-page-or-post-by-url-css" href="http://wp.lab/wp-content/plugins/load-your-site-url-in-any-page/public/css/load-page-or-post-by-url-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/load-your-site-url-in-any-page/public/js/load-page-or-post-by-url-public.js?ver=1.0.0"></script>
|
||||
@@ -8983,6 +9218,7 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/logic-hop/public/js/ajax-methods.min.js?ver=2.1.9"></script>
|
||||
<link rel="stylesheet" id="logichop-display-css" href="http://wp.lab/wp-content/plugins/logic-hop/public/css/display.css?ver=2.1.9" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="logichop-display-css" href="http://wp.lab/wp-content/plugins/logic-hop/public/css/display.min.css?ver=2.1.9" type="text/css" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/logic-hop/public/js/ajax-methods.js?ver=2.1.9" id="logichop-js"></script>
|
||||
|
||||
|
||||
<!-- login-and-logout-redirect -->
|
||||
@@ -10129,6 +10365,7 @@
|
||||
|
||||
<!-- mphb-styles -->
|
||||
<link rel="stylesheet" id="mphbs-style-css" href="http://wp.lab/wp-content/plugins/mphb-styles/style.css?ver=0.0.1" media="all">
|
||||
<link rel="stylesheet" id="mphbs-styles-css" href="http://wp.lab/wp-content/plugins/mphb-styles/assets/css/style.css?ver=0.0.1" media="all">
|
||||
|
||||
|
||||
<!-- mplus-intercom-subscription -->
|
||||
@@ -10341,6 +10578,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mygdex-for-woocommerce/public/js/gdex-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mygdex-prime-for-woocommerce -->
|
||||
<link rel="stylesheet" id="gdex-prime-css" href="http://wp.lab/wp-content/plugins/mygdex-prime-for-woocommerce/public/css/gdex-prime-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/mygdex-prime-for-woocommerce/public/js/gdex-prime-public.js?ver=1.0.0" id="gdex-prime-js"></script>
|
||||
|
||||
|
||||
<!-- myspeakingpage -->
|
||||
<link rel="stylesheet" id="msp-frontend-style-css" href="http://wp.lab/wp-content/plugins/myspeakingpage/css/frontend.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
@@ -10933,6 +11175,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/openhousevideo/assets/scripts/ohv-loader.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- opensheetmusicdisplay -->
|
||||
<script src="http://wp.lab/wp-content/plugins/opensheetmusicdisplay/build/osmd/opensheetmusicdisplay.min.js?ver=0.9.2" id="phonicscore_opensheetmusicdisplay_opensheetmusicdisplay_dist-js"></script>
|
||||
|
||||
|
||||
<!-- opera-share-button -->
|
||||
<link rel="stylesheet" id="osb-css" href="http://wp.lab/wp-content/plugins/opera-share-button/css/opera-buttons.css?ver=0.1.5.1" type="text/css" media="screen">
|
||||
|
||||
@@ -11890,6 +12136,17 @@
|
||||
<link rel="stylesheet" id="post-views-counter-frontend-css" href="http://wp.lab/wp-content/plugins/post-views-counter/css/frontend.css?ver=1.2.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- posts-and-products-statistics-for-woocommerce -->
|
||||
<link rel="stylesheet" id="papsfwc-css-css" href="http://wp.lab/wp-content/plugins/posts-and-products-statistics-for-woocommerce/assets/css/style.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/posts-and-products-statistics-for-woocommerce/includes/libraries/canvas/canvas.js?ver=1.1" id="papsfwc-canvas-js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/posts-and-products-statistics-for-woocommerce/assets/js/custom.js?ver=1.1" id="papsfwc-custom-js-js"></script>
|
||||
|
||||
|
||||
<!-- posts-and-products-views -->
|
||||
<link rel="stylesheet" id="papvfwc-css-css" href="http://wp.lab/wp-content/plugins/posts-and-products-views/assets/css/style.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/posts-and-products-views/assets/js/custom.js?ver=1.1" id="papvfwc-custom-js-js"></script>
|
||||
|
||||
|
||||
<!-- posts-data-table -->
|
||||
<link rel="stylesheet" id="posts-data-table-css" href="http://wp.lab/wp-content/plugins/posts-data-table/assets/css/posts-data-table.min.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/posts-data-table/assets/js/posts-data-table.min.js?ver=1.1"></script>
|
||||
@@ -12067,6 +12324,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-search/assets/js/frontend.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- presto-player -->
|
||||
<link rel="stylesheet" id="wpackio_prestoPlayervideo_video/vendors--presto-player--main-6840b979.css_style-css" href="http://wp.lab/wp-content/plugins/presto-player/dist/video/vendors--presto-player--main-6840b979.css?ver=0.0.14" media="all">
|
||||
<link rel="stylesheet" id="wpackio_prestoPlayervideo_video/main-6f8cff9e.css_style-css" href="http://wp.lab/wp-content/plugins/presto-player/dist/video/main-6f8cff9e.css?ver=0.0.14" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/presto-player/dist/video/runtime-4057c74a.js?ver=0.0.14" id="wpackio_prestoPlayervideo_video/runtime-4057c74a.js_script-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/presto-player/dist/video/vendors--presto-player--main-5d144c33.js?ver=0.0.14" id="wpackio_prestoPlayervideo_video/vendors--presto-player--main-5d144c33.js_script-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/presto-player/dist/video/main-eccd2883.js?ver=0.0.14" id="wpackio_prestoPlayervideo_video/main-eccd2883.js_script-js"></script>
|
||||
|
||||
|
||||
<!-- pretty-opt-in-lite -->
|
||||
<link rel="stylesheet" id="pretty-front-style-css" href="http://wp.lab/wp-content/plugins/pretty-opt-in-lite/assets/css/front.css?ver=1.0.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/pretty-opt-in-lite//assets/js/library/ionicons.js?ver=1.0.0"></script>
|
||||
@@ -12183,6 +12448,10 @@
|
||||
<link rel="stylesheet" id="product-recommendation-quiz-for-ecommerce-css" href="http://wp.lab/wp-content/plugins/product-recommendation-quiz-for-ecommerce/public/css/product-recommendation-quiz-for-ecommerce-public.css?ver=1.0.3" media="all">
|
||||
|
||||
|
||||
<!-- product-referral-for-woocommerce -->
|
||||
<link rel="stylesheet" id="prfwc-css-css" href="http://wp.lab/wp-content/plugins/product-referral-for-woocommerce/assets/css/style.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- product-review -->
|
||||
<link rel="stylesheet" id="product-review-css" href="http://wp.lab/wp-content/plugins/product-review/public/assets/css/product-review-public.css?ver=1.2.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="product-review-responsive-css" href="http://wp.lab/wp-content/plugins/product-review/public/assets/css/responsive.css?ver=1.2.3" type="text/css" media="all">
|
||||
@@ -12384,6 +12653,8 @@
|
||||
|
||||
<!-- qa-heatmap-analytics -->
|
||||
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/load-file.js?ver=1.0.7.1" id="qahm-load-file-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/common.js?ver=1.0.7.1" id="qahm-common-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/behavioral-data.js?ver=1.0.7.1" id="qahm-behavioral-data-js"></script>
|
||||
|
||||
|
||||
<!-- qbot-question-answer -->
|
||||
@@ -12415,6 +12686,10 @@
|
||||
<link rel="stylesheet" id="quabads-css" href="http://wp.lab/wp-content/plugins/quabads/admin/css/quabads-admin.css?ver=1.2.1" media="all">
|
||||
|
||||
|
||||
<!-- quadlayers-telegram-chat -->
|
||||
<link rel="stylesheet" id="qltgm-css" href="http://wp.lab/wp-content/plugins/quadlayers-telegram-chat/assets/frontend/css/frontend.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- quadmenu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quadmenu/assets/frontend/js/quadmenu.min.js?ver=1.1.6"></script>
|
||||
|
||||
@@ -12906,6 +13181,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/responsive-block-control/public/js/responsive-block-control-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- responsive-divi-candy -->
|
||||
<link rel="stylesheet" id="diviresponsive-css" href="http://wp.lab/wp-content/plugins/responsive-divi-candy/public/css/diviresponsive-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/responsive-divi-candy/public/js/diviresponsive-public.js?ver=1.0.0" id="diviresponsive-js"></script>
|
||||
|
||||
|
||||
<!-- responsive-embed-videos -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responsive-embed-videos/js/rev.js?ver=0.0.1"></script>
|
||||
|
||||
@@ -13320,11 +13600,23 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/safetymails-forms/public/js/form-render.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sales-booster-gd-for-woocommerce -->
|
||||
<link rel="stylesheet" id="sales_booster_gd_woocommerce_public_css-css" href="http://wp.lab/wp-content/plugins/sales-booster-gd-for-woocommerce/public/css/sales-booster-gd-woocommerce-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="sales-booster-gd-woocommerce-animated-css" href="http://wp.lab/wp-content/plugins/sales-booster-gd-for-woocommerce/public/css/sales-booster-gd-woocommerce-animated.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sales-booster-gd-for-woocommerce/public/js/sales-booster-gd-woocommerce-public.js?ver=1.0.0" id="sales_booster_gd_woocommerce_public_js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sales-booster-gd-for-woocommerce/public/js/jquery.device.detector.js?ver=1.0.0" id="sales_booster_device_detect_script-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sales-booster-gd-for-woocommerce/public/js/fingerprint.js?ver=1.0.0" id="sales_booster_fingerprint_script-js"></script>
|
||||
|
||||
|
||||
<!-- sales-notifications-by-social-oracle -->
|
||||
<link rel="stylesheet" id="social-oracle-css" href="http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/css/social-oracle-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/js/social-oracle-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- salesbox-forms -->
|
||||
<link rel="stylesheet" id="salesbox-crm-form-css" href="http://wp.lab/wp-content/plugins/salesbox-forms/includes/css/styles.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- saleshybrid-forms -->
|
||||
<link rel="stylesheet" id="featherlight-style-css" href="http://wp.lab/wp-content/plugins/saleshybrid-forms/featherlight/featherlight.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/saleshybrid-forms/featherlight/featherlight.js?ver=1.0"></script>
|
||||
@@ -13388,6 +13680,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-image-pdfcrowdindicators-css" href="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-indicators.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-indicators.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-image-pdfcrowdcomponents-css" href="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-components.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-components.js?ver=1.0.0" id="save-as-image-pdfcrowdcomponents-js"></script>
|
||||
|
||||
|
||||
<!-- save-as-pdf-by-pdfcrowd -->
|
||||
@@ -13395,6 +13689,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-pdf-pdfcrowdindicators-css" href="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/css/save-as-pdf-pdfcrowd-indicators.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-indicators.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-pdf-pdfcrowdcomponents-css" href="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/css/save-as-pdf-pdfcrowd-components.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-components.js?ver=1.0.0" id="save-as-pdf-pdfcrowdcomponents-js"></script>
|
||||
|
||||
|
||||
<!-- save-page-to-pdf -->
|
||||
@@ -13637,6 +13933,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sensei-lms/assets/js/user-dashboard.min.js?ver=2.0.1"></script>
|
||||
|
||||
|
||||
<!-- seo-assistant -->
|
||||
<link rel="stylesheet" id="seo-assistant-css" href="http://wp.lab/wp-content/plugins/seo-assistant/public/css/seo-assistant-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/seo-assistant/public/js/seo-assistant-public.js?ver=1.0.0" id="seo-assistant-js"></script>
|
||||
|
||||
|
||||
<!-- seo-check -->
|
||||
<link rel="stylesheet" id="er-css-widget-report-css" href="http://wp.lab/wp-content/plugins/seo-check/css/widget-report.css?ver=3.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-check/js/base.js?ver=3.1"></script>
|
||||
@@ -14203,6 +14504,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-nested-menu/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- simple-notification -->
|
||||
<link rel="stylesheet" id="apbd-simple-noti-style-css" href="http://wp.lab/wp-content/plugins/simple-notification/css/client_style.css?ver=1.1" media="">
|
||||
|
||||
|
||||
<!-- simple-owl-carousel -->
|
||||
<link rel="stylesheet" id="simple-owl-carousel-css" href="http://wp.lab/wp-content/plugins/simple-owl-carousel/public/css/simple-owl-carousel-public.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
@@ -14229,6 +14534,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-reading-progress-bar/js/srpb_scripts.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- simple-redirection-for-contact-form-7 -->
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-redirection-for-contact-form-7/public/js/dck-cf7-simple-redirection-public.min.js?ver=1.0.1" id="dck-cf7-simple-redirection-js"></script>
|
||||
|
||||
|
||||
<!-- simple-responsive-images -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-responsive-images//ressources/js/responsive.min.js?ver=1.0.3"></script>
|
||||
|
||||
@@ -15090,6 +15399,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/stan-easy-connect/public/js/stan-easy-connect-public.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- stapp-video -->
|
||||
<script src="http://wp.lab/wp-content/plugins/stapp-video/includes/js/FrontendScript.js?ver=1.0" id="STAppFrontendVideoScript-js"></script>
|
||||
|
||||
|
||||
<!-- status-buddy -->
|
||||
<link rel="stylesheet" id="status-buddy-css" href="http://wp.lab/wp-content/plugins/status-buddy/public/css/status-buddy-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/status-buddy/public/js/status-buddy-public.js?ver=1.0.0"></script>
|
||||
@@ -15376,6 +15689,11 @@
|
||||
<link rel="stylesheet" id="superpack-widgets-style-css" href="//wp.lab/wp-content/plugins/superpack/assets/css/widgets.min.css?ver=0.3.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- superscripted -->
|
||||
<link rel="stylesheet" id="simple-data-tables-frontend-css" href="http://wp.lab/wp-content/plugins/superscripted/assets/css/frontend.min.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/superscripted/assets/js/frontend.min.js?ver=1.1" id="simple-data-tables-frontend-js"></script>
|
||||
|
||||
|
||||
<!-- supportbubble -->
|
||||
<script src="http://wp.lab/wp-content/plugins/supportbubble/frontend/dist/bundle.js?ver=1.1.1" id="support-bubble-js"></script>
|
||||
|
||||
@@ -16169,6 +16487,14 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/js/lity.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- tp-products-compare-for-woocommerce -->
|
||||
<link rel="stylesheet" id="tp-woocommerce-compare-icons.fontello-css" href="http://wp.lab/wp-content/plugins/tp-products-compare-for-woocommerce/public/icons/css/fontello.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="tpwclity.min-css" href="http://wp.lab/wp-content/plugins/tp-products-compare-for-woocommerce/public/css/tpwclity.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-compare-css" href="http://wp.lab/wp-content/plugins/tp-products-compare-for-woocommerce/public/css/tp-woocommerce-compare-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tp-products-compare-for-woocommerce/public/js/tpwclity.min.js?ver=1.0.0" id="tpwclity.min-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tp-products-compare-for-woocommerce/public/js/tp-woocommerce-compare-public.js?ver=1.0.0" id="tp-woocommerce-compare-js"></script>
|
||||
|
||||
|
||||
<!-- tp-woocommerce-product-gallery -->
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-gallery-css" href="http://wp.lab/wp-content/plugins/tp-woocommerce-product-gallery/public/css/woocommerce-product-gallery-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-gallery-tpslick-css" href="http://wp.lab/wp-content/plugins/tp-woocommerce-product-gallery/public/css/tpslick.css?ver=1.0.0" media="all">
|
||||
@@ -16310,6 +16636,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tv-streaming/tv-min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- tvg-xpress -->
|
||||
<link rel="stylesheet" id="tvgexpress-css" href="http://wp.lab/wp-content/plugins/tvg-xpress/public/css/tvgexpress-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tvg-xpress/public/js/tvgexpress-public.js?ver=1.0.0" id="tvgexpress-js"></script>
|
||||
|
||||
|
||||
<!-- tw-recent-posts-widget -->
|
||||
<link rel="stylesheet" id="tw-recent-posts-widget-css" href="http://wp.lab/wp-content/plugins/tw-recent-posts-widget/tw-recent-posts-widget.css?ver=1.0.5" type="text/css" media="screen">
|
||||
|
||||
@@ -16360,6 +16691,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/u-more-recent-posts/inc/script.js?ver=1.4.1"></script>
|
||||
|
||||
|
||||
<!-- uafrica-shipping -->
|
||||
<link rel="stylesheet" id="uafrica-shipping-shortcode-css" href="http://wp.lab/wp-content/plugins/uafrica-shipping/assets/build/uafrica-shipping.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/uafrica-shipping/assets/build/uafrica-shipping.js?ver=1.0.0" id="uafrica-shipping-shortcode-js"></script>
|
||||
|
||||
|
||||
<!-- uamplified-io -->
|
||||
<link rel="stylesheet" id="uamp-widgets-css" href="http://wp.lab/wp-content/plugins/uamplified-io/assets/css/uamp-widgets.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -16774,6 +17110,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/units/assets/js/unit-switcher.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- universal-clocks -->
|
||||
<link rel="stylesheet" id="universal-clocks-jClocksGMT-css" href="http://wp.lab/wp-content/plugins/universal-clocks/public/css/jClocksGMT.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="universal-clocks-css" href="http://wp.lab/wp-content/plugins/universal-clocks/public/css/universal-clocks-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/universal-clocks/public/js/jquery.rotate.js?ver=1.0.0" id="universal-clocks-jq-rotate-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/universal-clocks/public/js/jClocksGMT.js?ver=1.0.0" id="universal-clocks-jClocksGMT-js"></script>
|
||||
|
||||
|
||||
<!-- universal-google-adsense-and-ads-manager -->
|
||||
<link rel="stylesheet" id="universal-google-adsense-and-ads-manager-css" href="http://wp.lab/wp-content/plugins/universal-google-adsense-and-ads-manager/public/assets/dist/css/ugaam-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universal-google-adsense-and-ads-manager/public/assets/dist/js/ugaam-public.js?ver=1.0.2"></script>
|
||||
@@ -17163,6 +17506,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visideign-login/js/blockui.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- visitor-login-notice -->
|
||||
<link rel="stylesheet" id="visitor-login-notice-style-css" href="http://wp.lab/wp-content/plugins/visitor-login-notice/assets/css/visitor-login-notice.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/visitor-login-notice/assets/js/js.cookie.min.js?ver=1.0.0" id="js-cookie-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/visitor-login-notice/assets/js/visitor-login-notice.js?ver=1.0.0" id="visitor-login-notice-script-js"></script>
|
||||
|
||||
|
||||
<!-- visitors-details -->
|
||||
<link rel="stylesheet" id="wp-visitors-details-css" href="http://wp.lab/wp-content/plugins/visitors-details/public/css/wp-visitors-details-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/visitors-details/public/js/wp-visitors-details-public.js?ver=1.0.0"></script>
|
||||
@@ -17381,6 +17730,11 @@
|
||||
<link rel="stylesheet" id="wc-responsive-video-scripts-css" href="http://wp.lab/wp-content/plugins/wc-responsive-video/includes/css/style.css?ver=1.11" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wc-restrict-stock -->
|
||||
<link rel="stylesheet" id="wc-restrict-stock-css" href="http://wp.lab/wp-content/plugins/wc-restrict-stock/public/css/wc-restrict-stock-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wc-restrict-stock/public/js/wc-restrict-stock-public.js?ver=1.0.0" id="wc-restrict-stock-js"></script>
|
||||
|
||||
|
||||
<!-- wc-rich-reviews-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-rich-reviews-lite/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -17683,6 +18037,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wext-woocommerce-product-tab/js/tab-active.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wezido-elementor-addon-based-on-easy-digital-downloads -->
|
||||
<link rel="stylesheet" id="wezido-css" href="http://wp.lab/wp-content/plugins/wezido-elementor-addon-based-on-easy-digital-downloads/public/css/wezido-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="tailwind-css" href="http://wp.lab/wp-content/plugins/wezido-elementor-addon-based-on-easy-digital-downloads/public/css/tailwind.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wezido-elemenor-frontend-css" href="http://wp.lab/wp-content/plugins/wezido-elementor-addon-based-on-easy-digital-downloads/elementor-widgets/css/wezido-elementor-frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wezido-elementor-addon-based-on-easy-digital-downloads/public/js/wezido-public.js?ver=1.0.0" id="wezido-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wezido-elementor-addon-based-on-easy-digital-downloads/elementor-widgets/js/vendor/jquery.beerslider.js?ver=1.0.0" id="beerslider-js"></script>
|
||||
|
||||
|
||||
<!-- wftda-rankings-widget -->
|
||||
<link rel="stylesheet" id="league-wftda-ranking-css" href="http://wp.lab/wp-content/plugins/wftda-rankings-widget/public/css/league-wftda-ranking-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wftda-rankings-widget/public/js/league-wftda-ranking-public.js?ver=1.0.1"></script>
|
||||
@@ -18767,6 +19129,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-custom-author-url/public/js/wp-custom-author-url-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-custom-cursors -->
|
||||
<link rel="stylesheet" id="wp_custom_cursors-css" href="http://wp.lab/wp-content/plugins/wp-custom-cursors/public/css/wp_custom_cursors_main_style.css?ver=2.2.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-custom-cursors/public/js/wp_custom_cursors_main_script.js?ver=2.2.3" id="wp_custom_cursors-js"></script>
|
||||
|
||||
|
||||
<!-- wp-custom-register-login -->
|
||||
<link rel="stylesheet" id="wp-custom-register-login-css" href="http://wp.lab/wp-content/plugins/wp-custom-register-login/public/css/wp-custom-register-login-public.css?ver=2.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-custom-register-login-bootstrap-css" href="http://wp.lab/wp-content/plugins/wp-custom-register-login/public/css/bootstrap.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
@@ -20483,6 +20850,11 @@
|
||||
<link rel="stylesheet" id="soswodify-css" href="http://wp.lab/wp-content/plugins/wp-wdfy-integration-of-wodify/css/style.css?ver=1.12.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-webauthn-passwordless-login -->
|
||||
<link rel="stylesheet" id="wordpress-webauthn-passwordless-login-css" href="http://wp.lab/wp-content/plugins/wp-webauthn-passwordless-login/public/css/wordpress-webauthn-passwordless-login-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-webauthn-passwordless-login/public/js/wordpress-webauthn-passwordless-login-public.js?ver=1.0.0" id="wordpress-webauthn-passwordless-login-js"></script>
|
||||
|
||||
|
||||
<!-- wp-whatsapp-chat -->
|
||||
<link rel="stylesheet" id="qlwapp-css" href="http://wp.lab/wp-content/plugins/wp-whatsapp-chat/assets/css/qlwapp.min.css?ver=4.2.9" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-whatsapp-chat/assets/js/qlwapp.min.js?ver=4.2.9"></script>
|
||||
@@ -20600,6 +20972,13 @@
|
||||
<link rel="stylesheet" id="wpb_iw_main-css" href="http://wp.lab/wp-content/plugins/wpb-image-widget/assets/css/main.css?ver=1.0" type="text/css" media="">
|
||||
|
||||
|
||||
<!-- wpb-popup-for-contact-form-7 -->
|
||||
<link rel="stylesheet" id="wpb-pcf-sweetalert2-css" href="http://wp.lab/wp-content/plugins/wpb-popup-for-contact-form-7/assets/css/sweetalert2.min.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="wpb-pcf-styles-css" href="http://wp.lab/wp-content/plugins/wpb-popup-for-contact-form-7/assets/css/frontend.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wpb-popup-for-contact-form-7/assets/js/sweetalert2.all.min.js?ver=1.1" id="wpb-pcf-sweetalert2-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wpb-popup-for-contact-form-7/assets/js/frontend.js?ver=1.1" id="wpb-pcf-scripts-js"></script>
|
||||
|
||||
|
||||
<!-- wpb-social-master -->
|
||||
<link rel="stylesheet" id="wpb_ss_main_style-css" href="http://wp.lab/wp-content/plugins/wpb-social-master/css/main.css?ver=1.0" type="text/css" media="">
|
||||
|
||||
@@ -20677,6 +21056,16 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpfomo/public/js/wpfomo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpfunnels -->
|
||||
<link rel="stylesheet" id="wp-funnel-css" href="http://wp.lab/wp-content/plugins/wpfunnels/public/assets/css/wpfnl-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wpfunnels/public/assets/js/wpfnl-public.js?ver=1.0.0" id="wp-funnel-js"></script>
|
||||
|
||||
|
||||
<!-- wpgenious-job-listing -->
|
||||
<link rel="stylesheet" id="wpgenious-job-listing-css" href="http://wp.lab/wp-content/plugins/wpgenious-job-listing/assets/css/public/wpgenious-job-listing-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wpgenious-job-listing/assets/js/public/wpgenious-job-listing-public.js?ver=1.0.0" id="wpgenious-job-listing-js"></script>
|
||||
|
||||
|
||||
<!-- wpgiftregistry -->
|
||||
<link rel="stylesheet" id="WPGiftRegistry-css" href="http://wp.lab/wp-content/plugins/wpgiftregistry/public/css/WP_Gift_Registry-public.css?ver=1.2.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpgiftregistry/public/js/WP_Gift_Registry-public.js?ver=1.2.5"></script>
|
||||
|
||||
@@ -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 ""
|
||||
@@ -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 ""
|
||||
@@ -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 ""
|
||||
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,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 ""
|
||||
@@ -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,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">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -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.2'
|
||||
|
||||
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