Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
549ab4aa15 | ||
|
|
b189c71682 | ||
|
|
b909856933 | ||
|
|
5de9084901 | ||
|
|
384ef0b44c | ||
|
|
9307772dc3 | ||
|
|
730c71d103 | ||
|
|
5c710b96f5 | ||
|
|
fe63d0eadf | ||
|
|
a6ca95159a | ||
|
|
677d32fef5 | ||
|
|
14abd05969 | ||
|
|
2e680be34f | ||
|
|
fe29942bf4 | ||
|
|
c8fb717ac1 | ||
|
|
1ff7fcc913 | ||
|
|
419c32702a | ||
|
|
9b63714caa | ||
|
|
f034233607 | ||
|
|
be6fcb51b6 | ||
|
|
e49a682f00 | ||
|
|
23ad3141a1 | ||
|
|
5347e374e0 | ||
|
|
1a49a628de | ||
|
|
8def256d7e | ||
|
|
1cd8e6bad7 | ||
|
|
7a03c0db25 | ||
|
|
e7e3657d1f | ||
|
|
734dfcc9bc |
20
.rubocop.yml
20
.rubocop.yml
@@ -4,10 +4,20 @@ AllCops:
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
Layout/EmptyLinesAroundAttributeAccessor:
|
||||
Enabled: true
|
||||
Layout/LineLength:
|
||||
Max: 120
|
||||
Layout/SpaceAroundMethodCallOperator:
|
||||
Enabled: true
|
||||
Lint/DeprecatedOpenSSLConstant:
|
||||
Enabled: true
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Lint/RaiseException:
|
||||
Enabled: true
|
||||
Lint/StructNewOverride:
|
||||
Enabled: true
|
||||
Metrics/AbcSize:
|
||||
Max: 25
|
||||
Metrics/BlockLength:
|
||||
@@ -27,8 +37,18 @@ Style/ClassVars:
|
||||
Enabled: false
|
||||
Style/Documentation:
|
||||
Enabled: false
|
||||
Style/ExponentialNotation:
|
||||
Enabled: true
|
||||
Style/FormatStringToken:
|
||||
Enabled: false
|
||||
Style/HashEachMethods:
|
||||
Enabled: true
|
||||
Style/HashTransformKeys:
|
||||
Enabled: true
|
||||
Style/HashTransformValues:
|
||||
Enabled: true
|
||||
Style/NumericPredicate:
|
||||
Exclude:
|
||||
- 'app/controllers/vuln_api.rb'
|
||||
Style/SlicingWithRange:
|
||||
Enabled: true
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
if ENV['GITHUB_ACTION']
|
||||
require 'simplecov-lcov'
|
||||
@@ -15,4 +16,4 @@ SimpleCov.start do
|
||||
|
||||
add_filter '/spec/'
|
||||
add_filter 'helper'
|
||||
end
|
||||
end
|
||||
|
||||
20
README.md
20
README.md
@@ -31,7 +31,11 @@
|
||||
- RubyGems - Recommended: latest
|
||||
- Nokogiri might require packages to be installed via your package manager depending on your OS, see https://nokogiri.org/tutorials/installing_nokogiri.html
|
||||
|
||||
### From RubyGems (Recommended)
|
||||
### In a Pentesting distribution
|
||||
|
||||
When using a pentesting distubution (such as Kali Linux), it is recommended to install/update wpscan via the package manager if available.
|
||||
|
||||
### From RubyGems
|
||||
|
||||
```shell
|
||||
gem install wpscan
|
||||
@@ -39,18 +43,6 @@ gem install wpscan
|
||||
|
||||
On MacOSX, if a ```Gem::FilePermissionError``` is raised due to the Apple's System Integrity Protection (SIP), either install RVM and install wpscan again, or run ```sudo gem install -n /usr/local/bin wpscan``` (see [#1286](https://github.com/wpscanteam/wpscan/issues/1286))
|
||||
|
||||
### From sources (NOT Recommended)
|
||||
|
||||
Prerequisites: Git
|
||||
|
||||
```shell
|
||||
git clone https://github.com/wpscanteam/wpscan
|
||||
|
||||
cd wpscan/
|
||||
|
||||
bundle install && rake install
|
||||
```
|
||||
|
||||
# Updating
|
||||
|
||||
You can update the local database by using ```wpscan --update```
|
||||
@@ -77,6 +69,8 @@ docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u1-1
|
||||
|
||||
# Usage
|
||||
|
||||
Full user documentation can be found here; https://github.com/wpscanteam/wpscan/wiki/WPScan-User-Documentation
|
||||
|
||||
```wpscan --url blog.tld``` This will scan the blog using default options with a good compromise between speed and accuracy. For example, the plugins will be checked passively but their version with a mixed detection mode (passively + aggressively). Potential config backup files will also be checked, along with other interesting findings.
|
||||
|
||||
If a more stealthy approach is required, then ```wpscan --stealthy --url blog.tld``` can be used.
|
||||
|
||||
@@ -40,7 +40,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def potential_urls(opts = {})
|
||||
urls = {}
|
||||
domain_name = PublicSuffix.domain(target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
domain_name = (PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
|
||||
File.open(opts[:list]).each_with_index do |path, index|
|
||||
path.gsub!('{domain_name}', domain_name)
|
||||
|
||||
@@ -75,17 +75,20 @@ module WPScan
|
||||
progress_bar.stop
|
||||
break
|
||||
end
|
||||
|
||||
progress_bar.total = progress_bar.progress + ((passwords.size - wordlist_index) / current_passwords_size.round(1)).ceil
|
||||
|
||||
begin
|
||||
progress_bar.total = progress_bar.progress + ((passwords.size - wordlist_index) / current_passwords_size.round(1)).ceil
|
||||
rescue ProgressBar::InvalidProgressError
|
||||
end
|
||||
end
|
||||
end
|
||||
# Maybe a progress_bar.stop ?
|
||||
end
|
||||
# rubocop:disable all
|
||||
# rubocop:enable all
|
||||
|
||||
def passwords_size(max_passwords, users_size)
|
||||
return 1 if max_passwords < users_size
|
||||
return 0 if users_size == 0
|
||||
return 0 if users_size.zero?
|
||||
|
||||
max_passwords / users_size
|
||||
end
|
||||
@@ -94,9 +97,13 @@ module WPScan
|
||||
def check_and_output_errors(res)
|
||||
progress_bar.log("Incorrect response: #{res.code} / #{res.return_message}") unless res.code == 200
|
||||
|
||||
progress_bar.log('Parsing error, might be caused by a too high --max-passwords value (such as >= 2k)') if res.body =~ /parse error. not well formed/i
|
||||
if /parse error. not well formed/i.match?(res.body)
|
||||
progress_bar.log('Parsing error, might be caused by a too high --max-passwords value (such as >= 2k)')
|
||||
end
|
||||
|
||||
progress_bar.log('The requested method is not supported') if res.body =~ /requested method [^ ]+ does not exist/i
|
||||
return unless /requested method [^ ]+ does not exist/i.match?(res.body)
|
||||
|
||||
progress_bar.log('The requested method is not supported')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.1'
|
||||
VERSION = '3.8.2'
|
||||
end
|
||||
|
||||
@@ -70,7 +70,7 @@ describe WPScan::Controller::Core do
|
||||
let(:cli_args) { "#{super()} --no-update" }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { core.update_db_required? }. to raise_error(WPScan::Error::MissingDatabaseFile)
|
||||
expect { core.update_db_required? }.to raise_error(WPScan::Error::MissingDatabaseFile)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
end
|
||||
|
||||
it 'replace {domain_name} by its value' do
|
||||
it 'replaces {domain_name} by its value' do
|
||||
expect(finder.potential_urls(opts).keys).to eql %w[
|
||||
http://ex.lo/aa/ex.sql
|
||||
http://ex.lo/aa/wordpress.sql
|
||||
@@ -27,7 +27,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context "when #{sub_domain} sub-domain" do
|
||||
let(:url) { "https://#{sub_domain}.domain.tld" }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql"
|
||||
end
|
||||
end
|
||||
@@ -36,7 +36,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when multi-level tlds' do
|
||||
let(:url) { 'https://something.com.tr' }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include 'https://something.com.tr/something.sql'
|
||||
end
|
||||
end
|
||||
@@ -44,7 +44,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when multi-level tlds and sub-domain' do
|
||||
let(:url) { 'https://dev.something.com.tr' }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include 'https://dev.something.com.tr/something.sql'
|
||||
end
|
||||
end
|
||||
@@ -52,10 +52,18 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when some weird stuff' do
|
||||
let(:url) { 'https://098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.com' }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain-test.sql"
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a non standard URL' do
|
||||
let(:url) { 'http://dc-2' }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/dc-2.sql"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
|
||||
@@ -109,7 +109,7 @@ describe WPScan::Finders::PluginVersion::Readme do
|
||||
'a-lead-capture-contact-form-and-tab-button-by-awebvoicecom' => '3.1',
|
||||
'backup-scheduler' => '1.5.9',
|
||||
'release_date_slash' => '1.0.4'
|
||||
}. each do |file, version_number|
|
||||
}.each do |file, version_number|
|
||||
context "whith #{file}.txt" do
|
||||
it 'returns the expected version' do
|
||||
@file = "#{file}.txt"
|
||||
|
||||
3391
spec/fixtures/db/dynamic_finders.yml
vendored
3391
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1432
spec/fixtures/dynamic_finders/expected.yml
vendored
1432
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
13
spec/fixtures/dynamic_finders/plugin_version/24liveblog/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/24liveblog/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "liveblog24-live-blogging-tool-cgb-guten-block",
|
||||
"version": "2.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.0"
|
||||
}
|
||||
}
|
||||
1418
spec/fixtures/dynamic_finders/plugin_version/2fas/translation_file/languages/2fas-pt_BR.po
vendored
Normal file
1418
spec/fixtures/dynamic_finders/plugin_version/2fas/translation_file/languages/2fas-pt_BR.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,111 @@
|
||||
# Copyright (C) 2020 PRESSMAN
|
||||
# This file is distributed under the same license as the Admin User Control plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Admin User Control 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/admin-user-"
|
||||
"control\n"
|
||||
"POT-Creation-Date: 2020-05-18T02:23:41+00:00\n"
|
||||
"PO-Revision-Date: 2020-05-18 11:26+0900\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: admin-user-control\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Admin User Control"
|
||||
msgstr "Admin User Control"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Control admin user in administration screens in real time."
|
||||
msgstr "管理画面にログインしているユーザーをリアルタイムで制御します。"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PRESSMAN"
|
||||
msgstr "PRESSMAN"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.pressman.ne.jp"
|
||||
msgstr "https://www.pressman.ne.jp"
|
||||
|
||||
#: auc-login-monitor.php:22
|
||||
msgid "Logged in"
|
||||
msgstr "ログイン"
|
||||
|
||||
#: auc-maintenance.php:38 auc-maintenance.php:174
|
||||
msgid "Maintenance"
|
||||
msgstr "メンテナンス"
|
||||
|
||||
#: auc-maintenance.php:42 auc-maintenance.php:220
|
||||
msgid "maintenance_start_date"
|
||||
msgstr "メンテナンス開始日時"
|
||||
|
||||
#: auc-maintenance.php:59 auc-maintenance.php:221
|
||||
msgid "maintenance_end_date"
|
||||
msgstr "メンテナンス終了日時"
|
||||
|
||||
#: auc-maintenance.php:114
|
||||
msgid "Forced logout after 10 seconds because the maintenance start time"
|
||||
msgstr "メンテナンスの開始時刻になったため10秒後に強制ログアウトします"
|
||||
|
||||
#: auc-maintenance.php:115
|
||||
msgid "Scheduled maintenance end time"
|
||||
msgstr "メンテナンス終了予定時間"
|
||||
|
||||
#: auc-maintenance.php:175
|
||||
msgid "Add New Maintenance"
|
||||
msgstr "メンテナンスを追加"
|
||||
|
||||
#: auc-maintenance.php:176
|
||||
msgid "Edit Maintenance"
|
||||
msgstr "メンテナンスの編集"
|
||||
|
||||
#: auc-maintenance.php:246
|
||||
msgid "Latest maintenance information"
|
||||
msgstr "直近のメンテナンス情報"
|
||||
|
||||
#: auc-maintenance.php:269
|
||||
msgid "Click a title to display a detail."
|
||||
msgstr "タイトルをクリックすると詳細が表示されます。"
|
||||
|
||||
#: auc-maintenance.php:287
|
||||
msgid "No maintenance information"
|
||||
msgstr "メンテナンス情報がありません"
|
||||
|
||||
#: auc-notification.php:26
|
||||
msgid "New notification"
|
||||
msgstr "新しいお知らせがあります"
|
||||
|
||||
#: auc-notification.php:50
|
||||
msgid "Notification"
|
||||
msgstr "お知らせ"
|
||||
|
||||
#: auc-notification.php:51
|
||||
msgid "Add New Notification"
|
||||
msgstr "お知らせを追加"
|
||||
|
||||
#: auc-notification.php:52
|
||||
msgid "Edit Notification"
|
||||
msgstr "お知らせの編集"
|
||||
|
||||
#: auc-notification.php:70
|
||||
msgid "Latest notifications"
|
||||
msgstr "直近のお知らせ"
|
||||
|
||||
#: auc-notification.php:86
|
||||
msgid "Click a title to display a detail. If you read it, mark it as read."
|
||||
msgstr ""
|
||||
"タイトルをクリックすると詳細が表示されます。読んだら既読にしてください。"
|
||||
|
||||
#: auc-notification.php:91
|
||||
msgid "Mark as read"
|
||||
msgstr "既読にする"
|
||||
|
||||
#: auc-notification.php:113
|
||||
msgid "There is no notifications"
|
||||
msgstr "お知らせがありません"
|
||||
@@ -0,0 +1,73 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the Advanced Options for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Options for WooCommerce 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advanced-options-"
|
||||
"for-woocommerce\n"
|
||||
"Language-Team: Condless <info@condless.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-24 08:53+0300\n"
|
||||
"PO-Revision-Date: 2020-04-24 08:55+0300\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: advanced-options-for-woocommerce\n"
|
||||
"Last-Translator: Condless <info@condless.com>\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? "
|
||||
"2 : 3);\n"
|
||||
"Language: he_IL\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Advanced Options for WooCommerce"
|
||||
msgstr "אפשרויות מתקדמות לווקומרס"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/advanced-options-for-woocommerce/"
|
||||
msgstr "https://www.condless.com/advanced-options-for-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce plugin for more options and customizations. Simple and Easy to "
|
||||
"use."
|
||||
msgstr "תוסף לווקומרס לאפשרויות נוספות והתאמה אישית. פשוט וקל לשימוש."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr "Condless"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr "https://www.condless.com/"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:163
|
||||
msgid "contains letters not from the permitted languages"
|
||||
msgstr "מכיל אותיות שלא שייכות לשפות המותרות"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:200
|
||||
msgid "Advanced Options"
|
||||
msgstr "אפשרויות מתקדמות"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:235
|
||||
msgid ""
|
||||
"Allow only ASCII chars (which prevent non-English letters) in the checkout "
|
||||
"fields"
|
||||
msgstr "אפשר רק תווי ASCII (מה שמונע אותיות שלא באנגלית) בשדות התשלום"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:241
|
||||
msgid ""
|
||||
"Display the VAT amount and the product price include & exlude it in single "
|
||||
"product page"
|
||||
msgstr "הצג את סכום המע\"מ ואת מחיר המוצר איתו ובלעדיו בעמוד מוצר"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:247
|
||||
msgid "Display for variable products the attribute name instead of"
|
||||
msgstr "הצג במוצרים עם וריאיציות את שם התכונה במקום"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:253
|
||||
msgid "Display only products in"
|
||||
msgstr "הצג מוצרים בלבד ב"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:259
|
||||
msgid "Auto triggered by"
|
||||
msgstr "פועל אוטומטית כאשר"
|
||||
61
spec/fixtures/dynamic_finders/plugin_version/aiaibot/translation_file/languages/aiaibot.pot
vendored
Normal file
61
spec/fixtures/dynamic_finders/plugin_version/aiaibot/translation_file/languages/aiaibot.pot
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
# Copyright (C) 2020 aiaibot
|
||||
# This file is distributed under the same license as the aiaibot plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: aiaibot 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aiaibot\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-05-20T09:25:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: aiaibot\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "aiaibot"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/aiaibot/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Integrate your aiaibot chatbot."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://app.aiaibot.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:84
|
||||
msgid "Integration Code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:92
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:112
|
||||
msgid "Implement your chatbot on your Wordpress page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:123
|
||||
msgid "Config id is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:147
|
||||
msgid "Chatbot Integration Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: url to the app.aiaibot
|
||||
#: admin/class-aiaibot-admin.php:155
|
||||
msgid "Get the integration code on %s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:157
|
||||
msgid "Publish Chatbot"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,7 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.5.1 - 2020-04-14 =
|
||||
* fixed performance problem on sites with large amount of posts
|
||||
|
||||
= 0.5.0 - 2020-04-14 =
|
||||
* Initial public release
|
||||
41
spec/fixtures/dynamic_finders/plugin_version/apijoin-gumroad/composer_file/package.json
vendored
Normal file
41
spec/fixtures/dynamic_finders/plugin_version/apijoin-gumroad/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "agu-apijoin",
|
||||
"version": "1.0.0",
|
||||
"description": "test",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"check-engines": "wp-scripts check-engines",
|
||||
"check-licenses": "wp-scripts check-licenses",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"lint:md:docs": "wp-scripts lint-md-docs",
|
||||
"lint:md:js": "wp-scripts lint-md-js",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start",
|
||||
"test:e2e": "wp-scripts test-e2e",
|
||||
"test:unit": "wp-scripts test-unit-js"
|
||||
},
|
||||
"author": "Miguras",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@wordpress/scripts": "^7.1.0",
|
||||
"css-loader": "^3.4.2",
|
||||
"html-react-parser": "^0.10.3",
|
||||
"image-webpack-loader": "^6.0.0",
|
||||
"react-responsive-carousel": "^3.1.51",
|
||||
"react-slick": "^0.25.2",
|
||||
"react-smart-slider": "^0.1.2",
|
||||
"slick-carousel": "^1.8.1",
|
||||
"style-loader": "^1.1.3",
|
||||
"styled-jsx-plugin-stylelint": "^0.1.0",
|
||||
"webpack": "^4.41.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"file-loader": "^5.1.0",
|
||||
"svgo": "^1.3.2",
|
||||
"svgo-loader": "^2.2.1"
|
||||
}
|
||||
}
|
||||
292
spec/fixtures/dynamic_finders/plugin_version/ar-contactus/changelog/changelog.txt
vendored
Normal file
292
spec/fixtures/dynamic_finders/plugin_version/ar-contactus/changelog/changelog.txt
vendored
Normal file
@@ -0,0 +1,292 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
##[1.8.4] - 2020-05-21
|
||||
### Added
|
||||
- Button icon size option
|
||||
- Button appearing animation option
|
||||
- Menu sidebar style
|
||||
- Menu popup animation
|
||||
- Menu sidebar animation
|
||||
- Menu items animation
|
||||
- Plugin core updated
|
||||
|
||||
##[1.8.3] - 2020-05-19
|
||||
### Added
|
||||
- Deactivation plugin for current domain
|
||||
- PhpLive integration
|
||||
- Paldesk integration
|
||||
|
||||
##[1.8.2] - 2020-05-15
|
||||
### Fixed
|
||||
- Small issues
|
||||
|
||||
##[1.8.1] - 2020-05-11
|
||||
### Added
|
||||
- Output filtration
|
||||
- Server config values validation
|
||||
|
||||
##[1.8.0] - 2020-05-06
|
||||
### Added
|
||||
- Option to choose who can access callback list
|
||||
|
||||
### Fixed
|
||||
- Security improvements
|
||||
|
||||
##[1.7.9] - 2020-04-09
|
||||
### Fixed
|
||||
- Skype integration
|
||||
- FreshChat integration
|
||||
|
||||
##[1.7.8] - 2020-02-07
|
||||
### Fixed
|
||||
- Tawk.to appearance issue
|
||||
|
||||
##[1.7.7] - 2020-01-29
|
||||
### Added
|
||||
- FreshChat integration
|
||||
|
||||
##[1.7.6] - 2020-01-20
|
||||
### Fixed
|
||||
- Zoho SalesIQ chat integration fix
|
||||
|
||||
##[1.7.5] - 2020-01-14
|
||||
### Added
|
||||
- Zoho SalesIQ chat integration
|
||||
|
||||
##[1.7.4] - 2019-12-18
|
||||
### Fixed
|
||||
- Name validation unicode languages
|
||||
|
||||
##[1.7.3] - 2019-12-15
|
||||
### Fixed
|
||||
- Name validation unicode languages
|
||||
|
||||
##[1.7.2] - 2019-12-13
|
||||
### Added
|
||||
- Name field validation options
|
||||
- Email field to callback form
|
||||
- Email field to callback requests table
|
||||
- Updated translations
|
||||
|
||||
### Fixed
|
||||
- Email subject translation
|
||||
|
||||
##[1.7.1] - 2019-12-04
|
||||
### Fixed
|
||||
- Activation issue
|
||||
|
||||
##[1.7.0] - 2019-11-30
|
||||
### Fixed
|
||||
- Fixed JivoSite issue
|
||||
|
||||
##[1.6.9] - 2019-11-22
|
||||
### Fixed
|
||||
- Fixed Tawk.to issue
|
||||
|
||||
##[1.6.8] - 2019-09-30
|
||||
### Fixed
|
||||
- Fixed JivoSite issue
|
||||
|
||||
##[1.6.7] - 2019-09-25
|
||||
### Fixed
|
||||
- HTML code in GDRP Title
|
||||
|
||||
##[1.6.6] - 2019-09-03
|
||||
### Added
|
||||
- Tidio Integration
|
||||
- Jivosite integration
|
||||
- Added comments functionality to callback requests
|
||||
- Updated translation template
|
||||
- Updated Russian translation
|
||||
- Added Google Analytics integration
|
||||
|
||||
### Fixed
|
||||
- Callback requests admin table mobile view
|
||||
|
||||
##[1.6.4] - 2019-08-05
|
||||
### Fixed
|
||||
- LiveZilla integration
|
||||
|
||||
##[1.6.3] - 2019-07-31
|
||||
### Added
|
||||
- Name and referer fileds to email notification
|
||||
- Name and referer fileds to webpush notification
|
||||
- Name and referer fileds to sms notification
|
||||
- Name and referer fileds to telegram notification
|
||||
- Export callback requests to CSV file
|
||||
- Delay initialization
|
||||
- Disable initialization
|
||||
- Open menu after timeout automatically
|
||||
|
||||
##[1.6.2] - 2019-06-01
|
||||
### Fixed
|
||||
- Crisp integration issue
|
||||
- Callback customer name field
|
||||
|
||||
##[1.6.1] - 2019-05-27
|
||||
### Added
|
||||
- Custom popup item type - allows to open popup with text/html content by clicking menu item
|
||||
- Name field to callback form
|
||||
- Activation functionality
|
||||
|
||||
##[1.5.9] - 2019-05-01
|
||||
### Added
|
||||
- Background and color option for shortcode
|
||||
|
||||
### Fixed
|
||||
- Exporting data issue on some PHP versions
|
||||
- Button and menu z-index
|
||||
- Modal conflict with SimpleModal
|
||||
- Safari item editing/adding
|
||||
|
||||
##[1.5.8] - 2019-04-29
|
||||
### Added
|
||||
- GDPR checkbox
|
||||
|
||||
##[1.5.7] - 2019-04-25
|
||||
### Added
|
||||
- WooCommerce StoreFront theme integration to mobile footer
|
||||
- New Menu style - icons without background
|
||||
- 1-click auto update
|
||||
- LiveZilla integration
|
||||
- StoreFront theme compliant - now you can add "contact-us" button to storefront mobile footer
|
||||
|
||||
### Fixed
|
||||
- LiveChat Pro integration issue
|
||||
- Update issue
|
||||
- Generate css after import
|
||||
|
||||
##[1.5.5] - 2019-04-08
|
||||
### Added
|
||||
- LiveChat Pro integration
|
||||
- Close callback popup timeout
|
||||
- Menu items subtitles
|
||||
- Option to display menu item for all users or registred users or unregistred users only
|
||||
- FontAwesome icons support
|
||||
|
||||
### Fixed
|
||||
- Performance improved
|
||||
|
||||
##[1.5.3] - 2019-04-02
|
||||
### Added
|
||||
- New icons
|
||||
|
||||
### Fixed
|
||||
- Skype WebControl integration
|
||||
- UI bootstrap conflicts
|
||||
|
||||
##[1.5.2] - 2019-03-14
|
||||
### Added
|
||||
- Predefinded Brand Colors selector
|
||||
|
||||
### Fixed
|
||||
- Landscape responsive
|
||||
- Layout fixes
|
||||
|
||||
##[1.5.1] - 2019-02-26
|
||||
### Added
|
||||
- Menu width option
|
||||
- Callback request form width option
|
||||
|
||||
##[1.5.0] - 2019-02-24
|
||||
### Added
|
||||
- LiveChat integration (livechatinc.com)
|
||||
- SmartSupp integratin
|
||||
- All button settings now can be set separately for descktop and mobile versions
|
||||
- All menu settings now can be set separately for descktop and mobile versions
|
||||
- All prompts settings now can be set separately for descktop and mobile versions
|
||||
- Pause between main button animation loops
|
||||
- Icon type option to menu settings
|
||||
- Lines options to menu settings
|
||||
- Header options to menu settings
|
||||
- Header close button options to menu settings
|
||||
- Shadow size/opacity to menu settings
|
||||
- Export option (for exporting all module data)
|
||||
- Import option (for impoting all module data)
|
||||
- Prompt position option
|
||||
- Russian translation
|
||||
- Light design updates
|
||||
|
||||
### Fixed
|
||||
- TextDomain loading
|
||||
- Html email bug
|
||||
- RTL bug
|
||||
- Improved responsivness
|
||||
- Email adress validation
|
||||
|
||||
##[1.3.9] - 2019-02-01
|
||||
### Added
|
||||
- Live helper chat integration
|
||||
|
||||
### Fixed
|
||||
- Callback mobile form layout
|
||||
- Zalo chat validation error
|
||||
- Callback is not running custom JS code
|
||||
|
||||
##[1.3.8] - 2019-01-30
|
||||
### Added
|
||||
- OneSignal integration to receive webpush on callback request
|
||||
- Link target option
|
||||
- Option to control when display prompt messages again after visitor closed them
|
||||
- Shortcodes for menu items
|
||||
|
||||
##[1.3.7] - 2019-01-26
|
||||
### Fixed
|
||||
- create_function deprecated in php 7.2
|
||||
- load plugin text domain
|
||||
|
||||
##[1.3.5] - 2019-01-18
|
||||
### Added
|
||||
- LinkedIn icon
|
||||
- Instagram icon
|
||||
- Zendesk icon
|
||||
- Zendesk chat support
|
||||
- Sandbox mode
|
||||
- Html mail support
|
||||
- Main button mode option (callback only or menu)
|
||||
- Zalo integration
|
||||
|
||||
### Fixed
|
||||
- Problem with ajaxUrl on some WP versions
|
||||
- CSS fixes
|
||||
- Tawk.to hidding issue
|
||||
|
||||
##[1.3.3] - 2019-01-03
|
||||
### Added
|
||||
- Zalo icon
|
||||
|
||||
### Fixed
|
||||
- Fixed bootstrap conflicts
|
||||
|
||||
##[1.3.2] - 2018-10-09
|
||||
### Fixed
|
||||
- Fixed innoDB tables creation
|
||||
|
||||
##[1.3.1] - 2018-09-25
|
||||
### Added
|
||||
- More icons
|
||||
- Telegram bot
|
||||
- Change main button feature
|
||||
- Phone mask feature
|
||||
- Crisp integration
|
||||
- Tawk.to integration
|
||||
- Hashtags commands
|
||||
|
||||
##[1.3.0] - 2018-08-02
|
||||
### Added
|
||||
- Skype Web Control integration
|
||||
- Zendesk chat integration
|
||||
- VK community messages integration
|
||||
- Facebook customer chat integration
|
||||
- Prompt messages feature
|
||||
|
||||
##[1.2.0] - 2018-07-21
|
||||
### Added
|
||||
- Menu size
|
||||
- Main button size
|
||||
- Twilio integration
|
||||
|
||||
|
||||
##[1.0.0] - 2018-06-19
|
||||
- First released version
|
||||
@@ -0,0 +1,3 @@
|
||||
Version 1.0
|
||||
- First Release
|
||||
- A new version of Automatically add product to cart plug-in.
|
||||
@@ -0,0 +1,344 @@
|
||||
# Copyright (C) 2020 Barn2 Plugins
|
||||
# This file is distributed under the same license as the Block for Woo Product Table plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block for Woo Product Table 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/block-for-woo-product-table\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-05-21T12:32:42+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: block-for-woo-product-table\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Block for Woo Product Table"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://barn2.co.uk/wordpress-plugins/block-for-woo-product-table/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds an editor block to the WooCommerce Product Table plugin by Barn2, making it quick and easy to create product tables with the block editor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Barn2 Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://barn2.co.uk"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the plugin name
|
||||
#: src/class-block.php:120
|
||||
msgid "Warning! This block is an add-on for the %s plugin, which is not currently installed. Please install the plugin before continuing."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the plugin name
|
||||
#: src/class-block.php:121
|
||||
#: src/class-block.php:134
|
||||
#: assets/js/editor.js:41
|
||||
msgid "WooCommerce Product Table"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:133
|
||||
msgid "Warning! This block requires WooCommerce to function."
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:208
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:209
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:210
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:211
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:212
|
||||
msgid "Short Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:213
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:214
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:215
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:216
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:217
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:218
|
||||
msgid "Stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:219
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:220
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:221
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:222
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:223
|
||||
#: assets/js/settings-panel.js:50
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:225
|
||||
msgid "Product Attribute"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:228
|
||||
msgid "Custom Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:228
|
||||
msgid "Enter a customer meta key"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:229
|
||||
msgid "Custom Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:229
|
||||
msgid "Enter a taxonomy name"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:143
|
||||
msgid "PHP must be running on version 5.6 or above to use this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:147
|
||||
msgid "This plugin requires WordPress 5.3 or above"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:151
|
||||
msgid "This plugin requires WooCommerce to be active"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:159
|
||||
msgid "The \"Block for WooCommerce Product Table\" plugin is active but not functioning!"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:31
|
||||
msgid "Display a searchable table listing any or all of your products."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:36
|
||||
msgid "Warning! This block is an add-on for the WooCommerce Product Table plugin, which is not currently installed. Please install the plugin before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:148
|
||||
msgid "Product Table"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:159
|
||||
msgid "Lists products in a table view using the WooCommerce Product Table plugin. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:163
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:198
|
||||
msgid "You can configure additional settings in the 'Block' tab in the sidebar."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:95
|
||||
msgid "Select products"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:221
|
||||
msgid "Selections"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:224
|
||||
#: assets/js/table-columns.js:357
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:458
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:477
|
||||
#: assets/js/table-columns.js:307
|
||||
msgid "(Using global options)"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:510
|
||||
msgid "Products must match all values"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:559
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:571
|
||||
#: assets/js/table-columns.js:235
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:581
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:41
|
||||
msgid "Add to Cart Column Settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:46
|
||||
msgid "Add to Cart Button"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:49
|
||||
#: assets/js/settings-panel.js:73
|
||||
#: assets/js/settings-panel.js:88
|
||||
#: assets/js/settings-panel.js:118
|
||||
msgid "(Use global option)"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:51
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:52
|
||||
msgid "Button and Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:58
|
||||
msgid "How 'Add to Cart' buttons are displayed in the table. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:62
|
||||
#: assets/js/settings-panel.js:101
|
||||
#: assets/js/settings-panel.js:134
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:70
|
||||
msgid "Quantities"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:74
|
||||
msgid "Show in add to cart column"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:75
|
||||
msgid "Do not show quantity selectors"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:85
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:89
|
||||
msgid "Link to product page"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:90
|
||||
msgid "Dropdowns in add to cart column"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:91
|
||||
msgid "Separate rows in table"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:97
|
||||
msgid "How to display options for variable products. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:110
|
||||
msgid "Table Controls"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:115
|
||||
msgid "Product Filters"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:119
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:120
|
||||
msgid "Show based on columns in table"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:121
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:130
|
||||
msgid "Dropdown lists to filter the table by category, tag, attribute, or custom taxonomy. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:149
|
||||
msgid "Custom Product Filters"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:162
|
||||
msgid "Additional Options"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:168
|
||||
msgid "You can configure additional options globally on the "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:172
|
||||
msgid "WooCommerce Product Table settings page"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:174
|
||||
msgid ", or by adding them below with one option per line (e.g. sort_by=\"name\"). "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:178
|
||||
msgid "See full list of options."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:185
|
||||
msgid "Additional Shortcode Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/table-columns.js:32
|
||||
msgid "Add column"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/table-columns.js:53
|
||||
msgid "Select global attribute"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/table-columns.js:294
|
||||
msgid "Table Columns"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,141 @@
|
||||
# Copyright (C) 2020 Marian Kanev
|
||||
# This file is distributed under the same license as the TaxiBooking Light plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TaxiBooking Light 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tblight\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-03-31 19:53+0600\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: tblight\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TaxiBooking Light"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://kanev.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Taxi Booking Light for Wordpress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Marian Kanev"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:11
|
||||
msgid "BOOKING_FORM_NEW_ORDER_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:19
|
||||
msgid "BOOKING_FORM_FIRST_STEP_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:25 views/tblight/default_step2.php:40
|
||||
msgid "BOOKING_FORM_SECOND_STEP_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:31
|
||||
msgid "BOOKING_FORM_THIRD_STEP_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:7
|
||||
msgid "BOOKING_FORM_SELECT_DATE_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:25
|
||||
msgid "HRS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:48
|
||||
msgid "MINS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:77
|
||||
msgid "TAXI_FROM"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:83 views/tblight/default_step1.php:97
|
||||
msgid "ENTER_ADDRESS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:91
|
||||
msgid "TAXI_TO"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:104
|
||||
msgid "VIEW_MAP_BTN_LBL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:112
|
||||
msgid "PASSENGER_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:127
|
||||
msgid "SUITCASE_NO"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:140
|
||||
msgid "BOOKING_FORM_RIDING_CHILD_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:147
|
||||
msgid "BOOKING_FORM_ADDITIONAL_SEATS_HEADER"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:149
|
||||
msgid "BOOSTER_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:150
|
||||
msgid "CHILD_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:151
|
||||
msgid "INFANT_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:166 views/tblight/default_step1.php:196
|
||||
msgid "SEE_PRICE"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step2.php:47 views/tblight/default_step2.php:49
|
||||
msgid "CARS_TABLE_LIST_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step2.php:51 views/tblight/default_step2.php:53
|
||||
msgid "CARS_TABLE_GRID_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step2.php:217 views/tblight/default_step3.php:176
|
||||
msgid "BACK_TO_PREVIOUS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:8
|
||||
msgid "BOOKING_FORM_PASSENGER_INFORMATION_HEADER"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:10
|
||||
msgid "NAME"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:16
|
||||
msgid "EMAIL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:22
|
||||
msgid "PHONE"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:52
|
||||
msgid "ONEPAGE_BOOKING_FOURTH_STEP_HEADER"
|
||||
msgstr ""
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/capture-and-convert/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/capture-and-convert/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
## 1.4.2
|
||||
|
||||
- Added Changelog
|
||||
- Fixed bug with widgets
|
||||
- Fixed bug with Twitter auth token
|
||||
503
spec/fixtures/dynamic_finders/plugin_version/card-oracle/translation_file/languages/card-oracle.pot
vendored
Normal file
503
spec/fixtures/dynamic_finders/plugin_version/card-oracle/translation_file/languages/card-oracle.pot
vendored
Normal file
@@ -0,0 +1,503 @@
|
||||
# Copyright (C) 2020 Christopher Graham
|
||||
# This file is distributed under the same license as the Card Oracle plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Card Oracle 0.5.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/card-oracle\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-05-01T12:01:11+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: card-oracle\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-card-oracle-admin.php:67
|
||||
#: admin/class-card-oracle-admin.php:578
|
||||
#: admin/partials/card-oracle-admin-display.php:19
|
||||
msgid "Card Oracle"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://chillichalli.com/card-oracle"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin lets you create tarot and oracle readings using your own cards, spreads and interpretations."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Christopher Graham"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://cdgraham.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:66
|
||||
msgid "Card Oracle Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/class-card-oracle-admin.php:156
|
||||
#: admin/class-card-oracle-admin.php:160
|
||||
#: admin/class-card-oracle-admin.php:164
|
||||
#: admin/class-card-oracle-admin.php:168
|
||||
msgid "%d Total"
|
||||
msgid_plural "%d Total"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:193
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:195
|
||||
msgid "Email Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:230
|
||||
#: admin/class-card-oracle-admin.php:1178
|
||||
msgid "Multiple Positions for a Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:235
|
||||
msgid "Enabling this will allow you to select multiple Positions for a Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:239
|
||||
msgid "Allow users to send reading to an email address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:247
|
||||
msgid "From email address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:252
|
||||
msgid "The From email address used when the user sends the reading."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:253
|
||||
msgid "If blank this defaults to the Admin email address."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:257
|
||||
msgid "From email name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:262
|
||||
msgid "The Name displayed as the From email address."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:263
|
||||
msgid "If blank this defaults to the site title."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:267
|
||||
#: admin/class-card-oracle-admin.php:277
|
||||
msgid "Text to display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:272
|
||||
msgid "Text to display on the email form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:273
|
||||
msgid "If blank this defaults \"Email this Reading to:\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:282
|
||||
msgid "Text to display after the user submits the email form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:283
|
||||
msgid "If blank this defaults \"Your email has been sent. Please make sure to check your spam folder.\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:500
|
||||
#: admin/class-card-oracle-admin.php:514
|
||||
#: admin/class-card-oracle-admin.php:529
|
||||
#: admin/class-card-oracle-admin.php:544
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:580
|
||||
msgid "Card Oracle Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:580
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:582
|
||||
msgid "Card Oracle Readings Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:582
|
||||
#: admin/partials/card-oracle-admin-display.php:39
|
||||
msgid "Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:584
|
||||
msgid "Card Oracle positions Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:584
|
||||
#: admin/class-card-oracle-admin.php:1384
|
||||
#: admin/partials/card-oracle-admin-display.php:50
|
||||
msgid "Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:586
|
||||
msgid "Card Oracle cards Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:586
|
||||
#: admin/class-card-oracle-admin.php:833
|
||||
#: admin/partials/card-oracle-admin-display.php:61
|
||||
msgid "Cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:588
|
||||
msgid "Card Oracle Descriptions Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:588
|
||||
#: admin/partials/card-oracle-admin-display.php:73
|
||||
msgid "Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:604
|
||||
msgid "Front of Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:609
|
||||
msgid "Back of Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:614
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:773
|
||||
msgid "Sorry, the maximum number of Readings has been reached."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:782
|
||||
msgid "Sorry, the maxiumum number of Positions has been reached."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:791
|
||||
msgid "Sorry, the maxiumum number of Cards has been reached."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:807
|
||||
msgid "Please consider upgrading to our premium version."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:810
|
||||
msgid "You can purchase it here at "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:812
|
||||
msgid "Maximum reached"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:834
|
||||
#: admin/class-card-oracle-admin.php:1047
|
||||
#: admin/class-card-oracle-admin.php:1363
|
||||
msgid "Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:835
|
||||
#: admin/class-card-oracle-admin.php:836
|
||||
msgid "Add New Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:837
|
||||
msgid "Edit Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:838
|
||||
msgid "New Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:839
|
||||
msgid "All Cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:840
|
||||
msgid "View Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:841
|
||||
msgid "Search Cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:842
|
||||
msgid "Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:843
|
||||
msgid "Add Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:867
|
||||
msgid "Card Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:868
|
||||
msgid "Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:869
|
||||
#: admin/class-card-oracle-admin.php:870
|
||||
msgid "Add New Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:871
|
||||
msgid "Edit Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:872
|
||||
msgid "New Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:873
|
||||
msgid "All Card Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:874
|
||||
msgid "View Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:875
|
||||
msgid "Search Card Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:876
|
||||
msgid "Card Description Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:877
|
||||
msgid "Add Card Description Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:901
|
||||
msgid "Card Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:902
|
||||
#: admin/class-card-oracle-admin.php:1010
|
||||
#: admin/class-card-oracle-admin.php:1108
|
||||
#: admin/class-card-oracle-admin.php:1401
|
||||
msgid "Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:903
|
||||
#: admin/class-card-oracle-admin.php:904
|
||||
msgid "Add New Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:905
|
||||
msgid "Edit Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:906
|
||||
msgid "New Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:907
|
||||
msgid "All Card Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:908
|
||||
msgid "View Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:909
|
||||
msgid "Search Card Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:910
|
||||
msgid "Card Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:911
|
||||
msgid "Add Card Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:935
|
||||
msgid "Card Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:936
|
||||
msgid "Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:937
|
||||
#: admin/class-card-oracle-admin.php:938
|
||||
msgid "Add New Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:939
|
||||
msgid "Edit Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:940
|
||||
msgid "New Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:941
|
||||
msgid "All Card Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:942
|
||||
msgid "View Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:943
|
||||
msgid "Search Card Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:944
|
||||
msgid "Card Position Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:945
|
||||
msgid "Add Card Position Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:976
|
||||
msgid "Allow multiple Positions for a Card Description."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1051
|
||||
#: admin/class-card-oracle-admin.php:1085
|
||||
msgid "(no card)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1059
|
||||
msgid "Description Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1126
|
||||
msgid "Card Order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1186
|
||||
msgid "Display Question Input Box"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1192
|
||||
msgid "Enabling this will display an input field to the users to enter a question."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1195
|
||||
msgid "Text for question input box"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1200
|
||||
msgid "Avoid using apostrophes in the text if you plan on allowing users to email the readings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1204
|
||||
msgid "Footer to be displayed on daily and random cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1345
|
||||
msgid "Associated Reading(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1346
|
||||
msgid "Number of Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1347
|
||||
#: admin/class-card-oracle-admin.php:1367
|
||||
#: admin/class-card-oracle-admin.php:1385
|
||||
#: admin/class-card-oracle-admin.php:1403
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1365
|
||||
#: admin/class-card-oracle-admin.php:1402
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1366
|
||||
msgid "Position Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1383
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:84
|
||||
msgid "Reading Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:88
|
||||
msgid "Reading Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:89
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/partials/card-oracle-admin-display.php:93
|
||||
msgid "%d position"
|
||||
msgid_plural "%d positions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/partials/card-oracle-admin-display.php:96
|
||||
msgid "%d card"
|
||||
msgid_plural "%d cards"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/partials/card-oracle-admin-display.php:99
|
||||
msgid "%d description"
|
||||
msgid_plural "%d descriptions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:125
|
||||
#: admin/partials/card-oracle-admin-display.php:135
|
||||
#: admin/partials/card-oracle-admin-display.php:145
|
||||
msgid "Click to copy shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:130
|
||||
msgid "Daily Card Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:140
|
||||
msgid "Random Card Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-card-oracle-public.php:145
|
||||
msgid "Your Reading"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-card-oracle-public.php:165
|
||||
msgid "Your email has been sent. Please make sure to check your spam folder."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: public/class-card-oracle-public.php:324
|
||||
msgid "Next select %d card."
|
||||
msgid_plural "Next select %d cards."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: public/class-card-oracle-public.php:350
|
||||
msgid "Email this Reading to:"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,66 @@
|
||||
# Copyright (C) 2020 Solice GmbH
|
||||
# This file is distributed under the same license as the Conformis Cookie Banner plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Conformis Cookie Banner 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/conformis\n"
|
||||
"POT-Creation-Date: 2020-04-23T08:20:03+00:00\n"
|
||||
"PO-Revision-Date: 2020-04-23 10:22+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: conformis\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: views/settings.php:34
|
||||
msgid "Conformis Cookie Banner"
|
||||
msgstr "Conformis Cookie Banner"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple customisable GDPR Banner"
|
||||
msgstr "A simple customisable GDPR Banner"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Solice GmbH"
|
||||
msgstr "Solice GmbH"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.conformis.io/"
|
||||
msgstr "https://www.conformis.io/"
|
||||
|
||||
#: views/settings.php:54
|
||||
msgid "Save Settings"
|
||||
msgstr "Save Settings"
|
||||
|
||||
#: views/settings.php:73
|
||||
msgid "Banner Position"
|
||||
msgstr "Banner Position"
|
||||
|
||||
#: views/settings.php:81
|
||||
msgid "Top"
|
||||
msgstr "Top"
|
||||
|
||||
#: views/settings.php:82
|
||||
msgid "Center"
|
||||
msgstr "Center"
|
||||
|
||||
#: views/settings.php:83
|
||||
msgid "Bottom"
|
||||
msgstr "Bottom"
|
||||
|
||||
#: views/settings.php:90
|
||||
msgid "Banner Message"
|
||||
msgstr "Banner Message"
|
||||
|
||||
#: views/settings.php:102
|
||||
msgid "Confirm Button Text"
|
||||
msgstr "Confirm Button Text"
|
||||
|
||||
#: views/settings.php:197
|
||||
msgid "Settings"
|
||||
msgstr "Settings"
|
||||
34
spec/fixtures/dynamic_finders/plugin_version/cora-lite/composer_file/package.json
vendored
Normal file
34
spec/fixtures/dynamic_finders/plugin_version/cora-lite/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "cora",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "gulp"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/omarbadran/cora.git"
|
||||
},
|
||||
"author": "Omar Badran",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/omarbadran/cora/issues"
|
||||
},
|
||||
"homepage": "https://github.com/omarbadran/cora#readme",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.4",
|
||||
"@babel/preset-env": "^7.8.4",
|
||||
"autoprefixer": "^9.7.4",
|
||||
"cssnano": "^4.1.10",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-postcss": "^8.0.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-sourcemaps": "^2.6.5",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"node-sass": "^4.13.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,369 @@
|
||||
# Copyright (C) 2020 Joommasters
|
||||
# This file is distributed under the same license as the JMS Covid 19 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JMS Covid 19 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jms-covid-19\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-03T09:35:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: jms-covid-19\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/widgets/jms_covid.php:32
|
||||
#: front/widget.php:14
|
||||
msgid "JMS Covid 19"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://joommasters.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "COVID-19 Coronavirus."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Joommasters"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:19
|
||||
msgid "JMS COVID-19"
|
||||
msgstr ""
|
||||
|
||||
#: admin/elementor.php:21
|
||||
msgid "Jms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:24
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:80
|
||||
#: admin/widgets/jms_covid.php:52
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:81
|
||||
#: admin/widgets/jms_covid.php:63
|
||||
msgid "Style 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:82
|
||||
#: admin/widgets/jms_covid.php:64
|
||||
msgid "Style 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:83
|
||||
#: admin/widgets/jms_covid.php:65
|
||||
msgid "Style 3"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:84
|
||||
#: admin/widgets/jms_covid.php:66
|
||||
msgid "Style 4"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:85
|
||||
#: admin/widgets/jms_covid.php:67
|
||||
msgid "Style 5"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:86
|
||||
#: admin/widgets/jms_covid.php:68
|
||||
msgid "Style 6"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:92
|
||||
msgid "Data Sources"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:115
|
||||
#: admin/params.php:166
|
||||
#: admin/params.php:281
|
||||
#: admin/params.php:432
|
||||
#: admin/params.php:498
|
||||
msgid "Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:121
|
||||
#: admin/params.php:172
|
||||
#: admin/params.php:287
|
||||
#: admin/params.php:438
|
||||
#: admin/params.php:504
|
||||
msgid "Title Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:127
|
||||
#: admin/params.php:299
|
||||
#: admin/params.php:362
|
||||
msgid "Text Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:133
|
||||
#: admin/params.php:202
|
||||
#: admin/params.php:305
|
||||
#: admin/params.php:465
|
||||
msgid "C(confirm) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:139
|
||||
#: admin/params.php:214
|
||||
#: admin/params.php:317
|
||||
#: admin/params.php:471
|
||||
msgid "D(deaths) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:145
|
||||
#: admin/params.php:220
|
||||
#: admin/params.php:323
|
||||
#: admin/params.php:477
|
||||
msgid "R(recovered) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:178
|
||||
msgid "Global Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:184
|
||||
msgid "Global Title Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:190
|
||||
msgid "SubTitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:196
|
||||
msgid "SubTitle Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:208
|
||||
#: admin/params.php:311
|
||||
msgid "A(active) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:227
|
||||
msgid "Tab Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:233
|
||||
#: admin/params.php:330
|
||||
msgid "Tab Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:239
|
||||
msgid "Tab Text Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:245
|
||||
msgid "Tab Active Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:251
|
||||
#: admin/params.php:336
|
||||
msgid "Tab Actice Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:272
|
||||
msgid "Show title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:293
|
||||
#: admin/params.php:356
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:369
|
||||
msgid "Column Heading Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:375
|
||||
msgid "Column Heading Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:382
|
||||
msgid "Pagination Active Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:388
|
||||
msgid "Pagination Active Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:394
|
||||
msgid "Pagination Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:401
|
||||
msgid "Datatables Show"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:423
|
||||
msgid "Show Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:444
|
||||
msgid "Show Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:453
|
||||
msgid "Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:459
|
||||
msgid "Subtitle Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:510
|
||||
msgid "Color for background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:516
|
||||
msgid "Color for country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:522
|
||||
msgid "Border Color for country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:528
|
||||
msgid "Border Color on hover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:534
|
||||
msgid "Color type for country have confirm case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:538
|
||||
msgid "Opacity"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:542
|
||||
msgid "Number of case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:547
|
||||
msgid "Color for country have confirm case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:553
|
||||
msgid "Color for country by number of confirm case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:584
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:60
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:77
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:90
|
||||
msgid "Countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:106
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:118
|
||||
msgid "SubTitle"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:52
|
||||
#: front/front.php:443
|
||||
#: front/front.php:936
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:53
|
||||
#: front/front.php:444
|
||||
#: front/front.php:922
|
||||
#: front/front.php:940
|
||||
msgid "Deaths"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:54
|
||||
#: front/front.php:921
|
||||
#: front/front.php:944
|
||||
msgid "Recovered"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:320
|
||||
#: front/front.php:364
|
||||
#: front/front.php:409
|
||||
#: front/front.php:461
|
||||
msgid "Confirmed Cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:324
|
||||
#: front/front.php:376
|
||||
#: front/front.php:421
|
||||
msgid "Active cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:328
|
||||
#: front/front.php:379
|
||||
#: front/front.php:424
|
||||
#: front/front.php:465
|
||||
msgid "Recovered cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:332
|
||||
#: front/front.php:382
|
||||
#: front/front.php:427
|
||||
#: front/front.php:469
|
||||
msgid "Deaths cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:442
|
||||
msgid "Country, Other"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:483
|
||||
#: front/front.php:962
|
||||
#: front/front.php:1010
|
||||
#: front/widget.php:65
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:915
|
||||
msgid "Zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:916
|
||||
msgid "Zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:920
|
||||
msgid "Cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:42
|
||||
msgid "Covid 19"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:52
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:55
|
||||
msgid "Style:"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:63
|
||||
msgid "Country:"
|
||||
msgstr ""
|
||||
|
||||
#: jms-covid-19.php:58
|
||||
msgid "Every 10 minutes"
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/cubicfusion-admin-enhancer/change_log/CHANGELOG.txt
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/cubicfusion-admin-enhancer/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
## Changelog
|
||||
|
||||
#### 0.2.1 - 26.05.2020
|
||||
Technical fix for dashboard widgets that use closures as a callback. This fix prevents the serialization of these callbacks. This is a PHP limitation that can be solved, but will wait and see how the demand for such a feature is.
|
||||
|
||||
#### 0.2 - 25.05.2020
|
||||
1. **Updated: Shortcodes** (0.2)
|
||||
Cleanup & Copy to Clipboard added.
|
||||
|
||||
2. **New: Dashboard Gutenberg / Dashboard Templates** (0.1)
|
||||
This Addon allows you to build a Dashboard with Gutenberg. You can create a new Dashboard under 'Dashboard Templates' and set a default template below.
|
||||
I will be extending this to allow different templates for different roles / groups. This release also includes a Gutenberg block for the shortcodes.
|
||||
|
||||
3. **New: Admin Toolbar** (0.1)
|
||||
This Addon allows you to tweak the admin toolbar and footer.
|
||||
|
||||
#### 0.1 - 08.05.2020
|
||||
1. **Initial Release**
|
||||
Admin Enhancer is a work in progress.I am using this WordPress plugin to centralise things I love & need, when sending out a finished website or project.
|
||||
These tools are completely free and will always stay free.
|
||||
|
||||
2. **Shortcode Addon (0.1)**
|
||||
All dashboard widgets are converted to simple shortcodes. You can use those shortcodes within Elementor Pro or any other page builder that allows you to create custom admin dashboards. Makes it easy to build white-label dashboards, while still reusing all those nice dashboard widgets.
|
||||
@@ -0,0 +1,364 @@
|
||||
# Copyright (C) 2020 thingsym
|
||||
# This file is distributed under the same license as the Custom Post Type Widget Blocks plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Post Type Widget Blocks 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-post-type-widget-blocks\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-02T09:35:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: custom-post-type-widget-blocks\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/class-custom-post-type-widget-blocks.php:80
|
||||
msgid "Custom Post Type Widget Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/thingsym/custom-post-type-widget-blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Custom Post Type Widgets for the Block Editor (Gutenberg)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "thingsym"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.thingslabo.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:66
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:91
|
||||
msgid "Select Year"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:94
|
||||
msgid "Select Month"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:97
|
||||
msgid "Select Day"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:100
|
||||
msgid "Select Week"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:103
|
||||
msgid "Select Post"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:149
|
||||
msgid "No archives to show."
|
||||
msgstr ""
|
||||
|
||||
#. translators: label: 1: date format
|
||||
#: src/blocks/calendar/class-custom-post-type-widget-blocks-calendar.php:258
|
||||
msgid "Posts published on %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/class-custom-post-type-widget-blocks-categories.php:87
|
||||
msgid "Select Category"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/class-custom-post-type-widget-blocks-latest-comments.php:66
|
||||
#: src/blocks/latest-posts/class-custom-post-type-widget-blocks-latest-posts.php:167
|
||||
#: src/blocks/latest-posts/edit.js:469
|
||||
msgid "(no title)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: author name (inside <a> or <span> tag, based on if they have a URL), 2: post title related to this comment
|
||||
#: src/blocks/latest-comments/class-custom-post-type-widget-blocks-latest-comments.php:128
|
||||
msgid "%1$s on %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/class-custom-post-type-widget-blocks-latest-comments.php:176
|
||||
msgid "No comments to show."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/class-custom-post-type-widget-blocks-latest-posts.php:197
|
||||
#: src/blocks/latest-posts/edit.js:499
|
||||
msgid "Read more"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/class-custom-post-type-widget-blocks-search.php:35
|
||||
#: src/blocks/search/class-custom-post-type-widget-blocks-search.php:43
|
||||
#: src/blocks/search/class-custom-post-type-widget-blocks-search.php:68
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: taxonomy name
|
||||
#: src/blocks/tag-cloud/class-custom-post-type-widget-blocks-tag-cloud.php:65
|
||||
msgid "Your site doesn’t have any %s, so there’s nothing to display here at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:32
|
||||
#: src/blocks/calendar/edit.js:37
|
||||
#: src/blocks/categories/edit.js:38
|
||||
#: src/blocks/tag-cloud/edit.js:37
|
||||
msgid "- Select -"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:66
|
||||
msgid "Archives settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:72
|
||||
#: src/blocks/calendar/edit.js:90
|
||||
#: src/blocks/latest-comments/edit.js:109
|
||||
#: src/blocks/latest-posts/edit.js:305
|
||||
#: src/blocks/search/edit.js:66
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:81
|
||||
#: src/blocks/categories/edit.js:219
|
||||
msgid "Display as Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:93
|
||||
#: src/blocks/categories/edit.js:235
|
||||
msgid "Show Post Counts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/index.js:15
|
||||
msgid "Archives (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/index.js:16
|
||||
msgid "Display a monthly archive of your posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/edit.js:84
|
||||
msgid "Calendar settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:15
|
||||
msgid "Calendar (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:16
|
||||
msgid "A calendar of your site’s posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:23
|
||||
msgid "posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:24
|
||||
msgid "archive"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:99
|
||||
msgid "(Untitled)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:162
|
||||
#: src/blocks/categories/edit.js:252
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:207
|
||||
msgid "Categories settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:213
|
||||
#: src/blocks/tag-cloud/edit.js:79
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:227
|
||||
msgid "Show Hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/index.js:15
|
||||
msgid "Categories (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/index.js:19
|
||||
msgid "Display a list of all categories."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:56
|
||||
#: src/blocks/search/edit.js:27
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:103
|
||||
msgid "Latest comments settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:118
|
||||
msgid "Display Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:126
|
||||
msgid "Display Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:134
|
||||
msgid "Display Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:142
|
||||
msgid "Number of Comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/index.js:15
|
||||
msgid "Latest Comments (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/index.js:19
|
||||
msgid "Display a list of your most recent comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/index.js:25
|
||||
msgid "recent comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:151
|
||||
msgid "Post content settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:157
|
||||
msgid "Post Content"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:168
|
||||
msgid "Show:"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:175
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:182
|
||||
msgid "Full Post"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:199
|
||||
msgid "Max number of words in excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:214
|
||||
msgid "Post meta settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:220
|
||||
msgid "Display post date"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:232
|
||||
msgid "Featured Image Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:238
|
||||
msgid "Display featured image"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:278
|
||||
msgid "Image Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:299
|
||||
msgid "Sorting and filtering"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:338
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:369
|
||||
msgid "Latest Posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:377
|
||||
msgid "No posts found."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:396
|
||||
msgid "List view"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:402
|
||||
msgid "Grid view"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/index.js:15
|
||||
msgid "Latest Posts (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/index.js:19
|
||||
msgid "Display a list of your most recent posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/index.js:25
|
||||
msgid "recent posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:60
|
||||
msgid "Search settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:84
|
||||
msgid "Label text"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:88
|
||||
msgid "Add label…"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:98
|
||||
msgid "Optional placeholder text"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:108
|
||||
msgid "Optional placeholder…"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:120
|
||||
msgid "Button text"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:124
|
||||
msgid "Add button text…"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/index.js:15
|
||||
msgid "Search (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/index.js:16
|
||||
msgid "Help visitors find your content."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/index.js:22
|
||||
msgid "find"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/edit.js:73
|
||||
msgid "Tag Cloud settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/edit.js:85
|
||||
msgid "Show post counts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/index.js:15
|
||||
msgid "Tag Cloud (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/index.js:16
|
||||
msgid "A cloud of your most used tags."
|
||||
msgstr ""
|
||||
700
spec/fixtures/dynamic_finders/plugin_version/customize-woo/translation_file/i18n/customize-woo.pot
vendored
Normal file
700
spec/fixtures/dynamic_finders/plugin_version/customize-woo/translation_file/i18n/customize-woo.pot
vendored
Normal file
@@ -0,0 +1,700 @@
|
||||
# Copyright (C) 2020 akshitsethi
|
||||
# This file is distributed under the same license as the Customize Woo plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Customize Woo 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/src\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-16T20:55:14+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: customize-woo\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/class-config.php:45
|
||||
msgid "Customize Woo"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin to help customise WooCommerce with the help of actions and filters."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "akshitsethi"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://akshitsethi.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/header.php:17
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/header.php:17
|
||||
msgid "Akshit Sethi"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/header.php:21
|
||||
#: inc/class-admin.php:68
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:14
|
||||
msgid "ABOUT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:15
|
||||
msgid "Hola! I'm Akshit Sethi, Designer + Developer by profession & Entrepreneur by passion. In love with WWW and Spanish. Travel is life. When I am not coding, I am reading anything worth reading. I create premium WordPress themes & plugins."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:18
|
||||
msgid "Show me some love and connect with me via social channels."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:20
|
||||
#: inc/class-admin.php:98
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:24
|
||||
#: inc/class-admin.php:97
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:15
|
||||
msgid "AUTHENTICATION"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:16
|
||||
msgid "Configure options related to WooCommerce authentication."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:21
|
||||
msgid "Lost Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:22
|
||||
msgid "Lost password text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:24
|
||||
msgid "Changes text shown on the lost password screen."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:28
|
||||
msgid "Lost Password Confirmation Message"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:29
|
||||
msgid "Lost password confirmation message"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:31
|
||||
msgid "Changes text for lost password confirmation message."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:37
|
||||
msgid "Reset Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:38
|
||||
msgid "Reset password text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:40
|
||||
msgid "Changes text shown on the reset password screen."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:15
|
||||
msgid "CART"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:16
|
||||
msgid "Configure options for the WooCommerce Cart page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:21
|
||||
msgid "No Shipping Available Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:22
|
||||
msgid "No shipping available text on cart page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:24
|
||||
msgid "Changes the no shipping available text on cart."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:28
|
||||
msgid "Shipping Estimate Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:29
|
||||
msgid "Shipping estimate text on cart page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:31
|
||||
msgid "Changes the shipping estimate text on cart."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:15
|
||||
msgid "CHECKOUT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:16
|
||||
msgid "Configure options for the WooCommerce Checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:21
|
||||
msgid "Must be Logged-in Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:22
|
||||
msgid "Must be logged-in message on checkout page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:24
|
||||
msgid "Changes the message displayed when a customer must be logged in to checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:28
|
||||
msgid "Login Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:29
|
||||
msgid "Login message text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:31
|
||||
msgid "Changes the message displayed if customers can login at checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:37
|
||||
msgid "Create Account Checkbox Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:39
|
||||
msgid "Checked"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:40
|
||||
msgid "Unchecked"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:43
|
||||
msgid "Control the default state for the Create Account checkbox."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:47
|
||||
msgid "Order Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:48
|
||||
msgid "Place order button text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:50
|
||||
msgid "Changes the \"Place Order\" button text on checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:56
|
||||
msgid "Show Checkout Terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:59
|
||||
msgid "Show or hide Terms & Conditions checkbox on checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:63
|
||||
msgid "Show Order Notes Field"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:66
|
||||
msgid "Show or hide Order notes field on checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:15
|
||||
msgid "MISC"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:16
|
||||
msgid "Configure other options for the WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:21
|
||||
msgid "Tax Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:22
|
||||
msgid "Taxes label text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:24
|
||||
msgid "Changes the Taxes label."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:28
|
||||
msgid "Including Tax Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:29
|
||||
msgid "Including taxes label text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:31
|
||||
msgid "Changes the including Taxes label."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:37
|
||||
msgid "Excluding Tax Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:38
|
||||
msgid "Excluding taxes label text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:40
|
||||
msgid "Changes the excluding Taxes label."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:44
|
||||
msgid "Order Received Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:45
|
||||
msgid "Order received thank you text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:47
|
||||
msgid "Changes the Order received text on thank you page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:15
|
||||
msgid "PRODUCT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:16
|
||||
msgid "Configure options for the WooCommerce Product page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:21
|
||||
msgid "Product Description Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:22
|
||||
msgid "Product description tab title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:24
|
||||
msgid "Changes the product description tab title."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:28
|
||||
msgid "Product Description Tab Heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:29
|
||||
msgid "Product description tab heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:31
|
||||
msgid "Changes the product description tab heading."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:37
|
||||
msgid "Reviews Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:38
|
||||
msgid "Reviews tab title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:40
|
||||
msgid "Changes the reviews tab title."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:44
|
||||
msgid "Reviews Tab Heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:45
|
||||
msgid "Unfortunately, WooCommerce does not provide a method to modify this."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:51
|
||||
msgid "Additional Information Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:52
|
||||
msgid "Additional information tab title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:54
|
||||
msgid "Changes the additional information tab title."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:58
|
||||
msgid "Additional Information Tab Heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:59
|
||||
msgid "Additional information tab heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:61
|
||||
msgid "Changes the additional information tab heading."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:67
|
||||
msgid "Add to Cart Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:68
|
||||
msgid "Add to Cart text for all product types"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:70
|
||||
msgid "Changes the Add to Cart button text on the single product page for all product types."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:74
|
||||
msgid "Out of Stock Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:75
|
||||
msgid "Out of Stock text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:77
|
||||
msgid "Changes text for the out of stock on product pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:83
|
||||
msgid "Backorder Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:84
|
||||
msgid "Backorder text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:86
|
||||
msgid "Changes text for the backorder on product pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:90
|
||||
#: inc/admin/views/settings-shop.php:60
|
||||
msgid "Sale Badge Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:91
|
||||
msgid "Sale badge text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:93
|
||||
msgid "Changes text for the sale flash on product pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:15
|
||||
msgid "SHOP"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:16
|
||||
msgid "Configure options for the WooCommerce Shop page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:21
|
||||
msgid "Simple Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:22
|
||||
msgid "Add to Cart button text for simple products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:24
|
||||
msgid "Changes the add to cart button text for simple products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:28
|
||||
msgid "Variable Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:29
|
||||
msgid "Add to Cart button text for variable products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:31
|
||||
msgid "Changes the add to cart button text for variable products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:37
|
||||
msgid "Grouped Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:38
|
||||
msgid "Add to Cart button text for grouped products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:40
|
||||
msgid "Changes the add to cart button text for grouped products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:44
|
||||
msgid "Out of Stock Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:45
|
||||
msgid "Add to Cart button text for out of stock products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:47
|
||||
msgid "Changes the add to cart button text for out of stock products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:53
|
||||
msgid "External Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:54
|
||||
msgid "Add to Cart button text for external products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:56
|
||||
msgid "Changes the add to cart button text for external products."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:61
|
||||
msgid "Add text for Sale badge"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:63
|
||||
msgid "Changes text for the sale flash on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:69
|
||||
msgid "Products Displayed Per Page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:81
|
||||
msgid "Changes the number of products displayed per page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:85
|
||||
msgid "Product Columns Displayed Per Page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:97
|
||||
msgid "Changes the number of product columns displayed per page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:103
|
||||
msgid "Product Thumbnail Columns Displayed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:115
|
||||
msgid "Changes the number of products thumbnail columns displayed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:15
|
||||
msgid "SUPPORT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:16
|
||||
msgid "Getting help is just a click away now. Report the issue you are facing with the plugin using the form below and we will get back to you at the email address provided."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:20
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:21
|
||||
msgid "Please provide your email address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:23
|
||||
msgid "You will receive support response at this email address."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:27
|
||||
msgid "Issue / Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:28
|
||||
#: inc/admin/views/settings-support.php:30
|
||||
msgid "Please explain the issue you are facing with the plugin. Provide as much detail as possible."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:17
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:22
|
||||
msgid "Shop"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:23
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:24
|
||||
msgid "Cart"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:25
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:26
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:27
|
||||
msgid "Misc"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:28
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:29
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:44
|
||||
#: inc/class-admin.php:45
|
||||
msgid "Customizer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:69
|
||||
msgid "Ask for Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:70
|
||||
msgid "Please save your changes first."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:71
|
||||
msgid "Processing.."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:123
|
||||
msgid "There was an error processing the request. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:128
|
||||
msgid "Request does not seem to be a valid one. Please try again by refreshing the page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:198
|
||||
msgid "Options have been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:219
|
||||
msgid "Please fill in both the fields to create your support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:235
|
||||
msgid "I have received your support ticket and will get back to you shortly!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:241
|
||||
msgid "There was an error creating the support ticket. You can try again later or send me an email directly at akshitsethi@gmail.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:57
|
||||
#: inc/class-config.php:73
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:58
|
||||
msgid "Select Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:59
|
||||
msgid "View Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:60
|
||||
msgid "Out of Stock"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:61
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:62
|
||||
#: inc/class-config.php:76
|
||||
msgid "Sale!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:68
|
||||
#: inc/class-config.php:69
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:70
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:71
|
||||
#: inc/class-config.php:72
|
||||
msgid "Additional Information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:74
|
||||
msgid "Out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:75
|
||||
msgid "Available on backorder"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:79
|
||||
msgid "There are no shipping options available. Please ensure that your address has been entered correctly, or contact us if you need any help."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:80
|
||||
msgid "Shipping options will be updated during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:83
|
||||
msgid "You must be logged in to checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:84
|
||||
msgid "Returning customer?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:86
|
||||
msgid "Place order"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:96
|
||||
msgid "Tax for USA, VAT for European countries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:97
|
||||
msgid "Inc. tax for USA, Inc. VAT for European countries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:98
|
||||
msgid "Exc. tax for USA, Exc. VAT for European countries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:99
|
||||
msgid "Thank you. Your order has been received."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder: %s - sale percentage
|
||||
#: inc/class-front.php:237
|
||||
msgid "up to %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - <strong>, %2$s - </strong>, %3$s - <a>, %4$s - version number, %5$s - </a>
|
||||
#: inc/class-woocheck.php:61
|
||||
msgid "%1$sWooCommerce Customizer won't work properly%2$s as it requires WooCommerce. Please %3$sactivate%4$s WooCommerce version %5$s or newer."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,48 @@
|
||||
# Copyright (C) 2020 Jake Spurlock
|
||||
# This file is distributed under the same license as the Disable Automatic Theme & Plugin Updates package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Disable Automatic Theme & Plugin Updates 0.1.4\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/disable-plugin-theme-auto-updates\n"
|
||||
"POT-Creation-Date: 2020-06-02 23:45:13+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"
|
||||
"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"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Disable Automatic Theme & Plugin Updates"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/whyisjake/disable-automatic-updates"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Simply disable automatic theme and plugin updates that are part of "
|
||||
"WordPress 5.5."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Jake Spurlock"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://jakespurlock.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,151 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Shopping discounts v1.0\n"
|
||||
"POT-Creation-Date: 2020-06-01 21:50+0200\n"
|
||||
"PO-Revision-Date: 2020-06-01 21:54+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: it_IT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: dn-shopping-discounts.php:37
|
||||
msgid "Percent"
|
||||
msgstr "Percentuale"
|
||||
|
||||
#: dn-shopping-discounts.php:38
|
||||
msgid "Fix"
|
||||
msgstr "Fisso"
|
||||
|
||||
#: dn-shopping-discounts.php:40
|
||||
msgid "Unknow"
|
||||
msgstr "Sconosciuto"
|
||||
|
||||
#: dn-shopping-discounts.php:55
|
||||
msgid ""
|
||||
"Discounts will be applied according to the <b>total expense</b> made by the "
|
||||
"user."
|
||||
msgstr ""
|
||||
"Gli sconti verranno applicati in base alla <b> spesa totale </b> effettuata "
|
||||
"dall'utente."
|
||||
|
||||
#: dn-shopping-discounts.php:56
|
||||
msgid ""
|
||||
"Only the first one published, which matchs the requirements, will be used, "
|
||||
"in ascending order based on the number entered in the \"order\" field"
|
||||
msgstr ""
|
||||
"Verrà utilizzato solo il primo pubblicato, che corrisponde ai requisiti, in "
|
||||
"ordine crescente in base al numero immesso nel campo \"ordine\""
|
||||
|
||||
#: dn-shopping-discounts.php:57
|
||||
msgid "Use the test page to verify that the discounts are working properly."
|
||||
msgstr ""
|
||||
"Utilizzare la pagina di Test per verificare che gli sconti funzionino "
|
||||
"correttamente."
|
||||
|
||||
#: dn-shopping-discounts.php:61
|
||||
msgid "Use the comma to indicate decimals, without point separator"
|
||||
msgstr ""
|
||||
"Utilizza la virgola per indicare i decimali, non utilizzare i punti per "
|
||||
"separare le centinaia"
|
||||
|
||||
#: dn-shopping-discounts.php:62
|
||||
msgid "Leave blank field \"To\" for set to not limits"
|
||||
msgstr "Lascia il campo \"A\" vuoto per impostare senza limiti"
|
||||
|
||||
#: dn-shopping-discounts.php:66
|
||||
msgid "For help or more informations contact "
|
||||
msgstr "Per aiuto o maggiori informazioni contattare"
|
||||
|
||||
#: dn-shopping-discounts.php:70
|
||||
msgid "Discount setting"
|
||||
msgstr "Impostazione sconto"
|
||||
|
||||
#: dn-shopping-discounts.php:71 dn-shopping-discounts.php:74
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
#: dn-shopping-discounts.php:74 dn-shopping-discounts.php:188
|
||||
#: dn-shopping-discounts.php:189 dn-shopping-discounts.php:190
|
||||
#: dn-shopping-discounts.php:191
|
||||
msgid "Shopping discounts"
|
||||
msgstr "Sconto spesa"
|
||||
|
||||
#: dn-shopping-discounts.php:74
|
||||
msgid "This page allows to test discounts rules"
|
||||
msgstr "Questa pagina permette di verificare le regole inserite"
|
||||
|
||||
#: dn-shopping-discounts.php:75
|
||||
msgid "Insert total cart value"
|
||||
msgstr "Inserisci totale spesa"
|
||||
|
||||
#: dn-shopping-discounts.php:75
|
||||
msgid "Start test"
|
||||
msgstr "Inizia test"
|
||||
|
||||
#: dn-shopping-discounts.php:78
|
||||
msgid "Results for"
|
||||
msgstr "Risultato per"
|
||||
|
||||
#: dn-shopping-discounts.php:80
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
#: dn-shopping-discounts.php:80
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#: dn-shopping-discounts.php:80 dn-shopping-discounts.php:95
|
||||
#: dn-shopping-discounts.php:164
|
||||
msgid "Discount"
|
||||
msgstr "Sconto"
|
||||
|
||||
#: dn-shopping-discounts.php:80
|
||||
msgid "New total"
|
||||
msgstr "Nuovo totale"
|
||||
|
||||
#: dn-shopping-discounts.php:86
|
||||
msgid "There are no applicable discounts for"
|
||||
msgstr "Non ci sono regole applicabili a"
|
||||
|
||||
#: dn-shopping-discounts.php:87
|
||||
msgid "Update results for"
|
||||
msgstr "Aggiorna risultati per"
|
||||
|
||||
#: dn-shopping-discounts.php:90
|
||||
msgid "Definition of the discount range"
|
||||
msgstr "Definizione del range di azione dello sconto"
|
||||
|
||||
#: dn-shopping-discounts.php:92 dn-shopping-discounts.php:165
|
||||
msgid "Order"
|
||||
msgstr "Ordinamento"
|
||||
|
||||
#: dn-shopping-discounts.php:93
|
||||
msgid "Apply from"
|
||||
msgstr "Applica da"
|
||||
|
||||
#: dn-shopping-discounts.php:94
|
||||
msgid "Apply to"
|
||||
msgstr "Applica fino a"
|
||||
|
||||
#: dn-shopping-discounts.php:162
|
||||
msgid "From"
|
||||
msgstr "Da"
|
||||
|
||||
#: dn-shopping-discounts.php:163
|
||||
msgid "To"
|
||||
msgstr "A"
|
||||
|
||||
#: dn-shopping-discounts.php:173
|
||||
msgid "No limits"
|
||||
msgstr "Senza limite"
|
||||
|
||||
#: dn-shopping-discounts.php:192
|
||||
msgid "Add discount"
|
||||
msgstr "Aggiungi sconto"
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/embed-mixcloud-advanced/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/embed-mixcloud-advanced/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "mixcloud-embed-advanced",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"author": "Evgeny Veliky",
|
||||
"license": "GPL-2.0",
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"Mixcloud",
|
||||
"Gutenberg"
|
||||
],
|
||||
"main": "dist/index.min.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build --config webpack.config.js",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start --config webpack.config.js",
|
||||
"build-css": "node-sass frontend/style.scss dist/style.min.css --output-style compressed"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/block-library": "^2.16.1",
|
||||
"@wordpress/components": "^9.4.1",
|
||||
"@wordpress/scripts": "^8.0.1",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"style-loader": "^1.2.1"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
138
spec/fixtures/dynamic_finders/plugin_version/exodox/translation_file/languages/exodox.pot
vendored
Normal file
138
spec/fixtures/dynamic_finders/plugin_version/exodox/translation_file/languages/exodox.pot
vendored
Normal file
@@ -0,0 +1,138 @@
|
||||
# Copyright (C) 2020 Vinnovera
|
||||
# This file is distributed under the same license as the Exodox plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Exodox 0.7.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\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-05-27T08:28:04+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: exodox\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: exodox.php:158
|
||||
msgid "Exodox"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://exodox.link/get-plugin/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Exodox content lock plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Vinnovera"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://vinnovera.se"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:130
|
||||
#: exodox.php:220
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:137
|
||||
msgid "Publisher ID"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:157
|
||||
msgid "Exodox - Lock content"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:559
|
||||
msgid "Read the whole article for only %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:565
|
||||
#: exodox.php:1189
|
||||
msgid "The article is locked with Exodox; but you, as administrator, can still read it."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:569
|
||||
msgid "The article is unlocked, available for %1$s more"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:572
|
||||
msgid "Locked content. You must allow cookies in order to be able to purchase this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:956
|
||||
#: exodox.php:991
|
||||
msgid "%s day"
|
||||
msgid_plural "%s days"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: exodox.php:964
|
||||
#: exodox.php:983
|
||||
msgid "%s hour"
|
||||
msgid_plural "%s hours"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: exodox.php:1090
|
||||
msgid "%1$sWhat is Exodox?%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1172
|
||||
msgid "Unlock"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1193
|
||||
msgid "The article is unlocked. Read the entire article for %s more"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1199
|
||||
msgid "You must allow cookies in order to be able to purchase this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1200
|
||||
#: exodox.php:1219
|
||||
#: exodox.php:1238
|
||||
#: exodox.php:1257
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1201
|
||||
#: exodox.php:1220
|
||||
#: exodox.php:1239
|
||||
#: exodox.php:1258
|
||||
msgid "%s access"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1203
|
||||
msgid "Read more here"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1218
|
||||
msgid "You need an Exodox account in order to be able to purchase this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1222
|
||||
msgid "Create account / log in"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1237
|
||||
msgid "Unfortunately your previous purchase has expired for this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1241
|
||||
msgid "Buy again"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1256
|
||||
msgid "Logged in with Exodox"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1294
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,32 @@
|
||||
# Copyright (C) 2020 Kartik Parmar
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Change Filter By Price Display for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-change-filter-by-price-display\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-18T21:56:22+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wc-change-filter-by-price-display\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Change Filter By Price Display for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.kartechify.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugins allows to change the display of Filter Products by Price widget on front end. You can set minimum & maximum price as well as the steps in price slider. Also, you can change the color of price slider and add more content before and after the widget display."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Kartik Parmar"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,787 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Stripe Bancontact Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2020-05-22 16:27+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Rutger De Wilde <rutger@bitsandarts.be>\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:155
|
||||
msgid "Manage Products"
|
||||
msgstr "Artikels Beheren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:158
|
||||
#: includes/pages/add_product.php:14
|
||||
msgid "Add Product"
|
||||
msgstr "Artikel Toevoegen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:161
|
||||
#: includes/pages/edit_coupon.php:12 includes/pages/edit_product.php:27
|
||||
msgid "Edit Product"
|
||||
msgstr "Artikel Bewerken"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:164
|
||||
#: includes/pages/settings_orders.php:8
|
||||
msgid "Manage Orders"
|
||||
msgstr "Orders Beheren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:167
|
||||
msgid "Manage Coupons"
|
||||
msgstr "Coupons Beheren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:170 includes/pages/add_coupon.php:7
|
||||
msgid "Add Coupon"
|
||||
msgstr "Coupon Toevoegen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:173
|
||||
msgid "Edit Coupon"
|
||||
msgstr "Coupon Bewerken"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:176
|
||||
#: includes/class-wp-stripe-bancontact.php:353
|
||||
#: includes/pages/settings_shipping.php:58
|
||||
msgid "Shipping"
|
||||
msgstr "Verzending"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:181
|
||||
msgid "Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:286
|
||||
msgid "The Five Minute Webshop plugin requires an SSL connection."
|
||||
msgstr "De Five Minute Webshop plugin vereist een SSL verbinding."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:292
|
||||
msgid ""
|
||||
"You need to connect to Stripe to use the Five Minute Webshop plugin. You can "
|
||||
"do this in the "
|
||||
msgstr ""
|
||||
"Je dient te verbinden met Stripe alvorens je de Five Minute Webshop plugin "
|
||||
"kan gebruiken. Je kan dit doen in de "
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:292
|
||||
msgid "settings"
|
||||
msgstr "instellingen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:319
|
||||
msgid "Something went wrong. Please contact site administrator."
|
||||
msgstr "Er is iets misgelopen, contacteer aub de site administrator."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:320
|
||||
msgid ""
|
||||
"Something went wrong checking your payment. Please check your email for "
|
||||
"order confirmation."
|
||||
msgstr ""
|
||||
"Er is iets misgelopen bij het controleren van de betaling. Gelieve jouw "
|
||||
"email te controleren voor de order bevestiging."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:321
|
||||
msgid "We're sorry but your payment was not successful. Please try again."
|
||||
msgstr ""
|
||||
"Het spijt ons maar de betaling is niet geslaagd. Probeer het alsjeblieft "
|
||||
"opnieuw."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:322
|
||||
msgid "Your order was canceled. "
|
||||
msgstr "Uw order werd geannuleerd. "
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:323
|
||||
msgid "Payment Successful!"
|
||||
msgstr "Betaling geslaagd!"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:324
|
||||
msgid "You are being redirected to the home page"
|
||||
msgstr "Je wordt nu doorverwezen naar de homepagina"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:325
|
||||
msgid "Rechecking Payment"
|
||||
msgstr "Betaling opnieuw controleren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:326
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:64
|
||||
#: includes/components/class-wp-sb-list-table-products.php:66
|
||||
#: includes/pages/edit_product.php:24 includes/pages/settings_shipping.php:34
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:327
|
||||
msgid "Are you sure you want to delete this product?"
|
||||
msgstr "Bent u zeker dat u dit artikel wilt verwijderen?"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:328
|
||||
msgid "You must set a code"
|
||||
msgstr "Een code is verplicht"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:329
|
||||
msgid "you must set either a fixed amount or a percentage"
|
||||
msgstr "je moet ofwel een vast bedrag, ofwel een percentage ingeven"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:330
|
||||
msgid "you must set either a fixed amount or a percentage, not both"
|
||||
msgstr ""
|
||||
"je moet ofwel een vast bedrag, ofwel een percentage ingeven, maar niet beiden"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:331
|
||||
msgid "Fixed amount must be numeric"
|
||||
msgstr "Het vast bedrag dient numeriek te zijn"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:332
|
||||
msgid "Percentage must be numeric"
|
||||
msgstr "Het percentage dient numeriek te zijn"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:333
|
||||
msgid "you must set a quantity"
|
||||
msgstr "je moet een aantal ingeven"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:334
|
||||
msgid "Quantity must be numeric"
|
||||
msgstr "Aantal dient numeriek te zijn"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:335
|
||||
msgid "Coupon"
|
||||
msgstr "Coupon"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:336
|
||||
msgid "Coupon has been used up"
|
||||
msgstr "Coupon is opgebruikt"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:337
|
||||
msgid "Coupon has expired"
|
||||
msgstr "Coupon is vervallen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:338
|
||||
msgid "Please provide a coupon code"
|
||||
msgstr "Gelieve een coupon code in te geven"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:339
|
||||
msgid "Coupon code invalid"
|
||||
msgstr "Coupon code is ongeldig"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:340
|
||||
msgid "Are you sure you want to delete this coupon?"
|
||||
msgstr "Bent u zeker dat u deze coupon wilt verwijderen?"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:341
|
||||
msgid "Select image to upload"
|
||||
msgstr "Selecteer een afbeelding om te uploaden"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:342
|
||||
msgid "Use this image"
|
||||
msgstr "Gebruik deze afbeelding"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:343
|
||||
msgid "Copied!"
|
||||
msgstr "Gekopiëerd!"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:344
|
||||
msgid "Account Connected"
|
||||
msgstr "Account Geconnecteerd"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:345
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:20
|
||||
#: includes/pages/edit_product.php:17 includes/shortcodes/class-checkout.php:40
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:346
|
||||
#: includes/pages/edit_product.php:21
|
||||
msgid "Unit Of Measure"
|
||||
msgstr "Eenheid"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:347
|
||||
#: includes/pages/edit_product.php:19
|
||||
msgid "Value"
|
||||
msgstr "Waarde"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:348
|
||||
msgid "Less Info"
|
||||
msgstr "Minder Info"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:349
|
||||
#: includes/shortcodes/class-simple-product.php:44
|
||||
msgid "More Info"
|
||||
msgstr "Meer Info"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:350
|
||||
#: includes/pages/settings_shipping.php:31
|
||||
#: includes/pages/settings_shipping.php:64
|
||||
msgid "Shipping Cost"
|
||||
msgstr "Verzendingskost"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:351
|
||||
#: includes/pages/settings_shipping.php:32
|
||||
#: includes/pages/settings_shipping.php:65
|
||||
msgid "Cost"
|
||||
msgstr "Kost"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:352
|
||||
msgid "Saved"
|
||||
msgstr "Opgeslagen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:354
|
||||
msgid "Free Shipping"
|
||||
msgstr "Gratis Verzending"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:355
|
||||
msgid "We're sorry, we do not offer shipping to your country."
|
||||
msgstr "Het spijt ons, wij bieden geen verzending naar jouw land aan."
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:15
|
||||
#: includes/pages/add_coupon.php:12 includes/pages/add_coupon.php:13
|
||||
#: includes/pages/edit_coupon.php:17 includes/pages/edit_coupon.php:18
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:16
|
||||
#: includes/pages/add_coupon.php:17 includes/pages/add_coupon.php:18
|
||||
#: includes/pages/edit_coupon.php:21 includes/pages/edit_coupon.php:22
|
||||
msgid "Fixed Amount"
|
||||
msgstr "Vast Bedrag"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:17
|
||||
#: includes/pages/add_coupon.php:22 includes/pages/add_coupon.php:23
|
||||
#: includes/pages/edit_coupon.php:25 includes/pages/edit_coupon.php:26
|
||||
msgid "Percentage"
|
||||
msgstr "Percentage"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:18
|
||||
#: includes/pages/add_coupon.php:27 includes/pages/add_coupon.php:28
|
||||
#: includes/pages/edit_coupon.php:29 includes/pages/edit_coupon.php:30
|
||||
msgid "Total Quantity"
|
||||
msgstr "Totale Hoeveelheid"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:19
|
||||
msgid "Quantity Remaining"
|
||||
msgstr "Resterende Hoeveelheid"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:21
|
||||
#: includes/shortcodes/class-checkout.php:41
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:22
|
||||
msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:23
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:24
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:25
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:75
|
||||
msgid "Stripe payment"
|
||||
msgstr "Stripe betaling"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:17
|
||||
#: includes/pages/add_product.php:27 includes/pages/add_product.php:28
|
||||
#: includes/pages/edit_product.php:40 includes/pages/edit_product.php:41
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:18
|
||||
#: includes/pages/add_product.php:37 includes/pages/add_product.php:38
|
||||
#: includes/pages/edit_product.php:50 includes/pages/edit_product.php:51
|
||||
msgid "Unit Price"
|
||||
msgstr "Eenheidsprijs"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:19
|
||||
#: includes/pages/add_product.php:42 includes/pages/add_product.php:43
|
||||
#: includes/pages/edit_product.php:55 includes/pages/edit_product.php:56
|
||||
msgid "VAT Percentage"
|
||||
msgstr "BTW Percentage"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:20
|
||||
msgid "Shortcode"
|
||||
msgstr "Shortcode"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:67
|
||||
#: includes/pages/edit_coupon.php:33 includes/pages/edit_product.php:68
|
||||
msgid "Edit"
|
||||
msgstr "Bewerken"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:73
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Kopiëer naar klembord"
|
||||
|
||||
#: includes/functions/functions.php:56
|
||||
msgid "Order Confirmation From "
|
||||
msgstr "Order Bevestiging Van "
|
||||
|
||||
#: includes/functions/functions.php:58
|
||||
msgid "TEST Order Confirmation From "
|
||||
msgstr "TEST Order Bevestiging Van "
|
||||
|
||||
#: includes/functions/functions.php:68
|
||||
msgid "Dear "
|
||||
msgstr "Beste "
|
||||
|
||||
#: includes/functions/functions.php:69
|
||||
msgid ""
|
||||
"We are pleased to confirm we have received your order of the following "
|
||||
"items: "
|
||||
msgstr ""
|
||||
"We kunnen u met plezier bevestigen dat we het order van de volgende artikels "
|
||||
"goed ontvangen hebben: "
|
||||
|
||||
#: includes/functions/functions.php:77
|
||||
msgid "Quantity"
|
||||
msgstr "Hoeveelheid"
|
||||
|
||||
#: includes/functions/functions.php:82
|
||||
msgid "Order status: "
|
||||
msgstr "Order status: "
|
||||
|
||||
#: includes/functions/functions.php:83
|
||||
msgid "Payment received"
|
||||
msgstr "Betaling ontvangen"
|
||||
|
||||
#: includes/functions/functions.php:84
|
||||
msgid "Thank you for your order!"
|
||||
msgstr "Bedankt voor jouw order!"
|
||||
|
||||
#: includes/functions/functions.php:85
|
||||
msgid "Sincerely,"
|
||||
msgstr "Met vriendelijke groeten,"
|
||||
|
||||
#: includes/functions/functions.php:87
|
||||
msgid "powered by "
|
||||
msgstr "powered by "
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:169
|
||||
msgid "List View"
|
||||
msgstr "Lijst weergave"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:170
|
||||
msgid "Excerpt View"
|
||||
msgstr "Uittreksel weergave"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:335
|
||||
msgid "No items found."
|
||||
msgstr "Geen artikels gevonden."
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:464
|
||||
msgid "Select bulk action"
|
||||
msgstr "Selecteer bulk actie"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:466
|
||||
msgid "Bulk Actions"
|
||||
msgstr "Bulk Acties"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:476
|
||||
msgid "Apply"
|
||||
msgstr "Toepassen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:528
|
||||
#: includes/libraries/class-wp-list-table.php:1350
|
||||
msgid "Show more details"
|
||||
msgstr "Toon meer details"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:596
|
||||
msgid "Filter by date"
|
||||
msgstr "Filteren op datum"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:598
|
||||
msgid "All dates"
|
||||
msgstr "Alle datums"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:613
|
||||
#, php-format
|
||||
msgid "%1$s %2$d"
|
||||
msgstr "%1$s %2$d"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:664
|
||||
#, php-format
|
||||
msgid "%s comment"
|
||||
msgid_plural "%s comments"
|
||||
msgstr[0] "%s opmerking"
|
||||
msgstr[1] "%s opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:665
|
||||
#, php-format
|
||||
msgid "%s approved comment"
|
||||
msgid_plural "%s approved comments"
|
||||
msgstr[0] "%s goedgekeurde opmerking"
|
||||
msgstr[1] "%s goedgekeurde opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:666
|
||||
#, php-format
|
||||
msgid "%s pending comment"
|
||||
msgid_plural "%s pending comments"
|
||||
msgstr[0] "%s openstaande opmerking"
|
||||
msgstr[1] "%s openstaande opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:672
|
||||
#: includes/libraries/class-wp-list-table.php:694
|
||||
#: includes/libraries/class-wp-list-table.php:717
|
||||
msgid "No comments"
|
||||
msgstr "Geen opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:694
|
||||
msgid "No approved comments"
|
||||
msgstr "Geen goedgekeurde opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:717
|
||||
msgid "No pending comments"
|
||||
msgstr "Geen openstaande opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:793
|
||||
#: includes/libraries/class-wp-list-table.php:1374
|
||||
#, php-format
|
||||
msgid "%s item"
|
||||
msgid_plural "%s items"
|
||||
msgstr[0] "%s artikel"
|
||||
msgstr[1] "%s artikels"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:830
|
||||
msgid "First page"
|
||||
msgstr "Eerste pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:841
|
||||
msgid "Previous page"
|
||||
msgstr "Vorige pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:848
|
||||
#: includes/libraries/class-wp-list-table.php:852
|
||||
msgid "Current Page"
|
||||
msgstr "Huidige pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:858
|
||||
#, php-format
|
||||
msgctxt "paging"
|
||||
msgid "%1$s of %2$s"
|
||||
msgstr "%1$s van %2$s"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:866
|
||||
msgid "Next page"
|
||||
msgstr "Volgende pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:877
|
||||
msgid "Last page"
|
||||
msgstr "Laatste pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:1099
|
||||
msgid "Select All"
|
||||
msgstr "Selecteer alles"
|
||||
|
||||
#: includes/pages/add_coupon.php:32
|
||||
msgid "Expiration Date"
|
||||
msgstr "Vervaldatum"
|
||||
|
||||
#: includes/pages/add_coupon.php:37 includes/pages/add_product.php:54
|
||||
msgid "Add"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#: includes/pages/add_product.php:22 includes/pages/edit_product.php:35
|
||||
msgid "Upload image"
|
||||
msgstr "Afbeelding uploaden"
|
||||
|
||||
#: includes/pages/add_product.php:32 includes/pages/add_product.php:33
|
||||
#: includes/pages/edit_product.php:45 includes/pages/edit_product.php:46
|
||||
msgid "Description"
|
||||
msgstr "Omschrijving"
|
||||
|
||||
#: includes/pages/add_product.php:47 includes/pages/edit_product.php:60
|
||||
#: includes/shortcodes/class-simple-product.php:49
|
||||
msgid "Specifications"
|
||||
msgstr "Specificaties"
|
||||
|
||||
#: includes/pages/add_product.php:49 includes/pages/edit_product.php:63
|
||||
msgid "Add Specification"
|
||||
msgstr "Specificatie toevoegen"
|
||||
|
||||
#: includes/pages/cart.php:13
|
||||
msgid "VAT included"
|
||||
msgstr "BTW inclusief"
|
||||
|
||||
#: includes/pages/cart.php:14
|
||||
msgid "There are no items in the shopping cart"
|
||||
msgstr "Geen artikels gevonden in het winkelmandje"
|
||||
|
||||
#: includes/pages/general_settings.php:30
|
||||
msgid ""
|
||||
"This plugin requires an SSL connection. Without SSL you cannot connect to "
|
||||
"stripe and cannot process payments."
|
||||
msgstr ""
|
||||
"Deze plugin vereist een SSL connectie. Zonder SSL kan je niet verbinden met "
|
||||
"stripe en kan je geen betalingen ontvangen."
|
||||
|
||||
#: includes/pages/general_settings.php:38
|
||||
msgid "You are currently connected to Stripe, click here to disconnect."
|
||||
msgstr ""
|
||||
"Je bent momenteel verbonden met Stripe, klik hier om de verbinding te "
|
||||
"verbreken."
|
||||
|
||||
#: includes/pages/general_settings.php:38
|
||||
msgid "Disconnect"
|
||||
msgstr "Verbinding Verbreken"
|
||||
|
||||
#: includes/pages/general_settings.php:42
|
||||
msgid "General settings"
|
||||
msgstr "Algemene instellingen"
|
||||
|
||||
#: includes/pages/general_settings.php:50
|
||||
msgid "Test Mode"
|
||||
msgstr "Test Modus"
|
||||
|
||||
#: includes/pages/general_settings.php:50
|
||||
msgid ""
|
||||
"Test mode. if this option is checked, only the test keys will be used and "
|
||||
"test data will be registered to Stripe. Check your dashboard on your stripe."
|
||||
"com account. There is an option for viewing test data. Please make sure "
|
||||
"everything works properly in test mode before unchecking this box. Orders in "
|
||||
"test mode will not be visible in production and vice versa. You will need to "
|
||||
"reconnect when going live."
|
||||
msgstr ""
|
||||
"Test Modus. Als deze optie is aangevinkt, zullen enkel de test keys gebruikt "
|
||||
"worden en enkel testdata zal doorgestuurd worden naar Stripe. Controleer uw "
|
||||
"dashboard op uw stripe.com account. U vindt er een optie voor het bekijken "
|
||||
"van test data. Controleer en test alles eerst goed in test modus alvorens "
|
||||
"dit uit te vinken. Bestelling in test modus zullen niet zichtbaar zijn in "
|
||||
"productie en vice versa. Je zal opnieuw moeten connecteren wanneer je "
|
||||
"overschakelt naar 'live'."
|
||||
|
||||
#: includes/pages/general_settings.php:55
|
||||
msgid "Cart Icon Menu"
|
||||
msgstr "Menu Winkelmandje"
|
||||
|
||||
#: includes/pages/general_settings.php:55
|
||||
msgid ""
|
||||
"The Menu where you want to place the cart icon to go to the checkout page."
|
||||
msgstr ""
|
||||
"Het Menu waar je het winkelmandje om naar de checkout pagina te gaan aan wil "
|
||||
"toevoegen."
|
||||
|
||||
#: includes/pages/general_settings.php:62
|
||||
msgid "Cart Icon Color"
|
||||
msgstr "Kleur Winkelmandje"
|
||||
|
||||
#: includes/pages/general_settings.php:62
|
||||
msgid "The color of the cart menu icon in hex format."
|
||||
msgstr "De gewenste kleur van het winkelmandje in hex formaat."
|
||||
|
||||
#: includes/pages/general_settings.php:67
|
||||
msgid "Checkout Cart Page"
|
||||
msgstr "Checkout Winkelmandje Pagina"
|
||||
|
||||
#: includes/pages/general_settings.php:67
|
||||
msgid ""
|
||||
"The checkout cart page to redirect to when clicking the shopping cart. A "
|
||||
"default page is generated on activiation of this plugin. Use the "
|
||||
"[checkout_bc] shortcode to create your own."
|
||||
msgstr ""
|
||||
"De checkout pagina waarnaar doorverwezen wordt als op het winkelmandje "
|
||||
"geklikt wordt. Er wordt een standaard pagina aangemaakt bij het activeren "
|
||||
"van deze plugin. Gebruik de [checkout_bc] shortcode om je eigen pagina te "
|
||||
"maken."
|
||||
|
||||
#: includes/pages/general_settings.php:74
|
||||
msgid "Creditcard Checkout Page"
|
||||
msgstr "Creditcard Checkout Pagina"
|
||||
|
||||
#: includes/pages/general_settings.php:74
|
||||
msgid ""
|
||||
"The checkout page for credit cards to redirect to when clicking the pay "
|
||||
"button in the checkout page. A default page is generated on activiation of "
|
||||
"this plugin. Use the [checkout_cc] shortcode to create your own."
|
||||
msgstr ""
|
||||
"De checkout pagina voor creditcards waarnaar doorverwezen wordt als op de "
|
||||
"betalen knop in de checkout pagina geklikt wordt. Er wordt een standaard "
|
||||
"pagina aangemaakt bij het activeren van deze plugin. Gebruik de "
|
||||
"[checkout_cc] shortcode om je eigen pagina te maken."
|
||||
|
||||
#: includes/pages/general_settings.php:81
|
||||
msgid "Check Payment Page"
|
||||
msgstr "Controleer Betaling Pagina"
|
||||
|
||||
#: includes/pages/general_settings.php:81
|
||||
msgid ""
|
||||
"The check payment page to redirect to after payment. A default page is "
|
||||
"generated on activiation of this plugin. Use the [confirmation_bc] shortcode "
|
||||
"to create your own."
|
||||
msgstr ""
|
||||
"De controleer betaling pagina om naar door te verwijzen na de betaling. Een "
|
||||
"standaard pagina wordt gegenereerd bij het activeren van deze plugin. "
|
||||
"Gebruik de [confirmation_bc] shortcode om je eigen pagina te maken."
|
||||
|
||||
#: includes/pages/general_settings.php:88
|
||||
msgid "Bcc Orders Email"
|
||||
msgstr "Bcc Orders Email"
|
||||
|
||||
#: includes/pages/general_settings.php:88
|
||||
msgid "Optional email address for you to receive confirmed orders"
|
||||
msgstr "Optioneel email adres om order bevestigingen te ontvangen"
|
||||
|
||||
#: includes/pages/general_settings.php:95
|
||||
#: includes/pages/settings_shipping.php:77
|
||||
msgid "Save Changes"
|
||||
msgstr "Opslaan"
|
||||
|
||||
#: includes/pages/settings_coupons.php:8
|
||||
msgid "Manage coupons"
|
||||
msgstr "Coupons beheren"
|
||||
|
||||
#: includes/pages/settings_coupons.php:8 includes/pages/settings_products.php:8
|
||||
msgid "Add New"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#: includes/pages/settings_coupons.php:13 includes/pages/settings_orders.php:16
|
||||
#: includes/pages/settings_products.php:13
|
||||
msgid "search"
|
||||
msgstr "zoeken"
|
||||
|
||||
#: includes/pages/settings_orders.php:21
|
||||
msgid ""
|
||||
"You are not connected to Stripe. You can do this in the settings of this "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
"Je bent niet verbonden met Stripe. Je kan dit doen in de instellingen van "
|
||||
"deze plugin."
|
||||
|
||||
#: includes/pages/settings_products.php:8
|
||||
msgid "Manage products"
|
||||
msgstr "Artikels beheren"
|
||||
|
||||
#: includes/pages/settings_shipping.php:63
|
||||
msgid "Ship to all countries"
|
||||
msgstr "Naar alle landen verzenden"
|
||||
|
||||
#: includes/pages/settings_shipping.php:72
|
||||
msgid "Add Country"
|
||||
msgstr "Land Toevoegen"
|
||||
|
||||
#: includes/shortcodes/class-checkout-credit-card.php:15
|
||||
#: includes/shortcodes/class-checkout.php:47
|
||||
msgid "Pay"
|
||||
msgstr "Betalen"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:27
|
||||
msgid "Coupon Code"
|
||||
msgstr "Coupon Code"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:28
|
||||
msgid "Validate"
|
||||
msgstr "Valideer"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:42
|
||||
msgid "Address line 1"
|
||||
msgstr "Adreslijn 1"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:43
|
||||
msgid "Address line 2"
|
||||
msgstr "Adreslijn 2"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:44
|
||||
msgid "Zip"
|
||||
msgstr "Postcode"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:45
|
||||
msgid "City"
|
||||
msgstr "Plaats"
|
||||
|
||||
#: includes/shortcodes/class-confirmation.php:10
|
||||
msgid "Checking payment "
|
||||
msgstr "Betaling controleren "
|
||||
|
||||
#: includes/shortcodes/class-confirmation.php:11
|
||||
msgid "Back to homepage"
|
||||
msgstr "Terug naar de homepage"
|
||||
|
||||
#: includes/shortcodes/class-simple-product.php:13
|
||||
msgid "Product id has the wrong format"
|
||||
msgstr "Artikel id heeft het verkeerde formaat"
|
||||
|
||||
#: includes/shortcodes/class-simple-product.php:17
|
||||
msgid "Product not found"
|
||||
msgstr "Artikel niet gevonden"
|
||||
|
||||
#: includes/shortcodes/class-simple-product.php:60
|
||||
msgid "Something went wrong, please contact site administrator."
|
||||
msgstr "Er is iets misgelopen, contacteer aub de site administrator."
|
||||
|
||||
#~ msgid "Publishable Key"
|
||||
#~ msgstr "Publishable Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The publishable key from stripe. Check your dashboard on your stripe.com "
|
||||
#~ "account."
|
||||
#~ msgstr ""
|
||||
#~ "De publishable key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account."
|
||||
|
||||
#~ msgid "Secret Key"
|
||||
#~ msgstr "Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The secret key from stripe. Check your dashboard on your stripe.com "
|
||||
#~ "account."
|
||||
#~ msgstr ""
|
||||
#~ "De secret key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account."
|
||||
|
||||
#~ msgid "Webhook Secret Key"
|
||||
#~ msgstr "Webhook Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The webhook secret key from stripe. Check your dashboard on your stripe."
|
||||
#~ "com account. You can set webhooks under the Developers section."
|
||||
#~ msgstr ""
|
||||
#~ "Dewebhook secret key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account. U kan de webhooks instellen onder de rubriek Developers."
|
||||
|
||||
#~ msgid "Test Publishable Key"
|
||||
#~ msgstr "Test Publishable Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The test publishable key from stripe. Check your dashboard on your stripe."
|
||||
#~ "com account."
|
||||
#~ msgstr ""
|
||||
#~ "De test publishable key van Stripe. Controleer uw dashboard op uw stripe."
|
||||
#~ "com account."
|
||||
|
||||
#~ msgid "Test Secret Key"
|
||||
#~ msgstr "Test Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The test secret key from stripe. Check your dashboard on your stripe.com "
|
||||
#~ "account."
|
||||
#~ msgstr ""
|
||||
#~ "De test secret key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account."
|
||||
|
||||
#~ msgid "Test Webhook Secret Key"
|
||||
#~ msgstr "Test Webhook Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The test webhook secret key from stripe. Check your dashboard on your "
|
||||
#~ "stripe.com account. You can set webhooks under the Developers section."
|
||||
#~ msgstr ""
|
||||
#~ "De test webhook secret key van Stripe. Controleer uw dashboard op uw "
|
||||
#~ "stripe.com account. U kan de webhooks instellen onder de rubriek "
|
||||
#~ "Developers."
|
||||
|
||||
#~ msgid "Add to cart"
|
||||
#~ msgstr "Aan winkelmandje toevoegen"
|
||||
2199
spec/fixtures/dynamic_finders/plugin_version/giftpress/translation_file/languages/giftpress.pot
vendored
Normal file
2199
spec/fixtures/dynamic_finders/plugin_version/giftpress/translation_file/languages/giftpress.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,746 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GoUrl WooCommerce - Bitcoin Altcoin Payment Gateway "
|
||||
"Addon\n"
|
||||
"POT-Creation-Date: 2019-02-20 16:43+0000\n"
|
||||
"PO-Revision-Date: 2019-02-20 16:43+0000\n"
|
||||
"Last-Translator: Velcho Velchev <velcho@rezko.net>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
|
||||
#: gourl-woocommerce.php:62
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: gourl-woocommerce.php:67
|
||||
msgid "Unrecognised"
|
||||
msgstr "Некатегоризирани"
|
||||
|
||||
#: gourl-woocommerce.php:69
|
||||
msgid "Payments"
|
||||
msgstr "Плащания"
|
||||
|
||||
#: gourl-woocommerce.php:142
|
||||
msgid "Iranian Rial"
|
||||
msgstr "Ирански риал"
|
||||
|
||||
#: gourl-woocommerce.php:143
|
||||
#, fuzzy
|
||||
#| msgid "Iranian Rial"
|
||||
msgid "Iranian Toman"
|
||||
msgstr "Ирански риал"
|
||||
|
||||
#: gourl-woocommerce.php:150
|
||||
msgid "► Cryptocurrency"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:152
|
||||
msgid "Bitcoin"
|
||||
msgstr "Биткойн"
|
||||
|
||||
#: gourl-woocommerce.php:153
|
||||
msgid "Bitcoincash"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:154
|
||||
#, fuzzy
|
||||
#| msgid "Bitcoin"
|
||||
msgid "Bitcoinsv"
|
||||
msgstr "Биткойн"
|
||||
|
||||
#: gourl-woocommerce.php:155
|
||||
msgid "Litecoin"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:156
|
||||
msgid "Doge"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:157
|
||||
msgid "DASH"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:166
|
||||
#, php-format
|
||||
msgid "► Admin use %s, Users see LIVE prices in %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:466 gourl-woocommerce.php:487
|
||||
msgid "View Payment Details"
|
||||
msgstr "Информация за плащането"
|
||||
|
||||
#: gourl-woocommerce.php:549 gourl-woocommerce.php:1058
|
||||
msgid "Guest"
|
||||
msgstr "Гост"
|
||||
|
||||
#: gourl-woocommerce.php:559
|
||||
#, php-format
|
||||
msgid "%s Payment Received"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:560
|
||||
msgid "CONFIRMED"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:561
|
||||
msgid "Check Live Status"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:561
|
||||
msgid "unconfirmed"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:563
|
||||
msgid "CRYPTO PAYMENT NOT RECEIVED YET !"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:569
|
||||
msgid "Order created"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:569 gourl-woocommerce.php:573
|
||||
msgid "GMT"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:569
|
||||
msgid "view"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:573
|
||||
msgid "Payment received"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:574
|
||||
#, php-format
|
||||
msgid "Paid by %s located in %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:580
|
||||
msgid "Original order"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:591
|
||||
msgid "Actual Received"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:598
|
||||
msgid "Refunded"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:605
|
||||
#, php-format
|
||||
msgid "%s Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:605
|
||||
msgid "on address"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:668 gourl-woocommerce.php:793
|
||||
msgid "GoUrl Bitcoin/Altcoins"
|
||||
msgstr "GoUrl Биткойн/Алткойн"
|
||||
|
||||
#: gourl-woocommerce.php:670
|
||||
msgid "Plugin Homepage"
|
||||
msgstr "Страница на добавката"
|
||||
|
||||
#: gourl-woocommerce.php:670
|
||||
msgid "screenshots"
|
||||
msgstr "изображения"
|
||||
|
||||
#: gourl-woocommerce.php:671
|
||||
msgid "Plugin on Github - 100% Free Open Source"
|
||||
msgstr "Приставката е от Github - 100% свободен отворен код"
|
||||
|
||||
#: gourl-woocommerce.php:681
|
||||
#, fuzzy, php-format
|
||||
#| msgid ""
|
||||
#| "Your GoUrl Bitcoin Gateway <a href='%s'>Main Plugin</a> version is too "
|
||||
#| "old. Requires 1.3.3 or higher version. Please <a href='%s'>update</a> to "
|
||||
#| "latest version."
|
||||
msgid ""
|
||||
"Your GoUrl Bitcoin Gateway <a href='%s'>Main Plugin</a> version is too old. "
|
||||
"Requires 1.4.17 or higher version. Please <a href='%s'>update</a> to latest "
|
||||
"version."
|
||||
msgstr ""
|
||||
"Вашата GoUrl Биткойн шлюз <a href='%s'>приставка</a> е твърде стара. Изисква "
|
||||
"се v1.3.3 или по-висока. Моля <a href='%s'>обновете</a>до последната версия."
|
||||
|
||||
#: gourl-woocommerce.php:682 gourl-woocommerce.php:705
|
||||
#: gourl-woocommerce.php:1094 gourl-woocommerce.php:1099
|
||||
#: gourl-woocommerce.php:1104 gourl-woocommerce.php:1109
|
||||
#: gourl-woocommerce.php:1140 gourl-woocommerce.php:1147
|
||||
#: gourl-woocommerce.php:1163
|
||||
msgid "Information"
|
||||
msgstr "Информация"
|
||||
|
||||
#: gourl-woocommerce.php:682 gourl-woocommerce.php:705
|
||||
msgid "Main Plugin Homepage"
|
||||
msgstr "Страница на приставката"
|
||||
|
||||
#: gourl-woocommerce.php:683 gourl-woocommerce.php:706
|
||||
msgid "WordPress.org Plugin Page"
|
||||
msgstr "Приставката в WordPress.org"
|
||||
|
||||
#: gourl-woocommerce.php:687
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your WooCommerce version is too old. The GoUrl payment plugin requires "
|
||||
"WooCommerce 2.1 or higher to function. Please update to <a href='%s'>latest "
|
||||
"version</a>."
|
||||
msgstr ""
|
||||
"Версията на WooCommerce е твърде стара. GoUrl payment изисква поне "
|
||||
"WooCommerce 2.1, за да работи. Моля обновете до <a href='%s'>последната "
|
||||
"версия</a>."
|
||||
|
||||
#: gourl-woocommerce.php:699
|
||||
msgid "- Please setup -"
|
||||
msgstr "- Настройки -"
|
||||
|
||||
#: gourl-woocommerce.php:704
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You need to install GoUrl Bitcoin Gateway Main Plugin also. Go to - <a "
|
||||
"href='%s'>Automatic installation</a> or <a href='%s'>Manual</a>."
|
||||
msgstr ""
|
||||
"Трябва да инсталирате приставка GoUrl Биткойн шлюз - <a "
|
||||
"href='%s'>Автоматична инсталация</a> или <a href='%s'>ръчно</a>."
|
||||
|
||||
#: gourl-woocommerce.php:711
|
||||
msgid "Please install GoUrl Bitcoin Gateway WP Plugin"
|
||||
msgstr "Моля инсталирайте WordPress приставка GoUrl Биткойн шлюз"
|
||||
|
||||
#: gourl-woocommerce.php:715
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Secure payments with virtual currency. <a target='_blank' href='https://"
|
||||
#| "bitcoin.org/'>What is Bitcoin?</a>"
|
||||
msgid ""
|
||||
"White Label Product. Secure payments with virtual currency. <a "
|
||||
"target='_blank' href='https://bitcoin.org/'>What is Bitcoin?</a>"
|
||||
msgstr ""
|
||||
"Сигурни плащания с криптовалути. <a target='_blank' href='https://bitcoin."
|
||||
"org/bg'>Какво е Биткойн?</a>"
|
||||
|
||||
#: gourl-woocommerce.php:716
|
||||
#, php-format
|
||||
msgid "Accept %s payments online in WooCommerce."
|
||||
msgstr "Приемайте %s плащания в WooCommerce."
|
||||
|
||||
#: gourl-woocommerce.php:717
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you use multiple stores/sites online, please create separate <a "
|
||||
"target='_blank' href='%s'>GoUrl Payment Box</a> (with unique payment box "
|
||||
"public/private keys) for each of your stores/websites. Do not use the same "
|
||||
"GoUrl Payment Box with the same public/private keys on your different "
|
||||
"websites/stores."
|
||||
msgstr ""
|
||||
"Ако имате няколко интернет магазини или сайтове, моля използвайте различни "
|
||||
"<a target='_blank' href='%s'>GoUrl Payment Box</a> (различни payment box "
|
||||
"public/private keys) за всеки от вашите сайтове. Никога не използвайте едни "
|
||||
"и същи GoUrl Payment Box с едни и същи public/private keys във вашите "
|
||||
"различни сайтове!"
|
||||
|
||||
#: gourl-woocommerce.php:717
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Add additional altcoins (Litecoin/DASH/Bitcoin Cash/etc) to payment box <a "
|
||||
"href='%s'>here »</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:721
|
||||
#, php-format
|
||||
msgid "Fiat + %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:725
|
||||
#, php-format
|
||||
msgid "Fiat + %s + %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:794
|
||||
msgid "Secure, anonymous payment with virtual currency"
|
||||
msgstr "Сигурни, анонимни плащания с виртуални валути."
|
||||
|
||||
#: gourl-woocommerce.php:827
|
||||
#, fuzzy
|
||||
#| msgid "Logo"
|
||||
msgid "No Logo"
|
||||
msgstr "Лого"
|
||||
|
||||
#: gourl-woocommerce.php:828
|
||||
msgid "1. Logo with text - Pay with Cryptocurrency'"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:829
|
||||
#, fuzzy
|
||||
#| msgid "Bitcoin"
|
||||
msgid "2. Bitcoin Logo"
|
||||
msgstr "Биткойн"
|
||||
|
||||
#: gourl-woocommerce.php:830
|
||||
msgid "3. Bitcoin Logo with text"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:831
|
||||
msgid "4. Light Logo with text - Crypto Accepted"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:832
|
||||
msgid "5. Dark Logo with text - Crypto Accepted"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:833
|
||||
msgid "6. Crypto Icons (Bitcoin, Bitcoin Cash, Litecoin)"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:834
|
||||
msgid "7. Crypto Icons (Bitcoin, Bitcoin Cash)"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:835
|
||||
msgid "8. Bitcoin Cash Logo green"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:836
|
||||
msgid "9. Bitcoin Cash Logo white"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:837
|
||||
msgid "10. Bitcoin Cash Logo with text"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:841
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Включено/Изключено"
|
||||
|
||||
#: gourl-woocommerce.php:844
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Enable Bitcoin/Altcoin Payments in WooCommerce with <a href='%s'>GoUrl "
|
||||
"Bitcoin Gateway</a>"
|
||||
msgstr ""
|
||||
"Включи Биткойн/Алткойн плащания в WooCommerce чрез <a href='%s'>GoUrl "
|
||||
"Биткойн шлюз</a>"
|
||||
|
||||
#: gourl-woocommerce.php:847
|
||||
msgid "Title"
|
||||
msgstr "Заглавие"
|
||||
|
||||
#: gourl-woocommerce.php:849
|
||||
msgid "Bitcoin/Altcoin"
|
||||
msgstr "Биткойн/Алткойн"
|
||||
|
||||
#: gourl-woocommerce.php:850
|
||||
msgid "Payment method title that the customer will see on your checkout"
|
||||
msgstr ""
|
||||
"Име на метода на плащане, който потребителя ще види на страницата за плащане"
|
||||
|
||||
#: gourl-woocommerce.php:853
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: gourl-woocommerce.php:855
|
||||
#, php-format
|
||||
msgid "Secure, anonymous payment with virtual currency - %s"
|
||||
msgstr "Сигурни, анонимни плащания с виртуални валути - %s"
|
||||
|
||||
#: gourl-woocommerce.php:855
|
||||
msgid "What is bitcoin?"
|
||||
msgstr "Какво е биткойн?"
|
||||
|
||||
#: gourl-woocommerce.php:856
|
||||
msgid "Payment method description that the customer will see on your checkout"
|
||||
msgstr ""
|
||||
"Описание на плащането, което потребителя ще види на страницата за плащане"
|
||||
|
||||
#: gourl-woocommerce.php:859
|
||||
msgid "Two Logo (checkout and paymentbox)"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:863
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Payment method logo that the customer will see on your checkout"
|
||||
msgid ""
|
||||
"Payment method logo that the customer will see on your checkout. <a href=\"%s"
|
||||
"\">See logo examples »</a>"
|
||||
msgstr ""
|
||||
"Лого на метода за плащане, който потребителя ще види на страницата за "
|
||||
"плащане."
|
||||
|
||||
#: gourl-woocommerce.php:863
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your Company Logo for Cryptocurrency Payment Box you can <a href=\"%s"
|
||||
"\">setup here »</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:866
|
||||
msgid "Exchange Rate Multiplier"
|
||||
msgstr "Множител при обмяната"
|
||||
|
||||
#: gourl-woocommerce.php:869
|
||||
msgid ""
|
||||
"The system uses the multiplier rate with today LIVE cryptocurrency exchange "
|
||||
"rates (which are updated every 30 minutes) when the transaction is "
|
||||
"calculating from a fiat currency (e.g. USD, EUR, etc) to cryptocurrency. "
|
||||
"<br> Example: <b>1.05</b> - will add an extra 5% to the total price in "
|
||||
"bitcoin/altcoins, <b>0.85</b> - will be a 15% discount for the price in "
|
||||
"bitcoin/altcoins. Default: 1.00 "
|
||||
msgstr ""
|
||||
"Системата използва множител и актуалният LIVE курс (обновяван на всеки 30 "
|
||||
"минути) при превръщането на цените от фиатна валута (напр. USD, EUR, BGN) в "
|
||||
"криптовалута (напр. BTC). <br> Например: <b>1.05</b> - ще добави 5% върху "
|
||||
"крайната цена в криптовалута (напр. Биткойни), <b>0.85</b> - е 15% намаление "
|
||||
"за цени в Биткойни. Нормална стойност: 1.00"
|
||||
|
||||
#: gourl-woocommerce.php:872
|
||||
msgid "Advanced options"
|
||||
msgstr "Допълнителни настройки"
|
||||
|
||||
#: gourl-woocommerce.php:874
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your shop can display product prices in Bitcoin/BCH/BSV/DASH/LTC/DOGE also."
|
||||
"<br>Simple select 'Currency' - <a href='%s'>'Admin use USD/EUR/etc, users "
|
||||
"see Live Prices in Bitcoin/Altcoin'</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:874
|
||||
msgid "see screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:877
|
||||
msgid "Order Status - Cryptocoin Payment Received"
|
||||
msgstr "Състояние на поръчката - получено е плащане с криптовалута"
|
||||
|
||||
#: gourl-woocommerce.php:881
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Payment is received successfully from the customer. You will see the bitcoin/"
|
||||
"altcoin payment statistics in one common table <a href='%s'>'All Payments'</"
|
||||
"a> with details of all received payments.<br>If you sell digital products / "
|
||||
"software downloads you can use the status 'Completed' showing that "
|
||||
"particular customer already has instant access to your digital products"
|
||||
msgstr ""
|
||||
"Успешно пристигна плащане. Можете да видите статистика с всички детайли за "
|
||||
"получените Биткойн/алткойн плащания в таблица <a href='%s'>'Всички "
|
||||
"плащания'</a>.<br>Ако продавате други онлайн продукти, като сваляне на "
|
||||
"софтуер, видео и др. можете да използвате състоянието 'Completed' показващо, "
|
||||
"че потребителя вече има достъп."
|
||||
|
||||
#: gourl-woocommerce.php:884
|
||||
msgid "Order Status - Previously Received Payment Confirmed"
|
||||
msgstr "Състояние на поръчката - потвърдено е плащане с криптовалута"
|
||||
|
||||
#: gourl-woocommerce.php:888
|
||||
msgid ""
|
||||
"About one hour after the payment is received, the bitcoin transaction should "
|
||||
"get 6 confirmations (for transactions using other cryptocoins ~ 20-30min)."
|
||||
"<br>A transaction confirmation is needed to prevent double spending of the "
|
||||
"same money"
|
||||
msgstr ""
|
||||
"Около един час, след като е получено плащането, ще получи 6 потвърждения (за "
|
||||
"други криптовалути отнема около 20-30 минути).<br>Тези потвърждения са "
|
||||
"необходими, за да се предотврати 'double spending' или двойно похарчване на "
|
||||
"едни и същи пари!"
|
||||
|
||||
#: gourl-woocommerce.php:891
|
||||
msgid "Crypto Price on Product Page"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:895
|
||||
msgid ""
|
||||
"Display additional crypto price/s with fiat price on the WooCommerce product "
|
||||
"page. For, example: $100.25 / 0.0145 Ƀ"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:898
|
||||
msgid "PaymentBox Language"
|
||||
msgstr "Език на PaymentBox"
|
||||
|
||||
#: gourl-woocommerce.php:902
|
||||
msgid "Default Crypto Payment Box Localisation"
|
||||
msgstr "Подразбиране език на PaymentBox"
|
||||
|
||||
#: gourl-woocommerce.php:905
|
||||
msgid "PaymentBox Default Coin"
|
||||
msgstr "PaymentBox монета"
|
||||
|
||||
#: gourl-woocommerce.php:909
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Default Coin in Crypto Payment Box. Activated Payments : <a href='%s'>%s</a>"
|
||||
msgstr ""
|
||||
"Подразбиране монета на Crypto Payment Box. Активирани плащания : <a "
|
||||
"href='%s'>%s</a>"
|
||||
|
||||
#: gourl-woocommerce.php:912
|
||||
msgid "Icons Size"
|
||||
msgstr "Размери на иконите"
|
||||
|
||||
#: gourl-woocommerce.php:916
|
||||
msgid ""
|
||||
"Cryptocoin icons size in 'Select Payment Method' that the customer will see "
|
||||
"on your checkout. Default 60px. Allowed: 30..250px"
|
||||
msgstr ""
|
||||
"Размерите на иконата на криптовалутата в 'Изберете метод на плащане', която "
|
||||
"потребителя ще види на страницата за плащане. Обичайно 60px. Позволено: от "
|
||||
"30 до 250px"
|
||||
|
||||
#: gourl-woocommerce.php:919
|
||||
#, fuzzy
|
||||
#| msgid "Payment Box Style"
|
||||
msgid "Mobile Friendly Payment Box Style"
|
||||
msgstr "Стил на Payment Box"
|
||||
|
||||
#: gourl-woocommerce.php:921
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Additional options for Mobile Friendly Payment Box (not iFrame).<br>Box "
|
||||
"Color Theme (<a href='%s'>white</a> / <a href='%s'>black</a> / <a "
|
||||
"href='%s'>sketchy</a> / blue / red / etc) you can change <a href='%s'>here "
|
||||
"»</a>   Payment Box <a target='_blank' href='%s'>Live Demo »</"
|
||||
"a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:924
|
||||
msgid "Custom Payment Text"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:927
|
||||
msgid ""
|
||||
"Your text on payment page below \"Pay Now\" title. For example, you can add "
|
||||
"\"If you have any questions please feel free to contact us at any time on "
|
||||
"(telephone) or contact by (email)\""
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:930
|
||||
#, fuzzy
|
||||
#| msgid "Icons Size"
|
||||
msgid "QRcode Size"
|
||||
msgstr "Размери на иконите"
|
||||
|
||||
#: gourl-woocommerce.php:934
|
||||
#, php-format
|
||||
msgid ""
|
||||
"QRcode image size in payment box. Default 200px. Allowed: 0..500px. Demo - "
|
||||
"<a href='%s'>large qrcode</a> / <a href='%s'>small qrcode</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:937
|
||||
#, fuzzy
|
||||
#| msgid "Languages"
|
||||
msgid "Language Menu"
|
||||
msgstr "Език"
|
||||
|
||||
#: gourl-woocommerce.php:941
|
||||
msgid "Show or hide language selection menu above payment box"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:944
|
||||
msgid "Redirect Url"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:947
|
||||
msgid ""
|
||||
"Redirect to another page after payment is received (3 seconds delay). For "
|
||||
"example, http://yoursite.com/thank_you.php"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:951
|
||||
msgid "Languages"
|
||||
msgstr "Език"
|
||||
|
||||
#: gourl-woocommerce.php:953
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you want to use GoUrl WooCommerce Bitcoin Gateway plugin in a language "
|
||||
"other than English, see the page <a href='%s'>Languages and Translations</a>"
|
||||
msgstr ""
|
||||
"Ако искате да използвате GoUrl WooCommerce Биткойн шлюз в различен от "
|
||||
"Български, вижте <a href='%s'>Страницата ни за преводи</a>"
|
||||
|
||||
#: gourl-woocommerce.php:967
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you like <b>Bitcoin Gateway for WooCommerce</b> please leave us a %s "
|
||||
"rating on %s. A huge thank you from GoUrl in advance!"
|
||||
msgstr ""
|
||||
"Ако харесвате <b>Биткойн шлюз за WooCommerce</b> моля оставете %s рейтинг на "
|
||||
"%s. Благодарности от GoUrl предварително!"
|
||||
|
||||
#: gourl-woocommerce.php:989
|
||||
msgid "Awaiting payment notification from GoUrl"
|
||||
msgstr "Изчаква потвърждение от GoUrl"
|
||||
|
||||
#: gourl-woocommerce.php:1059
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Order Created by %s<br>Order Total: %s<br>Awaiting Cryptocurrency <a "
|
||||
"href='%s'>Payment</a> ..."
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:1095
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The GoUrl payment plugin was called to process a payment but could not "
|
||||
"retrieve the order details for orderID %s. Cannot continue!"
|
||||
msgstr ""
|
||||
"Грешка! Приставката GoUrl payment опита да изпълни плащане, но не постъпи "
|
||||
"информация за поръчка с номер %s."
|
||||
|
||||
#: gourl-woocommerce.php:1100
|
||||
msgid ""
|
||||
"This order's status is 'Cancelled' - it cannot be paid for. Please contact "
|
||||
"us if you need assistance."
|
||||
msgstr ""
|
||||
"Състоянието на поръчката е 'Отказана' - не може да бъде извършено плащане. "
|
||||
"Моля свържете се с нас за помощ."
|
||||
|
||||
#: gourl-woocommerce.php:1105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please try a different payment method. Admin need to install and activate "
|
||||
"wordpress plugin <a href='%s'>GoUrl Bitcoin Gateway for Wordpress</a> to "
|
||||
"accept Bitcoin/Altcoin Payments online."
|
||||
msgstr ""
|
||||
"Моля опитайте друг метод за плащане. Трябва да инсталирате и активирате "
|
||||
"приставката за WordPress <a href='%s'>GoUrl Биткойн шлюз за Wordpress</a>, "
|
||||
"за да приемате плащания с Биткойн или други криптовалути."
|
||||
|
||||
#: gourl-woocommerce.php:1110
|
||||
#, fuzzy, php-format
|
||||
#| msgid ""
|
||||
#| "Sorry, but there was an error processing your order. Please try a "
|
||||
#| "different payment method or contact us if you need assistance (GoUrl "
|
||||
#| "Bitcoin Plugin not configured / %s not activated)."
|
||||
msgid ""
|
||||
"Sorry, but there was an error processing your order. Please try a different "
|
||||
"payment method or contact us if you need assistance (Bitcoin Gateway Plugin "
|
||||
"v1.4.17+ not configured / %s not activated)."
|
||||
msgstr ""
|
||||
"Съжаляваме, възникна грешка при обработката на Вашата трансакция. Моля "
|
||||
"опитайте друг метод за плащане или се свържете с нас за помощ (GoUrl Биткойн "
|
||||
"плъгин не е конфигуриран / %s не е активен)."
|
||||
|
||||
#: gourl-woocommerce.php:1142
|
||||
msgid ""
|
||||
"You need first to login or register on the website to make Bitcoin/Altcoin "
|
||||
"Payments"
|
||||
msgstr ""
|
||||
"Трябва да сте логнат в сайта, за да плащате с Биткойн или други криптовалути."
|
||||
|
||||
#: gourl-woocommerce.php:1148
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This order's amount is %s - it cannot be paid for. Please contact us if you "
|
||||
"need assistance."
|
||||
msgstr ""
|
||||
"Стойността на поръчката е %s - не може да бъде платена. Моля свържете се с "
|
||||
"нас за помощ."
|
||||
|
||||
#: gourl-woocommerce.php:1164
|
||||
#, fuzzy, php-format
|
||||
#| msgid ""
|
||||
#| "Sorry, but there was an error processing your order. Please try later or "
|
||||
#| "use a different payment method. System cannot receive exchange rates for "
|
||||
#| "%s/USD from Google Finance"
|
||||
msgid ""
|
||||
"Sorry, but there was an error processing your order. Please try later or use "
|
||||
"a different payment method. System cannot receive exchange rates for %s/USD "
|
||||
"from Ecb.europa.eu / Currencyconverterapi.com %s"
|
||||
msgstr ""
|
||||
"Съжаляваме, възникна грешка при обработката на Вашата трансакция. Моля "
|
||||
"опитайте по-късно или използвайте друг метод на плащане. Възникна грешка при "
|
||||
"изчислението на курса %s/USD от Google Finance"
|
||||
|
||||
#: gourl-woocommerce.php:1185
|
||||
msgid "Pay Now -"
|
||||
msgstr "Платете на -"
|
||||
|
||||
#: gourl-woocommerce.php:1192
|
||||
msgid ""
|
||||
"Sorry, but there was an error processing your order. Please try a different "
|
||||
"payment method."
|
||||
msgstr ""
|
||||
"Съжаляваме, възникна грешка при обработката на Вашата трансакция. Моля "
|
||||
"опитайте друг метод за плащане."
|
||||
|
||||
#: gourl-woocommerce.php:1201
|
||||
#, php-format
|
||||
msgid "%s Payment ID: #%s"
|
||||
msgstr "%s Номер на плащането ID: #%s"
|
||||
|
||||
#: gourl-woocommerce.php:1310
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s Payment Received<br>%s<br>Payment id <a href='%s'>%s</a> / <a "
|
||||
"href='%s'>order page</a> <br>Awaiting network confirmation..."
|
||||
msgstr ""
|
||||
"%s Плащането е прието <br>%s<br>Номер на плащането <a href='%s'>%s</a> / <a "
|
||||
"href='%s'>поръчки</a> <br>Чака потвърждение от мрежата..."
|
||||
|
||||
#: gourl-woocommerce.php:1325
|
||||
#, php-format
|
||||
msgid "%s Payment id <a href='%s'>%s</a> Confirmed"
|
||||
msgstr "%s Номер на плащането <a href='%s'>%s</a> е потвърдено"
|
||||
|
||||
#: gourl-woocommerce.php:1348
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:1353
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Bitcoin/altcoin recurring payments not available. %s <br/> %s need to "
|
||||
"resubscribe."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "GoUrl default logo - 'Global Payments'"
|
||||
#~ msgstr "GoUrl подразбиране лого - 'Global Payments'"
|
||||
|
||||
#~ msgid "GoUrl logo with text - '%s Payments'"
|
||||
#~ msgstr "GoUrl лого с текст - '%s Payments'"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Payment Box <a href='%s'>sizes</a> and border <a href='%s'>shadow</a> you "
|
||||
#~ "can change <a href='%s'>here »</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Payment Box <a href='%s'>размери</a> и гранично <a href='%s'>сянка</a> "
|
||||
#~ "можете да промените от <a href='%s'>тук »</a>"
|
||||
|
||||
#~ msgid "Cryptocurrency"
|
||||
#~ msgstr "Криптовалута"
|
||||
|
||||
#~ msgid "Admin use %s, User see prices in Bitcoins"
|
||||
#~ msgstr "Админ използва %s, посетителя вижда цените в Биткойни"
|
||||
|
||||
#~ msgid "Order Created by %s<br>Awaiting Cryptocurrency Payment ..."
|
||||
#~ msgstr "Направено е плащане от %s<br>Изчаква плащане ..."
|
||||
|
||||
#~ msgid "Yes"
|
||||
#~ msgstr "Да"
|
||||
|
||||
#~ msgid "No"
|
||||
#~ msgstr "Не"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you intend GoUrl WooCommerce Bitcoin Gateway to be used in a language "
|
||||
#~ "other than English, see the <a href='%s'>Language Translations page</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Ако искате да използвате GoUrl WooCommerce Биткойн шлюз в различен от "
|
||||
#~ "Български, вижте <a href='%s'>Страницата ни за преводи</a>"
|
||||
@@ -0,0 +1,24 @@
|
||||
== 1.0.5 ==
|
||||
Release date: April 16, 2020
|
||||
* Fixed: PHP error
|
||||
|
||||
== 1.0.4 ==
|
||||
Release date: April 16, 2020
|
||||
* Added: WPML compatibility
|
||||
|
||||
== 1.0.3 ==
|
||||
Release date: April 8, 2020
|
||||
* Enhancement: Updated icon control
|
||||
|
||||
== 1.0.2 ==
|
||||
Release date: May 27, 2019
|
||||
* Added: Box shadow option for hover
|
||||
|
||||
== 1.0.1 ==
|
||||
Release date: October 2, 2018
|
||||
* Added: Background image option
|
||||
* Added: Button width option
|
||||
|
||||
== 1.0.0 ==
|
||||
Release date: October 2, 2018
|
||||
* Initial Release
|
||||
@@ -0,0 +1,46 @@
|
||||
# Guillotheme
|
||||
# Copyright (C) 2020 David Matthew
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Guillotheme 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-04-06 21:00+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. Name of the plugin
|
||||
msgid "Guillotheme"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Chops the head right off your WordPress theme, disabling the front-end."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-admin.php:75
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-guillotheme.php:47
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:42
|
||||
msgid "Internal Redirects"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:50
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:72
|
||||
msgid "Redirect post and page permalinks back to the editor page"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:79
|
||||
msgid "Redirect to your own custom url (enter below)"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
# Copyright (C) 2020 Yordan Soares
|
||||
# This file is distributed under the same license as the Hola, Tío Simón plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hola, Tío Simón 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hola-tio-simon\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-20T20:11:52-04:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: hola-tio-simon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hola, Tío Simón"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://yordansoar.es/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin display quotes from song lyrics by Venezuelan Singer-songwriter Simón Díaz in dashboard."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Yordan Soares"
|
||||
msgstr ""
|
||||
|
||||
#: hola-tio-simon.php:69
|
||||
msgid "Quotes from song lyrics by Simón Díaz:"
|
||||
msgstr ""
|
||||
82
spec/fixtures/dynamic_finders/plugin_version/inax-ir/translation_file/languages/inax-fa_IR.po
vendored
Normal file
82
spec/fixtures/dynamic_finders/plugin_version/inax-ir/translation_file/languages/inax-fa_IR.po
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: inax v1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2020-04-15 10:50+0330\n"
|
||||
"Last-Translator: simanet <info@sng.co.ir>\n"
|
||||
"Language-Team: \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.3\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"Language: fa_IR\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin-option.php:9
|
||||
msgid "wp persian option"
|
||||
msgstr "تنظیمات هسته"
|
||||
|
||||
# @ inax
|
||||
#. translators: plugin header field 'Name'
|
||||
#: inax.php:0
|
||||
msgid "inax"
|
||||
msgstr "افزونه خرید شارژ و پرداخت قبض آینکس"
|
||||
|
||||
# @ inax-ir
|
||||
#. translators: plugin header field 'Name'
|
||||
#: inax.php:0
|
||||
msgid "inax-ir"
|
||||
msgstr "افزونه خرید شارژ و پرداخت قبض آینکس"
|
||||
|
||||
# @ inax
|
||||
#: inax-init.php:118
|
||||
msgid "setting"
|
||||
msgstr "تنظیمات"
|
||||
|
||||
# @ inax
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: inax.php:0
|
||||
msgid "http://inax.ir/"
|
||||
msgstr ""
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin-option.php:72
|
||||
msgid "Iran"
|
||||
msgstr "ایران"
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin-option.php:183
|
||||
msgid "Save Changes"
|
||||
msgstr "ذخیرهی تغییرات"
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin.php:12
|
||||
msgid "inax Options"
|
||||
msgstr "تنظیمات آینکس"
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin.php:13
|
||||
msgid "inax1"
|
||||
msgstr ""
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin.php:21
|
||||
msgid "inax About"
|
||||
msgstr "درباره"
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin.php:21
|
||||
msgid "About"
|
||||
msgstr "درباره"
|
||||
|
||||
# @ inax
|
||||
#: inc/inax-admin.php:94
|
||||
#, php-format
|
||||
msgid "inax successful installed. please check %soptions%s"
|
||||
msgstr "افزونه آینکس با موفقیت نصب شد. لطفا %sتنظیمات%s را بررسی نمایید"
|
||||
File diff suppressed because it is too large
Load Diff
402
spec/fixtures/dynamic_finders/plugin_version/jamp-notes/translation_file/languages/jamp-it_IT.po
vendored
Normal file
402
spec/fixtures/dynamic_finders/plugin_version/jamp-notes/translation_file/languages/jamp-it_IT.po
vendored
Normal file
@@ -0,0 +1,402 @@
|
||||
# Copyright (C) 2020 Andrea Porotti
|
||||
# This file is distributed under the same license as the JAMP Notes plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JAMP Notes 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jamp-notes\n"
|
||||
"POT-Creation-Date: 2020-05-29T09:08:29+00:00\n"
|
||||
"PO-Revision-Date: 2020-05-29 11:11+0200\n"
|
||||
"Last-Translator: Andrea Porotti <info@andreaporotti.it>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: it_IT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: jamp\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "JAMP Notes"
|
||||
msgstr "JAMP Notes"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/andreaporotti/just-another-memo-plugin"
|
||||
msgstr "https://github.com/andreaporotti/just-another-memo-plugin"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"This plugin allows you to attach notes to some WordPress elements like "
|
||||
"posts, pages, dashboard sections and others."
|
||||
msgstr ""
|
||||
"Questo plugin ti permette di allegare note ad alcuni elementi di WordPress "
|
||||
"come articoli, pagine, sezioni della dashboard ed altri."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Andrea Porotti"
|
||||
msgstr "Andrea Porotti"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.andreaporotti.it"
|
||||
msgstr "https://www.andreaporotti.it"
|
||||
|
||||
#: admin/class-jamp-admin.php:117 public/class-jamp-public.php:92
|
||||
msgid ""
|
||||
"An error occurred while loading the items list. Please reload the page and "
|
||||
"try again."
|
||||
msgstr ""
|
||||
"Si è verificato un errore durante il caricamento dell'elenco di elementi. "
|
||||
"Ricaricare la pagina e riprovare."
|
||||
|
||||
#: admin/class-jamp-admin.php:118 public/class-jamp-public.php:93
|
||||
msgid ""
|
||||
"An error occurred while moving the note to the trash. Please reload the page "
|
||||
"and try again."
|
||||
msgstr ""
|
||||
"Si è verificato un errore durante lo spostamento della nota nel cestino. "
|
||||
"Ricaricare la pagina e riprovare."
|
||||
|
||||
#: admin/class-jamp-admin.php:342
|
||||
msgid "Note Settings"
|
||||
msgstr "Impostazioni Nota"
|
||||
|
||||
#: admin/class-jamp-admin.php:442 admin/partials/jamp-admin-admin-bar.php:55
|
||||
#: admin/partials/jamp-admin-admin-bar.php:118
|
||||
#: admin/partials/jamp-admin-column.php:46
|
||||
msgid "Author"
|
||||
msgstr "Autore"
|
||||
|
||||
#: admin/class-jamp-admin.php:443
|
||||
msgid "Location"
|
||||
msgstr "Posizione"
|
||||
|
||||
#: admin/class-jamp-admin.php:462 admin/class-jamp-admin.php:567
|
||||
#: includes/class-jamp-cpt.php:31 includes/class-jamp-cpt.php:59
|
||||
msgid "Notes"
|
||||
msgstr "Note"
|
||||
|
||||
#: admin/class-jamp-admin.php:687 admin/class-jamp-admin.php:690
|
||||
msgid "Note updated."
|
||||
msgstr "Nota aggiornata."
|
||||
|
||||
#: admin/class-jamp-admin.php:688
|
||||
msgid "Custom field updated."
|
||||
msgstr "Campo personalizzato aggiornato."
|
||||
|
||||
#: admin/class-jamp-admin.php:689
|
||||
msgid "Custom field deleted."
|
||||
msgstr "Campo personalizzato cancellato."
|
||||
|
||||
#: admin/class-jamp-admin.php:692
|
||||
msgid "Note published."
|
||||
msgstr "Nota pubblicata."
|
||||
|
||||
#: admin/class-jamp-admin.php:693
|
||||
msgid "Note saved."
|
||||
msgstr "Nota salvata."
|
||||
|
||||
#: admin/class-jamp-admin.php:694
|
||||
msgid "Note submitted."
|
||||
msgstr "Nota inviata."
|
||||
|
||||
#: admin/class-jamp-admin.php:695
|
||||
msgid "Note scheduled."
|
||||
msgstr "Nota pianificata."
|
||||
|
||||
#: admin/class-jamp-admin.php:696
|
||||
msgid "Note draft updated."
|
||||
msgstr "Bozza della nota aggiornata."
|
||||
|
||||
#. translators: %s is the number of updated notes.
|
||||
#: admin/class-jamp-admin.php:726
|
||||
msgid "%s note updated."
|
||||
msgid_plural "%s notes updated."
|
||||
msgstr[0] "%s nota aggiornata."
|
||||
msgstr[1] "%s note aggiornate."
|
||||
|
||||
#. translators: %s is the number of locked notes.
|
||||
#: admin/class-jamp-admin.php:728
|
||||
msgid "%s note not updated, somebody is editing it."
|
||||
msgid_plural "%s notes not updated, somebody is editing them."
|
||||
msgstr[0] "%s nota non aggiornata, qualcuno la sta modificando."
|
||||
msgstr[1] "%s note non aggiornate, qualcuno le sta modificando."
|
||||
|
||||
#. translators: %s is the number of deleted notes.
|
||||
#: admin/class-jamp-admin.php:730
|
||||
msgid "%s note permanently deleted."
|
||||
msgid_plural "%s notes permanently deleted."
|
||||
msgstr[0] "%s nota eliminata definitivamente."
|
||||
msgstr[1] "%s note eliminate definitivamente."
|
||||
|
||||
#. translators: %s is the number of trashed notes.
|
||||
#: admin/class-jamp-admin.php:732
|
||||
msgid "%s note moved to the Trash."
|
||||
msgid_plural "%s notes moved to the Trash."
|
||||
msgstr[0] "%s nota spostata nel Cestino."
|
||||
msgstr[1] "%s note spostate nel Cestino."
|
||||
|
||||
#. translators: %s is the number of untrashed notes.
|
||||
#: admin/class-jamp-admin.php:734
|
||||
msgid "%s note restored from the Trash."
|
||||
msgid_plural "%s notes restored from the Trash."
|
||||
msgstr[0] "%s nota ripristinata dal Cestino."
|
||||
msgstr[1] "%s note ripristinate dal Cestino."
|
||||
|
||||
#. translators: %s is the plugin name
|
||||
#: admin/class-jamp-options.php:31
|
||||
msgid "%s Settings"
|
||||
msgstr "Impostazioni %s"
|
||||
|
||||
#: admin/class-jamp-options.php:74
|
||||
msgid "Item types"
|
||||
msgstr "Tipi di elemento"
|
||||
|
||||
#: admin/class-jamp-options.php:100
|
||||
msgid "Enable notes for these item types"
|
||||
msgstr "Abilita le note per questi tipi di elemento"
|
||||
|
||||
#: admin/class-jamp-options.php:117
|
||||
msgid "Plugin uninstall"
|
||||
msgstr "Disinstallazione plugin"
|
||||
|
||||
#: admin/class-jamp-options.php:143
|
||||
msgid "Remove all data on plugin uninstall"
|
||||
msgstr "Rimuovi tutti i dati alla disinstallazione del plugin"
|
||||
|
||||
#: admin/class-jamp-options.php:167
|
||||
msgid "Settings about the supported item types."
|
||||
msgstr "Impostazioni riguardanti i tipi di elemento supportati."
|
||||
|
||||
#: admin/class-jamp-options.php:198
|
||||
msgid ""
|
||||
"Choose which item types you want to add notes to. If you disable an item "
|
||||
"type that has notes, the notes will not be deleted."
|
||||
msgstr ""
|
||||
"Scegliere i tipi di elemento a cui aggiungere le note. Se si disabilita un "
|
||||
"tipo di elemento che possiede delle note, queste non verranno eliminate."
|
||||
|
||||
#: admin/class-jamp-options.php:229
|
||||
msgid "These settings are applied when you uninstall the plugin."
|
||||
msgstr "Queste impostazioni sono applicate quando disinstalli il plugin."
|
||||
|
||||
#: admin/class-jamp-options.php:249
|
||||
msgid ""
|
||||
"Please note: enabling this option, all notes and settings will be "
|
||||
"PERMANENTLY DELETED when you uninstall the plugin."
|
||||
msgstr ""
|
||||
"Attenzione: abilitando questa opzione, tutte le note e le impostazioni "
|
||||
"saranno ELIMINATE DEFINITIVAMENTE quando disinstalli il plugin."
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:29
|
||||
msgid "Global Notes"
|
||||
msgstr "Note Globali"
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:30
|
||||
#: admin/partials/jamp-admin-admin-bar.php:93
|
||||
msgid "New"
|
||||
msgstr "Nuova"
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:57
|
||||
#: admin/partials/jamp-admin-admin-bar.php:120
|
||||
#: admin/partials/jamp-admin-column.php:48
|
||||
msgid "Last edit"
|
||||
msgstr "Ultima modifica"
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:59
|
||||
#: admin/partials/jamp-admin-admin-bar.php:122
|
||||
#: admin/partials/jamp-admin-column.php:50
|
||||
msgid "Created"
|
||||
msgstr "Creata"
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:63
|
||||
#: admin/partials/jamp-admin-admin-bar.php:126
|
||||
#: admin/partials/jamp-admin-column.php:54
|
||||
msgid "Edit"
|
||||
msgstr "Modifica"
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:64
|
||||
#: admin/partials/jamp-admin-admin-bar.php:127
|
||||
#: admin/partials/jamp-admin-admin-bar.php:144
|
||||
msgid "Move to Trash"
|
||||
msgstr "Sposta nel Cestino"
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:74
|
||||
msgid "No global notes."
|
||||
msgstr "Nessuna nota globale."
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:92
|
||||
msgid "Notes for this section"
|
||||
msgstr "Note per questa sezione"
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:137
|
||||
msgid "No notes for this section."
|
||||
msgstr "Nessuna nota per questa sezione."
|
||||
|
||||
#: admin/partials/jamp-admin-admin-bar.php:145
|
||||
msgid "Do you want to move this note to Trash?"
|
||||
msgstr "Vuoi spostare questa nota nel Cestino?"
|
||||
|
||||
#: admin/partials/jamp-admin-column.php:44
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#: admin/partials/jamp-admin-column.php:55
|
||||
msgid "Trash"
|
||||
msgstr "Cestino"
|
||||
|
||||
#: admin/partials/jamp-admin-column.php:86 includes/class-jamp-cpt.php:38
|
||||
msgid "Add New"
|
||||
msgstr "Aggiungi Nuova"
|
||||
|
||||
#: admin/partials/jamp-admin-column.php:111
|
||||
#: admin/partials/jamp-admin-meta-box.php:73
|
||||
msgid "Global"
|
||||
msgstr "Globale"
|
||||
|
||||
#: admin/partials/jamp-admin-column.php:131
|
||||
#: admin/partials/jamp-admin-meta-box.php:78
|
||||
msgid "Section"
|
||||
msgstr "Sezione"
|
||||
|
||||
#: admin/partials/jamp-admin-column.php:137
|
||||
msgid "Note attached to a no longer existing Section."
|
||||
msgstr "Nota associata a una Sezione non più esistente."
|
||||
|
||||
#: admin/partials/jamp-admin-column.php:162
|
||||
#: admin/partials/jamp-admin-meta-box.php:83
|
||||
msgid "Item"
|
||||
msgstr "Elemento"
|
||||
|
||||
#. translators: %s is the item type the note is attached to (eg. post, page...).
|
||||
#: admin/partials/jamp-admin-column.php:170
|
||||
msgid "Note attached to a no longer existing %s."
|
||||
msgstr "Nota associata a un elemento %s non più esistente."
|
||||
|
||||
#: admin/partials/jamp-admin-meta-box.php:69
|
||||
msgid "Select the note location."
|
||||
msgstr "Seleziona la posizione della nota."
|
||||
|
||||
#: admin/partials/jamp-admin-meta-box.php:88
|
||||
msgid "Select the Section."
|
||||
msgstr "Seleziona la Sezione."
|
||||
|
||||
#: admin/partials/jamp-admin-meta-box.php:90
|
||||
#: admin/partials/jamp-admin-meta-box.php:105
|
||||
#: admin/partials/jamp-admin-meta-box.php:120
|
||||
msgid "select..."
|
||||
msgstr "seleziona..."
|
||||
|
||||
#: admin/partials/jamp-admin-meta-box.php:103
|
||||
msgid "Select the Item type."
|
||||
msgstr "Seleziona il tipo di Elemento."
|
||||
|
||||
#: admin/partials/jamp-admin-meta-box.php:118
|
||||
msgid "Select the Item."
|
||||
msgstr "Seleziona l'Elemento."
|
||||
|
||||
#: includes/class-jamp-cpt.php:29
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Notes"
|
||||
msgstr "Note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:30
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Note"
|
||||
msgstr "Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:32
|
||||
msgid "Note"
|
||||
msgstr "Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:33
|
||||
msgid "Note Archives"
|
||||
msgstr "Archivi note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:34
|
||||
msgid "Note Attributes"
|
||||
msgstr "Attributi Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:35
|
||||
msgid "Parent Note:"
|
||||
msgstr "Nota genitore:"
|
||||
|
||||
#: includes/class-jamp-cpt.php:36
|
||||
msgid "All Notes"
|
||||
msgstr "Tutte le Note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:37
|
||||
msgid "Add New Note"
|
||||
msgstr "Aggiungi Nuova Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:39
|
||||
msgid "New Note"
|
||||
msgstr "Nuova Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:40
|
||||
msgid "Edit Note"
|
||||
msgstr "Modifica Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:41
|
||||
msgid "Update Note"
|
||||
msgstr "Aggiorna Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:42
|
||||
msgid "View Note"
|
||||
msgstr "Visualizza Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:43
|
||||
msgid "View Notes"
|
||||
msgstr "Visualizza Note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:44
|
||||
msgid "Search Notes"
|
||||
msgstr "Cerca Note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:45
|
||||
msgid "Not found"
|
||||
msgstr "Nessuna nota trovata"
|
||||
|
||||
#: includes/class-jamp-cpt.php:46
|
||||
msgid "Not found in Trash"
|
||||
msgstr "Nessuna nota trovata nel Cestino"
|
||||
|
||||
#: includes/class-jamp-cpt.php:47
|
||||
msgid "Featured image"
|
||||
msgstr "Immagine in evidenza"
|
||||
|
||||
#: includes/class-jamp-cpt.php:48
|
||||
msgid "Set featured image"
|
||||
msgstr "Imposta immagine in evidenza"
|
||||
|
||||
#: includes/class-jamp-cpt.php:49
|
||||
msgid "Remove featured image"
|
||||
msgstr "Rimuovi immagine in evidenza"
|
||||
|
||||
#: includes/class-jamp-cpt.php:50
|
||||
msgid "Use as featured image"
|
||||
msgstr "Utilizza come immagine in evidenza"
|
||||
|
||||
#: includes/class-jamp-cpt.php:51
|
||||
msgid "Insert into Note"
|
||||
msgstr "Inserisci nella Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:52
|
||||
msgid "Uploaded to this Note"
|
||||
msgstr "Caricato su questa Nota"
|
||||
|
||||
#: includes/class-jamp-cpt.php:53
|
||||
msgid "Notes list"
|
||||
msgstr "Lista Note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:54
|
||||
msgid "Notes list navigation"
|
||||
msgstr "Esplorazione note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:55
|
||||
msgid "Filter Notes list"
|
||||
msgstr "Filtra la lista delle Note"
|
||||
|
||||
#: includes/class-jamp-cpt.php:61
|
||||
msgid "A note you can attach to some WordPress dashboard elements."
|
||||
msgstr ""
|
||||
"Una nota che puoi allegare ad alcuni elementi della dashboard di WordPress."
|
||||
@@ -0,0 +1,53 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSM's User Locale 1.3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jsm-user-locale\n"
|
||||
"POT-Creation-Date: 2020-05-08 08:21-0700\n"
|
||||
"PO-Revision-Date: 2020-05-08 08:21-0700\n"
|
||||
"Last-Translator: JS Morisset <jsm@surniaulula.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr_FR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.6\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: jsm-user-locale.php:271
|
||||
msgid "The %1$s plugin requires %2$s version %3$s or newer and has been deactivated."
|
||||
msgstr "L'extension %1$s nécessite %2$s version %3$s ou plus récente et a été désactivée."
|
||||
|
||||
#: jsm-user-locale.php:274
|
||||
msgid "Please upgrade %1$s before trying to re-activate the %2$s plugin."
|
||||
msgstr "Veuillez mettre à jour %1$s avant d'essayer de réactiver l'extension %2$s."
|
||||
|
||||
#: jsm-user-locale.php:398
|
||||
msgctxt "toolbar menu title"
|
||||
msgid "default"
|
||||
msgstr "défaut"
|
||||
|
||||
#: jsm-user-locale.php:453
|
||||
msgctxt "toolbar menu item"
|
||||
msgid "Default Locale"
|
||||
msgstr "Langue par défaut"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "JSM's User Locale Selector"
|
||||
msgstr "JSM's User Locale Selector"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/extend/plugins/jsm-user-locale/"
|
||||
msgstr "https://surniaulula.com/extend/plugins/jsm-user-locale/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Add a quick and easy user locale / language selector in the WordPress admin back-end and front-end toolbar menus."
|
||||
msgstr "Ajoute un sélecteur de langue facile pour les utilisateurs dans la barre d'outils WordPress d'avant et arrière."
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr "JS Morisset"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/"
|
||||
msgstr "https://surniaulula.com/"
|
||||
@@ -0,0 +1,105 @@
|
||||
# Copyright (C) 2020 kikushima
|
||||
# This file is distributed under the same license as the Kikushima Jobs plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Kikushima Jobs 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/kikushima-jobs\n"
|
||||
"Last-Translator: KIKU TOU <info@kikushima-japan.co.jp>\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-05-19T08:30:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: kikushima-jobs\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Kikushima Jobs"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add jobs shortcode to display jobs on the recruit page"
|
||||
msgstr "ショットコードを使って、リクルートページに仕事情報を簡単に表示できます。"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "kikushima"
|
||||
msgstr "菊島株式会社"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://kikushima-japan.co.jp"
|
||||
msgstr "https://kikushima-japan.co.jp"
|
||||
|
||||
#: kikushima-jobs.php:55
|
||||
msgid "job"
|
||||
msgstr "仕事"
|
||||
|
||||
#: kikushima-jobs.php:56
|
||||
#: kikushima-jobs.php:66
|
||||
msgid "jobs"
|
||||
msgstr "仕事"
|
||||
|
||||
#: kikushima-jobs.php:57
|
||||
#: kikushima-jobs.php:58
|
||||
#: kikushima-jobs.php:60
|
||||
msgid "new job"
|
||||
msgstr "新規作成"
|
||||
|
||||
#: kikushima-jobs.php:59
|
||||
msgid "edit job"
|
||||
msgstr "編集"
|
||||
|
||||
#: kikushima-jobs.php:61
|
||||
#: kikushima-jobs.php:62
|
||||
msgid "show job"
|
||||
msgstr "表示"
|
||||
|
||||
#: kikushima-jobs.php:63
|
||||
msgid "search job"
|
||||
msgstr "検索"
|
||||
|
||||
#: kikushima-jobs.php:64
|
||||
msgid "no such job."
|
||||
msgstr "仕事が見つかりません。"
|
||||
|
||||
#: kikushima-jobs.php:65
|
||||
msgid "no jobs in trash."
|
||||
msgstr "ゴミ箱に仕事がありません。"
|
||||
|
||||
#: kikushima-jobs.php:104
|
||||
#: kikushima-jobs.php:105
|
||||
#: kikushima-jobs.php:106
|
||||
#: kikushima-jobs.php:116
|
||||
msgid "tag"
|
||||
msgstr "タグ"
|
||||
|
||||
#: kikushima-jobs.php:107
|
||||
msgid "tags"
|
||||
msgstr "タグ"
|
||||
|
||||
#: kikushima-jobs.php:108
|
||||
msgid "edit tag"
|
||||
msgstr "タグを編集"
|
||||
|
||||
#: kikushima-jobs.php:109
|
||||
msgid "show tag"
|
||||
msgstr "タグを表示"
|
||||
|
||||
#: kikushima-jobs.php:110
|
||||
msgid "update tag"
|
||||
msgstr "タグを更新"
|
||||
|
||||
#: kikushima-jobs.php:111
|
||||
#: kikushima-jobs.php:112
|
||||
msgid "new tag"
|
||||
msgstr "タグを新規作成"
|
||||
|
||||
#: kikushima-jobs.php:167
|
||||
msgid "We are not hiring at the moment."
|
||||
msgstr "現在は募集しておりません。"
|
||||
|
||||
msgid "show detail"
|
||||
msgstr "詳細をみる"
|
||||
|
||||
msgid "close detail"
|
||||
msgstr "詳細を閉じる"
|
||||
@@ -0,0 +1,130 @@
|
||||
# Copyright (C) 2020 kikushima
|
||||
# This file is distributed under the same license as the Kikushima Jobs plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Kikushima Recipes 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/kikushima-recipes\n"
|
||||
"Last-Translator: KIKU TOU <info@kikushima-japan.co.jp>\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-05-19T08:30:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: kikushima-recipes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Kikushima Recipes"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add recipes shortcode to display recipes on the page"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "kikushima"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://kikushima-japan.co.jp"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:55
|
||||
msgid "recipe"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:56
|
||||
#: kikushima-jobs.php:66
|
||||
msgid "recipes"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:57
|
||||
#: kikushima-jobs.php:58
|
||||
#: kikushima-jobs.php:60
|
||||
msgid "new recipe"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:59
|
||||
msgid "edit recipe"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:61
|
||||
#: kikushima-jobs.php:62
|
||||
msgid "show recipe"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:63
|
||||
msgid "search recipe"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:64
|
||||
msgid "no such recipe."
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:65
|
||||
msgid "no recipes in trash."
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:104
|
||||
#: kikushima-jobs.php:105
|
||||
#: kikushima-jobs.php:106
|
||||
#: kikushima-jobs.php:116
|
||||
msgid "tag"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:107
|
||||
msgid "tags"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:108
|
||||
msgid "edit tag"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:109
|
||||
msgid "show tag"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:110
|
||||
msgid "update tag"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:111
|
||||
#: kikushima-jobs.php:112
|
||||
msgid "new tag"
|
||||
msgstr ""
|
||||
|
||||
msgid "category"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:107
|
||||
msgid "categories"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:108
|
||||
msgid "edit category"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:109
|
||||
msgid "show category"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:110
|
||||
msgid "update category"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:111
|
||||
#: kikushima-jobs.php:112
|
||||
msgid "new category"
|
||||
msgstr ""
|
||||
|
||||
#: kikushima-jobs.php:167
|
||||
msgid "No recipes available at the moment."
|
||||
msgstr ""
|
||||
|
||||
msgid "show detail"
|
||||
msgstr ""
|
||||
|
||||
msgid "close detail"
|
||||
msgstr ""
|
||||
|
||||
57
spec/fixtures/dynamic_finders/plugin_version/last-9-photos-webcomponent/change_log/changelog.txt
vendored
Normal file
57
spec/fixtures/dynamic_finders/plugin_version/last-9-photos-webcomponent/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
# v2.6.1 (May 19, 2020)
|
||||
* New: Wordpress Plugin available on [store](https://wordpress.org/plugins/last-9-photos-webcomponent/).
|
||||
|
||||
[](https://www.paypal.me/ptkdev) [](https://www.patreon.com/ptkdev) [](https://github.com/sponsors/ptkdev/) [](https://ko-fi.com/ptkdev)
|
||||
|
||||
|
||||
# v2.6.0 (May 18, 2020)
|
||||
* Feature: Overwrite CSS Style with selector `::part`
|
||||
* New attribute: mouse-hover
|
||||
* New attribute: show-title
|
||||
* New attribute: shadows
|
||||
* Fix: Wordpress Plugin
|
||||
|
||||
# v2.5.0 (May 04, 2020)
|
||||
* Fix: now you can use multiple webcomponents in the same html page (#3)
|
||||
* NOTE: better to use the full close tag `<instagram-widget></instagram-widget>` than short `/>`
|
||||
|
||||
# v2.4.0 (May 02, 2020)
|
||||
* New attribute: `force-square`
|
||||
* Feature: wordpress-plugin
|
||||
|
||||
# v2.3.0 (May 01, 2020)
|
||||
* Fix: `border-corners` and `border-spacing` now work without `grid` attribute.
|
||||
* Fix: NPM Module give errors with require/import
|
||||
* Update: examples
|
||||
|
||||
# v2.2.0 (April 30, 2020)
|
||||
* Fix: `grid` now is more responsive (now use `calc()` function: `100%` - `spacing/padding/margin`)
|
||||
* Fix: default values now work (hello object reference my old dark friend)
|
||||
|
||||
# v2.1.1 (April 28, 2020)
|
||||
* New attribute: cache
|
||||
* New attribute: border-corners
|
||||
* New attribute: border-spacing
|
||||
* Performance: now component send api request only if you change `username`
|
||||
* Fix: refresh attributes random don't work
|
||||
|
||||
# v2.0.0 (April 28, 2020)
|
||||
* Removed "ptkdev-" prefix
|
||||
* Module for Browserify/Webpack (run: `npm install @ptkdev/webcomponent-instagram-widget`)
|
||||
* Fix: Grid bug
|
||||
* Installation guidelines: Browserify / Webpack / ReactJS / Angular / Wordpress
|
||||
|
||||
# v1.1.1 (April 27, 2020)
|
||||
* Update CDN (New url!)
|
||||
* Update build/dist
|
||||
|
||||
# v1.1.0 (April 27, 2020)
|
||||
* New attribute: items-limit
|
||||
* New attribute: grid
|
||||
* New attribute: image-width / image-height
|
||||
|
||||
# v1.0.1 (April 26, 2020)
|
||||
* Update CDN
|
||||
|
||||
# v1.0.0 (April 26, 2020)
|
||||
* First Release.
|
||||
@@ -0,0 +1,166 @@
|
||||
# Copyright (C) 2020 Ariel
|
||||
# This file is distributed under the same license as the Leira Letter Avatar plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Leira Letter Avatar 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/leira-letter-avatar\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-05-12T07:15:46+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: leira-letter-avatar\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Leira Letter Avatar"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/leira-letter-avatar/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enables custom avatars for users base on its initial letters."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ariel"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://leira.dev"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:138
|
||||
#: admin/class-leira-letter-avatar-admin.php:164
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:139
|
||||
msgid "Letters (Generated)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:179
|
||||
#: admin/class-leira-letter-avatar-admin.php:180
|
||||
msgid "Letter Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:197
|
||||
#: admin/class-leira-letter-avatar-admin.php:294
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:205
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:207
|
||||
msgid "Letter Avatar is a lightweight plugin that helps you to add simple good looking user avatars"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:208
|
||||
msgid "The plugin is highly customizable by using settings page and hooks."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:214
|
||||
msgid "For more information:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:215
|
||||
msgid "<a href=\"https://wordpress.org/support/\">Support</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:216
|
||||
msgid "<a href=\"https://github.com/arielhr1987/leira-letter-avatar/issues\">Report an issue</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:256
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:264
|
||||
msgid "Shape"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:272
|
||||
msgid "Letters"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:280
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:298
|
||||
msgid "Letter Avatar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:331
|
||||
msgid "Enable use of letter avatar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:348
|
||||
msgid "Shape settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:353
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:359
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:384
|
||||
msgid "Letters settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:387
|
||||
msgid "Fill avatar image with at most"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:389
|
||||
msgid "1 letter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:390
|
||||
msgid "2 letters"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:394
|
||||
msgid "The letters are the initials of the user taken from first name and last name. If those fields are not set, the plugin will try to determine letters base on Nickname, Display Name, username or email, in that order."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:403
|
||||
msgid "Make letters <b>bold</b>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:412
|
||||
msgid "Make letters uppercase"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:415
|
||||
msgid "The color of the letters is determined automatically to ensure best contrast."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:436
|
||||
msgid "Background settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:443
|
||||
msgid "Automatically determine background color for each user (Recommended)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:450
|
||||
msgid "Use this background color for all users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:463
|
||||
msgid "Use a random background color from the list below:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-leira-letter-avatar-admin.php:470
|
||||
msgid "Use comma to separate each color. Colors should be in hex format (i.e. fc91ad)."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,96 @@
|
||||
# Copyright (C) 2020 TechieSandesh
|
||||
# This file is distributed under the same license as the Lightweight Live Ajax Search package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lightweight Live Ajax Search 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/lightweight-live-ajax-search\n"
|
||||
"POT-Creation-Date: 2020-05-02 08:47:51+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"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: classes/class-wpls-admin.php:72 classes/class-wpls-admin.php:73
|
||||
#: includes/settings-page.php:16
|
||||
msgid "Live Search"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wpls-search-shortcode.php:69
|
||||
#: classes/class-wpls-search-shortcode.php:94
|
||||
msgid "Type and Search..."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wpls-search-shortcode.php:136
|
||||
msgid "Sorry, no search results were found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:14
|
||||
msgid "Lightweight Live Ajax Search Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:17
|
||||
msgid "Settings to control the live search functionality & it's search area."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:20
|
||||
msgid "Replace Theme's Search Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:30
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:37
|
||||
msgid "Search Within Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:82
|
||||
msgid "Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:83
|
||||
msgid ""
|
||||
"If you do not want to replace them's search form, then copy below shortcode "
|
||||
"and paste it into your post, page, or text widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-page.php:88
|
||||
msgid "Display Live Search Box"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Lightweight Live Ajax Search"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://techiesandesh.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Live AJAX based search functionality. This plugin provides shortcode to "
|
||||
"display live search input box."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "TechieSandesh"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sandeshjangam.com"
|
||||
msgstr ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/master-elements/change_log/changelog.txt
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/master-elements/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
05/06/2020
|
||||
|
||||
Version 0.3.4
|
||||
|
||||
[Fix] Navigation Sticky typo issues
|
||||
|
||||
04/06/2020
|
||||
@@ -0,0 +1,778 @@
|
||||
# Copyright (C) 2020 Mnumi
|
||||
# This file is distributed under the same license as the MnumiDesigner plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mnumidesigner 0.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mnumidesigner\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-06-01T11:29:23+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: mnumidesigner\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-mnumidesigner-settings.php:355
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:209
|
||||
msgid "MnumiDesigner"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://mnumidesigner.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "MnumiDesigner is an online application for photo products. You can design photo calendars, photo albums or any other photo products sold in WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Mnumi"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:104
|
||||
msgid "Projects"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:142
|
||||
msgid "Customer projects"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:159
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:210
|
||||
msgid "Thumb"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:160
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:211
|
||||
msgid "Project ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:161
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:212
|
||||
msgid "Linked to"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:162
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:213
|
||||
msgid "Created At"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:163
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:214
|
||||
msgid "Updated At"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:164
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:215
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:218
|
||||
msgid "Remove At"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:292
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:408
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:195
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:155
|
||||
#: includes/admin/backbone/html-wc-product.php:32
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:299
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:417
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:306
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:424
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:201
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-customer-projects-list-table.php:310
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:428
|
||||
msgid "Restore"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:115
|
||||
msgid "API Access"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:121
|
||||
msgid "Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:127
|
||||
msgid "Additional"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:144
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:155
|
||||
msgid "\"Add to Cart\" button label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:166
|
||||
msgid "Emulate HTTP requests"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:177
|
||||
msgid "API Host"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:191
|
||||
msgid "Products with attached MnumiDesigner template will have this text displayed in Add to Cart button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:204
|
||||
msgid "When Wordpress server does not understand some HTTP Methods, e.g.: DELETE, this option should be turned on"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:205
|
||||
msgid "More info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:228
|
||||
msgid "Enter with your API Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:239
|
||||
msgid "Enter with your API Key ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:275
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:380
|
||||
msgid "Buy Pro version"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-settings.php:431
|
||||
msgid "Personalize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:58
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:167
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:289
|
||||
msgid "Create new template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:122
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:160
|
||||
msgid "Templates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:162
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:142
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-templates-list-table.php:167
|
||||
msgid "Search Templates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:48
|
||||
msgid "Create new translation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:51
|
||||
msgid "Edit translation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:102
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:140
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:516
|
||||
msgid "Translations"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:167
|
||||
#: includes/admin/backbone/html-translations.php:18
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:168
|
||||
msgid "Locale"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:169
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:483
|
||||
msgid "Translation domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mnumidesigner-translations-list-table.php:170
|
||||
msgid "Last modified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:97
|
||||
#: includes/woocommerce/class-mnumidesigner-wc-cart.php:218
|
||||
#: includes/woocommerce/class-mnumidesigner-wc-cart.php:247
|
||||
msgid "Project"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:127
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:160
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:162
|
||||
msgid "Download PDF Album"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:176
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:194
|
||||
msgid "Download PDF Cover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:198
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-order-data.php:218
|
||||
msgid "Download PDF Book"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:178
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:292
|
||||
msgid "Attach existing template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:232
|
||||
msgid "Number of pages in customer project"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:233
|
||||
msgid "Number of pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:235
|
||||
msgid "Enter number of pages customer projects should have."
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:248
|
||||
msgid "Additional price per page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:275
|
||||
msgid "Custom translation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/woocommerce/class-mnumidesigner-wc-product.php:339
|
||||
msgid "Click to toggle"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:242
|
||||
msgid "View MnumiDesigner documentation"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:243
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:248
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:312
|
||||
msgid "Your MnumiDesigner plugin needs to be configured to work properly"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:313
|
||||
msgid "Enter your MnumiDesigner Api access credentials"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s api access expiration date
|
||||
#: class-mnumidesigner.php:322
|
||||
msgid "You are using demo version of MnumiDesigner plugin which means that you can use it until: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:393
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:394
|
||||
msgid "Own"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:395
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:396
|
||||
msgid "Pending removal"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:407
|
||||
msgid "Filter by template type"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:408
|
||||
#: includes/admin/backbone/html-new-project-template-form.php:22
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:409
|
||||
#: includes/admin/backbone/html-new-project-template-form.php:24
|
||||
msgid "Album"
|
||||
msgstr ""
|
||||
|
||||
#: class-mnumidesigner.php:410
|
||||
#: includes/admin/backbone/html-new-project-template-form.php:26
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-new-project-template-form.php:16
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-new-project-template-form.php:28
|
||||
msgid "Business card"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-new-project-template-form.php:36
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-new-project-template-form.php:40
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-pagination.php:35
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-pagination.php:41
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-pagination.php:47
|
||||
msgid "Current Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-pagination.php:64
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-pagination.php:70
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-translations.php:22
|
||||
msgid "Base locale"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-translations.php:25
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-translations.php:26
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-wc-product.php:22
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-wc-product.php:23
|
||||
msgid "Pages count"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-wc-product.php:28
|
||||
msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-wc-product.php:76
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/backbone/html-wc-product.php:85
|
||||
msgid "Load more"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-api-client.php:57
|
||||
msgid "MnumiDesigner connection is not configured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-api.php:104
|
||||
msgid "Unable to authorize with MnumiDesigner server. Check your API Access credentials."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-api.php:466
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:776
|
||||
msgid "The project cannot be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:169
|
||||
msgid "No items found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:211
|
||||
msgid "Select bulk action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:215
|
||||
msgid "Bulk Actions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:227
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:495
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:721
|
||||
msgid "Show more details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:744
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mnumidesigner-backbone-list-table.php:757
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:65
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:97
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:126
|
||||
msgid "The ID for the parent of the object."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:83
|
||||
msgid "Template ID of project to attach to product."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:101
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:130
|
||||
msgid "Template ID of project ."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:142
|
||||
msgid "Product variation id."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:216
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:254
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:259
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:351
|
||||
msgid "Offset the result set by a specific number of items."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:223
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:358
|
||||
msgid "Order sort attribute ascending or descending."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:231
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:366
|
||||
msgid "Sort collection by object attribute."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:242
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:394
|
||||
msgid "Filter collection by object type."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:299
|
||||
msgid "Template does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:307
|
||||
msgid "Template is not attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:444
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:498
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:551
|
||||
msgid "Product does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:459
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:511
|
||||
msgid "Project does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:463
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:515
|
||||
msgid "Project is not a template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:467
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:519
|
||||
msgid "Project is already attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:691
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1004
|
||||
msgid "An alphanumeric identifier for the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:697
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1010
|
||||
msgid "Machine type of the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:703
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1016
|
||||
msgid "Localized type of the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:709
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1022
|
||||
msgid "Label of the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:715
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1028
|
||||
msgid "Creation date of the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:722
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1035
|
||||
msgid "Last modification date of the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:729
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1042
|
||||
msgid "Number of pages in the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:735
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1054
|
||||
msgid "Indicates if project is derived from template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:741
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1060
|
||||
msgid "Template ID the derived project is based on."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:747
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1066
|
||||
msgid "Indicates if project is global."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-products-controller.php:753
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1072
|
||||
msgid "Indicates if project will be removed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:55
|
||||
msgid "Type of newly created project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:67
|
||||
msgid "Width (in mm) of page in project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:76
|
||||
msgid "Height (in mm) of page in project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:84
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:121
|
||||
msgid "URL to redirect back to after creating project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:105
|
||||
msgid "Woocommerce product ID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:113
|
||||
msgid "Number of pages in created project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:126
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:190
|
||||
msgid "Available templates provided as base for project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:141
|
||||
msgid "The ID of the project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:174
|
||||
msgid "The ID of the project to redirect to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:184
|
||||
msgid "URL to redirect back to after saving project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:205
|
||||
msgid "The ID of the project to duplicate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:224
|
||||
msgid "The ID of the project to restore."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:377
|
||||
msgid "Filter collection by object ids."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:383
|
||||
msgid "Filter collection by template id."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:389
|
||||
msgid "Fiter collection by object attribute."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:406
|
||||
msgid "Filter collection to objects changeable page count."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:411
|
||||
msgid "Filter collection to objects with provided page count."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:417
|
||||
msgid "Filter collection to objects with removal date set."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:422
|
||||
msgid "Filter collection by object ownership."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:649
|
||||
msgid "MnumiDesigner configuration is not set."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:729
|
||||
msgid "Problem when duplicating project."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:734
|
||||
msgid "The project cannot be duplicated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:816
|
||||
msgid "The project cannot be restored."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:849
|
||||
msgid "The project cannot be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1048
|
||||
msgid "Number of priceable pages in the project"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1078
|
||||
msgid "Date when project will be removed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1085
|
||||
msgid "Products to which this project is attached to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-projects-controller.php:1105
|
||||
msgid "WooCommerce Order Items to which this project is attached to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-settings-controller.php:238
|
||||
msgid "Secret key ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-settings-controller.php:244
|
||||
msgid "Secret key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-settings-controller.php:250
|
||||
msgid "Domain to which redirect to when opening designer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-settings-controller.php:256
|
||||
msgid "Available project types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-settings-controller.php:262
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-settings-controller.php:274
|
||||
msgid "Is demo version access"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-settings-controller.php:268
|
||||
msgid "Is demo version active"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:62
|
||||
msgid "Unique identifier of the translation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:105
|
||||
msgid "Filter collection by object name."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:110
|
||||
msgid "Filter collection by object locale."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:286
|
||||
msgid "Translation already exists."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:371
|
||||
msgid "Translation file is not a file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:375
|
||||
msgid "Insufficient file permissions for removing translation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:381
|
||||
msgid "Translation cannot be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:471
|
||||
msgid "Unique id of translation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:477
|
||||
msgid "Name for translation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:490
|
||||
msgid "Locale of translation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:496
|
||||
msgid "Translation fallback locale"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:502
|
||||
msgid "The date the object was last modified, in the site's timezone."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:509
|
||||
msgid "URL to the object"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:524
|
||||
msgid "ID of translation entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/endpoints/class-mnumidesigner-rest-translations-controller.php:530
|
||||
msgid "Translation value"
|
||||
msgstr ""
|
||||
|
||||
#: includes/shortcodes/class-mnumidesigner-shortcode-edit-project-link.php:36
|
||||
msgid "Edit project"
|
||||
msgstr ""
|
||||
|
||||
#: includes/woocommerce/class-mnumidesigner-wc-cart.php:108
|
||||
msgid "Add to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/woocommerce/class-mnumidesigner-wc-cart.php:180
|
||||
msgid "Invalid project ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/woocommerce/shortcodes/class-mnumidesigner-wc-shortcode-new-project-link.php:33
|
||||
msgid "Add project"
|
||||
msgstr ""
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/movable/translation_file/languages/movable.pot
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/movable/translation_file/languages/movable.pot
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
# Copyright (C) 2020 Block Handbook
|
||||
# This file is distributed under the same license as the Movable plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Movable 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/movable\n"
|
||||
"Last-Translator: Lee Shadle <lee@blockhandbook.com>\n"
|
||||
"Language-Team: BlockHandbook <lee@blockhandbook.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-19T01:40:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: movable\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Movable"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://blockhandbook.com/plugins/movable"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Drag, Drop, Duplicate, Delete, Select & Insert blocks from the block editor sidebar."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Block Handbook"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://blockhandbook.com"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:9
|
||||
msgid "Drag & Drop"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:9
|
||||
msgid "Drag, Drop, Duplicate, Delete, Select & Insert blocks from the sidebar."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:9
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:9
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
* Initial Public Release
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,105 @@
|
||||
## Changelog ##
|
||||
|
||||
= 1.2 - May 23 2020 =
|
||||
|
||||
* Template - 'Login & Register Form' element template adjusted.
|
||||
* Tweak - Online documentation and Support forum link changed in admin area header.
|
||||
* Tweak - Change log link changed in welcome page.
|
||||
* Tweak - Meta box tab menu width adjusted.
|
||||
* Tweak - Unwanted '$options' and '$elements' variables removed in all 'loadmore' ajax call functions.
|
||||
* Fix - Icon picker switching icons pack 'option' tag not rendered properly, because of 'wp_kses' allowed html.
|
||||
* Fix - Data validation and sanitization improved.
|
||||
* Dev - Filter introduced 'octagon_portfolio_general_meta_fields' to modify portfolio general fields.
|
||||
* Dev - Filter introduced 'octagon_portfolio_meta_fields_group' to modify portfolio tabs.
|
||||
* Dev - Filter introduced 'octagon_testimonial_general_meta_fields' to modify testimonial general fields.
|
||||
* Dev - Filter introduced 'octagon_testimonial_meta_fields_group' to modify testimonial tabs.
|
||||
* Dev - Filter introduced 'octagon_team_general_meta_fields' to modify team general fields.
|
||||
* Dev - Filter introduced 'octagon_team_social_meta_fields' to modify team social fields.
|
||||
* Dev - Filter introduced 'octagon_team_social_default_fields' to set the team social default repeatable field values.
|
||||
* Dev - Filter introduced 'octagon_team_meta_fields_group' to modify team tabs.
|
||||
|
||||
Files Change:
|
||||
* ../core/assets/css/admin.css
|
||||
* ../core/class-enqueue-scripts.php
|
||||
* ../core/select2-data.php
|
||||
* ../core/views/html-header.php
|
||||
* ../core/views/html-welcome.php
|
||||
* ../core/icon-manager/class-icon-manager.php
|
||||
* ../includes/list-tables/class-admin-list-table-templates.php
|
||||
* ../includes/list-tables/class-admin-list-table-testimonial.php
|
||||
* ../includes/class-ajax-calls.php
|
||||
* ../includes/init-meta-fields.php
|
||||
* ../shortcodes/login-register-form.php
|
||||
|
||||
|
||||
= 1.2 - May 21 2020 =
|
||||
* Tweak - Online documentation and Support forum link changed in admin area header.
|
||||
* Tweak - Change log link changed in welcome page.
|
||||
* Tweak - Meta box tab menu width adjusted.
|
||||
* Tweak - Unwanted '$options' and '$elements' variables removed in all 'loadmore' ajax call functions.
|
||||
* Fix - Icon picker switching icons pack 'option' tag not rendered properly, because of 'wp_kses' allowed html.
|
||||
* Dev - Filter introduced 'octagon_portfolio_general_meta_fields' to modify portfolio general fields.
|
||||
* Dev - Filter introduced 'octagon_portfolio_meta_fields_group' to modify portfolio tabs.
|
||||
* Dev - Filter introduced 'octagon_testimonial_general_meta_fields' to modify testimonial general fields.
|
||||
* Dev - Filter introduced 'octagon_testimonial_meta_fields_group' to modify testimonial tabs.
|
||||
* Dev - Filter introduced 'octagon_team_general_meta_fields' to modify team general fields.
|
||||
* Dev - Filter introduced 'octagon_team_social_meta_fields' to modify team social fields.
|
||||
* Dev - Filter introduced 'octagon_team_social_default_fields' to set the team social default repeatable field values.
|
||||
* Dev - Filter introduced 'octagon_team_meta_fields_group' to modify team tabs.
|
||||
|
||||
Files Change:
|
||||
* ../core/assets/css/admin.css
|
||||
* ../core/views/html-header.php
|
||||
* ../core/views/html-welcome.php
|
||||
* ../core/icon-manager/class-icon-manager.php
|
||||
* ../includes/class-ajax-calls.php
|
||||
* ../includes/init-meta-fields.php
|
||||
|
||||
|
||||
= 1.1 - May 21 2020 =
|
||||
|
||||
* Enhancement - Add 'Style Section' for Notices on 'Compare Products' element.
|
||||
* Enhancement - Add 'Style Section' for Notices on 'Wishlist' element.
|
||||
* Enhancement - Add 'Style Section' for ( Excerpt, Client Name and Client Job ) on 'Testimonial' element.
|
||||
* Enhancement - Add 'Content Section' for Load More on 'Content Type' element.
|
||||
* Enhancement - Add 'Style Section' for ( Load More, Page Numbers, Next/Previous ) on 'Content Type' element.
|
||||
* Enhancement - Add 'Content Section' for Load More on 'Content Type List' element.
|
||||
* Enhancement - Add 'Style Section' for ( Load More, Page Numbers, Next/Previous ) on 'Content Type List' element.
|
||||
* Enhancement - Add 'Content Section' for Load More on 'Portfolio' element.
|
||||
* Enhancement - Add 'Style Section' for ( Load More, Page Numbers, Next/Previous ) on 'Portfolio' element.
|
||||
* Enhancement - Add 'Content Section' for Load More on 'Product' element.
|
||||
* Enhancement - Add 'Style Section' for ( Load More, Page Numbers, Next/Previous ) on 'Product' element.
|
||||
* Enhancement - Add 'Style Section' for ( Title, Input and Button ) on 'AJAX Product Search' element.
|
||||
* Template - Few element templates updated( Compare products, Content type, Content type list, Portfolio, Products, Wishlist ).
|
||||
* Tweak - Removed '$wrapper_attr[]' in /shortcodes/compare-products.php and change into elementor function 'get_render_attribute_string()'.
|
||||
* Tweak - Dynamic CSS file updated.
|
||||
* Fix - Gradient palette style not applies in Advance Button, when 'From Gradient Palette' option used.
|
||||
* Fix - 'Icon Position' and 'Only Icon' not shown in 'Image Box' element.
|
||||
* Fix - Number pagination CSS style corrected.
|
||||
* Localization - Translations strings updated.
|
||||
|
||||
Files Change:
|
||||
* ../core/assets/css/gradient-palette.css
|
||||
* ../core/assets/css/octagon.css
|
||||
* ../core/class-enqueue-scripts.php
|
||||
* ../includes/class-enqueue-scripts.php
|
||||
* ../includes/helper-functions.php
|
||||
* ../modules/ajax-product-search.php
|
||||
* ../modules/compare-products.php
|
||||
* ../modules/content-type.php
|
||||
* ../modules/content-type-list.php
|
||||
* ../modules/image-box.php
|
||||
* ../modules/portfolio.php
|
||||
* ../modules/products.php
|
||||
* ../modules/wishlist.php
|
||||
* ../modules/testimonial-slider.php
|
||||
* ../shortcodes/compare-products.php
|
||||
* ../shortcodes/content-type.php
|
||||
* ../shortcodes/content-type-list.php
|
||||
* ../shortcodes/portfolio.php
|
||||
* ../shortcodes/products.php
|
||||
* ../shortcodes/wishlist.php
|
||||
* ../languages/octagon-elements-lite-for-elementor.pot
|
||||
|
||||
= 1.0 - May 20 2020 =
|
||||
* Info - Initial Release.
|
||||
@@ -0,0 +1,66 @@
|
||||
# Copyright (C) 2020 Erika Gili
|
||||
# This file is distributed under the same license as the Gripeless - Encourage complaining plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gripeless - Encourage complaining 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/penguinet-gripeless\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-05-30T16:34:01+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: penguinet-gripeless\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gripeless - Encourage complaining"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.penguinet.it"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Make reporting issues frictionless"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Erika Gili"
|
||||
msgstr ""
|
||||
|
||||
#: penguinet-gripeless.php:34
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Button.php:65
|
||||
#: src/Button.php:68
|
||||
msgid "Report a problem"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:72
|
||||
#: src/Settings.php:73
|
||||
msgid "Gripeless"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:86
|
||||
msgid "Gripeless Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:109
|
||||
msgid "Add Project Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:116
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:127
|
||||
msgid "Open your Gripeless dashboard, create a project and insert here the project name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:128
|
||||
msgid "Go to Gripeless projects"
|
||||
msgstr ""
|
||||
824
spec/fixtures/dynamic_finders/plugin_version/potter-kit/translation_file/languages/potter-kit.pot
vendored
Normal file
824
spec/fixtures/dynamic_finders/plugin_version/potter-kit/translation_file/languages/potter-kit.pot
vendored
Normal file
@@ -0,0 +1,824 @@
|
||||
# Copyright (C) 2020 Potter Kit
|
||||
# This file is distributed under the GPLv3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Potter Kit 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/wppotter/potter-kit/issues\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:35
|
||||
msgid "Install package not available."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:37
|
||||
#. translators: %s: package URL
|
||||
msgid "Downloading install package from <span class=\"code\">%s</span>…"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:38
|
||||
msgid "Unpacking the package…"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:39
|
||||
msgid "Removing the old version of the demo…"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:40
|
||||
msgid "Could not remove the old demo."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:41
|
||||
msgid "Installing the demo…"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:42
|
||||
msgid "The demo contains no files."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:43
|
||||
msgid "Demo install failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:44
|
||||
msgid "Demo installed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class-demo-pack-upgrader.php:121
|
||||
msgid "No valid demos were found."
|
||||
msgstr ""
|
||||
|
||||
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:12
|
||||
#: inc/class-demo-importer.php:121
|
||||
#: inc/class-potter-kit.php:237
|
||||
msgid "Demo Importer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:15
|
||||
msgid "Upcoming Demos"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:21
|
||||
msgid "The Demo Importer screen requires JavaScript."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:24
|
||||
msgid "Filter demos list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:47
|
||||
msgid "Without Page Builder"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:56
|
||||
msgid "Themes list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:60
|
||||
#: inc/class-demo-importer.php:228
|
||||
msgid "No demos found. Try a different search."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:74
|
||||
#: inc/admin/views/html-admin-page-importer.php:150
|
||||
msgid "Premium"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:78
|
||||
#: inc/admin/views/html-admin-page-importer.php:154
|
||||
msgid "Pro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:84
|
||||
#: inc/admin/views/html-admin-page-importer.php:161
|
||||
#. translators: %s: Demo author name
|
||||
msgid "By %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:93
|
||||
#. translators: %s: Demo name
|
||||
msgid "<span>Imported:</span> %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:102
|
||||
#: inc/admin/views/html-admin-page-importer.php:139
|
||||
#: inc/admin/views/html-admin-page-importer.php:241
|
||||
#: inc/class-demo-importer.php:184
|
||||
msgid "Live Preview"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:105
|
||||
#: inc/admin/views/html-admin-page-importer.php:107
|
||||
#: inc/admin/views/html-admin-page-importer.php:132
|
||||
#: inc/admin/views/html-admin-page-importer.php:134
|
||||
#: inc/admin/views/html-admin-page-importer.php:234
|
||||
#: inc/admin/views/html-admin-page-importer.php:236
|
||||
msgid "Buy Now"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:113
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:115
|
||||
#: inc/admin/views/html-admin-page-importer.php:267
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:128
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:136
|
||||
#: inc/admin/views/html-admin-page-importer.php:141
|
||||
#: inc/admin/views/html-admin-page-importer.php:238
|
||||
#: inc/admin/views/html-admin-page-importer.php:243
|
||||
msgid "Import Demo"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:172
|
||||
#: inc/admin/views/html-admin-page-importer.php:181
|
||||
#. translators: %s: Theme Name
|
||||
msgid "%s theme is not active."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:188
|
||||
#. translators: %s: Demo version
|
||||
msgid "Version: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:195
|
||||
msgid "Plugins Information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:200
|
||||
msgid "Required Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:223
|
||||
msgid "No plugins are required for this demo."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:247
|
||||
#: inc/class-demo-importer.php:229
|
||||
msgid "Collapse Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:249
|
||||
msgid "Collapse"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:254
|
||||
msgid "Enter desktop preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:257
|
||||
msgid "Enter tablet preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:260
|
||||
msgid "Enter mobile preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-notice-reset-wizard-success.php:14
|
||||
msgid ""
|
||||
"WordPress has been reset back to defaults. The user "
|
||||
"<strong>\"%1$s\"</strong> was recreated with its previous password."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-notice-reset-wizard.php:12
|
||||
msgid ""
|
||||
"<strong>Reset Wizard</strong> – If you need to reset the WordPress "
|
||||
"back to default again :)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-notice-reset-wizard.php:13
|
||||
msgid "Reset WordPress Now"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-notice-reset-wizard.php:13
|
||||
msgid "Hide this notice"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:176
|
||||
msgid "Importing..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:178
|
||||
msgid "Importing... please wait."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:179
|
||||
msgid "Import completed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:180
|
||||
msgid "Import Failed!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:181
|
||||
msgid "Import failed: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:186
|
||||
msgid "Imported!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:187
|
||||
msgid "Try this solution!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:201
|
||||
msgid ""
|
||||
"It is strongly recommended that you backup your database before proceeding. "
|
||||
"Are you sure you wish to run the reset wizard now?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:204
|
||||
msgid ""
|
||||
"Importing demo data will ensure that your site will look similar as theme "
|
||||
"demo. It makes you easy to modify the content instead of creating them from "
|
||||
"scratch. Also, consider before importing the demo: %1$s %2$s %3$s %4$s %5$s "
|
||||
"%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:206
|
||||
msgid ""
|
||||
"Importing the demo on the site if you have already added the content is "
|
||||
"highly discouraged."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:208
|
||||
msgid ""
|
||||
"You need to import demo on fresh WordPress install to exactly replicate the "
|
||||
"theme demo."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:210
|
||||
msgid ""
|
||||
"It will install the required plugins as well as activate them for "
|
||||
"installing the required theme demo within your site."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:212
|
||||
msgid "Copyright images will get replaced with other placeholder images."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:214
|
||||
msgid ""
|
||||
"None of the posts, pages, attachments or any other data already existing in "
|
||||
"your site will be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:216
|
||||
msgid "It will take some time to import the theme demo."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:221
|
||||
msgid "Search Demos"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:222
|
||||
msgid "Search demos..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:224
|
||||
#. translators: %s: support forums URL
|
||||
msgid ""
|
||||
"An unexpected error occurred. Something may be wrong with Potter Kit demo "
|
||||
"server’s configuration. If you continue to have problems, please try "
|
||||
"the <a href=\"%s\">support forums</a>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:225
|
||||
msgid "Try Again"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:226
|
||||
msgid "Please suggest us!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:227
|
||||
msgid "Number of Demos found: %d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:230
|
||||
msgid "Expand Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:232
|
||||
#. translators: accessibility text
|
||||
msgid "Select one or more Demo features to filter by"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:233
|
||||
msgid "Confirm!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:259
|
||||
#. translators: 1: Potter Kit 2: five stars
|
||||
msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Potter Kit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:261
|
||||
msgid "Thanks :)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:264
|
||||
msgid "Thank you for importing with Potter Kit."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:284 inc/class-demo-importer.php:286
|
||||
msgid "Help & Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:288
|
||||
msgid ""
|
||||
"Should you need help understanding, using, or extending Potter Kit Demo "
|
||||
"Importer, <a href=\"%s\">please read our documentation</a>. You will find "
|
||||
"all kinds of resources including snippets, tutorials and much more."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:292
|
||||
msgid ""
|
||||
"For further assistance with Potter Kit core you can use the "
|
||||
"<a href=\"%1$s\">community forum</a>. If you need help with premium themes "
|
||||
"sold by Potter Kit, please <a href=\"%2$s\">use our free support forum</a>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:296
|
||||
msgid "Community forum"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:296
|
||||
msgid "Potter Kit Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:303 inc/class-demo-importer.php:305
|
||||
msgid "Found a bug?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:306
|
||||
msgid ""
|
||||
"If you find a bug within Potter Kit you can create a ticket "
|
||||
"via <a href=\"%1$s\">Github issues</a>. Ensure you read the <a "
|
||||
"href=\"%2$s\">contribution guide</a> prior to submitting your report. To "
|
||||
"help us solve your issue, please be as descriptive as possible."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:307
|
||||
msgid "Report a bug"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:315 inc/class-demo-importer.php:317
|
||||
#: inc/class-demo-importer.php:319
|
||||
msgid "Reset wizard"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:318
|
||||
msgid ""
|
||||
"If you need to reset the WordPress back to default again, please click on "
|
||||
"the button below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:324
|
||||
msgid "For more information:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:325
|
||||
msgid "About Demo Importer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:326
|
||||
msgid "WordPress.org project"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:327
|
||||
msgid "Github project"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:328
|
||||
msgid "Official themes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:329
|
||||
msgid "Official plugins"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:359
|
||||
msgid "Action failed. Please refresh the page and retry."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:363
|
||||
#: inc/class-potter-kit.php:50
|
||||
#: inc/class-potter-kit.php:59
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:542
|
||||
msgid "%s Pro"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "wppotter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:600
|
||||
msgid "No demo specified."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:616
|
||||
msgid "Sorry, you are not allowed to import content."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:648
|
||||
#: inc/functions-demo-importer.php:110
|
||||
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:731
|
||||
msgid "The XML file dummy content is missing."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:822
|
||||
msgid "The DAT file customizer data is missing."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:847
|
||||
msgid "The WIE file widget content is missing."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-potter-kit.php:237
|
||||
msgid "View Demo Importer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-potter-kit.php:253
|
||||
msgid "View Demo Importer Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-potter-kit.php:253
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-potter-kit.php:254
|
||||
msgid "Visit Free Customer Support Forum"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-potter-kit.php:254
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-potter-kit.php:270
|
||||
msgid "This plugin requires %s to be activated to work."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-potter-kit.php:270
|
||||
msgid "Official Potter Theme"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions-demo-importer.php:31
|
||||
msgid "No plugin specified."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions-demo-importer.php:44
|
||||
msgid "Sorry, you are not allowed to install plugins on this site."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions-demo-importer.php:351
|
||||
#. translators: %s: Number of plugins
|
||||
msgid "%s plugin successfully installed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions-demo-importer.php:358
|
||||
#. translators: %s: Number of plugins
|
||||
msgid "%s plugins successfully installed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions-demo-importer.php:368
|
||||
#. translators: %s: Number of failed installs
|
||||
msgid "%s install failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions-demo-importer.php:373
|
||||
#. translators: %s: Number of failed installs
|
||||
msgid "%s installs failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions-demo-importer.php:376
|
||||
msgid "Show more details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-customizer-importer.php:36
|
||||
msgid ""
|
||||
"The customizer import file is not in a correct format. Please make sure to "
|
||||
"use the correct customizer import file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-customizer-importer.php:40
|
||||
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/importers/class-widget-importer.php:34
|
||||
msgid "Widget import data could not be read. Please try a different file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-widget-importer.php:71
|
||||
msgid "Sidebar does not exist in theme (moving widget to Inactive)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-widget-importer.php:93
|
||||
msgid "Site does not support widget"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-widget-importer.php:128
|
||||
msgid "Widget already exists"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-widget-importer.php:187
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-widget-importer.php:190
|
||||
msgid "Imported to Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-widget-importer.php:196
|
||||
msgid "No Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:124
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:133
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:184
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:188
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:197
|
||||
msgid "Sorry, there has been an error."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:125
|
||||
msgid "The file does not exist, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:168
|
||||
msgid "All done."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:168
|
||||
msgid "Have fun!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:169
|
||||
msgid "Remember to update the passwords and roles of imported users."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:189
|
||||
msgid ""
|
||||
"The export file could not be found at <code>%s</code>. It is likely that "
|
||||
"this was caused by a permissions problem."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:205
|
||||
msgid ""
|
||||
"This WXR file (version %s) may not be supported by this version of the "
|
||||
"importer. Please consider updating."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:230
|
||||
msgid ""
|
||||
"Failed to import author %s. Their posts will be attributed to the current "
|
||||
"user."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:257
|
||||
msgid "Assign Authors"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:258
|
||||
msgid ""
|
||||
"To make it easier for you to edit and save the imported content, you may "
|
||||
"want to reassign the author of the imported item to an existing user of "
|
||||
"this site. For example, you may want to import all the entries as "
|
||||
"<code>admin</code>s entries."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:260
|
||||
msgid ""
|
||||
"If a new user is created by WordPress, a new password will be randomly "
|
||||
"generated and the new user’s role will be set as %s. Manually "
|
||||
"changing the new user’s details will be necessary."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:270
|
||||
msgid "Import Attachments"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:273
|
||||
msgid "Download and import file attachments"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:277
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:290
|
||||
msgid "Import author:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:304
|
||||
msgid "or create new user with login name:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:307
|
||||
msgid "as a new user:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:315
|
||||
msgid "assign posts to an existing user:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:317
|
||||
msgid "or assign posts to an existing user:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:323
|
||||
msgid "- Select -"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:382
|
||||
msgid ""
|
||||
"Failed to create new user for %s. Their posts will be attributed to the "
|
||||
"current user."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:441
|
||||
msgid "Failed to import category %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:493
|
||||
msgid "Failed to import post tag %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:554
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:799
|
||||
msgid "Failed to import %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:645
|
||||
msgid "Failed to import “%1$s”: Invalid post type %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:686
|
||||
msgid "%1$s “%2$s” already exists."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:760
|
||||
msgid "Failed to import %1$s “%2$s”"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:940
|
||||
msgid "Menu item skipped due to missing menu slug"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:947
|
||||
msgid "Menu item skipped due to invalid menu slug: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1018
|
||||
msgid "Fetching attachments is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1035
|
||||
msgid "Invalid file type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1090
|
||||
msgid "Remote server did not respond"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1098
|
||||
msgid "Remote server returned error response %1$d %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1105
|
||||
msgid "Remote file is incorrect size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1110
|
||||
msgid "Zero size file downloaded"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1116
|
||||
msgid "Remote file is too large, limit is %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1224
|
||||
msgid "Import WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1231
|
||||
msgid ""
|
||||
"A new version of this importer is available. Please update to version %s to "
|
||||
"ensure compatibility with newer export files."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1246
|
||||
msgid ""
|
||||
"Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import "
|
||||
"the posts, pages, comments, custom fields, categories, and tags into this "
|
||||
"site."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-importer.php:1247
|
||||
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:44
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:74
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:82
|
||||
msgid "There was an error when reading this WXR file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:45
|
||||
msgid ""
|
||||
"Details are shown above. The importer will now try again with a different "
|
||||
"parser..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:86
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:91
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:308
|
||||
#: inc/importers/wordpress-importer/class-wxr-parsers.php:504
|
||||
msgid "This does not appear to be a WXR file, missing/invalid WXR version number"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wppotter.com/potter-kit/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Import Potter themes demo content, widgets and theme settings "
|
||||
"with just one click."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wppotter.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:111
|
||||
#. translators: %s: Demo name
|
||||
msgctxt "demo"
|
||||
msgid "Import %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:121
|
||||
msgctxt "demo"
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:177
|
||||
msgctxt "demo"
|
||||
msgid "Importing %s..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:182
|
||||
msgctxt "demo"
|
||||
msgid "%s imported!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:183
|
||||
msgctxt "demo"
|
||||
msgid "%s import failed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:185
|
||||
msgctxt "demo"
|
||||
msgid "Live Preview %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:129
|
||||
msgctxt "Button label for a demo"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/html-admin-page-importer.php:130
|
||||
msgctxt "Button label for a demo"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-demo-importer.php:136
|
||||
msgctxt "Admin menu name"
|
||||
msgid "Demo Importer"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
Version 1.0.0 Thursday, 04th June 2020
|
||||
- Initial release
|
||||
- New: Introduced Powerful Ribbon Element
|
||||
- New: Introduced Powerful Separator Element
|
||||
- New: Introduced Powerful Heading Element
|
||||
@@ -0,0 +1,173 @@
|
||||
# Copyright (C) 2020 WebEmpire
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Powerful Addons for Visual Composer - Lite 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/powerful-visualcomposer-lite\n"
|
||||
"POT-Creation-Date: 2020-05-30 14:31:34+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"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-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-powerful-visualcomposer-lite.php:71
|
||||
msgid "View Powerful VisualComposer Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-powerful-visualcomposer-lite.php:71
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-powerful-visualcomposer-lite.php:150
|
||||
#. translators: 1: HTML Strong open tag, 2: HTML Strong close tag, 3: HTML br
|
||||
#. tag
|
||||
msgid ""
|
||||
"%1$s Thanks for choosing Powerful Addons for VisualComposer plugin!!! %2$s "
|
||||
"%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-powerful-visualcomposer-lite.php:152
|
||||
msgid ""
|
||||
"Please install and activate the VisualComposer plugin, to explore the "
|
||||
"features of this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-powerful-visualcomposer-lite.php:162
|
||||
msgid "Activate VisualComposer Now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-powerful-visualcomposer-lite.php:170
|
||||
msgid "Install VisualComposer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/powerful-vc-config.php:35
|
||||
msgid "Powerful Heading"
|
||||
msgstr ""
|
||||
|
||||
#: includes/powerful-vc-config.php:43
|
||||
msgid "Powerful Ribbon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/powerful-vc-config.php:51
|
||||
msgid "Poweful Separator"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-admin.php:27
|
||||
msgid "Let's empower Visual Composer!"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-admin.php:37
|
||||
msgid "Settings saved successfully."
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:29
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:33
|
||||
msgid "Powerful Visual Composer Addons"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:35
|
||||
msgid "Activate All"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:36
|
||||
msgid "Deactivate All"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:72
|
||||
msgid "Get Pro"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:120
|
||||
msgid "Visit Demos"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:126
|
||||
msgid ""
|
||||
"Visit here to see our elegant demos for these widgets. We hope you like "
|
||||
"it!!!"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:131
|
||||
msgid "View Demos »"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:146
|
||||
#. translators: %1$s: demos link.
|
||||
msgid "Knowledge Base"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:151
|
||||
msgid "Not sure how something works? Take a peek at the knowledge base and learn."
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:153
|
||||
msgid "Knowledge Base »"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:159
|
||||
msgid "Code Snippets"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:164
|
||||
msgid "Custom codes are listed here, which will help you for custom requirements."
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:166
|
||||
msgid "Actions / Filters / CSS »"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:172
|
||||
msgid "Five Star Support"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:180
|
||||
#. translators: %1$s: PAVC Help name.
|
||||
msgid ""
|
||||
"Get in touch with Powerful Addons for Visual Composer developers. We're "
|
||||
"happy to help!"
|
||||
msgstr ""
|
||||
|
||||
#: public/powerful-vc-general.php:186
|
||||
msgid "Get Support »"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Powerful Addons for Visual Composer - Lite"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/powerful-addons-for-visual-composer-lite/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Power-up the new amazing Visual Composer drag-and-drop builder editor with "
|
||||
"these advanced and powerful addons that help you build websites in no time! "
|
||||
" You can use it with any WordPress theme."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WebEmpire"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://webempire.org.in/"
|
||||
msgstr ""
|
||||
571
spec/fixtures/dynamic_finders/plugin_version/pro-locker/translation_file/languages/prolocker.pot
vendored
Normal file
571
spec/fixtures/dynamic_finders/plugin_version/pro-locker/translation_file/languages/prolocker.pot
vendored
Normal file
@@ -0,0 +1,571 @@
|
||||
# Copyright (C) 2020 Frontier Themes
|
||||
# This file is distributed under the same license as the ProLocker plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ProLocker 1.1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/prolocker\n"
|
||||
"Last-Translator: Frontier Themes <frontierthemes@gmail.com>\n"
|
||||
"Language-Team: Frontier Themes <frontierthemes@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-05-01T12:19:01-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: prolocker\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/Pages/class-prolocker-menu-page.php:42
|
||||
#: inc/Pages/class-prolocker-menu-page.php:43
|
||||
#: inc/Plugin/class-prolocker-block-categories.php:38
|
||||
#: assets/js/ip-addresses.js:1
|
||||
#: src/components/IpAddress.jsx:64
|
||||
msgid "ProLocker"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Lock your content at the expense of sharing. The more your visitor engages in unlocking mechanisms you set up, the more your visitor is able to see."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Frontier Themes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.frontier.dev/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Number of times the URL has to be shared.
|
||||
#: inc/Blocks/class-prolocker-hit-counter-block.php:87
|
||||
msgid "This content is locked. Share the following URL %s times to unlock it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Metaboxes/class-prokey-actions-metabox.php:40
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Metaboxes/class-prokey-details-metabox.php:40
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Metaboxes/class-prokey-ip-addresses-metabox.php:40
|
||||
msgid "IP Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Plugin/class-prolocker-notices.php:79
|
||||
msgid "ProLocker:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Plugin/class-prolocker-notices.php:80
|
||||
msgid "Gutenberg must be the default editor for the plugin to work correctly."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Plugin/class-prolocker-post-statuses.php:36
|
||||
#: assets/js/ip-addresses.js:1
|
||||
#: src/components/IpAddress.jsx:53
|
||||
msgid "Blacklisted"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Label count.
|
||||
#: inc/Plugin/class-prolocker-post-statuses.php:38
|
||||
msgid "All <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "All <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:56
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Blacklisted IPs"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:57
|
||||
msgctxt "Post Type Singular Post Name"
|
||||
msgid "Blacklisted IP"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:58
|
||||
msgid "Edit IP"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:59
|
||||
msgid "View IP"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:60
|
||||
msgid "View IPs"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:61
|
||||
msgid "Search IPs"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:62
|
||||
msgid "No IPs found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:63
|
||||
msgid "Filter IPs list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:64
|
||||
msgid "IPs list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:65
|
||||
msgid "IPs list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:70
|
||||
msgid "Blacklisted IP addresses are not taken into account during the content unlocking process and cannot create new keys either."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:135
|
||||
#: inc/Posts/class-prolocker-proip-post.php:136
|
||||
#: inc/Posts/class-prolocker-proip-post.php:156
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:199
|
||||
msgid "IP address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:200
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:175
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:237
|
||||
#: inc/Posts/class-prolocker-proip-post.php:240
|
||||
msgid "IP updated."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:238
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:226
|
||||
msgid "Custom field updated."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:239
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:227
|
||||
msgid "Custom field deleted."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Revision title.
|
||||
#: inc/Posts/class-prolocker-proip-post.php:242
|
||||
msgid "IP restored to revision from %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:243
|
||||
msgid "IP published."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:244
|
||||
msgid "IP saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:245
|
||||
msgid "IP submitted."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Pos date.
|
||||
#: inc/Posts/class-prolocker-proip-post.php:248
|
||||
msgid "IP scheduled for: <strong>%1$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Publish box date format, see http://php.net/date
|
||||
#: inc/Posts/class-prolocker-proip-post.php:250
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:238
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:251
|
||||
msgid "IP draft updated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Updated count.
|
||||
#: inc/Posts/class-prolocker-proip-post.php:270
|
||||
msgid "%s IP address updated."
|
||||
msgid_plural "%s IP addresses updated."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Locked count.
|
||||
#: inc/Posts/class-prolocker-proip-post.php:272
|
||||
msgid "%s IP address not updated, somebody is editing it."
|
||||
msgid_plural "%s IP addresses not updated, somebody is editing them."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Deleted count.
|
||||
#: inc/Posts/class-prolocker-proip-post.php:274
|
||||
msgid "%s IP address removed from the blacklist."
|
||||
msgid_plural "%s IP addresses removed from the blacklist."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Trashed count.
|
||||
#: inc/Posts/class-prolocker-proip-post.php:276
|
||||
msgid "%s IP address moved to the Trash."
|
||||
msgid_plural "%s IP addresses moved to the Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Untrashed count.
|
||||
#: inc/Posts/class-prolocker-proip-post.php:278
|
||||
msgid "%s IP address restored from the Trash."
|
||||
msgid_plural "%s IP addresses restored from the Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:298
|
||||
#: inc/Posts/class-prolocker-proip-post.php:394
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:286
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:332
|
||||
msgid "This action is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:340
|
||||
msgid "IP address added to the blacklist."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-proip-post.php:430
|
||||
msgid "Sorry, you are not allowed to edit this item."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:55
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Prokeys"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:56
|
||||
msgctxt "Post Type Singular Post Name"
|
||||
msgid "Prokey"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:57
|
||||
msgid "Edit Prokey"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:58
|
||||
msgid "View Prokey"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:59
|
||||
msgid "View Prokeys"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:60
|
||||
msgid "Search Prokeys"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:61
|
||||
msgid "No Prokeys found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:62
|
||||
msgid "Filter Prokeys list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:63
|
||||
msgid "Prokeys list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:64
|
||||
msgid "Prokeys list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:69
|
||||
msgid "Keys are created automatically when users view posts or pages with blocked content. They must be used to unlock the content in question."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:129
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:130
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:133
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:134
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:153
|
||||
msgid "Delete Permanently"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:172
|
||||
msgid "Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:173
|
||||
msgid "Created by IP address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:174
|
||||
msgid "Post being used on"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:203
|
||||
msgid "The post has not been found. It was probably deleted."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:225
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:228
|
||||
msgid "Prokey updated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Revision title.
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:230
|
||||
msgid "Prokey restored to revision from %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:231
|
||||
msgid "Prokey published."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:232
|
||||
msgid "Prokey saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:233
|
||||
msgid "Prokey submitted."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Post date.
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:236
|
||||
msgid "Prokey scheduled for: <strong>%1$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:239
|
||||
msgid "Prokey draft updated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Updated count.
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:258
|
||||
msgid "%s Prokey updated."
|
||||
msgid_plural "%s Prokeys updated."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Locked count.
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:260
|
||||
msgid "%s Prokey not updated, somebody is editing it."
|
||||
msgid_plural "%s Prokeys not updated, somebody is editing them."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Deleted count.
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:262
|
||||
msgid "%s Prokey permanently deleted."
|
||||
msgid_plural "%s Prokeys permanently deleted."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Trashed count.
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:264
|
||||
msgid "%s Prokey moved to the Trash."
|
||||
msgid_plural "%s Prokeys moved to the Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: Untrashed count.
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:266
|
||||
msgid "%s Prokey restored from the Trash."
|
||||
msgid_plural "%s Prokeys restored from the Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:332
|
||||
msgid "ProLocker - Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:335
|
||||
msgid "« Back to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:343
|
||||
msgid "An error occurred processing the request. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Posts/class-prolocker-prokey-post.php:343
|
||||
msgid "ProLocker - Bad Request"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Rest/class-prolocker-proips-rest-controller.php:65
|
||||
msgid "Invalid IP Address."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Rest/class-prolocker-proips-rest-controller.php:80
|
||||
msgid "The IP Address is already blacklisted."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Rest/class-prolocker-proips-rest-controller.php:89
|
||||
#: inc/Rest/class-prolocker-proips-rest-controller.php:102
|
||||
msgid "An error occurred. Please refresh the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#: templates/no-posts.php:11
|
||||
msgid "Keys will show up here."
|
||||
msgstr ""
|
||||
|
||||
#: templates/no-posts.php:12
|
||||
msgid "Currently, keys have not been created."
|
||||
msgstr ""
|
||||
|
||||
#: templates/no-posts.php:18
|
||||
msgid "Blacklisted IPs will show up here."
|
||||
msgstr ""
|
||||
|
||||
#: templates/no-posts.php:19
|
||||
msgid "Currently, IP addresses have not been added to the blacklist."
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-actions.php:8
|
||||
msgid "Reset Hit Count"
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-actions.php:9
|
||||
msgid "Delete Key"
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-details.php:14
|
||||
msgid "Created by IP address:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-details.php:20
|
||||
msgid "Hit count:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-details.php:27
|
||||
msgid "Post used on"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Post ID.
|
||||
#: templates/prokey-details.php:40
|
||||
msgid "ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-details.php:47
|
||||
msgid "View post"
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-details.php:51
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-details.php:58
|
||||
msgid "The post has not been found. It was probably deleted. It is recommended that you delete this key."
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-ip-addresses.php:19
|
||||
msgid "The following is a list of IP addresses that have contributed to the hit count for this key."
|
||||
msgstr ""
|
||||
|
||||
#: templates/prokey-ip-addresses.php:24
|
||||
msgid "The IP addresses that contribute to the hit count will appear here."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blacklisted-add-new.js:1
|
||||
#: src/components/BlacklistedAddNewModal.jsx:59
|
||||
msgid "Add New IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blacklisted-add-new.js:1
|
||||
#: src/components/BlacklistedAddNewModal.jsx:63
|
||||
msgid "IP Address:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blacklisted-add-new.js:1
|
||||
#: src/components/BlacklistedAddNewModal.jsx:64
|
||||
msgid "Ex: 127.0.0.1"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blacklisted-add-new.js:1
|
||||
#: src/components/BlacklistedAddNewModal.jsx:79
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blacklisted-add-new.js:1
|
||||
#: assets/js/ip-addresses.js:1
|
||||
#: src/components/BlacklistedAddNewModal.jsx:88
|
||||
#: src/components/IpAddress.jsx:56
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blacklisted-add-new.js:1
|
||||
#: src/components/BlacklistedAddNewModal.jsx:88
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blacklisted-add-new.js:1
|
||||
#: src/components/BlacklistedAddNewButton.jsx:20
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:58
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:63
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:64
|
||||
msgid "Number of times the URL has to be shared to unlock content."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:73
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:74
|
||||
msgid "Message to be shown to the user. You can use the placeholder {count} anywhere in the message. The placeholder will be replaced with the actual count needed to unlock the content."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:83
|
||||
msgid "Click here to configure locking options"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:90
|
||||
msgid "Show locked message preview"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:96
|
||||
msgid "Locked message preview:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:102
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/components/HitCounterEdit.jsx:108
|
||||
msgid "https://example.com/post-title?pk=abc123456"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/hit-counter-block.js:1
|
||||
#: src/blocks/hit-counter-block.js:11
|
||||
msgid "Hit counter"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/ip-addresses.js:1
|
||||
#: src/components/IpAddress.jsx:57
|
||||
msgid "Add to the blacklist"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/ip-addresses.js:1
|
||||
#: src/components/IpAddress.jsx:74
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/ip-addresses.js:1
|
||||
#: src/components/IpAddresses.jsx:46
|
||||
msgid "Search IP address:"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,55 @@
|
||||
# Copyright (C) 2020 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Bundles - Variation Bundles 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://support.woothemes.com/hc/en-us\n"
|
||||
"POT-Creation-Date: 2020-05-26 19:18: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: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: product-bundles-variation-bundles.php:159
|
||||
msgid "Variation Bundle"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-variation-bundles.php:160
|
||||
msgid "Choose a static Product Bundle to add to the cart instead of this variation."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-variation-bundles.php:161
|
||||
msgid "Search for a Product Bundle…"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-variation-bundles.php:185
|
||||
msgid ""
|
||||
"<strong>Product Bundles – Variation Bundles</strong> requires <a "
|
||||
"href=\"%1$s\" target=\"_blank\">WooCommerce Product Bundles</a> version "
|
||||
"<strong>%2$s</strong> or higher."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Product Bundles - Variation Bundles"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://docs.woocommerce.com/document/bundles/bundles-extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Free mini-extension for WooCommerce Product Bundles that allows you to map "
|
||||
"variations to Product Bundles."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.com/"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
131
spec/fixtures/dynamic_finders/plugin_version/remoji/translation_file/lang/remoji.pot
vendored
Normal file
131
spec/fixtures/dynamic_finders/plugin_version/remoji/translation_file/lang/remoji.pot
vendored
Normal file
@@ -0,0 +1,131 @@
|
||||
# Copyright (C) 2020 Remoji - Comment Reaction and Management
|
||||
# This file is distributed under the same license as the Remoji - Comment Reaction and Management package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Remoji - Comment Reaction and Management 1.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/remoji\n"
|
||||
"POT-Creation-Date: 2020-05-06 20:47:04+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/admin.cls.php:60 tpl/entry.tpl.php:7 tpl/setting.tpl.php:12
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin.cls.php:90
|
||||
msgid "Options saved successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:104
|
||||
msgid "Folder does not exist: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:111
|
||||
msgid "Can not create folder: %1$s. Error: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:117
|
||||
msgid "Folder is not writable: %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:123 src/f.cls.php:127
|
||||
msgid "File %s is not writable."
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:134
|
||||
msgid "Failed to write to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/gui.cls.php:250
|
||||
msgid "OFF"
|
||||
msgstr ""
|
||||
|
||||
#: src/gui.cls.php:251
|
||||
msgid "ON"
|
||||
msgstr ""
|
||||
|
||||
#: src/lang.cls.php:32
|
||||
msgid "Please try again after %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/lang.cls.php:36
|
||||
msgid "You have reacted with this emoji."
|
||||
msgstr ""
|
||||
|
||||
#: src/lang.cls.php:40
|
||||
msgid "Emoji reaction to Posts is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/lang.cls.php:44
|
||||
msgid "Emoji reaction to Comments is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:94
|
||||
msgid "right now"
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:94
|
||||
msgid "just now"
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:97
|
||||
msgid " %s ago"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/entry.tpl.php:8
|
||||
msgid "Reaction Log"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/entry.tpl.php:48
|
||||
msgid "Rate Us!"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/reaction_bar.tpl.php:21
|
||||
msgid "Error happened."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/setting.tpl.php:17
|
||||
msgid "Emoji Reaction on Posts"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/setting.tpl.php:21
|
||||
msgid "Allow emoji reactions to posts."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/setting.tpl.php:27
|
||||
msgid "Emoji Reaction on Comments"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/setting.tpl.php:31
|
||||
msgid "Allow emoji reactions to comments."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/setting.tpl.php:37
|
||||
msgid "Auto Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/setting.tpl.php:41
|
||||
msgid "Enable this option to get the latest features at the first moment."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/setting.tpl.php:50 tpl/setting.tpl.php:51
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Remoji - Comment Reaction and Management"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"React w/ emoji. Allow visitors to react with emoji to comments. Enabling "
|
||||
"this plugin can easily attach a Slack style emoji bar to each comment."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WPDO"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,11 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0] - 2020-06-02
|
||||
### Added
|
||||
- This plugin and associated code initial release
|
||||
147
spec/fixtures/dynamic_finders/plugin_version/securepay/translation_file/languages/securepay.pot
vendored
Normal file
147
spec/fixtures/dynamic_finders/plugin_version/securepay/translation_file/languages/securepay.pot
vendored
Normal file
@@ -0,0 +1,147 @@
|
||||
# Copyright (C) 2020 SecurePay Sdn Bhd
|
||||
# This file is distributed under the same license as the SecurePay package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr "Project-Id-Version: SecurePay 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://www.securepay.my/\n"
|
||||
"POT-Creation-Date: 2020-05-02 01:28+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: securepay.php:77
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: securepay.php:128
|
||||
msgid "SecurePay require WooCommerce plugin. Please install and activate."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:68
|
||||
msgid "Place order"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:136
|
||||
msgid "Return to payments"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:138
|
||||
msgid "Please fill in the below section to start accepting payments via "
|
||||
"SecurePay Platform."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:149
|
||||
msgid "Gateway Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:149
|
||||
msgid "SecurePay does not support your store currency at this time."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:164
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:166
|
||||
msgid "Enable SecurePay payment platform"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:170
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:172
|
||||
msgid "This is the title the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:173
|
||||
msgid "SecurePay"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:176
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:178
|
||||
msgid "This is the description the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:179
|
||||
msgid "Pay for your items securely with SecurePay"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:183
|
||||
msgid "Live Token"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:185
|
||||
msgid "Your Live Token."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:192
|
||||
msgid "Live Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:194
|
||||
msgid "Your Live Checksum."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:201
|
||||
msgid "Live UID"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:203
|
||||
msgid "Your Live UID."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:210
|
||||
msgid "Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:212
|
||||
msgid "Enable Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:217
|
||||
msgid "Sandbox Token Token"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:219
|
||||
msgid "Your Sandbox Token."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:226
|
||||
msgid "Sandbox Checksum"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:228
|
||||
msgid "Your Sandbox Checksum."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:235
|
||||
msgid "Sandbox UID"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:237
|
||||
msgid "Your Sandbox UID."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:258
|
||||
msgid "Place order text"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:260
|
||||
msgid "This is the text for Place Order button."
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:261
|
||||
msgid "Pay with SecurePay"
|
||||
msgstr ""
|
||||
|
||||
#: library/class-woocommerce-securepay.php:411
|
||||
msgid "SecurePay Payment failed."
|
||||
msgstr ""
|
||||
126
spec/fixtures/dynamic_finders/plugin_version/sensei-certificates/change_log/changelog.txt
vendored
Normal file
126
spec/fixtures/dynamic_finders/plugin_version/sensei-certificates/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,126 @@
|
||||
*** Changelog ***
|
||||
|
||||
2020.04.16 - version 2.0.4
|
||||
* Tweak: Some fixes general to be distributed through WordPress.org - #219
|
||||
|
||||
2020.04.16 - version 2.0.3
|
||||
* New: Prepare the plugin to be distributed through WordPress.org - #215
|
||||
|
||||
2020.03.20 - version 2.0.2
|
||||
* Fix: Certificate display issue when using non-Latin characters - #211
|
||||
|
||||
2020.03.12 - version 2.0.1
|
||||
* New: Rename plugin to Sensei LMS Certificates - #195
|
||||
* Tweak: Remove certificates and templates from public search queries - #183
|
||||
* Tweak: Retrieve absolute image path via get_attached_file - #199
|
||||
* Tweak: Only load CSS on pages that require it - #205
|
||||
* Tweak: Replace use of deprecated course_query function - #207
|
||||
* Fix: Ensure font files can be accessed when plugin is copied to another site - #193
|
||||
* Fix: Localize placeholder text when editing certificate template - #206
|
||||
* Fix: Don't hide template positioning box when clicking off it - #204
|
||||
|
||||
2019.04.25 - version 2.0.0
|
||||
* New: Add dependency check for minimum Sensei (1.11.0) and PHP (5.6) versions - #171
|
||||
* New: Add certificate link to course completion emails - #174
|
||||
* New: Add Hungarian translation (@amroland) - #170, #177
|
||||
* Tweak: Check dependencies and perform the majority of plugin loading tasks after other plugins have loaded - #175
|
||||
* Tweak: Use Woo header for plugin updates - #172
|
||||
* Fix: Disable viewing of certificates for courses without a certificate template - #173
|
||||
|
||||
2018.12.06 - version 1.1.1
|
||||
* Fixes JavaScript error when editing a certificate template
|
||||
* Adds additional string escaping throughout the plugin
|
||||
* Fixes minor issue with restoring trashed certificate templates
|
||||
* Add translations for Russian and French
|
||||
|
||||
2018.07.23 - version 1.1.0
|
||||
* Make date formatting for certificates follow the WP date format by default
|
||||
* Fix certificates menu position for Teacher users
|
||||
|
||||
2017.11.01 - version 1.0.17
|
||||
* Fix fatal on plugin activation
|
||||
* Remove unnecessary .pot file
|
||||
* Make placeholders translatable in post_type_setup
|
||||
|
||||
2017.05.03 - version 1.0.16
|
||||
* Fix fatal when activating certificates for the first time
|
||||
|
||||
2017.04.28 - version 1.0.15
|
||||
* Admin: Allow only teachers and administrators to view admin areas
|
||||
* Never bundle generated ttf specs from tfpdf
|
||||
|
||||
2017.04.25 - version 1.0.14
|
||||
* Fix certificate data update
|
||||
* Add the Display Name to the admin list table for certificates enhancement
|
||||
* Fix Errors when previewing a certificate template bug
|
||||
* Fix the selected admin menu item when editing a certificate template
|
||||
* Fix Permissions error on certificate learner and course links bug
|
||||
* Fix PHP 7 Errors/Notices on tfpdf
|
||||
|
||||
2016.04.29 - version 1.0.13
|
||||
* Fix - Fixed a deprecated function notice
|
||||
* Fix - Ensures the certificate background image displays after saving template
|
||||
|
||||
2016.02.02 - version 1.0.12
|
||||
* Fix - Ensures certificates can be viewed when set to public
|
||||
* Fix - Fixed a notice on certificates where background image id was not found
|
||||
* Fix - Fixed a display issue with the certificate template dropdown
|
||||
* Tweak - Ensure compatibility with Sensei 1.9
|
||||
|
||||
2015.06.18 - version 1.0.11
|
||||
* Fix - Ensure that the certificate view setting can only be seen by the current logged in user
|
||||
* Tweak - Moved the certificates menu items to their own top level menu
|
||||
|
||||
2015.06.11 - version 1.0.10
|
||||
* Fix - Fix the certificate error that occurred when doing manual grading
|
||||
|
||||
2015.02.10 - version 1.0.9
|
||||
* Fix - Fixing certificate generation
|
||||
|
||||
2015.02.01 - version 1.0.8
|
||||
* Tweak - Updating code for Sensei 1.7 compatibility
|
||||
|
||||
2014.09.23 - version 1.0.7
|
||||
* Fix - Visit plugin site link in admin dashboard 404.
|
||||
* Fix - Fixed certificate orientation if background image is portrait.
|
||||
* Fix - Fixed a form display issue in the template editor.
|
||||
* Fix - Removing erroneous Select2 reference.
|
||||
* Tweak - If first and last name are added, they will be displayed on the certificate instead of the display name.
|
||||
|
||||
2014.09.16 - version 1.0.6
|
||||
* Fix - Ensures sensei_certificate_date_format filter applies to all certificates, not just previews.
|
||||
* Fix - Fixed coding standards warnings.
|
||||
|
||||
2014.06.23 - version 1.0.5
|
||||
* Fix - Localizes completion date string to use correct language for month names.
|
||||
* Fix - Fixes PHP warning when a certificate template has no styles selected.
|
||||
* Fix - Ensures certificate link displays even if the course has no quizzes (requires Sensei v1.6)
|
||||
|
||||
2014.04.28 - version 1.0.4
|
||||
* Update - Adding support for user-defined custom fonts
|
||||
* Fix - Switching to tFPDF library for PDF generation to handle multibyte character sets (Greek, Arabic, etc.)
|
||||
* Fix - Making 'View Certificate' link text available for localization
|
||||
* Fix - Hiding 'View Certificate' link if no certificate template is selected for the course
|
||||
|
||||
2014.03.04 - version 1.0.3
|
||||
* Fix - Switching background image to use path instead of URL
|
||||
/classes/class-woothemes-sensei-certificates.php
|
||||
|
||||
2014.01.14 - version 1.0.2
|
||||
* Fix - Removes unnecessary rewrite endpoints, in favour of template_redirect.
|
||||
/classes/class-woothemes-sensei-certificates.php
|
||||
|
||||
* Fix - Optimise the functionality to control access to, and to generate the certificate.
|
||||
/classes/class-woothemes-sensei-certificates.php
|
||||
|
||||
* Fix - Ensure the extension doesn't break if a WooCommerce extension is activated.
|
||||
/woo-includes/woo-functions.php
|
||||
/woo-includes/class-wc-dependencies.php
|
||||
|
||||
2013.12.12 - version 1.0.1
|
||||
* /classes/class-woothemes-sensei-certificate-templates.php - Localization fix
|
||||
* /classes/class-woothemes-sensei-certificates.php - Localization fix
|
||||
* /woothemes-sensei-certificates.php - Localization fix
|
||||
|
||||
2013.12.12 - version 1.0.0
|
||||
* First release
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/sensei-media-attachments/change_log/changelog.txt
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/sensei-media-attachments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
*** Changelog ***
|
||||
|
||||
2020.05.13 - version 2.0.1
|
||||
|
||||
* New: Add Hungarian translation (@amroland) - #64
|
||||
* Fix: Show media attachments on lesson pages for admins - #71
|
||||
* Fix: Improve compatibility for Sensei 3 and legacy versions - #76
|
||||
|
||||
2019.04.23 - version 2.0.0
|
||||
|
||||
* New: Add dependency check for minimum Sensei (1.11.0) and PHP (5.6) versions - #39
|
||||
* New: Add `sensei_media_attachments_get_attachment_title` filter for customizing the title that is displayed for a particular media attachment - #45
|
||||
* New: Add `sensei_media_attachments_media_heading` filter for customizing the media heading - #44
|
||||
* New: Add partial Slovenian translation - #37
|
||||
* Tweak: Use media title as display name of the media file - #45
|
||||
* Tweak: Change two-column media attachment layout to a single column layout - #47
|
||||
* Tweak: Check dependencies and perform the majority of plugin loading tasks after other plugins have loaded - #43
|
||||
* Tweak: Remove deprecated version check - #46
|
||||
* Tweak: Use Woo header for plugin updates - #40
|
||||
* Fix: Version the admin script - #48
|
||||
|
||||
2019.03.27 - version 1.0.2
|
||||
|
||||
* New: Add `sensei_media_attachments_show_media_links` for determining whether or not to display the media attachments - #42
|
||||
* Fix: Hide media attachment files when user is not taking the course - #42
|
||||
|
||||
2018.11.07 - version 1.0.1
|
||||
|
||||
* Add: Russian translations
|
||||
* Fix: Location of course media output
|
||||
* Fix: Some strict standards errors
|
||||
* Fix: Translation for "Course/Lesson Media"
|
||||
* Fix: Code escaping issues
|
||||
* Fix: Remove usage of deprecated hooks
|
||||
|
||||
2014.01.15 - version 1.0.0
|
||||
* First release
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/simple-googlebot-visit/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/simple-googlebot-visit/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
50
spec/fixtures/dynamic_finders/plugin_version/slithy-web/translation_file/languages/slithyweb.pot
vendored
Normal file
50
spec/fixtures/dynamic_finders/plugin_version/slithy-web/translation_file/languages/slithyweb.pot
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2020 William Rey
|
||||
# This file is distributed under the same license as the Slithy Web plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slithy Web 0.10.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/slithyweb\n"
|
||||
"Last-Translator: William Rey <wrey75@gmail.com>\n"
|
||||
"Language-Team: William Rey <wrey75@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-25T15:26:48+02:00\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: slithy-web\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Slithy Web"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/wrey75/slithyweb"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "a plugin to help users to setup their WordPres"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "William Rey"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://wrey75.wordpress.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin-page.php:25
|
||||
msgid "Slithy Web setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin-page.php:26
|
||||
msgid "Slithy web"
|
||||
msgstr ""
|
||||
|
||||
#: admin-page.php:39
|
||||
msgid "Slithy Web hosting"
|
||||
msgstr ""
|
||||
|
||||
#: admin-page.php:65
|
||||
msgid "Here you can set all the options for using the API"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,693 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sofcar 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-03-10 11:18+0100\n"
|
||||
"PO-Revision-Date: 2020-03-10 11:18+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Sofcar Team\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-sofcar-admin.php:80
|
||||
msgid "Sofcar Plugin"
|
||||
msgstr "Plugin Sofcar"
|
||||
|
||||
#: admin/class-sofcar-admin.php:80 admin/partials/sofcar-dashboard.php:100
|
||||
#: admin/partials/sofcar-dashboard.php:301
|
||||
msgid "Sofcar"
|
||||
msgstr "Sofcar"
|
||||
|
||||
#: admin/class-sofcar-admin.php:106
|
||||
msgid "Dashboard"
|
||||
msgstr "Panel de Control"
|
||||
|
||||
#: admin/class-sofcar-api.php:41
|
||||
msgid "Subscription"
|
||||
msgstr "Suscripción"
|
||||
|
||||
#: admin/class-sofcar-api.php:45 admin/partials/sofcar-dashboard.php:38
|
||||
msgid "Locations"
|
||||
msgstr "Lugares"
|
||||
|
||||
#: admin/class-sofcar-api.php:46
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: admin/class-sofcar-api.php:49
|
||||
msgid "Support"
|
||||
msgstr "Ayuda"
|
||||
|
||||
#: admin/class-sofcar-api.php:56
|
||||
msgid ""
|
||||
"According to the Pickup and Drop-off Locations available in your Sofcar "
|
||||
"platform"
|
||||
msgstr ""
|
||||
"De acuerdo con los Lugares de Entrega y Recogida disponibles en su "
|
||||
"plataforma Sofcar"
|
||||
|
||||
#: admin/class-sofcar-api.php:57
|
||||
msgid ""
|
||||
"The system allows the import of all the Locations data: Location, contact "
|
||||
"information, images and geographical coordinates according to the available "
|
||||
"data"
|
||||
msgstr ""
|
||||
"El sistema permite la importación de todos los datos de Lugares: ubicación, "
|
||||
"información de contacto, imágenes y coordenadas geográficas según los datos "
|
||||
"disponibles"
|
||||
|
||||
#: admin/class-sofcar-api.php:59
|
||||
msgid "Locations in Sofcar"
|
||||
msgstr "Lugares en Sofcar"
|
||||
|
||||
#: admin/class-sofcar-api.php:60 admin/class-sofcar-api.php:74
|
||||
msgid "Manage"
|
||||
msgstr "Gestionar"
|
||||
|
||||
#: admin/class-sofcar-api.php:61
|
||||
msgid "Locations category in Wordpress"
|
||||
msgstr "Categoría de Lugares en Wordpress"
|
||||
|
||||
#: admin/class-sofcar-api.php:62 admin/class-sofcar-api.php:76
|
||||
#: admin/partials/sofcar-dashboard.php:157
|
||||
#: admin/partials/sofcar-dashboard.php:198
|
||||
#: admin/partials/sofcar-dashboard.php:268
|
||||
#: admin/partials/sofcar-dashboard.php:362
|
||||
#: admin/partials/sofcar-dashboard.php:403
|
||||
#: admin/partials/sofcar-dashboard.php:497
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: admin/class-sofcar-api.php:63 admin/class-sofcar-api.php:77
|
||||
#: admin/partials/sofcar-dashboard.php:159
|
||||
#: admin/partials/sofcar-dashboard.php:200
|
||||
#: admin/partials/sofcar-dashboard.php:269
|
||||
#: admin/partials/sofcar-dashboard.php:363
|
||||
#: admin/partials/sofcar-dashboard.php:405
|
||||
#: admin/partials/sofcar-dashboard.php:499
|
||||
msgid "View"
|
||||
msgstr "Ver"
|
||||
|
||||
#: admin/class-sofcar-api.php:70
|
||||
msgid ""
|
||||
"According to the Vehicle Classes and available Models in your Sofcar "
|
||||
"platform."
|
||||
msgstr ""
|
||||
"Según las Clases de vehículos y los Modelos disponibles en su plataforma "
|
||||
"Sofcar."
|
||||
|
||||
#: admin/class-sofcar-api.php:71
|
||||
msgid ""
|
||||
"The system will create your active Models as Posts in your WordPress "
|
||||
"platform and will automatically add them. In case no Vehicle Class exist, it "
|
||||
"will automatically create a Class as a WordPress category."
|
||||
msgstr ""
|
||||
"El sistema creará sus Modelos activos como Entradas en su Wordpress y los "
|
||||
"añadirá automáticamente. En caso de no existir Clase de Vehículos, el "
|
||||
"sistema creará automáticamente una Clase como Categoría de Wordpress."
|
||||
|
||||
#: admin/class-sofcar-api.php:73
|
||||
msgid "Models in Sofcar"
|
||||
msgstr "Modelos en Sofcar"
|
||||
|
||||
#: admin/class-sofcar-api.php:75
|
||||
msgid "Fleet category in Wordpress"
|
||||
msgstr "Categoría de Flota en Wordress"
|
||||
|
||||
#: admin/class-sofcar-api.php:83
|
||||
msgid "Do you have any doubt?"
|
||||
msgstr "¿Tiene alguna duda?"
|
||||
|
||||
#: admin/class-sofcar-api.php:84
|
||||
msgid "Support Center"
|
||||
msgstr "Centro de Soporte"
|
||||
|
||||
#: admin/class-sofcar-api.php:85
|
||||
msgid "Community"
|
||||
msgstr "Comunidad"
|
||||
|
||||
#: admin/class-sofcar-api.php:91
|
||||
msgid ""
|
||||
"The connection interface of the booking engine embeddable Widget, runs the "
|
||||
"necessary functions for the online booking, in a transparent way to the "
|
||||
"user. Runs actions on the booking such as searches or formalization."
|
||||
msgstr ""
|
||||
"La interfaz de conexión del motor de reservas widget integrable, realiza las "
|
||||
"funciones necesarias para la reserva en línea de manera transparente para el "
|
||||
"usuario. Ejecuta las acciones necesarias para la reserva, tales como "
|
||||
"búsquedas y formalización."
|
||||
|
||||
#: admin/class-sofcar-api.php:91 admin/class-sofcar-api.php:108
|
||||
msgid ""
|
||||
"If you already have a web page, insert your online booking system in a few "
|
||||
"simple steps with Sofcar's Shortcodes."
|
||||
msgstr ""
|
||||
"Si ya dispone de página web, inserte su sistema de reservas en línea en unos "
|
||||
"simples pasos gracias a los Shortcodes de Sofcar."
|
||||
|
||||
#: admin/class-sofcar-api.php:93
|
||||
msgid "Manage in Sofcar"
|
||||
msgstr "Gestionar en Sofcar"
|
||||
|
||||
#: admin/class-sofcar-api.php:93
|
||||
msgid "Booking Engine"
|
||||
msgstr "Motor de reservas"
|
||||
|
||||
#: admin/class-sofcar-api.php:94 admin/class-sofcar-api.php:110
|
||||
msgid "Need More?"
|
||||
msgstr "¿Necesita más?"
|
||||
|
||||
#: admin/class-sofcar-api.php:95 admin/class-sofcar-api.php:111
|
||||
msgid "Embeddable Widget"
|
||||
msgstr "Widget integrable"
|
||||
|
||||
#: admin/class-sofcar-api.php:96 admin/class-sofcar-api.php:112
|
||||
msgid "API Webservice"
|
||||
msgstr "API Webservice"
|
||||
|
||||
#: admin/class-sofcar-api.php:102
|
||||
msgid ""
|
||||
"Sofcar allows you to create the main sections of your website in seconds. "
|
||||
"Select the type of predefined page you want to create and Sofcar will insert "
|
||||
"its content according to the section automatically. Sofcar provides you with "
|
||||
"a search engine for availability and booking, a list of your fleet or a "
|
||||
"contact form without complications."
|
||||
msgstr ""
|
||||
"Sofcar le permite crear los principales apartados de su página web en "
|
||||
"segundos. Seleccione el tipo de página predefinida que desea crear y Sofcar "
|
||||
"insertará automáticamente su contenido de acuerdo con cada apartado. Sofcar "
|
||||
"le ofrece un motor de búsqueda de disponibilidad y reservas, un listado de "
|
||||
"su flota o un formulario de contacto sin complicaciones."
|
||||
|
||||
#: admin/class-sofcar-api.php:200
|
||||
msgid "Page with Fleet Widget"
|
||||
msgstr "Página con widget de Flota"
|
||||
|
||||
#: admin/class-sofcar-api.php:201
|
||||
msgid "Page with Contact Form Widget"
|
||||
msgstr "Página con widget de Formulario de Contacto"
|
||||
|
||||
#: admin/class-sofcar-api.php:202
|
||||
msgid "Page About your company"
|
||||
msgstr "Pagina Sobre Nosotros"
|
||||
|
||||
#: admin/class-sofcar-api.php:203
|
||||
msgid "Page with your Legal Terms and Rental Conditions"
|
||||
msgstr "Página Aviso Legal y Términos y Condiciones del Alquiler"
|
||||
|
||||
#: admin/class-sofcar-api.php:204
|
||||
msgid "Page with your Privacy Policy"
|
||||
msgstr "Página Política de Privacidad"
|
||||
|
||||
#: admin/class-sofcar-api.php:205
|
||||
msgid "Page with Customer Login Account"
|
||||
msgstr "Página de inicio de sesión en Área Cliente"
|
||||
|
||||
#: admin/class-sofcar-api.php:303 admin/class-sofcar-api.php:343
|
||||
msgid "Book Now"
|
||||
msgstr "Reserva ahora"
|
||||
|
||||
#: admin/class-sofcar-api.php:308
|
||||
msgid "Customer Service Opening hours"
|
||||
msgstr "Horario de Atención al Cliente"
|
||||
|
||||
#: admin/class-sofcar-api.php:316 admin/class-sofcar-api.php:520
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#: admin/class-sofcar-api.php:317 admin/class-sofcar-api.php:424
|
||||
msgid "Phone"
|
||||
msgstr "Teléfono"
|
||||
|
||||
#: admin/class-sofcar-api.php:317 admin/class-sofcar-api.php:424
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: admin/class-sofcar-api.php:322
|
||||
msgid "Address"
|
||||
msgstr "Dirección"
|
||||
|
||||
#: admin/class-sofcar-api.php:323
|
||||
msgid "City"
|
||||
msgstr "Ciudad"
|
||||
|
||||
#: admin/class-sofcar-api.php:323
|
||||
msgid "Zone"
|
||||
msgstr "Zona"
|
||||
|
||||
#: admin/class-sofcar-api.php:329
|
||||
msgid "Geographic Location"
|
||||
msgstr "Ubicación geográfica"
|
||||
|
||||
#: admin/class-sofcar-api.php:348
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: admin/class-sofcar-api.php:349 admin/class-sofcar-api.php:625
|
||||
#: admin/partials/sofcar-dashboard.php:117
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: admin/class-sofcar-api.php:350
|
||||
msgid "Class"
|
||||
msgstr "Clase"
|
||||
|
||||
#: admin/class-sofcar-api.php:351 admin/partials/sofcar-dashboard.php:119
|
||||
msgid "Group"
|
||||
msgstr "Grupo"
|
||||
|
||||
#: admin/class-sofcar-api.php:356
|
||||
msgid "Equipment"
|
||||
msgstr "Equipamiento"
|
||||
|
||||
#: admin/class-sofcar-api.php:357
|
||||
msgid "Transmission"
|
||||
msgstr "Transmisión"
|
||||
|
||||
#: admin/class-sofcar-api.php:358
|
||||
msgid "Automatic"
|
||||
msgstr "Automático"
|
||||
|
||||
#: admin/class-sofcar-api.php:358
|
||||
msgid "Manual"
|
||||
msgstr "Manual"
|
||||
|
||||
#: admin/class-sofcar-api.php:360
|
||||
msgid "Capacity"
|
||||
msgstr "Capacidad"
|
||||
|
||||
#: admin/class-sofcar-api.php:360
|
||||
msgid "people"
|
||||
msgstr "personas"
|
||||
|
||||
#: admin/class-sofcar-api.php:361
|
||||
msgid "doors"
|
||||
msgstr "puertas"
|
||||
|
||||
#: admin/class-sofcar-api.php:362
|
||||
msgid "Air Conditioning"
|
||||
msgstr "Aire acondicionado"
|
||||
|
||||
#: admin/class-sofcar-api.php:363
|
||||
msgid "GPS included"
|
||||
msgstr "GPS incluido"
|
||||
|
||||
#: admin/class-sofcar-api.php:368
|
||||
msgid "Optionals"
|
||||
msgstr "Opcionales"
|
||||
|
||||
#: admin/class-sofcar-api.php:375
|
||||
msgid "Special booking conditions"
|
||||
msgstr "Condiciones especiales de reserva"
|
||||
|
||||
#: admin/class-sofcar-api.php:384 admin/class-sofcar-api.php:437
|
||||
msgid "Wide range and availability of vehicles"
|
||||
msgstr "Amplia gama y disponibilidad de vehículos"
|
||||
|
||||
#: admin/class-sofcar-api.php:388
|
||||
msgid "Customer Service"
|
||||
msgstr "Atención al Cliente"
|
||||
|
||||
#: admin/class-sofcar-api.php:390
|
||||
msgid ""
|
||||
"If you have any questions, queries or suggestions you can use the form below "
|
||||
"to contact us."
|
||||
msgstr ""
|
||||
"Si tiene alguna pregunta, consulta o propuesta, utilice el siguiente "
|
||||
"formulario para contactar con nosotros."
|
||||
|
||||
#: admin/class-sofcar-api.php:391
|
||||
msgid "We will shortly reply your message."
|
||||
msgstr "En breve responderemos su mensaje."
|
||||
|
||||
#: admin/class-sofcar-api.php:396 admin/class-sofcar-api.php:521
|
||||
msgid "About Us"
|
||||
msgstr "Sobre nosotros"
|
||||
|
||||
#: admin/class-sofcar-api.php:401 admin/class-sofcar-api.php:522
|
||||
msgid "Terms and Conditions"
|
||||
msgstr "Términos y Condiciones"
|
||||
|
||||
#: admin/class-sofcar-api.php:406 admin/class-sofcar-api.php:523
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de Privacidad"
|
||||
|
||||
#: admin/class-sofcar-api.php:519 admin/class-sofcar-api.php:624
|
||||
msgid "Fleet"
|
||||
msgstr "Flota"
|
||||
|
||||
#: admin/class-sofcar-api.php:524
|
||||
msgid "Your account"
|
||||
msgstr "Su cuenta"
|
||||
|
||||
#: admin/class-sofcar-api.php:622
|
||||
msgid "Search Engine"
|
||||
msgstr "Motor de búsqueda"
|
||||
|
||||
#: admin/class-sofcar-api.php:623
|
||||
msgid "Contact Form"
|
||||
msgstr "Formulario de contacto"
|
||||
|
||||
#: admin/class-sofcar-api.php:626
|
||||
msgid "Customer Area"
|
||||
msgstr "Área Cliente"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:18
|
||||
msgid "Don't you have a Sofcar Account yet?"
|
||||
msgstr "¿Aún no dispone de cuenta Sofcar?"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:19
|
||||
msgid "Get Started"
|
||||
msgstr "Empezar ahora"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:39
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:40
|
||||
msgid "Classes"
|
||||
msgstr "Clases"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:41
|
||||
msgid "Pages"
|
||||
msgstr "Páginas"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:42
|
||||
msgid "Shortcodes"
|
||||
msgstr "Shortcodes"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:43
|
||||
#: admin/partials/sofcar-dashboard.php:60
|
||||
msgid "Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:61
|
||||
msgid "Sofcar plugin is now installed and ready to use"
|
||||
msgstr "Su plugin Sofcar está instalado y listo para su uso"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:62
|
||||
msgid "Please, enter your Sofcar's credentials"
|
||||
msgstr "Por favor, introduzca sus credenciales Sofocar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:64
|
||||
msgid "It looks like your credentials are incorrect"
|
||||
msgstr "Parece que sus credenciales son erróneas"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:68
|
||||
msgid "Sofcar API Token"
|
||||
msgstr "API Token de Sofcar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:72
|
||||
#: admin/partials/sofcar-dashboard.php:434
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:77
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:91
|
||||
#: admin/partials/sofcar-dashboard.php:228
|
||||
#: admin/partials/sofcar-dashboard.php:292
|
||||
msgid "Import"
|
||||
msgstr "Importar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:91
|
||||
#: admin/partials/sofcar-dashboard.php:228
|
||||
#: admin/partials/sofcar-dashboard.php:292
|
||||
msgid "Sync"
|
||||
msgstr "Sincronizar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:92
|
||||
#: admin/partials/sofcar-dashboard.php:229
|
||||
#: admin/partials/sofcar-dashboard.php:293
|
||||
msgid "Delete from Wordpress"
|
||||
msgstr "Eliminar de Wordpress"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:94
|
||||
#: admin/partials/sofcar-dashboard.php:231
|
||||
#: admin/partials/sofcar-dashboard.php:295
|
||||
msgid "Apply"
|
||||
msgstr "Aplicar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:106
|
||||
#: admin/partials/sofcar-dashboard.php:121
|
||||
#: admin/partials/sofcar-dashboard.php:307
|
||||
#: admin/partials/sofcar-dashboard.php:322
|
||||
msgid "Wordpress"
|
||||
msgstr "Wordpress"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:120
|
||||
#: admin/partials/sofcar-dashboard.php:321
|
||||
msgid "Last sync"
|
||||
msgstr "Última sincronización"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:148
|
||||
#: admin/partials/sofcar-dashboard.php:189
|
||||
#: admin/partials/sofcar-dashboard.php:353
|
||||
#: admin/partials/sofcar-dashboard.php:394
|
||||
msgid "Today"
|
||||
msgstr "Hoy"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:152
|
||||
#: admin/partials/sofcar-dashboard.php:193
|
||||
#: admin/partials/sofcar-dashboard.php:357
|
||||
#: admin/partials/sofcar-dashboard.php:398
|
||||
msgid "Manually edited"
|
||||
msgstr "Editado manualmente"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:184
|
||||
#: admin/partials/sofcar-dashboard.php:389
|
||||
msgid "Inactive in sofcar"
|
||||
msgstr "Inactivo en Sofcar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:203
|
||||
#: admin/partials/sofcar-dashboard.php:408
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:211
|
||||
msgid "No Models found"
|
||||
msgstr "No se han encontrado Modelos"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:238
|
||||
msgid "Vehicle Class"
|
||||
msgstr "Clase de vehículos"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:239
|
||||
msgid "WP Models"
|
||||
msgstr "Modelos WP"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:240
|
||||
msgid "WP Category"
|
||||
msgstr "Categoría WP"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:245
|
||||
msgid "No Classes found"
|
||||
msgstr "No se han encontrado Clases"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:319
|
||||
msgid "Location"
|
||||
msgstr "Lugares"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:320
|
||||
msgid "Warehouse"
|
||||
msgstr "Almacén"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:416
|
||||
msgid "No locations found"
|
||||
msgstr "No se han encontrado Lugares"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:432
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:433
|
||||
msgid "Username"
|
||||
msgstr "Nombre de usuario"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:435
|
||||
#: admin/partials/sofcar-dashboard.php:487
|
||||
msgid "Actions"
|
||||
msgstr "Acciones"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:445
|
||||
msgid ""
|
||||
"Do you really want to delete your connection data with your Sofcar platform?"
|
||||
msgstr "¿Desea eliminar sus datos de conexión con su plataforma Sofcar?"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:448
|
||||
msgid "Delete connection data"
|
||||
msgstr "Eliminar datos de conexión"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:454
|
||||
msgid "Content import"
|
||||
msgstr "Importar contenido"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:455
|
||||
msgid ""
|
||||
"The easiest way to import all your fleet into your WordPress website, "
|
||||
"integrates your online booking system instead of creating content from "
|
||||
"scratch."
|
||||
msgstr ""
|
||||
"La manera más sencilla de importar toda su flota a su página Wordpress, "
|
||||
"integre su sistema de reservas en lugar de crear contenido desde cero."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:455
|
||||
msgid ""
|
||||
"The content import is done automatically, simply click on the buttons "
|
||||
"provided for it in each section."
|
||||
msgstr ""
|
||||
"La importación de contenido se realiza automáticamente, simplemente haga "
|
||||
"clic sobre los botones correspondientes en cada sección."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:456
|
||||
msgid ""
|
||||
"Before importing categories, Models or Locations, you must take into account"
|
||||
msgstr ""
|
||||
"Antes de importar categorías, Modelos o Lugares, debe tener en cuenta que"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:457
|
||||
msgid "The system will import categories, Models and Locations as Posts."
|
||||
msgstr "El sistema importará Categorías, Modelos y Lugares como Entradas."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:458
|
||||
msgid ""
|
||||
"The system will insert the description of the Model by language, its images "
|
||||
"and will include the integration code for its booking."
|
||||
msgstr ""
|
||||
"El sistema insertará la descripción del Modelo por Idioma, sus imágenes e "
|
||||
"incluirá el código de integración para su reserva."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:459
|
||||
msgid ""
|
||||
"Posts, Pages, Categories, Images and any other data will not be deleted nor "
|
||||
"modified."
|
||||
msgstr ""
|
||||
"Las Entradas, Páginas, Categorías, Imágenes y cualquier otro dato no debe "
|
||||
"eliminarse ni modificarse."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:460
|
||||
msgid "Settings will not be modified."
|
||||
msgstr "No debe modificar la configuración."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:461
|
||||
msgid "Click Import one time and wait, this process may take a few minutes."
|
||||
msgstr ""
|
||||
"Haga Clic una sola vez y espere, este proceso puede tardar unos minutos."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:479
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:485
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:486
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:502
|
||||
msgid "Trash"
|
||||
msgstr "Papelera"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:508
|
||||
msgid "No Pages found"
|
||||
msgstr "No se han encontrado Páginas"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:544
|
||||
msgid "Width"
|
||||
msgstr "Ancho"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:544
|
||||
#: admin/partials/sofcar-dashboard.php:553
|
||||
msgid "Responsive"
|
||||
msgstr "Responsive"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:553
|
||||
msgid "Results' Width"
|
||||
msgstr "Ancho de los resultados"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:557
|
||||
msgid "Autoscroll inactive"
|
||||
msgstr "Autoscroll inactivo"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:558
|
||||
msgid "Autoscroll active"
|
||||
msgstr "Autoscroll activo"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:569
|
||||
#: admin/partials/sofcar-dashboard.php:588
|
||||
msgid "Generate Shortcode"
|
||||
msgstr "Generar Shortcode"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:576
|
||||
msgid "Copy the Shortcode into your page"
|
||||
msgstr "Copie el Shortcode en su página"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:584
|
||||
msgid "How to insert shortcodes in WordPress?"
|
||||
msgstr "¿Cómo se insertan Shortcodes en Wordpress?"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:585
|
||||
msgid ""
|
||||
"You can insert shortcodes in WordPress on your: Posts, Pages, Widgets and "
|
||||
"Themes"
|
||||
msgstr ""
|
||||
"Puede insertar Shortcodes en Wordpress para sus: Entradas, Páginas, Widgets "
|
||||
"y Plantillas"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:586
|
||||
msgid "For example to insert shortcode into a WordPress post"
|
||||
msgstr "Por ejemplo, para insertar un Shortcode en una Entrada de Wordpress"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:589
|
||||
msgid "In the navigation menu, click Post"
|
||||
msgstr "En el menú de navegación, haga clic en Entrada"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:590
|
||||
msgid "Click the post you want to edit"
|
||||
msgstr "Haga clic en la Entrada que desea editar"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:591
|
||||
msgid "Click Text"
|
||||
msgstr "Haga clic en Texto"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:592
|
||||
msgid "Paste shortcode"
|
||||
msgstr "Pegue el shortcode"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:593
|
||||
msgid "Click “Update” to save your changes"
|
||||
msgstr "Haga clic en “Actualizar” para guardar sus cambios"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:612
|
||||
msgid "Version:"
|
||||
msgstr "Versión:"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:613
|
||||
msgid ""
|
||||
"Thank you for choosing Sofcar. We work to make your activation a seamless "
|
||||
"experience."
|
||||
msgstr ""
|
||||
"Gracias por elegir Sofcar. Trabajamos para que esta activación sea una "
|
||||
"experiencia sin complicaciones."
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:614
|
||||
msgid "All rights reserved"
|
||||
msgstr "Todos los derechos están reservados"
|
||||
|
||||
#: admin/partials/sofcar-dashboard.php:616
|
||||
msgid "By"
|
||||
msgstr "Por"
|
||||
|
||||
#: public/inc/sofcar-shortcode.php:71
|
||||
msgid "Incorrect settings. Check your Sofcar settings."
|
||||
msgstr "Configuración incorrecta. Revise su configuración Sofcar."
|
||||
105
spec/fixtures/dynamic_finders/plugin_version/sso-flarum/translation_file/languages/sso-flarum.pot
vendored
Normal file
105
spec/fixtures/dynamic_finders/plugin_version/sso-flarum/translation_file/languages/sso-flarum.pot
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
# Copyright (C) 2020 maicol07
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SSO for Flarum 1.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-22T15:45:46+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: sso-flarum\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SSO for Flarum"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/maicol07/flarum-sso-wp-plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin for your WordPress website to get the SSO extension working"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "maicol07"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://maicol07.it"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:62
|
||||
msgid "Flarum SSO Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:63
|
||||
msgid "Flarum SSO plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:90
|
||||
msgid "There was an error adding this setting. Please try again. If this persists, shoot us an email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:134
|
||||
msgid "Enable SSO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:145
|
||||
msgid "Flarum URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:156
|
||||
msgid "Root Domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:167
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:178
|
||||
msgid "Password Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:189
|
||||
msgid "Token Lifetime"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:200
|
||||
msgid "PRO features key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:211
|
||||
msgid "Insecure mode (use only if you don't have a valid SSL certificate)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:227
|
||||
msgid "Set groups also for admins"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-sso-flarum-admin.php:267
|
||||
msgid "These settings apply to all Flarum SSO Plugin functionality. To know more about something check the <a href='https://docs.maicol07.it/docs/en/flarum_sso_plugin/wp/introduction'>docs</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/sso-flarum-admin-settings-display.php:19
|
||||
msgid "Flarum SSO Settings"
|
||||
msgstr ""
|
||||
|
||||
#: sso-flarum.php:88
|
||||
#: sso-flarum.php:122
|
||||
msgid "Donate"
|
||||
msgstr ""
|
||||
|
||||
#: sso-flarum.php:94
|
||||
#: sso-flarum.php:120
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: sso-flarum.php:121
|
||||
msgid "Leave a review"
|
||||
msgstr ""
|
||||
161
spec/fixtures/dynamic_finders/plugin_version/sso-for-azure-ad/translation_file/sso-for-azure-ad.pot
vendored
Normal file
161
spec/fixtures/dynamic_finders/plugin_version/sso-for-azure-ad/translation_file/sso-for-azure-ad.pot
vendored
Normal file
@@ -0,0 +1,161 @@
|
||||
# Copyright (C) 2020 Marco Benzoni
|
||||
# This file is distributed under the same license as the SSO for Azure AD plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SSO for Azure AD 1.0.0\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"
|
||||
"POT-Creation-Date: 2020-05-05T13:53:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: sso-for-azure-ad\n"
|
||||
|
||||
#. Plugin name
|
||||
msgid "SSO for Azure AD"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enable Single Sign On with Azure AD on your site."
|
||||
msgstr ""
|
||||
|
||||
#. Title of the options page.
|
||||
msgid "SSO for Azure AD options"
|
||||
msgstr ""
|
||||
|
||||
#. Title of the "Endpoints" section in the plugin options page.
|
||||
msgid "Endpoints"
|
||||
msgstr ""
|
||||
|
||||
#. Label for the redirect URL displayed in the plugin options page.
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#. Label for the login URL displayed in the plugin options page.
|
||||
msgid "Homepage/Login URL"
|
||||
msgstr ""
|
||||
|
||||
#. Title of the "OAuth options" section in the plugin options page.
|
||||
msgid "OAuth options"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "OAuth options" section in the plugin options page.
|
||||
msgid "Configure your OAuth application properties."
|
||||
msgstr ""
|
||||
|
||||
#. Label for the "Application (client) ID" option.
|
||||
msgid "Application (client) ID"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "Application (client) ID" option.
|
||||
msgid "Application (client) ID of your app registration in Azure AD."
|
||||
msgstr ""
|
||||
|
||||
#. Label for the "Client secret" option.
|
||||
msgid "Client secret"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "Client secret" option.
|
||||
msgid "A client secret for your app registration in Azure AD."
|
||||
msgstr ""
|
||||
|
||||
#. Label for the "Directory (tenant) ID" option.
|
||||
msgid "Directory (tenant) ID"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "Directory (tenant) ID" option. Do not translate the values in double quotes ("common", "organizations", "consumers").
|
||||
msgid "The ID of your Azure tenant, or one of the following values: \"common\", \"organizations\", \"consumers\"."
|
||||
msgstr ""
|
||||
|
||||
#. Label for the "Scope" option.
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "Scope" option.
|
||||
msgid "The scope to request to obtain the user's email address."
|
||||
msgstr ""
|
||||
|
||||
#. Title of the "Login options" section in the plugin options page.
|
||||
msgid "Login options"
|
||||
msgstr ""
|
||||
|
||||
#. Label for the "Create new users if they don't already exist" option.
|
||||
msgid "Create new users if they don't already exist"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "Create new users if they don't already exist" option.
|
||||
msgid "If enabled, users that attempt to log in with Azure SSO will be created if they don't exist on this site. They will be assigned the default WordPress role for new signups."
|
||||
msgstr ""
|
||||
|
||||
#. Label for the "Login button text" option.
|
||||
msgid "Login button text"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "Login button text" option.
|
||||
msgid "Text for the button on the login form to login with Azure AD. Leave empty to reset the default value."
|
||||
msgstr ""
|
||||
|
||||
#. Default text for the login button
|
||||
msgid "Sign in with Azure AD"
|
||||
msgstr ""
|
||||
|
||||
#. Description for the "Login options" section in the plugin options page.
|
||||
msgid "Configure login behavior for your site."
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the login couldn't be started (before redirecting to consent screen)
|
||||
msgid "Cannot initiate login: %s"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when, after logging in on Azure, the user's identity could not be verified.
|
||||
msgid "Cannot complete login: %s"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the plugin has not been fully configured (some settings have not been set)
|
||||
msgid "Plugin has not been fully configured."
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the OAuth response contains an error.
|
||||
msgid "OAuth error. (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the "state" GET parameter is missing.
|
||||
msgid "Missing state data."
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the "code" GET parameter is missing.
|
||||
msgid "Missing authorization code."
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the data in the "state" GET parameter is not valid.
|
||||
msgid "Invalid state data. (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the data in the "state" GET parameter is not valid JSON.
|
||||
msgid "Invalid JSON"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the nonce in the "state" GET parameter is missing.
|
||||
msgid "Missing nonce"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the nonce in the "state" GET parameter could not be verified.
|
||||
msgid "Invalid nonce"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the redirect URL in the "state" GET parameter is not a string.
|
||||
msgid "Invalid redirect"
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the response from the Azure AD OAuth token endpoint does not contain an access token.
|
||||
msgid "Invalid response from Azure AD while getting token."
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the response from the Microsoft Graph or Office API endpoint does not contain the user's email address.
|
||||
msgid "Invalid response while getting user information."
|
||||
msgstr ""
|
||||
|
||||
#. Error message displayed when the user who is trying to log in does not have a corresponding user on the WordPress site and automatic user creation is disabled.
|
||||
msgid "Your account has not been registered on this site. Please contact your administrator."
|
||||
msgstr ""
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/starterblocks/composer_file/composer.json
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/starterblocks/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"name": "starterblocks/starterblocks",
|
||||
"type": "wordpress-plugin",
|
||||
"license": "gpl-2.0-or-later",
|
||||
"version": "1.0.2",
|
||||
"description": "WordPress",
|
||||
"homepage": "https://starterblocks.io/",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Dovy Paukstys",
|
||||
"email": "dovy@redux.io",
|
||||
"homepage": "https://github.com/dovy"
|
||||
}
|
||||
],
|
||||
"keywords": ["wordpress"],
|
||||
"support": {
|
||||
"issues": "https://github.com/starterblocks/starterblocks/issues"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"StarterBlocks\\": "core/"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": ["phpcs"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,956 @@
|
||||
# Copyright (C) 2020 surplusthemes
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Surplus Essentials 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/surplus-essesntials\n"
|
||||
"POT-Creation-Date: 2020-05-03 00:54:01+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:107
|
||||
msgid "Are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:108
|
||||
msgid "Select Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:113
|
||||
msgid "Are you sure you want to delete this Social Media?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:147
|
||||
#: admin/class-surplus-essentials-admin.php:176
|
||||
#: includes/widgets/widget-cta.php:260
|
||||
#: includes/widgets/widget-icon-text.php:132
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:151
|
||||
#: admin/class-surplus-essentials-admin.php:187
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:152
|
||||
#: admin/class-surplus-essentials-admin.php:188
|
||||
#: includes/class-surplus-essentials-functions.php:96
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:284
|
||||
#: includes/widgets/widget-advertisement.php:127
|
||||
#: includes/widgets/widget-client-logo.php:170
|
||||
#: includes/widgets/widget-icon-text.php:136
|
||||
#: includes/widgets/widget-image-text.php:37
|
||||
#: includes/widgets/widget-image-text.php:160
|
||||
#: includes/widgets/widget-testimonial.php:37
|
||||
#: includes/widgets/widget-testimonial.php:180
|
||||
msgid "Upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:290
|
||||
#: includes/widgets/widget-advertisement.php:135
|
||||
#: includes/widgets/widget-client-logo.php:172
|
||||
#: includes/widgets/widget-image-text.php:44
|
||||
#: includes/widgets/widget-image-text.php:167
|
||||
msgid "Featured Link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:304
|
||||
#: includes/widgets/widget-faqs.php:105
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:306
|
||||
#: includes/widgets/widget-faqs.php:107
|
||||
msgid "Answer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:381
|
||||
#: admin/class-surplus-essentials-admin.php:433
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:388
|
||||
#: admin/class-surplus-essentials-admin.php:440
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:389
|
||||
#: admin/class-surplus-essentials-admin.php:441
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:390
|
||||
#: admin/class-surplus-essentials-admin.php:442
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:391
|
||||
#: admin/class-surplus-essentials-admin.php:443
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:392
|
||||
#: admin/class-surplus-essentials-admin.php:444
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:393
|
||||
#: admin/class-surplus-essentials-admin.php:445
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:497
|
||||
#: admin/class-surplus-essentials-admin.php:535
|
||||
msgid "Search Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:498
|
||||
#: admin/class-surplus-essentials-admin.php:536
|
||||
msgid "All Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:499
|
||||
#: admin/class-surplus-essentials-admin.php:537
|
||||
msgid "Parent Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:500
|
||||
#: admin/class-surplus-essentials-admin.php:538
|
||||
msgid "Parent Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:501
|
||||
#: admin/class-surplus-essentials-admin.php:539
|
||||
msgid "Edit Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:502
|
||||
#: admin/class-surplus-essentials-admin.php:540
|
||||
msgid "Update Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:503
|
||||
#: admin/class-surplus-essentials-admin.php:541
|
||||
msgid "Add New Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-surplus-essentials-admin.php:504
|
||||
#: admin/class-surplus-essentials-admin.php:542
|
||||
msgid "New Categories Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-functions.php:83
|
||||
msgid "No file chosen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-functions.php:86
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-functions.php:88
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-functions.php:91
|
||||
msgid "Upgrade your version of WordPress for full media support."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:68
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:70
|
||||
msgid "Surplus Themes Essentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:74
|
||||
msgid "Surplus Themes Essentials Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:100
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:100
|
||||
msgid "Default settings restored successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:103
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:134
|
||||
#: includes/class-surplus-essentials-settings.php:155
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
msgid "Post Type Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:136
|
||||
#: includes/class-surplus-essentials-settings.php:157
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
msgid "Post Type Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:136
|
||||
#: includes/class-surplus-essentials-settings.php:157
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
msgid "Please add unique post type name while you create a new post type."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:136
|
||||
#: includes/class-surplus-essentials-settings.php:157
|
||||
msgid ""
|
||||
"For Surplus Themes's theme, please add st_ as a prefix with your post type "
|
||||
"name. Example: st_portfolio."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:138
|
||||
#: includes/class-surplus-essentials-settings.php:159
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
msgid "Post Type Slug"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:138
|
||||
#: includes/class-surplus-essentials-settings.php:159
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
msgid "Please add unique post type slug while you create a new post type."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:140
|
||||
#: includes/class-surplus-essentials-settings.php:161
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
#: includes/widgets/widget-icon-text.php:130
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:142
|
||||
#: includes/class-surplus-essentials-settings.php:163
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
msgid "Taxonomy Slug"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:173
|
||||
msgid "Add Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:180
|
||||
msgid ""
|
||||
"For Surplus Themes theme, please add st_ as a prefix with your post type "
|
||||
"name. Example: st_portfolio."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:223
|
||||
msgid "Surplus Themes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:225
|
||||
msgid "What we do?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:227
|
||||
msgid "Develop Themes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:228
|
||||
msgid "Develop Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:229
|
||||
msgid "E-commerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:230
|
||||
msgid "Maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:231
|
||||
msgid "Free/Pro Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:232
|
||||
msgid "Customisation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:234
|
||||
msgid "Visit Us"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:238
|
||||
msgid "Helpful Links"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:240
|
||||
msgid "Questions, bugs or great ideas?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:241
|
||||
msgid "Visit this plugin support page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:242
|
||||
msgid "Wanna help make this plugin better?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-surplus-essentials-settings.php:244
|
||||
msgid "Review and rate this plugin on WordPress.org"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:25
|
||||
msgid "SE: Advertisement Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:26
|
||||
msgid "An Advertisement Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:115
|
||||
#: includes/widgets/widget-client-logo.php:158
|
||||
#: includes/widgets/widget-contact.php:234 includes/widgets/widget-cta.php:195
|
||||
#: includes/widgets/widget-facebook-page.php:107
|
||||
#: includes/widgets/widget-icon-text.php:118
|
||||
#: includes/widgets/widget-image-text.php:140
|
||||
#: includes/widgets/widget-popular-post.php:213
|
||||
#: includes/widgets/widget-recent-post.php:144
|
||||
#: includes/widgets/widget-socialmedia.php:219
|
||||
#: includes/widgets/widget-stat-counter.php:132
|
||||
#: includes/widgets/widget-testimonial.php:164
|
||||
#: includes/widgets/widget-twitter-feeds.php:136
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:120
|
||||
msgid "Display Advertisement from:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:122
|
||||
#: includes/widgets/widget-advertisement.php:140
|
||||
msgid "Ad Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:124
|
||||
#: includes/widgets/widget-team-member.php:217
|
||||
msgid "Upload Photo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-advertisement.php:131
|
||||
#: includes/widgets/widget-image-text.php:145
|
||||
#: includes/widgets/widget-team-member.php:277
|
||||
msgid "Open in Same Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:25
|
||||
msgid "SE: Client Logo Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:26
|
||||
msgid "A Client Logo Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:162
|
||||
msgid "Number of Logos (per slide)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-client-logo.php:183
|
||||
msgid "Add Another Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:44
|
||||
msgid "SE: Contact Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:45
|
||||
msgid "A Contact Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:60
|
||||
#: includes/widgets/widget-contact.php:293
|
||||
#: includes/widgets/widget-socialmedia.php:60
|
||||
#: includes/widgets/widget-socialmedia.php:256
|
||||
msgid "Social Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:62
|
||||
#: includes/widgets/widget-socialmedia.php:62
|
||||
msgid "Search Social Icons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:63
|
||||
#: includes/widgets/widget-contact.php:296
|
||||
#: includes/widgets/widget-socialmedia.php:63
|
||||
#: includes/widgets/widget-socialmedia.php:259
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:239 includes/widgets/widget-cta.php:200
|
||||
#: includes/widgets/widget-icon-text.php:123
|
||||
#: includes/widgets/widget-team-member.php:261
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:244
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:249
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:254
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:261
|
||||
msgid "Open Social Links in New Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:311
|
||||
#: includes/widgets/widget-socialmedia.php:274
|
||||
msgid "Add Social Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-contact.php:312
|
||||
#: includes/widgets/widget-socialmedia.php:275
|
||||
msgid ""
|
||||
"Click on the above button to add social media icons. You can also change "
|
||||
"the order of the social icons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:26
|
||||
msgid "SE: Call To Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:27
|
||||
msgid "A Call To Action Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:34
|
||||
#: includes/widgets/widget-featured-page.php:33
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:35
|
||||
#: includes/widgets/widget-featured-page.php:34
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:36
|
||||
#: includes/widgets/widget-featured-page.php:35
|
||||
msgid "Centered"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:205
|
||||
msgid "Number of Call-to-Action Buttons:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:216
|
||||
msgid "Button 1 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:220
|
||||
msgid "Button 1 Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:225 includes/widgets/widget-cta.php:240
|
||||
#: includes/widgets/widget-custom-categories.php:105
|
||||
msgid "Open in new Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:231
|
||||
msgid "Button 2 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:235
|
||||
msgid "Button 2 Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:245
|
||||
msgid "Button Alignment:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:256
|
||||
msgid "Use Background Color/Image:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:258
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:264
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-cta.php:269
|
||||
msgid "Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:16
|
||||
msgid "SE: Custom Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:19
|
||||
msgid "Widget to display categories with Image and Posts Count"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:69
|
||||
msgid " Post(s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:87
|
||||
msgid "New title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:100
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:137
|
||||
msgid "Select Categories. Post type are in brackets."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:162
|
||||
msgid ""
|
||||
"To set thumbnail for categories, go to %1$sPosts > Categories%2$s and "
|
||||
"%3$sEdit%4$s the categories."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-custom-categories.php:195
|
||||
#: includes/widgets/widget-icon-text.php:171
|
||||
#: includes/widgets/widget-team-member.php:250
|
||||
msgid "Image Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:25
|
||||
msgid "SE: Facebook Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:26
|
||||
msgid "A widget that shows Facebook Page Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:112
|
||||
msgid "Facebook Page URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:117
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:123
|
||||
msgid "Show Friend's Faces"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:128
|
||||
msgid "Use Small Header"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:133
|
||||
msgid "Hide Cover Photo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:138
|
||||
msgid "Show Timeline Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:143
|
||||
msgid "Show Event Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-facebook-page.php:148
|
||||
msgid "Show Message Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:25
|
||||
msgid "SE: FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:26
|
||||
msgid "A Widget for FAQs."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:52
|
||||
msgid "Expand/Close"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:91
|
||||
msgid "Enable FAQs Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-faqs.php:118
|
||||
msgid "Add FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:25
|
||||
msgid "SE: Featured Page Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:26
|
||||
msgid "A Featured Page Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:49
|
||||
#: includes/widgets/widget-featured-page.php:139
|
||||
#: includes/widgets/widget-featured-page.php:243
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:127
|
||||
msgid "--Choose--"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:150
|
||||
msgid "Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:156
|
||||
msgid "Hide Page title in the front-end."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:160
|
||||
msgid "Page:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:172
|
||||
msgid "Show Page Full Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:179
|
||||
msgid "Show Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:184
|
||||
msgid "Image Alignment:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:199
|
||||
msgid "Show Read More"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-featured-page.php:204
|
||||
msgid "Read More Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:25
|
||||
msgid "SE: Icon Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:26
|
||||
msgid "An Icon Text Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:128
|
||||
msgid "Use Icon/Image:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:184
|
||||
#: includes/widgets/widget-stat-counter.php:147
|
||||
msgid "Icons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:195
|
||||
msgid "search icons here..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:201
|
||||
#: includes/widgets/widget-popular-post.php:257
|
||||
#: includes/widgets/widget-recent-post.php:179
|
||||
#: includes/widgets/widget-socialmedia.php:224
|
||||
msgid "Open in New Tab"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:205
|
||||
msgid "Read More Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-icon-text.php:210
|
||||
msgid "Read More Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:26
|
||||
msgid "SE: Image Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:27
|
||||
msgid "An Image Text Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:40
|
||||
#: includes/widgets/widget-image-text.php:163
|
||||
msgid "Link Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-image-text.php:179
|
||||
msgid "Add Image Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:28
|
||||
msgid "SE: Popular Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:29
|
||||
msgid "A Popular Post Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:65
|
||||
msgid "0 View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:67
|
||||
msgid " View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:69
|
||||
msgid " Views"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:83
|
||||
#: includes/widgets/widget-popular-post.php:201
|
||||
msgid "Popular Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:146
|
||||
#: includes/widgets/widget-recent-post.php:89
|
||||
msgid "View all posts in %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:185
|
||||
#: includes/widgets/widget-recent-post.php:119
|
||||
msgid "Style One"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:186
|
||||
#: includes/widgets/widget-recent-post.php:120
|
||||
msgid "Style Two"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:187
|
||||
#: includes/widgets/widget-recent-post.php:121
|
||||
msgid "Style Three"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:218
|
||||
#: includes/widgets/widget-recent-post.php:149
|
||||
msgid "Number of Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:223
|
||||
msgid "Popular based on:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:225
|
||||
msgid "Post Views"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:226
|
||||
msgid "Comment Count"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:231
|
||||
#: includes/widgets/widget-recent-post.php:164
|
||||
msgid "Layout:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:247
|
||||
#: includes/widgets/widget-recent-post.php:155
|
||||
msgid "Show Post Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:252
|
||||
#: includes/widgets/widget-recent-post.php:160
|
||||
msgid "Show Post Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-popular-post.php:276
|
||||
#: includes/widgets/widget-recent-post.php:39
|
||||
#: includes/widgets/widget-recent-post.php:135
|
||||
#: includes/widgets/widget-recent-post.php:198
|
||||
msgid "Recent Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-recent-post.php:25
|
||||
msgid "SE: Recent Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-recent-post.php:26
|
||||
msgid "A Recent Post Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-recent-post.php:97
|
||||
msgid "%1$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-socialmedia.php:44
|
||||
msgid "SE: Social Media"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-socialmedia.php:45
|
||||
msgid "A Social Links Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-socialmedia.php:205
|
||||
msgid "Subscribe and Follow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:26
|
||||
msgid "SE: Stat Counter Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:27
|
||||
msgid "Widget for stat counter."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:137
|
||||
msgid "Counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:143
|
||||
msgid "Show Comma"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-stat-counter.php:158
|
||||
msgid "Search Icons Here..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:25
|
||||
msgid "SE: Team Member"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:26
|
||||
msgid "A Team Member Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:207
|
||||
#: includes/widgets/widget-testimonial.php:40
|
||||
#: includes/widgets/widget-testimonial.php:183
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:212
|
||||
#: includes/widgets/widget-testimonial.php:44
|
||||
#: includes/widgets/widget-testimonial.php:187
|
||||
msgid "Designation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:266
|
||||
msgid "Custom Link Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:271
|
||||
msgid "Custom Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:280
|
||||
msgid "LinkedIn Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:286
|
||||
msgid "Twitter Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:290
|
||||
msgid "Facebook Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:294
|
||||
msgid "Instagram Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:298
|
||||
msgid "YouTube Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:302
|
||||
msgid "Dribbble Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-team-member.php:306
|
||||
msgid "Behance Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-testimonial.php:26
|
||||
msgid "SE: Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-testimonial.php:27
|
||||
msgid "A Testimonial Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-testimonial.php:48
|
||||
#: includes/widgets/widget-testimonial.php:191
|
||||
msgid "Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-testimonial.php:202
|
||||
msgid "Add Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:28
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:29
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:39
|
||||
msgid "SE: Twitter Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:40
|
||||
msgid "A widget that shows latest tweets"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:140
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:141
|
||||
#: includes/widgets/widget-twitter-feeds.php:142
|
||||
msgid "Choose a theme…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:154
|
||||
msgid "Twitter Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:159
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:164
|
||||
msgid "Link Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/widget-twitter-feeds.php:170
|
||||
msgid "Number of tweets"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Surplus Essentials"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/surplus-essentials/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Surplus Essentials Provides necessary features to extend WordPress "
|
||||
"functionality and for better blogging experience."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "surplusthemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://surplusthemes.com/"
|
||||
msgstr ""
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/synctrackinginfo/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/synctrackinginfo/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
2020-05-19 - version 1.0.0
|
||||
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/texteller/change_log/changelog.txt
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/texteller/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
= 0.1.3 =
|
||||
* New: Added a new tool to import members from users registered via third-party plugins
|
||||
* New: Added a new metabox to WooCommerce Edit Order page for site admins to view member's number and send text messages directly from order screen
|
||||
* New: Introduced two new hooks to add custom gateways: 'tlr_gateway_class_name' & 'tlr_available_gateways'
|
||||
* Tweak: Improved plugin cron jobs structure
|
||||
* Fix: Conflict on the pages with multiple mobile number fields (e.g. WC Account Page with a Newsletter widget in the footer)
|
||||
* Fix: Removed some redundant codes and the misc directory
|
||||
* Fix: Removed plugin system log messages from translatable texts
|
||||
* Fix: Now we use a custom array_key_first() function to be compatible with PHP < 7.3 & keep minimum requirement as 7.1
|
||||
* Fix: Wrong email error when registering from wp-login.php on a Non-English sites
|
||||
* Fix: UI glitch in the form fields on WC pages
|
||||
* Fix: Fixed a PHP warning while deleting members, when there is no defined staff on the site
|
||||
* Fix: Wrong URL for options page in the description on "Dashboard Add New User" screen
|
||||
* Fix: Empty values for some member tags in "WordPress New User" notifications
|
||||
* Fix: Improved tag insertion by click, for notification options with multiple trigger recipients
|
||||
|
||||
= 0.1.2 =
|
||||
* New: Added 5 new notification triggers: WC Order Status Changed to NEW-STATUS
|
||||
* Tweak: Added 'Creator Admin' as a trigger recipient type, on 'Admin Dashboard New Order' notification trigger
|
||||
* Fix: Now the notifications related to new WC orders (placed by customers) would be sent after a successful payment or when COD payment is selected (Action hook 'woocommerce_order_payment_status_changed' is used instead of 'woocommerce_new_order')
|
||||
* Fix: Now The notification for new WC orders placed by customers won't be sent when the member is not verified yet and "Force Number Verification on Checkout" is set as enabled
|
||||
|
||||
= 0.1.1 =
|
||||
* Tweak: Added plugin links on Admin Dashboard: Plugins
|
||||
* Fix: Improved some of the translatable texts
|
||||
|
||||
= 0.1.0 =
|
||||
Initial release
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the User Posts Limit plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: User Posts Limit 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/user-posts-limit\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Condless <info@condless.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-23 01:48+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: user-posts-limit\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: user-posts-limit.php:125
|
||||
msgid "User Posts Limit"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/user-posts-limit/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Limit the number of posts user can create. Any post type."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr ""
|
||||
|
||||
#: user-posts-limit.php:92
|
||||
msgid "Posts limit exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: user-posts-limit.php:130
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#: user-posts-limit.php:148
|
||||
msgid "Limit"
|
||||
msgstr ""
|
||||
|
||||
#: user-posts-limit.php:152
|
||||
msgid "Cycle"
|
||||
msgstr ""
|
||||
66
spec/fixtures/dynamic_finders/plugin_version/user-profile-block/composer_file/package.json
vendored
Normal file
66
spec/fixtures/dynamic_finders/plugin_version/user-profile-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"name": "@hamworks/user-profile-block",
|
||||
"version": "0.0.2",
|
||||
"author": "Hiroshi Urabe <urabe@ham.works> (https://ham.works)",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
||||
"@babel/preset-typescript": "^7.9.0",
|
||||
"@types/lodash": "^4.14.150",
|
||||
"@types/vfile-message": "^2.0.0",
|
||||
"@types/wordpress__block-editor": "^2.2.7",
|
||||
"@types/wordpress__blocks": "^6.4.6",
|
||||
"@types/wordpress__editor": "^9.4.2",
|
||||
"@types/wordpress__i18n": "^3.4.0",
|
||||
"@typescript-eslint/eslint-plugin": "^2.30.0",
|
||||
"@typescript-eslint/parser": "^2.30.0",
|
||||
"@wordpress/browserslist-config": "2.6.0",
|
||||
"@wordpress/scripts": "^9.0.0",
|
||||
"cssnano": "^4.1.10",
|
||||
"postcss-cli": "^7.1.1",
|
||||
"postcss-import": "^12.0.1",
|
||||
"postcss-omit-import-tilde": "^1.0.1",
|
||||
"postcss-preset-env": "^6.7.0",
|
||||
"postcss-url": "^8.0.0",
|
||||
"prettier": "npm:wp-prettier@^2.0.4",
|
||||
"typescript": "^3.8.3"
|
||||
},
|
||||
"license": "GPL-2.0+",
|
||||
"main": "build/index.js",
|
||||
"release-it": {
|
||||
"hooks": {
|
||||
"before:bump": "bash ./bin/build.sh user-profile-block ${version}",
|
||||
"after:bump": "bash ./bin/create-zip.sh user-profile-block",
|
||||
"after:release": "bash ./bin/cleanup.sh user-profile-block"
|
||||
},
|
||||
"github": {
|
||||
"release": true,
|
||||
"assets": [
|
||||
"user-profile-block.zip"
|
||||
]
|
||||
},
|
||||
"npm": {
|
||||
"publish": false
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"url": "git@github.com:team-hamworks/user-profile-block.git",
|
||||
"type": "git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "NODE_ENV=production npm run build:dev",
|
||||
"build:dev": "tsc && npm run postcss && wp-scripts build",
|
||||
"env": "wp-scripts env",
|
||||
"lint-js": "wp-scripts lint-js --ext .js,.jsx,.ts,.tsx src/**",
|
||||
"lint-js:fix": "npm run lint-js -- --fix",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"postcss": "postcss ./src/[^_]*.css --dir ./build --verbose",
|
||||
"start": "npm run postcss -- -w & tsc --watch & wp-scripts start",
|
||||
"tsc": "tsc"
|
||||
},
|
||||
"wp-env": {
|
||||
"plugin-dir": "user-profile-block",
|
||||
"plugin-name": "user-profile-block",
|
||||
"welcome-build-command": "npm run start"
|
||||
}
|
||||
}
|
||||
37868
spec/fixtures/dynamic_finders/plugin_version/voice/translation_file/languages/voice.pot
vendored
Normal file
37868
spec/fixtures/dynamic_finders/plugin_version/voice/translation_file/languages/voice.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
121
spec/fixtures/dynamic_finders/plugin_version/wc-save-for-later/translation_file/languages/woosl.pot
vendored
Normal file
121
spec/fixtures/dynamic_finders/plugin_version/wc-save-for-later/translation_file/languages/woosl.pot
vendored
Normal file
@@ -0,0 +1,121 @@
|
||||
# Copyright (C) 2020 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Save For Later for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Save For Later for WooCommerce 1.0.5\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-save-for-later\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-11T15:48:12+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: woosl\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Save For Later for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WordPress plugin for WooCommerce to add save for later functionality to products in your store. It will improve customer retention and return visits to your site by giving you."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:167
|
||||
#: wpc-save-for-later.php:221
|
||||
msgid "How to use?"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:183
|
||||
msgid "Premium support"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:193
|
||||
#: wpc-save-for-later.php:204
|
||||
msgid "WPC Save For Later"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:193
|
||||
msgid "Save For Later"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:207
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:210
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:212
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:214
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:225
|
||||
msgid "Premium Support"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:233
|
||||
msgid "After install & active plugin, you can see the save for later functionality on the Cart page."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:245
|
||||
msgid "Save for later"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:260
|
||||
msgid "Saved for later products (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:276
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:281
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:286
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:290
|
||||
msgid "Stock"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:291
|
||||
msgid "In stock"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:291
|
||||
msgid "Out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:294
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:298
|
||||
msgid "Add to cart"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-save-for-later.php:322
|
||||
msgid "WPC Save For Later require WooCommerce version 3.0.0 or greater."
|
||||
msgstr ""
|
||||
140
spec/fixtures/dynamic_finders/plugin_version/woo-order-notes/translation_file/languages/wooon.pot
vendored
Normal file
140
spec/fixtures/dynamic_finders/plugin_version/woo-order-notes/translation_file/languages/wooon.pot
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
# Copyright (C) 2020 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Order Notes for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Order Notes for WooCommerce 1.1.7\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-order-notes\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-14T15:01:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wooon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: wpc-order-notes.php:78
|
||||
msgid "WPC Order Notes for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Order notes viewer for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:63
|
||||
msgid "WPC Order Notes"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:63
|
||||
#: wpc-order-notes.php:320
|
||||
msgid "Order Notes"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:67
|
||||
#: wpc-order-notes.php:345
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:81
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:84
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:86
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:88
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:95
|
||||
#: wpc-order-notes.php:133
|
||||
msgid "How to use?"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:99
|
||||
#: wpc-order-notes.php:134
|
||||
msgid "Premium Support"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:106
|
||||
msgid "1. View all order notes"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:110
|
||||
msgid "2. Quick view all notes of an order"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:114
|
||||
msgid "3. Open the order page"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:207
|
||||
#: wpc-order-notes.php:278
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:210
|
||||
#: wpc-order-notes.php:281
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:213
|
||||
#: wpc-order-notes.php:284
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:216
|
||||
#: wpc-order-notes.php:287
|
||||
#: wpc-order-notes.php:380
|
||||
msgid "Note to customer"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:219
|
||||
#: wpc-order-notes.php:290
|
||||
msgid "Quick view"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:252
|
||||
#: wpc-order-notes.php:373
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:253
|
||||
#: wpc-order-notes.php:376
|
||||
msgid "by %s"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:298
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:308
|
||||
msgid "%d notes in %d pages"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:326
|
||||
msgid "Permissions check failed"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-order-notes.php:344
|
||||
msgid "Latest Note"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,228 @@
|
||||
# Copyright (C) 2020 Jörn Lund
|
||||
# This file is distributed under the same license as the WP Dashboard Messages plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Dashboard Messages 1.1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-dashboard-messages\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-05-12T12:47:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-dashboard-messages\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Dashboard Messages"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/mcguffin/wp-dashboard-messages"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Show Messages on the WP Admin Dashboard."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jörn Lund"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/mcguffin"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Admin/Admin.php:104
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Admin/Admin.php:110
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Compat/WPMU.php:55
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:173
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Compat/WPMU.php:89
|
||||
#: include/DashboardMessages/Compat/WPMU.php:139
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Compat/WPMU.php:101
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Compat/WPMU.php:106
|
||||
msgid "This Blog"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Compat/WPMU.php:157
|
||||
msgid "Show message only on this blog."
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Compat/WPMU.php:172
|
||||
msgid "Show message on the entire network."
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:67
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:336
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:71
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:75
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:79
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:83
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:87
|
||||
msgid "Yellow"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:91
|
||||
msgid "Purple"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:95
|
||||
msgid "Red"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:99
|
||||
msgid "Green"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:103
|
||||
msgid "Blue"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/Core/Core.php:107
|
||||
msgid "Cyan"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:55
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Dashboard Messages"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:56
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Dashboard Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:57
|
||||
msgid "Dashboard Messages"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:58
|
||||
msgid "Parent Message:"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:59
|
||||
msgid "All Messages"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:60
|
||||
msgid "View Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:61
|
||||
msgid "Add New Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:62
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:63
|
||||
msgid "Edit Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:64
|
||||
msgid "Update Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:65
|
||||
msgid "Search Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:66
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:67
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:71
|
||||
msgid "Dashboard Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:72
|
||||
msgid "With Dashboard Messages an Administrator can put up Messages to the WordPress dashboard."
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:194
|
||||
msgid "Color Scheme"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:223
|
||||
msgid "Metabox (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:224
|
||||
msgid "Dismissable"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:228
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:257
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:261
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:267
|
||||
msgid "No Icon"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:288
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:297
|
||||
msgid "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:298
|
||||
msgid "Side"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:326
|
||||
msgid "Priority"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:335
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: include/DashboardMessages/PostType/PostTypeDashboardMessage.php:337
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,207 @@
|
||||
# Copyright (C) 2015 AxisThemes
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce eSewa 1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/axisthemes/woocommerce-esewa/issues\n"
|
||||
"POT-Creation-Date: 2015-08-12 06:55:58+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.2\n"
|
||||
|
||||
#: deploy/includes/class-wc-esewa-gateway.php:36
|
||||
#: includes/class-wc-esewa-gateway.php:36
|
||||
msgid "Proceed to eSewa"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/class-wc-esewa-gateway.php:37
|
||||
#: deploy/includes/includes/settings-esewa.php:22
|
||||
#: includes/class-wc-esewa-gateway.php:37
|
||||
#: includes/includes/settings-esewa.php:22
|
||||
msgid "eSewa"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/class-wc-esewa-gateway.php:38
|
||||
#: includes/class-wc-esewa-gateway.php:38
|
||||
msgid ""
|
||||
"The eSewa epay system sends customers to eSewa to enter their payment "
|
||||
"information."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/class-wc-esewa-gateway.php:101
|
||||
#: includes/class-wc-esewa-gateway.php:101
|
||||
msgid "Gateway Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/class-wc-esewa-gateway.php:101
|
||||
#: includes/class-wc-esewa-gateway.php:101
|
||||
msgid "eSewa does not support your store currency."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/class-wc-gateway-esewa-ipn-handler.php:59
|
||||
#: includes/includes/class-wc-gateway-esewa-ipn-handler.php:59
|
||||
msgid "eSewa IPN response failed."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/class-wc-gateway-esewa-ipn-handler.php:130
|
||||
#: includes/includes/class-wc-gateway-esewa-ipn-handler.php:130
|
||||
msgid "Validation error: eSewa amounts do not match (gross %s)."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/class-wc-gateway-esewa-ipn-handler.php:148
|
||||
#: includes/includes/class-wc-gateway-esewa-ipn-handler.php:148
|
||||
msgid "IPN payment completed"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/class-wc-gateway-esewa-ipn-handler.php:150
|
||||
#: includes/includes/class-wc-gateway-esewa-ipn-handler.php:150
|
||||
msgid "Payment pending: %s"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/class-wc-gateway-esewa-ipn-handler.php:159
|
||||
#: includes/includes/class-wc-gateway-esewa-ipn-handler.php:159
|
||||
msgid "Payment %s via IPN."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/class-wc-gateway-esewa-pdt-handler.php:76
|
||||
#: includes/includes/class-wc-gateway-esewa-pdt-handler.php:76
|
||||
msgid "Validation error: eSewa amounts do not match (amt %s)."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/class-wc-gateway-esewa-pdt-handler.php:78
|
||||
#: includes/includes/class-wc-gateway-esewa-pdt-handler.php:78
|
||||
msgid "PDT payment completed"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:12
|
||||
#: includes/includes/settings-esewa.php:12
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:14
|
||||
#: includes/includes/settings-esewa.php:14
|
||||
msgid "Enable eSewa Payment"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:18
|
||||
#: includes/includes/settings-esewa.php:18
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:21
|
||||
#: includes/includes/settings-esewa.php:21
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:25
|
||||
#: includes/includes/settings-esewa.php:25
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:28
|
||||
#: includes/includes/settings-esewa.php:28
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:29
|
||||
#: includes/includes/settings-esewa.php:29
|
||||
msgid "Pay via eSewa; you can pay with eSewa account securly."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:32
|
||||
#: includes/includes/settings-esewa.php:32
|
||||
msgid "Service Code"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:35
|
||||
#: includes/includes/settings-esewa.php:35
|
||||
msgid ""
|
||||
"Please enter your eSewa Service Code; this is needed in order to take "
|
||||
"payment."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:40
|
||||
#: includes/includes/settings-esewa.php:40
|
||||
msgid "Invoice Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:43
|
||||
#: includes/includes/settings-esewa.php:43
|
||||
msgid ""
|
||||
"Please enter a prefix for your invoice numbers. If you use your eSewa "
|
||||
"account for multiple stores ensure this prefix is unique as eSewa will not "
|
||||
"allow orders with the same invoice number."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:47
|
||||
#: includes/includes/settings-esewa.php:47
|
||||
msgid "Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:49
|
||||
#: includes/includes/settings-esewa.php:49
|
||||
msgid "Enable Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:51
|
||||
#: includes/includes/settings-esewa.php:51
|
||||
msgid ""
|
||||
"Enable eSewa sandbox to test payments. Sign up for a developer account "
|
||||
"%shere%s."
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:54
|
||||
#: includes/includes/settings-esewa.php:54
|
||||
msgid "Debug Log"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:56
|
||||
#: includes/includes/settings-esewa.php:56
|
||||
msgid "Enable logging"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/includes/includes/settings-esewa.php:58
|
||||
#: includes/includes/settings-esewa.php:58
|
||||
msgid "Log eSewa events, such as IPN requests, inside <code>%s</code>"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/woocommerce-esewa.php:116 woocommerce-esewa.php:112
|
||||
msgid "View Settings"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/woocommerce-esewa.php:116 woocommerce-esewa.php:112
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/woocommerce-esewa.php:128 woocommerce-esewa.php:123
|
||||
msgid "WooCommerce eSewa depends on the last version of %s or later to work!"
|
||||
msgstr ""
|
||||
|
||||
#: deploy/woocommerce-esewa.php:128 woocommerce-esewa.php:123
|
||||
msgid "WooCommerce 2.3"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce eSewa"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/axisthemes/woocommerce-esewa"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "WooCommerce eSewa is a Nepali payment gateway for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "AxisThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://axisthemes.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,55 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Hide Admin Warnings and Updates v1.0\n"
|
||||
"POT-Creation-Date: 2015-06-19 10:19+0200\n"
|
||||
"PO-Revision-Date: 2015-06-19 10:23+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: DrTech76\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 1.7.4\n"
|
||||
"X-Poedit-Basepath: E:\\TEMP\\wp_hide_plugin_updates_and_notifications"
|
||||
"\\\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: wphdpuw.php\n"
|
||||
|
||||
#: wphdpuw.php:112
|
||||
msgid "MENU_ITEM"
|
||||
msgstr "WP Hide"
|
||||
|
||||
#: wphdpuw.php:167
|
||||
msgid "OPTIONS_PAGE_HEADING"
|
||||
msgstr "WP Hide Plugin Updates & Notifications"
|
||||
|
||||
#: wphdpuw.php:168
|
||||
msgid "OPTIONS_PAGE_DESCRIPTION_NOTE"
|
||||
msgstr ""
|
||||
"Here you have the options to hide Updates/Warnings/Notifications for "
|
||||
"individual plugins installed on your Wordpress site."
|
||||
|
||||
#: wphdpuw.php:171
|
||||
msgid "OPTIONS_PAGE_SETTINGS_HEADING"
|
||||
msgstr "Options"
|
||||
|
||||
#: wphdpuw.php:173
|
||||
msgid "OPTION_WARNINGS_HEADING"
|
||||
msgstr "Hide Warnings"
|
||||
|
||||
#: wphdpuw.php:177
|
||||
msgid "OPTIONS_SAVE_BUTTON"
|
||||
msgstr "Save Changes"
|
||||
|
||||
#: wphdpuw.php:264
|
||||
msgid "OPTION_UPDATES_HEADING"
|
||||
msgstr "Hide Updates Settings"
|
||||
|
||||
#: wphdpuw.php:267
|
||||
msgid "TABLE_HEADING_PLUGIN_COLUMN"
|
||||
msgstr "Plugin"
|
||||
|
||||
#: wphdpuw.php:268
|
||||
msgid "TABLE_HEADING_UPDATES_COLUMN"
|
||||
msgstr "Hide Updates"
|
||||
@@ -0,0 +1,189 @@
|
||||
# Copyright (C) 2020 Restaumatic.com
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Restaumatic – Active Menu for restaurants 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-restaumatic\n"
|
||||
"Last-Translator: Restaumatic <contact@restaumatic.com>\n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-20T15:10:39+00:00\n"
|
||||
"PO-Revision-Date: 2020-04-20 15:13+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: wp-restaumatic\n"
|
||||
"Language: pl_PL\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
|
||||
"&&(n%100<10||n%100 >= 20)? 1 : 2);\n"
|
||||
"X-Loco-Version: 2.3.2; wp-5.4"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-wp-restaumatic-settings.php:104
|
||||
msgid "WP Restaumatic"
|
||||
msgstr "WP Restaumatic"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#: admin/class-wp-restaumatic-settings.php:139
|
||||
#: admin/class-wp-restaumatic-settings.php:229
|
||||
#: admin/class-wp-restaumatic-settings.php:261
|
||||
msgid "https://www.restaumatic.com/en/ordering-system/"
|
||||
msgstr "https://www.restaumatic.com/pl/ordering-system/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Restaumatic Active Menu integration. Fully featured food ordering system for "
|
||||
"your WordPress website."
|
||||
msgstr ""
|
||||
"Integracja Aktywnego Menu Restaumatic. W pełni funkcjonalny system "
|
||||
"zamawiania jedzenia dla Twojej strony na WordPress."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Restaumatic"
|
||||
msgstr "Restaumatic"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.restaumatic.com"
|
||||
msgstr "https://www.restaumatic.com/pl/"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:113
|
||||
msgid "Shortcode"
|
||||
msgstr "Shortcode"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:118
|
||||
msgid ""
|
||||
"In order to include Active Menu, use the following code on any page (paste "
|
||||
"it just as regular content in the editor)"
|
||||
msgstr ""
|
||||
"W celu dołączenia Aktywnego Menu, użyj następującego kodu na dowolnej "
|
||||
"stronie (wklej go jak normalną treść w edytorze)"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:121
|
||||
msgid ""
|
||||
"In order to include Active Menu on your page, you need to provide the slug "
|
||||
"assigned to your account"
|
||||
msgstr ""
|
||||
"W celu dołączenia Aktywnego Menu na swojej stronie, musisz podać slug "
|
||||
"przypisany do konta"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:130
|
||||
msgid "Useful links"
|
||||
msgstr "Przydatne linki"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:135
|
||||
msgid "Restaurant Panel"
|
||||
msgstr "Panel Restauratora"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:139
|
||||
msgid "More about the Active Menu"
|
||||
msgstr "Więcej o Aktywnym Menu"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:142
|
||||
msgid "Plugin documentation"
|
||||
msgstr "Dokumentacja wtyczki"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:145
|
||||
#: admin/class-wp-restaumatic-settings.php:266
|
||||
msgid "https://www.restaumatic.com/en/contact/"
|
||||
msgstr "https://www.restaumatic.com/pl/contact/"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:145
|
||||
msgid "Support"
|
||||
msgstr "Wsparcie"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:148
|
||||
msgid "https://www.restaumatic.com/en/"
|
||||
msgstr "https://www.restaumatic.com/pl/"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:148
|
||||
msgid "Restaumatic home page"
|
||||
msgstr "Strona główna Restaumatic"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:167
|
||||
msgid "Active Menu Settings"
|
||||
msgstr "Ustawienia Aktywnego Menu"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:174
|
||||
msgid "Slug"
|
||||
msgstr "Slug"
|
||||
|
||||
#. Translators: %s is replaced with example Active Menu slug.
|
||||
#: admin/class-wp-restaumatic-settings.php:212
|
||||
msgid ""
|
||||
"The example %s slug is currently set. It's supposed to be used only for demo "
|
||||
"purposes, so don't publish the page with Active Menu shortcode (you won't be "
|
||||
"able to receive and manage orders)."
|
||||
msgstr ""
|
||||
"Aktualnie ustawiony jest przykładowy slug %s. Jest on przeznaczony jedynie "
|
||||
"do celów demonstracyjnych, więc nie publikuj strony z shortcodem Aktywnego "
|
||||
"Menu (nie będziesz w stanie odbierać i zarządzać zamówieniami)."
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:220
|
||||
msgid ""
|
||||
"Add Restaumatic Active Menu to your website and start selling online using "
|
||||
"fully featured food ordering system."
|
||||
msgstr ""
|
||||
"Dodaj Aktywne Menu Restaumatic do swojej strony internetowej i zacznij "
|
||||
"sprzedawać online korzystając z pełni funkcjonalnego systemu zamawiania "
|
||||
"jedzenia."
|
||||
|
||||
#. Translators: %s is replaced by the Active Menu sign up link ("the Active Menu on Restaumatic.com").
|
||||
#: admin/class-wp-restaumatic-settings.php:226
|
||||
msgid ""
|
||||
"For this plugin to work, you must sign up for %s. After that, you will get "
|
||||
"the slug to use below, which allows you to include your own Active Menu on "
|
||||
"your website using the shortcode."
|
||||
msgstr ""
|
||||
"Aby skorzystać z tej wtyczki, musisz zapisać się po %s. Po tym uzyskasz slug "
|
||||
"do użycia poniżej, który pozwoli Ci załączyć własne Aktywne Menu na Twojej "
|
||||
"stronie korzystając z shortcodu."
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:230
|
||||
msgid "the Active Menu on Restaumatic.com"
|
||||
msgstr "Aktywne Menu na Restaumatic.com"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:235
|
||||
msgid "Do you want to manage your Active Menu?"
|
||||
msgstr "Chcesz zarządzać swoim Aktywnym Menu?"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:238
|
||||
msgid "Go to the Restaurant Panel"
|
||||
msgstr "Przejdź do Panelu Restauratora"
|
||||
|
||||
#. Translators: %1$s is replaced by learn more link and %2$s is replaced by contact link.
|
||||
#: admin/class-wp-restaumatic-settings.php:258
|
||||
msgid "Don't you know what Active Menu is or don't have one? %1$s or %2$s"
|
||||
msgstr "Nie wiesz co to jest Aktywne Menu lub nie posiadasz go? %1$s lub %2$s"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:262
|
||||
msgid "Learn more"
|
||||
msgstr "Dowiedz się więcej"
|
||||
|
||||
#: admin/class-wp-restaumatic-settings.php:267
|
||||
msgid "contact us"
|
||||
msgstr "skontaktuj się z nami"
|
||||
|
||||
#. Translators: %s is replaced with example Active Menu slug.
|
||||
#: admin/class-wp-restaumatic-settings.php:275
|
||||
msgid "You can also see the demo using example %s slug."
|
||||
msgstr "Możesz także sprawdzić demo używając przykładowego sluga %s."
|
||||
|
||||
#: public/class-wp-restaumatic-public.php:85
|
||||
msgid "Active Menu slug is missing."
|
||||
msgstr "Slug Aktywnego Menu nie został dodany."
|
||||
|
||||
#: public/class-wp-restaumatic-public.php:88
|
||||
msgid "Go to the settings"
|
||||
msgstr "Przejdź do ustawień"
|
||||
|
||||
#: public/class-wp-restaumatic-public.php:95
|
||||
msgid ""
|
||||
"Example Active Menu for demo purposes only. All orders will be automatically "
|
||||
"canceled."
|
||||
msgstr ""
|
||||
"Przykładowe Aktywne Menu jedynie do celów testowych. Wszystkie zamówienia "
|
||||
"będą automatycznie anulowane."
|
||||
|
||||
#: public/class-wp-restaumatic-public.php:103
|
||||
msgid "Menu"
|
||||
msgstr "Menu"
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2020 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Ajax Add to Cart plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Ajax Add to Cart 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-ajax-add-to-cart\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-05-16T19:23: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-ajax-add-to-cart\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Ajax Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Ajax add to cart for WooCommerce products."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright (C) 2019 WPHobby Demo Import
|
||||
# This file is distributed under the same license as the WPHobby Demo Import package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPHobby Demo Import 1.0.6\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"Project-Id-Version: whdi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: support@wphobby.com\n"
|
||||
"Report-Msgid-Bugs-To: support@wphobby.com\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: wphobby-demo-import.php:44
|
||||
msgid "WPHobby Demo Import is enabled but not effective. It requires you activate the Elementor plugin."
|
||||
msgstr ""
|
||||
|
||||
#: wphobby-demo-import.php:45
|
||||
msgid "Activate Elementor Now"
|
||||
msgstr ""
|
||||
|
||||
#: wphobby-demo-import.php:51
|
||||
msgid "WPHobby Demo Import is enabled but not effective. It requires you install the Elementor plugin."
|
||||
msgstr ""
|
||||
|
||||
#: wphobby-demo-import.php:53
|
||||
msgid "Install Elementor Now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/tab-general.php:11
|
||||
msgid "Premium E-mail Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/tab-general.php:12
|
||||
msgid "As a WPHobby Premium Customer you has access to premium e-mail support."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/tab-general.php:13
|
||||
msgid "Get Premium support"
|
||||
msgstr ""
|
||||
795
spec/fixtures/dynamic_finders/plugin_version/wprequal/translation_file/i18h/wprequal.pot
vendored
Normal file
795
spec/fixtures/dynamic_finders/plugin_version/wprequal/translation_file/i18h/wprequal.pot
vendored
Normal file
@@ -0,0 +1,795 @@
|
||||
# Copyright (C) 2020 WPrequal
|
||||
# This file is distributed under the same license as the WPrequal plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPrequal 7.6.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wprequal\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-18T00:30:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: wprequal\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "WPrequal"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wprequal.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Mortgage and Real Estate Lead Capture System"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.ContactFormAdmin.php:141
|
||||
msgid "Form Builder - Contact Fields"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.ContactFormAdmin.php:149
|
||||
msgid "Form Builder - Lead Fields"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.ContactFormAdmin.php:157
|
||||
msgid "Form Builder - Inputs"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.ContactFormAdmin.php:166
|
||||
#: app/classes/class.RegisterFormAdmin.php:63
|
||||
msgid "Form Builder - Details"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.ContactFormAdmin.php:175
|
||||
#: app/classes/class.SurveyFormAdmin.php:193
|
||||
#: app/classes/class.RegisterFormAdmin.php:72
|
||||
msgid "Form Builder - Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.SurveyFormAdmin.php:144
|
||||
msgid "WARNING: You are about to reset the form slides. All edits to the form slides will be lost. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.SurveyFormAdmin.php:154
|
||||
msgid "You must select a template!"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.SurveyFormAdmin.php:167
|
||||
msgid "Form Builder - Options"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.SurveyFormAdmin.php:175
|
||||
msgid "Form Builder - Slides"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.SurveyFormAdmin.php:184
|
||||
msgid "Form Builder - Styles"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.SurveyFormAdmin.php:201
|
||||
msgid "Form Builder - Template"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.SurveyFormAdmin.php:209
|
||||
msgid "Form Builder - Back Link"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Note.php:62
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Note.php:198
|
||||
msgid "New note:"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Note.php:209
|
||||
msgid "Save note"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:434
|
||||
msgid "Contact Info"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:443
|
||||
msgid "Lead Fields"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:497
|
||||
msgid "checkall"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:498
|
||||
#: views/settings/startup-form.php:52
|
||||
#: views/contact/admin/contact-fields.php:17
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:499
|
||||
msgid "Lead Source"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:500
|
||||
msgid "Social Media Referrer"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:501
|
||||
msgid "URL Param Referrer"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Lead.php:502
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.Settings.php:181
|
||||
#: app/classes/class.Settings.php:182
|
||||
#: views/settings/page.php:18
|
||||
msgid "WPrequal Settings"
|
||||
msgstr ""
|
||||
|
||||
#: app/classes/class.RegisterFormAdmin.php:54
|
||||
#: views/settings/startup-form.php:90
|
||||
msgid "Form Builder"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetSurveyForm.php:19
|
||||
msgid "WPrequal Survey Form"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetSurveyForm.php:20
|
||||
msgid "Add a mortgage survey form"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetCalcButton.php:17
|
||||
msgid "WPrequal Calculator Button"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetCalcButton.php:18
|
||||
msgid "Display a Mortgage Calculator Pop Up Button."
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetContactForm.php:19
|
||||
msgid "WPrequal Contact Form"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetContactForm.php:20
|
||||
msgid "Add a contact form"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetAmortize.php:17
|
||||
msgid "WPrequal Amortize"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetAmortize.php:18
|
||||
msgid "Display a Mortgage Amortization Calculator."
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetCalc.php:17
|
||||
msgid "WPrequal Calculator"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetCalc.php:19
|
||||
msgid "Display a Mortgage Calculator."
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetCalc.php:65
|
||||
msgid "Focus Template"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetCalc.php:74
|
||||
msgid "Small Calculator"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetCalc.php:83
|
||||
msgid "Dark Background"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetRegisterForm.php:19
|
||||
msgid "WPrequal Register Form"
|
||||
msgstr ""
|
||||
|
||||
#: app/widgets/class.WidgetRegisterForm.php:20
|
||||
msgid "Add a register form"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:39
|
||||
msgid "API Access Token Required"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:47
|
||||
msgid "Please keep me up to date with all the latest security and feature updates."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:60
|
||||
#: views/contact/admin/contact-fields.php:18
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:84
|
||||
msgid "FREE Features"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:87
|
||||
msgid "Lead Capture Forms"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:88
|
||||
msgid "Contact Forms"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:89
|
||||
msgid "Registartion Forms"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:91
|
||||
msgid "Lead Manager"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:92
|
||||
msgid "Mortgage Calculators"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:93
|
||||
msgid "Amortization Calculator"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:94
|
||||
msgid "Mortgage Calculator Pop Up Button"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:97
|
||||
msgid "Premium and Pro Features"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:102
|
||||
#: views/buttons/help-buttons.php:78
|
||||
msgid "Connect API"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:105
|
||||
msgid "Custom Colors"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:106
|
||||
msgid "Confirmation Redirects"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/startup-form.php:107
|
||||
msgid "Text Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/widget/register-form.php:32
|
||||
#: views/contact/widget/contact-form.php:32
|
||||
msgid "Ttile:"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/widget/register-form.php:46
|
||||
#: views/contact/widget/contact-form.php:46
|
||||
msgid "Content:"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/widget/register-form.php:57
|
||||
msgid "Register Form"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/widget/contact-form.php:57
|
||||
#: views/survey/admin/slide-options.php:21
|
||||
#: views/survey/admin/contact.php:29
|
||||
msgid "Contact Form"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:28
|
||||
#: views/survey/admin/button.php:18
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:36
|
||||
msgid "From Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:41
|
||||
msgid "What email should your leads be sent from?"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:46
|
||||
msgid "To Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:51
|
||||
msgid "Where you would like your WPrequal lead emails sent?"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:56
|
||||
msgid "Bcc Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:73
|
||||
msgid "SMS Text Carrier Gateway"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/details.php:80
|
||||
msgid "Where you would like your WPrequal notification text sent? <a href=\"https://wprequal.com/mobile-carrier-gateway-addresses/\" target=\"_blank\">Find Your Carrier Gateway</a>"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/lead-fields.php:17
|
||||
#: views/survey/admin/slide-options.php:18
|
||||
msgid "Text Input"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/lead-fields.php:18
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/lead-fields.php:19
|
||||
msgid "Radio Button"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/lead-fields.php:20
|
||||
msgid "Select Menu"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/lead-fields.php:21
|
||||
msgid "Text Area"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/lead-fields.php:22
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/label.php:19
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/placeholder.php:17
|
||||
msgid "Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/contact-fields.php:19
|
||||
#: views/lead/contact.php:62
|
||||
#: views/email/notification.php:111
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/contact-fields.php:20
|
||||
#: views/lead/contact.php:73
|
||||
#: views/email/notification.php:123
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/options.php:17
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/phone-mask.php:24
|
||||
msgid "Phone Mask"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/required.php:19
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/name.php:28
|
||||
msgid "First Name Label"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/name.php:33
|
||||
msgid "Last Name Label"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/default-value.php:19
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact/admin/email-mask.php:22
|
||||
msgid "Email Mask"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/get-connect-api.php:16
|
||||
msgid "Get Connect API"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/pro-fa-icons.php:16
|
||||
msgid "Font Awesome Icons"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/go-premium.php:18
|
||||
msgid "Go Premium to Unlock"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/help-buttons.php:38
|
||||
msgid "Go Premium"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/help-buttons.php:49
|
||||
msgid "Go Pro"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/help-buttons.php:59
|
||||
msgid "Go Landing Page"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/help-buttons.php:69
|
||||
msgid "My Account"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/help-buttons.php:86
|
||||
msgid "How-To"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/help-buttons.php:92
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/help-buttons.php:98
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/free-fa-icons.php:16
|
||||
msgid "Free Font Awesome Icons"
|
||||
msgstr ""
|
||||
|
||||
#: views/buttons/go-pro.php:16
|
||||
msgid "Go Pro to Unlock"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/upgrade-metabox.php:19
|
||||
msgid "Upgrade Required to edit survey forms."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/submit-metabox.php:51
|
||||
msgid "Delete Permanently"
|
||||
msgstr ""
|
||||
|
||||
#: views/calc/property-tax.php:21
|
||||
#: views/calc/insurance.php:21
|
||||
msgid " /year"
|
||||
msgstr ""
|
||||
|
||||
#: views/calc/amortize.php:35
|
||||
msgid "Principle:"
|
||||
msgstr ""
|
||||
|
||||
#: views/calc/amortize.php:38
|
||||
msgid "Interest:"
|
||||
msgstr ""
|
||||
|
||||
#: views/calc/amortize.php:41
|
||||
msgid "Balance:"
|
||||
msgstr ""
|
||||
|
||||
#: views/calc/amortize.php:45
|
||||
msgid "Month:"
|
||||
msgstr ""
|
||||
|
||||
#: views/calc/interest-rate.php:21
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
|
||||
#: views/calc/button.php:16
|
||||
msgid "Mortgage Calculator"
|
||||
msgstr ""
|
||||
|
||||
#: views/lead/export.php:16
|
||||
#: views/lead/export.php:27
|
||||
msgid "Export Leads"
|
||||
msgstr ""
|
||||
|
||||
#: views/lead/contact.php:29
|
||||
#: views/email/notification.php:75
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/lead/contact.php:40
|
||||
#: views/email/notification.php:87
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/lead/contact.php:51
|
||||
#: views/email/notification.php:99
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/form/icon.php:21
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/form/amount.php:26
|
||||
#: views/survey/form/text.php:24
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/widget/form.php:26
|
||||
msgid " Survey Form"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-start.php:33
|
||||
msgid "Lead Field Label"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-start.php:40
|
||||
msgid "Heading"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-start.php:43
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-start.php:48
|
||||
msgid "Sub Heading"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slides.php:19
|
||||
msgid "Please add at least 1 silde."
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slides.php:24
|
||||
msgid "Note: All forms must end with a contact form, processing slide, and a confirmation message or redirect."
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slides.php:28
|
||||
msgid "LOADING"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-options.php:17
|
||||
msgid "Icons"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-options.php:19
|
||||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-options.php:20
|
||||
msgid "Amount Slider"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-options.php:22
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-options.php:23
|
||||
#: views/survey/admin/confirmation.php:31
|
||||
msgid "Confirmation Message"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/slide-options.php:24
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/styles.php:28
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/styles.php:64
|
||||
msgid "Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/styles.php:83
|
||||
msgid "Icon Hover Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/styles.php:102
|
||||
msgid "Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/styles.php:121
|
||||
msgid "Button Hover Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/styles.php:140
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/contact.php:33
|
||||
msgid "Button Action"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/contact.php:37
|
||||
msgid "Form Submit"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/contact.php:38
|
||||
msgid "Next Slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/buttons.php:22
|
||||
msgid "Add Button"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/icons.php:22
|
||||
msgid "Add Icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:22
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:28
|
||||
#: views/survey/admin/amount.php:41
|
||||
#: views/survey/admin/template.php:24
|
||||
#: views/survey/admin/conditional-logic-result.php:22
|
||||
msgid "Select One"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:38
|
||||
msgid "Currency Placement"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:42
|
||||
msgid "Before Amount"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:43
|
||||
msgid "After Amount"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:49
|
||||
msgid "Default Amount"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:52
|
||||
msgid "Step Amount"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:57
|
||||
msgid "Minimum Amount"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/amount.php:60
|
||||
msgid "Maximum Amount"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:21
|
||||
msgid "Conditional Logic"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:39
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:40
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:43
|
||||
msgid " if "
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:46
|
||||
msgid "any"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:47
|
||||
msgid "all"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:50
|
||||
msgid " conditions match."
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic.php:59
|
||||
msgid "Add Condition:"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/back-text.php:20
|
||||
msgid "Back Link Text"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/back-text.php:25
|
||||
msgid "Leave blank to hide back link."
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/redirect.php:24
|
||||
msgid "How To Guide"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/redirect.php:33
|
||||
msgid "Redirect Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/redirect.php:47
|
||||
msgid "First Name Key"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/redirect.php:61
|
||||
msgid "Last Name Key"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/redirect.php:75
|
||||
msgid "Email Key"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/redirect.php:89
|
||||
msgid "Phone Key"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/redirect.php:103
|
||||
msgid "Additional Args"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/template.php:18
|
||||
msgid " Create Slides from Template"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/template.php:25
|
||||
msgid "Mortgage"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/template.php:26
|
||||
msgid "Real Estate"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/template.php:31
|
||||
msgid "NOTE:"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/template.php:32
|
||||
msgid "This will overwrite all current slides."
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/text.php:23
|
||||
msgid "Input Mask"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/text.php:29
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/text.php:30
|
||||
msgid "US Zip Code 99999"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/text.php:31
|
||||
msgid "Canada Postal Code a9a-9a9"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/text.php:32
|
||||
msgid "9999"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/text.php:33
|
||||
msgid "99999[-9999]"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic-result.php:26
|
||||
msgid "is equal to"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic-result.php:27
|
||||
msgid "is not equal to"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic-result.php:28
|
||||
msgid "is greater than"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic-result.php:29
|
||||
msgid "is less than"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic-result.php:30
|
||||
msgid "is greater than or equal to"
|
||||
msgstr ""
|
||||
|
||||
#: views/survey/admin/conditional-logic-result.php:31
|
||||
msgid "is less than or equal to"
|
||||
msgstr ""
|
||||
|
||||
#: views/email/notification.php:22
|
||||
msgid "WPrequal Lead"
|
||||
msgstr ""
|
||||
|
||||
#: views/email/notification.php:65
|
||||
msgid "Please contact your new WPrequal Lead ASAP."
|
||||
msgstr ""
|
||||
|
||||
#: views/email/notification.php:178
|
||||
msgid "WPrequal Leads"
|
||||
msgstr ""
|
||||
|
||||
#: views/email/notification.php:181
|
||||
msgid "support@wprequal.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,182 @@
|
||||
# Copyright (C) 2020 WPSSO Product Metadata for WooCommerce
|
||||
# This file is distributed under the same license as the WPSSO Product Metadata for WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPSSO Product Metadata for WooCommerce 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpsso-wc-"
|
||||
"metadata\n"
|
||||
"POT-Creation-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: lib/config.php:100
|
||||
msgctxt "option label"
|
||||
msgid "Product MPN"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:101
|
||||
msgid "%1$s refers to a product Manufacturer Part Number (MPN)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:122
|
||||
msgctxt "option label"
|
||||
msgid "Product ISBN"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:123
|
||||
msgid "%1$s refers to an ISBN code (aka International Standard Book Number)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:144
|
||||
msgctxt "option label"
|
||||
msgid "Product GTIN-14"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:145
|
||||
msgid "%1$s refers to a product GTIN-14 code (aka ITF-14)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:166
|
||||
msgctxt "option label"
|
||||
msgid "Product GTIN-13 (EAN)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:167
|
||||
msgid ""
|
||||
"%1$s refers to a product GTIN-13 code (aka 13-digit ISBN codes or EAN/"
|
||||
"UCC-13)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:188
|
||||
msgctxt "option label"
|
||||
msgid "Product GTIN-12 (UPC)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:189
|
||||
msgid ""
|
||||
"%1$s refers to a product GTIN-12 code (12-digit GS1 identification key "
|
||||
"composed of a UPC company prefix, item reference, and check digit)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:210
|
||||
msgctxt "option label"
|
||||
msgid "Product GTIN-8"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:211
|
||||
msgid "%1$s refers to a product GTIN-8 code (aka EAN/UCC-8 or 8-digit EAN)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:232
|
||||
msgctxt "option label"
|
||||
msgid "Product GTIN"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:233
|
||||
msgid ""
|
||||
"%1$s refers to a product GTIN code (GTIN-8, GTIN-12/UPC, GTIN-13/EAN, or "
|
||||
"GTIN-14)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:254
|
||||
msgctxt "option label"
|
||||
msgid "Product Depth"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:255
|
||||
msgid "%1$s refers to a product depth (in %2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:281
|
||||
msgctxt "option label"
|
||||
msgid "Product Fluid Volume"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:282
|
||||
msgid "%1$s refers to a product fluid volume (in %2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/filters.php:114
|
||||
msgid ""
|
||||
"Enable or disable additional information fields, modify the input label, "
|
||||
"input placeholder (can also be blank), and the information label."
|
||||
msgstr ""
|
||||
|
||||
#: lib/gettext-config.php:6
|
||||
msgctxt "lib file description"
|
||||
msgid "WooCommerce Metadata"
|
||||
msgstr ""
|
||||
|
||||
#: lib/gettext-config.php:7
|
||||
msgctxt "plugin description"
|
||||
msgid ""
|
||||
"GTIN, GTIN-8, GTIN-12 (UPC), GTIN-13 (EAN), GTIN-14, ISBN, MPN, Depth, and "
|
||||
"Volume for WooCommerce Products and Variations."
|
||||
msgstr ""
|
||||
|
||||
#: lib/submenu/wcmd-general.php:36
|
||||
msgctxt "metabox title"
|
||||
msgid "WooCommerce Metadata"
|
||||
msgstr ""
|
||||
|
||||
#: lib/submenu/wcmd-general.php:71
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: lib/submenu/wcmd-general.php:72
|
||||
msgid "Input Label"
|
||||
msgstr ""
|
||||
|
||||
#: lib/submenu/wcmd-general.php:73
|
||||
msgid "Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: lib/submenu/wcmd-general.php:74
|
||||
msgid "Information Label"
|
||||
msgstr ""
|
||||
|
||||
#: lib/woocommerce.php:74
|
||||
msgid "Fluid volume unit"
|
||||
msgstr ""
|
||||
|
||||
#: lib/woocommerce.php:79
|
||||
msgid "This controls what unit you will define fluid volumes in."
|
||||
msgstr ""
|
||||
|
||||
#: wpsso-wc-metadata.php:114
|
||||
msgid ""
|
||||
"The %1$s add-on requires the %2$s plugin — please install and activate "
|
||||
"the missing plugin."
|
||||
msgstr ""
|
||||
|
||||
#: wpsso-wc-metadata.php:328
|
||||
msgid ""
|
||||
"The %1$s version %2$s add-on requires %3$s version %4$s or newer (version "
|
||||
"%5$s is currently installed)."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WPSSO Product Metadata for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpsso.com/extend/plugins/wpsso-wc-metadata/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"GTIN, GTIN-8, GTIN-12 (UPC), GTIN-13 (EAN), GTIN-14, ISBN, MPN, Depth, and "
|
||||
"Volume for WooCommerce Products and Variations."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpsso.com/"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -21,15 +21,15 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.10.0'
|
||||
s.add_dependency 'cms_scanner', '~> 0.10.1'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 0.9.13'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.9.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.81.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.5.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.85.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.6.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.18.2'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
|
||||
Reference in New Issue
Block a user