Compare commits
51 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8aff900d4a | ||
|
|
3c99593599 | ||
|
|
d14bc739c8 | ||
|
|
6060fc7a69 | ||
|
|
d79163fcb5 | ||
|
|
145cae912b | ||
|
|
058eac160f | ||
|
|
f38cac8d8a | ||
|
|
2e19a423fc | ||
|
|
52e3e25741 | ||
|
|
1201ecbfd3 | ||
|
|
75de6316d2 | ||
|
|
4dbef70bd2 | ||
|
|
a0b5fb1107 | ||
|
|
14800f1f6c | ||
|
|
78231becd9 | ||
|
|
da180e1e20 | ||
|
|
c48be5e980 | ||
|
|
98a71d3af6 | ||
|
|
111693ce9e | ||
|
|
d926520b29 | ||
|
|
1a6e359d02 | ||
|
|
46d7ce0a65 | ||
|
|
fd63bfd5fa | ||
|
|
0778d7e5f6 | ||
|
|
9cb53bbf43 | ||
|
|
a98e37918b | ||
|
|
1d18514ab5 | ||
|
|
75d6a16298 | ||
|
|
d0ce7cb5c5 | ||
|
|
fa0d068c30 | ||
|
|
33d5199f51 | ||
|
|
ac14ce71be | ||
|
|
f4bb6e521e | ||
|
|
5f8aa862b4 | ||
|
|
3621f4cc15 | ||
|
|
b6e36b2605 | ||
|
|
7b55570cbb | ||
|
|
308997523c | ||
|
|
90433d77c6 | ||
|
|
c4bc3bf0e7 | ||
|
|
e9638bee06 | ||
|
|
850662902b | ||
|
|
26867873e2 | ||
|
|
7f491c2403 | ||
|
|
776ca22e77 | ||
|
|
dec31b5a1c | ||
|
|
96dbe526cf | ||
|
|
3113e7309e | ||
|
|
1809c6c195 | ||
|
|
adb84ef7da |
7
.codeclimate.yml
Normal file
7
.codeclimate.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
version: "2"
|
||||
# https://docs.codeclimate.com/docs/default-analysis-configuration#sample-codeclimateyml
|
||||
checks:
|
||||
method-complexity:
|
||||
enabled: true
|
||||
config:
|
||||
threshold: 15
|
||||
17
.github/dependabot.yml
vendored
Normal file
17
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "bundler"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
# Check for updates to GitHub Actions every weekday
|
||||
interval: "daily"
|
||||
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@@ -9,14 +9,14 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7]
|
||||
ruby: [2.5, 2.6, 2.7, 3.0]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v1
|
||||
uses: actions/checkout@v2.3.4
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
@@ -37,5 +37,6 @@ jobs:
|
||||
|
||||
- name: Coveralls
|
||||
uses: coverallsapp/github-action@master
|
||||
continue-on-error: true
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
4
.github/workflows/gempush.yml
vendored
4
.github/workflows/gempush.yml
vendored
@@ -10,9 +10,9 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ Lint/MissingSuper:
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Metrics/AbcSize:
|
||||
Max: 25
|
||||
Max: 27
|
||||
Metrics/BlockLength:
|
||||
Exclude:
|
||||
- 'spec/**/*'
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
|
||||
<p align="center">
|
||||
<a href="https://badge.fury.io/rb/wpscan" target="_blank"><img src="https://badge.fury.io/rb/wpscan.svg"></a>
|
||||
<a href="https://hub.docker.com/r/wpscanteam/wpscan/" target="_blank"><img src="https://img.shields.io/docker/pulls/wpscanteam/wpscan.svg"></a>
|
||||
<a href="https://github.com/wpscanteam/wpscan/actions?query=workflow%3ABuild" target="_blank"><img src="https://github.com/wpscanteam/wpscan/workflows/Build/badge.svg"></a>
|
||||
<a href="https://codeclimate.com/github/wpscanteam/wpscan" target="_blank"><img src="https://codeclimate.com/github/wpscanteam/wpscan/badges/gpa.svg"></a>
|
||||
</p>
|
||||
|
||||
@@ -39,18 +39,57 @@ module WPScan
|
||||
#
|
||||
# @return [ Hash ]
|
||||
def potential_urls(opts = {})
|
||||
urls = {}
|
||||
domain_name = (PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
urls = {}
|
||||
index = 0
|
||||
|
||||
File.open(opts[:list]).each_with_index do |path, index|
|
||||
path.gsub!('{domain_name}', domain_name)
|
||||
File.open(opts[:list]).each do |path|
|
||||
path.chomp!
|
||||
|
||||
urls[target.url(path.chomp)] = index
|
||||
if path.include?('{domain_name}')
|
||||
urls[target.url(path.gsub('{domain_name}', domain_name))] = index
|
||||
|
||||
if domain_name != domain_name_with_sub
|
||||
urls[target.url(path.gsub('{domain_name}', domain_name_with_sub))] = index + 1
|
||||
|
||||
index += 1
|
||||
end
|
||||
else
|
||||
urls[target.url(path)] = index
|
||||
end
|
||||
|
||||
index += 1
|
||||
end
|
||||
|
||||
urls
|
||||
end
|
||||
|
||||
def domain_name
|
||||
@domain_name ||= if Resolv::AddressRegex.match?(target.uri.host)
|
||||
target.uri.host
|
||||
else
|
||||
(PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
end
|
||||
end
|
||||
|
||||
def domain_name_with_sub
|
||||
@domain_name_with_sub ||=
|
||||
if Resolv::AddressRegex.match?(target.uri.host)
|
||||
target.uri.host
|
||||
else
|
||||
parsed = PublicSuffix.parse(target.uri.host)
|
||||
|
||||
if parsed.subdomain
|
||||
parsed.subdomain.gsub(".#{parsed.tld}", '')
|
||||
elsif parsed.domain
|
||||
parsed.domain.gsub(".#{parsed.tld}", '')
|
||||
else
|
||||
target.uri.host
|
||||
end
|
||||
end
|
||||
rescue PublicSuffix::DomainNotAllowed
|
||||
@domain_name_with_sub = target.uri.host
|
||||
end
|
||||
|
||||
def create_progress_bar(opts = {})
|
||||
super(opts.merge(title: ' Checking DB Exports -'))
|
||||
end
|
||||
|
||||
@@ -162,7 +162,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Typhoeus::Response ]
|
||||
def head_and_get(path, codes = [200], params = {})
|
||||
final_path = +@path_from_blog
|
||||
final_path = @path_from_blog.dup # @path_from_blog is set in the plugin/theme
|
||||
final_path << path unless path.nil?
|
||||
|
||||
blog.head_and_get(final_path, codes, params)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<% if @version -%>
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.capitalize %>, released on <%= @version.release_date %>).
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.tr('-', '_').humanize %>, released on <%= @version.release_date %>).
|
||||
<%= render('@finding', item: @version) -%>
|
||||
<% else -%>
|
||||
<%= notice_icon %> The WordPress version could not be detected.
|
||||
|
||||
@@ -13,6 +13,7 @@ require 'uri'
|
||||
require 'time'
|
||||
require 'readline'
|
||||
require 'securerandom'
|
||||
require 'resolv'
|
||||
# Monkey Patches/Fixes/Override
|
||||
require 'wpscan/typhoeus/response' # Adds a from_vuln_api? method
|
||||
# Custom Libs
|
||||
|
||||
@@ -11,7 +11,11 @@ module WPScan
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.all_df_data
|
||||
@all_df_data ||= YAML.safe_load(File.read(df_file), [Regexp])
|
||||
@all_df_data ||= if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('4.0.0')
|
||||
YAML.safe_load(File.read(df_file), permitted_classes: [Regexp])
|
||||
else
|
||||
YAML.safe_load(File.read(df_file), [Regexp])
|
||||
end
|
||||
end
|
||||
|
||||
# @return [ Array<Symbol> ]
|
||||
|
||||
@@ -125,14 +125,14 @@ module WPScan
|
||||
return @uri.to_s unless path
|
||||
|
||||
if %r{wp-content/plugins}i.match?(path)
|
||||
path = +path.gsub('wp-content/plugins', plugins_dir)
|
||||
new_path = path.gsub('wp-content/plugins', plugins_dir)
|
||||
elsif /wp-content/i.match?(path)
|
||||
path = +path.gsub('wp-content', content_dir)
|
||||
new_path = path.gsub('wp-content', content_dir)
|
||||
elsif path[0] != '/' && sub_dir
|
||||
path = "#{sub_dir}/#{path}"
|
||||
new_path = "#{sub_dir}/#{path}"
|
||||
end
|
||||
|
||||
super(path)
|
||||
super(new_path || path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.17'
|
||||
VERSION = '3.8.18'
|
||||
end
|
||||
|
||||
@@ -12,7 +12,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
end
|
||||
|
||||
it 'replaces {domain_name} by its value' do
|
||||
it 'replaces {domain_name} by its values' do
|
||||
expect(finder.potential_urls(opts).keys).to eql %w[
|
||||
http://ex.lo/aa/ex.sql
|
||||
http://ex.lo/aa/wordpress.sql
|
||||
@@ -27,8 +27,8 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context "when #{sub_domain} sub-domain" do
|
||||
let(:url) { "https://#{sub_domain}.domain.tld" }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql"
|
||||
it 'replaces {domain_name} by its correct values' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql", "#{url}/#{sub_domain}.domain.sql"
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -44,16 +44,22 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when multi-level tlds and sub-domain' do
|
||||
let(:url) { 'https://dev.something.com.tr' }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include 'https://dev.something.com.tr/something.sql'
|
||||
it 'replaces {domain_name} by its correct values' do
|
||||
expect(finder.potential_urls(opts).keys).to include(
|
||||
'https://dev.something.com.tr/something.sql',
|
||||
'https://dev.something.com.tr/dev.something.sql'
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when some weird stuff' do
|
||||
let(:url) { 'https://098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.com' }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain-test.sql"
|
||||
it 'replaces {domain_name} by its correct values' do
|
||||
expect(finder.potential_urls(opts).keys).to include(
|
||||
"#{url}/domain-test.sql",
|
||||
"#{url}/098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.sql"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -64,6 +70,14 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/dc-2.sql"
|
||||
end
|
||||
end
|
||||
|
||||
context 'when an IP address' do
|
||||
let(:url) { 'http://192.168.1.12' }
|
||||
|
||||
it 'replaces {domain_name} by the IP address' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/192.168.1.12.sql"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
|
||||
4365
spec/fixtures/db/dynamic_finders.yml
vendored
4365
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1925
spec/fixtures/dynamic_finders/expected.yml
vendored
1925
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "a-note-above",
|
||||
"version": "1.0.1",
|
||||
"description": "A way to keep notes on your dashboard.",
|
||||
"author": "Josh Brown <joshbrown101@gmail.com>",
|
||||
"license": "GPLv2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "webpack --watch --progress --hide-modules",
|
||||
"dev-build": "webpack -d --mode development",
|
||||
"build": "webpack -p --mode production"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.21.1",
|
||||
"vue": "^2.6.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.13",
|
||||
"@babel/preset-env": "latest",
|
||||
"babel-loader": "^8.2.2",
|
||||
"browser-sync": "^2.26.14",
|
||||
"browser-sync-webpack-plugin": "^2.3.0",
|
||||
"css-loader": "^3.6.0",
|
||||
"file-loader": "^4.3.0",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"html-webpack-template": "^6.2.0",
|
||||
"less": "^3.13.1",
|
||||
"less-loader": "^5.0.0",
|
||||
"mini-css-extract-plugin": "^0.8.2",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
||||
"terser-webpack-plugin": "^4.2.3",
|
||||
"url-loader": "^2.3.0",
|
||||
"vue-loader": "^15.9.6",
|
||||
"vue-template-compiler": "^2.6.12",
|
||||
"webpack": "^4.46.0",
|
||||
"webpack-cli": "^3.3.12"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,554 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Abandoned Cart for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-25 19:20+0530\n"
|
||||
"PO-Revision-Date: 2021-03-25 19:20+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: abandoned-cart-for-woocommerce.php:162
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: abandoned-cart-for-woocommerce.php:204
|
||||
msgid ""
|
||||
"Oops! You tried activating the ABANDONED CART FOR WOOCOMMERCE. Please "
|
||||
"activate WooCommerce and then try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:232
|
||||
msgid "Email Work Flow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:236
|
||||
msgid "Abandon Cart Reports "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:240
|
||||
msgid "Abandon Cart Analytics "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:244
|
||||
msgid " Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:264
|
||||
msgid "Enable plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:266
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:271
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:283
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:272
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:284
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:276
|
||||
msgid "Add to Cart Pop-Up"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:278
|
||||
msgid "Enable this to show pop-up at the add to cart time."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:288
|
||||
msgid "Add to Cart Pop-Up Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:290
|
||||
msgid "Enter title here to show on add to cart pop-up."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:294
|
||||
msgid "Add to Cart title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:297
|
||||
msgid "Add to Cart Pop-Up Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:299
|
||||
msgid "Enter text here to show on add to cart pop-up."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:303
|
||||
msgid "Add to Cart text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:306
|
||||
msgid "Cut-off time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:308
|
||||
msgid "Enter time in HOURS after which a cart will be treated as abandoned."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:313
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:323
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:352
|
||||
msgid "Enter Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:316
|
||||
msgid "Delete abandoned cart history"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:318
|
||||
msgid ""
|
||||
"Enter the number of days before which you dont want to keep history of "
|
||||
"abandoned cart. Remain blank to never delete history automatically."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:326
|
||||
msgid "User role for tracking "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:328
|
||||
msgid ""
|
||||
"Select user roles for which you want to track abandoned carts(By default "
|
||||
"only “GUEST USERS” are tracked)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:336
|
||||
msgid "Coupon code prefix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:338
|
||||
msgid ""
|
||||
"Add a pattern in which you want the coupons to be generated for Cart "
|
||||
"Abandoners. Generated coupon will be prefix_<random_5_digit_alphanumeric>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:342
|
||||
msgid "Enter Coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:345
|
||||
msgid "Coupon expiry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:347
|
||||
msgid ""
|
||||
"Enter the number of hours after which coupon will be expired if not used. "
|
||||
"Time will start at the time of coupon send."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:355
|
||||
msgid "Coupon Discount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:357
|
||||
msgid ""
|
||||
"Enter the percentage discount (between 1-100) which will apply on abandoned "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:363
|
||||
msgid "Enter Discount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:368
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:411
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:414
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:418
|
||||
msgid " Nonce Not Verified "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:485
|
||||
msgid "Nonce not verified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:508
|
||||
msgid "Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:511
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-product-report.php:71
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:514
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:517
|
||||
msgid "Total "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-admin-dashboard.php:26
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-admin-dashboard.php:28
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:125
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:36
|
||||
msgid "Abandoned Carts this Month"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:49
|
||||
msgid "Abandoned Carts till Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:64
|
||||
msgid "Recovered Carts this Month"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:80
|
||||
msgid "Recovered Carts till Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:95
|
||||
msgid "Recovered Money"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:119
|
||||
msgid "Money That Can Be recovered"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:142
|
||||
msgid "Graph of Abandoned Carts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:26
|
||||
msgid "Use Placeholders"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:26
|
||||
msgid "to apply a coupon on the cart"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:26
|
||||
msgid "for displaying the cart in the email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:27
|
||||
msgid " for checkout page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:52
|
||||
msgid "Enable The workflow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:71
|
||||
msgid "Initiate Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:81
|
||||
msgid "Enter time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:84
|
||||
msgid "Enter time In Hours"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:90
|
||||
msgid "Mail Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:100
|
||||
msgid "Enter Mail Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:103
|
||||
msgid "Enter Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:109
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:125
|
||||
msgid "Save Workflow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:22
|
||||
msgid "What Is Abandoned Cart For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:27
|
||||
msgid ""
|
||||
"Abandoned Cart For WooCommerce is an all-in-one solution to beat an online "
|
||||
"seller’s biggest nightmare, i.e, abandoned carts. With the help of this "
|
||||
"plugin, \n"
|
||||
"\t\t\t\t\tyou can very easily and efficiently win back your lost WooCommerce "
|
||||
"customers and skyrocket your conversion rate."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:33
|
||||
msgid "As a store owner, you get to:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:35
|
||||
msgid "Analyze deep insights into your abandoned carts and products."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:36
|
||||
msgid "Capture customer emails on the checkout and cart page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:37
|
||||
msgid "Send automated emails to your lost customers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:38
|
||||
msgid "Win-back even the unregistered customers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:39
|
||||
msgid "See a complete list of abandoned carts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:40
|
||||
msgid "Customizable abandoned cart workflows"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:41
|
||||
msgid "Disable tracking for selected user roles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:42
|
||||
msgid ""
|
||||
"Create an abandoned cart recovery strategy for even the variable products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:45
|
||||
msgid "The Free Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:53
|
||||
msgid " Advanced Reports For Abandoned Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:57
|
||||
msgid ""
|
||||
"The plugin comes with advanced reports for the abandoned carts made in your "
|
||||
"store. Thus, allowing you to \n"
|
||||
"\t\t\t\t\t\t\t\tmake an informed abandoned cart recovery strategy."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:72
|
||||
msgid "Workflow For Abandoned Carts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:73
|
||||
msgid ""
|
||||
"Abandoned Cart For WooCommerce comes with a customizable workflow that lets "
|
||||
"you send emails and win back your lost customers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:83
|
||||
msgid "Support Variable Product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:88
|
||||
msgid ""
|
||||
"The plugin works very well with and supports variable products on your "
|
||||
"WooCommerce store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:103
|
||||
msgid "Complete List Of Abandoned Users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:108
|
||||
msgid ""
|
||||
"The plugin gives you a complete list of shoppers that left carts abandoned "
|
||||
"on your WooCommerce store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:129
|
||||
msgid ""
|
||||
"Phone, Email & Skype support. Our Support is ready to assist you regarding "
|
||||
"any query, issue, or feature request and if that doesn't help our Technical "
|
||||
"team will connect with you personally and have your query\n"
|
||||
"\t\t\t\t\t\t\t\tresolved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-product-report.php:49
|
||||
msgid "Reports according products-name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-product-report.php:74
|
||||
msgid "Abandoned time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:138
|
||||
msgid "Abandoned"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:140
|
||||
msgid "Recovered"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:198
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:360
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:199
|
||||
msgid "Left Page FROM "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:200
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:201
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:321
|
||||
msgid "Nonce Not Verified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:368
|
||||
msgid "Full Details Of Cart"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-abandoned-cart-for-woocommerce-common.php:92
|
||||
msgid "Every custom time"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-abandoned-cart-for-woocommerce-common.php:97
|
||||
msgid "Delete custom time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:300
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:319
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:325
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:356
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:368
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:373
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:487
|
||||
msgid ""
|
||||
"Let us know why you are deactivating Abandoned Cart for WooCommerce so we "
|
||||
"can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:491
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:729
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:367
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:384
|
||||
msgid "Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:388
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:412
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location %s. Some features may not work properly in "
|
||||
"this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:23
|
||||
msgid "Stored Customer Details for Tracking Abandoned cart"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:24
|
||||
msgid ""
|
||||
"We store customer's email address, customer's Ip Address so that we can send "
|
||||
"them email reagarding their abandoned cart to cover them"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:36
|
||||
msgid "Abandoned Cart For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:54 mwb-acwf-gdpr.php:121
|
||||
msgid "Recipient Details"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:166
|
||||
msgid "Removed data of \"Abandoned Cart\""
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-abandoned-cart-for-woocommerce-public.php:84
|
||||
msgid "Enter Your Email Here"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-abandoned-cart-for-woocommerce-public.php:232
|
||||
msgid "Do You Want to Buy"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,41 @@
|
||||
# Copyright (C) 2021 Acowebs
|
||||
# This file is distributed under the same license as the Aco Variation Swatches for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aco Variation Swatches for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aco-woo-variation-swatches-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-01T11:51:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: aco-variation-swatches-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "Aco Variation Swatches for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-backend.php:130
|
||||
#: includes/class-acovsw-backend.php:137
|
||||
msgid "Variation Swatches"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-backend.php:132
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-options.php:113
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/action-scheduler/change_log/changelog.txt
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/action-scheduler/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 3.2.0 - 2021-06-03 =
|
||||
* Fix - Add "no ordering" option to as_next_scheduled_action().
|
||||
* Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634.
|
||||
* Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634.
|
||||
* Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas).
|
||||
* Fix - Fix unit tests infrastructure and adapt tests to PHP 8.
|
||||
* Fix - Identify in-use data store.
|
||||
* Fix - Improve test_migration_is_scheduled.
|
||||
* Fix - PHP notice on list table.
|
||||
* Fix - Speed up clean up and batch selects.
|
||||
* Fix - Update pending dependencies.
|
||||
* Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array().
|
||||
* Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility.
|
||||
* Fix - add is_initialized() to docs.
|
||||
* Fix - fix file permissions.
|
||||
* Fix - fixes #664 by replacing __ with esc_html__.
|
||||
|
||||
= 3.1.6 - 2020-05-12 =
|
||||
* Change log starts.
|
||||
@@ -0,0 +1,337 @@
|
||||
# Copyright (C) 2021 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log for Gravity Forms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log for Gravity Forms 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-gravity-forms\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-27T11:24:00+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-gravity-forms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log for Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension for Gravity Forms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP White Security"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpwhitesecurity.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:39
|
||||
msgid "Keep a log when website visitors submits a form (by default the plugin only keeps a log when logged in users submit a form)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:52
|
||||
msgid "Forms in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:53
|
||||
msgid "Confirmations in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:54
|
||||
msgid "Notifications in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:55
|
||||
msgid "Entries in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:56
|
||||
msgid "Fields in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:57
|
||||
msgid "Settings in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:68
|
||||
msgid "Starred"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:69
|
||||
msgid "Unstarred"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:70
|
||||
msgid "Read"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:71
|
||||
msgid "Unread"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:72
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:4
|
||||
msgid "Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:5
|
||||
msgid "Monitor Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:10
|
||||
msgid "A form was created, modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:11
|
||||
msgid "The Form called %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:14
|
||||
#: wp-security-audit-log/custom-alerts.php:30
|
||||
#: wp-security-audit-log/custom-alerts.php:45
|
||||
#: wp-security-audit-log/custom-alerts.php:60
|
||||
#: wp-security-audit-log/custom-alerts.php:93
|
||||
#: wp-security-audit-log/custom-alerts.php:108
|
||||
#: wp-security-audit-log/custom-alerts.php:129
|
||||
#: wp-security-audit-log/custom-alerts.php:144
|
||||
#: wp-security-audit-log/custom-alerts.php:162
|
||||
#: wp-security-audit-log/custom-alerts.php:177
|
||||
#: wp-security-audit-log/custom-alerts.php:196
|
||||
#: wp-security-audit-log/custom-alerts.php:211
|
||||
#: wp-security-audit-log/custom-alerts.php:243
|
||||
#: wp-security-audit-log/custom-alerts.php:258
|
||||
msgid "Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:17
|
||||
#: wp-security-audit-log/custom-alerts.php:33
|
||||
#: wp-security-audit-log/custom-alerts.php:63
|
||||
#: wp-security-audit-log/custom-alerts.php:96
|
||||
#: wp-security-audit-log/custom-alerts.php:132
|
||||
#: wp-security-audit-log/custom-alerts.php:147
|
||||
#: wp-security-audit-log/custom-alerts.php:165
|
||||
#: wp-security-audit-log/custom-alerts.php:180
|
||||
msgid "View form in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:26
|
||||
msgid "A form was moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:27
|
||||
msgid "Moved the form to trash."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:29
|
||||
#: wp-security-audit-log/custom-alerts.php:195
|
||||
#: wp-security-audit-log/custom-alerts.php:226
|
||||
#: wp-security-audit-log/custom-alerts.php:242
|
||||
#: wp-security-audit-log/custom-alerts.php:257
|
||||
msgid "Form name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:42
|
||||
msgid "A form was permanently deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:43
|
||||
msgid "Permanently deleted the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:55
|
||||
msgid "A form setting was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:56
|
||||
msgid "The setting %setting_name% in form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:58
|
||||
#: wp-security-audit-log/custom-alerts.php:276
|
||||
msgid "Previous value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:59
|
||||
#: wp-security-audit-log/custom-alerts.php:277
|
||||
msgid "New value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:72
|
||||
msgid "A form was duplicated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:73
|
||||
msgid "Duplicated the form %original_form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:75
|
||||
msgid "New form name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:76
|
||||
msgid "Source form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:77
|
||||
msgid "New form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:80
|
||||
msgid "View new duplicated form in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:89
|
||||
msgid "A field was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:90
|
||||
msgid "The Field called %field_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:92
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:105
|
||||
msgid "A form was submitted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:106
|
||||
msgid "Submitted the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:109
|
||||
msgid "Submission email"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:112
|
||||
#: wp-security-audit-log/custom-alerts.php:199
|
||||
#: wp-security-audit-log/custom-alerts.php:214
|
||||
#: wp-security-audit-log/custom-alerts.php:230
|
||||
#: wp-security-audit-log/custom-alerts.php:261
|
||||
msgid "View entry"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:124
|
||||
msgid "A confirmation was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:125
|
||||
msgid "The Confirmation called %confirmation_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:127
|
||||
msgid "Confirmation type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:128
|
||||
msgid "Confirmation message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:141
|
||||
msgid "A confirmation was activated or deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:142
|
||||
msgid "The confirmation %confirmation_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:159
|
||||
msgid "A notification was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:160
|
||||
msgid "The Notification called %notification_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:174
|
||||
msgid "A notification was activated or deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:175
|
||||
msgid "Changed the status of the Notification called %notification_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:192
|
||||
msgid "An entry was starred or unstarred"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:193
|
||||
msgid "Entry title: %entry_title%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:208
|
||||
msgid "An entry was marked as read or unread"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:209
|
||||
msgid "The entry called %entry_title% from form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:223
|
||||
msgid "An entry was moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:224
|
||||
msgid "Deleted the entry %event_desc%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:227
|
||||
msgid "Form ID "
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:239
|
||||
msgid "An entry was permanently deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:240
|
||||
msgid "Permanently deleted the entry %entry_title%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:253
|
||||
msgid "An entry note was created or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:254
|
||||
msgid "The entry note %entry_note%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:256
|
||||
msgid "Entry title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:273
|
||||
msgid "A plugin setting was changed."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:274
|
||||
msgid "Changed the plugin setting %setting_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:972
|
||||
msgid "moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1010
|
||||
msgid "restored"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1081
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1221
|
||||
msgid "Not provided"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "advanced-image-comparison-for-elementor",
|
||||
"version": "1.0.0",
|
||||
"description": "Advanced Testimonial Carousel for Elementor WordPress Plugin",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"laravel-mix": "^6.0.13",
|
||||
"node-sass": "^5.0.0",
|
||||
"postcss": "^8.2.6",
|
||||
"resolve-url-loader": "^3.1.2",
|
||||
"sass": "^1.32.8",
|
||||
"sass-loader": "^10.1.1"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"development": "mix",
|
||||
"watch": "mix watch",
|
||||
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||
"hot": "mix watch --hot",
|
||||
"production": "mix --production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ruhel241/advanced-testimonial-carousel.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ruhel241/advanced-testimonial-carousel/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ruhel241/advanced-testimonial-carousel#readme"
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "advanced-testimonial-carousel-for-elementor",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"development": "mix",
|
||||
"watch": "mix watch",
|
||||
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||
"hot": "mix watch --hot",
|
||||
"production": "mix --production"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"postcss": "^8.2.6",
|
||||
"resolve-url-loader": "^3.1.2",
|
||||
"sass": "^1.32.8",
|
||||
"sass-loader": "^10.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"laravel-mix": "^6.0.13",
|
||||
"node-sass": "^5.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,174 @@
|
||||
# Copyright (C) 2021 David Lidor
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Affiliate Bridge 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/affiliate-bridge\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-03-07T21:35:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha\n"
|
||||
"X-Domain: affiliate-bridge\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: affiliate-bridge.php:120
|
||||
#: affiliate-bridge.php:121
|
||||
msgid "Affiliate Bridge"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://affiliate-bridge.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Affiliate Bridge."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "David Lidor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.bicycle-riding.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:13
|
||||
msgid "Affiliate Bridge Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:19
|
||||
msgid "Default Source"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:22
|
||||
msgid "Ebay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:24
|
||||
msgid "More Affiliate program in future plugin revisions..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:28
|
||||
msgid "Ebay App ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:31
|
||||
msgid "Find your eBay App ID "
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:31
|
||||
#: includes/admin/affiliate-bridge-backend.php:60
|
||||
msgid "Here"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:35
|
||||
msgid "Default Keywords"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:37
|
||||
msgid "Add keywords (with spaces and other special characters). See"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:39
|
||||
msgid "eBay Developer Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:45
|
||||
msgid "Framed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:48
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:49
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:50
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:52
|
||||
msgid "Image frame options: \"Yes\": Boxed, \"Custom\": Custom frame, \"No\": No frame"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:56
|
||||
msgid "Default Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:59
|
||||
msgid "Add Category IDs, separated by a comma. Download eBay Categories "
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:65
|
||||
msgid "Default Condition"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:68
|
||||
msgid "All (New & Used)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:69
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:70
|
||||
msgid "Used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:72
|
||||
msgid "Specify Items Condition in search. See"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:74
|
||||
msgid "eBay Item Condition options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:79
|
||||
msgid "Default Image Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:82
|
||||
msgid "Small (110px)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:83
|
||||
msgid "Medium (200px)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:84
|
||||
msgid "Large (400px)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:86
|
||||
msgid "Default image size. there are 2 more Shortcode options: size=\"75%\", and size=\"400px\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:90
|
||||
msgid "Default Number of Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:92
|
||||
msgid "If items > 1, Multiple Items will be shown in a table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:96
|
||||
msgid "Default Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:104
|
||||
msgid "def"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:105
|
||||
msgid "Default Image (if eBay item does not have an image)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:115
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
9
spec/fixtures/dynamic_finders/plugin_version/afi-to-integrations/change_log/changelog.txt
vendored
Normal file
9
spec/fixtures/dynamic_finders/plugin_version/afi-to-integrations/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
== Archived Changelog Entries ==
|
||||
|
||||
This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
|
||||
For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/plugin_name/trunk/readme.txt).
|
||||
|
||||
= 1.0.0 =
|
||||
*Release Date - 19 May 2021*
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,353 @@
|
||||
# Copyright (C) 2021 Ali Ali
|
||||
# This file is distributed under the same license as the Alpha Google Map For Elementor plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Alpha Google Map For Elementor 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-06-03T11:57:48+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: alpha-google-map-for-elementor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: include/alpha-map.php:122
|
||||
#: include/alpha-map.php:138
|
||||
msgid "Alpha Google Map For Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Premium Google Map features for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ali Ali"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/Ali-A-Ali"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-map.php:99
|
||||
msgid "%1$sAlpha Google Map For Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be active. Please activate Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-map.php:100
|
||||
msgid "Activate Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-map.php:107
|
||||
msgid "%1$sAlpha Google Map For Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be installed and activated. Please install Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-map.php:108
|
||||
msgid "Install Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#: include/alpha-map.php:121
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-map.php:123
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Required PHP version
|
||||
#: include/alpha-map.php:137
|
||||
msgid "\"%1$s\" requires PHP version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:28
|
||||
msgid "Alpha Google Map"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:44
|
||||
msgid "API"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:51
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:53
|
||||
msgid "Enter your Google API Key"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:60
|
||||
msgid "Location Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:63
|
||||
msgid "Enter your location latitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:72
|
||||
msgid "Location Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:75
|
||||
msgid "Enter your location longitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:86
|
||||
msgid "Markers"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:93
|
||||
msgid "Max Width"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:95
|
||||
msgid "Set the Maximum width for markers description box"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:104
|
||||
msgid "Custom Icon"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:116
|
||||
msgid "Icon On Active Pin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:129
|
||||
#: include/Alpha_Google_Map.php:714
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:148
|
||||
msgid "Pin Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:158
|
||||
msgid "Pin Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:168
|
||||
#: include/Alpha_Google_Map.php:363
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:178
|
||||
#: include/Alpha_Google_Map.php:447
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:188
|
||||
#: include/Alpha_Google_Map.php:531
|
||||
msgid "Time Table"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:198
|
||||
msgid "Pin Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:208
|
||||
msgid "Map Pins"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:213
|
||||
msgid "Alpha Google Maps"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:214
|
||||
msgid "Add an optional description to your map pin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:215
|
||||
msgid "Add a time table for the location pin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:227
|
||||
msgid "Controls"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:234
|
||||
msgid "Map Type"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:237
|
||||
msgid "Road Map"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:238
|
||||
msgid "Satellite"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:239
|
||||
msgid "Terrain"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:240
|
||||
msgid "Hybrid"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:249
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:269
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:286
|
||||
msgid "Disable Map Drag"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:294
|
||||
msgid "Map Type Controls"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:302
|
||||
msgid "Zoom Controls"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:310
|
||||
msgid "Street View Control"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:318
|
||||
msgid "Fullscreen Control"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:326
|
||||
msgid "Scroll Wheel Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:334
|
||||
msgid "Info Container Always Opened"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:342
|
||||
msgid "Info Container Opened when Hovered"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:350
|
||||
msgid "Info Container Closed when Mouse Out"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:371
|
||||
#: include/Alpha_Google_Map.php:455
|
||||
#: include/Alpha_Google_Map.php:539
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:395
|
||||
#: include/Alpha_Google_Map.php:479
|
||||
#: include/Alpha_Google_Map.php:563
|
||||
#: include/Alpha_Google_Map.php:652
|
||||
#: include/Alpha_Google_Map.php:834
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:407
|
||||
#: include/Alpha_Google_Map.php:491
|
||||
#: include/Alpha_Google_Map.php:575
|
||||
#: include/Alpha_Google_Map.php:664
|
||||
#: include/Alpha_Google_Map.php:846
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:419
|
||||
#: include/Alpha_Google_Map.php:503
|
||||
#: include/Alpha_Google_Map.php:587
|
||||
#: include/Alpha_Google_Map.php:751
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:423
|
||||
#: include/Alpha_Google_Map.php:507
|
||||
#: include/Alpha_Google_Map.php:591
|
||||
#: include/Alpha_Google_Map.php:755
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:427
|
||||
#: include/Alpha_Google_Map.php:511
|
||||
#: include/Alpha_Google_Map.php:595
|
||||
#: include/Alpha_Google_Map.php:759
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:431
|
||||
#: include/Alpha_Google_Map.php:515
|
||||
#: include/Alpha_Google_Map.php:599
|
||||
#: include/Alpha_Google_Map.php:763
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:615
|
||||
msgid "Map"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:631
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:643
|
||||
msgid "Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:679
|
||||
#: include/Alpha_Google_Map.php:686
|
||||
#: include/Alpha_Google_Map.php:793
|
||||
msgid "Map Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:691
|
||||
msgid "Enter your title"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:692
|
||||
msgid "Add Your Title Text Here"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:699
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:718
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:719
|
||||
msgid "Small"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:720
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:721
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:722
|
||||
msgid "XL"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:723
|
||||
msgid "XXL"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:731
|
||||
msgid "HTML Tag"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:767
|
||||
msgid "Justified"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:781
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:801
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/b2b-e-commerce-lite/change_log/changelog.txt
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/b2b-e-commerce-lite/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
*** B2B Ecommerce Lite ***
|
||||
|
||||
2020-03-16 - version 1.0.0.3
|
||||
* Major Code Refactoring
|
||||
|
||||
2020-03-01 - version 1.0.0.2
|
||||
* Fixed remove role issue
|
||||
* Fixed reset email issue
|
||||
|
||||
2020-02-17 - version 1.0.0.1
|
||||
* Improvement on Plugin listing page
|
||||
* Fixed issue on role.
|
||||
* Fixed issue in Signup form.
|
||||
* Fixed issue in Price Visibilty.
|
||||
* Fixed issue in Discount Option.
|
||||
* Fixed issue in Re order.
|
||||
|
||||
2020-02-14 - version 1.0.0.0
|
||||
* Added RFQ Global Settings.
|
||||
* Added Price Visibilty Global Settings.
|
||||
* Added Sign Up Generator Global Settings.
|
||||
* Added Payment Method Global Settings.
|
||||
* Added Reorder Global Settings.
|
||||
83
spec/fixtures/dynamic_finders/plugin_version/bitform/translation_file/languages/bitform.pot
vendored
Normal file
83
spec/fixtures/dynamic_finders/plugin_version/bitform/translation_file/languages/bitform.pot
vendored
Normal file
@@ -0,0 +1,83 @@
|
||||
# Copyright (C) 2021 BitForm
|
||||
# This file is distributed under the same license as the BitForm plugin.
|
||||
"Project-Id-Version: BitForm 1.0.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: bitform\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "BitForm"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:18
|
||||
msgid "Display a BitForm"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:43
|
||||
msgid "Form:"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:45
|
||||
msgid "Select a form"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:53
|
||||
msgid "Width:"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:59
|
||||
msgid "Height:"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryController.php:66
|
||||
#: Controller/EntryController.php:99
|
||||
#: Controller/PublicController.php:42
|
||||
#: Controller/PublicController.php:55
|
||||
msgid "Data submit failed"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:30
|
||||
#: Controller/EntryValidator.php:50
|
||||
#: Controller/FileController.php:91
|
||||
#: Controller/FormController.php:97
|
||||
#: Controller/FormController.php:118
|
||||
#: Controller/PublicController.php:76
|
||||
msgid "Invalid form"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:60
|
||||
#: Controller/EntryValidator.php:77
|
||||
#: Controller/EntryValidator.php:86
|
||||
#: Controller/EntryValidator.php:96
|
||||
msgid "Form is closed"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:111
|
||||
msgid "Token is required"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:117
|
||||
msgid "Secret is required"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:128
|
||||
msgid "Google server is unreachable"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:132
|
||||
msgid "ReCaptcha verification failed. Please submit again, or refresh the page and try again"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/FileController.php:99
|
||||
#: Controller/PublicController.php:63
|
||||
msgid "Invalid file type"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/FormController.php:92
|
||||
#: Controller/FormController.php:113
|
||||
msgid "Invalid scope"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "ctc-gallery",
|
||||
"version": "1.0.0",
|
||||
"description": "CTC Gallery WordPress plugin",
|
||||
"main": "js-masonry.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ujw0l/masonry-gallery.git"
|
||||
},
|
||||
"keywords": [
|
||||
"Masonry",
|
||||
"gallery",
|
||||
"Wordpress-plugin",
|
||||
"gutenberg-block"
|
||||
],
|
||||
"author": "UjW0L",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ujw0l/masonry-gallery/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ujw0l/masonry-gallery#readme",
|
||||
"dependencies": {
|
||||
"js-overlay": "^1.0.9",
|
||||
"js-masonry": "^1.1.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "pricing-block",
|
||||
"version": "1.0.0",
|
||||
"description": "Pricing Block",
|
||||
"author": "Bluebox Digital",
|
||||
"main": "build/index.js",
|
||||
"devDependencies": {
|
||||
"@wordpress/block-editor": "^5.3.3",
|
||||
"@wordpress/blocks": "^8.0.3",
|
||||
"@wordpress/components": "^13.0.3",
|
||||
"@wordpress/eslint-plugin": "^9.0.4",
|
||||
"@wordpress/i18n": "^3.20.0",
|
||||
"@wordpress/prettier-config": "^1.0.3",
|
||||
"@wordpress/scripts": "^9.0.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.4.1",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"eslint-plugin-react": "^7.23.2",
|
||||
"prettier": "^2.2.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,217 @@
|
||||
# Copyright (C) 2021 <a href="https://braft.pl">BRAFT</a>
|
||||
# This file is distributed under the same license as the BRAFT Woo Shipping Packer plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BRAFT Woo Shipping Packer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/braft-woo-shipping-packer\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-18T14:46:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: braft-woo-shipping-packer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BRAFT Woo Shipping Packer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://braft.pl"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Woocommerce addon to calculate shipping container and costs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "<a href=\"https://braft.pl\">BRAFT</a>"
|
||||
msgstr ""
|
||||
|
||||
#: braft-woo-shipping-packer.php:48
|
||||
msgid "Packer"
|
||||
msgstr ""
|
||||
|
||||
#: braft-woo-shipping-packer.php:78
|
||||
msgid "Box type: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:4
|
||||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:10
|
||||
msgid "Language codes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:12
|
||||
msgid "example JSON: [{\"lang_code\":\"pl_PL\",\"lang_title\":\"Polski\"},{\"lang_code\":\"en_US\",\"lang_title\":\"English\"}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:22
|
||||
#: inc/braftwsp-settings.php:28
|
||||
msgid "Packages parameters"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:30
|
||||
msgid ""
|
||||
"example JSON: [{\"name\":\"My package\",\r\n"
|
||||
" \"parameters\":\"outer width,outer length,outer height,empty weight,inner width,inner length,inner height,max weight\",\r\n"
|
||||
" \"box_price_pl_PL\":\"the price\", \"box_price_en_US\":\"the price\"}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:41
|
||||
#: inc/braftwsp-settings.php:47
|
||||
msgid "Shipping thresholds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:49
|
||||
msgid ""
|
||||
"example JSON: [{\"name\":\"InPost\",\r\n"
|
||||
" \"parameters\":[{\"name\":\"A\", \"max_dimensions\":\"outer width,outer length,outer depth\", \"max_weight\":\"grams\",\r\n"
|
||||
" \"price_pl_PL\":\"the price\", \"price_en_US\":\"the price\"}]}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:60
|
||||
msgid "Backup"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:66
|
||||
msgid "Backup JSON"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:37
|
||||
msgid "Add language"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:101
|
||||
msgid "Box name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:103
|
||||
msgid "Outer width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:105
|
||||
msgid " Outer length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:107
|
||||
msgid " Outer height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:109
|
||||
msgid " Box weight: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:111
|
||||
msgid "Inner width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:113
|
||||
msgid " Inner length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:115
|
||||
msgid " Inner height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:117
|
||||
msgid " Max weigth: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:120
|
||||
msgid "Box price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:143
|
||||
msgid "Add box"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:255
|
||||
msgid "Rate name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:266
|
||||
#: js/braftwsp-settings.js:426
|
||||
msgid "Threshold name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:268
|
||||
#: js/braftwsp-settings.js:428
|
||||
msgid "Max width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:270
|
||||
#: js/braftwsp-settings.js:430
|
||||
msgid " Max length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:272
|
||||
#: js/braftwsp-settings.js:432
|
||||
msgid " Max height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:274
|
||||
#: js/braftwsp-settings.js:434
|
||||
msgid " Max weight: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:277
|
||||
msgid "Price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:282
|
||||
msgid "Add threshold"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:302
|
||||
msgid "Add shipping rate"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:439
|
||||
msgid "price : "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:484
|
||||
msgid "outer dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:487
|
||||
msgid "inner dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:490
|
||||
msgid "box weight"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:491
|
||||
#: js/braftwsp-settings.js:509
|
||||
msgid "max weight"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:493
|
||||
msgid "box price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:506
|
||||
msgid "max dimensions "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:511
|
||||
msgid "price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:525
|
||||
msgid " Backup to JSON file"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:526
|
||||
msgid " Restore from JSON file"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:527
|
||||
msgid " Create TXT file"
|
||||
msgstr ""
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/bu-learning-blocks/composer_file/package.json
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/bu-learning-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "bu-learning-blocks",
|
||||
"version": "1.1.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build",
|
||||
"wp-env": "wp-env",
|
||||
"lint:js": "wp-scripts lint-js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@bostonuniversity/react-questions": "0.1.1",
|
||||
"classnames": "^2.2.6",
|
||||
"react-html-parser": "^2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
||||
"@babel/preset-env": "^7.13.5",
|
||||
"@babel/preset-react": "^7.12.13",
|
||||
"@wordpress/env": "^4.0.0",
|
||||
"@wordpress/eslint-plugin": "^9.0.1",
|
||||
"@wordpress/scripts": "13.0.3",
|
||||
"webpack-cli": "^4.5.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,332 @@
|
||||
# Copyright (C) 2021 Boston University: Web Applications
|
||||
# This file is distributed under the same license as the BU Learning Blocks plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BU Learning Blocks v1.1.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bu-learning-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: 2021-03-09T22:14:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: bu-learning-blocks\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BU Learning Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/bu-ist/bu-learning-blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "BU Learning Blocks — is a collection of tools to enable the easy creation of academic lessons with embedded self-assessment questions."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Boston University: Web Applications"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.bu.edu/"
|
||||
msgstr ""
|
||||
|
||||
#: bu-learning-blocks.php:39
|
||||
msgid "BULB Error: BU Learning Blocks requires either WordPress 5.0.0, or the Gutenberg plugin to be installed and activated on any version previous to 5.0.0."
|
||||
msgstr ""
|
||||
|
||||
#: bu-learning-blocks.php:42
|
||||
msgid "Please install and activate the Gutenberg plugin to use BU Learning Blocks."
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:38
|
||||
#: src/blocks/bulb-cn/index.js:22
|
||||
#: src/blocks/bulb-fitb/index.js:22
|
||||
#: src/blocks/bulb-ma/index.js:20
|
||||
#: src/blocks/bulb-mat/index.js:20
|
||||
#: src/blocks/bulb-mc/index.js:20
|
||||
#: src/blocks/bulb-tf/index.js:20
|
||||
msgid "BULB"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:101
|
||||
msgid "<strong>Welcome to BU Learning Blocks</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:109
|
||||
msgid "Install Blocks and Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:115
|
||||
msgid "Install Blocks Only"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:17
|
||||
msgctxt "Taxonomy General Name"
|
||||
msgid "Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:18
|
||||
msgctxt "Taxonomy Singular Name"
|
||||
msgid "Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:19
|
||||
msgid "Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:20
|
||||
msgid "All Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:21
|
||||
msgid "View Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:22
|
||||
msgid "Parent Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:23
|
||||
msgid "Parent Lesson:"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:24
|
||||
msgid "New Lesson Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:25
|
||||
msgid "Create Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:26
|
||||
msgid "Edit Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:27
|
||||
msgid "Update Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:28
|
||||
msgid "Separate lessons with commas"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:29
|
||||
msgid "Search Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:30
|
||||
msgid "Add or remove lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:31
|
||||
msgid "Choose from the most used lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:32
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:62
|
||||
msgid "Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:63
|
||||
msgid "Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:64
|
||||
msgid "BULB Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:65
|
||||
#: src/learning-module-cpt.php:66
|
||||
#: src/learning-module-cpt.php:69
|
||||
msgid "New Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:67
|
||||
msgid "Edit Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:68
|
||||
msgid "Update Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:70
|
||||
msgid "All Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:71
|
||||
msgid "View Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:72
|
||||
msgid "View Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:73
|
||||
msgid "Lesson Page Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:74
|
||||
msgid "Search Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:75
|
||||
msgid "No Lesson Pages found"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:76
|
||||
msgid "No Lessons Pages found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:77
|
||||
msgid "Lesson Page Archives"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:78
|
||||
msgid "Parent Lesson Page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:87
|
||||
msgid "lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:89
|
||||
msgid "Holds our Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/blocks.build.js:1
|
||||
#: src/components/QuestionHeader.js:7
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/blocks.build.js:1
|
||||
#: src/components/QuestionHeader.js:8
|
||||
msgid "Question Header"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/blocks.build.js:1
|
||||
#: src/components/QuestionHeader.js:11
|
||||
msgid "Enter Question Header"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-cn/index.js:16
|
||||
msgid "BULB - Calculated Numeric"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-cn/index.js:21
|
||||
#: src/blocks/bulb-fitb/index.js:21
|
||||
#: src/blocks/bulb-ma/index.js:19
|
||||
#: src/blocks/bulb-mat/index.js:19
|
||||
#: src/blocks/bulb-mc/index.js:19
|
||||
#: src/blocks/bulb-tf/index.js:19
|
||||
msgid "bu-learning-block"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-cn/index.js:23
|
||||
msgid "Calculated Numeric Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-fitb/index.js:16
|
||||
msgid "BULB - Fill in the Blank"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-fitb/index.js:23
|
||||
msgid "Fill in the Blank Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-fitb/index.js:67
|
||||
#: src/blocks/bulb-fitb/index.js:71
|
||||
msgid "Case sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-ma/index.js:14
|
||||
msgid "BULB - Multiple Answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-ma/index.js:21
|
||||
msgid "Multiple Answer Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/index.js:14
|
||||
msgid "BULB - Matching"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/index.js:21
|
||||
msgid "Matching Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:21
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:25
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:36
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:40
|
||||
#: src/components/Answer.js:23
|
||||
#: src/components/Answer.js:27
|
||||
msgid "Answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mc/index.js:14
|
||||
msgid "BULB - Multiple Choice"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mc/index.js:21
|
||||
msgid "Multiple Choice Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-tf/index.js:14
|
||||
msgid "BULB - True/False"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-tf/index.js:21
|
||||
msgid "True False Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Answer.js:38
|
||||
#: src/components/Answer.js:42
|
||||
#: src/components/QuestionFeedback.js:32
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Answer.js:61
|
||||
msgid "Correct Answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionBody.js:7
|
||||
msgid "Question Body"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionBody.js:10
|
||||
msgid "Enter Question Body"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:14
|
||||
msgid "Feedback:"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:17
|
||||
msgid "Enter Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:33
|
||||
msgid "Correct Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:36
|
||||
msgid "Enter Correct Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:41
|
||||
msgid "Incorrect Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:44
|
||||
msgid "Enter Incorrect Feedback"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,28 @@
|
||||
# CF Online Test Pot
|
||||
# Copyright 2021 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CF Online Test v1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-10 17:09+0500\n"
|
||||
"PO-Revision-Date: 2021-04-10 17:36+0500\n"
|
||||
"Language-Team: CodeFootsteps <codefootsteps@gmail.com>\n"
|
||||
"Report-Msgid-Bugs-To: CodeFootsteps <codefootsteps@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: es\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: cfonlinetest.php:158
|
||||
#, php-format
|
||||
msgid "Online Tests"
|
||||
msgstr "Pruebas en línea"
|
||||
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2021 linqiuyu191
|
||||
# This file is distributed under the same license as the Change Payments Account plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Change Payments Account 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/change-payments-account\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-27T08:42:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: change-payments-account\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/Options/Options.php:15
|
||||
msgid "Change Payments Account"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Change woocommerce-payments account"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "linqiuyu191"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:16
|
||||
msgid "Change Account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:17
|
||||
msgid "Start the account loop (will automatically skip the wrong account)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:19
|
||||
msgid "Loop interval"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:21
|
||||
msgid "Hourly"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:22
|
||||
msgid "Twice daily"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:23
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:24
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:33
|
||||
msgid "Current account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:34
|
||||
msgid "unset"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:37
|
||||
msgid "Connect new account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:39
|
||||
msgid "Delete accounts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:40
|
||||
msgid "Select the account that you want to delete (Orders receiving Payments with a selected account will not be refundable through Woocommerce Payments!)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Tokens/TokensManager.php:196
|
||||
msgid "Invalid account!"
|
||||
msgstr ""
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/charts-blocks/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/charts-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "charts-block",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"check-engines": "wp-scripts check-engines",
|
||||
"check-licenses": "wp-scripts check-licenses",
|
||||
"format": "wp-scripts format",
|
||||
"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"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.0",
|
||||
"uuid": "^8.3.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2021 Chatra
|
||||
# This file is distributed under the same license as the Chatra Live Chat + ChatBot + Cart Saver plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Chatra Live Chat + ChatBot + Cart Saver 1.0.9\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-03-27T08:50:45+00:00\n"
|
||||
"PO-Revision-Date: 2021-03-27 17:31+0700\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Domain: chatra-live-chat\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"Language: ru\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Chatra Live Chat + ChatBot + Cart Saver"
|
||||
msgstr "Chatra Live Chat + ChatBot + Cart Saver"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://chatra.com/help/cms/wordpress/"
|
||||
msgstr "https://chatra.com/help/cms/wordpress/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Chatra allows you to chat with your visitors, view the list of visitors who are currently online on your website and start a conversation manually or via configurable automatic targeted messages."
|
||||
msgstr "Чатра позволяет вам общаться с посетителями вашего сайта в чате, следить за перемещением посетителей по сайту в реальном времени, начинать диалог самому или с помощью автоматических настраиваемых сообщений."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Chatra"
|
||||
msgstr "Chatra"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://chatra.com"
|
||||
msgstr "https://chatra.com"
|
||||
|
||||
#: chatra.php:26
|
||||
msgid "Chatra widget"
|
||||
msgstr "Виджет Чатры"
|
||||
|
||||
#: chatra.php:33
|
||||
msgid "Chat widget setup"
|
||||
msgstr "Настройка виджета Чатры"
|
||||
|
||||
#: chatra.php:36
|
||||
msgid "Seems like everything is OK! <br>Check your <a href=\"%s\" target=\"_blank\">website</a> to see if the live chat widget is present.<br>Log in to your <a href=\"%s\" target=\"_blank\">Chatra dashboard</a> to chat with your website visitors and manage preferences."
|
||||
msgstr "Кажется, всё готово!<br>Проверьте, появился ли чат на страницах вашего <a href=\"%s\" target=\"_blank\">сайта</a>.<br>Войдите в <a href=\"%s\" target=\"_blank\">панель оператора</a>, чтобы общаться с посетителями и менять настройки чата."
|
||||
|
||||
#: chatra.php:40
|
||||
msgid "Signup for a free Chatra account at <a href=\"%s\" target=\"_blank\">app.chatra.io</a>,<br> then copy and paste <a href=\"%s\" target=\"_blank\">Widget code</a> from Chatra dashboard settings into the form below:"
|
||||
msgstr "<a href=\"%s\" target=\"_blank\">Зарегистрируйте</a> бесплатный аккаунт Чатры,<br>скопируйте <a href=\"%s\" target=\"_blank\">код виджета</a> из настроек и вставьте его в форму ниже:"
|
||||
@@ -0,0 +1,2 @@
|
||||
/*1.0.0.0 - 2021.*/
|
||||
- Release version 1.0.0
|
||||
407
spec/fixtures/dynamic_finders/plugin_version/code-generator/translation_file/lang/generate-wp.pot
vendored
Normal file
407
spec/fixtures/dynamic_finders/plugin_version/code-generator/translation_file/lang/generate-wp.pot
vendored
Normal file
@@ -0,0 +1,407 @@
|
||||
# Copyright (C) 2014 Generate WP
|
||||
# This file is distributed under the same license as the Generate WP package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Generate WP 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/WordPress-Plugin-Template\n"
|
||||
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:52
|
||||
#: includes/post-types/class-generate-wp-post_type.php:42
|
||||
msgctxt "post type general name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:53
|
||||
#: includes/post-types/class-generate-wp-post_type.php:43
|
||||
msgctxt "post type singular name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:55
|
||||
#: includes/post-types/class-generate-wp-post_type.php:45
|
||||
msgid "Add New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:55
|
||||
#: classes/post-types/class-generate-wp-post_type.php:56
|
||||
#: classes/post-types/class-generate-wp-post_type.php:57
|
||||
#: classes/post-types/class-generate-wp-post_type.php:59
|
||||
#: includes/post-types/class-generate-wp-post_type.php:45
|
||||
#: includes/post-types/class-generate-wp-post_type.php:46
|
||||
#: includes/post-types/class-generate-wp-post_type.php:47
|
||||
#: includes/post-types/class-generate-wp-post_type.php:49
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:56
|
||||
#: includes/post-types/class-generate-wp-post_type.php:46
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:57
|
||||
#: includes/post-types/class-generate-wp-post_type.php:47
|
||||
msgid "New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:58
|
||||
#: includes/post-types/class-generate-wp-post_type.php:48
|
||||
msgid "All %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:58
|
||||
#: classes/post-types/class-generate-wp-post_type.php:60
|
||||
#: classes/post-types/class-generate-wp-post_type.php:61
|
||||
#: classes/post-types/class-generate-wp-post_type.php:62
|
||||
#: includes/post-types/class-generate-wp-post_type.php:48
|
||||
#: includes/post-types/class-generate-wp-post_type.php:50
|
||||
#: includes/post-types/class-generate-wp-post_type.php:51
|
||||
#: includes/post-types/class-generate-wp-post_type.php:52
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:59
|
||||
#: includes/post-types/class-generate-wp-post_type.php:49
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:60
|
||||
#: includes/post-types/class-generate-wp-post_type.php:50
|
||||
msgid "Search %a"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:61
|
||||
#: includes/post-types/class-generate-wp-post_type.php:51
|
||||
msgid "No %s Found"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:62
|
||||
#: includes/post-types/class-generate-wp-post_type.php:52
|
||||
msgid "No %s Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:64
|
||||
#: includes/post-types/class-generate-wp-post_type.php:54
|
||||
msgid "*Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:95
|
||||
#: classes/post-types/class-generate-wp-post_type.php:105
|
||||
#: includes/post-types/class-generate-wp-post_type.php:85
|
||||
#: includes/post-types/class-generate-wp-post_type.php:95
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:96
|
||||
#: includes/post-types/class-generate-wp-post_type.php:86
|
||||
msgid "Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:97
|
||||
#: includes/post-types/class-generate-wp-post_type.php:87
|
||||
msgid "Search Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:98
|
||||
#: includes/post-types/class-generate-wp-post_type.php:88
|
||||
msgid "All Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:99
|
||||
#: includes/post-types/class-generate-wp-post_type.php:89
|
||||
msgid "Parent Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:100
|
||||
#: includes/post-types/class-generate-wp-post_type.php:90
|
||||
msgid "Parent Term:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:101
|
||||
#: includes/post-types/class-generate-wp-post_type.php:91
|
||||
msgid "Edit Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:102
|
||||
#: includes/post-types/class-generate-wp-post_type.php:92
|
||||
msgid "Update Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:103
|
||||
#: includes/post-types/class-generate-wp-post_type.php:93
|
||||
msgid "Add New Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:104
|
||||
#: includes/post-types/class-generate-wp-post_type.php:94
|
||||
msgid "New Term Name"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:125
|
||||
#: includes/post-types/class-generate-wp-post_type.php:115
|
||||
msgid "Custom Field"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:180
|
||||
#: includes/post-types/class-generate-wp-post_type.php:170
|
||||
msgid "Post updated. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:181
|
||||
#: includes/post-types/class-generate-wp-post_type.php:171
|
||||
msgid "Custom field updated."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:182
|
||||
#: includes/post-types/class-generate-wp-post_type.php:172
|
||||
msgid "Custom field deleted."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:183
|
||||
#: includes/post-types/class-generate-wp-post_type.php:173
|
||||
msgid "Post updated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: date and time of the revision
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:185
|
||||
#: includes/post-types/class-generate-wp-post_type.php:175
|
||||
msgid "Post restored to revision from %s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:186
|
||||
#: includes/post-types/class-generate-wp-post_type.php:176
|
||||
msgid "Post published. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:187
|
||||
#: includes/post-types/class-generate-wp-post_type.php:177
|
||||
msgid "Post saved."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:188
|
||||
#: includes/post-types/class-generate-wp-post_type.php:178
|
||||
msgid "Post submitted. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:189
|
||||
#: includes/post-types/class-generate-wp-post_type.php:179
|
||||
msgid "Post scheduled for: %1$s. %2$sPreview post%3$s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:189
|
||||
#: includes/post-types/class-generate-wp-post_type.php:179
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:190
|
||||
#: includes/post-types/class-generate-wp-post_type.php:180
|
||||
msgid "Post draft updated. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:201
|
||||
#: includes/post-types/class-generate-wp-post_type.php:191
|
||||
msgid "Post Details"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:295
|
||||
#: includes/post-types/class-generate-wp-post_type.php:285
|
||||
msgid "Enter the post title here"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:308
|
||||
#: includes/post-types/class-generate-wp-post_type.php:298
|
||||
msgid "Custom field:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:309
|
||||
#: includes/post-types/class-generate-wp-post_type.php:299
|
||||
msgid "Description of this custom field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:70
|
||||
#: includes/class-generate-wp-settings.php:405
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:99
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:111
|
||||
msgid "Standard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:112
|
||||
msgid "These are fairly standard form input fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:116
|
||||
msgid "Some Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:117
|
||||
msgid "This is a standard text field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:120
|
||||
#: includes/class-generate-wp-settings.php:128
|
||||
#: includes/class-generate-wp-settings.php:136
|
||||
msgid "Placeholder text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:124
|
||||
msgid "A Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:125
|
||||
msgid "This is a standard password field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:132
|
||||
msgid "Some Secret Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:133
|
||||
msgid "This is a secret text field - any data saved here will not be displayed after the page has reloaded, but it will be saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:140
|
||||
msgid "A Text Block"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:141
|
||||
msgid "This is a standard text area."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:144
|
||||
msgid "Placeholder text for this textarea"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:148
|
||||
msgid "An Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:149
|
||||
msgid "A standard checkbox - if you save this option as checked then it will store the option as 'on', otherwise it will be an empty string."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:155
|
||||
msgid "A Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:156
|
||||
msgid "A standard select box."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:163
|
||||
msgid "Some Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:164
|
||||
msgid "A standard set of radio buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:171
|
||||
msgid "Some Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:172
|
||||
msgid "You can select multiple items and they will be stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:181
|
||||
msgid "Extra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:182
|
||||
msgid "These are some extra input fields that maybe aren't as common as the others."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:186
|
||||
msgid "A Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:187
|
||||
msgid "This is a standard number field - if this field contains anything other than numbers then the form will not be submitted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:190
|
||||
msgid "42"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:194
|
||||
msgid "Pick a colour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:195
|
||||
msgid "This uses WordPress' built-in colour picker - the option is stored as the colour's hex code."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:201
|
||||
msgid "An Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:202
|
||||
msgid "This will upload an image to your media library and store the attachment ID in the option field. Once you have uploaded an imge the thumbnail will display above these buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:209
|
||||
msgid "A Multi-Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:210
|
||||
msgid "A standard multi-select box - the saved data is stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Upload an image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Use image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Upload new image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:355
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:410
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:427
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:458
|
||||
#: includes/class-generate-wp-settings.php:467
|
||||
#: includes/class-generate-wp.php:207
|
||||
#: includes/class-generate-wp.php:216
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Generate WP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Hugh Lashbrooke"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1231,5 +1231,8 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
<!-- HR-2.6: -->
|
||||
|
||||
|
||||
<!-- prodalet -->
|
||||
<!--Start Prodalet code WordPress plugin vers 1.2 {literal}-->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,422 @@
|
||||
# Copyright (C) 2021 Daily Maxim 365
|
||||
# This file is distributed under the same license as the Daily Maxim 365 package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Daily Maxim 365 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/daily-maxim-365\n"
|
||||
"POT-Creation-Date: 2021-03-18 01:56:29+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:90
|
||||
#: app/controllers/admin/class-admin-settings.php:115
|
||||
#: app/controllers/admin/class-admin-sources.php:89
|
||||
#: app/controllers/admin/class-phrases-list.php:144
|
||||
#: app/controllers/admin/class-sources-list.php:124
|
||||
msgid "Do you really want to delete the selected data?"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:91
|
||||
#: app/controllers/admin/class-admin-settings.php:116
|
||||
#: app/controllers/admin/class-admin-sources.php:90
|
||||
#: app/controllers/admin/class-phrases-list.php:145
|
||||
#: app/controllers/admin/class-sources-list.php:125
|
||||
msgid "Please select the data to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:92
|
||||
#: app/controllers/admin/class-admin-settings.php:117
|
||||
#: app/controllers/admin/class-admin-sources.php:91
|
||||
#: app/controllers/admin/class-phrases-list.php:146
|
||||
#: app/controllers/admin/class-sources-list.php:126
|
||||
msgid "Do you really want to delete this data?"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:127
|
||||
#: app/controllers/admin/class-admin-phrases.php:128
|
||||
#: app/controllers/admin/class-admin-phrases.php:394
|
||||
msgid "Add Phrase"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:177
|
||||
msgid "* Please enter the phrase."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:186
|
||||
msgid "* This phrase has already been registered."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:194
|
||||
msgid "* Please select the source/author name."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:202
|
||||
msgid "* Please select the target of display."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:215
|
||||
msgid "* Please select the scheduled display date (Month)."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:218
|
||||
msgid "* Please select the scheduled display date (Day)."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:246
|
||||
#: app/controllers/admin/class-admin-sources.php:208
|
||||
msgid "The record has been updated."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:253
|
||||
#: app/controllers/admin/class-admin-sources.php:215
|
||||
#: app/controllers/admin/class-admin-sources.php:269
|
||||
msgid "There are invalid inputs."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:287
|
||||
#: app/controllers/admin/class-admin-sources.php:262
|
||||
msgid "The record has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:405
|
||||
#: app/controllers/admin/class-admin-settings.php:198
|
||||
#: app/controllers/admin/class-admin-sources.php:354
|
||||
#: app/controllers/admin/class-phrases-list.php:243
|
||||
#: app/controllers/admin/class-sources-list.php:235
|
||||
msgid "Access denied."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:153
|
||||
#: app/controllers/admin/class-admin-settings.php:154
|
||||
#: app/controllers/admin/class-admin-settings.php:212
|
||||
#: app/controllers/admin/class-admin-settings.php:446
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:220
|
||||
msgid "Timing to Change Phrase"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:227
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:228
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:229
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:235
|
||||
#: app/controllers/admin/class-admin-settings.php:241
|
||||
msgid "Phrase of Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:246
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:253
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:254
|
||||
msgid "Makimono"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:255
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:262
|
||||
msgid "URL for search engine"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:127
|
||||
#: app/controllers/admin/class-admin-sources.php:128
|
||||
#: app/controllers/admin/class-admin-sources.php:347
|
||||
msgid "Add Source"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:177
|
||||
msgid "* Please enter the source/author name."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:186
|
||||
msgid "* This source/author name has already been registered."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:239
|
||||
msgid ""
|
||||
"* This source/author name is reserved by this plugin and could not be "
|
||||
"deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:241
|
||||
msgid ""
|
||||
"* This source/author name is associated with the phrase and could not be "
|
||||
"deleted."
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# daily-maxim-365.pot (Daily Maxim 365 1.0.0) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: app/controllers/admin/class-phrases-list.php:97
|
||||
#: app/controllers/admin/class-phrases-list.php:98
|
||||
msgid "Daily Maxim 365"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-phrases-list.php:224
|
||||
#: app/controllers/admin/class-sources-list.php:216
|
||||
msgid "These records has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-phrases-list.php:367
|
||||
msgid "List Phrases"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-sources-list.php:93
|
||||
#: app/controllers/admin/class-sources-list.php:94
|
||||
#: app/controllers/admin/class-sources-list.php:344
|
||||
msgid "List Sources"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-sources-list.php:207
|
||||
msgid ""
|
||||
"* Some source/author names could not be deleted because they are associated "
|
||||
"with phrases."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:137
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:183
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:218
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:270
|
||||
msgid "Silence is golden"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/admin/class-admin-settings.php:82
|
||||
msgid "If you choosed fixed, please choose a phrase."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-custom.php:37
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:170
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-custom.php:38
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:170
|
||||
msgid "Not Target"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-custom.php:58
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:44
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:62
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:98
|
||||
msgid "An error occurred while counting the number of phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:191
|
||||
msgid "An error occurred while searching the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:263
|
||||
msgid "An error occurred while reading the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:392
|
||||
msgid "An error occurred while writing the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:459
|
||||
msgid "An error occurred while updating the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:509
|
||||
msgid "An error occurred while deleting the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:603
|
||||
msgid ""
|
||||
"An error occurred while reading the phrase data for creating the select box."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:683
|
||||
msgid "An error occurred while searching for the phrase data to be displayed."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:84
|
||||
msgid ""
|
||||
"An error occurred while reading the source/author data for creating a select "
|
||||
"box."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:156
|
||||
msgid "An error occurred while counting the number of source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:227
|
||||
msgid "An error occurred while searching the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:281
|
||||
msgid "An error occurred while reading the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:396
|
||||
msgid "An error occurred while writing the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:454
|
||||
msgid "An error occurred while updating the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:504
|
||||
msgid "An error occurred while deleting the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:41
|
||||
msgid "select source/author name"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:53
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:71
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:59
|
||||
msgid "Select target of display"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:114
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:219
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:78
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:125
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:119
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:224
|
||||
#: app/templates/admin/page-settings/page-phrases.php:46
|
||||
msgid "Phrase"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:121
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:226
|
||||
#: app/templates/admin/page-settings/page-phrases.php:53
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:83
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:130
|
||||
#: app/templates/admin/page-settings/page-sources.php:43
|
||||
msgid "Source/Author Name"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:122
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:227
|
||||
#: app/templates/admin/page-settings/page-phrases.php:87
|
||||
msgid "Scheduled Display Date"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:123
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:228
|
||||
#: app/templates/admin/page-settings/page-phrases.php:69
|
||||
msgid "Target of Display"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:135
|
||||
msgid "There are no data exist for selected criteria."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:269
|
||||
msgid "Delete Selected Phrases"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:71
|
||||
msgid ""
|
||||
"Specifies whether to target when displaying randomly on a daily or monthly "
|
||||
"basis."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:89
|
||||
msgid "If there is a date you want to display, Please select them."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:98
|
||||
msgid " Month "
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:105
|
||||
msgid " Day "
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:120
|
||||
#: app/templates/admin/page-settings/page-sources.php:59
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:122
|
||||
#: app/templates/admin/page-settings/page-sources.php:61
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:96
|
||||
msgid "There are no data."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:172
|
||||
msgid "Delete Selected Sources"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-sources.php:47
|
||||
msgid ""
|
||||
"This data is used for \"source unknown / author unknown\" in this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/frontend/page-frontend-phrases.php:5
|
||||
msgid "Internet Search For"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-router.php:155
|
||||
msgid ""
|
||||
"Late Routes can not be registered after `wp` hook is triggered. Register "
|
||||
"your route before `wp` hook is triggered."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-router.php:159
|
||||
msgid ""
|
||||
"Non-Late Routes can not be registered after `init` hook is triggered. "
|
||||
"Register your route before `init` hook is triggered."
|
||||
msgstr ""
|
||||
|
||||
#: core/registry/trait-base-registry.php:39
|
||||
msgid "Key passed to `set` method must be key"
|
||||
msgstr ""
|
||||
|
||||
#: core/registry/trait-base-registry.php:53
|
||||
msgid "Key passed to `get` method must be key"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.minescope.com/category/blog/wordpress-plugin/daily-maxim-365/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A plugin that displays phrases that change daily. These phrases may "
|
||||
"sometimes cheer up or encourage someone."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mineaki Masuko, minescope&Co."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.minescope.com/"
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/description-list-block/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/description-list-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "description-list-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Example block written with ESNext standard and JSX support – build step required.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^5.3.0",
|
||||
"@wordpress/blocks": "^8.0.0",
|
||||
"@wordpress/i18n": "^3.19.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^14.0.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,469 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Shopping discounts v1.0\n"
|
||||
"POT-Creation-Date: 2020-12-04 16:07+0100\n"
|
||||
"PO-Revision-Date: 2020-12-04 19:26+0100\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-footer-contacts.php:54
|
||||
msgid "Main"
|
||||
msgstr "Principale"
|
||||
|
||||
#: dn-footer-contacts.php:55 dn-footer-contacts.php:214
|
||||
msgid "Settings"
|
||||
msgstr "Impostazioni"
|
||||
|
||||
#: dn-footer-contacts.php:56
|
||||
msgid "Stats"
|
||||
msgstr "Statistiche"
|
||||
|
||||
#: dn-footer-contacts.php:94
|
||||
msgid "Telephone number"
|
||||
msgstr "Numero di telefono"
|
||||
|
||||
#: dn-footer-contacts.php:94
|
||||
msgid "Insert telephone number in \"value\" field"
|
||||
msgstr "Inserire il numero di telefono nel campo \"valore\""
|
||||
|
||||
#: dn-footer-contacts.php:95
|
||||
msgid "Maps address"
|
||||
msgstr "Indirizzo di Maps"
|
||||
|
||||
#: dn-footer-contacts.php:95
|
||||
msgid "Insert shortlink by Google Maps (share option) in \"value\" field"
|
||||
msgstr ""
|
||||
"Inserire nel campo \"valore\" lo shortlink fornito da Google Maps (nella "
|
||||
"sezione condivisione)"
|
||||
|
||||
#: dn-footer-contacts.php:96
|
||||
msgid "WhatsApp number"
|
||||
msgstr "Numero di WhatsApp"
|
||||
|
||||
#: dn-footer-contacts.php:96
|
||||
msgid "Insert WhatsApp number in \"value\" field"
|
||||
msgstr "Inserire nel campo \"valore\" il numero collegato a WhatsApp"
|
||||
|
||||
#: dn-footer-contacts.php:134
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
#: dn-footer-contacts.php:135
|
||||
msgid "Value"
|
||||
msgstr "Valore"
|
||||
|
||||
#: dn-footer-contacts.php:136
|
||||
msgid "Order"
|
||||
msgstr "Ordinamento"
|
||||
|
||||
#: dn-footer-contacts.php:137
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: dn-footer-contacts.php:137
|
||||
msgid "Hidden"
|
||||
msgstr "Nascosto"
|
||||
|
||||
#: dn-footer-contacts.php:137
|
||||
msgid "Visible"
|
||||
msgstr "Visibile"
|
||||
|
||||
#: dn-footer-contacts.php:139 dn-footer-contacts.php:236
|
||||
msgid "Save"
|
||||
msgstr "Salva"
|
||||
|
||||
#: dn-footer-contacts.php:143
|
||||
msgid "Sure you want to clear the stats"
|
||||
msgstr "Sicuro di voler svuotare le statistiche"
|
||||
|
||||
#: dn-footer-contacts.php:145
|
||||
msgid "Clear it"
|
||||
msgstr "Svuota"
|
||||
|
||||
#: dn-footer-contacts.php:146
|
||||
msgid "Abort"
|
||||
msgstr "Annulla"
|
||||
|
||||
#: dn-footer-contacts.php:152
|
||||
msgid "Clean stats"
|
||||
msgstr "Statistiche svuotate"
|
||||
|
||||
#: dn-footer-contacts.php:159
|
||||
msgid "For days"
|
||||
msgstr "Per giorno"
|
||||
|
||||
#: dn-footer-contacts.php:160
|
||||
msgid "For months"
|
||||
msgstr "Per mese"
|
||||
|
||||
#: dn-footer-contacts.php:161
|
||||
msgid "For years"
|
||||
msgstr "Per anno"
|
||||
|
||||
#: dn-footer-contacts.php:166
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: dn-footer-contacts.php:167
|
||||
msgid "Total click"
|
||||
msgstr "Click totali"
|
||||
|
||||
#: dn-footer-contacts.php:208
|
||||
msgid "Clear the statistics"
|
||||
msgstr "Svuota le statistiche"
|
||||
|
||||
#: dn-footer-contacts.php:214
|
||||
msgid "In this panel you can customize the form display"
|
||||
msgstr "In questo pannello puoi personalizzare la visualizzazione del modulo"
|
||||
|
||||
#: dn-footer-contacts.php:215
|
||||
msgid "Alignment"
|
||||
msgstr "Alignamento"
|
||||
|
||||
#: dn-footer-contacts.php:216
|
||||
msgid "Center"
|
||||
msgstr "Centrato"
|
||||
|
||||
#: dn-footer-contacts.php:217
|
||||
msgid "Left"
|
||||
msgstr "Sinistra"
|
||||
|
||||
#: dn-footer-contacts.php:218
|
||||
msgid "Right"
|
||||
msgstr "Destra"
|
||||
|
||||
#: dn-footer-contacts.php:220
|
||||
msgid "View"
|
||||
msgstr "Visualizzazione"
|
||||
|
||||
#: dn-footer-contacts.php:221
|
||||
msgid "Icons and titles"
|
||||
msgstr "Icone e titoli"
|
||||
|
||||
#: dn-footer-contacts.php:222
|
||||
msgid "Only titles"
|
||||
msgstr "Solo titoli"
|
||||
|
||||
#: dn-footer-contacts.php:223
|
||||
msgid "Only icons"
|
||||
msgstr "Solo icone"
|
||||
|
||||
#: dn-footer-contacts.php:225
|
||||
msgid "Background"
|
||||
msgstr "Sfondo"
|
||||
|
||||
#: dn-footer-contacts.php:226
|
||||
msgid "Full width"
|
||||
msgstr "Tutto schermo"
|
||||
|
||||
#: dn-footer-contacts.php:227
|
||||
msgid "For each button"
|
||||
msgstr "Per ogni pulsante"
|
||||
|
||||
#: dn-footer-contacts.php:228
|
||||
msgid "None"
|
||||
msgstr "Nessuno"
|
||||
|
||||
#: dn-footer-contacts.php:230
|
||||
msgid "Background color"
|
||||
msgstr "Colore sfondo"
|
||||
|
||||
#: dn-footer-contacts.php:231
|
||||
msgid "Background color hover"
|
||||
msgstr "Colore sfondo al passaggio del cursore"
|
||||
|
||||
#: dn-footer-contacts.php:232
|
||||
msgid "Text color"
|
||||
msgstr "Colore testo"
|
||||
|
||||
#: dn-footer-contacts.php:233
|
||||
msgid "Text color hover"
|
||||
msgstr "Colore testo al passaggio del cursore"
|
||||
|
||||
#: dn-footer-contacts.php:254
|
||||
msgid "Settings updated"
|
||||
msgstr "Impostazioni aggiornate"
|
||||
|
||||
#: dn-footer-contacts.php:273
|
||||
msgid "Contacts updated"
|
||||
msgstr "Contatti aggiornati"
|
||||
|
||||
#: dn-footer-contacts.php:350
|
||||
msgid "January"
|
||||
msgstr "Gennaio"
|
||||
|
||||
#: dn-footer-contacts.php:351
|
||||
msgid "February"
|
||||
msgstr "Febbraio"
|
||||
|
||||
#: dn-footer-contacts.php:352
|
||||
msgid "March"
|
||||
msgstr "Marzo"
|
||||
|
||||
#: dn-footer-contacts.php:353
|
||||
msgid "April"
|
||||
msgstr "Aprile"
|
||||
|
||||
#: dn-footer-contacts.php:354
|
||||
msgid "May"
|
||||
msgstr "Maggio"
|
||||
|
||||
#: dn-footer-contacts.php:355
|
||||
msgid "June"
|
||||
msgstr "Giugno"
|
||||
|
||||
#: dn-footer-contacts.php:356
|
||||
msgid "July"
|
||||
msgstr "Luglio"
|
||||
|
||||
#: dn-footer-contacts.php:357
|
||||
msgid "August"
|
||||
msgstr "Agosto"
|
||||
|
||||
#: dn-footer-contacts.php:358
|
||||
msgid "September"
|
||||
msgstr "Settembre"
|
||||
|
||||
#: dn-footer-contacts.php:359
|
||||
msgid "October"
|
||||
msgstr "Ottobre"
|
||||
|
||||
#: dn-footer-contacts.php:360
|
||||
msgid "November"
|
||||
msgstr "Novembre"
|
||||
|
||||
#: dn-footer-contacts.php:361
|
||||
msgid "December"
|
||||
msgstr "Dicembre"
|
||||
|
||||
#~ msgid "Add new field"
|
||||
#~ msgstr "Aggiungi nuovo campo"
|
||||
|
||||
#~ msgid "Field not found"
|
||||
#~ msgstr "Campo non trovato"
|
||||
|
||||
#~ msgid "Delete it"
|
||||
#~ msgstr "Eliminalo"
|
||||
|
||||
#~ msgid "Definition of the field"
|
||||
#~ msgstr "Definizione del campo"
|
||||
|
||||
#~ msgid "Label"
|
||||
#~ msgstr "Etichetta"
|
||||
|
||||
#~ msgid "Type"
|
||||
#~ msgstr "Tipologia"
|
||||
|
||||
#~ msgid "Label without input field"
|
||||
#~ msgstr "Annotazione"
|
||||
|
||||
#~ msgid "Text"
|
||||
#~ msgstr "Campo di testo"
|
||||
|
||||
#~ msgid "Email"
|
||||
#~ msgstr "Campo email"
|
||||
|
||||
#~ msgid "Url"
|
||||
#~ msgstr "Campo url"
|
||||
|
||||
#~ msgid "Tel"
|
||||
#~ msgstr "Campo telefono"
|
||||
|
||||
#~ msgid "Values (one for row)"
|
||||
#~ msgstr "Valori multipli (uno per riga)"
|
||||
|
||||
#~ msgid "Definition of extra fields"
|
||||
#~ msgstr "Definizione dei campi personalizzati"
|
||||
|
||||
#~ msgid "Actions"
|
||||
#~ msgstr "Azioni"
|
||||
|
||||
#~ msgid "Edit"
|
||||
#~ msgstr "Modifica"
|
||||
|
||||
#~ msgid "Delete"
|
||||
#~ msgstr "Elimina"
|
||||
|
||||
#~ msgid "Save order"
|
||||
#~ msgstr "Salva ordinamento"
|
||||
|
||||
#~ msgid "Field deleted"
|
||||
#~ msgstr "Campo eliminato"
|
||||
|
||||
#~ msgid "Field not found and NOT deleted"
|
||||
#~ msgstr "Campo non trovato e non eliminato!"
|
||||
|
||||
#~ msgid "Field updated"
|
||||
#~ msgstr "Campo aggiornato"
|
||||
|
||||
#~ msgid "required"
|
||||
#~ msgstr "obbligatorio"
|
||||
|
||||
#~ msgid "List of products without weight"
|
||||
#~ msgstr "Lista prodotti senza peso"
|
||||
|
||||
#~ msgid "Back"
|
||||
#~ msgstr "Torna"
|
||||
|
||||
#~ msgid "page"
|
||||
#~ msgstr "pagina"
|
||||
|
||||
#~ msgid "of"
|
||||
#~ msgstr "di"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Title table"
|
||||
#~ msgstr "Titolo tabella"
|
||||
|
||||
#~ msgid "N"
|
||||
#~ msgstr "N"
|
||||
|
||||
#~ msgid "Min weight"
|
||||
#~ msgstr "Peso minimo"
|
||||
|
||||
#~ msgid "Max weight"
|
||||
#~ msgstr "Peso massimo"
|
||||
|
||||
#~ msgid "Cost"
|
||||
#~ msgstr "Costo"
|
||||
|
||||
#~ msgid "Add row"
|
||||
#~ msgstr "Aggiungi regola"
|
||||
|
||||
#~ msgid "Definition of weight-based shipping tables"
|
||||
#~ msgstr "Definizione tabelle spese di spedizioni basate sul peso"
|
||||
|
||||
#~ msgid "List product with weight 0"
|
||||
#~ msgstr "Lista prodotti con peso 0"
|
||||
|
||||
#~ msgid "Setting shipping methods"
|
||||
#~ msgstr "Imposta metodi spedizioni"
|
||||
|
||||
#~ msgid "Rates"
|
||||
#~ msgstr "Regole"
|
||||
|
||||
#~ msgid "Table NOT deleted"
|
||||
#~ msgstr "Tabella NON eliminata"
|
||||
|
||||
#~ msgid "By Weight"
|
||||
#~ msgstr "Basato sul peso"
|
||||
|
||||
#~ msgid "Shipping by weight"
|
||||
#~ msgstr "Spedizione basata sul peso"
|
||||
|
||||
#~ msgid "N/A"
|
||||
#~ msgstr "N/A"
|
||||
|
||||
#~ msgid "This controls the title which the user sees during checkout."
|
||||
#~ msgstr "Etichetta visibile agli utenti durante il checkout (pagamento)"
|
||||
|
||||
#~ msgid "Select table"
|
||||
#~ msgstr "Seleziona tabella"
|
||||
|
||||
#~ msgid "You can define the cost tables in the plugin settings"
|
||||
#~ msgstr "Puoi definire le tabelle nelle impostazioni del plugin"
|
||||
|
||||
#~ msgid "click here"
|
||||
#~ msgstr "clicca qui"
|
||||
|
||||
#~ msgid "Percent"
|
||||
#~ msgstr "Percentuale"
|
||||
|
||||
#~ msgid "Fix"
|
||||
#~ msgstr "Fisso"
|
||||
|
||||
#~ msgid "Unknow"
|
||||
#~ msgstr "Sconosciuto"
|
||||
|
||||
#~ 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."
|
||||
|
||||
#~ 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\""
|
||||
|
||||
#~ 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."
|
||||
|
||||
#~ 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"
|
||||
|
||||
#~ msgid "Leave blank field \"To\" for set to not limits"
|
||||
#~ msgstr "Lascia il campo \"A\" vuoto per impostare senza limiti"
|
||||
|
||||
#~ msgid "For help or more informations contact "
|
||||
#~ msgstr "Per aiuto o maggiori informazioni contattare"
|
||||
|
||||
#~ msgid "Discount setting"
|
||||
#~ msgstr "Impostazione sconto"
|
||||
|
||||
#~ msgid "Test"
|
||||
#~ msgstr "Test"
|
||||
|
||||
#~ msgid "Shopping discounts"
|
||||
#~ msgstr "Sconto spesa"
|
||||
|
||||
#~ msgid "This page allows to test discounts rules"
|
||||
#~ msgstr "Questa pagina permette di verificare le regole inserite"
|
||||
|
||||
#~ msgid "Insert total cart value"
|
||||
#~ msgstr "Inserisci totale spesa"
|
||||
|
||||
#~ msgid "Start test"
|
||||
#~ msgstr "Inizia test"
|
||||
|
||||
#~ msgid "Results for"
|
||||
#~ msgstr "Risultato per"
|
||||
|
||||
#~ msgid "Discount"
|
||||
#~ msgstr "Sconto"
|
||||
|
||||
#~ msgid "New total"
|
||||
#~ msgstr "Nuovo totale"
|
||||
|
||||
#~ msgid "There are no applicable discounts for"
|
||||
#~ msgstr "Non ci sono regole applicabili a"
|
||||
|
||||
#~ msgid "Update results for"
|
||||
#~ msgstr "Aggiorna risultati per"
|
||||
|
||||
#~ msgid "Apply from"
|
||||
#~ msgstr "Applica da"
|
||||
|
||||
#~ msgid "Apply to"
|
||||
#~ msgstr "Applica fino a"
|
||||
|
||||
#~ msgid "From"
|
||||
#~ msgstr "Da"
|
||||
|
||||
#~ msgid "To"
|
||||
#~ msgstr "A"
|
||||
|
||||
#~ msgid "No limits"
|
||||
#~ msgstr "Senza limite"
|
||||
|
||||
#~ msgid "Add discount"
|
||||
#~ msgstr "Aggiungi sconto"
|
||||
821
spec/fixtures/dynamic_finders/plugin_version/dplayer/translation_file/languages/dplayer.pot
vendored
Normal file
821
spec/fixtures/dynamic_finders/plugin_version/dplayer/translation_file/languages/dplayer.pot
vendored
Normal file
@@ -0,0 +1,821 @@
|
||||
# Copyright (C) 2021 dPlayer
|
||||
# This file is distributed under the same license as the dPlayer package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: dPlayer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dplayer\n"
|
||||
"POT-Creation-Date: 2021-04-20 14:16:46+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: dplayer.php:58 dplayer.php:59
|
||||
msgid "dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:60
|
||||
msgid "dPlayer Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:61
|
||||
msgid "Add New dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:62
|
||||
msgid "Add New dPlayer "
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:63
|
||||
msgid "New dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:64
|
||||
msgid "Edit dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:65
|
||||
msgid "View dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:66
|
||||
msgid "dPlayers"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:67
|
||||
msgid "Sorry, we couldn't find the Feed you are looking for."
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:71
|
||||
msgid "dPlayer Options."
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:130
|
||||
msgid "Shortcode updated "
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:169
|
||||
msgid "Copy this shortcode and paste it into your post, page, or text widget content"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:225
|
||||
msgid "Error while saving the changes."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:285
|
||||
msgid "Settings successfully imported."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:297
|
||||
#: inc/csf/classes/admin-options.class.php:313
|
||||
msgid "Default settings restored."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:384
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:563
|
||||
msgid "You have unsaved changes, save your changes!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:565
|
||||
msgid "show all settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:567 inc/csf/fields/icon/icon.php:57
|
||||
#: inc/csf/fields/map/map.php:23
|
||||
msgid "Search..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:570
|
||||
#: inc/csf/classes/admin-options.class.php:693
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:570
|
||||
#: inc/csf/classes/admin-options.class.php:693
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:571
|
||||
#: inc/csf/classes/admin-options.class.php:694
|
||||
msgid "Reset Section"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:571
|
||||
#: inc/csf/classes/admin-options.class.php:694
|
||||
msgid "Are you sure to reset this section options?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:572
|
||||
#: inc/csf/classes/admin-options.class.php:695
|
||||
msgid "Reset All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:572
|
||||
#: inc/csf/classes/admin-options.class.php:695
|
||||
#: inc/csf/classes/comment-options.class.php:215
|
||||
#: inc/csf/classes/metabox-options.class.php:293
|
||||
#: inc/csf/fields/backup/backup.php:31
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:572
|
||||
#: inc/csf/classes/admin-options.class.php:695
|
||||
msgid "Are you sure you want to reset all settings to default values?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:670
|
||||
#: inc/csf/classes/comment-options.class.php:198
|
||||
#: inc/csf/classes/metabox-options.class.php:276
|
||||
#: inc/csf/fields/button_set/button_set.php:56
|
||||
#: inc/csf/fields/checkbox/checkbox.php:76 inc/csf/fields/radio/radio.php:75
|
||||
#: inc/csf/fields/select/select.php:113 inc/csf/functions/actions.php:41
|
||||
msgid "No data available."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/comment-options.class.php:216
|
||||
#: inc/csf/classes/metabox-options.class.php:294
|
||||
msgid "update post"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/comment-options.class.php:216
|
||||
#: inc/csf/classes/metabox-options.class.php:294
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:529
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:530
|
||||
msgid "Please enter %s or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:531
|
||||
msgid "Searching..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:532
|
||||
msgid "No results found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:634
|
||||
msgid "Oops! Not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:708 inc/csf/classes/setup.class.php:712
|
||||
msgid "Field not found!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/shortcode-options.class.php:251
|
||||
#: inc/csf/fields/group/group.php:23
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/shortcode-options.class.php:288
|
||||
#: inc/csf/functions/actions.php:16 inc/csf/functions/actions.php:68
|
||||
#: inc/csf/functions/actions.php:106 inc/csf/functions/actions.php:141
|
||||
#: inc/csf/functions/actions.php:170
|
||||
msgid "Error: Invalid nonce verification."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:36
|
||||
#: inc/csf/fields/media/media.php:57
|
||||
msgid "Not selected"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:72 inc/csf/fields/date/date.php:31
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:90 inc/csf/fields/date/date.php:32
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:108
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:114
|
||||
msgid "Gradient Direction"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:115
|
||||
msgid "⇓ top to bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:116
|
||||
msgid "⇒ left to right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:117
|
||||
msgid "⇘ corner top to right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:118
|
||||
msgid "⇙ corner top to left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:161
|
||||
msgid "Background Position"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:162
|
||||
msgid "Left Top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:163
|
||||
msgid "Left Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:164
|
||||
msgid "Left Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:165
|
||||
msgid "Center Top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:166
|
||||
msgid "Center Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:167
|
||||
msgid "Center Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:168
|
||||
msgid "Right Top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:169
|
||||
msgid "Right Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:170
|
||||
msgid "Right Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:184
|
||||
msgid "Background Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:185
|
||||
msgid "Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:186
|
||||
msgid "No Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:187
|
||||
msgid "Repeat Horizontally"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:188
|
||||
msgid "Repeat Vertically"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:202
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:203
|
||||
msgid "Scroll"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:204
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:218
|
||||
msgid "Background Size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:219
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:220
|
||||
msgid "Contain"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:221
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:235
|
||||
msgid "Background Origin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:236
|
||||
#: inc/csf/fields/background/background.php:254
|
||||
msgid "Padding Box"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:237
|
||||
#: inc/csf/fields/background/background.php:253
|
||||
msgid "Border Box"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:238
|
||||
#: inc/csf/fields/background/background.php:255
|
||||
msgid "Content Box"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:252
|
||||
msgid "Background Clip"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:269
|
||||
msgid "Background Blend Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:270
|
||||
#: inc/csf/fields/link_color/link_color.php:36
|
||||
#: inc/csf/fields/typography/typography.php:186
|
||||
msgid "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:271
|
||||
msgid "Multiply"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:272
|
||||
msgid "Screen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:273
|
||||
msgid "Overlay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:274
|
||||
msgid "Darken"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:275
|
||||
msgid "Lighten"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:276
|
||||
msgid "Color Dodge"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:277
|
||||
msgid "Saturation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:278
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:279
|
||||
msgid "Luminosity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/backup/backup.php:26
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/backup/backup.php:29
|
||||
msgid "Export & Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:25 inc/csf/fields/spacing/spacing.php:25
|
||||
msgid "top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:26 inc/csf/fields/spacing/spacing.php:26
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:27 inc/csf/fields/spacing/spacing.php:27
|
||||
msgid "bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:28 inc/csf/fields/spacing/spacing.php:28
|
||||
msgid "left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:29 inc/csf/fields/spacing/spacing.php:29
|
||||
msgid "all"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:51
|
||||
#: inc/csf/fields/typography/typography.php:214
|
||||
msgid "Solid"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:52
|
||||
#: inc/csf/fields/typography/typography.php:217
|
||||
msgid "Dashed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:53
|
||||
#: inc/csf/fields/typography/typography.php:216
|
||||
msgid "Dotted"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:54
|
||||
#: inc/csf/fields/typography/typography.php:215
|
||||
msgid "Double"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:55
|
||||
msgid "Inset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:56
|
||||
msgid "Outset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:57
|
||||
msgid "Groove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:58
|
||||
msgid "ridge"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:59
|
||||
#: inc/csf/fields/typography/typography.php:199
|
||||
#: inc/csf/fields/typography/typography.php:213
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/dimensions/dimensions.php:22
|
||||
msgid "width"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/dimensions/dimensions.php:23
|
||||
msgid "height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/gallery/gallery.php:20
|
||||
msgid "Add Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/gallery/gallery.php:21
|
||||
msgid "Edit Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/gallery/gallery.php:22
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:35 inc/csf/fields/repeater/repeater.php:27
|
||||
msgid "Error: Field ID conflict."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:46 inc/csf/fields/group/group.php:87
|
||||
#: inc/csf/fields/repeater/repeater.php:48
|
||||
#: inc/csf/fields/repeater/repeater.php:76
|
||||
msgid "Are you sure to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:121 inc/csf/fields/repeater/repeater.php:89
|
||||
msgid "You cannot add more."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:122 inc/csf/fields/repeater/repeater.php:90
|
||||
msgid "You cannot remove more."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/icon/icon.php:20 inc/csf/fields/icon/icon.php:53
|
||||
msgid "Add Icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/icon/icon.php:21
|
||||
msgid "Remove Icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link/link.php:20
|
||||
msgid "Add Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link/link.php:21
|
||||
msgid "Edit Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link/link.php:22
|
||||
msgid "Remove Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:37
|
||||
msgid "Hover"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:38
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:39
|
||||
msgid "Visited"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:40
|
||||
msgid "Focus"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/map/map.php:24
|
||||
msgid "Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/map/map.php:25
|
||||
msgid "Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/media/media.php:23 inc/csf/fields/upload/upload.php:21
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/media/media.php:24 inc/csf/fields/upload/upload.php:22
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/sorter/sorter.php:21
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/sorter/sorter.php:22
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/switcher/switcher.php:20
|
||||
msgid "On"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/switcher/switcher.php:21
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:96
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:97
|
||||
msgid "Select a font"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:105
|
||||
msgid "Backup Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:119
|
||||
#: inc/csf/fields/typography/typography.php:132
|
||||
#: inc/csf/fields/typography/typography.php:145
|
||||
#: inc/csf/fields/typography/typography.php:160
|
||||
#: inc/csf/fields/typography/typography.php:176
|
||||
#: inc/csf/fields/typography/typography.php:189
|
||||
#: inc/csf/fields/typography/typography.php:203
|
||||
#: inc/csf/fields/typography/typography.php:221
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:130
|
||||
msgid "Font Style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:144
|
||||
#: inc/csf/fields/typography/typography.php:145
|
||||
msgid "Load Extra Styles"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:158
|
||||
msgid "Subset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:168
|
||||
msgid "Text Align"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:170
|
||||
msgid "Inherit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:171
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:172
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:173
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:174
|
||||
msgid "Justify"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:175
|
||||
msgid "Initial"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:184
|
||||
msgid "Font Variant"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:187
|
||||
msgid "Small Caps"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:188
|
||||
msgid "All Small Caps"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:197
|
||||
msgid "Text Transform"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:200
|
||||
msgid "Capitalize"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:201
|
||||
msgid "Uppercase"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:202
|
||||
msgid "Lowercase"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:211
|
||||
msgid "Text Decoration"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:218
|
||||
msgid "Wavy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:219
|
||||
msgid "Overline"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:220
|
||||
msgid "Line-through"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:233
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:245
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:257
|
||||
msgid "Letter Spacing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:269
|
||||
msgid "Word Spacing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:284
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:295
|
||||
msgid "Custom Style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:362
|
||||
msgid "Custom Web Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:368
|
||||
msgid "Safe Web Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:388
|
||||
msgid "Google Web Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:72 inc/csf/functions/actions.php:110
|
||||
msgid "Error: Invalid key."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:114
|
||||
msgid "Error: The response is not a valid JSON response."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:174
|
||||
msgid "Error: Invalid term ID."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:180
|
||||
msgid "Error: You do not have permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:14 inc/csf/functions/validate.php:86
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:32 inc/csf/functions/validate.php:106
|
||||
msgid "Please enter a valid number."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:50 inc/csf/functions/validate.php:126
|
||||
msgid "This field is required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:68 inc/csf/functions/validate.php:146
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:23
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:24
|
||||
msgid "Video Source."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:25
|
||||
msgid "Upload Your Video here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:31
|
||||
msgid "Upload Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:32
|
||||
msgid "Subtitle Source."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:33
|
||||
msgid "Upload Your Subtitle here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:44
|
||||
msgid "Upload logo"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:45
|
||||
msgid "Logo Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:46
|
||||
msgid "Upload Your logo here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:54
|
||||
msgid "Upload Banner"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:55
|
||||
msgid "Banner Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:56
|
||||
msgid "Upload Your Banner here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:62
|
||||
msgid "Auto Play"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:63 inc/csf/metabox-options.php:73
|
||||
msgid "Choose a option whatever you want - Show / Hide"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:72
|
||||
msgid "Video Loop"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:84
|
||||
msgid "Choose Your Player Theme Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:91
|
||||
msgid "Choose Your Player Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:97 inc/csf/metabox-options.php:98
|
||||
msgid "Player Subtitle Font / Size"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "You can easily integrate video player in your wordress website using this plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://abuhayatpolash.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,954 @@
|
||||
# Copyright (C) 2021 Rouergue Creation
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Custom Oceanwp Shop 1.0\n"
|
||||
"Report-Msgid-Bugs-To: ntickets\n"
|
||||
"POT-Creation-Date: 2021-05-01 13:16+0200\n"
|
||||
"PO-Revision-Date: 2021-05-05 09:31+0200\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: \n"
|
||||
"X-Generator: Poedit 2.4.3\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Language: fr\n"
|
||||
|
||||
# Traduction ecos-admin-menu.php
|
||||
# ########################################################
|
||||
#: inc/ecos-admin-menu.php:32 inc/ecos-admin-menu.php:47
|
||||
#: inc/ecos-admin-menu.php:119
|
||||
msgid "Easy Custom OceanWP Shop General Settings"
|
||||
msgstr "Réglages général du plugin Easy Custom OceanWP Shop"
|
||||
|
||||
#: inc/ecos-admin-menu.php:33
|
||||
msgid "ECOS Settings"
|
||||
msgstr "Paramètres ECOS"
|
||||
|
||||
#: inc/ecos-admin-menu.php:48
|
||||
msgid "General Settings"
|
||||
msgstr "Réglages Général"
|
||||
|
||||
#: inc/ecos-admin-menu.php:61 inc/ecos-admin-menu.php:62
|
||||
#: inc/ecos-admin-menu.php:175
|
||||
msgid "Woocommerce Standard Shop Settings"
|
||||
msgstr "Paramètres Boutique Standard WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:62 inc/ecos-admin-menu.php:133
|
||||
msgid "Woocommerce Standard Shop"
|
||||
msgstr "Boutique Standard WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:74 inc/ecos-admin-menu.php:217
|
||||
msgid "custom store settings with OceanWP theme"
|
||||
msgstr "Paramètres de la boutique personnalisés avec le thème OceanWP"
|
||||
|
||||
#: inc/ecos-admin-menu.php:75 inc/ecos-admin-menu.php:137
|
||||
msgid "OceanWP Theme Shop"
|
||||
msgstr "Boutique du thème OceanWP"
|
||||
|
||||
#: inc/ecos-admin-menu.php.php:127 inc/ecos-admin-menu.php.php:226
|
||||
#: inc/ecos-admin-menu.php.php:472
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:255
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1054
|
||||
msgid "Shop customization:"
|
||||
msgstr "Personnalisation de la boutique:"
|
||||
|
||||
#: inc/ecos-admin-menu.php.php:129
|
||||
msgid "The settings on this page are functional regardless of the WordPress theme used."
|
||||
msgstr "Les paramètres de cette page sont fonctionnels quel que soit le thème WordPress utilisé."
|
||||
|
||||
#: inc/ecos-admin-menu.php:131
|
||||
msgid "Important! has the shop section if you do not use the OceanWP theme select the option:"
|
||||
msgstr "Important! a la section boutique si vous n'utilisez pas le thème OceanWP sélectionnez l'option:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:135
|
||||
msgid "otherwise"
|
||||
msgstr "Sinon"
|
||||
|
||||
#: inc/ecos-admin-menu.php:139
|
||||
msgid "depending on the option chosen for more customization, respectively select the menu:"
|
||||
msgstr "En fonction de l'option choisie pour plus de personnalisation, sélectionnez respectivement le menu:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:141
|
||||
msgid "• ECOS settings > Woocommerce Standard Shop"
|
||||
msgstr "• Paramètres ECOS > Boutique standard WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:143
|
||||
msgid "• ECOS settings > OceanWP Theme Shop"
|
||||
msgstr "• Paramètres ECOS > Boutique du thème OceanWP"
|
||||
|
||||
#: inc/ecos-admin-menu.php:154 inc/ecos-admin-menu.php:196
|
||||
#: inc/ecos-admin-menu.php:250
|
||||
msgid "Save Settings"
|
||||
msgstr "Enregistrer les paramètres"
|
||||
|
||||
#: inc/ecos-admin-menu.php:183
|
||||
msgid "WooCommerce shop customization:"
|
||||
msgstr "Personnalisation de la boutique WooCommerce:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:185
|
||||
msgid "This settings page is under development."
|
||||
msgstr "Cette page de paramètres est en cours de développement."
|
||||
|
||||
#: inc/ecos-admin-menu.php:187
|
||||
msgid "More customization of the store to come for the next version of the plugin."
|
||||
msgstr "Plus de personnalisation de la boutique à venir pour la prochaine version du plugin."
|
||||
|
||||
#: inc/ecos-admin-menu.php:228
|
||||
msgid "welcome to the settings page of a store customized with the OceanWP Theme."
|
||||
msgstr "Bienvenue sur la page des paramètres d'une boutique personnalisée avec le thème OceanWP."
|
||||
|
||||
#: inc/ecos-admin-menu.php:230
|
||||
msgid "the parameters on this page are complementary to those defined by the OceanWP theme via the menus:"
|
||||
msgstr "Les paramètres de cette page sont complémentaires de ceux définis par le thème OceanWP via les menus:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:232
|
||||
msgid "• Appearance > Customize > WooCommerce"
|
||||
msgstr "• Apparence> Personnaliser> WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:234
|
||||
msgid "• Appearance > Typography"
|
||||
msgstr "• Apparence> Typographie"
|
||||
|
||||
#: inc/ecos-admin-menu.php:236
|
||||
msgid "Important! for the parameters of this page to be functional you must have selected in the shop section of the menu:"
|
||||
msgstr "Important! pour que les paramètres de cette page soient fonctionnels, vous devez avoir sélectionné dans la section boutique du menu:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:238
|
||||
msgid "ECOS Setting > General settings"
|
||||
msgstr "Paramètres ECOS > Réglages Général"
|
||||
|
||||
#: inc/ecos-admin-menu.php:240
|
||||
msgid "the shop choice option: oceanwp theme shop"
|
||||
msgstr "l'option pour le choix de la boutique: boutique du thème oceanwp"
|
||||
|
||||
# Traduction ecos-multiple-settings.php
|
||||
# #########################################################
|
||||
#: inc/ecos-multiple-settings.php:112
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:89
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:125
|
||||
msgid "Default settings"
|
||||
msgstr "Paramètres par défaut"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:121
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:98
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:134
|
||||
msgid "initialize the plugin with default settings"
|
||||
msgstr "initialiser le plugin avec les paramètres par défaut"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:134
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:111
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:147
|
||||
msgid "SHOP"
|
||||
msgstr "BOUTIQUE"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:144
|
||||
msgid "shop choice"
|
||||
msgstr "choix de la boutique"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:157
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:392
|
||||
msgid "PRODUCTS"
|
||||
msgstr "PRODUITS"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:167
|
||||
msgid "Display the weight and dimensions of a product"
|
||||
msgstr "Afficher le poids et les dimensions d'un produit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:178
|
||||
msgid "Display the number of products sold"
|
||||
msgstr "Afficher le nombre de produits vendus"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:188
|
||||
msgid "threshold from which we display the number of products sold"
|
||||
msgstr "seuil à partir duquel on affiche le nombre de produits vendus"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:199
|
||||
msgid "Display a promotion message"
|
||||
msgstr "Message de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:208
|
||||
msgid "write a promotion message"
|
||||
msgstr "rédiger un message de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:219
|
||||
msgid "display secure payment with credit card logos"
|
||||
msgstr "afficher le paiement sécurisé avec les logos des cartes de crédit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:229
|
||||
msgid "hide description block"
|
||||
msgstr "masquer le bloc de description"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:240
|
||||
msgid "hide additional information block"
|
||||
msgstr "masquer le bloc d'informations supplémentaires"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:251
|
||||
msgid "hide the reviews block"
|
||||
msgstr "masquer le bloc d'avis"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:267
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:519
|
||||
msgid "CART"
|
||||
msgstr "PANIER"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:277
|
||||
msgid "Add the text free delivery from ... on the shopping cart page"
|
||||
msgstr "Ajouter le texte livraison gratuite à partir de ... sur la page du panier"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:287
|
||||
msgid "enter your text free delivery from ..."
|
||||
msgstr "entrez votre texte livraison gratuite à partir de ..."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:298
|
||||
msgid "show product categories"
|
||||
msgstr "afficher les catégories de produits"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:309
|
||||
msgid "show normal and discounted price"
|
||||
msgstr "afficher le prix normal et en promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:320
|
||||
msgid "hide delivery methods when free is available"
|
||||
msgstr "masquer les modes de livraison lorsque la gratuité est disponible"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:332 inc/ecos-multiple-settings.php:437
|
||||
#: inc/ecos-multiple-settings.php:518 inc/ecos-multiple-settings.php:949
|
||||
msgid "add the weight of the cart"
|
||||
msgstr "Ajouter le poids du Panier"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:344
|
||||
msgid "add of fixed costs to the cart"
|
||||
msgstr "ajout de frais fixes au panier"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:354
|
||||
msgid "Label of fixed costs"
|
||||
msgstr "Étiquette des coûts fixes"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:364
|
||||
msgid "fixed fee amount in x.xx format"
|
||||
msgstr "frais forfaitaire au format x.xx"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:373 inc/ecos-multiple-settings.php:414
|
||||
msgid "VAT class"
|
||||
msgstr "classe de TVA"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:385
|
||||
msgid "Fee as a percentage of the basket amount excluding tax"
|
||||
msgstr "Frais en pourcentage du montant du panier hors taxes"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:395
|
||||
msgid "label for percentage fee"
|
||||
msgstr "étiquette pour les frais en pourcentage"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:405
|
||||
msgid "percentage value in x.xx format"
|
||||
msgstr "valeur du pourcentage au format x.xx"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:426
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:645
|
||||
msgid "CHECKOUT"
|
||||
msgstr "VALIDATION DE LA COMMANDE"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:474
|
||||
msgid "• Choice of a standard Woocommerce store whatever the WordPress theme"
|
||||
msgstr "• Choix d'une boutique Woocommerce standard quel que soit le thème WordPress"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:476
|
||||
msgid "• Choice of a store to customize by the OceanWP theme with the WordPress backoffice menu:"
|
||||
msgstr "• Choix d'une boutique à personnaliser par le thème OceanWP avec le menu du backoffice WordPress:"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:478
|
||||
msgid "Appearance > Customize > WooCommerce > General"
|
||||
msgstr "Apparence > Personnaliser > WooCommerce > Général "
|
||||
|
||||
#: inc/ecos-multiple-settings.php:480
|
||||
msgid "Option remove all WooCommerce features added for OceanWP: No"
|
||||
msgstr "Option supprimer toutes les fonctionnalités WooCommerce ajoutées pour OceanWP: Non"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:492
|
||||
msgid "Display the weight and dimensions of a product:"
|
||||
msgstr "Afficher le poids et les dimensions d'un produit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:494
|
||||
msgid "We display the weight of a product and the dimensions only with simple products."
|
||||
msgstr "Nous affichons le poids d'un produit et les dimensions uniquement avec des produits simples."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:496
|
||||
msgid "Does not work with variable products."
|
||||
msgstr "Ne fonctionne pas avec des produits variables."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:507
|
||||
msgid "Free Shipping Info"
|
||||
msgstr "Informations sur la livraison gratuite"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:548 inc/ecos-multiple-settings.php:551
|
||||
#: inc/ecos-multiple-settings.php:612 inc/ecos-multiple-settings.php:642
|
||||
#: inc/ecos-multiple-settings.php:639 inc/ecos-multiple-settings.php:685
|
||||
#: inc/ecos-multiple-settings.php:688 inc/ecos-multiple-settings.php:723
|
||||
#: inc/ecos-multiple-settings.php:726 inc/ecos-multiple-settings.php:753
|
||||
#: inc/ecos-multiple-settings.php:756 inc/ecos-multiple-settings.php:776
|
||||
#: inc/ecos-multiple-settings.php:779 inc/ecos-multiple-settings.php:800
|
||||
#: inc/ecos-multiple-settings.php:803 inc/ecos-multiple-settings.php:832
|
||||
#: inc/ecos-multiple-settings.php:835 inc/ecos-multiple-settings.php:871
|
||||
#: inc/ecos-multiple-settings.php:874 inc/ecos-multiple-settings.php:895
|
||||
#: inc/ecos-multiple-settings.php:898 inc/ecos-multiple-settings.php:934
|
||||
#: inc/ecos-multiple-settings.php:937 inc/ecos-multiple-settings.php:963
|
||||
#: inc/ecos-multiple-settings.php:966 inc/ecos-multiple-settings.php:988
|
||||
#: inc/ecos-multiple-settings.php:1001 inc/ecos-multiple-settings.php:1067
|
||||
#: inc/ecos-multiple-settings.php:1070 inc/ecos-multiple-settings.php:1130
|
||||
#: inc/ecos-multiple-settings.php:1133
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:296
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:299
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:327
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:330
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:351
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:354
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1142
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1145
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1504
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1507
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1535
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1538
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1576
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1579
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1750
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1753
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1806
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1809
|
||||
msgid "no"
|
||||
msgstr "non"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:556 inc/ecos-multiple-settings.php:620
|
||||
#: inc/ecos-multiple-settings.php:647 inc/ecos-multiple-settings.php:693
|
||||
#: inc/ecos-multiple-settings.php:731 inc/ecos-multiple-settings.php:761
|
||||
#: inc/ecos-multiple-settings.php:784 inc/ecos-multiple-settings.php:808
|
||||
#: inc/ecos-multiple-settings.php:840 inc/ecos-multiple-settings.php:879
|
||||
#: inc/ecos-multiple-settings.php:903 inc/ecos-multiple-settings.php:942
|
||||
#: inc/ecos-multiple-settings.php:971 inc/ecos-multiple-settings.php:1006
|
||||
#: inc/ecos-multiple-settings.php:1075 inc/ecos-multiple-settings.php:1138
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:304
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:335
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:359
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1150
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1512
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1543
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1584
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1758
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1603
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:578 inc/ecos-multiple-settings.php:581
|
||||
msgid "woocommerce standard shop"
|
||||
msgstr "boutique standard woocommerce"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:586
|
||||
msgid "oceanwp theme shop"
|
||||
msgstr "boutique thème oceanwp"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:627
|
||||
msgid "Number Of Products Sold"
|
||||
msgstr "Nombre de produits vendus"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:666
|
||||
msgid "promotion message"
|
||||
msgstr "Message de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:668
|
||||
msgid "only works with promotional products"
|
||||
msgstr "ne fonctionne qu'avec des produits promotionnels"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:710
|
||||
msgid "secure payment"
|
||||
msgstr "Paiement sécurisé"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:738
|
||||
msgid "hide product description blocks"
|
||||
msgstr "Masquer les blocs de description de produit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:858
|
||||
msgid "category product & promotion price"
|
||||
msgstr "Catégorie produit et prix promotionnel"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:910
|
||||
msgid "hide delivery methods"
|
||||
msgstr "Masquer les modes de livraison"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:914
|
||||
msgid "Option: hide delivery methods when free is available"
|
||||
msgstr "Option: masquer les modes de livraison lorsque la gratuité est disponible"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:916
|
||||
msgid "For correct operation of this option,"
|
||||
msgstr "Pour le bon fonctionnement de cette option,"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:918
|
||||
msgid "start by clearing the WooCommerce cache by going to the menu Woocommerce > Etat > Outils > WooCommerce Trascients."
|
||||
msgstr "commencez par vider le cache de WooCommerce en allant dans le menu Woocommerce> Etat> Outils> WooCommerce Trascients."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:920
|
||||
msgid "Click on the Clear temporary data button."
|
||||
msgstr "Cliquez sur le bouton Effacer les données temporaires."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:978
|
||||
msgid "add fixed costs"
|
||||
msgstr "Ajouter des coûts fixes"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:1048
|
||||
msgid "Add Variable Costs"
|
||||
msgstr "Ajouter des coûts variables"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:981 inc/ecos-multiple-settings.php:1050
|
||||
msgid "VAT class defined from the back office WordPress:WooCommerce > Settings > Tax."
|
||||
msgstr "Classe de TVA définie depuis le back office WordPress: WooCommerce > Paramètres > Taxe."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:983 inc/ecos-multiple-settings.php:1052
|
||||
msgid "if you do not wish to apply VAT, leave the field empty."
|
||||
msgstr "Si vous ne souhaitez pas appliquer la TVA, laissez le champ vide."
|
||||
|
||||
# Traduction ecos-multiple-settings_woocommerce_standard_shop.php
|
||||
# #################################################################
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:123
|
||||
msgid "breadcrumb modification"
|
||||
msgstr "modification du fil d'Ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:133
|
||||
msgid "breadcrumb remove"
|
||||
msgstr "masquer le fil d'ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:145
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:159
|
||||
msgid "shop title: font weight"
|
||||
msgstr "titre de la boutique: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:151
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:165
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:296
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:335
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:365
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:504
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:537
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:616
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:703
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:857
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:958
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1022
|
||||
msgid "500"
|
||||
msgstr "500"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:152
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:166
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:297
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:336
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:366
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:505
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:538
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:617
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:704
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:858
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:959
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1023
|
||||
msgid "600"
|
||||
msgstr "600"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:153
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:167
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:298
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:337
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:367
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:506
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:539
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:618
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:705
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:859
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:960
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1024
|
||||
msgid "700"
|
||||
msgstr "700"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:154
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:168
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:299
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:338
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:368
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:507
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:540
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:619
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:706
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:860
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:961
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1025
|
||||
msgid "800"
|
||||
msgstr "800"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:155
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:169
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:300
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:339
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:369
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:508
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:541
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:620
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:707
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:861
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:962
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1026
|
||||
msgid "900"
|
||||
msgstr "900"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:163
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:186
|
||||
msgid "shop title color"
|
||||
msgstr "couleur du titre de la boutique"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:175
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:207
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:198
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:230
|
||||
msgid "text font size in pixel"
|
||||
msgstr "taille de la police du texte en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:185
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:217
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:208
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:240
|
||||
msgid "text color"
|
||||
msgstr "couleur du texte"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:195
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:218
|
||||
msgid "woocommerce info: background color"
|
||||
msgstr "woocommerce info: couleur d'arrière plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:227
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:250
|
||||
msgid "woocommerce message: background color"
|
||||
msgstr "woocommerce message: couleur d'arrière-plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:257
|
||||
msgid "On the general settings page you have chosen the option: woocommerce standard shop."
|
||||
msgstr "Sur la page de Réglages Général, vous avez choisi l'option: boutique standard woocommerce."
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:261
|
||||
msgid "breadcrumb setting"
|
||||
msgstr "Réglage du fil d'Ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:265
|
||||
msgid "breadcrumb modification:"
|
||||
msgstr "modification du fil d'Ariane:"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:267
|
||||
msgid "shop name insertion in the second position of the breadcrumbs"
|
||||
msgstr "insertion du nom de la boutique en deuxième position du fil d'Ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:269
|
||||
msgid "for pages other than the shop."
|
||||
msgstr "pour les pages autres que la boutique."
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:366
|
||||
msgid "shop title"
|
||||
msgstr "Titre de la boutique"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:384
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1170
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1342
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1394
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1435
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1620
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1651
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1760
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1820
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1870
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1972
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1995
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2018
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2041
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2081
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2185
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2270
|
||||
msgid "Choose an option"
|
||||
msgstr "Sélectionner une option"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:411
|
||||
msgid "Woocommerce Info"
|
||||
msgstr "Woocommerce Info"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:453
|
||||
msgid "Woocommerce Message"
|
||||
msgstr "Woocommerce Message"
|
||||
|
||||
# ecos-multiple-settings_oceanwp_shop.php
|
||||
# #################################################################
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:177
|
||||
msgid "shop title: margin top in pixel"
|
||||
msgstr "titre de la boutique: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:262
|
||||
msgid "product title font"
|
||||
msgstr "police du titre pour les produits"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:271
|
||||
msgid "product title: font size in pixel"
|
||||
msgstr "titre du produit: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:281
|
||||
msgid "product title: font size in pixel on mobile"
|
||||
msgstr "titre du produit: taille de la police sur mobile en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:290
|
||||
msgid "product title: font weight"
|
||||
msgstr "titre du produit: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:308
|
||||
msgid "product title: margin bottom in pixel"
|
||||
msgstr "titre du produit: marge basse en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:320
|
||||
msgid "out of stock badge: font size in pixel"
|
||||
msgstr "badge en rupture de stock: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:329
|
||||
msgid "out stock badge: font weight"
|
||||
msgstr "badge en rupture de stock: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:350
|
||||
msgid "promotion badge: font size in pixel"
|
||||
msgstr "badge de promotion: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:359
|
||||
msgid "promotion badge: font weight"
|
||||
msgstr "badge de promotion: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:403
|
||||
msgid "breadcrumb: margin top in pixels"
|
||||
msgstr "fil d'Ariane: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:412
|
||||
msgid "product sheet: padding top in pixels"
|
||||
msgstr "fiche produit: marge interne haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:424
|
||||
msgid "remove product sheet border"
|
||||
msgstr "supprimer les bordures de la fiche produit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:436
|
||||
msgid "hide related products"
|
||||
msgstr "masquer les produits apparentés"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:446
|
||||
msgid "related products title: font size in pixel"
|
||||
msgstr "titre des produits apparentés: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:458
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:623
|
||||
msgid "hide cross-selling"
|
||||
msgstr "masquer la vente croisée"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:468
|
||||
msgid "cross-selling title: font size in pixel"
|
||||
msgstr "titre de vente croisée: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:480
|
||||
msgid "PRODUCTS CATEGORIES"
|
||||
msgstr "CATÉGORIES DE PRODUITS"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:489
|
||||
msgid "products categories title: font size in pixel"
|
||||
msgstr "titre des catégories de produits: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:498
|
||||
msgid "products categories title: font weight"
|
||||
msgstr "titre des catégories de produits: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:531
|
||||
msgid "cart page title: font weight"
|
||||
msgstr "titre de la page du panier: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:549
|
||||
msgid "cart page title: margin top in pixel"
|
||||
msgstr "titre de la page du panier: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:561
|
||||
msgid "table header: background color"
|
||||
msgstr "en-tête de la table: couleur d'arrière plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:570
|
||||
msgid "products table: thumbnail widht in pixel"
|
||||
msgstr "table des produits: largeur de la vignette en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:579
|
||||
msgid "remove products button: hover color"
|
||||
msgstr "bouton Supprimer les produits: couleur de survol"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:588
|
||||
msgid "button style: border radius in pixel"
|
||||
msgstr "style des boutons: rayon de la bordure en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:600
|
||||
msgid "hide shipping address"
|
||||
msgstr "masquer l'adresse de livraison"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:610
|
||||
msgid "price: font weight"
|
||||
msgstr "prix: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:655
|
||||
msgid "column your order: width en %"
|
||||
msgstr "colonne votre commande: largeur en %"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:661
|
||||
msgid "46"
|
||||
msgstr "46"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:662
|
||||
msgid "47"
|
||||
msgstr "47"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:663
|
||||
msgid "48"
|
||||
msgstr "48"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:664
|
||||
msgid "49"
|
||||
msgstr "49"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:665
|
||||
msgid "50"
|
||||
msgstr "50"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:666
|
||||
msgid "51"
|
||||
msgstr "51"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:667
|
||||
msgid "52"
|
||||
msgstr "52"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:668
|
||||
msgid "53"
|
||||
msgstr "53"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:669
|
||||
msgid "54"
|
||||
msgstr "54"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:679
|
||||
msgid "checkout page title: font size in pixel"
|
||||
msgstr "titre de la page de paiement: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:688
|
||||
msgid "checkout page title: font size in pixel on mobile"
|
||||
msgstr "titre de la page de paiement: taille de la police en pixel sur mobile"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:697
|
||||
msgid "checkout page title: font weight"
|
||||
msgstr "titre de la page de paiement: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:715
|
||||
msgid "checkout page title : margin top in pixel"
|
||||
msgstr "titre de la page de paiement: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:728
|
||||
msgid "other checkout page title : font size in pixel"
|
||||
msgstr "autre titre de la page de paiement: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:740
|
||||
msgid "form: widht in %"
|
||||
msgstr "formulaire: largeur en %"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:749
|
||||
msgid "form: border color"
|
||||
msgstr "formulaire: couleur des bordures"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:761
|
||||
msgid "form input: border color"
|
||||
msgstr "entrée de formulaire: couleur de la bordure"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:773
|
||||
msgid "product title: align"
|
||||
msgstr "titre du produit: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:779
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:795
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:811
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:827
|
||||
msgid "left"
|
||||
msgstr "gauche"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:780
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:796
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:812
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:828
|
||||
msgid "center"
|
||||
msgstr "centre"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:781
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:797
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:813
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:829
|
||||
msgid "right"
|
||||
msgstr "droit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:789
|
||||
msgid "subtotal title: align"
|
||||
msgstr "titre du sous-total: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:805
|
||||
msgid "product column: align"
|
||||
msgstr "colonne de produits: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:821
|
||||
msgid "subtotal column: align"
|
||||
msgstr "colonne de sous-total: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:839
|
||||
msgid "order table: border color"
|
||||
msgstr "table votre commande: couleur de la bordure"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:851
|
||||
msgid "subtotal price & total price & TVA: font weight"
|
||||
msgstr "prix sous-total & prix total & TVA: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:872
|
||||
msgid "payment methods background color"
|
||||
msgstr "couleur d'arrière-plan des méthodes de paiement"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:881
|
||||
msgid "place order button: width in %"
|
||||
msgstr "bouton de commande: largeur en %"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:896
|
||||
msgid "ORDER RECEIVED"
|
||||
msgstr "ORDRE REÇU"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:907
|
||||
msgid "order détails table: background color(subtotal & shipping & payment method & total)"
|
||||
msgstr "tableau des détails de la commande: couleur d'arrière-plan (sous-total et expédition et mode de paiement et total)"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:917
|
||||
msgid "order détails table: text color(subtotal & shipping & payment method & total)"
|
||||
msgstr "tableau des détails de la commande: couleur du texte (sous-total et expédition et mode de paiement et total)"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:930
|
||||
msgid "MY ACCOUNT PAGE"
|
||||
msgstr "PAGE MON COMPTE"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:943
|
||||
msgid "title my account: font size in pixel"
|
||||
msgstr "titre mon compte: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:952
|
||||
msgid "title my account: font weight"
|
||||
msgstr "titre mon compte: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:970
|
||||
msgid "title my account: margin top in pixel"
|
||||
msgstr "titre mon compte: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:981
|
||||
msgid "login title: font size in pixel"
|
||||
msgstr "titre connexion: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:992
|
||||
msgid "Navigation: background color"
|
||||
msgstr "Navigation: couleur d'arrière-plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1003
|
||||
msgid "Product title and Total Title: text color"
|
||||
msgstr "Titre du produit et titre total: couleur du texte"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1016
|
||||
msgid "subtotal price & total price: font weight"
|
||||
msgstr "prix soustotal & prix total: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1056
|
||||
msgid "On the general settings page you have chosen the option: oceanwp theme shop."
|
||||
msgstr "Sur la page Réglages Général, vous avez choisi l'option: boutique thème oceanwp."
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1058
|
||||
msgid "All the customizations of this settings page are in addition to the options of the WordPress backoffice menu: Appearance> Customize> WooCommerce."
|
||||
msgstr "Toutes les personnalisations obtenues avec les paramètres de cette page sont complémentaires avec les options du menu backoffice de WordPress: Apparence> Personnaliser> WooCommerce."
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1069
|
||||
msgid "Breadcrumb & Product Margin"
|
||||
msgstr "Fil d'Ariane et Marge Produit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1098
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1109
|
||||
msgid "Your Order"
|
||||
msgstr "Votre commande"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1300
|
||||
msgid "Product Title"
|
||||
msgstr "Titre du produit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1374
|
||||
msgid "Out Of Stock Badge"
|
||||
msgstr "Badge en rupture de stock"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1415
|
||||
msgid "Promotion Badge"
|
||||
msgstr "Badge de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1489
|
||||
msgid "Remove product sheet border for Title & Button & Méta"
|
||||
msgstr "Supprimer les bordures de la fiche produit pour le titre & bouton & méta"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1519
|
||||
msgid "Related Products"
|
||||
msgstr "Produits Apparentés"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1561
|
||||
msgid "cross-selling: You may also like…"
|
||||
msgstr "vente croisée: vous aimerez peut-être aussi…"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1683
|
||||
msgid "Products Table"
|
||||
msgstr "Table des produits"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1734
|
||||
msgid "Total Cart Table"
|
||||
msgstr "Table total du panier "
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1792
|
||||
msgid "Cross-selling: YOU MAY BE INTERESTED IN…"
|
||||
msgstr "Ventes croisées: VOUS POUVEZ ÊTRE INTÉRESSÉ PAR…"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1852
|
||||
msgid "Checkout Page Title"
|
||||
msgstr "Titre de la page de paiement"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1913
|
||||
msgid "Billing Title & Order & Ship To A Different Address"
|
||||
msgstr "Titre de facturation et commande et expédition à une adresse différente"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1930
|
||||
msgid "Coupon Code Form & Login Form"
|
||||
msgstr "Formulaire code de coupon et formulaire de connexion"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1958
|
||||
msgid "form input billing details"
|
||||
msgstr "formulaire de saisie des détails de facturation"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1975
|
||||
msgid "your order table"
|
||||
msgstr "table votre commande"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2113
|
||||
msgid "Payment Methods"
|
||||
msgstr "méthodes de paiement"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2229
|
||||
msgid "Login Form"
|
||||
msgstr "Formulaire de connexion"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2247
|
||||
msgid "Navigation"
|
||||
msgstr "La navigation"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2263
|
||||
msgid "Order Details"
|
||||
msgstr "détails de la commande"
|
||||
@@ -0,0 +1,295 @@
|
||||
# ebanqo widget Pot
|
||||
# Copyright 2020 ...
|
||||
# This file is distributed under the GNU General Public License v2 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"eBanqo Widget Pot "
|
||||
"v0.0.1\n"
|
||||
"POT-Creation-Date: "
|
||||
"2020-11-30 16:16+0530\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Synsoft "
|
||||
"Global "
|
||||
"<inquiry@synsoftglobal."
|
||||
"com>\n"
|
||||
"Language-Team: Synsoft "
|
||||
"Global "
|
||||
"<inquiry@synsoftglobal."
|
||||
"com>\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Synsoft Global "
|
||||
"<inquiry@synsoftglobal."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"2.4.1\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit "
|
||||
"2.4.2\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: ebanqo.php:22
|
||||
msgid ""
|
||||
"Hi, you are welcome. "
|
||||
"Click this button below "
|
||||
"to start chatting with "
|
||||
"our bot."
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:79
|
||||
msgid ""
|
||||
"You might need to clear "
|
||||
"cache if your using a "
|
||||
"cache plugin to see your "
|
||||
"updates"
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:115
|
||||
msgid "eBanqo Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:116
|
||||
msgid "eBanqo"
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:138
|
||||
msgid ""
|
||||
"You do not have "
|
||||
"sufficient permissions "
|
||||
"to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:188
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:19
|
||||
msgid ""
|
||||
"eBanqo.io Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:40
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:44
|
||||
msgid ""
|
||||
"Enable widget on site"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:54
|
||||
msgid ""
|
||||
"Set the color of the "
|
||||
"initial chat trigger "
|
||||
"button"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:62
|
||||
msgid ""
|
||||
"Set the delay time for "
|
||||
"the initial prompt "
|
||||
"message to trigger the "
|
||||
"user's attention"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:67
|
||||
msgid "2000 = 2 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:72
|
||||
msgid ""
|
||||
"Set the initial prompt "
|
||||
"message content"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77
|
||||
msgid ""
|
||||
"The value can be any text"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:82
|
||||
msgid "WhatsApp Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:86
|
||||
msgid ""
|
||||
"Enable WhatsApp chat"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:96
|
||||
msgid ""
|
||||
"Set the WhatsApp number "
|
||||
"you want your customers "
|
||||
"to reach on"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:101
|
||||
msgid ""
|
||||
"Example: 2349099069647. "
|
||||
"You don't need to "
|
||||
"include the + sign."
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:106
|
||||
msgid "Twitter Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:110
|
||||
msgid "Enable Twitter chat"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:120
|
||||
msgid ""
|
||||
"Set the Twitter handle "
|
||||
"you want your customers "
|
||||
"to reach you on"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Example: "
|
||||
"104837247573943. To get "
|
||||
"your Twitter recipient "
|
||||
"ID, you can visit "
|
||||
"%shttp://gettwitterid."
|
||||
"com/%s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:130
|
||||
msgid "Messenger Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:134
|
||||
msgid ""
|
||||
"Enable Messenger chat"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:144
|
||||
msgid ""
|
||||
"Set the Facebook page/"
|
||||
"bot you want your "
|
||||
"customers to reach you on"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:149
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Example: "
|
||||
"1147276463357635647. To "
|
||||
"get your Facebook Page "
|
||||
"ID, you can visit "
|
||||
"%shttps://findmyfbid.com/"
|
||||
"%s, and follow the "
|
||||
"instructions there"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:154
|
||||
msgid ""
|
||||
"This allows users to be "
|
||||
"redirected to messenger "
|
||||
"app or open the "
|
||||
"messenger app pop-up on "
|
||||
"your website"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:165
|
||||
msgid "Webchat Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:170
|
||||
msgid "Button color"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:178
|
||||
msgid ""
|
||||
"Your logo on the webchat "
|
||||
"frame"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:183
|
||||
#: templates/settings.php:187
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:186
|
||||
msgid "Upload image"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:195
|
||||
msgid "Your webchat url"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:200
|
||||
msgid ""
|
||||
"https://webchat.ebanqo."
|
||||
"io/yourId"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:205
|
||||
msgid ""
|
||||
"Title on the webchat "
|
||||
"frame"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:210
|
||||
msgid "Your Bot Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:215
|
||||
msgid ""
|
||||
"Chat Frame background-"
|
||||
"color"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:223
|
||||
msgid ""
|
||||
"Chat frame text color"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:231
|
||||
msgid "Logo width size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:236
|
||||
#: templates/settings.php:246
|
||||
msgid "in pixel"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:241
|
||||
msgid "Logo height size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:257
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Having trouble and need "
|
||||
"some help? Check out our "
|
||||
"%sKnowledge Base%s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,100 @@
|
||||
# Copyright (C) 2021 Web Rockstar
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Enhanced YouTube Embed 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/enhanced-youtube-embed\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-04T02:05:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-3f4c34b\n"
|
||||
"X-Domain: enhanced-youtube-embed\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Enhanced YouTube Embed"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Additional options and settings for embedding YouTube videos with the block editor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Web Rockstar"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://webrockstar.net"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:111
|
||||
msgid "Can be in any YouTube URL format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:115
|
||||
msgid "Auto Play"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:124
|
||||
msgid "Hide Related Videos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:133
|
||||
msgid "Hide Video Controls"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:143
|
||||
msgid "Disable Full Screen View"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:155
|
||||
msgid "Do not show video annotations by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:165
|
||||
msgid "Loop Video"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:184
|
||||
msgid "Minimal YouTube Branding"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:196
|
||||
msgid "Use Privacy Enhanced Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:204
|
||||
msgid "Display Closed Captions by Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:214
|
||||
msgid "Interface Language"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:223
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:235
|
||||
msgid "ISO 639-1 two-letter language code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:227
|
||||
msgid "Default Closed Captions Language"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:241
|
||||
msgid "Video Start Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:252
|
||||
msgid "Video will start playing after this many seconds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:257
|
||||
msgid "Video End Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:265
|
||||
msgid "Video will stop playing after this many seconds"
|
||||
msgstr ""
|
||||
57
spec/fixtures/dynamic_finders/plugin_version/epaka-pl/translation_file/languages/epakaapi.pot
vendored
Normal file
57
spec/fixtures/dynamic_finders/plugin_version/epaka-pl/translation_file/languages/epakaapi.pot
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2021 epaka.pl
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Epaka, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: epaka 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 12:00+0100\n"
|
||||
"PO-Revision-Date: 2021-01-07 12:00+0100\n"
|
||||
"Last-Translator: Epaka\n"
|
||||
"Language-Team: Epaka\n"
|
||||
"Language: PL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgid "Epaka"
|
||||
msgstr ""
|
||||
|
||||
msgid "Panel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wyloguj"
|
||||
msgstr ""
|
||||
|
||||
msgid "Punkt odbioru"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wybierz punkt odbioru"
|
||||
msgstr ""
|
||||
|
||||
msgid "Punkt odbioru jest wymagany dla wybranego kuriera."
|
||||
msgstr ""
|
||||
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zlokalizuj mnie"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wyszukaj lub wybierz lokalizację"
|
||||
msgstr ""
|
||||
|
||||
msgid "Trwa wyszukiwanie punktów, proszę czekać..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Brak punktów w wybranym obszarze. Zmień obszar lub zmniejsz przybliżenie mapy."
|
||||
msgstr ""
|
||||
|
||||
msgid "Nie znaleziono wybranej lokalizacji"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wpisz kod pocztowy, miasto lub punkt"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,188 @@
|
||||
# Copyright (C) 2021 <a href="https://braft.pl">BRAFT</a>
|
||||
# This file is distributed under the same license as the ESWP Popup Notifications plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ESWP Popup Notifications 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/eswp-popup-notifications\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-30T10:16:43+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: eswp-popup-notifications\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: eswp-popup-notifications.php:37
|
||||
msgid "ESWP Popup Notifications"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://braft.pl"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "It is a very simple pupup notifications plugin to display notices to visitors."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "<a href=\"https://braft.pl\">BRAFT</a>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:22
|
||||
#: inc/eswp-popup-notifications-settings.php:98
|
||||
msgid "Save Popups"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:29
|
||||
msgid "Add Popups"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:31
|
||||
msgid "Style Popups"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:34
|
||||
msgid "Add ESWP Popup Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:64
|
||||
#: js/eswp-popup-notifications-settings.js:23
|
||||
#: js/wp-popup-notifications-settings.js:23
|
||||
msgid "popup slug...(mandatory)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:66
|
||||
#: js/eswp-popup-notifications-settings.js:25
|
||||
#: js/wp-popup-notifications-settings.js:25
|
||||
msgid "comma separated pages..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:69
|
||||
#: js/eswp-popup-notifications-settings.js:28
|
||||
#: js/wp-popup-notifications-settings.js:28
|
||||
msgid "all if empty"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:71
|
||||
#: js/eswp-popup-notifications-settings.js:30
|
||||
#: js/wp-popup-notifications-settings.js:30
|
||||
msgid "Set cookie on close?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:74
|
||||
#: js/eswp-popup-notifications-settings.js:33
|
||||
#: js/wp-popup-notifications-settings.js:33
|
||||
msgid "Expires: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:79
|
||||
#: js/eswp-popup-notifications-settings.js:38
|
||||
#: js/wp-popup-notifications-settings.js:38
|
||||
msgid "message..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:87
|
||||
msgid "Add Popup"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:91
|
||||
msgid "Style ESWP Popup Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:39
|
||||
msgid "Overlay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:40
|
||||
#: inc/eswp-popup-notifications-style.php:93
|
||||
#: inc/eswp-popup-notifications-style.php:115
|
||||
msgid "color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:43
|
||||
#: inc/eswp-popup-notifications-style.php:73
|
||||
msgid " opacity: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:46
|
||||
msgid "Notification"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:47
|
||||
msgid "width: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:59
|
||||
msgid "padding: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:71
|
||||
msgid "background color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:76
|
||||
msgid "border color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:78
|
||||
msgid "border width: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:80
|
||||
msgid "border radius: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:82
|
||||
msgid "box shadow: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:85
|
||||
msgid "h-offset: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:87
|
||||
msgid "v-offset: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:89
|
||||
msgid "blur: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:91
|
||||
msgid "spread: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:95
|
||||
msgid "text align: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:97
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:98
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:99
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:102
|
||||
msgid "Font"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:103
|
||||
msgid "size: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:117
|
||||
msgid "link color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:123
|
||||
msgid "Your popup notification preview! Brought to you by <a href=\"www.braft.pl\">BRAFT</a>."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,760 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Event Tickets Manager for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-28 19:09+0530\n"
|
||||
"PO-Revision-Date: 2021-04-28 19:09+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:175
|
||||
#: event-tickets-manager-for-woocommerce.php:85
|
||||
#: event-tickets-manager-for-woocommerce.php:91
|
||||
msgid "Event Tickets Manager for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:218
|
||||
msgid "Enable / Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:220
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:225
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:238
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:226
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:239
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:231
|
||||
msgid "Enable Event Location Site"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:233
|
||||
msgid "Enable this option to display event location on Google Map."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:246
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:275
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:350
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:263
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:269
|
||||
msgid "Google API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:265
|
||||
msgid ""
|
||||
"To get your API key, visit <a target=\"_blank\" href=\"http://www."
|
||||
"gmapswidget.com/documentation/generate-google-maps-api-key/\">here</a>, Make "
|
||||
"sure to enable <a target=\"_blank\" href=\"https://console.cloud.google.com/"
|
||||
"apis/library\">Maps JavaScript API</a> and <a target=\"_blank\" href="
|
||||
"\"https://console.cloud.google.com/apis/library\">Geocoding API</a> in order "
|
||||
"to get Google Maps functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:301
|
||||
msgid "Event Ticket Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:303
|
||||
msgid ""
|
||||
"Email Subject to notify receiver about the event ticket received. Use "
|
||||
"[SITENAME] shortcode as the name of the site."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:307
|
||||
msgid "Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:310
|
||||
msgid "Email Body Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:312
|
||||
msgid "Use [SITENAME] shortcode as the name of the site."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:318
|
||||
msgid "Upload Default Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:328
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:333
|
||||
msgid "Upload Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:344
|
||||
msgid "Upload the image which is used as a logo on your Email Template."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:368
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:369
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:370
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:374
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:375
|
||||
msgid "Please submit a ticket, our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:376
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:417
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:452
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:487
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:420
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:455
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:490
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:512
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:537
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:830
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:569
|
||||
msgid "Start Date/ Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:573
|
||||
msgid "Enter the date and time when the event will start."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:581
|
||||
msgid "End Date/ Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:585
|
||||
msgid "Enter the date and time when the event will end."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:593
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:50
|
||||
msgid "Venue"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:597
|
||||
msgid ""
|
||||
"Enter the accurate full address of event where it will be held to get best "
|
||||
"google result. Ex: Dharmapuri, Forest Colony, Tajganj, Agra, Uttar Pradesh "
|
||||
"282001, India"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:614
|
||||
msgid "Location Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:618
|
||||
msgid "Latitude of the event geographic location."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:626
|
||||
msgid "Location Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:630
|
||||
msgid "Longitude of the event geographic location "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:639
|
||||
msgid "Display event on google map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:650
|
||||
msgid "Add custom fields on the tickets for this event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:658
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:659
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:660
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:661
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:736
|
||||
msgid "Add More"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:810
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:811
|
||||
msgid "Textarea"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:812
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:360
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:813
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:814
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:815
|
||||
msgid "Yes/No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:853
|
||||
msgid "Search "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:892
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:47
|
||||
msgid "Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:971
|
||||
#, php-format
|
||||
msgid "Please add Google API key %s to display event location on google map."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:45
|
||||
msgid "Check-In Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:46
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:48
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:49
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:51
|
||||
msgid "Purchase Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:52
|
||||
msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:53
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:147
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:196
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:197
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-admin-dashboard.php:26
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:35
|
||||
msgid "What is an Event Tickets Manager For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:36
|
||||
msgid ""
|
||||
"Events Tickets Manager For WooCommerce is a plugin that allows merchants to "
|
||||
"add events as products on your WooCommerce store. The best part is that you "
|
||||
"can sell the tickets of your offline events without paying a single to third-"
|
||||
"party marketplace services."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:39
|
||||
msgid "With Our Event Tickets Manager, You Can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:42
|
||||
msgid "Add event-based products to your website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:44
|
||||
msgid "Create an event management and ticketing website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:46
|
||||
msgid "Show upcoming events through a calendar on your online store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:47
|
||||
msgid "Manage the stock of tickets."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:48
|
||||
msgid "Display offline events location on google map."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:55
|
||||
msgid "Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:60
|
||||
msgid "Calendar Widget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:61
|
||||
msgid ""
|
||||
"The plugin comes with a calendar widget to portray the upcoming events on "
|
||||
"your store to your customers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:65
|
||||
msgid "Download Tickets As PDF"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:66
|
||||
msgid ""
|
||||
"The plugin allows the customers to download the tickets for offline use. "
|
||||
"Also, when a customer buys an event from your store the pdf is sent to the "
|
||||
"customer via email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:70
|
||||
msgid "Display Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:71
|
||||
msgid ""
|
||||
"The Events Manager For WooCommerce plugin lets you display the location of "
|
||||
"your offline events with the help of Google Maps."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:77
|
||||
msgid "Elite Features of Premium Version - Coming Soon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:81
|
||||
msgid "Promote Online Events"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:82
|
||||
msgid ""
|
||||
"Promote your online webinars and other premium online events from your "
|
||||
"WooCommerce store with the help of our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:86
|
||||
msgid "Buy Multiple Tickets For Single Event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:87
|
||||
msgid ""
|
||||
"The customers will be able to buy multiple tickets for a single event in "
|
||||
"your store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:91
|
||||
msgid "APIs To Verify Tickets"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:92
|
||||
msgid ""
|
||||
"APIs that allow the admin to log in on mobile apps (android/iOS) and scan QR "
|
||||
"codes at physical events to verify the ticket."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:96
|
||||
msgid "Allow Attendees To Pass The Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:97
|
||||
msgid ""
|
||||
"The customers can pass the ticket they have bought to their friends or "
|
||||
"family if they are not able to visit your event."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:101
|
||||
msgid "Reporting With Multiple Views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:102
|
||||
msgid ""
|
||||
"The plugin provides a report of how the events in your store are performing. "
|
||||
"You can filter the report event-wise and attendee-wise."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:49
|
||||
msgid "Event order email"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:51
|
||||
msgid "This email send to the customer at every event."
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:80
|
||||
msgid "Event order received."
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:161
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:163
|
||||
msgid "Enable this email notification"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:167
|
||||
msgid "Email heading"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:171
|
||||
#, php-format
|
||||
msgid "Available placeholders: %s"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:176
|
||||
msgid "Email type"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:178
|
||||
msgid "Choose which format of email to send."
|
||||
msgstr ""
|
||||
|
||||
#: event-tickets-manager-for-woocommerce.php:130
|
||||
#: event-tickets-manager-for-woocommerce.php:131
|
||||
msgid "Event Check In"
|
||||
msgstr ""
|
||||
|
||||
#: event-tickets-manager-for-woocommerce.php:195
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: event-tickets-manager-for-woocommerce.php:318
|
||||
msgid ""
|
||||
"Woocommerce is not activated, Please activate Woocommerce first to install "
|
||||
"Event Tickets Manager for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:300
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:319
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:325
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:356
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:368
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:373
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:484
|
||||
msgid "Let us know why you are deactivating "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:484
|
||||
msgid " so we can improve the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:488
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:731
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:43
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:45
|
||||
msgid "Event Ticket Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:199
|
||||
msgid "Widget Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:204
|
||||
msgid "Event View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:206
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:209
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:213
|
||||
msgid "Scope of the Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:252
|
||||
msgid "All events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:253
|
||||
msgid "Future events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:254
|
||||
msgid "Past events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:343
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:347
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:351
|
||||
msgid "Ticket Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:355
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:361
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:385
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:443
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:452
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:455
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:458
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:461
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:464
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:467
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:470
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:473
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:354
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:968
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:467
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:470
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:473
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:358
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:972
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:476
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:479
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:482
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:488
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:491
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:519
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:522
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:485
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:503
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:506
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:515
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:525
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to "
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:244
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:264
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:283
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:305
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:325
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:346
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:933
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:950
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:963
|
||||
msgid "*"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:416
|
||||
msgid "Sorry, your nonce did not verify."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:840
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:843
|
||||
msgid "+ Add to Google Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:867
|
||||
msgid "Edit Ticket Information"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:884
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1023
|
||||
msgid "For"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1036
|
||||
msgid "Ticket Number"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1041
|
||||
msgid "Check In"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1084
|
||||
msgid "User checked in successfully."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1086
|
||||
msgid "Event has not started yet."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1089
|
||||
msgid "Event Expired!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1092
|
||||
msgid "Order not exist."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1095
|
||||
msgid "User has already checked in for the event."
|
||||
msgstr ""
|
||||
39
spec/fixtures/dynamic_finders/plugin_version/fast-fancy-filter-3f/composer_file/package.json
vendored
Normal file
39
spec/fixtures/dynamic_finders/plugin_version/fast-fancy-filter-3f/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "FastFancyFilter",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"main": "assets/app/index.js",
|
||||
"scripts": {
|
||||
"dev": "cross-env BABEL_ENV=default webpack --watch",
|
||||
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack -p"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
||||
"@wordpress/babel-preset-default": "^1.2.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-eslint": "^8.2.3",
|
||||
"babel-loader": "^7.1.4",
|
||||
"classnames": "^2.2.5",
|
||||
"cross-env": "^5.1.5",
|
||||
"css-loader": "^0.28.11",
|
||||
"eslint": "^4.19.1",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"postcss-loader": "^2.1.5",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.7",
|
||||
"style-loader": "^0.19.1",
|
||||
"webpack": "^3.11.0",
|
||||
"wp-pot": "^1.9.8"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.21.0",
|
||||
"babel-preset-stage-1": "^6.24.1",
|
||||
"prop-types": "^15.7.2",
|
||||
"query-string": "^4.3.4",
|
||||
"react-masonry-css": "^1.0.14",
|
||||
"react-parallax": "^3.2.1",
|
||||
"react-router": "^5.2.0",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"react-sticky-box": "^0.9.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,308 @@
|
||||
# Copyright (C) 2021 Sabin Mehedin
|
||||
# This file is distributed under the same license as the TikTokFeed plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TikTokFeed 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tik-tok-feed\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-29T06:54:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: tik-tok-feed\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TikTokFeed"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://sgmedia.ro/tik-tok-feed"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "-"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sabin Mehedin"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://sgmedia.ro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:16
|
||||
msgid "Tik Tok"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:22
|
||||
msgid "Shortcode Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:25
|
||||
msgid "Shortcode Feed Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:28
|
||||
msgid "Shortcode User Profile Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:31
|
||||
msgid "Shortcode User Profile Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:42
|
||||
msgid "Customer ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:44
|
||||
msgid "In order to use this plugin you need to connect to the API. Please fill in the field above with your customer id: c3b1852d-eca8-c81e-cdbe-45bf78930c2e"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:45
|
||||
msgid "Tik Tok Username"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:46
|
||||
msgid "Write without @. E.g.: sgmro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:56
|
||||
#: admin/business/model/AdminPage.php:185
|
||||
msgid "Shortcode:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:57
|
||||
msgid "Number of videos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:61
|
||||
msgid "The number of videos we will display in the feed. Max: 20"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:62
|
||||
msgid "Show number of followers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:64
|
||||
#: admin/business/model/AdminPage.php:71
|
||||
#: admin/business/model/AdminPage.php:77
|
||||
#: admin/business/model/AdminPage.php:91
|
||||
#: admin/business/model/AdminPage.php:211
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:65
|
||||
#: admin/business/model/AdminPage.php:72
|
||||
#: admin/business/model/AdminPage.php:78
|
||||
#: admin/business/model/AdminPage.php:92
|
||||
#: admin/business/model/AdminPage.php:212
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:68
|
||||
msgid "Tell me if you want to show the number of followers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:69
|
||||
#: admin/business/model/AdminPage.php:197
|
||||
msgid "Show follow button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:75
|
||||
#: admin/business/model/AdminPage.php:109
|
||||
#: admin/business/model/AdminPage.php:187
|
||||
msgid "Show description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:81
|
||||
#: admin/business/model/AdminPage.php:140
|
||||
msgid "Video cover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:82
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:84
|
||||
msgid "Both"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:85
|
||||
msgid "Static"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:86
|
||||
msgid "Dynamic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:89
|
||||
msgid "Show number of views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:96
|
||||
msgid "Video module"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:97
|
||||
msgid "Show date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:99
|
||||
msgid "Show button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:101
|
||||
#: admin/business/model/AdminPage.php:193
|
||||
msgid "Show likes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:103
|
||||
msgid "Show comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:105
|
||||
msgid "Show shares"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:107
|
||||
#: admin/business/model/AdminPage.php:195
|
||||
msgid "Show views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:120
|
||||
#: admin/business/model/AdminPage.php:233
|
||||
msgid "Follow button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:121
|
||||
#: admin/business/model/AdminPage.php:133
|
||||
#: admin/business/model/AdminPage.php:234
|
||||
#: admin/business/model/AdminPage.php:254
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:123
|
||||
#: admin/business/model/AdminPage.php:243
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:126
|
||||
#: admin/business/model/AdminPage.php:253
|
||||
msgid "Image profile border"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:127
|
||||
#: admin/business/model/AdminPage.php:214
|
||||
msgid "Primary color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:129
|
||||
#: admin/business/model/AdminPage.php:223
|
||||
msgid "Secondary color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:132
|
||||
msgid "Arrows"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:135
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:141
|
||||
msgid "Color number of views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:144
|
||||
msgid "Video modal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:145
|
||||
msgid "Background for icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:147
|
||||
msgid "Color for icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:149
|
||||
msgid "Primary color for button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:158
|
||||
msgid "Secondary color for button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:167
|
||||
msgid "Third color for button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:186
|
||||
msgid "General settings:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:189
|
||||
msgid "Show following"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:191
|
||||
msgid "Show followers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:208
|
||||
msgid "Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:209
|
||||
msgid "Show wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/api/Authenticator.php:56
|
||||
msgid "You have successfully connected to the API."
|
||||
msgstr ""
|
||||
|
||||
#: admin/TikTokFeedAdmin.php:46
|
||||
msgid "Connect to the API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/TikTokFeedAdmin.php:48
|
||||
msgid "To make the plugin functional, please complete your client id and make a connection to the API!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/TikTokFeedAdmin.php:50
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/feed/item.php:30
|
||||
msgid "View on tiktok"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/feed/items.php:15
|
||||
#: public/presentation/profile.php:37
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/feed/items.php:18
|
||||
#: public/presentation/profile.php:58
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/profile.php:30
|
||||
msgid "Following"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/profile.php:44
|
||||
msgid "Likes"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/profile.php:51
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/ffsystems/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/ffsystems/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
Changelog
|
||||
==========
|
||||
|
||||
#### v1.0.0 - June 01, 2021
|
||||
|
||||
First release of the FFSystems for Wordpress plugin.
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/focusable/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/focusable/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "focusable",
|
||||
"version": "1.2.0",
|
||||
"description": "A WordPress plugin that displays a ring on the focusable elements when navigating through keyboard.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/KhizarWeb/focusable.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/KhizarWeb/focusable/issues"
|
||||
},
|
||||
"homepage": "https://github.com/KhizarWeb/focusable#readme",
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.26.14",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"laravel-mix": "^6.0.13",
|
||||
"postcss": "^8.2.6",
|
||||
"sass": "^1.32.8",
|
||||
"sass-loader": "^10.1.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "FourthEstate1/newswire-publsher-wordpress-plugin",
|
||||
"description": "A base WordPress plugin library.",
|
||||
"license": "MIT",
|
||||
"version": "1.0",
|
||||
"minimum-stability": "dev",
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://github.com/FourthEstate1/newswire-publsher-wordpress-plugin",
|
||||
"authors": [
|
||||
{
|
||||
"name": "example",
|
||||
"email": "example@example.com",
|
||||
"homepage": "https://www.example.com/"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://example.com/issues",
|
||||
"source": "https://github.com/FourthEstate1/newswire-publsher-wordpress-plugin"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.4.0",
|
||||
"psr/container": "^1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "*@stable"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"FourthEstate1\\newswire\\publsher\\wordpress\\plugin\\": "/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"FourthEstate1\\newswire\\publsher\\wordpress\\plugin\\": "/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "./vendor/bin/phpunit --coverage-html coverage"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,143 @@
|
||||
# Copyright (C) 2021 GoDaddy
|
||||
# This file is distributed under the GPL-2.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Poynt — a GoDaddy Brand for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://woocommerce.com/my-account/marketplace-ticket-form/\n"
|
||||
"POT-Creation-Date: 2021-04-01 21:16:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:81 src/Lifecycle.php:104
|
||||
msgid "Credit Card"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:82
|
||||
msgid ""
|
||||
"Securely accept credit card payments on your checkout page with Poynt "
|
||||
"— a GoDaddy brand."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:359
|
||||
msgid "Connection settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:362
|
||||
msgid ""
|
||||
"To connect to Poynt, please copy your Application ID and Private Key and "
|
||||
"paste these values in the fields below. %1$sClick here%2$s to access these "
|
||||
"credentials."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:367
|
||||
msgid "Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:369
|
||||
msgid "Enter your Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:373
|
||||
msgid "Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:375
|
||||
msgid "Enter your Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:379
|
||||
msgid "Staging Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:381
|
||||
msgid "Enter your staging Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:385
|
||||
msgid "Staging Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:387
|
||||
msgid "Enter your staging Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:616
|
||||
msgid "An error occurred, please try again or try an alternate form of payment."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:620
|
||||
msgid "Missing card details."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:624
|
||||
msgid "Missing billing details."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lifecycle.php:105
|
||||
msgid "Allow customers to securely pay using their credit cards with Poynt."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:98
|
||||
msgid "Poynt — a GoDaddy Brand for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:206
|
||||
#. translators: Placeholders: %1$s - opening <a> HTML link tag, %2$s - closing
|
||||
#. </a> HTML link tag
|
||||
msgid ""
|
||||
"Migration successful! WooCommerce Poynt Collect Payment Gateway was "
|
||||
"deactivated, and Poynt — a GoDaddy Brand for WooCommerce has been "
|
||||
"%1$sconfigured with your previous settings%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:253
|
||||
msgid ""
|
||||
"Poynt — a GoDaddy Brand for WooCommerce is available for United "
|
||||
"States-based businesses. Please %1$supdate your Store Address%2$s if you "
|
||||
"are located in the U.S."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:270
|
||||
msgid ""
|
||||
"Start taking secure payments in minutes and get paid faster with Poynt "
|
||||
"— a GoDaddy Brand for WooCommerce, a payment gateway plugin that "
|
||||
"enables your US based business to accept any major credit or debit card "
|
||||
"directly on your WooCommerce site. %1$sSignup Now%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Poynt — a GoDaddy Brand for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.poynt.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A payment gateway plugin that enables your US based business to accept "
|
||||
"credit card payments directly on your WooCommerce site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "GoDaddy"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.godaddy.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:86
|
||||
msgctxt "Gateway environment"
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:87
|
||||
msgctxt "Gateway environment"
|
||||
msgid "Staging"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "color-section-cgb-guten-block",
|
||||
"version": "2.7.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^9.2.3",
|
||||
"cgb-scripts": "^1.23.0",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "gosign-text-with-image-block-gosign-guten-block",
|
||||
"version": "2.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.11.1",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: woocommerce-my-demo1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-04 15:54+0800\n"
|
||||
"PO-Revision-Date: 2021-03-04 15:54+0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Alex Mo\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: woocommerce-my-demo.php:108
|
||||
msgid "deployment instructions"
|
||||
msgstr "部署说明"
|
||||
|
||||
#: woocommerce-my-demo.php:159 woocommerce-my-demo.php:168
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Hello"
|
||||
#~ msgstr "您好"
|
||||
@@ -0,0 +1,5 @@
|
||||
# Integration for Beaver Themer Changelog
|
||||
|
||||
## 1.0.0, 20210322
|
||||
|
||||
- Initial release.
|
||||
@@ -0,0 +1,5 @@
|
||||
# Integration for Elementor Theme Builder Changelog
|
||||
|
||||
## 1.0.0, 20210320
|
||||
|
||||
- Initial release.
|
||||
@@ -0,0 +1,350 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integration with Mautic for WP 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-19 14:44+0530\n"
|
||||
"PO-Revision-Date: 2021-03-19 14:44+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_attr_e;esc_html_e;esc_url_raw;"
|
||||
"esc_url;esc_attr;esc_html;esc_attr__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-wp-mautic-integration-admin.php:136
|
||||
#: admin/class-wp-mautic-integration-admin.php:137
|
||||
msgid "Mautic Integration"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-mautic-integration-admin.php:164
|
||||
#: includes/class-mwb-wpm-settings-helper.php:238
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-mautic-integration-admin.php:215
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:22
|
||||
#: admin/partials/connection-setup.php:55
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:22
|
||||
#: admin/partials/connection-setup.php:58
|
||||
msgid "OAuth2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:30
|
||||
#: admin/partials/connection-setup.php:37 admin/partials/forms.php:30
|
||||
#: admin/partials/integration-list.php:23
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:36
|
||||
msgid "Authentication Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:40
|
||||
msgid "Admin Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:49
|
||||
msgid "Reset Connection"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:52
|
||||
msgid "Test Connection"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:51
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:64 admin/partials/settings.php:36
|
||||
msgid "Mautic Url"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:70
|
||||
msgid "Client id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:79
|
||||
msgid "Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:89
|
||||
msgid "Api redirect url"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:96
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:102
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:118
|
||||
#: admin/partials/integration-settings.php:111 admin/partials/settings.php:55
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:122
|
||||
msgid "Authorize App"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:38
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:42
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:46
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:62
|
||||
msgid "Created Leads In Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:70 admin/partials/dashboard.php:90
|
||||
#: admin/partials/dashboard.php:112 admin/partials/dashboard.php:144
|
||||
#: admin/partials/dashboard.php:180
|
||||
msgid "No data available"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:82
|
||||
msgid "Page Hits In Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:104
|
||||
msgid "Form Submissions In Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:125
|
||||
msgid "Top Segments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:131
|
||||
msgid "Segments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:132 admin/partials/dashboard.php:167
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:159
|
||||
msgid "Top Creators"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:166
|
||||
msgid "Creator"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:23
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:28
|
||||
msgid "Form id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:29
|
||||
msgid "Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:31
|
||||
msgid "ShortCode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:32 admin/partials/forms.php:55
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:48
|
||||
msgid "[mwb_m4wp_form id="
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:58
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-list.php:21
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-list.php:22
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-list.php:24
|
||||
#: includes/class-mwb-wpm-settings-helper.php:182 wp-mautic-integration.php:79
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:36
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:39
|
||||
#: admin/partials/integration-settings.php:51
|
||||
#: admin/partials/integration-settings.php:72
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:41
|
||||
#: admin/partials/integration-settings.php:53
|
||||
#: admin/partials/integration-settings.php:74
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:43
|
||||
msgid "Select \"yes\" to enable the integration. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:48
|
||||
msgid "Implicit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:55
|
||||
msgid ""
|
||||
"Select \"yes\" if you want to subscribe people without asking them "
|
||||
"explicitly."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:60
|
||||
msgid "Checkbox Label Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:64
|
||||
msgid "Checkbox label to be shown next to checkbox."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:69
|
||||
msgid "Pre Check Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:76
|
||||
msgid "Select \"yes\" if you want to check the checkbox by default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:81
|
||||
msgid "Segment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:94
|
||||
msgid "Select segment in which the contact should be added."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:99
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:103
|
||||
msgid "Enter tags separated by commas to assign to contact."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-wpm-admin-display.php:27
|
||||
msgid "Mautic WordPress Integration"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-wpm-admin-display.php:30
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:27
|
||||
msgid "Enable Mautic Tracking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:42
|
||||
msgid "Script Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:45
|
||||
msgid "Head"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:47
|
||||
msgid "Footer"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:32
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:42
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:34
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:37
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:48
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class-mwb-wpm-api-base.php:47
|
||||
#: includes/api/class-mwb-wpm-api-base.php:67
|
||||
msgid "Something went wrong, Please check your credentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:332
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:367
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:377
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:619
|
||||
msgid "Select Any One Option..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:103
|
||||
msgid "--Select--"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:162
|
||||
msgid "Connection"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:167
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:172
|
||||
msgid "Mautic Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:177
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:252
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-mwb-wpm-integration-base.php:140
|
||||
msgid "Sign me up for the newsletter"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "internet-connection-status",
|
||||
"title": "Internet Connection Status",
|
||||
"version": "1.4.3",
|
||||
"homepage": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sanzeeb3/internet-connection-status.git"
|
||||
},
|
||||
"license": "GPL-3.0+",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "~9.1.5",
|
||||
"grunt": "~1.0.3",
|
||||
"grunt-checktextdomain": "~1.0.1",
|
||||
"grunt-contrib-compress": "^1.5.0",
|
||||
"grunt-wp-i18n": "^1.0.3",
|
||||
"node-sass": "^4.13.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.9.3",
|
||||
"npm": ">=5.5.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"save": "^2.3.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "invoice-system-for-woocommerce",
|
||||
"version": "1.0.0",
|
||||
"description": "=== invoice-system-for-woocommerce ===\r Contributors: makewebbetter\r Tags: comments, spam\r Requires at least: 4.6\r Tested up to: 4.9.5\r Stable tag: 1.0.0\r License: GNU General Public License v3.0\r License URI: http://www.gnu.org/licenses/gpl-3.0.html",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.2.4",
|
||||
"browser-sync": "^2.26.14",
|
||||
"css-mqpacker": "^7.0.0",
|
||||
"cssnano": "^4.1.10",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-deporder": "^1.2.0",
|
||||
"gulp-imagemin": "^7.1.0",
|
||||
"gulp-newer": "^1.4.0",
|
||||
"gulp-postcss": "^9.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-strip-debug": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-util": "^3.0.8",
|
||||
"postcss-assets": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"gulp-wp-pot": "^2.5.0",
|
||||
"postcss": "^8.2.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,649 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Invoice System for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-25 11:58+0530\n"
|
||||
"PO-Revision-Date: 2021-03-22 16:17+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html;esc_html_e;esc_attr;esc_attr_e;esc_url;"
|
||||
"esc_url_raw\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:125
|
||||
msgid "Choose Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:126
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:128
|
||||
msgid "Please choose digits greater then 0 and less then 10"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:131
|
||||
msgid "Please Enter Characters, Numbers and - only, in prefix and suffix field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:134
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:135
|
||||
msgid "Resubmit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:137
|
||||
msgid "Error,Please reload the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:140
|
||||
msgid "Date can be either current year or next year. Please choose again!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:269
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:276
|
||||
msgid "Enable plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:278
|
||||
msgid "Enable this to start the functionality for users."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:284
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:285
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:289
|
||||
msgid "Company Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:294
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:260
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:300
|
||||
msgid "name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:303
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:309
|
||||
msgid "address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:312
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:318
|
||||
msgid "city"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:327
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:333
|
||||
msgid "state"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:336
|
||||
msgid "Pin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:342
|
||||
msgid "pin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:345
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:351
|
||||
msgid "phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:358
|
||||
msgid "These Details will be shown on invoice or packing slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:361
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:367
|
||||
msgid "email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:372
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:159
|
||||
msgid "Invoice Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:375
|
||||
msgid "This combination will be used as the invoice number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:378
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:384
|
||||
msgid "Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:387
|
||||
msgid "Digit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:393
|
||||
msgid "digit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:396
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:402
|
||||
msgid "suffix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:407
|
||||
msgid "Invoice Number Renew date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:409
|
||||
msgid "Please choose the invoice number renew date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:417
|
||||
msgid "Disclaimer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:419
|
||||
msgid "Please enter desclaimer of you choice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:423
|
||||
msgid "disclaimer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:427
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:431
|
||||
msgid "Choose color of your choice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:436
|
||||
msgid "Choose logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:438
|
||||
msgid "Upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:450
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:451
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:464
|
||||
msgid "Add logo on invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:466
|
||||
msgid ""
|
||||
"Please select if you want the above selected image to be used on invoice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:473
|
||||
msgid "Choose Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:476
|
||||
msgid "This template will be used as the invoice and packing slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:479
|
||||
msgid "Template1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:490
|
||||
msgid "Template2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:503
|
||||
msgid "Send invoice for"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:505
|
||||
msgid ""
|
||||
"Please choose the status of orders to send invoice for. If you do not want "
|
||||
"to send invoice please choose never."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:515
|
||||
msgid "Save settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:534
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:550
|
||||
msgid "Generate invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:550
|
||||
msgid "Generate packing slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:623
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:107
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:153
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:175
|
||||
msgid "Download Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:624
|
||||
msgid "Download Packing Slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:703
|
||||
msgid "Download zip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/index.php:8 public/index.php:8
|
||||
msgid "oops looks like you missed it"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-admin-dashboard.php:26
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-admin-dashboard.php:28
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-admin-dashboard.php:47
|
||||
msgid "&isfw_tab="
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:17
|
||||
msgid "admin/src/images/isfw-banner.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:21
|
||||
msgid "What Is Invoice System For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:25
|
||||
msgid ""
|
||||
"Invoice System for WooCommerce plugin automatically generates WooCommerce "
|
||||
"PDF invoices and attaches them to the relative WooCommerce emails. This "
|
||||
"plugin is the most-apt solution to eliminate the extra effort put in "
|
||||
"manually generating the invoices. This plugin extends your store’s "
|
||||
"functionalities by enabling you to generate bulk invoices with 2 pre-built "
|
||||
"customizable invoice templates. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:29
|
||||
msgid "As a store owner, you get to:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:32
|
||||
msgid "Saves time and labor cost involved in manual invoice curation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:33
|
||||
msgid ""
|
||||
"Easy and paper-less sharing of invoices via WooCommerce emails as PDF "
|
||||
"attachments."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:34
|
||||
msgid ""
|
||||
"Convenient options for both merchants and customers to download invoices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:35
|
||||
msgid ""
|
||||
"Prefix/suffix feature for creating customized invoice numbers increase brand "
|
||||
"value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:36
|
||||
msgid ""
|
||||
"Improves brand image and awareness among your customers with customizable "
|
||||
"invoice templates."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:44
|
||||
msgid "The Free Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:49
|
||||
msgid "admin/src/images/invoice_prebuilt_template_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:52
|
||||
msgid "Pre-built Invoice Templates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:56
|
||||
msgid ""
|
||||
"The Invoice System for WooCommerce plugin provides 2 fully customizable "
|
||||
"invoice templates to enhance brand value for the products."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:67
|
||||
msgid "admin/src/images/invoice_share_via_email_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:70
|
||||
msgid "Share Invoices via Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:71
|
||||
msgid ""
|
||||
"This invoice plugin allows you to share individual or bulk invoices and "
|
||||
"packing slips with the concerned customers via WooCommerce email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:78
|
||||
msgid "admin/src/images/invoice_customizable_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:81
|
||||
msgid "Customizable Invoice Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:85
|
||||
msgid ""
|
||||
"Admin can add/remove prefix and suffix to the invoice number to provide more "
|
||||
"personalized perception to customers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:96
|
||||
msgid "admin/src/images/invoice_easy_downloading_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:99
|
||||
msgid "Easy Downloading of PDF Invoices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:103
|
||||
msgid ""
|
||||
"This Invoice System for WooCommerce plugin gives admin and customers an "
|
||||
"equal right to download the invoices in PDF format from the Order Admin page "
|
||||
"and My Account page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:115
|
||||
msgid "admin/src/images/invoice_renew_number_sequence_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:118
|
||||
msgid "Renew Invoice Number Sequence"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:122
|
||||
msgid ""
|
||||
"Invoice System for WooCommerce plugin also allows the admin to renew the "
|
||||
"invoice number sequence with every new financial year."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:135
|
||||
msgid "admin/src/images/invoice_bulk_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:138
|
||||
msgid "Bulk Invoices & Packaging Slips"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:142
|
||||
msgid ""
|
||||
"Invoice System for WooCommerce plugin allows the admin to generate PDF "
|
||||
"invoices and packaging slips in bulk."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:144
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:150
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:88
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:153
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:163
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:168
|
||||
msgid "Customer ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:171
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:195
|
||||
msgid "BILL TO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:228
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:195
|
||||
msgid "SHIP TO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:263
|
||||
msgid "Qty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:266
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:269
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:215
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:272
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:323
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:244
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:291
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:235
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:301
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:238
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:312
|
||||
msgid "Total Tax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:341
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:258
|
||||
msgid "Looks like order is not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:154
|
||||
msgid "INVOICE"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:182
|
||||
msgid "Invoice to"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:212
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:213
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:214
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:216
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:241
|
||||
msgid "Total tax"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce-activator.php:42
|
||||
msgid "Thank you for shopping with us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:421
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:430
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:433
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:436
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:439
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:442
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:445
|
||||
#: includes/class-invoice-system-for-woocommerce.php:448
|
||||
#: includes/class-invoice-system-for-woocommerce.php:451
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:445
|
||||
#: includes/class-invoice-system-for-woocommerce.php:448
|
||||
#: includes/class-invoice-system-for-woocommerce.php:451
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:455
|
||||
#: includes/class-invoice-system-for-woocommerce.php:461
|
||||
#: includes/class-invoice-system-for-woocommerce.php:464
|
||||
#: includes/class-invoice-system-for-woocommerce.php:486
|
||||
#: includes/class-invoice-system-for-woocommerce.php:489
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:458
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:476
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:482
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:784
|
||||
msgid "max=10 min=0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:814
|
||||
msgid "max="
|
||||
msgstr ""
|
||||
|
||||
#: index.php:14
|
||||
msgid "oops looks like nothing is here"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:70
|
||||
msgid "Invoice system for woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:71
|
||||
msgid "Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:131
|
||||
#: invoice-system-for-woocommerce.php:137
|
||||
msgid "invoice-system-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:193
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,131 @@
|
||||
# Copyright (C) 2021 Steffen Haak <info@klubraum.com>
|
||||
# This file is distributed under the same license as the Klubraum Membership Request plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Klubraum Membership Request 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/klubraum_membership_request_wordpress\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-07T06:39:02+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: klubraum-membership-request-widget\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:18
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:19
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:42
|
||||
msgid "Klubraum Membership Request"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://klubraum.com/wp-membership-request/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugins allows your web site visitors to request a membership for your Klubraum service."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Steffen Haak <info@klubraum.com>"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://klubraum.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-klubraum-membership-request-widget-admin.php:102
|
||||
msgid "API token is missing!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-klubraum-membership-request-widget-admin.php:140
|
||||
msgid "Settings successfully updated!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-klubraum-membership-request-widget-admin.php:166
|
||||
msgid "Failed to store settings!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:34
|
||||
msgid "Expires at"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:34
|
||||
msgid "last request"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:37
|
||||
msgid "No expiry information as no membership request has been made yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:46
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:75
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:76
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:93
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:49
|
||||
msgid "Please provide the API token which you can find in the app under: Settings - Klubraum - API Token. Only available for Klubraum admins."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:50
|
||||
msgid "Optionally you can customize the text which is shown in addition to the form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:54
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:57
|
||||
msgid "To integrate the membership request form, use the shortcode:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:61
|
||||
msgid "Expiry Date API token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:100
|
||||
msgid "API token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:106
|
||||
msgid "Introduction text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:107
|
||||
msgid "Some explaining words about the Klubraum widget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:112
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-klubraum-membership-request-widget-activator.php:33
|
||||
msgid "We are using Klubraum for organizing our community. Do you wanna join?"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:119
|
||||
#: public/class-klubraum-membership-request-widget-public.php:161
|
||||
#: public/class-klubraum-membership-request-widget-public.php:224
|
||||
msgid "Failed to request membership!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:154
|
||||
msgid "Membership requested successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:199
|
||||
msgid "E-Mail"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:206
|
||||
msgid "Request Membership"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:235
|
||||
msgid "Please enter a valid email."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2021 E-Learning expert
|
||||
# This file is distributed under the same license as the Video Resume for LearnDash plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Video Resume for LearnDash 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sfwd-video-resume\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-05T19:53:15+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ld_video_resume\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Video Resume for LearnDash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will resume the video from where user left."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "E-Learning expert"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/manishswamy077/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:93
|
||||
msgid "Select Video Provider"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:94
|
||||
msgid "Vimeo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:95
|
||||
msgid "Youtube"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:105
|
||||
msgid "Wistia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:106
|
||||
msgid "JWPlayer (Javascript Only)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:107
|
||||
msgid "VooPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:120
|
||||
msgid "Multiple Video Resume Support "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:123
|
||||
msgid "Please select video provider to work with ."
|
||||
msgstr ""
|
||||
35015
spec/fixtures/dynamic_finders/plugin_version/lightning-paywall/composer_file/package-lock.json
generated
vendored
Normal file
35015
spec/fixtures/dynamic_finders/plugin_version/lightning-paywall/composer_file/package-lock.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,201 @@
|
||||
# Copyright (C) 2016 WooCommerce Linet Integration
|
||||
# This file is distributed under the same license as the WooCommerce Linet Integration package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Linet Integration 1.6.7\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/adam2314/woocommerce-linet/issues\n"
|
||||
"POT-Creation-Date: 2015-08-07 14:00: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: 2015-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:50
|
||||
msgid ""
|
||||
"LINET: Didn't create invoice because total is 0 and send order with zero "
|
||||
"total is set to off."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:80
|
||||
msgid "Linet Invoice created. "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:88
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:91
|
||||
msgid "ERROR creating Linet invoice: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:92
|
||||
msgid " ErrorNumber: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:93
|
||||
msgid " ErrorType: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:94
|
||||
msgid " Message: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:95
|
||||
msgid " Detail: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-order-actions.php:36
|
||||
msgid "Send Invoice to Linet"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-order-actions.php:37
|
||||
msgid "Send Payment to Linet"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-payment-manager.php:60
|
||||
msgid "Linet Payment created. "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:21
|
||||
msgid "Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:27
|
||||
msgid "Consumer Secret"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:34
|
||||
msgid "Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:40
|
||||
msgid "Public Key"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:47
|
||||
msgid "Invoice Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:54
|
||||
msgid "Sales Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:60
|
||||
msgid "Discount Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:66
|
||||
msgid "Shipping Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:72
|
||||
msgid "Payment Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:78
|
||||
msgid "Rounding Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:85
|
||||
msgid "Orders with zero total"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:91
|
||||
msgid "Auto Send Invoices"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:97
|
||||
msgid "Auto Send Payments"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:103
|
||||
msgid "Send Inventory Items"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:109
|
||||
msgid "Debug"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:145
|
||||
msgid "Linet Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:172
|
||||
msgid "Linet"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:193
|
||||
msgid "Linet for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:197
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:200
|
||||
msgid "There was an error saving your settings."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:216
|
||||
msgid ""
|
||||
"Settings for your Linet account including security keys and default account "
|
||||
"numbers.<br/> <strong>All</strong> text fields are required for the "
|
||||
"integration to work properly."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:230
|
||||
msgid "Key file found."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:232
|
||||
msgid "Key file not found."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:234
|
||||
msgid ""
|
||||
" This setting should include the absolute path to the file which might "
|
||||
"include working directory: "
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:129
|
||||
msgid ""
|
||||
"WooCommerce Linet Integration requires WooCommerce 2.2.1 or higher to be "
|
||||
"installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:144
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:145
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:146
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce Linet Integration"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://woothemes.com/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Integrates <a href=\"http://www.woothemes.com/woocommerce\" target=\"_blank"
|
||||
"\" >WooCommerce</a> with the <a href=\"http://www.linet.org.il\" target=\"_blank"
|
||||
"\">Linet</a> accounting software."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SpeedComp"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.speedcomp.co.il"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,483 @@
|
||||
# Copyright (C) 2021 Deep Web Solutions
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Locked Payment Methods for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/deep-web-solutions/woocommerce-plugins-locked-payment-"
|
||||
"methods/issues\n"
|
||||
"POT-Creation-Date: 2021-05-29 16:16:14+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:36
|
||||
#. translators: 1. Component name, 2. Component version
|
||||
msgid ""
|
||||
"<strong>%1$s (%2$s)</strong> has encountered an error. Your environment "
|
||||
"doesn't meet all of the system requirements listed below:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:55
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:67
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:315
|
||||
#. translators: PHP version
|
||||
#. translators: WordPress version
|
||||
#. translators: %s: Installed version of the dependant plugin
|
||||
msgid "You're running version %s"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:80
|
||||
msgid ""
|
||||
"If you need to upgrade your version of PHP you can ask your hosting company "
|
||||
"for assistance, and if you need help upgrading WordPress you can refer to "
|
||||
"<a href=\"https://wordpress.org/support/article/updating-wordpress/\" "
|
||||
"target=\"_blank\">the Codex</a>."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/AbstractPermissions.php:85
|
||||
msgid "Failed to update permissions"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:158
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:175
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:223
|
||||
#. translators: 1. Installation node name, 2. Error message.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> failed to complete the installation routine. The "
|
||||
"error is: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:231
|
||||
msgid "<strong>%1$s</strong> was successfully updated."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:231
|
||||
msgid "<strong>%1$s</strong> was successfully installed."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/initialization/error.php:36
|
||||
#. translators: 1. Plugin name, 2. Plugin version, 3. Support email, 4. Support
|
||||
#. website
|
||||
msgid ""
|
||||
"<strong>%1$s (v%2$s)</strong> initialization failed. Please contact us at "
|
||||
"<strong><a href=\"mailto:%3$s\">%3$s</a></strong> or visit our <strong><a "
|
||||
"href=\"%4$s\" target=\"_blank\">support website</a></strong> to get help. "
|
||||
"Please include this error notice in your support query:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:23
|
||||
#. translators: 1. Plugin name, 2. Plugin version, 3. Name of the install
|
||||
#. button
|
||||
msgid ""
|
||||
"<strong>%1$s (v%2$s)</strong> needs to run its installation routine before "
|
||||
"it can be used. Please click the \"%3$s\" button to proceed:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:27
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:36
|
||||
#. translators: Name of the install button
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:23
|
||||
#. translators: 1. Plugin name, 2. Plugin version, 3. Name of the update button
|
||||
msgid ""
|
||||
"A data update is available for <strong>%1$s (v%2$s)</strong>. It is "
|
||||
"recommended to backup your database before proceeding. Please click the "
|
||||
"\"%3$s\" button when ready:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:27
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:38
|
||||
#. translators: Name of the update button
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/CronEvents/CronIntervalsEnum.php:139
|
||||
msgid "Every %s minutes"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/CronEvents/CronIntervalsEnum.php:140
|
||||
msgid "Every %s hours"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:155
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the %2$s PHP "
|
||||
"extension is missing. Contact your host or server administrator to install "
|
||||
"and configure the missing extension."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the following PHP "
|
||||
"extensions are missing: %2$s. Contact your host or server administrator to "
|
||||
"install and configure the missing extensions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:162
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> requires the %2$s PHP extension to function. Contact "
|
||||
"your host or server administrator to install and configure the missing "
|
||||
"extension."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> requires the following PHP extensions to function: "
|
||||
"%2$s. Contact your host or server administrator to install and configure "
|
||||
"the missing extensions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:186
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP functions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the %2$s PHP function "
|
||||
"is missing. Contact your host or server administrator to install and "
|
||||
"configure the missing function."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the following PHP "
|
||||
"functions are missing: %2$s. Contact your host or server administrator to "
|
||||
"install and configure the missing functions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:193
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP functions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> requires the %2$s PHP function to exist. Contact your "
|
||||
"host or server administrator to install and configure the missing function."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> requires the following PHP functions to exist: %2$s. "
|
||||
"Contact your host or server administrator to install and configure the "
|
||||
"missing functions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:217
|
||||
#. translators: Plugin name or identifiable name.
|
||||
msgid ""
|
||||
"<strong>%s</strong> may behave unexpectedly because the following PHP "
|
||||
"configuration settings are expected:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:221
|
||||
msgid ""
|
||||
"Please contact your hosting provider or server administrator to configure "
|
||||
"these settings. The plugin will attempt to run despite this warning."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:225
|
||||
#. translators: Plugin name or identifiable name.
|
||||
msgid ""
|
||||
"<strong>%s</strong> cannot run because the following PHP configuration "
|
||||
"settings are expected:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:229
|
||||
msgid ""
|
||||
"Please contact your hosting provider or server administrator to configure "
|
||||
"these settings."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:251
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the %2$s plugin is "
|
||||
"either not installed or not active. Please install and activate the plugin "
|
||||
"first."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the following plugins "
|
||||
"are either not installed or active: %2$s. Please install and activate these "
|
||||
"plugins first."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:258
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> requires the %2$s plugin to be installed and active. "
|
||||
"Please install and activate the plugin first."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> requires the following plugins to be installed and "
|
||||
"active: %2$s. Please install and activate these plugins first."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:284
|
||||
#. translators: PHP settings value.
|
||||
msgid "%s or higher"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/IntegrationsSettings.php:29
|
||||
msgid "Integrations Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:86
|
||||
msgid "Grant access to the following locked payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:92
|
||||
msgid "Payment methods ..."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:192
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to the group settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:136
|
||||
msgid "Grant access to payment methods:"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:145
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:214
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to membership plans."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:112
|
||||
msgid "View settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:112
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:116
|
||||
msgid "Upgrade for premium features"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:116
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:144
|
||||
msgid "Visit community forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:144
|
||||
msgid "Community support"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:145
|
||||
msgid "Send us an inquiry"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:145
|
||||
msgid "Contact us"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:154
|
||||
msgid "Visit your account area"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:154
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:155
|
||||
msgid "Visit premium support forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:155
|
||||
msgid "Premium support"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/GeneralSettings.php:27
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/GeneralSettings.php:50
|
||||
msgid "Payment methods which are locked by default"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/GeneralSettings.php:58
|
||||
msgid "Only enabled payment methods can be selected"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/PluginSettings.php:29
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/PluginSettings.php:45
|
||||
msgid "Remove all data on uninstallation?"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/PluginSettings.php:50
|
||||
msgid ""
|
||||
"If enabled, the plugin will remove all database data when removed and you "
|
||||
"will need to reconfigure everything if you install it again at a later time."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings.php:126
|
||||
msgid "Failed to delete the plugin options from the database"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/AbstractUnlockStrategy.php:175
|
||||
#. translators: Strategy name.
|
||||
msgid "Unlock via %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:119
|
||||
msgid "Fields have been disabled because this order has already been paid."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:127
|
||||
#. translators: Name of the payment gateway.
|
||||
msgid "Unlock the <i>%s</i> payment method for this order?"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:136
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:243
|
||||
msgid ""
|
||||
"The customer is already granted access to this payment method through other "
|
||||
"means."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:200
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to each unpaid order. Access is granted only for the respective order."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:88
|
||||
msgid "Unlocked for"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:164
|
||||
msgid "Unlocked for..."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Locked Payment Methods for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:236
|
||||
#. translators: Name of the payment gateway.
|
||||
msgid "Unlock the <strong>%s</strong> payment method for this user?"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:301
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to each user's profile page. Access is granted for all future orders and "
|
||||
"all current unpaid orders."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserRoleStrategy.php:32
|
||||
msgid "User roles with full access to all enabled payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserRoleStrategy.php:119
|
||||
msgid ""
|
||||
"Users with certain roles will be granted full access to all the locked "
|
||||
"payment methods."
|
||||
msgstr ""
|
||||
|
||||
#: src/templates/admin/composer-error.php:20
|
||||
#. translators: %s: Plugin Name
|
||||
msgid "It seems like <strong>%s</strong> is corrupted. Please reinstall!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.deep-web-solutions.com/plugins/locked-payment-methods-for-"
|
||||
"woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A WooCommerce extension which allows shop managers to hide payment methods "
|
||||
"from customers that haven't been manually granted access yet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Deep Web Solutions"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.deep-web-solutions.com"
|
||||
msgstr ""
|
||||
|
||||
#: bootstrap.php:61
|
||||
msgid "Deep Web Solutions: Locked Payment Methods for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: src/configs/settings.php:24
|
||||
msgctxt "settings"
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/configs/settings.php:29
|
||||
msgctxt "settings"
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings.php:71
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:64
|
||||
msgctxt "settings"
|
||||
msgid "Locked Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:180
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:202
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "WC Memberships"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:188
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "Order Meta"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:289
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "User Meta"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserRoleStrategy.php:107
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "User Roles"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:113
|
||||
msgctxt "wc-memberships-integration"
|
||||
msgid "Unlocked Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:167
|
||||
msgctxt "users table"
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/login-by-bindid/change_log/changelog.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/login-by-bindid/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Login by BindID
|
||||
|
||||
**1.0.8**
|
||||
|
||||
* First release
|
||||
340
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/change_log/CHANGELOG.txt
vendored
Normal file
340
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,340 @@
|
||||
Changelog
|
||||
|
||||
v3.0
|
||||
* [major] updated to imdbphp-6.5 library
|
||||
* [major] rewritten the code to be compliant with wordpress security
|
||||
* [major] plugin is compatible with tablets/mobile phones (fully responsive)
|
||||
* [major] first block for Gutenberg (for [imdblt] movies included by name)
|
||||
* [medium] popups URLs are rewritten to (blog)/imdlt/(film|person)
|
||||
* [medium] updated to highslide 5.0
|
||||
* [medium] moved all inline javascripts to external files so the plugin is Content Security Policy (CSP) compliant
|
||||
* [medium] cache folder is created if it doesn't exist, highslide is download if it doesn't exist
|
||||
* [medium] new icons, new layout
|
||||
* [minor] removed Pilot search options
|
||||
* [minor] removed js support for IE
|
||||
* [minor] removed support for wordpress < 5.7
|
||||
* [minor] added a tool to copy taxonomy templates in the admin interface
|
||||
* [minor] added a css fix for OceanWP template users
|
||||
* [minor] css/js are now loaded only on /imdblt/ and widget pages
|
||||
* [minor] popup movie pages get their title according to the query string "film"
|
||||
* [minor] css fix for Oceanwp templates
|
||||
* [bug] fixed popup-imdb_person.php which showed both actress & actor
|
||||
* [bug] fixed caching system
|
||||
* [bug] fixed cache refresh for movies, only normal (not _big) pictures where retrieved
|
||||
* [bug] fixed longstanding bug of widget ordering
|
||||
* [bug] fixed broken [imdblt] calls into the post
|
||||
* [bug] fixed layout for standardized taxonomy templates
|
||||
* [bug] fixed Deprecated TinyMCE API call: "onPostProcess" (moved to new tinymce standards)
|
||||
* [bug] removed the use of movie_actress() in popup-imdb_person.php
|
||||
* [bug] fixed bad English grammar, sentences, but much more work to do. Seems like I've improved my skills over a decade.
|
||||
* [misc] renamed the plugin to Lumiere Movies, renamed all classes and functions accordingly
|
||||
* [misc] Under the hood, more robust plugin following (a bit more) wordpress & PHP standards
|
||||
|
||||
v2.3.2
|
||||
* [major] updated to imdbphp-2.3.2 library
|
||||
* [medium] added Ukranian : thanks Michael Yunat
|
||||
* [bug] fixed longstanding bug: shortcodes when editing a wordpress post are back
|
||||
* [bug] fixed longstanding bug: bios are back
|
||||
|
||||
v2.2.3
|
||||
* [major] updated to imdbphp-2.2.3 library
|
||||
|
||||
v2.2.2
|
||||
* [major] updated to imdbphp-2.2.2 library
|
||||
* [medium] added production companies
|
||||
|
||||
v2.2.1
|
||||
* [major] updated to imdbphp-2.2.1 library
|
||||
* [medium] added Croatian : thanks Borisa Djuraskovic!
|
||||
* [bug] fixed newly added "keywords" bug in the taxonomy
|
||||
|
||||
v2.2
|
||||
* [major] updated to imdbphp-2.2 library
|
||||
* [medium] added "keywords" option which allows to diplay the movie keywords. Taxonomy included.
|
||||
* [minor] "Display only thumbnail" option now affects popup picture width in the same way it affects widgets picture width
|
||||
* [bug] deleted "ob_flush(); flush();" in inc/popup-header.php as it was preventing the CSS and JS to be used
|
||||
* [bug] removed "movie connection" option in widget; this was a long non-working useless option
|
||||
|
||||
v2.1.9
|
||||
* [major] updated to imdbphp-2.1.9 library
|
||||
|
||||
v2.1.8
|
||||
* [major] updated to imdbphp-2.1.8 library
|
||||
|
||||
v2.1.7
|
||||
* [major] updated to imdbphp-2.1.7 library
|
||||
* [bug] soundtracks fixed
|
||||
* [bug] movie connection is broken, unactivated
|
||||
|
||||
v2.1.6
|
||||
* [major] updated to imdbphp-2.1.6 library
|
||||
|
||||
v2.1.5
|
||||
* [major] updated to imdbphp-2.1.5 library
|
||||
|
||||
v2.1.4
|
||||
* [major] updated to imdbphp-2.1.4 library
|
||||
* [minor] changed obsolete __ngettext() method to _n() (__ngettext obsolete since wordpress 2.8)
|
||||
* [minor] removed moviepilot options, but who was still using that?
|
||||
|
||||
v2.1.3
|
||||
* [major] updated to imdbphp-2.1.3 library
|
||||
* [major] changed the way to use highslide js (on Wordpress request, piece of code not GPL compliant); it is mandatory now to download the library from [IMDBLt website](https://www.jcvignoli.com/blog/en/imdb-link-transformer "IMDbLT website") in order to get this damn cool window. Once the file downloaded, move the folder "highslide" into the "js" one and check general options in order to activate it
|
||||
* [major] translated into Romanian, thanks to [Web Geek Science](https://webhostinggeeks.com "Web Hosting Geeks")
|
||||
|
||||
v2.1.2
|
||||
* [major] updated to imdbphp-2.1.2 library
|
||||
|
||||
v2.1.1
|
||||
* [major] updated to imdbphp-2.1.1 library
|
||||
* [minor] new cache option to display cache elements in a shorter way (no picture, only names) -> "Quick advanced cache details" option
|
||||
* [minor] added IMDB LT to the new wordpress toolbar menu
|
||||
|
||||
v2.1
|
||||
* [major] updated to imdbphp-2.1.0 library
|
||||
|
||||
v2.0.8
|
||||
* [major] huge speed improvement changing in inc/functions.php is_multiArrayEmpty() from [PHP empty function 1](http://in2.php.net/manual/fr/function.empty.php#92308 "PHP empty function comments") to [PHP empty function 2](http://in2.php.net/manual/fr/function.empty.php#94786 "PHP empty function comments") -> credits to fha
|
||||
* [medium] cache options are divided between "Cache general options" and "Manage Cache" pages. Much more advanced way to manage cached movies. Movie's and People's cache management.
|
||||
* [medium] when the widget displayed more than one movie the widget's title took the title of the previous movie's name
|
||||
* [medium] still some "Fatal error: Cannot redeclare plugin_action() (previously declared in /xxxxxx/wp-content/plugins/wp-to-twitter/wp-to-twitter.php on line 1064) in /xxxxxx/wp-content/plugins/imdb-link-transformer/inc/widget.php:104" -> updated the way to register the plugin, using wp_register_sidebar_widget instead of register_sidebar_widget and removing the plugin_action() function (all obsoletes)
|
||||
* [minor] admin menu added few icons
|
||||
* [bug] fixed displaying " as " text even when no role was existing in popup.php
|
||||
* [bug] fixed typo missing closing ">" line 142 inc/help.php
|
||||
|
||||
v2.0.7
|
||||
* [major] updated to imdbphp-2.0.7 library
|
||||
* [minor] updated to highslide js 4.1.12
|
||||
|
||||
v2.0.6
|
||||
* [major] updated to imdbphp-2.0.6 library
|
||||
|
||||
v2.0.5
|
||||
* [major] updated to imdbphp-2.0.5 library
|
||||
* [minor] widget only finds the movie if the tt number on IMDB is followed by a full seven digits; modified "$moviespecificid = $value;" by "$moviespecificid = str_pad($value, 7, "0", STR_PAD_LEFT);" into widget.php
|
||||
|
||||
v2.0.4
|
||||
* [major] updated to imdbphp-2.0.4 library - !! No more "IMDb" word added at the end of popup movie's title - Pictures from IMDb are back !
|
||||
* [minor] it is now possible to resize thumbnail even if "Display only thumbnail" is turned on yes (found under "general options" -> "Paths & Layout" -> "layout"->"Imdb cover picture"). "Size" is not anymore unactivated (options-general.php) and value filled in is taken into account (imdb-movie.inc.php)
|
||||
* [minor] french strings corrected
|
||||
|
||||
v2.0.3
|
||||
* [bug] Many bugs have been corrected. Among them, pictures should be displayed even if using Firefox, country as movie detail is back.
|
||||
* [bug] Two taxonomy help pictures were forgotten!
|
||||
* [bug] Layout broken when using moviepilot (writer & producer sections, $role parts)
|
||||
* [major] updated to imdbphp-2.0.2 library
|
||||
* [medium] added Bulgarian : thanks Peter!
|
||||
* [medium] added a function to construct highslide and classical links(imdb_popup_link() & imdb_popup_highslide_link() in inc/functions.php, called from imdb-link-transformer.php)
|
||||
* [minor] added title as taxonomy
|
||||
|
||||
v2.0.2
|
||||
* [medium] Completely revisted as taxonomy works; one can select many movie's details as taxonomy. New admin options related to.
|
||||
* [medium] Trailers added as a new movie detail.
|
||||
* [minor] Year added as a new movie detail. The movie's release year will always take place next the title, in brackets.
|
||||
* [minor] French strings corrected. Taxonomy help improved.
|
||||
|
||||
v2.0.1
|
||||
* [bug] when using lumiere_external_call() function with an imdbid from external (not with a movie's name), it didn't work. inc/imdb-link-transformer.php corrected
|
||||
* [major] added possibility (by an option in advanced general settings) to add movie's genre tags directly into post tags (actually, into taxonomy wordpress function). When activated, it display new links instead previous genre tags.
|
||||
* [medium] added colors when option is selected in "Widget/Inside post Options".
|
||||
* [minor] uninstall function wasn't activated. Now, uninstalling IMDb LT plugin should remove every single option added by its own.
|
||||
* [minor] updated to highslide js 4.1.9
|
||||
* [minor] English/French corrections, misc improvements, help enhanced
|
||||
|
||||
v2.0
|
||||
* [bug] A bug was preventing for display right pictures cache size (in admin/cache section)
|
||||
* [bug] access level for Pilot website wasn't working anymore (switching to any value hadn't any effect except staying with "NO_ACCESS")
|
||||
* [major] updated to imdbphp-2.0.1 library
|
||||
* [medium] better multilanguage support -> echo(sprintf(__ngettext())) instead of _e()
|
||||
* [medium] as required by moviepilot's team, added website source at the post's end. IMDBLT will display the source(s) where data come from
|
||||
* [minor] added a few strings forgotten into the translated strings
|
||||
* [minor]removed imdb-link-transformer.php.noclass (obsolete file)
|
||||
* a bunch of improvements
|
||||
|
||||
v1.6
|
||||
* [bug] + [medium] User's comment wasn't working anymore. Rewritten, and also added the option to choose how many comments to display.
|
||||
* [bug] movieconnection(), releaseInfo(), born() and died(), color(), sound(), mpaa(), mpaa_hist() fixed
|
||||
* [major] updated to imdbphp-1.9.10 temporary library
|
||||
* [major] it is now possible to get rid of IMDb datas! New option added: IMDb general options -> Advanced -> Moviepilot part. Implementation for this is brand new, so don't expect yet too much anyway! -> PHP < 5 is no more supported.
|
||||
* [major] as a consequence of Moviepilot's new source, it is now possible to completely switch informations to other languages (much more effective than IMDb way). Currently in use German (the biggest source for Moviepilot), French, English, Spanish and Polish.
|
||||
* [major] new way to include movies inside a post, using their imdb movie's id instead of their names. Use tags [imdbltid]movie's imdb id[/imdbltid] instead of [imdblt]movie's name[/imdblt]. Idea comes from Mattias Fröberg.
|
||||
* [major] possibility to use in widget several imdb-movie-widget (or imdb-movie-widget-bymid) is back again
|
||||
* [medium] lumiere_external_call() function could be called again as previously. Added a second parameter ($external) to the function, so calling can be discriminated into the function. Check help for more explanation.
|
||||
* [medium] added a new widget option, to automatically add a widget according to post title. Turn on "Widget/Inside post Options -> Misc ->Auto widget" option. Especially useful to blogs focused only on movies, where all posts are related to cinema.
|
||||
* [medium] cache functionality added to searches -> a website as imdb or pilot will be less called, imdblt storing its results
|
||||
* [medium] css corrections
|
||||
* [medium] added "creator" detail, aiming to show creators' series
|
||||
* [medium] updated to highslide js 1.4.8
|
||||
* [minor] new functions added to functions.php
|
||||
* [minor] added "Filmography as soundtrack" in popup for people (popup-imdb_person.php)
|
||||
* [minor] splited "General options" from wordpress admin into two subsections : "Paths & Layout" and "Advanced". Advanced subsection is meant to include the... advanced options. General option is much more readable, now.
|
||||
* [minor] cache size is now computed and displayed in admin/cache section
|
||||
* [minor] turned imbd-link-transformer into a class (class imdblt{}); modified inc/popup-imdb_movie.php and inc/help.php according the new structure. As a result of this, one has to open the class (ie $imdblt = new imdblt) before calling the function itself (ie $imdblt->lumiere_external_call('Descent', 'external'))
|
||||
* [minor] by default, cover pictures are not displayed as thumbnail, with a size of 100 px. To change this behaviour: "General options -> Imdb cover picture -> Display only thumbnail"
|
||||
* [minor] removed imdb adress us.imdb.com, added www.imdb.fr
|
||||
* [minor] moved and renamed tinymce javascript from tinymce/editor_plugin.js to js/tinymce_editor_plugin.js
|
||||
|
||||
v1.5
|
||||
* [major] updated to imdbphp-1.9.8 library
|
||||
* [major] many broken searches should work again
|
||||
* [minor] added css update explanations into inc/help.php
|
||||
|
||||
v1.2.2
|
||||
* [major] updated to imdbphp-1.2.2 library
|
||||
|
||||
v1.2.1
|
||||
* [medium] It is now possible to keep your customized imdb.css file; just put your imdb.css into your theme folder.
|
||||
* [minor] added new titles to "inc/options-cache.php"
|
||||
* [minor] added spanish (thanks to Andrés Cabrera)
|
||||
|
||||
v1.2
|
||||
* [major] updated to imdbphp-1.2 library
|
||||
* [medium] added new cache option (Show avanced cache details) which permits (or not) to show movie's cache details (and allows to delete cache for every movie). Unactivated by default, it prevents "Fatal error: Maximum execution time of 30 seconds exceeded" errors.
|
||||
* [medium] modified imdb.css (improvement made by Jeremie Boniface, I'm not able to manage these things)
|
||||
* [minor] rating (inside a post & widget) displays now pictures instead of numbers; depending of good (or bad) feeedbacks, value $imdbwidgetratingnopics has to be implemented into plugin (to permit users to get back to old display, with the numbers) -> Jeremie Boniface demand
|
||||
* [minor] more french strings corrected
|
||||
* [minor] brazilian updated
|
||||
* [minor] only 1 user comment could be retrieved! changed plugin options according to this limitation (removed $imdbwidgetcommentsnumber)
|
||||
* [minor] renamed "cache.php" to "inc/options-cache.php"
|
||||
* [minor] removed robots.txt, since v. 1.1.15 workaround is efficient
|
||||
|
||||
v1.1.15
|
||||
* [bug] (somewhat): if highslide popup is active, search engine bots will index several hundred thousands of movies and actors, since they can now follow an href. Except if you do not care at all about space and bandwith, it could down your website quickly. Moved links to highslide popups from href="" to src: '' (inside javascript) and closed the href tag. To prevent any kind of search engine crawling in a place where it should not crawl, added also a robots.txt file (not convinced about its usefulness, though), and a test at the begining of popup-header.php.
|
||||
* [bug] some translated french strings were wrong
|
||||
* [bug] when several directors were found, it was missing space or comma to display -> added comma
|
||||
* [major] updated to imdbphp-1.1.15 library (1/hopefully fixed "invalid stream resource" on some network timeouts, movie: 2/ added method to retrieve movie types (if specified), person: 3/fixed a property missing in initialization, Fixed goofs(), trailers(), and trivia() )
|
||||
* [major] every admin settings section (cache, widget & general) has its own preferences storage (new foreign keys: $imdb_admin_values, $imdb_widget_values,$imdb_cache_values, whereas $imdb_config_values is dead). As a result of this, resetting General options won't interfere with Cache options, and vice versa.
|
||||
* changed the way several css directives related to popup were working (ie, all <a> tags in owner's blog were impacted, instead of only <a> from the popup)
|
||||
* [minor] added compatibility with [link-indication plugin](http://wordpress.org/extend/plugins/link-indication/ "link-indication plugin home") (modified imdb-link-transformer.php add_filter's execution priority to 11)
|
||||
* [minor] mixing "imdb-movie-widget-bymid" and "imdb-movie-widget" keys actually does work! Removing references saying it doesn't.
|
||||
* [minor] cache movie files into cache.php are now alphabetically ordered
|
||||
* [minor] soundtrack & quotes include an internal popup link instead of a link to imdb website
|
||||
* [minor] moved imdb-widget.php to /inc/, and renamed to widget.php
|
||||
* [minor] added trademarks fields into popup (misc tab) & biographical movies (bio tab)
|
||||
* [minor] added plot limit selection (imdblt settings : Widget/Inside post Options / What to display )
|
||||
* [minor] imdb pictures displayed both in widget and inside a post can be "highslided". To achieve this, activate "Display highslide popup" option and turn "Display only thumbnail" to "no" (and put a small size value, as "150" per example).
|
||||
|
||||
v1.1.14.4
|
||||
* [bug] in config-widget.php, a value for imdbwidgettitle (and one other) section was wrong
|
||||
* [bug] a value $test (imdb-movie.inc.php) was wrongly named -> renamed to $genre
|
||||
* [bug] wrong value for "Plugin directory" (config.php) -> modified
|
||||
* [major] added help page in settings: how to ( including movable boxes to keep useful information), changelog, faqs pages
|
||||
* [major] added security constraints (mainly data post check)
|
||||
* [major] added possiblity to arrange disposition of movie data order (available on Widget/Inside post Options)
|
||||
* [major] added many many new movie's details: goofs,comments,quotes,taglines,colors,also known as,composer,soundtrackmovieconnection,officialSites
|
||||
* [major] completely new cache management system; cache has its own page, and can be deleted now from this very options page (and cache for a pelicular movie can be deleted)
|
||||
* [major] new kind of popup, Highslide JS. Much nicer popup, must be activated from "General options / Layout / Popup / Display highslide popup" -> change to yes to see the difference whenever you click a link opening a popup (from inside post or widget)
|
||||
* [medium] added javascript to unactivate fields which shouldn't be available because of logical constraints
|
||||
* [medium] added uninstall page (uninstall.php)
|
||||
* [medium] added many new classes to manage in a more precise way elements in Widget/Inside post. Check imdb.css file.
|
||||
* [minor] added an option to keep cache files forever (useful if one doesn't want to rely on IMDb)
|
||||
* [minor] added direct access to this changelog (in admin settings)
|
||||
* [minor] added direct access to FAQs (regexp from readme)
|
||||
* [minor] added index.html (empty file)
|
||||
* [minor] added icon compatibility with [Admin Drop Down Menu plugin](http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css "Admin Drop Down Menu plugin home") -> added ozh_imdblt_icon() (&filter ad hoc) in imdb-link-transformer.php
|
||||
* [minor] added new admin menu which can be activated via "General options / Advanced / Display plugin in big menu" -> change to yes to see the difference
|
||||
* [minor] changed the way to submit preferences(config.php): now, after saving/resetting preferences, one stay on the very same page, instead going to a new (and click on "back" link). Also reset is working as it has to.
|
||||
* [minor] added standard wordpress picture to plugins (top left admin settings)
|
||||
* [minor] changed pages admin names -> imdblt_options now (can be seen in adress bar)
|
||||
* [minor] removed old screenshots, added new ones
|
||||
* [minor] consequently to many changes and functions added, plugin shouldn't work at 100% with a wordpress release prior to 2.7. However, no crucial function has been added, and even with old releases IMDb link transformer should mostly work as it used to.
|
||||
|
||||
v1.1.14.3
|
||||
* [major] new way to include movies inside a post: use tags (new way) [imdblt]movies name[/imdblt] instead of (old way) <?php lumiere_external_call ?> + Exec-PHP plugin. That means this release doesn't need any more any kind of third party plugin! Compatibility with the old way kept.
|
||||
* [major] changed the way options from admin settings appear; depending of the current selections, some options will appear, some disappear
|
||||
* [minor] added "Remove popup links" option; user can choose to remove popup links from widget -> no more popup
|
||||
* [minor] added imdb photo size width option (only displayed if thumbnail option deactivated)
|
||||
* [minor] added more pics in admin settings menu
|
||||
* [minor] removed call_imdb_movie function from imdb-link-transformer.php (wasn't used)
|
||||
* [minor] added more screenshots
|
||||
* [bugs] corrected many french comments, typos, options bad explained, an so on...
|
||||
|
||||
v1.1.14.2
|
||||
* [minor] added brazilian language
|
||||
|
||||
v1.1.14.1
|
||||
* [minor] added imdb photo size option; user can choose to display the big cover picture instead of the thumbnails'
|
||||
* [bugs] corrected writers section from imdb-movie.inc.php (before that, some <br /> where added before names, which moved forward text). Was only an issue when displaying imdb inside a post (via imd_external_call() and Exec-PHP plugin)
|
||||
* moved - and renamed - imdb_person.php and imdb_movie.php, and moved popup.php to a more suitable place, "inc/" folder.
|
||||
|
||||
v1.1.14
|
||||
* [major] updated to imdbphp-1.1.14 library
|
||||
* [minor] few french lines (not translated) moved to po files
|
||||
* [minor] defined 'IMDBPHP_CONFIG' value in various files, so future update of izzy's libs could be automatically made, instead of changing config lines from imdb_base.class.php
|
||||
* [minor] French comments in php's translated to English
|
||||
|
||||
v1.1.13.5
|
||||
* [major] added the possiblity to directly enter the movie id through "imdb-movie-widget-bymid" post meta data
|
||||
|
||||
v1.1.13
|
||||
* [major] updated to imdbphp-1.1.13 library
|
||||
* [bug] typo in inc/config-widget.php
|
||||
|
||||
v1.0.1
|
||||
* [bug] imdb.css, h1 section was preventing of working original h1
|
||||
|
||||
v1.0
|
||||
* [major] actress filmography working at once (added "actress" in filmography part from imdb_person.php)
|
||||
* [minor] various (very) minor enhancements
|
||||
|
||||
v0.9.5
|
||||
* [major] updated to imdbphp-1.1.1 library
|
||||
* [minor] added field plot as an available option for widget
|
||||
* [minor] update admin css to match wordpress 2.7 css
|
||||
* [bug] rating function working again
|
||||
|
||||
v0.9.3
|
||||
* [major] added multiple queries widget process (several "imdb-movie-widget" field can be added to a post). Caution! Adding several fields will slow down page display.
|
||||
* [minor] removed the so-said pass of "$filmid = $_GET['imdbpostid']" from imdb-widget to imdb-movie.inc.php (seems to be passed because functional call)
|
||||
* [minor] added a function lumiere_external_call () to permit to call the widget from anywhere into templates (widget no more mandatory)
|
||||
* [minor] changed to lumiere_htmlize() function (htmlentities() unactivated, as it doesn't seems anymore needed and prevented the accentuated letters to go through the search process)
|
||||
|
||||
v0.9.2
|
||||
* [minor] style issue (body class wasn't defined to be only a popup class, therefore general blog theme could be affected)
|
||||
* [minor] work on w3c validation (it should be valid, now)
|
||||
|
||||
v0.9.1
|
||||
* [bug] bug giving an error when no meta custom value added to a post
|
||||
|
||||
v0.9
|
||||
* [major] added widget. Using both widget & direct search possibilities, now everybody can display information related to a post directy into widget fields!
|
||||
* [major] most of the functions have been implemented. It still lacks the "actress" class, which means that it doesn't yet display the data related to an actress. Next release will be out when such a class will be finished.
|
||||
* [bug] preventing imdb button (no tinymce) to be displayed
|
||||
* [bug] usual layout&code fixes
|
||||
|
||||
v0.8
|
||||
* [major] updated to imdbphp-1.0.7 class
|
||||
* [minor] get rid of the PEAR option, it isn't useful
|
||||
* [bug] with some [searchs not giving all results for a person](https://projects.izzysoft.de/trac/imdbphp/ticket/46 "IMDbphp website")
|
||||
* [minor] added an option to remove imdb links (when doing a search)
|
||||
* [major] added an option to bypass the search stage for the popup. Activated by default.
|
||||
* [major] changed the way of browsing in popup window ("AKA search" instead of "back", keeping movie's name in $_GET, layout)
|
||||
* [minor] Automatic check for the cache folders (under admin board options)
|
||||
|
||||
v0.7.1
|
||||
* [bugs] relative path & imdb-link-transformer.php with blank spaces resolved
|
||||
|
||||
v0.7
|
||||
* [major] added admin page
|
||||
* [minor] added "wait on load" message when first search (when results are not yet cached, it take some time to get them)
|
||||
|
||||
v0.6.1
|
||||
* [bugs] minors fixes (layout & code)
|
||||
|
||||
v0.6
|
||||
* [major] changed the way the tags are used; < ! --imdb-->nameMovie< ! --/imdb--> instead of < imdb>nameMovie< /imdb>. This means the already tagged fields should be changed to these new tags. As a result of this, IMDb link transformer is only compatible with Wordpress > 2.5!
|
||||
* [major] support for tinymce editor (imdb tags can be automatically inserted by a new button)
|
||||
* [bugs] some minors fixes (layout & code)
|
||||
|
||||
0.5
|
||||
* [major] director page created (filmo, bio & misc)
|
||||
* [major] updated to imdbphp-1.0.6 libraries
|
||||
* [minor] one title, one result
|
||||
* [minor] every url links to an internal page (except the imdb logos)
|
||||
* [major] localisation files added
|
||||
* [minor] one config file
|
||||
* [major] huge layout and stylesheet work
|
||||
* [major] added many functions
|
||||
|
||||
0.3
|
||||
* [major] initial public release of IMDb Link Transformer
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/translation_file/language/imdb.pot
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/translation_file/language/imdb.pot
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2021 jcv
|
||||
# This file is distributed under the same license as the Lumière plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lumière 3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/working-env\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-21T03:05:44-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: working-env\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lumière"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.jcvignoli.com/blog/en/lumiere-movies-wordpress-plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add to every movie title tagged with <!--imdb--> (...) <!--/imdb--> a link to an <a href=\"https://www.imdb.com\"><acronym title=\"internet movie database\">imdb</acronym></a> popup. Can also display data related to movies either in a <a href=\"widgets.php\">widget</a> or inside a post. Perfect for your movie reviews. Cache handling. Have a look at the <a href=\"admin.php?page=imdblt_options\">options page</a>."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "jcv"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.jcvignoli.com/blog"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/mapifylite/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/mapifylite/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "MapifyLite",
|
||||
"version": "4.0.0",
|
||||
"description": "",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.24.1",
|
||||
"babel-loader": "^7.0.0",
|
||||
"babel-preset-env": "^1.4.0",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"bluebird": "^3.5.0",
|
||||
"es6-promise": "^4.1.0",
|
||||
"isomorphic-fetch": "^2.2.1",
|
||||
"leaflet-geosearch": "^2.2.0",
|
||||
"webpack": "^2.4.1"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "webpack -w",
|
||||
"build": "webpack"
|
||||
}
|
||||
}
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/max-access/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/max-access/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [ 1.0.0 ] - 00/00/0000
|
||||
|
||||
* Initial plugin release
|
||||
@@ -0,0 +1,540 @@
|
||||
# Copyright (C) 2021 Media Player Addons for elementor
|
||||
# This file is distributed under the same license as the Media Player Addons for elementor package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Media Player Addons for elementor 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/media-player-addons\n"
|
||||
"POT-Creation-Date: 2021-03-28 14:33:37+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor
|
||||
|
||||
#: media-player-addons.php:129
|
||||
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:130
|
||||
msgid "Media Player Addon"
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:131 media-player-addons.php:154
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
|
||||
|
||||
#: media-player-addons.php:152 media-player-addons.php:176
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:153
|
||||
msgid "unlimited addon"
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:177
|
||||
msgid "venus wp"
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:178
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:149
|
||||
msgid "Media Player For Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:43
|
||||
msgid "Art Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:89
|
||||
msgid "Art Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:97 widgets/b_html5_addon.php:110
|
||||
msgid "Multiple Quality"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:99 widgets/b_html5_addon.php:112
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:100 widgets/b_html5_addon.php:113
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:109 widgets/b_html5_addon.php:122
|
||||
msgid "Source From"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:113 widgets/b_html5_addon.php:126
|
||||
msgid "Media Library"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:114 widgets/b_html5_addon.php:127
|
||||
msgid "Video File Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:126 widgets/b-artplayer.php:170
|
||||
#: widgets/b-artplayer.php:178 widgets/b_html5_addon.php:138
|
||||
#: widgets/b_html5_addon.php:208 widgets/b_html5_addon.php:216
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:145 widgets/b-artplayer.php:196
|
||||
#: widgets/b_html5_addon.php:156 widgets/b_html5_addon.php:233
|
||||
msgid "Video Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:148 widgets/b-artplayer.php:199
|
||||
#: widgets/b-artplayer.php:328 widgets/b_html5_addon.php:159
|
||||
#: widgets/b_html5_addon.php:236 widgets/b_html5_addon.php:326
|
||||
msgid "https://your-link.com"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:166 widgets/b_html5_addon.php:204
|
||||
#: widgets/bplayer-widget-playlist-video.php:132
|
||||
#: widgets/bplayer-widget-video.php:119
|
||||
msgid "Video Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:171 widgets/b_html5_addon.php:209
|
||||
msgid "Put Video Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:210 widgets/b_html5_addon.php:246
|
||||
msgid "Video Size"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:219 widgets/b_html5_addon.php:267
|
||||
msgid "Video List"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:231
|
||||
msgid "Add Video Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:233 widgets/b-artplayer.php:259
|
||||
#: widgets/b_html5_addon.php:173
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:234 widgets/b-artplayer.php:260
|
||||
#: widgets/b_html5_addon.php:174
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:244
|
||||
msgid "Video Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:257
|
||||
msgid "Add Album Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:270
|
||||
msgid "Album Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:287
|
||||
msgid "Art Player Subtitle Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:295 widgets/b_html5_addon.php:293
|
||||
msgid "Subtitle Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:299 widgets/b-artplayer.php:307
|
||||
#: widgets/b_html5_addon.php:297 widgets/b_html5_addon.php:305
|
||||
msgid "Upload Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:300 widgets/b_html5_addon.php:298
|
||||
msgid "Put Subtitle Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:325 widgets/b_html5_addon.php:323
|
||||
msgid "Subtitle Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:340
|
||||
msgid "Player Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:351
|
||||
msgid "Art Player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:359
|
||||
msgid "Player Color"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:371
|
||||
msgid "Art Player Button Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:378 widgets/b-html5-audio.php:175
|
||||
#: widgets/b-vemio-vedio-player.php:132 widgets/b-vemio-vedio-player.php:156
|
||||
#: widgets/b-vemio-vedio-player.php:179 widgets/b-youtube-vedio-player.php:132
|
||||
#: widgets/b-youtube-vedio-player.php:155
|
||||
#: widgets/b-youtube-vedio-player.php:178 widgets/b_html5_addon.php:385
|
||||
#: widgets/b_html5_addon.php:410
|
||||
msgid "This Option Only For Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:41
|
||||
msgid "Html5 Audio Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:96
|
||||
msgid "Audio Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:103
|
||||
msgid "Audio Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:107 widgets/b-html5-audio.php:116
|
||||
msgid "Upload Audio"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:108 widgets/b-html5-audio.php:128
|
||||
msgid "Audio Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:131
|
||||
msgid "https://example.com/music-name.mp3"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:145
|
||||
msgid "Audio Player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:153 widgets/b_html5_addon.php:363
|
||||
msgid "This Section Only For Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:168
|
||||
msgid "Audio Player Control Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:41
|
||||
msgid "Vemio Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:92 widgets/b-youtube-vedio-player.php:96
|
||||
#: widgets/b_html5_addon.php:99
|
||||
msgid "Vedio Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:100 widgets/b-youtube-vedio-player.php:103
|
||||
msgid "Vedio Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:111 widgets/b-youtube-vedio-player.php:112
|
||||
msgid "Vedio link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:114
|
||||
msgid "https://Vimeo Link.com"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:124 widgets/b_html5_addon.php:355
|
||||
msgid "Vedio Player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:148 widgets/b-youtube-vedio-player.php:148
|
||||
#: widgets/b_html5_addon.php:378
|
||||
msgid "Vedio Player Control Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:172 widgets/b_html5_addon.php:402
|
||||
msgid "Vedio Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:41
|
||||
msgid "Youtube Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:115
|
||||
msgid "https://youtubelink.com"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:125
|
||||
msgid "Vedio player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:171
|
||||
msgid "Vedio player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:42
|
||||
msgid "Html5 Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:171
|
||||
msgid "Add Custom Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:184
|
||||
msgid "Custom Poster For Video"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:249
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:250
|
||||
msgid "240"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:251
|
||||
msgid "360"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:252
|
||||
msgid "480"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:253
|
||||
msgid "576"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:254
|
||||
msgid "720"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:255
|
||||
msgid "1080"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:256
|
||||
msgid "1440"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:257
|
||||
msgid "2160"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:258
|
||||
msgid "2880"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:259
|
||||
msgid "4320"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:285
|
||||
msgid "Vedio Player Subtitle Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:335
|
||||
msgid "Subtitle language"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:337
|
||||
msgid "Eg: English, For english subtitle write English"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:344
|
||||
msgid "Subtitle List"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:41
|
||||
msgid "Advanced Audio Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:103
|
||||
msgid "Advanced Audio Player Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:112
|
||||
#: widgets/bplayer-widget-playlist-audio.php:111
|
||||
msgid "Track Options"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:121
|
||||
#: widgets/bplayer-widget-playlist-audio.php:129
|
||||
msgid "Track Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:124
|
||||
#: widgets/bplayer-widget-playlist-audio.php:132
|
||||
msgid "Upload or Paste Your MP3 Music here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:131
|
||||
#: widgets/bplayer-widget-playlist-audio.php:120
|
||||
msgid "Track Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:133
|
||||
#: widgets/bplayer-widget-playlist-audio.php:122
|
||||
#: widgets/bplayer-widget-playlist-video.php:125
|
||||
#: widgets/bplayer-widget-video.php:131
|
||||
msgid "Input Song Title here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:141
|
||||
#: widgets/bplayer-widget-playlist-audio.php:139
|
||||
msgid "Track Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:152
|
||||
#: widgets/bplayer-widget-playlist-audio.php:150
|
||||
#: widgets/bplayer-widget-playlist-video.php:153
|
||||
#: widgets/bplayer-widget-video.php:150
|
||||
msgid "Singer Name"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:154
|
||||
#: widgets/bplayer-widget-playlist-audio.php:152
|
||||
#: widgets/bplayer-widget-playlist-video.php:155
|
||||
#: widgets/bplayer-widget-video.php:152
|
||||
msgid "Input singer name her"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:161
|
||||
#: widgets/bplayer-widget-playlist-audio.php:159
|
||||
msgid "Track Album"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:163
|
||||
#: widgets/bplayer-widget-playlist-audio.php:161
|
||||
#: widgets/bplayer-widget-playlist-video.php:164
|
||||
#: widgets/bplayer-widget-video.php:161
|
||||
msgid "Input Song's Album here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:172
|
||||
#: widgets/bplayer-widget-playlist-audio.php:180
|
||||
#: widgets/bplayer-widget-playlist-video.php:183
|
||||
#: widgets/bplayer-widget-video.php:171
|
||||
msgid "Player Options"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:181
|
||||
#: widgets/bplayer-widget-playlist-audio.php:189
|
||||
msgid "Player Size"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:183
|
||||
#: widgets/bplayer-widget-playlist-audio.php:191
|
||||
msgid "Wide"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:184
|
||||
#: widgets/bplayer-widget-playlist-audio.php:192
|
||||
msgid "Narrow"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:191
|
||||
#: widgets/bplayer-widget-playlist-audio.php:199
|
||||
msgid "Choose Player Size"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:198
|
||||
#: widgets/bplayer-widget-playlist-audio.php:206
|
||||
#: widgets/bplayer-widget-playlist-video.php:192
|
||||
#: widgets/bplayer-widget-video.php:181
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:200
|
||||
#: widgets/bplayer-widget-playlist-audio.php:208
|
||||
#: widgets/bplayer-widget-playlist-video.php:194
|
||||
#: widgets/bplayer-widget-video.php:183
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:201
|
||||
#: widgets/bplayer-widget-playlist-audio.php:209
|
||||
#: widgets/bplayer-widget-playlist-video.php:195
|
||||
#: widgets/bplayer-widget-video.php:184
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:208
|
||||
#: widgets/bplayer-widget-playlist-audio.php:216
|
||||
#: widgets/bplayer-widget-playlist-video.php:202
|
||||
#: widgets/bplayer-widget-video.php:191
|
||||
msgid "Choose Player Mode"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-audio.php:41
|
||||
msgid "Advanced Audio Playlist Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-audio.php:103
|
||||
msgid "Advanced Audio Playlist Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-audio.php:168
|
||||
msgid "Playlist"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:41
|
||||
msgid "Advanced Video Playlist Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:103
|
||||
msgid "Advanced Video Playlist Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:114
|
||||
#: widgets/bplayer-widget-video.php:111
|
||||
msgid "Video Options"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:123
|
||||
#: widgets/bplayer-widget-video.php:129
|
||||
msgid "Video Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:135
|
||||
#: widgets/bplayer-widget-video.php:122
|
||||
msgid "Upload Your Video here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:142
|
||||
#: widgets/bplayer-widget-video.php:139
|
||||
msgid "Video Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:162
|
||||
#: widgets/bplayer-widget-video.php:159
|
||||
msgid "Album Name"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:171
|
||||
msgid "Video Playlist"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-video.php:41
|
||||
msgid "Advanced Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-video.php:103
|
||||
msgid "Advanced Video Player Settings"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Media Player Addons for elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Collection of media players to plaback of various media files such as .mp3, .mp4, .flv, .m3u8, .ogg, YouTube, Vimeo and moe...."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://bPlugins.com"
|
||||
msgstr ""
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/composer_file/package.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "modern-click-to-tweet",
|
||||
"version": "1.0.0",
|
||||
"description": "Adds a beautiful (and customizable) Click to Tweet block to maximize content sharing on Twitter.",
|
||||
"author": "vincentdubroeucq",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"make-pot": "wp i18n make-pot . languages/modern-ctt.pot --exclude=src/*",
|
||||
"make-json": "wp i18n make-json languages/ --no-purge",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^5.2.9",
|
||||
"@wordpress/blocks": "^7.0.5",
|
||||
"@wordpress/i18n": "^3.18.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^13.0.3"
|
||||
}
|
||||
}
|
||||
154
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/translation_file/languages/modern-ctt.pot
vendored
Normal file
154
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/translation_file/languages/modern-ctt.pot
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
# Copyright (C) 2021 Modern Plugins
|
||||
# This file is distributed under the same license as the Modern CTT plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Modern CTT 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/modern-ctt\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-04T10:43:19+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: modern-ctt\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: build/index.js:1
|
||||
msgid "Modern CTT"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a beautiful (and customizable) Click to Tweet block to maximize content sharing on Twitter."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Modern Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://modernplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#: modern-click-to-tweet.php:79
|
||||
msgid "Click to Tweet"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Block settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "URL to share"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "If left empty, defaults to post permalink"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Twitter handle"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Hashtags"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Add in your hastags, just as you would on any tweet."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Call to Action display"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Display link as a button"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Call to Action content"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Icon and text"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Icon only (text will still be visible to screen readers)"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Text only"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Adds a Click To Tweet blockquote."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "tweet"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "click"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "click to tweet"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Code is poetry."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Tweet this !"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Twitter blue"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Minimal"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Plain"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Bordered"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Quote text"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Write text displayed on the site."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Button prompt"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Tweet this"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2021 Roy Orbison
|
||||
# This file is distributed under the same license as the More Mails for Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: More Mails for Contact Form 7 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/more-mails-for-cf7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-12T11:54:57+10:00\n"
|
||||
"PO-Revision-Date: 2021-04-12T11:54:57+10:00\n"
|
||||
"X-Generator: WP-CLI 2.0.1\n"
|
||||
"X-Domain: more-mails-for-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "More Mails for Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add a third, fourth, etc. mail message to any CF7 form."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Roy Orbison"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:20
|
||||
msgid "Contact Form 7 More Mails"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:38
|
||||
msgid "More mails"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:84
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:91
|
||||
msgid "Mail sections per form"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: nth mail section
|
||||
#: more-mails-for-cf7.php:127
|
||||
msgid "Mail (%d)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: nth mail section
|
||||
#: more-mails-for-cf7.php:129
|
||||
msgid "Use Mail (%d)"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,785 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB CF7 Integration with ZOHO CRM 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-05-10 18:35+0530\n"
|
||||
"PO-Revision-Date: 2021-05-10 18:27+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: en_US\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:124
|
||||
msgid "Back to feeds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:128
|
||||
msgid "Settings not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:129
|
||||
msgid "Internal server error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:187
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:30
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:33
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:24
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:27
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:22
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:25
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:25
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:28
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:35
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:38
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/header.php:23
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/header.php:26
|
||||
msgid "Zoho"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:261
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:279
|
||||
msgid "Inavlid email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:294
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:367
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:197
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:369
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:199
|
||||
msgid "Standard Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:370
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:380
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:200
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:210
|
||||
msgid "Custom Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:375
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:205
|
||||
msgid "Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:426
|
||||
msgid "Matches exactly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:427
|
||||
msgid "Does not match exactly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:428
|
||||
msgid "Contains (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:429
|
||||
msgid "Does not contain (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:430
|
||||
msgid "Exist in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:431
|
||||
msgid "Does not Exists in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:432
|
||||
msgid "Starts with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:433
|
||||
msgid "Does not start with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:434
|
||||
msgid "Ends with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:435
|
||||
msgid "Does not end with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:436
|
||||
msgid "Less than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:437
|
||||
msgid "Greater than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:438
|
||||
msgid "Less than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:439
|
||||
msgid "Greater than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:440
|
||||
msgid "Equals (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:441
|
||||
msgid "Is empty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:442
|
||||
msgid "Is not empty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:466
|
||||
msgid "Select Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:472
|
||||
msgid "Select Condition"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:477
|
||||
msgid "Enter value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:41
|
||||
msgid "Connection Authorized"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:45
|
||||
msgid "Access token has been expired."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:54
|
||||
msgid "Reauthorize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:55
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:63
|
||||
msgid "Synced Contact Forms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:70
|
||||
msgid "Total number of Contact Form 7 submission data which are synced over Zoho CRM."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:71
|
||||
msgid "View log"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:84
|
||||
msgid "Need any help ? Check our documentation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:87
|
||||
#: mwb-cf7-integration-with-zoho.php:146
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:92
|
||||
msgid "Facing any issue ? Open a support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:95
|
||||
#: mwb-cf7-integration-with-zoho.php:147
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:100
|
||||
msgid "Need personalized solution, contact us !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:103
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:184
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:112
|
||||
msgid "If you don't have a Zoho account, you can "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:112
|
||||
msgid "sign up here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:115
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:123
|
||||
msgid "Zoho Domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:128
|
||||
msgid "Select Zoho domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:134
|
||||
msgid "India (.in)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:135
|
||||
msgid "China (.com.cn)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:136
|
||||
msgid "Australia (.com.au)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:137
|
||||
msgid "Europe (.eu)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:138
|
||||
msgid "USA & Others (.com)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:147
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:152
|
||||
msgid "Enter app id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:170
|
||||
msgid "Secret key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:175
|
||||
msgid "Enter secret key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:194
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:199
|
||||
msgid "Enter redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:211
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:218
|
||||
msgid "Create new client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:218
|
||||
msgid " here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:219
|
||||
msgid "Choose client type as \"Server based\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:220
|
||||
msgid "Enter client name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:220
|
||||
msgid "For eg. Demo app or My app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:221
|
||||
msgid "Enter "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:221
|
||||
msgid "as redirect URI"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:222
|
||||
msgid "Save app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:232
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:30
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:53
|
||||
msgid "Add New Feed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:50
|
||||
msgid "Form : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:51
|
||||
msgid "Object : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:52
|
||||
msgid "Primary key : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:31
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:40
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:46
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:23
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:34
|
||||
msgid "Select Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:47
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:35
|
||||
msgid "Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:63
|
||||
msgid "Object"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:72
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:81
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:22
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:33
|
||||
msgid "Select Object"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:90
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:42
|
||||
msgid "Refresh Objects"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:91
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:43
|
||||
msgid "Refresh Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:35
|
||||
msgid "Clear Log"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:40
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:54
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:55
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:49
|
||||
msgid "Feed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:56
|
||||
msgid "Feed ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:57
|
||||
msgid "Zoho Object"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:58
|
||||
msgid "Zoho ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:59
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:60
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:61
|
||||
msgid "Request"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:62
|
||||
msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:69
|
||||
msgid "Please enable the logs from "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:69
|
||||
msgid "Settings tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:36
|
||||
msgid "What is MWB CF7 Integration with ZOHO CRM?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:37
|
||||
msgid "MWB CF7 Integration with ZOHO CRM plugin integrates your ZOHO CRM account with CF-7, sending all data over ZOHO CRM as per its available modules."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:40
|
||||
msgid "What does MWB CF7 Integration with ZOHO CRM do?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:42
|
||||
msgid "Smooth CF7 Integration With Your ZOHO Account."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:43
|
||||
msgid "Easy CF7 Fields Association With Any Zoho Module Fields."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:44
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:78
|
||||
msgid "Filters CF7 submissions According To User Input."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:45
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:89
|
||||
msgid "Detailed Log Of CF7 Submission Sent To Zoho."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:46
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:100
|
||||
msgid "Primary Key To Update Existing Entry Over ZOHO CRM."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:50
|
||||
msgid "Salient Features of MWB CF7 Integration with ZOHO CRM Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:56
|
||||
msgid "Smooth CF7 Integration With Your ZOHO Account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:58
|
||||
msgid "MWB CF7 Integration with ZOHO CRM offers a smooth integration of both. The admin can enter their Zoho API credentials to integrate Contact Form 7 with their Zoho accounts."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:67
|
||||
msgid "Easy CF7 Fields Association With Any Zoho Module Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:69
|
||||
msgid "Any Contact form 7 field can be linked to any Zoho module field. Any module field like Contacts, Accounts, Leads, Quotes, Deals, Sales and Orders, integrates perfectly with this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:80
|
||||
msgid "The admin can filter the Contact form 7 submissions based on user input using AND/OR logic. This logic will filter CF-7 forms submissions and send it ZOHO CRM depending on user inputs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:91
|
||||
msgid "MWB ZOHO Integration plugin will provide a detailed log of each Contact form 7 sent to Zoho CRM as per the response from the ZOHO CRM. There is logging of all the API interaction with ZOHO CRM for better error handling."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:102
|
||||
msgid "Suppose an entry made by the user already exists over Zoho CRM. In that case, the admin can update it with the help of the “Primary key” provided."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:111
|
||||
msgid "Error eMail Notification For Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:113
|
||||
msgid "E-mail notifications are sent to the admin if any input error occurs in the process of data sending entries over to Zoho CRM. This way, the admin gets notified of any slight error in real-time."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:69
|
||||
msgid "Enable logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:74
|
||||
msgid "Enable logging of all the forms data sent over zoho"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:87
|
||||
msgid "Plugin Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:92
|
||||
msgid "Enable plugin data delete at uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:105
|
||||
msgid "Email notification"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:110
|
||||
msgid "Enable email notification on errors"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:127
|
||||
msgid "Enter email address. An email will be sent if any sort of error occurs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:141
|
||||
msgid "Delete logs after N days"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:146
|
||||
msgid "This will delete the logs data after N no. of days"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:161
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:32
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:42
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:34
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:35
|
||||
msgid "We love making new friends! Subscribe below and we promise to keep you up-to-date with our latest new plugins, updates, awesome deals and a few special offers."
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:45
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:30
|
||||
msgid "Something went wrong!!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:50
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:93
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:86
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:113
|
||||
msgid "Something went wrong! Check your credentials and authorize again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:48
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:65
|
||||
msgid "Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:50
|
||||
msgid "Parent Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:51
|
||||
msgid "All Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:52
|
||||
msgid "View Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:54
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:55
|
||||
msgid "Edit Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:56
|
||||
msgid "Update Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:57
|
||||
msgid "Search Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:58
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:59
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:66
|
||||
msgid "Feeds for crm"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:91
|
||||
msgid "Feed details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:92
|
||||
msgid "Conditional Statements"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:337
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:354
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:389
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:399
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:907
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:66
|
||||
msgid "MWB CF7 Integration with ZOHO CRM"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:176
|
||||
msgid "Help desk"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:178
|
||||
msgid "go pro"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:179
|
||||
msgid "see docs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:180
|
||||
msgid "see tutorial"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:183
|
||||
msgid "Connect with us in one click"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:230
|
||||
msgid "Zoho Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:231
|
||||
msgid "Zoho Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:232
|
||||
msgid "Zoho Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:233
|
||||
#: mwb-cf7-integration-with-zoho.php:124
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:234
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:145
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid "Contatc Form 7"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid " is not activated, Please activate Contact Form 7 first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid " Contact Form 7 - Zoho Integration"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid "."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/add-new-field.php:21
|
||||
msgid "Add New Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/add-new-field.php:27
|
||||
msgid "Add Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:23
|
||||
msgid "Condition Filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:26
|
||||
msgid "If the condition filters are set, only those submissions will be exported which fullfills the condition."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:49
|
||||
msgid "Add \"AND\" filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:57
|
||||
msgid "Add \"OR\" filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:21
|
||||
msgid "Primary Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:24
|
||||
msgid "Select a unique identifier, if you want to update a pre-existing record"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:31
|
||||
msgid "Select Primary Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:35
|
||||
msgid "Please select a field which should be used as \"primary key\" to update an existing record."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:40
|
||||
msgid "Make sure \"Do not allow duplicate values\" is checked in property settings, in order to prevent duplicate record creation."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-fields.php:21
|
||||
msgid "Map Fields"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-fields.php:24
|
||||
msgid "Map your contact form fields with appropriate Zoho fields."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:26
|
||||
msgid "Select the form you would like to integrate with zoho"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:25
|
||||
msgid "Select the zoho object to create on form submission"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-zoho-public.php:574
|
||||
msgid "Error While Posting form data over Zoho"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-zoho-public.php:587
|
||||
msgid "Go to logs"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-zoho-public.php:599
|
||||
msgid "Zoho error"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,576 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB Point of Sale (POS) for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-29 19:34+0530\n"
|
||||
"PO-Revision-Date: 2021-04-29 19:34+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:153
|
||||
msgid "POS Orders"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:154
|
||||
msgid "Show deleted orders"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:241
|
||||
msgid "POS for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:260
|
||||
msgid "Login Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:281
|
||||
msgid "View POS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:285
|
||||
msgid "View POS Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:327
|
||||
msgid "POS Header Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:329
|
||||
msgid "Add text for your pos header on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:333
|
||||
msgid "Header text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:336
|
||||
msgid "POS Header Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:338
|
||||
msgid "Choose a color for your pos header on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:342
|
||||
msgid "Header color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:345
|
||||
msgid "POS Header Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:347
|
||||
msgid "Choose a logo for your pos header on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:351
|
||||
msgid "Header logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:355
|
||||
msgid "POS Footer Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:357
|
||||
msgid "Choose the text color for your pos footer on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:361
|
||||
msgid "Footer Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:364
|
||||
msgid "POS Footer Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:366
|
||||
msgid "Choose a background color for your pos footer on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:370
|
||||
msgid "Footer Background color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:375
|
||||
#: admin/class-pos-for-woocommerce-admin.php:459
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:393
|
||||
msgid "POS Login Panel Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:395
|
||||
msgid "Add title for your pos login page on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:399
|
||||
msgid "Login Page Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:402
|
||||
msgid "POS Login Panel Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:404
|
||||
msgid "Add subheading for your pos login page on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:408
|
||||
msgid "Login Page Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:411
|
||||
msgid "POS Login Panel Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:413
|
||||
msgid "Add description for your pos login page on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:417
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:420
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:422
|
||||
msgid "Choose color for your pos login page background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:426
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:429
|
||||
#: admin/class-pos-for-woocommerce-admin.php:435
|
||||
msgid "Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:431
|
||||
msgid "Choose the color to change pos login page button color."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:438
|
||||
#: admin/class-pos-for-woocommerce-admin.php:444
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:440
|
||||
msgid "Choose the color to change pos login page button text color."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:447
|
||||
msgid "POS Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:449
|
||||
msgid "Choose a logo for the pos login page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:453
|
||||
msgid "Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:477
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:478
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:479
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:483
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:484
|
||||
msgid "Please submit a ticket, our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:485
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:506
|
||||
msgid "Generate Product Barcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:523
|
||||
msgid "Product QR"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:563
|
||||
msgid "wrong attempt"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:650
|
||||
#: admin/class-pos-for-woocommerce-admin.php:694
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:722
|
||||
msgid "Welcome: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-pos-orders.php:198
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-admin-dashboard.php:27
|
||||
#: mwb-point-of-sale-woocommerce.php:184
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-admin-dashboard.php:34
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-general.php:32
|
||||
msgid "Barcode Generator Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:35
|
||||
msgid "What is MWB Point of Sale (POS) for WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:36
|
||||
msgid ""
|
||||
"MWB Point of Sale (POS) for WooCommerce is the missing link that can act as "
|
||||
"a tie-up knot for your online and physical stores. This plugin can help you "
|
||||
"easily distribute the workload, appoint multiple outlet/counter managers, "
|
||||
"etc. Therefore, offering complete plugin control over your store sales and "
|
||||
"customer orders, both online and offline."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:39
|
||||
msgid "As a store owner, you can- "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:42
|
||||
msgid ""
|
||||
"Swiftly strategize your store’s inventory and plan tax imposition rates with "
|
||||
"ease"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:43
|
||||
msgid ""
|
||||
"Effortlessly build an online register for your store transaction without "
|
||||
"even purchasing physical point-of-sale tools and services."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:44
|
||||
msgid "Manage orders and offer discounts/coupons at checkout."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:45
|
||||
msgid ""
|
||||
"Easily generate barcodes for every product, even assign a product-Id, and "
|
||||
"SKU."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:46
|
||||
msgid ""
|
||||
"You can easily customize your POS login page i.e. can edit tagline, can add "
|
||||
"a proper description, can change background color, etc"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:51
|
||||
msgid "The free plugin benefits include-"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:58
|
||||
msgid "Product Search and Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:60
|
||||
msgid ""
|
||||
"You can easily make use of the plugin’s outstanding category-based search to "
|
||||
"perform your billing effortlessly. You can also opt for different products "
|
||||
"as per your ease using the category filter, that filter can provide you the "
|
||||
"list of almost all product categories available at your store online."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:69
|
||||
msgid "User-Friendly Single Page Web-App on React JS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:72
|
||||
msgid ""
|
||||
"The Woocommerce POS system itself is built with React JS and is quite user-"
|
||||
"friendly, it offers automatic background refreshing single page web app. You "
|
||||
"need not switch between multiple tabs and refresh your page from time to "
|
||||
"time."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:81
|
||||
msgid "Effortless Inventory Management"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:83
|
||||
msgid ""
|
||||
"Offers efficient inventory management that is seamless and does not require "
|
||||
"you to manually update order data. With a Point of Sale (POS) plugin, you "
|
||||
"can track the sales of a product, and you can also know when its time to "
|
||||
"upgrade your stock."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:92
|
||||
msgid "Seamless Order Synchronization"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:95
|
||||
msgid ""
|
||||
"This plugin offers easy synchronization of all your orders in one place. You "
|
||||
"can access all your online as well offline orders and can easily schedule "
|
||||
"them for further shipping processings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:105
|
||||
msgid "Outstanding Desktop and Email Order Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:107
|
||||
msgid ""
|
||||
"You can easily set the desktop as well as email notifications for orders/"
|
||||
"bills generated using the POS system."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:116
|
||||
msgid "Seller/Manager Profile Updation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:118
|
||||
msgid ""
|
||||
"This plugin offers easy customization of all user profiles for admin "
|
||||
"managers. Admin managers can assign outlets as well products to store/outlet "
|
||||
"managers and assign user roles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-activator.php:43
|
||||
msgid "Point of Sale"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:301
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:320
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:326
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:357
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:361
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:369
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:374
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:489
|
||||
#, php-format
|
||||
msgid " Let us know why you are deactivating %s so we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:493
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:737
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:366
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:370
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:376
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:401
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:461
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:470
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:473
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:476
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:479
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:482
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:485
|
||||
#: includes/class-pos-for-woocommerce.php:488
|
||||
#: includes/class-pos-for-woocommerce.php:491
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:485
|
||||
#: includes/class-pos-for-woocommerce.php:488
|
||||
#: includes/class-pos-for-woocommerce.php:491
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:494
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:497
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:500
|
||||
#: includes/class-pos-for-woocommerce.php:506
|
||||
#: includes/class-pos-for-woocommerce.php:509
|
||||
#: includes/class-pos-for-woocommerce.php:537
|
||||
#: includes/class-pos-for-woocommerce.php:540
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:503
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:521
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:524
|
||||
#: includes/class-pos-for-woocommerce.php:533
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:543
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:802
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:90 mwb-point-of-sale-woocommerce.php:96
|
||||
msgid "POS for Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:164
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:182
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:217
|
||||
msgid ""
|
||||
"WooCommerce is not activated, Please activate WooCommerce first to activate "
|
||||
"POS For WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-pos-for-woocommerce-public.php:113
|
||||
#: public/class-pos-for-woocommerce-public.php:133
|
||||
#: public/class-pos-for-woocommerce-public.php:149
|
||||
#: public/class-pos-for-woocommerce-public.php:182
|
||||
#: public/class-pos-for-woocommerce-public.php:199
|
||||
#: public/class-pos-for-woocommerce-public.php:276
|
||||
#: public/class-pos-for-woocommerce-public.php:310
|
||||
#: public/class-pos-for-woocommerce-public.php:359
|
||||
msgid "Try after sometime !"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-pos-for-woocommerce-public.php:426
|
||||
#: public/class-pos-for-woocommerce-public.php:608
|
||||
#: public/class-pos-for-woocommerce-public.php:639
|
||||
#: public/class-pos-for-woocommerce-public.php:675
|
||||
msgid "Try again !"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,541 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mwb-product-filter-for-woocommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-10 11:37+0530\n"
|
||||
"PO-Revision-Date: 2021-04-10 11:37+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ../mwb-product-filter-for-woocommerce\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:182
|
||||
#: mwb-product-filter-for-woocommerce.php:96
|
||||
#: mwb-product-filter-for-woocommerce.php:102
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid "MWB Product Filter for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:224
|
||||
msgid "Enable Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:226
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:231
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:232
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:236
|
||||
#: admin/partials/mwb-pffw-overview.php:106
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:238
|
||||
msgid "Click to copy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:243
|
||||
msgid "Shortcode for Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:248
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:358
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:265
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:266
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:267
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:271
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:272
|
||||
msgid "Please submit a ticket , our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:273
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:314
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:332
|
||||
msgid "Filter Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:337
|
||||
msgid "Filter Classes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:342
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:364
|
||||
msgid "Default Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:387
|
||||
msgid "Product Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:389
|
||||
msgid ""
|
||||
"Enter here the CSS class or id for the product container (Default: .products)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:393
|
||||
msgid "Product Container Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:396
|
||||
msgid "Shop Pagination Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:398
|
||||
msgid ""
|
||||
"Enter here the CSS class or id for the shop pagination container (Default: "
|
||||
"nav.woocommerce-pagination)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:402
|
||||
msgid "Pagination Container Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:405
|
||||
msgid "Result Count Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:407
|
||||
msgid ""
|
||||
"Enter here the CSS class or id for the results count container (Default: ."
|
||||
"woocommerce-result-count)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:411
|
||||
msgid "Result Count Container Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:414
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:420
|
||||
msgid "Scroll up to top anchor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:416
|
||||
msgid ""
|
||||
"Enter here the HTML tag for the scroll up to to top feature (Default: .yit-"
|
||||
"wcan-container)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:448
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:455
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:450
|
||||
msgid "Title for the filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:458
|
||||
#: admin/partials/filter-setting.php:24
|
||||
msgid "Attribute"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:460
|
||||
msgid "Existing Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:465
|
||||
msgid "No Attribute Found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:468
|
||||
msgid "Type of filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:470
|
||||
msgid "Use this for filter type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:475
|
||||
msgid "Select Demo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:477
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:478
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:479
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:480
|
||||
msgid "Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:481
|
||||
msgid "Color (In Circle Shape)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:482
|
||||
msgid "Color (In Rectangle Shape)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:486
|
||||
msgid "Query type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:488
|
||||
msgid "Use this for query type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:494
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:495
|
||||
msgid "AND"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:501
|
||||
msgid "Save Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-classes.php:17
|
||||
msgid "Settings Saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:21
|
||||
msgid "Filter Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:22
|
||||
msgid "Filter Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:23
|
||||
msgid "Query Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:25
|
||||
msgid "Operation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:69
|
||||
msgid "Add Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:24
|
||||
msgid "What is MWB Product Filter for WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:28
|
||||
msgid ""
|
||||
"MWB Product Filter for WooCommerce is a custom filter plugin that allows you "
|
||||
"to enable filters in your WooCommerce store. Your store visitor can easily "
|
||||
"find the product they need using these filters. You can also place these "
|
||||
"product filters as convenient using the provided shortcodes. The benefit you "
|
||||
"will get along with this plugin includes letting you choose the design and "
|
||||
"layout of the filter for your frontend. The free product filter plugin uses "
|
||||
"your product (or service) attributes to let you apply the filters."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:33
|
||||
msgid "With our MWB Product Filter for WooCommerce plugin you can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:35
|
||||
msgid "Add custom filters using product attributes."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:36
|
||||
msgid "Add a custom loading icon."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:37
|
||||
msgid "Add shortcodes for placement of filters."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:38
|
||||
msgid "Add appealing filter representations such as lists, checkbox, etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:48
|
||||
msgid "Filter Widget for 5 Layouts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:52
|
||||
msgid ""
|
||||
"The MWB Product Filter for WooCommerce lets you add filters in the form of "
|
||||
"Lists, Labels, Colors (in square shape), dropdown, checkbox/ image. "
|
||||
"Therefore, you can add easy-to-use filters for your customers in the most "
|
||||
"appealing formats."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:66
|
||||
msgid "Reset Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:67
|
||||
msgid ""
|
||||
"The reset button lets your customer uncheck all the selected filters with "
|
||||
"just one click. Thus, this button increases the utility of your WooCommerce "
|
||||
"filters."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:77
|
||||
msgid "Toggle Option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:78
|
||||
msgid ""
|
||||
"We provide toggle functionality to switch on the filters. This will improve "
|
||||
"the look and feel of your WooCommerce store besides making browsing easier."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:88
|
||||
msgid "Custom Loader"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:92
|
||||
msgid ""
|
||||
"The plugin lets you use the icon of your choice on the loading screen. This "
|
||||
"becomes significant when you have a lot of products in your store and the "
|
||||
"waiting time is relatively more."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:110
|
||||
msgid ""
|
||||
"Using the shortcodes that we provide in the plugin, you can ensure the "
|
||||
"placement of the product filters and the reset button as per your "
|
||||
"convenience."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-product-filter-for-woocommerce-admin-dashboard.php:27
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-product-filter-for-woocommerce-admin-dashboard.php:28
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:26
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-general.php:17
|
||||
msgid "Shortcode Copied !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:36
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:37
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:62
|
||||
msgid "Sysytem Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:63
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:299
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:318
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:324
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:355
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:359
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:367
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:372
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:486
|
||||
msgid ""
|
||||
"Let us know why you are deactivating MWB Product Filter for WooCommerce so "
|
||||
"we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:490
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:766
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:301
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:326
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:384
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:393
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:396
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:399
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:402
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:405
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:408
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:411
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:414
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:408
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:411
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:414
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:417
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:420
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:423
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:429
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:432
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:460
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:463
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:426
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:444
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:447
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:456
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:466
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:192
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid " is not activated, Please activate WooCommerce first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid "."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-product-filter-for-woocommerce-public-display.php:18
|
||||
msgid "Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-product-filter-for-woocommerce-public-display.php:29
|
||||
msgid "Reset Filters"
|
||||
msgstr ""
|
||||
109
spec/fixtures/dynamic_finders/plugin_version/my-github/translation_file/languages/my-github.pot
vendored
Normal file
109
spec/fixtures/dynamic_finders/plugin_version/my-github/translation_file/languages/my-github.pot
vendored
Normal file
@@ -0,0 +1,109 @@
|
||||
# Copyright (C) 2021 Ratul Hasan
|
||||
# This file is distributed under the same license as the My Github plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: My Github 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/my-github\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-21T22:55:05+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: my-github\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/templates/my_github_settings.php:14
|
||||
msgid "My Github"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/RatulHasan/my-github"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple and nice WordPress plugin that can track your github's profile."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ratul Hasan"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ratuljh.wordpress.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menu.php:37
|
||||
#: includes/Admin/Menu.php:38
|
||||
msgid "My GitHub"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:60
|
||||
msgid "GitHub Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:66
|
||||
msgid "View Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:85
|
||||
msgid "GitHub Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:98
|
||||
msgid "Personal Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:111
|
||||
msgid "Show Followers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:125
|
||||
msgid "Show Following"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:139
|
||||
msgid "Show Company"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:153
|
||||
msgid "Show Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:167
|
||||
msgid "Show Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:181
|
||||
msgid "Show Blog"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:195
|
||||
msgid "Show Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:209
|
||||
msgid "Show Public Repos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:223
|
||||
msgid "Show Repos Language"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:246
|
||||
msgid "Don't have any Personal Access Token?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:246
|
||||
msgid "Create one?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/Shortcode.php:51
|
||||
msgid "GitHub Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/templates/my_github_profile.php:114
|
||||
msgid "Security check failed!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,58 @@
|
||||
# Copyright (C) 2021 Seyyed Sajjad Kashizadeh
|
||||
# This file is distributed under the same license as the Navarak Code Highlighter plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Navarak Code Highlighter 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/navarak-code-"
|
||||
"highlighter\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-24T11:20:16+00:00\n"
|
||||
"PO-Revision-Date: 2021-05-24 15:56+0430\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Domain: navarak-code-highlighter\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
|
||||
"Language: fa_IR\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Navarak Code Highlighter"
|
||||
msgstr "برجسته کننده کد نوارک"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://navarak.ir/ساخت-افزونه-نمایش-کد-در-وردپرس-از-مبتد/"
|
||||
msgstr "https://navarak.ir/ساخت-افزونه-نمایش-کد-در-وردپرس-از-مبتد/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"This plugin is developed by NAVARAK team from 0 to learn users how to insert "
|
||||
"codes inside their posts"
|
||||
msgstr ""
|
||||
"این افزونه توسط تیم NAVARAK از 0 برای یادگیری کاربران جهت توسعه پلاگین درج "
|
||||
"کد در داخل های نوشته های وردپرس توسعه یافته است"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Seyyed Sajjad Kashizadeh"
|
||||
msgstr "سید سجاد کاشی زاده"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://kashizadeh.ir/"
|
||||
msgstr "http://kashizadeh.ir/"
|
||||
|
||||
#: admin/class-navarak-code-highlighter-admin.php:113
|
||||
msgid "Code Highlighter"
|
||||
msgstr "برجسته کننده کد"
|
||||
|
||||
#: admin/class-navarak-code-highlighter-admin.php:120
|
||||
msgid "Choose Style"
|
||||
msgstr "انتخاب استایل"
|
||||
|
||||
#: public/partials/navarak-code-highlighter-public-display.php:19
|
||||
msgid "Example"
|
||||
msgstr "مثال"
|
||||
|
||||
#: public/partials/navarak-code-highlighter-public-display.php:22
|
||||
msgid "Copy"
|
||||
msgstr "Copy"
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "notify-biz/notify-for-woocommerce",
|
||||
"version": "1.0.0",
|
||||
"type": "project",
|
||||
"description": "Wordpress plugin for WooCommerce notifications."
|
||||
}
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/ntashka-addons/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/ntashka-addons/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "ntshka-addons",
|
||||
"version": "1.1.0",
|
||||
"description": "A custom elementor widget plugin",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "PolkaDox",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.1.0",
|
||||
"grunt-contrib-clean": "^2.0.0",
|
||||
"grunt-contrib-compress": "^1.6.0",
|
||||
"grunt-contrib-concat": "^1.0.1",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-cssmin": "^3.0.0",
|
||||
"grunt-contrib-uglify": "^4.0.1",
|
||||
"grunt-watcher": "^1.0.0",
|
||||
"grunt-wp-i18n": "^1.0.3"
|
||||
}
|
||||
}
|
||||
490
spec/fixtures/dynamic_finders/plugin_version/one-user-avatar/translation_file/languages/nl_NL.po
vendored
Normal file
490
spec/fixtures/dynamic_finders/plugin_version/one-user-avatar/translation_file/languages/nl_NL.po
vendored
Normal file
@@ -0,0 +1,490 @@
|
||||
# Copyright (C) 2021 One Designs
|
||||
# This file is distributed under the same license as the One User Avatar plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: One User Avatar 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/one-user-avatar\n"
|
||||
"POT-Creation-Date: 2021-05-22T04:16:42+00:00\n"
|
||||
"PO-Revision-Date: 2021-05-23 07:00+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.3\n"
|
||||
"X-Domain: one-user-avatar\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/class-wp-user-avatar-admin.php:230
|
||||
#: includes/class-wp-user-avatar-admin.php:429
|
||||
#: includes/class-wp-user-avatar-widget.php:32
|
||||
#: includes/wpua-options-page.php:55 includes/wpua-tinymce-window.php:31
|
||||
msgid "One User Avatar"
|
||||
msgstr "One User Avatar"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://onedesigns.com/plugins/one-user-avatar/"
|
||||
msgstr "https://onedesigns.com/plugins/one-user-avatar/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Use any image from your WordPress Media Library as a custom user avatar. Add "
|
||||
"your own Default Avatar. Fork of WP User Avatar v2.2.16."
|
||||
msgstr ""
|
||||
"Gebruik een afbeelding uit je WordPress mediabibliotheek als een aangepaste "
|
||||
"gebruikersavatar. Voeg je eigen standaardavatar toe. Gebaseerd op of WP User "
|
||||
"Avatar v2.2.16."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "One Designs"
|
||||
msgstr "One Designs"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://onedesigns.com/"
|
||||
msgstr "https://onedesigns.com/"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:173
|
||||
msgid "You are not allowed to delete this post."
|
||||
msgstr "Je hebt geen toestemming om dit bericht te verwijderen."
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:177
|
||||
msgid "Error in deleting."
|
||||
msgstr "Fout tijdens het verwijderen."
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:231
|
||||
#: includes/class-wp-user-avatar-admin.php:289 includes/wpua-media-page.php:59
|
||||
msgid "Avatars"
|
||||
msgstr "Avatars"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:240
|
||||
#: includes/class-wp-user-avatar-admin.php:241
|
||||
#: includes/class-wp-user-avatar-admin.php:465
|
||||
#: includes/wpua-options-page.php:93
|
||||
msgid "Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:249
|
||||
#: includes/class-wp-user-avatar-admin.php:250
|
||||
msgid "Library"
|
||||
msgstr "Bibliotheek"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:375
|
||||
msgid "Mystery Man"
|
||||
msgstr "Mysterieuze Man"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:376
|
||||
msgid "Blank"
|
||||
msgstr "Leeg"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:377
|
||||
msgid "Gravatar Logo"
|
||||
msgstr "Gravatar Logo"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:378
|
||||
msgid "Identicon (Generated)"
|
||||
msgstr "Identicon (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:379
|
||||
msgid "Wavatar (Generated)"
|
||||
msgstr "Wavatar (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:380
|
||||
msgid "MonsterID (Generated)"
|
||||
msgstr "MonsterID (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:381
|
||||
msgid "Retro (Generated)"
|
||||
msgstr "Retro (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:430
|
||||
#: includes/class-wp-user-avatar.php:231
|
||||
msgid "Choose Image"
|
||||
msgstr "Kies foto"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:431
|
||||
msgid "Remove"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:431
|
||||
#: includes/class-wp-user-avatar.php:292
|
||||
msgid "Undo"
|
||||
msgstr "Ongedaan maken"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:484
|
||||
msgid "Support Forums"
|
||||
msgstr "Helpforums"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:498
|
||||
#: includes/class-wp-user-avatar-admin.php:559 includes/wpua-functions.php:93
|
||||
#: includes/wpua-functions.php:106 includes/wpua-functions.php:114
|
||||
#: includes/wpua-functions.php:186 includes/wpua-tinymce-window.php:94
|
||||
msgid "Profile Picture"
|
||||
msgstr "Profielfoto"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:563
|
||||
#: includes/wpua-options-page.php:300 includes/wpua-options-page.php:306
|
||||
msgid "Default Avatar"
|
||||
msgstr "Standaard Avatar"
|
||||
|
||||
#: includes/class-wp-user-avatar-functions.php:515
|
||||
#: includes/class-wp-user-avatar-functions.php:719
|
||||
msgid "Avatar"
|
||||
msgstr "Avatar"
|
||||
|
||||
#. translators: uploaded files
|
||||
#: includes/class-wp-user-avatar-list-table.php:172
|
||||
msgctxt "uploaded files"
|
||||
msgid "All %s"
|
||||
msgid_plural "All %s"
|
||||
msgstr[0] "Alle %s"
|
||||
msgstr[1] "Alle %s"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:192
|
||||
#: includes/class-wp-user-avatar-list-table.php:549
|
||||
msgid "Delete Permanently"
|
||||
msgstr "Permanent verwijderen"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:222
|
||||
msgid "No media attachments found."
|
||||
msgstr "Geen mediabijlagen gevonden."
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:235
|
||||
msgctxt "column name"
|
||||
msgid "File"
|
||||
msgstr "Bestand"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:236
|
||||
msgid "Author"
|
||||
msgstr "Auteur"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:237
|
||||
msgctxt "column name"
|
||||
msgid "Uploaded to"
|
||||
msgstr "Geüpload naar"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:238
|
||||
msgctxt "column name"
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. translators: post title
|
||||
#: includes/class-wp-user-avatar-list-table.php:323
|
||||
msgid "Select %s"
|
||||
msgstr "Selecteer %s"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:414
|
||||
msgid "Unpublished"
|
||||
msgstr "Ongepubliceerd"
|
||||
|
||||
#. translators: time from now
|
||||
#: includes/class-wp-user-avatar-list-table.php:422
|
||||
msgctxt "time from now"
|
||||
msgid "%s from now"
|
||||
msgstr "%s vanaf nu"
|
||||
|
||||
#. translators: time ago
|
||||
#: includes/class-wp-user-avatar-list-table.php:428
|
||||
msgctxt "time ago"
|
||||
msgid "%s ago"
|
||||
msgstr "%s geleden"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:433
|
||||
msgid "Y/m/d"
|
||||
msgstr "j F Y"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:523
|
||||
msgid "Edit"
|
||||
msgstr "Bewerk"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:532
|
||||
msgid "Restore"
|
||||
msgstr "Herstel"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:538
|
||||
msgid "Trash"
|
||||
msgstr "Prullenbak"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:561
|
||||
msgid "View"
|
||||
msgstr "Bekijken"
|
||||
|
||||
#. translators: either wp_footer() or wp_print_footer_scripts() hook.
|
||||
#: includes/class-wp-user-avatar-resource-manager.php:190
|
||||
msgid ""
|
||||
"We're sorry, but your theme's page template didn't make a call to %s, which "
|
||||
"is required by One User Avatar. Please add this call to your page templates."
|
||||
msgstr ""
|
||||
"Het spijt ons, maar de pagina template van je thema heeft geen oproep gedaan "
|
||||
"naar %s, wat vereist is door One User Avatar. Voeg deze oproep toe aan je "
|
||||
"pagina template."
|
||||
|
||||
#: includes/class-wp-user-avatar-shortcode.php:244
|
||||
msgid "Profile updated."
|
||||
msgstr "Profiel bijgewerkt."
|
||||
|
||||
#: includes/class-wp-user-avatar-shortcode.php:273
|
||||
msgid "Update Profile"
|
||||
msgstr "Profiel bijwerken"
|
||||
|
||||
#. translators: [avatar_upload] shortcode
|
||||
#: includes/class-wp-user-avatar-widget.php:27
|
||||
msgid "Insert %s"
|
||||
msgstr "%s invoegen"
|
||||
|
||||
#: includes/class-wp-user-avatar-widget.php:99
|
||||
msgid "Title:"
|
||||
msgstr "Titel:"
|
||||
|
||||
#: includes/class-wp-user-avatar-widget.php:105
|
||||
msgid "Description:"
|
||||
msgstr "Beschrijving:"
|
||||
|
||||
#: includes/class-wp-user-avatar-widget.php:113
|
||||
msgid "Automatically add paragraphs"
|
||||
msgstr "Voeg automatisch paragrafen toe"
|
||||
|
||||
#. translators: user display name
|
||||
#: includes/class-wp-user-avatar.php:227
|
||||
msgid "Choose Image: %s"
|
||||
msgstr "Kies foto: %s"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:243 includes/class-wp-user-avatar.php:244
|
||||
#: includes/wpua-tinymce-window.php:95 includes/wpua-tinymce-window.php:186
|
||||
msgid "Upload"
|
||||
msgstr "Uploaden"
|
||||
|
||||
#. translators: file size in KB
|
||||
#: includes/class-wp-user-avatar.php:253 includes/wpua-options-page.php:188
|
||||
msgid "Maximum upload file size: %s."
|
||||
msgstr "Maximale bestandsgrootte van upload: %s."
|
||||
|
||||
#. translators: allowed file extensions
|
||||
#: includes/class-wp-user-avatar.php:263
|
||||
msgid "Allowed Files: %s"
|
||||
msgstr "Toegestane bestanden: %s"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:276 includes/class-wp-user-avatar.php:278
|
||||
#: includes/wpua-tinymce-window.php:125
|
||||
msgid "Original Size"
|
||||
msgstr "Originele grootte"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:282 includes/class-wp-user-avatar.php:284
|
||||
#: includes/wpua-tinymce-window.php:128
|
||||
msgid "Thumbnail"
|
||||
msgstr "Thumbnail"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:288
|
||||
msgid "Remove Image"
|
||||
msgstr "Afbeelding verwijderen"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:377
|
||||
msgid "This file is not an image. Please try another."
|
||||
msgstr "Dit bestand is geen afbeelding. Probeer een ander bestand."
|
||||
|
||||
#: includes/class-wp-user-avatar.php:382 includes/class-wp-user-avatar.php:414
|
||||
msgid "Memory exceeded. Please try another smaller file."
|
||||
msgstr "Het geheugen is overschreden. Probeer opnieuw met een kleiner bestand."
|
||||
|
||||
#. translators: directory path
|
||||
#: includes/class-wp-user-avatar.php:389
|
||||
msgid ""
|
||||
"Unable to create directory %s. Is its parent directory writable by the "
|
||||
"server?"
|
||||
msgstr ""
|
||||
"Kan map %s niet aanmaken. Is de hoofd folder beschrijfbaar door de server?"
|
||||
|
||||
#: includes/wpua-functions.php:109 includes/wpua-functions.php:118
|
||||
msgid "Image"
|
||||
msgstr "Afbeelding"
|
||||
|
||||
#: includes/wpua-media-page.php:46
|
||||
msgid "You do not have permission to upload files."
|
||||
msgstr "Je hebt geen toestemming om bestanden te uploaden."
|
||||
|
||||
#. translators: search query
|
||||
#: includes/wpua-media-page.php:66
|
||||
msgid "Search results for %s"
|
||||
msgstr "Zoekresultaten voor %s"
|
||||
|
||||
#: includes/wpua-media-page.php:98
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: includes/wpua-options-page.php:108
|
||||
msgid "Add avatar button to Visual Editor"
|
||||
msgstr "Voeg avatar-knop toe aan visuele editor"
|
||||
|
||||
#: includes/wpua-options-page.php:119
|
||||
msgid "Allow Contributors & Subscribers to upload avatars"
|
||||
msgstr "Sta schrijvers & abonnees toe om avatars te uploaden"
|
||||
|
||||
#: includes/wpua-options-page.php:130
|
||||
msgid "Disable Gravatar and use only local avatars"
|
||||
msgstr "Schakel Gravatar uit en gebruik alleen lokale avatars"
|
||||
|
||||
#: includes/wpua-options-page.php:158 includes/wpua-options-page.php:167
|
||||
msgid "Upload Size Limit"
|
||||
msgstr "Bestandsgrootte uploadlimiet"
|
||||
|
||||
#: includes/wpua-options-page.php:159 includes/wpua-options-page.php:168
|
||||
msgid "(only for Contributors & Subscribers)"
|
||||
msgstr "(alleen voor schrijvers & abonnees)"
|
||||
|
||||
#. translators: file name
|
||||
#: includes/wpua-options-page.php:178
|
||||
msgid "%s exceeds the maximum upload size for this site."
|
||||
msgstr "%s overschrijdt de maximale uploadgrootte voor deze site."
|
||||
|
||||
#: includes/wpua-options-page.php:199
|
||||
msgid "Allow users to edit avatars"
|
||||
msgstr "Sta gebruikers toe om avatars te bewerken"
|
||||
|
||||
#: includes/wpua-options-page.php:207
|
||||
msgid "Resize avatars on upload"
|
||||
msgstr "Pas de grootte van avatars aan bij het uploaden"
|
||||
|
||||
#: includes/wpua-options-page.php:212
|
||||
msgid "Width"
|
||||
msgstr "Breedte"
|
||||
|
||||
#: includes/wpua-options-page.php:216
|
||||
msgid "Height"
|
||||
msgstr "Hoogte"
|
||||
|
||||
#: includes/wpua-options-page.php:224
|
||||
msgid "Crop avatars to exact dimensions"
|
||||
msgstr "Snijd avatars bij tot exacte afmetingen"
|
||||
|
||||
#: includes/wpua-options-page.php:246 includes/wpua-options-page.php:252
|
||||
msgid "Avatar Display"
|
||||
msgstr "Avatar weergave"
|
||||
|
||||
#: includes/wpua-options-page.php:259
|
||||
msgid "Show Avatars"
|
||||
msgstr "Toon avatars"
|
||||
|
||||
#: includes/wpua-options-page.php:266 includes/wpua-options-page.php:272
|
||||
msgid "Maximum Rating"
|
||||
msgstr "Leeftijdsgrens"
|
||||
|
||||
#: includes/wpua-options-page.php:278
|
||||
msgid "G — Suitable for all audiences"
|
||||
msgstr "G — Geschikt voor alle leeftijden"
|
||||
|
||||
#: includes/wpua-options-page.php:279
|
||||
msgid "PG — Possibly offensive, usually for audiences 13 and above"
|
||||
msgstr ""
|
||||
"PG — Mogelijk kwetsend, gebruikelijk voor leeftijden van 13 en hoger"
|
||||
|
||||
#: includes/wpua-options-page.php:280
|
||||
msgid "R — Intended for adult audiences above 17"
|
||||
msgstr "R — Alleen voor boven de 17"
|
||||
|
||||
#: includes/wpua-options-page.php:281
|
||||
msgid "X — Even more mature than above"
|
||||
msgstr "X — Nog ouder"
|
||||
|
||||
#: includes/wpua-options-page.php:310
|
||||
msgid ""
|
||||
"For users without a custom avatar of their own, you can either display a "
|
||||
"generic logo or a generated one based on their e-mail address."
|
||||
msgstr ""
|
||||
"Voor gebruikers zonder eigen avatar kun je een logo weergeven dat gemaakt "
|
||||
"word gebaseerd op hun e-mailadres."
|
||||
|
||||
#: includes/wpua-tinymce-window.php:101
|
||||
msgid "User Name"
|
||||
msgstr "Gebruikersnaam"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:121 includes/wpua-tinymce-window.php:134
|
||||
msgid "Size:"
|
||||
msgstr "Grootte:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:126
|
||||
msgid "Large"
|
||||
msgstr "Groot"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:127
|
||||
msgid "Medium"
|
||||
msgstr "Gemiddeld"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:129
|
||||
msgid "Custom"
|
||||
msgstr "Aangepast"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:140
|
||||
msgid "Alignment:"
|
||||
msgstr "Uitlijning:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:144
|
||||
msgid "Center"
|
||||
msgstr "Gecentreerd"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:145
|
||||
msgid "Left"
|
||||
msgstr "Links"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:146
|
||||
msgid "Right"
|
||||
msgstr "Rechts"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:151
|
||||
msgid "Link To:"
|
||||
msgstr "Link naar:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:155
|
||||
msgid "Image File"
|
||||
msgstr "Afbeeldingsbestand"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:156
|
||||
msgid "Attachment Page"
|
||||
msgstr "Bijlagepagina"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:157
|
||||
msgid "Custom URL"
|
||||
msgstr "Aangepaste URL"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:162
|
||||
msgid "URL:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:170
|
||||
msgid "Open link in a new window"
|
||||
msgstr "Link openen in nieuw venster"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:174
|
||||
msgid "Caption"
|
||||
msgstr "Bijschrift"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:180 includes/wpua-tinymce-window.php:192
|
||||
msgid "Insert into Post"
|
||||
msgstr "Invoegen in bericht"
|
||||
|
||||
#: includes/wpua-tinymce.php:70
|
||||
msgid "Insert Avatar"
|
||||
msgstr "Avatar invoegen"
|
||||
|
||||
#. translators: placeholder for <a> and </a> tags.
|
||||
#: one-user-avatar.php:94
|
||||
msgid ""
|
||||
"The plugin One User Avatar is a replacement for the old WP User Avatar "
|
||||
"plugin. Please %1$sdeactivate WP User Avatar%2$s to start using it."
|
||||
msgstr ""
|
||||
"De plug-in One User Avatar is een vervanging voor de oude WP User Avatar-"
|
||||
"plug-in. %1$sDeactiveer WP User Avatar%2$s om het te gebruiken."
|
||||
|
||||
#~ msgid "Edit Image"
|
||||
#~ msgstr "Afbeelding bewerken"
|
||||
|
||||
#, php-format
|
||||
#~ msgid "Edit %s"
|
||||
#~ msgstr "%s bewerken"
|
||||
|
||||
#, php-format
|
||||
#~ msgid "View %s"
|
||||
#~ msgstr "%s bekijken"
|
||||
|
||||
#~ msgid "Media attachment permanently deleted."
|
||||
#~ msgstr "Mediabijlage permanent verwijderd."
|
||||
@@ -0,0 +1,5 @@
|
||||
# Change Log
|
||||
|
||||
## [1.0.0] - 2021-04-10
|
||||
### Added:
|
||||
- Initial release
|
||||
@@ -0,0 +1,142 @@
|
||||
# English translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Automatically generated, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Woocommerce Product Disclaimer 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-06 13:46-0400\n"
|
||||
"PO-Revision-Date: 2019-02-19 11:27+0000\n"
|
||||
"Last-Translator: Saad Iqbal <support@wpexperts.io>\n"
|
||||
"Language-Team: English (United States)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"X-Poedit-SourceCharset: iso-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"Language: en_US\n"
|
||||
"X-Loco-Version: 2.2.0; wp-5.0.3"
|
||||
|
||||
#: mypluginindex.php:87 (it is just a line of note, to remind where our code
|
||||
#: appears)
|
||||
msgid "Add disclaimer"
|
||||
msgstr "Add disclaimer"
|
||||
|
||||
msgid "Disclaimer message"
|
||||
msgstr "Disclaimer message"
|
||||
|
||||
msgid "Reject URL"
|
||||
msgstr "Reject URL"
|
||||
|
||||
msgid "Disclaimer option"
|
||||
msgstr "Disclaimer option"
|
||||
|
||||
msgid "Display one time only?"
|
||||
msgstr "Display one time only?"
|
||||
|
||||
msgid "Inherit"
|
||||
msgstr "Inherit"
|
||||
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
msgid "Disable"
|
||||
msgstr "Disable"
|
||||
|
||||
msgid "Woocommerce Disclaimer Settings"
|
||||
msgstr "Woocommerce Disclaimer Settings"
|
||||
|
||||
msgid "Disclaimer"
|
||||
msgstr "Disclaimer"
|
||||
|
||||
msgid "Cookie duration"
|
||||
msgstr "Cookie duration"
|
||||
|
||||
msgid "Cookie activation"
|
||||
msgstr "Cookie activation"
|
||||
|
||||
msgid "Note"
|
||||
msgstr "Note"
|
||||
|
||||
msgid ""
|
||||
"if it is activated, the user will not have to agree every time he add a "
|
||||
"product that he agreed on its disclaimer before."
|
||||
msgstr ""
|
||||
"if it is activated, the user will not have to agree every time he add a "
|
||||
"product that he agreed on its disclaimer before."
|
||||
|
||||
msgid "Activate General Disclaimer"
|
||||
msgstr "Activate General Disclaimer"
|
||||
|
||||
msgid "General Disclaimer Message"
|
||||
msgstr "General Disclaimer Message"
|
||||
|
||||
msgid "Log Disclaimer Activity"
|
||||
msgstr "Log Disclaimer Activity"
|
||||
|
||||
msgid ""
|
||||
"Check this if you want to log the disclaimer activity (accept or reject) on "
|
||||
"your products."
|
||||
msgstr ""
|
||||
"Check this if you want to log the disclaimer activity (accept or reject) on "
|
||||
"your products."
|
||||
|
||||
msgid ""
|
||||
"Do not change these values unless you override the default classes of add to "
|
||||
"cart buttons"
|
||||
msgstr ""
|
||||
"Do not change these values unless you override the default classes of add to "
|
||||
"cart buttons"
|
||||
|
||||
msgid ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to"
|
||||
msgstr ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to"
|
||||
|
||||
msgid "General Reject URL"
|
||||
msgstr "General Reject URL"
|
||||
|
||||
msgid "Disable product disclaimer for this product"
|
||||
msgstr "Disable product disclaimer for this product"
|
||||
|
||||
msgid "Add a unique disclaimer for this product"
|
||||
msgstr "Add a unique disclaimer for this product"
|
||||
|
||||
msgid "Use global disclaimer for this product"
|
||||
msgstr "Use global disclaimer for this product"
|
||||
|
||||
msgid "Enabling this option will show disclaimer only one time"
|
||||
msgstr "Enabling this option will show disclaimer only one time"
|
||||
|
||||
msgid ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to global"
|
||||
msgstr ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to global"
|
||||
|
||||
msgid ""
|
||||
"Show one time disclaimer message when product add to cart button clicked "
|
||||
"untill next cookie expires"
|
||||
msgstr ""
|
||||
"Show one time disclaimer message when product add to cart button clicked "
|
||||
"untill next cookie expires"
|
||||
|
||||
msgid ""
|
||||
"How much time disclaimer message should not appear when product add to cart "
|
||||
"button clicked"
|
||||
msgstr ""
|
||||
"How much time disclaimer message should not appear when product add to cart "
|
||||
"button clicked"
|
||||
|
||||
msgid ""
|
||||
"Customer will be redirected to this URL if customer does not accept product "
|
||||
"disclaimer"
|
||||
msgstr ""
|
||||
"Customer will be redirected to this URL if customer does not accept product "
|
||||
"disclaimer"
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/pdf-generator-for-wp/composer_file/package.json
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/pdf-generator-for-wp/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "pdf-generator-for-wp",
|
||||
"version": "1.0.0",
|
||||
"description": "=== PDF Generator For WordPress ===\r Contributors: makewebbetter\r Tags: comments, spam\r Requires at least: 4.6\r Tested up to: 4.9.5\r Stable tag: 1.0.0\r License: GNU General Public License v3.0\r License URI: http://www.gnu.org/licenses/gpl-3.0.html",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.2.4",
|
||||
"browser-sync": "^2.26.14",
|
||||
"css-mqpacker": "^7.0.0",
|
||||
"cssnano": "^4.1.10",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-deporder": "^1.2.0",
|
||||
"gulp-imagemin": "^7.1.0",
|
||||
"gulp-newer": "^1.4.0",
|
||||
"gulp-postcss": "^9.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-strip-debug": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-util": "^3.0.8",
|
||||
"postcss-assets": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"gulp-wp-pot": "^2.5.0",
|
||||
"postcss": "^8.2.6"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
# Change Log
|
||||
|
||||
## [1.0.0] - 2021-04-14
|
||||
### Added:
|
||||
- Initial release
|
||||
505
spec/fixtures/dynamic_finders/plugin_version/pepro-cf7-database/translation_file/languages/cf7db.pot
vendored
Normal file
505
spec/fixtures/dynamic_finders/plugin_version/pepro-cf7-database/translation_file/languages/cf7db.pot
vendored
Normal file
@@ -0,0 +1,505 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"Project-Id-Version: CF7 Database\n"
|
||||
"POT-Creation-Date: 2021-05-19 19:54+0430\n"
|
||||
"PO-Revision-Date: 2020-07-13 02:16+0430\n"
|
||||
"Last-Translator: Amirhosseinhpv <amirhossein@hpv.im>\n"
|
||||
"Language-Team: Amirhosseinhpv <amirhossein@hpv.im>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
||||
"X-Poedit-WPHeader: pepro-cf7-db.php\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
||||
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
|
||||
#: pepro-cf7-db.php:69
|
||||
msgid "CF7 Database"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: pepro-cf7-db.php:70 pepro-cf7-db.php:358 pepro-cf7-db.php:407
|
||||
#: pepro-cf7-db.php:414
|
||||
msgid "Pepro CF7 Database"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:71
|
||||
#, php-format
|
||||
msgid "%2$s ver. %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:97 pepro-cf7-db.php:359 pepro-cf7-db.php:408
|
||||
msgid "A Reliable Solution to Save Contact Form 7 Submissions and Files"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:99 pepro-cf7-db.php:107
|
||||
msgid "Saved Submission"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:100
|
||||
msgid "All CF7 Databases"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:101
|
||||
msgid "Give five-star review"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:102
|
||||
msgid "Pepro CF7 SMS Notifier"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:103
|
||||
msgid "Pepro Dev FREE offerings"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:164
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:165
|
||||
msgid "CF7 Submissions"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:206
|
||||
#, php-format
|
||||
msgctxt "footer-copyright"
|
||||
msgid "Thanks for using %s products"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:206 pepro-cf7-db.php:360 pepro-cf7-db.php:409
|
||||
msgid "Pepro Dev"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:207
|
||||
#, php-format
|
||||
msgctxt "footer-copyright"
|
||||
msgid "%s — Version %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:215
|
||||
msgid "Unauthorized Access!"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:225
|
||||
#, php-format
|
||||
msgid "Submition ID %s Successfully Deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:227
|
||||
#, php-format
|
||||
msgid "Error Deleting Submition ID %s."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:238
|
||||
#, php-format
|
||||
msgid "All data regarding Contact form %s (ID %s) were Successfully Deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:240
|
||||
#, php-format
|
||||
msgid "Error Deleting Contact form %s (ID %s) data from database."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:250
|
||||
msgid "Database Successfully Cleared."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:252
|
||||
msgid "Error Clearing Database."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:274
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Select image file"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:275
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Use this image"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:276
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:277
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Current preview"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:278
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:279
|
||||
msgctxt "js-string"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:280
|
||||
msgctxt "js-string"
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:281
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:282
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:283
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:284
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:285
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:286
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Okay"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:287
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:288
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:289
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:290
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Send to all"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:291
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:292
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Delete Submition"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:293
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Are you sure you want to delete submition ID %s ? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:294
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Are you sure you want to clear all data from database? This cannot be "
|
||||
"undone."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:295
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Are you sure you want to clear all Current Contact form data from database? "
|
||||
"This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:296
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Clear Database"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:298
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Data Exported via %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:299
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "CF7 Database of %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:300
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Exported at %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:302
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Exported via %s — Date: %s — Developed by Pepro Dev ( https://pepro.dev/ )"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:304
|
||||
msgctxt "data-table"
|
||||
msgid "No data available in table"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:305
|
||||
msgctxt "data-table"
|
||||
msgid "Showing _START_ to _END_ of _TOTAL_ entries"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:306
|
||||
msgctxt "data-table"
|
||||
msgid "Showing 0 to 0 of 0 entries"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:307
|
||||
msgctxt "data-table"
|
||||
msgid "(filtered from _MAX_ total entries)"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:308
|
||||
msgctxt "data-table"
|
||||
msgid "Show _MENU_ entries"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:309
|
||||
msgctxt "data-table"
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:310
|
||||
msgctxt "data-table"
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:311
|
||||
msgctxt "data-table"
|
||||
msgid "Search:"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:312
|
||||
msgctxt "data-table"
|
||||
msgid "No matching records found"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:313
|
||||
msgctxt "data-table"
|
||||
msgid "First"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:314
|
||||
msgctxt "data-table"
|
||||
msgid "Last"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:315
|
||||
msgctxt "data-table"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:316
|
||||
msgctxt "data-table"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:317
|
||||
msgctxt "data-table"
|
||||
msgid ": activate to sort column ascending"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:318
|
||||
msgctxt "data-table"
|
||||
msgid ": activate to sort column descending"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:319
|
||||
msgctxt "data-table"
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:320
|
||||
msgctxt "data-table"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:321
|
||||
msgctxt "data-table"
|
||||
msgid "Column visibility"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:322
|
||||
msgctxt "data-table"
|
||||
msgid "Export CSV"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:323
|
||||
msgctxt "data-table"
|
||||
msgid "Export Excel"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:324
|
||||
msgctxt "data-table"
|
||||
msgid "Export PDF"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:360 pepro-cf7-db.php:409
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This plugin is proudly developed by %s for FREE, you can support us by "
|
||||
"giving a %s in WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:360 pepro-cf7-db.php:409
|
||||
msgid "five-star review"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:363
|
||||
#, php-format
|
||||
msgid ""
|
||||
"As of ver. 1.5.0 of %s, Setting section removed and saved data will remain "
|
||||
"intact after uninstalling the plugin and you have to manually clear all "
|
||||
"data before uninstalling."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:363
|
||||
msgid "Pepro CF7 Database Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:364
|
||||
msgid "BE CAUTIOUS! ONCE YOU EMPTY THE DATABASE, THERE WILL BE NO WAY BACK!"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:365
|
||||
msgctxt "setting-general"
|
||||
msgid "Empty Database and All Saved Submission"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:369
|
||||
msgid "To view Saved Submission, select a CF7 Form from below list:"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:378
|
||||
msgid "Entered CF7 is not valid, Go back and select another Contact form"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:389
|
||||
msgid "Items per page"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:390 pepro-cf7-db.php:391 pepro-cf7-db.php:392
|
||||
#: pepro-cf7-db.php:393 pepro-cf7-db.php:394 pepro-cf7-db.php:395
|
||||
#: pepro-cf7-db.php:396 pepro-cf7-db.php:397 pepro-cf7-db.php:398
|
||||
#: pepro-cf7-db.php:399 pepro-cf7-db.php:400
|
||||
#, php-format
|
||||
msgctxt "items_per_page"
|
||||
msgid "Show %s items per page"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:402
|
||||
#, php-format
|
||||
msgid "Show your only saved submition"
|
||||
msgid_plural "Show all %s items at once"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pepro-cf7-db.php:414
|
||||
#, php-format
|
||||
msgid "You are here: %s → %s → %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:414
|
||||
msgid "Contact Forms"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:418
|
||||
msgid "Delete All Submission of Current Contact form"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:427
|
||||
msgid "Failed Rendering Database! No data saved for this form yet."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:442
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:443
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:450
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:454
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:458
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:476
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:479
|
||||
#, php-format
|
||||
msgid "Your very first saved submition is showing below"
|
||||
msgid_plural "%s Saved Submission found"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pepro-cf7-db.php:527
|
||||
msgid "Delete this specific submition"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:563
|
||||
msgid "< Previous"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:564
|
||||
msgid "Next >"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://pepro.dev/cf7-database/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Reliable Solution to Save CF7 Submissions and Files, Works with CF7 v.5.4+"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Pepro Dev. Group"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://pepro.dev/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Release Date - 4 April 2021*
|
||||
* Initial release
|
||||
@@ -0,0 +1,341 @@
|
||||
# Copyright (C) 2021 WPRealizer
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Base Order for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
||||
"POT-Creation-Date: 2021-06-03 14:50:48+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\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.0\n"
|
||||
|
||||
#: includes/Admin/Admin.php:40
|
||||
#. translators: %s: wc plugin url
|
||||
msgid ""
|
||||
"Product Base Order for WooCommerce requires WooCommerce to be installed and "
|
||||
"active. You can activate <a href=\"%s\">WooCommerce</a> here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:36
|
||||
msgid "Product Base Order"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Product Base Order for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:52
|
||||
msgid "Shortcodes List:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:59
|
||||
msgid "Global Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:62
|
||||
msgid "All Products Base Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:65
|
||||
msgid "Specefic Products Base Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:68 includes/Admin/Menus.php:71
|
||||
msgid "Filter Products Base Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:106
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:23
|
||||
msgid "General Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:28
|
||||
msgid "Product Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:33
|
||||
msgid "Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:38
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:59 includes/Admin/SettingsFields.php:106
|
||||
msgid "Logged Users Only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:60 includes/Admin/SettingsFields.php:107
|
||||
msgid ""
|
||||
"Select <strong>Yes</strong> if you want to show the order listing table "
|
||||
"only for logged users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:64 includes/Admin/SettingsFields.php:100
|
||||
#: includes/Admin/SettingsFields.php:111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:65 includes/Admin/SettingsFields.php:101
|
||||
#: includes/Admin/SettingsFields.php:112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:70
|
||||
msgid "Default Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:71
|
||||
msgid ""
|
||||
"This is default title will show on above order listing table for all uses "
|
||||
"shortcodes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:72 includes/Admin/SettingsFields.php:130
|
||||
#: includes/ProductBaseOrder.php:50 includes/ProductBaseOrder.php:52
|
||||
msgid "Recent Orders"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:77
|
||||
msgid "Default Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:78
|
||||
msgid ""
|
||||
"This is default sub title will show on below of main title for all uses "
|
||||
"shortcodes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:83 includes/Admin/SettingsFields.php:141
|
||||
msgid "Default Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:84 includes/Admin/SettingsFields.php:142
|
||||
msgid "Select which columns want to show on defaut columns on order listing table."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:95
|
||||
msgid "Allow for Single Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:96
|
||||
msgid ""
|
||||
"Select <strong>Yes</strong> if you want to show the order listing table on "
|
||||
"each single product page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:117
|
||||
msgid "Select Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:118
|
||||
msgid ""
|
||||
"Select <strong>position</strong> where want to show the order listing table "
|
||||
"on single product page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:122
|
||||
msgid "Before Related Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:123
|
||||
msgid "After Related Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:128
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:129
|
||||
msgid "This title will show on above order listing table."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:135
|
||||
msgid "Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:136
|
||||
msgid "This sub title will show on below of main title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:153
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:159
|
||||
msgid "With Title and SubTitle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:165 templates/global-orders-list.php:14
|
||||
msgid "All Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:171
|
||||
msgid "Specefic Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:177
|
||||
msgid "With Products Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:183
|
||||
msgid "Ignore Products Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:189
|
||||
msgid "With Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:195
|
||||
msgid "Ignore Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:201
|
||||
msgid "Products and Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:207
|
||||
msgid "Allow WC Default Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:209
|
||||
msgid ""
|
||||
"<b>Notes:</b> <code>[ \"field_key1|Title1, field_key2|Title2\" ]</code> "
|
||||
"Here first values (field_key1, field_key2 ) is not changable, you can only "
|
||||
"change 2nd values (Title1, Title2) as you want."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:214
|
||||
msgid "Custom Meta Data Column"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:216
|
||||
msgid ""
|
||||
"<b>Notes:</b> <code>[ \"meta_field_key1|Title1, meta_field_key2|Title2\" "
|
||||
"]</code> Here first values (meta_field_key1, meta_field_key2 ) is should be "
|
||||
"same as database meta_key value, you can only change 2nd values (Title1, "
|
||||
"Title2) as you want."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:225
|
||||
msgid "Need Help?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:226
|
||||
msgid ""
|
||||
"<a target=\"_blank\" href=\"https://www.wprealizer.com/contact-us/\">Click "
|
||||
"here</a> to get support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:552
|
||||
msgid "Choose File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:64
|
||||
msgid "Order#"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:65
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:66
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:67
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:68
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:69
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:70
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:71
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:72
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:73
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:74
|
||||
msgid "Payment Method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:75
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:76
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:77
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:169
|
||||
#. translators: %1$s: Item count, %2$s: symble, %3$s: Total
|
||||
msgid "%1$s%2$s for %3$s item"
|
||||
msgid_plural "%1$s%2$s for %3$s items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: templates/global-orders-list.php:12
|
||||
msgid "Filter By Product"
|
||||
msgstr ""
|
||||
|
||||
#: templates/global-orders-list.php:21
|
||||
msgid "Filter By Category"
|
||||
msgstr ""
|
||||
|
||||
#: templates/global-orders-list.php:23
|
||||
msgid "All Categories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/global-orders-list.php:197
|
||||
msgid "No orders found!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wprealizer.com/wprealizer-plugins/product-base-order-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WPRealizer"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wprealizer.com"
|
||||
msgstr ""
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/product-size-chart-for-woo/change_log/CHANGELOG.txt
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/product-size-chart-for-woo/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/**2021.01.31 - 1.0.0**/
|
||||
- The first release
|
||||
/**2021.03.06 - 1.0.1**/
|
||||
- Fixed: Pop-up CSS
|
||||
- Fixed: Pop-up conflict with some themes
|
||||
- Fixed: Setting display Before add to cart properties
|
||||
/**2021.03.11 - 1.0.2**/
|
||||
- Update: Pop-up CSS
|
||||
/**2021.04.19 - 1.0.3**/
|
||||
- Fixed: Preview css
|
||||
- Fixed: Assign categories and assign products
|
||||
- Fixed: Lose size charts data when restoring size chart
|
||||
@@ -0,0 +1,120 @@
|
||||
# Copyright (C) 2021 Acowebs
|
||||
# This file is distributed under the same license as the Product Table For WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Table For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aco-woo-product-table-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-27T05:01:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: product-table-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Product Table For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin helps to show products in table layout"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: filters/rating-filter.php:65
|
||||
#: filters/rating-filter.php:77
|
||||
#: filters/rating-filter.php:89
|
||||
#: filters/rating-filter.php:101
|
||||
#: filters/rating-filter.php:113
|
||||
msgid "Rated"
|
||||
msgstr ""
|
||||
|
||||
#: filters/results-per-page.php:16
|
||||
#: filters/results-per-page.php:17
|
||||
#: filters/results-per-page.php:43
|
||||
msgid "Results per page"
|
||||
msgstr ""
|
||||
|
||||
#: filters/sort.php:13
|
||||
#: filters/sort.php:14
|
||||
msgid "Sort by"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:223
|
||||
msgid "Thumbnail (150 x 150 cropped)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:224
|
||||
msgid "Medium (300 x 300)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:225
|
||||
msgid "Medium Large (768 x 0 infinite height)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:226
|
||||
msgid "Large resolution (1024 x 1024)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:227
|
||||
msgid "Full (original size)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:239
|
||||
msgid "0 infinite height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:243
|
||||
msgid "cropped"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:192
|
||||
msgid "Products not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:193
|
||||
msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:194
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:195
|
||||
msgid "View Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:217
|
||||
msgid "Product Tables"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:218
|
||||
msgid "Product Table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:219
|
||||
msgid "Woo Product Table By Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:245
|
||||
#: includes/class-awcpt-backend.php:246
|
||||
msgid "WC Product Tables"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:268
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: templates/rating.php:14
|
||||
#: templates/rating.php:26
|
||||
msgid "out of 5 stars"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,90 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Protect Media Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2021-05-16 23:59+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: ateliee <info@ateliee.com>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.4.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: src/include.php:60 src/include.php:84
|
||||
msgid "Protect Media Setting"
|
||||
msgstr "メディアの保護設定"
|
||||
|
||||
#: src/include.php:61
|
||||
msgid "Protect Media"
|
||||
msgstr "メディアの保護"
|
||||
|
||||
#: src/include.php:85
|
||||
msgid "Make login required for file access of the set path."
|
||||
msgstr "設定されたパスのファイルアクセスをログイン必須にします。"
|
||||
|
||||
#: src/include.php:87
|
||||
msgid "Check if AllowOverride in php.ini is enabled."
|
||||
msgstr "php.iniのAllowOverrideが有効か確認してください。"
|
||||
|
||||
#: src/include.php:90
|
||||
#, php-format
|
||||
msgid "%s does not exist. Save and update your settings."
|
||||
msgstr "%sが存在しません。設定を保存して更新してください。"
|
||||
|
||||
#: src/include.php:93
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You don't have write permission to .htaccess. Please describe the following "
|
||||
"in %s."
|
||||
msgstr ".htaccessへの書き込み権限がありません。下記を%sに記載ください"
|
||||
|
||||
#: src/include.php:98
|
||||
msgid "You don't have write permission to .htaccess."
|
||||
msgstr ".htaccessへの書き込み権限がありません。"
|
||||
|
||||
#: src/include.php:102
|
||||
msgid "Protection is not enabled because the path is invalid."
|
||||
msgstr "パスが無効のため保護が有効化されていません。"
|
||||
|
||||
#: src/include.php:110
|
||||
msgid "Path setting"
|
||||
msgstr "パス設定"
|
||||
|
||||
#: src/include.php:111
|
||||
msgid "Please specify the path from uploads"
|
||||
msgstr "uploadsからのパスを指定してください"
|
||||
|
||||
#: src/include.php:114
|
||||
msgid "Deny all access"
|
||||
msgstr "アクセスを全て拒否"
|
||||
|
||||
#: src/include.php:134
|
||||
msgid "The settings have been saved."
|
||||
msgstr "設定の保存が完了しました。"
|
||||
|
||||
#: src/include.php:200
|
||||
msgid ".htaccess could not be read."
|
||||
msgstr ".htaccessが読み込めませんでした。"
|
||||
|
||||
#: src/include.php:209
|
||||
msgid "Any changes to the directive between these markers will be overwritten."
|
||||
msgstr ""
|
||||
"これらのマーカー間にあるディレクティブへのいかなる変更も上書きされてしまいま"
|
||||
"す。"
|
||||
|
||||
#: src/include.php:218
|
||||
msgid "Failed to write to .htaccess."
|
||||
msgstr ".htaccessへの書き込みに失敗しました。"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user