Compare commits
75 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 | ||
|
|
824697490f | ||
|
|
62e01cb9d6 | ||
|
|
87c2f82b80 | ||
|
|
f887f8baa4 | ||
|
|
4d00d97be9 | ||
|
|
b0e946ee29 | ||
|
|
1220b9f47b | ||
|
|
12d2d0ffb0 | ||
|
|
4581113741 | ||
|
|
a20c769eae | ||
|
|
3259316cf1 | ||
|
|
9cc06234e4 | ||
|
|
1ee73268d7 | ||
|
|
f477620899 | ||
|
|
8a9dc1ce2c | ||
|
|
b584aa24bd | ||
|
|
8dfe78a210 | ||
|
|
7143cb5def | ||
|
|
e6c49d99b6 | ||
|
|
6e71f9771c | ||
|
|
452126b56a | ||
|
|
28dfd8b3b9 | ||
|
|
d3196bc03f | ||
|
|
0bff3231cd |
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>
|
||||
@@ -52,7 +53,7 @@ On MacOSX, if a ```Gem::FilePermissionError``` is raised due to the Apple's Syst
|
||||
|
||||
You can update the local database by using ```wpscan --update```
|
||||
|
||||
Updating WPScan itself is either done via ```gem update wpscan``` or the packages manager (this is quite important for distributions such as in Kali Linux: ```apt-get update && apt-get upgrade```) depending how WPScan was (pre)installed
|
||||
Updating WPScan itself is either done via ```gem update wpscan``` or the packages manager (this is quite important for distributions such as in Kali Linux: ```apt-get update && apt-get upgrade```) depending on how WPScan was (pre)installed
|
||||
|
||||
# Docker
|
||||
|
||||
|
||||
@@ -170,6 +170,12 @@ module WPScan
|
||||
['--users-detection MODE',
|
||||
'Use the supplied mode to enumerate Users, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
),
|
||||
OptRegexp.new(
|
||||
[
|
||||
'--exclude-usernames REGEXP_OR_STRING',
|
||||
'Exclude usernames matching the Regexp/string (case insensitive). Regexp delimiters are not required.'
|
||||
], options: Regexp::IGNORECASE
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -40,17 +40,56 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def potential_urls(opts = {})
|
||||
urls = {}
|
||||
domain_name = (PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
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
|
||||
|
||||
@@ -11,6 +11,16 @@ require_relative 'users/yoast_seo_author_sitemap'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
# Specific Finders container to filter the usernames found
|
||||
# and remove the ones matching ParsedCli.exclude_username if supplied
|
||||
class UsersFinders < SameTypeFinders
|
||||
def filter_findings
|
||||
findings.delete_if { |user| ParsedCli.exclude_usernames.match?(user.username) } if ParsedCli.exclude_usernames
|
||||
|
||||
findings
|
||||
end
|
||||
end
|
||||
|
||||
module Users
|
||||
# Users Finder
|
||||
class Base
|
||||
@@ -28,6 +38,10 @@ module WPScan
|
||||
Users::AuthorIdBruteForcing.new(target) <<
|
||||
Users::LoginErrorMessages.new(target)
|
||||
end
|
||||
|
||||
def finders
|
||||
@finders ||= Finders::UsersFinders.new
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
module Finders
|
||||
# Specific Finders container to filter the version detected
|
||||
# and remove the one with low confidence to avoid false
|
||||
# positive when there is not enought information to accurately
|
||||
# positive when there is not enough information to accurately
|
||||
# determine it.
|
||||
class WpVersionFinders < UniqueFinders
|
||||
def filter_findings
|
||||
|
||||
@@ -53,7 +53,9 @@ module WPScan
|
||||
#
|
||||
# @return [ Boolean ]
|
||||
def vulnerable_to?(vuln)
|
||||
return true unless version && vuln && vuln.fixed_in && !vuln.fixed_in.empty?
|
||||
return false if version && vuln&.introduced_in && version < vuln.introduced_in
|
||||
|
||||
return true unless version && vuln&.fixed_in && !vuln.fixed_in.empty?
|
||||
|
||||
version < vuln.fixed_in
|
||||
end
|
||||
@@ -160,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)
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPScan API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
<%= warning_icon %> You can get a free API token with 25 daily requests by registering at https://wpscan.com/register
|
||||
<% end -%>
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 25 daily requests by registering at https://wpscan.com/register"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -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.14'
|
||||
VERSION = '3.8.18'
|
||||
end
|
||||
|
||||
@@ -21,6 +21,7 @@ module WPScan
|
||||
references: references,
|
||||
type: json_data['vuln_type'],
|
||||
fixed_in: json_data['fixed_in'],
|
||||
introduced_in: json_data['introduced_in'],
|
||||
cvss: json_data['cvss']&.symbolize_keys
|
||||
)
|
||||
end
|
||||
|
||||
@@ -76,7 +76,7 @@ describe WPScan::Controller::Enumeration do
|
||||
config_backups_list config_backups_detection
|
||||
db_exports_list db_exports_detection
|
||||
medias_detection
|
||||
users_list users_detection]
|
||||
users_list users_detection exclude_usernames]
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -195,6 +195,7 @@ describe WPScan::Model::Plugin do
|
||||
end
|
||||
|
||||
context 'when vulnerabilities' do
|
||||
context 'when only fixed_in' do
|
||||
let(:slug) { 'vulnerable-not-popular' }
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-not-popular') }
|
||||
|
||||
@@ -226,7 +227,7 @@ describe WPScan::Model::Plugin do
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
end
|
||||
|
||||
context 'when < to a fixed_in' do
|
||||
context 'when < to fixed_in' do
|
||||
let(:number) { '5.0' }
|
||||
|
||||
it 'returns it' do
|
||||
@@ -234,7 +235,7 @@ describe WPScan::Model::Plugin do
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to a fixed_in' do
|
||||
context 'when >= to fixed_in' do
|
||||
let(:number) { '6.3.10' }
|
||||
|
||||
it 'does not return it ' do
|
||||
@@ -243,6 +244,63 @@ describe WPScan::Model::Plugin do
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when introduced_in' do
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-introduced-in') }
|
||||
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'Introduced In 6.4',
|
||||
fixed_in: '6.5',
|
||||
introduced_in: '6.4',
|
||||
references: { wpvulndb: '1' }
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
context 'when no plugin version' do
|
||||
before { expect(plugin).to receive(:version).at_least(1).and_return(false) }
|
||||
|
||||
it 'returns all the vulnerabilities' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when plugin version' do
|
||||
before do
|
||||
expect(plugin)
|
||||
.to receive(:version)
|
||||
.at_least(1)
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
end
|
||||
|
||||
context 'when < to introduced_in' do
|
||||
let(:number) { '5.0' }
|
||||
|
||||
it 'does not return it' do
|
||||
@expected = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to fixed_in' do
|
||||
let(:number) { '6.5' }
|
||||
|
||||
it 'does not return it' do
|
||||
@expected = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to introduced_in' do
|
||||
let(:number) { '6.4' }
|
||||
|
||||
it 'returns it' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
7390
spec/fixtures/db/dynamic_finders.yml
vendored
7390
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
13
spec/fixtures/db/vuln_api/plugins/vulnerable-introduced-in.json
vendored
Normal file
13
spec/fixtures/db/vuln_api/plugins/vulnerable-introduced-in.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"latest_version": null,
|
||||
"last_updated": null,
|
||||
"popular": false,
|
||||
"vulnerabilities" : [
|
||||
{
|
||||
"title": "Introduced In 6.4",
|
||||
"id": 1,
|
||||
"introduced_in": "6.4",
|
||||
"fixed_in": "6.5"
|
||||
}
|
||||
]
|
||||
}
|
||||
3263
spec/fixtures/dynamic_finders/expected.yml
vendored
3263
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,316 @@
|
||||
# Copyright (C) 2021 Web Rockstar
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Admin Notes 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-admin-notes-off\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-26T17:52:32+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-59d879d\n"
|
||||
"X-Domain: wp-admin-notes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-wp-admin-notes-admin.php:357
|
||||
msgid "WP Admin Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://webrockstar.net"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create and manage admin footer text, help tabs, and notices directly from the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Web Rockstar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:3
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:32
|
||||
msgid "Enter your note here."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:34
|
||||
msgid "Make Private"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:35
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:36
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:37
|
||||
msgid "Note is public and visible to all users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:71
|
||||
msgid "There are currently no admin notes."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:198
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:219
|
||||
msgid "Screen ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:238
|
||||
msgctxt "post type general name"
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:239
|
||||
msgctxt "post type singular name"
|
||||
msgid "Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:240
|
||||
msgctxt "admin menu"
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:241
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:242
|
||||
msgctxt "wpan_help_tab"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:243
|
||||
msgid "Add New Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:244
|
||||
msgid "New Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:245
|
||||
msgid "Edit Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:246
|
||||
msgid "View Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:247
|
||||
msgid "All Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:248
|
||||
msgid "Search Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:249
|
||||
msgid "Parent Help Tabs:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:250
|
||||
msgid "No Help Tabs found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:251
|
||||
msgid "No Help Tabs found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:258
|
||||
msgctxt "post type general name"
|
||||
msgid "Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:259
|
||||
msgctxt "post type singular name"
|
||||
msgid "Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:260
|
||||
msgctxt "admin menu"
|
||||
msgid "Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:261
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:262
|
||||
msgctxt "wpan_notice"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:263
|
||||
msgid "Add New Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:264
|
||||
msgid "New Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:265
|
||||
msgid "Edit Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:266
|
||||
msgid "View Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:267
|
||||
msgid "All Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:268
|
||||
msgid "Search Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:269
|
||||
msgid "Parent Admin Notices:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:270
|
||||
msgid "No Admin Notices found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:271
|
||||
msgid "No Admin Notices found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:114
|
||||
#: admin/class-wp-admin-notes-admin.php:183
|
||||
msgid "(click to copy)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:115
|
||||
msgid "(copied!)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:361
|
||||
msgid "Admin Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:362
|
||||
msgid ""
|
||||
"Overrides the default text in the very bottom left corner of every WordPress admin page.\n"
|
||||
"\t\t\t\t\tThis is typically used to highlight the department or company that developed/configured the website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:364
|
||||
msgid "Enable Admin Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:367
|
||||
msgid "Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:370
|
||||
msgid "Website built and configured by..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:377
|
||||
msgid "Allowed HTML: a, strong, em"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:378
|
||||
msgid "Footer Text Icon Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:379
|
||||
msgid ""
|
||||
"Optional image icon for the admin footer text. Icon is displayed at 24px X 24px and left aligned.\n"
|
||||
"\t\t\t\t Transparent PNG or SVG works best."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:389
|
||||
msgid "Notice Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:391
|
||||
msgid "Disable Notice Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:393
|
||||
msgid "Toggles the display of the Admin Notices post type on the left menu bar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:395
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:396
|
||||
msgid "Custom help tabs on WordPress admin pages. Created and managed in the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:397
|
||||
msgid "Disable Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:399
|
||||
msgid "Toggles the display of the Help Tab post type on the left menu bar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:402
|
||||
msgid "Global Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:403
|
||||
msgid ""
|
||||
"A single global help tab that appears on every WordPress admin page.\n"
|
||||
"\t\t\t\t\t This is typically used to display a message about who to contact regarding technical issues or feature requests."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:405
|
||||
msgid "Enable Global Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:407
|
||||
msgid "Global Help Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:416
|
||||
msgid "Global Help Tab Body"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:425
|
||||
msgid "Allowed HTML includes: a, strong, em, ul, ol, li, h1, h2, h3, h4, h5, h6. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:426
|
||||
msgid "Global Help Tab Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:427
|
||||
msgid ""
|
||||
"Optional logo image to display at the bottom of the global help tab content.\n"
|
||||
"\t\t\t\t\t\t This is typically the logo of the company that configured/developed the website, if applicable.\n"
|
||||
"\t\t\t\t\t\t This image is displayed with a maximum width and height of 200px. Transparent PNG or SVG works best."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:439
|
||||
msgid "Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:441
|
||||
msgid "Hide Default Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:445
|
||||
msgid "Animate Help Tab Before First Click"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:447
|
||||
msgid ""
|
||||
"To help users discover the help tab, it will bounce and highlight until clicked.\n"
|
||||
"\t\t\t\t\t After it is clicked once it will never animate again for that user."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,167 @@
|
||||
# Copyright (C) 2021 WP Concern
|
||||
# This file is distributed under the GPL3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Google reCAPTCHA 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/advanced-google-recaptcha\n"
|
||||
"POT-Creation-Date: 2021-03-09 07:19:48+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.5\n"
|
||||
|
||||
#: edd_templates/shortcode-login.php:16
|
||||
msgid "Log into Your Account"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:19
|
||||
msgid "Username or Email"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:23
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:30
|
||||
msgid "Remember Me"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:36
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:40
|
||||
msgid "Lost Password?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:26 inc/core.php:227
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:27
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:39
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Advanced Google reCAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:130
|
||||
#. translators: 1: link open, 2: link close
|
||||
msgid ""
|
||||
"Please %1$sregister your domain%2$s first, get required keys from Google "
|
||||
"(reCAPTCHA v2 or reCAPTCHA v3) and save them below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:139
|
||||
msgid "You can enable/disable reCAPTCHA for different forms separately."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:175
|
||||
msgid ""
|
||||
"Applies for default login, WooCommerce login and Easy Digital Downloads "
|
||||
"login."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:211
|
||||
msgid "Key Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:213
|
||||
msgid "reCAPTCHA Type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:215
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:216
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:218
|
||||
msgid "Status Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:220
|
||||
msgid "Enable for Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:221
|
||||
msgid "Enable for Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:222
|
||||
msgid "Enable for Lost Password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:224
|
||||
msgid "Enable for Comment Form"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:225
|
||||
msgid "Enable for WooCommerce Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:226
|
||||
msgid "Enable for Easy Digital Downloads Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:227
|
||||
msgid "Enable for BuddyPress Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:272
|
||||
msgid "To implement reCAPTCHA, Key settings should be completed first."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:274
|
||||
msgid "Captcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:314
|
||||
msgid "V2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:315
|
||||
msgid "V3"
|
||||
msgstr ""
|
||||
|
||||
#: inc/core.php:150 inc/core.php:153 inc/core.php:170 inc/core.php:173
|
||||
#: inc/core.php:192 inc/core.php:195 inc/core.php:211 inc/core.php:214
|
||||
#: inc/core.php:373 inc/core.php:383 inc/core.php:424 inc/core.php:434
|
||||
#: inc/core.php:452 inc/core.php:455 inc/core.php:471 inc/core.php:474
|
||||
msgid "Google reCAPTCHA verification failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/core.php:170 inc/core.php:173 inc/core.php:192 inc/core.php:195
|
||||
#: inc/core.php:211 inc/core.php:214 inc/core.php:373 inc/core.php:383
|
||||
#: inc/core.php:424 inc/core.php:434
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.wpconcern.com/advanced-google-recaptcha/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Advanced Google reCAPTCHA will safeguard your WordPress site from spam "
|
||||
"comments and brute force attacks."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Concern"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.wpconcern.com/"
|
||||
msgstr ""
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/af-companion/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/af-companion/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
### 1.0.0 - 16/02/2021
|
||||
|
||||
Changes:
|
||||
*INITIAL RELEASE*
|
||||
@@ -0,0 +1,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 ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/audius-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/audius-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "audius-wp",
|
||||
"version": "1.1.0",
|
||||
"description": "Audius.co Wordpress plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "12.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"hashids": "^2.2.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
# Copyright (C) 2021 Kan-Ru Chen
|
||||
# This file is distributed under the same license as the Auto Login with Cloudflare plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Login with Cloudflare 0.9.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/auto-login-with-cloudflare\n"
|
||||
"POT-Creation-Date: 2021-02-02T14:25:58+09:00\n"
|
||||
"PO-Revision-Date: 2021-01-31 00:43+09:00\n"
|
||||
"Last-Translator: Kan-Ru Chen <kanru@kanru.info>\n"
|
||||
"Language-Team: Kan-Ru Chen <kanru@kanru.info>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: auto-login-with-cloudflare\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: settings.php:114 settings.php:115
|
||||
msgid "Auto Login with Cloudflare"
|
||||
msgstr "用 Cloudflare 自動登入"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/kanru/auto-login-with-cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allow login to Wordpress when using Cloudflare Access."
|
||||
msgstr "讓 Wordpress 可以用 Cloudflare Access 自動登入。"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Kan-Ru Chen"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/kanru"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:18
|
||||
msgid "Application settings"
|
||||
msgstr "應用程式設定"
|
||||
|
||||
#: settings.php:25
|
||||
msgid "Auth domain"
|
||||
msgstr "認證網域"
|
||||
|
||||
#: settings.php:37
|
||||
msgid "Application audience (AUD) tag"
|
||||
msgstr "應用程式代表碼 (AUD)"
|
||||
|
||||
#: settings.php:49
|
||||
msgid "Redirect login page"
|
||||
msgstr "重新導向登入頁"
|
||||
|
||||
#: settings.php:106
|
||||
msgid "redirect to Cloudflare Access"
|
||||
msgstr "自動重新導向登入頁面到 Cloudflare Access"
|
||||
|
||||
#: settings.php:136
|
||||
msgid "Save Settings"
|
||||
msgstr "儲存設定"
|
||||
|
||||
#: auto-login-with-cloudflare.php:187
|
||||
msgid "Settings"
|
||||
msgstr "設定"
|
||||
|
||||
#: auto-login-with-cloudflare.php:188
|
||||
msgid "Buy me a coffee"
|
||||
msgstr "贊助我一杯咖啡"
|
||||
@@ -0,0 +1,4 @@
|
||||
*** Avalon23 Products Filter Changelog ***
|
||||
|
||||
2020-11-20 - version 1.0.1
|
||||
* Initial release
|
||||
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"
|
||||
}
|
||||
}
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/boleto-cora/composer_file/package.json
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/boleto-cora/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "cora-woocommerce",
|
||||
"description": "Powerfully simple financial services",
|
||||
"version": "1.0",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"load-grunt-tasks": "0.2.0",
|
||||
"grunt-contrib-imagemin": "~0.4.0",
|
||||
"grunt-rsync": "~0.2.1",
|
||||
"grunt-shell": "~0.6.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8.0",
|
||||
"npm": ">=1.1.0"
|
||||
}
|
||||
}
|
||||
2361
spec/fixtures/dynamic_finders/plugin_version/booking-x/translation_file/languages/bookingx.pot
vendored
Normal file
2361
spec/fixtures/dynamic_finders/plugin_version/booking-x/translation_file/languages/bookingx.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,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 ""
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/carousel-glider-js/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/carousel-glider-js/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "static",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"dependencies": {
|
||||
"bulma": "^0.8.0",
|
||||
"bulma-extensions": "^6.2.7",
|
||||
"chart.js": "^2.9.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.26.7",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-clean-css": "^4.3.0",
|
||||
"gulp-group-css-media-queries": "^1.2.2",
|
||||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-rename": "^2.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-uglify-es": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/category-archives-block/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/category-archives-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "category-archives-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Displays a monthly or yearly archive of posts for one ore more specific categories.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^5.2.2",
|
||||
"@wordpress/blocks": "^6.25.2",
|
||||
"@wordpress/i18n": "^3.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^13.0.1"
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
97
spec/fixtures/dynamic_finders/plugin_version/chillpay-payment-gateway/change_log/CHANGELOG.md
vendored
Normal file
97
spec/fixtures/dynamic_finders/plugin_version/chillpay-payment-gateway/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
# CHANGELOG
|
||||
|
||||
### 'v2.0.0 (Nov 2, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support Installment Payment (KBANK).
|
||||
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Using CURL Instead of HTTP API.
|
||||
- Code Refactoring, simplifying Callback and Result function.
|
||||
- Code Refactoring, simplifying ChillPay setting process.
|
||||
- ChillPay Setting Page, sanitizing input fields before save.
|
||||
- Added label to show mode on setting page.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.8.0 (Aug 14, 2020)'
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Add an enabled button to create new order in case of failed status.
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Adjust Updating Process for Order Status.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.7.1 (May 7, 2020)'
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Auto check when there is one channel.
|
||||
- Support custom incrementing order numbers for WooCommerce orders.
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Adjust Updating Process for Order Status.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.7.0 (, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support Alipay Payment.
|
||||
- Support WeChat Pay Payment.
|
||||
- Split Input Text on SandBox/PROD Mode
|
||||
|
||||
---
|
||||
|
||||
### 'v1.6.0 (Jan 7, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Add menu ChillPay : Manual sync payment status
|
||||
- Add process auto sync payment status
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.9 (Dec 26, 2019)`
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support multi currency.
|
||||
- Support Bill Payment.
|
||||
- Show payment methods as informed to ChillPay.
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Separate Mobile Banking from the Internet Banking.
|
||||
- Add URL Background (callback function) to use for sending payment results to the system.
|
||||
- Improve the UI of the payment methods.
|
||||
- Use Mode selection instead of copying the api url.
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.8 (Aug 20, 2019)`
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Error when user enter the mobile number that is not connected to the K PLUS.
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.7 (May 28, 2019)`
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Fix customer information retrieval.
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Add input text api url.
|
||||
46
spec/fixtures/dynamic_finders/plugin_version/cision-modules/composer_file/composer.json
vendored
Normal file
46
spec/fixtures/dynamic_finders/plugin_version/cision-modules/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "cyclonecode/cision-modules",
|
||||
"type": "wordpress-plugin",
|
||||
"version": "1.0.0",
|
||||
"keywords": [
|
||||
"cision",
|
||||
"modules",
|
||||
"ticker"
|
||||
],
|
||||
"description": "Cision client modules.",
|
||||
"require": {
|
||||
"composer/installers": "^1.6",
|
||||
"php": ">=5.4",
|
||||
"cyclonecode/plugin": "^1.0.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"squizlabs/php_codesniffer": "^3.5.8"
|
||||
},
|
||||
"time": "2021-01-28",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"readme": "readme.txt",
|
||||
"homepage": "https://wordpress.org/plugins/cision-modules",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Cyclonecode",
|
||||
"email": "cyclonecode@gmail.com",
|
||||
"role": "Maintainer"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"email": "cyclonecode.help@gmail.com",
|
||||
"issues": "https://wordpress.org/support/plugin/cision-modules/",
|
||||
"source": "https://plugins.trac.wordpress.org/browser/cision-modules/",
|
||||
"docs": "https://wordpress.org/plugins/cision-modules/#description",
|
||||
"rss": "https://plugins.trac.wordpress.org/log/cision-modules/?limit=100&mode=stop_on_copy&format=rss",
|
||||
"chat": "https://join.slack.com/t/cyclonecode/shared_invite/zt-6bdtbdab-n9QaMLM~exHP19zFDPN~AQ"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"CisionModules\\": [
|
||||
"src/"
|
||||
]
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable"
|
||||
}
|
||||
@@ -0,0 +1,390 @@
|
||||
# Copyright (C) 2021 AitThemes
|
||||
# This file is distributed under the same license as the Citadela Directory Plugin Lite plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Citadela Directory Plugin Lite 1.0.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/citadela-directory-lite\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-05T10:09:17+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: citadela-directory-lite\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Citadela Directory Plugin Lite"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.citadelawp.com/wordpress-plugins/free-directory-plugin/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create directory listing website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.citadelawp.com/"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:71
|
||||
msgid "Full Version"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:141
|
||||
msgid "Posted on"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:182
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:200
|
||||
msgid "Comments<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:214
|
||||
msgid "Comment<span class=\"screen-reader-text\"> on %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:219
|
||||
msgid "Comments<span class=\"screen-reader-text\"> on %s"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:399
|
||||
msgid "Citadela Directory Lite Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:22
|
||||
msgid "%s plugin and PHP incompatiblity"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:22
|
||||
#: plugin/compatibility.php:27
|
||||
#: plugin/compatibility.php:56
|
||||
#: plugin/compatibility.php:61
|
||||
#: plugin/compatibility.php:77
|
||||
#: plugin/compatibility.php:79
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:17
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:27
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:45
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:47
|
||||
#: plugin/settings/CitadelaDirectorySettings.php:25
|
||||
#: plugin/settings/CitadelaDirectorySettings.php:26
|
||||
msgid "Citadela Directory Lite"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. url to upgrading guide, 2. plugin's name
|
||||
#: plugin/compatibility.php:25
|
||||
msgid "We've noticed that you're running an outdated version of PHP which is no longer supported, therefore <em>the plugin was deactivated</em>. Make sure your site is fast and secure, by <a href='%1$s'>upgrading PHP to the latest version</a>. Minimal requirement for %2$s is <strong>PHP 5.6.20</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:56
|
||||
msgid "%s plugin and WordPress incompatiblity"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. url to WordPress Update page, 2. plugin's name
|
||||
#: plugin/compatibility.php:59
|
||||
msgid "We've noticed that you're running an outdated version of WordPress, therefore <em>the plugin was deactivated</em>. Make sure your site is secure and up to date, by <a href='%1$s'>updating WordPress to the latest version</a>. Minimal requirement for %2$s is <strong>WordPress 5.2</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:77
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:17
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:27
|
||||
msgid "%s plugin could not be activated"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:79
|
||||
msgid "You have already active Citadela Directory plugin, therefore the plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:22
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:70
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:14
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:28
|
||||
msgid "Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:35
|
||||
msgid "Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/templates/control-citadela_map.php:31
|
||||
msgid "Find address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/templates/control-citadela_map.php:69
|
||||
msgid "Couldn't find location, try different address."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:26
|
||||
msgctxt "post type general name"
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:27
|
||||
msgctxt "post type singular name"
|
||||
msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:28
|
||||
msgctxt "post type menu name"
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:29
|
||||
msgctxt "Item"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:30
|
||||
msgid "Add New Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:31
|
||||
msgid "Edit Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:32
|
||||
msgid "New Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:33
|
||||
msgid "View Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:34
|
||||
msgid "Search Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:35
|
||||
msgid "No Items found"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:36
|
||||
msgid "No Items found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:37
|
||||
msgid "All Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:86
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:94
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:98
|
||||
msgid "Opening Hours"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:112
|
||||
msgid "Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:134
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:35
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:141
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:45
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:148
|
||||
msgid "Show Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:149
|
||||
msgid "Decide if email address is visible for visitors"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:155
|
||||
msgid "Website Link"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:156
|
||||
msgid "Use correct full website url"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:163
|
||||
msgid "Website Link Label"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:164
|
||||
msgid "Text displayed instead of full website url"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemMetabox.php:66
|
||||
msgid "Item Options"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/archive-item-page-title.php:8
|
||||
msgid "Archives: "
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/archive-item-page-title.php:9
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/content-none.php:12
|
||||
msgid "It seems we can’t find what you’re looking for."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:62
|
||||
msgid "View more"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:77
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:55
|
||||
msgid "Web"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:25
|
||||
msgid "GPS"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:18
|
||||
msgid "You have already active Citadela Directory plugin, therefore the free version of plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:28
|
||||
msgid "Plugin is not compatible with the current active theme."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:45
|
||||
msgid "%s plugin incompatibility"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:47
|
||||
msgid "Recently activated theme is not compatible with %s plugin, therefore the plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:7
|
||||
msgid "Created by AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:8
|
||||
msgid "Thank you for installing Citadela Directory Lite by AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:9
|
||||
msgid "Citadela Directory Lite plugin allows you to add map with listing items to your WordPress website. Lite plugin is fully functional but only includes basic functionality. We also have a full version of Citadela Directory plugin that will allow you to do way more. Please see below for quick comparison."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:172
|
||||
msgid "Directory Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:196
|
||||
msgid "Directory Archive Pages"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:221
|
||||
msgid "Directory Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:250
|
||||
msgid "Directory Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:164
|
||||
#: blocks/directory-items-list/src/edit.js:29
|
||||
msgid "Items List Options"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:167
|
||||
#: blocks/directory-items-list/src/edit.js:33
|
||||
msgid "Number of items"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:177
|
||||
#: blocks/directory-items-list/src/edit.js:45
|
||||
msgid "Order by"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:180
|
||||
#: blocks/directory-items-list/src/edit.js:48
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:183
|
||||
#: blocks/directory-items-list/src/edit.js:49
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:186
|
||||
#: blocks/directory-items-list/src/edit.js:50
|
||||
msgid "Order number"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:189
|
||||
#: blocks/directory-items-list/src/edit.js:51
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:200
|
||||
#: blocks/directory-items-list/src/edit.js:63
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:203
|
||||
#: blocks/directory-items-list/src/edit.js:64
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:212
|
||||
#: blocks/directory-items-list/src/edit.js:74
|
||||
msgid "Show featured image"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:320
|
||||
#: blocks/directory-items-list/src/index.js:7
|
||||
msgid "Directory Items List"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:321
|
||||
#: blocks/directory-items-list/src/index.js:8
|
||||
msgid "Displays directory items in grid layout."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:431
|
||||
#: blocks/directory-map/src/index.js:7
|
||||
msgid "Directory Map"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:432
|
||||
#: blocks/directory-map/src/index.js:8
|
||||
msgid "Displays directory items on map."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/common-scripts/leaflet-maps-initializer.js:459
|
||||
#: blocks/components/leaflet-popup.js:34
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
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
@@ -1227,4 +1227,12 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
-->
|
||||
|
||||
|
||||
<!-- hyperise-opengraph-tags -->
|
||||
<!-- HR-2.6: -->
|
||||
|
||||
|
||||
<!-- prodalet -->
|
||||
<!--Start Prodalet code WordPress plugin vers 1.2 {literal}-->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "complianz-terms-conditions",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/i18n": "^3.9.0",
|
||||
"axios": "^0.21.1",
|
||||
"cgb-scripts": "^1.23.0",
|
||||
"composer": "^4.1.0",
|
||||
"mpdf": "^1.0.0",
|
||||
"po2json": "^1.0.0-beta-2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
***CHANGELOG***
|
||||
|
||||
|
||||
Version 1.0.0 - 09 March 2021
|
||||
|
||||
|
||||
* Initial release
|
||||
|
||||
@@ -0,0 +1,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"
|
||||
@@ -0,0 +1,299 @@
|
||||
# Copyright (C) 2021 dozentlms.com
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dozent LMS Certificate 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-20 19:02:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: DozentLMS Certificate\n"
|
||||
"Language-Team: DozentLMS Certificate\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: core/classes/Certificate_Download.php:46
|
||||
msgid "Download Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Download.php:128
|
||||
msgid "Course Not found"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Metabox.php:27
|
||||
msgid "Certificate Builder"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Metabox.php:111
|
||||
msgid "Perfect certificate image size : w-%s, h-%s"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:27
|
||||
msgid "Add New Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:28
|
||||
msgid "New Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:29
|
||||
msgid "Edit Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:30
|
||||
msgid "View Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:31 core/classes/WPDashboard.php:22
|
||||
#: core/views/certificates-list.php:13
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:32
|
||||
msgid "Search Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:33
|
||||
msgid "Parent Certificates:"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:34
|
||||
msgid "No lectures found."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:35
|
||||
msgid "No lectures found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:40
|
||||
msgid "Description."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Template.php:66
|
||||
msgid "Certificate Template"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Template.php:67
|
||||
msgid "Choose a certificate template to personalize your course certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:36
|
||||
msgid ""
|
||||
"%s PHP Version Upgrade Notice: %s In order to use %s, your server PHP "
|
||||
"version requires at least %s or greater"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:38
|
||||
msgid ""
|
||||
"Currently your server running PHP version %s which out of date, upgrade "
|
||||
"your PHP version"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:49
|
||||
msgid "In order to use %s Plugin, your server must have installed GD extension"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:93
|
||||
msgid ""
|
||||
"in order to work %s properly, you must need to activate the Dozent LMS Core "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:94
|
||||
msgid "Activate Dozent LMS Now"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:103
|
||||
msgid ""
|
||||
"in order to work %s properly, you must need to install the Dozent LMS Core "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:104
|
||||
msgid "Install Dozent LMS Now"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:134
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:138
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:139
|
||||
msgid "Set up certificate settings to control the Dozent LMS certificate plugin"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:143
|
||||
msgid "Course Specific Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:144
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:145
|
||||
msgid ""
|
||||
"Course-specific certificates allow instructors to choose certificate "
|
||||
"templates for each course."
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate.php:153
|
||||
msgid "Course Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:43
|
||||
msgid "Example Template"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:53
|
||||
msgid "Certificate Content"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:64
|
||||
msgid "Content Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:69
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:75
|
||||
msgid ""
|
||||
"Set total width of certificate content as per your certificate design, "
|
||||
"preferable width is 520"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:83 core/views/certificate_builder.php:174
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:97 core/views/certificate_builder.php:188
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:103
|
||||
#: core/views/certificate_builder.php:194
|
||||
msgid "Set font size, preferable 18"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:111
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:118
|
||||
msgid "Set color of the text"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:126
|
||||
msgid "Text Align"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:132
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:137
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:142
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:151
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:162
|
||||
msgid ""
|
||||
"Adjust top margin as per your designs requirement. To make center content, "
|
||||
"set left - auto, right - auto"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:169
|
||||
msgid "Student Name"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:206
|
||||
msgid "Test Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:15
|
||||
msgid "Add Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:44
|
||||
msgid "Set as Default"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:58 core/views/certificates-list.php:62
|
||||
msgid "Import Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:59
|
||||
msgid ""
|
||||
"Import pre-designed certificate to use those instants, you can always add "
|
||||
"your custom-designed certificate"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Dozent LMS Certificate"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.dozentlms.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&"
|
||||
"utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Dozent LMS Certificate allows students to receive a certificate when they "
|
||||
"completed any course."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "dozentlms.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.dozentlms.com/dozent-lms-certificate/?utm_source=wp-plugins&utm_"
|
||||
"campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:22
|
||||
msgctxt "post type general name"
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:23
|
||||
msgctxt "post type singular name"
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:24
|
||||
msgctxt "admin menu"
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:25
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:26
|
||||
msgctxt "certificate"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
3042
spec/fixtures/dynamic_finders/plugin_version/dozent/translation_file/languages/dozent.pot
vendored
Normal file
3042
spec/fixtures/dynamic_finders/plugin_version/dozent/translation_file/languages/dozent.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
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,67 @@
|
||||
# Copyright (C) 2021 Erika Gili
|
||||
# This file is distributed under the same license as the Email Fields for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Email Fields for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-fields-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-16T10:40:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: email-fields-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Email Fields for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.penguinet.it/progetti/email-fields-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Manage Reply To and BCC of the WooCommerce emails"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Erika Gili"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.penguinet.it"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:38
|
||||
msgid "Email Reply-To options"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:44
|
||||
msgid "\"Reply-To\" name"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:45
|
||||
msgid "How the Reply-To name appears in outgoing WooCommerce emails."
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:57
|
||||
msgid "\"Reply-To\" address"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:58
|
||||
msgid "The Reply-To email address in outgoing WooCommerce emails. Add only one."
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:85
|
||||
msgid "Email Bcc options"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:91
|
||||
msgid "\"Bcc\" address"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:92
|
||||
msgid "Add one blind carbon copy address in outgoing WooCommerce emails."
|
||||
msgstr ""
|
||||
46
spec/fixtures/dynamic_finders/plugin_version/emissary-for-woocommerce/change_log/changelog.txt
vendored
Normal file
46
spec/fixtures/dynamic_finders/plugin_version/emissary-for-woocommerce/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
=== Emissary for Woocommerce ===
|
||||
Contributors: jsaldanav
|
||||
Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
|
||||
Requires at least: 4.6
|
||||
Donate link: https://emissary.mx/
|
||||
Requires PHP: 5.2.17
|
||||
Tested up to: 5.6
|
||||
Stable tag: 1.0
|
||||
License: GPLv2 or later
|
||||
|
||||
The essential logistics software for your business. Show shipping costs based on purchase weight and zip codes.
|
||||
|
||||
== Description ==
|
||||
|
||||
Emissary for Woocommerce displays various shipping options based on weight, zip codes, and carrier coverage.
|
||||
|
||||
Major features in Emissary for Woocommerce include:
|
||||
|
||||
* Dynamic shipping costs.
|
||||
* includes extended zones.
|
||||
|
||||
== Installation ==
|
||||
|
||||
Upload the Emissary for woocommerce plugin to your blog, activate it, and then enter your Emissary.mx API key.
|
||||
|
||||
1, 2, 3: You're done!
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0 =
|
||||
*Release Date - 05 February 2021
|
||||
|
||||
* Release initial
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
Any questions or problems please report it to the emissary.mx chat
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.0 =
|
||||
Release initial
|
||||
|
||||
== Screenshots ==
|
||||
1. Emissary for Woocommerce configuration
|
||||
2. Emissary for woocommerce in the checkout
|
||||
@@ -0,0 +1,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 ""
|
||||
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
229
spec/fixtures/dynamic_finders/plugin_version/fail2wp/translation_file/languages/fail2wp.pot
vendored
Normal file
229
spec/fixtures/dynamic_finders/plugin_version/fail2wp/translation_file/languages/fail2wp.pot
vendored
Normal file
@@ -0,0 +1,229 @@
|
||||
# Fail2WP WordPress plugin <LANGUAGE> translation
|
||||
# Copyright (C) 2021 Joaquim Homrighausen
|
||||
# This file is distributed under the same license as the Fail2WP package.
|
||||
# Joaquim Homrighausen <joho@webbplatsen.se>, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: fail2wp 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-03 10:24+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Joaquim Homrighausen <joho@webbplatsen.se>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: fail2wp.php:184
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:240 fail2wp.php:245
|
||||
msgid "Unknown role"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:286
|
||||
msgid ""
|
||||
"Provides authentication related logging and security functions for "
|
||||
"WordPress, suitable for use with Fail2ban"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:289
|
||||
msgid "Basic configuration"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:292
|
||||
msgid "Logging"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:295
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:298
|
||||
msgid "Cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:301
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:307
|
||||
msgid ""
|
||||
"One or more of openlog(), closelog(), and/or syslog() seem to be missing on "
|
||||
"this system"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:355
|
||||
msgid "Thank you for installing"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:356
|
||||
msgid ""
|
||||
"This plugin provides security functions and integration between "
|
||||
"WordPress and"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:360
|
||||
msgid "Commercial support and customizations for this plugin is available from"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:362
|
||||
msgid "in Stockholm, Sweden. We speak Swedish and English"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:364
|
||||
msgid ""
|
||||
"The plugin is written by Joaquim Homrighausen and sponsored by WebbPlatsen i "
|
||||
"Sverige AB."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:365
|
||||
msgid ""
|
||||
"If you find this plugin useful, the author is happy to receive a donation, "
|
||||
"good review, or just a kind word."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:366
|
||||
msgid ""
|
||||
"If there is something you feel to be missing from this plugin, or if you "
|
||||
"have found a problem with the code or a feature, please do not hesitate to "
|
||||
"reach out to"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:381
|
||||
msgid "Site label"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:382
|
||||
msgid "Block user enum"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:383
|
||||
msgid "Block username login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:384
|
||||
msgid "Secure login messages"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:385
|
||||
msgid "Other settings"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:386
|
||||
msgid "Remove settings"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:389
|
||||
msgid "Successful login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:390
|
||||
msgid "Unsuccessful login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:395
|
||||
msgid "Logging prefix"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:396
|
||||
msgid "Also log to PHP log"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:399
|
||||
msgid "Check for Cloudflare IP"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:400
|
||||
msgid "Cloudflare IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:401
|
||||
msgid "Cloudflare IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:484
|
||||
msgid ""
|
||||
"The site name to use for logging, defaults to your site name if left empty"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:529
|
||||
msgid "Unknown users"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:537
|
||||
msgid "User enumeration attempts (i.e. your.site/...?author=nnn)"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:545
|
||||
msgid "Remove all plugin settings and data when plugin is uninstalled"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:553
|
||||
msgid "Block user enumeration attempts (i.e. your.site/...?author=nnn)"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:561
|
||||
msgid "Require users to login with their e-mail address"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:569
|
||||
msgid "Change login failure messages to contain less detail"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:577
|
||||
msgid ""
|
||||
"Please make sure you understand how these settings can impact the operation "
|
||||
"of the plugin before making changes to them."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:585
|
||||
msgid "These settings allows the plugin to better interact with Cloudflare."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:587
|
||||
msgid ""
|
||||
"If your site is not published via Cloudflare, you can safely ignore these "
|
||||
"settings."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:589
|
||||
msgid "For an updated list of Cloudflare IPs, please use this link"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:599
|
||||
msgid "The logging prefix, this should normally be left empty"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:606
|
||||
msgid "Log the same information to PHP log using error_log()"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:614
|
||||
msgid "Attempt to unmask real IP when Cloudflare IP is detected"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:626 fail2wp.php:637
|
||||
msgid ""
|
||||
"IPs matching these addresses will be considerd to be coming from Cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:962 fail2wp.php:966
|
||||
msgid "Please specify your e-mail address to login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:989
|
||||
msgid "E-mail address"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:1094 fail2wp.php:1122
|
||||
msgid "Invalid login credentials, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:1126
|
||||
msgid "Lost password"
|
||||
msgstr ""
|
||||
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,64 @@
|
||||
# Copyright (C) 2021 Lucia Dossin
|
||||
# This file is distributed under the same license as the FBC Latest Backup for UpdraftPlus plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FBC Latest Backup for UpdraftPlus 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fbc-latest-backup\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-03-12T14:02:27+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: fbc-latest-backup\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "FBC Latest Backup for UpdraftPlus"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a widget to the dashboard, letting you know the date and time of latest backup and how many edits were made since then, if any"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Lucia Dossin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:20
|
||||
msgid "No information available. Please make sure that UpdraftPlus Backup plugin is installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:57
|
||||
msgid "Edits since last backup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:59
|
||||
msgid "Edit since last backup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:67
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:70
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:73
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:80
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:91
|
||||
msgid "No information available. Please check if at least one backup has been made."
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:98
|
||||
#: admin/widget.php:106
|
||||
msgid "Latest Backup"
|
||||
msgstr ""
|
||||
@@ -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.
|
||||
1315
spec/fixtures/dynamic_finders/plugin_version/firebox/translation_file/languages/firebox.pot
vendored
Normal file
1315
spec/fixtures/dynamic_finders/plugin_version/firebox/translation_file/languages/firebox.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
23
spec/fixtures/dynamic_finders/plugin_version/firepro/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/firepro/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "firepro",
|
||||
"version": "0.1.0",
|
||||
"description": "Example block written with ESNext standard and JSX support – build step required.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "node compile/compile.js && wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1",
|
||||
"raw-loader": "^4.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/media-utils": "^1.18.0"
|
||||
}
|
||||
}
|
||||
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"
|
||||
}
|
||||
}
|
||||
1880
spec/fixtures/dynamic_finders/plugin_version/forumwp/translation_file/languages/forumwp-en_US.po
vendored
Normal file
1880
spec/fixtures/dynamic_finders/plugin_version/forumwp/translation_file/languages/forumwp-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||
}
|
||||
}
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/friends/composer_file/package.json
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/friends/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "Friends",
|
||||
"version": "1.5.4",
|
||||
"private": true,
|
||||
"description": "Blocks of the Friends Plugin for WordPress",
|
||||
"homepage": "https://wpfriends.at/",
|
||||
"repository": "git+https://github.com/akirk/friends.git",
|
||||
"author": "Alex Kirk",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [],
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^14.0.0",
|
||||
"lerna": "^3.20.2",
|
||||
"spectre.css": "^0.5.9"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "lerna run build",
|
||||
"lint:js": "lerna run lint:js",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json ./package.json ./blocks/*/package.json",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js:fix": "npm run lint:js -- --fix",
|
||||
"test": "wp-scripts test-unit-js",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,996 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Get-A-Quote 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-13 12:35+0530\n"
|
||||
"PO-Revision-Date: 2021-03-13 12:35+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: esc_html_e;__;_e;esc_html__;esc_attr_e;esc_url_raw;"
|
||||
"esc_url;esc_attr;esc_html;esc_attr__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:189
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:45
|
||||
msgid "Get A Quote"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:196
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:251
|
||||
msgid "Enable Quote Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:253
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:264 admin/class-get-a-quote-admin.php:435
|
||||
#: admin/class-get-a-quote-admin.php:455
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:282
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:283
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:284
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:288
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:289
|
||||
msgid "Please submit a ticket , our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:290
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:335
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:338
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:355
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:32
|
||||
msgid "Form Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:360
|
||||
msgid "Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:364
|
||||
msgid "Email Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:390
|
||||
msgid "Activate Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:400
|
||||
msgid "Get reply on email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:407
|
||||
msgid "Enter reply back email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:410
|
||||
msgid "Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:417
|
||||
msgid "Subject Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:420
|
||||
msgid "Email Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:429
|
||||
msgid "Message Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:484
|
||||
msgid "Enable Quote Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:492 admin/class-get-a-quote-admin.php:505
|
||||
#: includes/class-get-a-quote.php:461 includes/class-get-a-quote.php:464
|
||||
#: includes/class-get-a-quote.php:467
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:493 admin/class-get-a-quote-admin.php:506
|
||||
#: includes/class-get-a-quote.php:461 includes/class-get-a-quote.php:464
|
||||
#: includes/class-get-a-quote.php:467
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:497
|
||||
msgid "Enable Service Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:519
|
||||
msgid "Quote Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:543
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:57
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:552
|
||||
msgid "Quote Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:555
|
||||
#: common/class-get-a-quote-common.php:152
|
||||
msgid "Quote Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:557
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:69
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:87
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:558
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:89
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:116
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:559
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
msgid "get-a-quote-support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:51
|
||||
msgid "&gaq_tab="
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:18
|
||||
msgid "admin/src/images/overview-banner.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:22
|
||||
msgid "What is Get A Quote for WordPress?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:26
|
||||
msgid ""
|
||||
"Get A Quote for WordPress plugin helps you create & add a quotation form on "
|
||||
"your WordPress website. Users can fill this form to submit a request for a "
|
||||
"quotation of the required services. With this plugin, you can add multiple "
|
||||
"statuses for\n"
|
||||
"\t\t\t\tyour quotations, multiple services in the form, & acknowledge users "
|
||||
"through an email for the successful submission of their quote request."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:32
|
||||
msgid "With our Get A Quote for WordPress plugin you can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:34
|
||||
msgid "Add a quote form on your website"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:35
|
||||
msgid "Notify customers for their quote submission through emails"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:36
|
||||
msgid "Enable/Disable your quotation form fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:37
|
||||
msgid "Enable/Disable service and quote status taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:38
|
||||
msgid "Add different statuses for your quotation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:45
|
||||
msgid "admin/src/images/Quotation-Form.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:48
|
||||
msgid "Quotation Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:52
|
||||
msgid ""
|
||||
"The plugin provides a quotation form you can add on your website. Customers "
|
||||
"will fill this form to submit a quotation request on your website. As soon "
|
||||
"as you install and activate our Get A Quote plugin, this form will "
|
||||
"automatically\n"
|
||||
"\t\t\t\t\t\t\tbe created."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:64
|
||||
msgid "admin/src/images/taxonomy.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:67
|
||||
msgid "Service and quote status taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:68
|
||||
msgid ""
|
||||
"The plugin provides you two different types of taxonomies. <b>1) Quote "
|
||||
"Service Taxonomy</b>, <b>2) Quote Status Taxonomy</b>. Merchants can enable/"
|
||||
"disable these taxonomies as per their requirements."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:75
|
||||
msgid "admin/src/images/Multiple-Quotation-Status.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:78
|
||||
msgid "Multiple quotation statuses"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:79
|
||||
msgid ""
|
||||
"Our Get A Quote plugin helps merchants to create multiple statuses for "
|
||||
"quotations. Admin can check and change the status for a particular quote."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:86
|
||||
msgid "admin/src/images/services.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:89
|
||||
msgid "Multiple services"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:93
|
||||
msgid ""
|
||||
"With this plugin, merchants can create multiple services to offer. Customers "
|
||||
"will be able to select these services through the quotation form you added "
|
||||
"to your website. These services will be displayed in the Services field of\n"
|
||||
"\t\t\t\t\t\t\tyour quotation form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:105
|
||||
msgid "admin/src/images/acknowledgement.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:108
|
||||
msgid "Submission Acknowledgement through email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:112
|
||||
msgid ""
|
||||
"Our Get A Quote plugin also lets you send an acknowledgment email to the "
|
||||
"user whenever s/he submits the quote requests. You can create and save your "
|
||||
"email subject and message which will be sent to the user to notify them "
|
||||
"about\n"
|
||||
"\t\t\t\t\t\t\ttheir successful submission of their quote request."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:124
|
||||
msgid "Exclusive Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:125
|
||||
msgid "Receive dedicated "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:125
|
||||
msgid "24x7 "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:128
|
||||
msgid ""
|
||||
"Phone, Email & Skype support. Our Support is ready to assist you regarding "
|
||||
"any query, issue, or feature request and if that doesn't help our Technical "
|
||||
"team will connect with you personally and have your query\n"
|
||||
"\t\t\t\t\tresolved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:145
|
||||
msgid "Connect with us in one click"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:146
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-email-setting.php:38
|
||||
#: admin/partials/get-a-quote-taxonomies.php:44
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:20
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:18
|
||||
msgid "admin/src/images/mwb-logo1.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:32
|
||||
msgid "(current)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:35
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:30
|
||||
msgid "Preview Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:41
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:52
|
||||
msgid "Save Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:57
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:105
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:61
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:65
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:67
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:73
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:77
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:96
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:81
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:77
|
||||
msgid "Zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:85
|
||||
msgid "Budget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:93
|
||||
msgid "Additional"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:101
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:103
|
||||
msgid "Placeholder-Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:36
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:18
|
||||
msgid "Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:19
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:20
|
||||
msgid "Operation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:23
|
||||
msgid "Contact Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:25
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:64
|
||||
#: common/class-get-a-quote-common.php:153
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:65
|
||||
msgid "Add Status Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:66
|
||||
#: admin/partials/get-a-quote-taxonomies.php:82
|
||||
msgid "Active Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:70
|
||||
#: admin/partials/get-a-quote-taxonomies.php:86
|
||||
msgid "Term Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:80
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:46
|
||||
#: common/class-get-a-quote-common.php:114
|
||||
msgid "Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:81
|
||||
msgid "Add Service Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:38
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:106
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:125
|
||||
msgid "Additional Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:136
|
||||
msgid "Attached File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:150
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:152
|
||||
msgid "No File Selected"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:72
|
||||
#: common/class-get-a-quote-common.php:83
|
||||
msgid "Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:73
|
||||
#: common/class-get-a-quote-common.php:140
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:74
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:75
|
||||
msgid "Add New Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:76
|
||||
msgid "Edit Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:77
|
||||
msgid "New Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:78
|
||||
msgid "All Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:79
|
||||
msgid "View Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:80
|
||||
msgid "Search Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:81
|
||||
msgid "No Quotes Found"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:82
|
||||
msgid "No Quotes Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:113
|
||||
#: common/class-get-a-quote-common.php:123
|
||||
msgid "Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:115
|
||||
msgid "Search Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:116
|
||||
msgid "All Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:117
|
||||
msgid "Parent Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:118
|
||||
msgid "Parent Service:"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:119
|
||||
msgid "Edit Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:120
|
||||
msgid "Update Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:121
|
||||
msgid "Add New Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:122
|
||||
msgid "New Service Name"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:139
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:154
|
||||
msgid "Search Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:155
|
||||
msgid "All Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:156
|
||||
msgid "Parent Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:157
|
||||
msgid "Parent Status:"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:158
|
||||
msgid "Edit Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:159
|
||||
msgid "Update Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:160
|
||||
msgid "Add New Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:161
|
||||
msgid "New Status Name"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:162
|
||||
msgid "Quote Statuses"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:178
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:179
|
||||
msgid "Pending For Review"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:28
|
||||
msgid "x"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:32
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:42
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:34
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:35
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:45
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: get-a-quote.php:76 get-a-quote.php:82
|
||||
msgid "get-a-quote"
|
||||
msgstr ""
|
||||
|
||||
#: get-a-quote.php:149
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1834
|
||||
msgid "A Coruña"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1835
|
||||
msgid "Araba"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1836
|
||||
msgid "Albacete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1837
|
||||
msgid "Alicante"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1838
|
||||
msgid "Almería"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1839
|
||||
msgid "Asturias"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1840
|
||||
msgid "Ávila"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1841
|
||||
msgid "Badajoz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1842
|
||||
msgid "Baleares"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1843
|
||||
msgid "Barcelona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1844
|
||||
msgid "Burgos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1845
|
||||
msgid "Cáceres"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1846
|
||||
msgid "Cádiz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1847
|
||||
msgid "Cantabria"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1848
|
||||
msgid "Castellón"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1849
|
||||
msgid "Ceuta"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1850
|
||||
msgid "Ciudad Real"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1851
|
||||
msgid "Córdoba"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1852
|
||||
msgid "Cuenca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1853
|
||||
msgid "Girona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1854
|
||||
msgid "Granada"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1855
|
||||
msgid "Guadalajara"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1856
|
||||
msgid "Gipuzkoa"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1857
|
||||
msgid "Huelva"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1858
|
||||
msgid "Huesca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1859
|
||||
msgid "Jaén"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1860
|
||||
msgid "La Rioja"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1861
|
||||
msgid "Las Palmas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1862
|
||||
msgid "León"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1863
|
||||
msgid "Lleida"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1864
|
||||
msgid "Lugo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1865
|
||||
msgid "Madrid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1866
|
||||
msgid "Málaga"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1867
|
||||
msgid "Melilla"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1868
|
||||
msgid "Murcia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1869
|
||||
msgid "Navarra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1870
|
||||
msgid "Ourense"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1871
|
||||
msgid "Palencia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1872
|
||||
msgid "Pontevedra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1873
|
||||
msgid "Salamanca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1874
|
||||
msgid "Santa Cruz de Tenerife"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1875
|
||||
msgid "Segovia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1876
|
||||
msgid "Sevilla"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1877
|
||||
msgid "Soria"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1878
|
||||
msgid "Tarragona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1879
|
||||
msgid "Teruel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1880
|
||||
msgid "Toledo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1881
|
||||
msgid "Valencia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1882
|
||||
msgid "Valladolid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1883
|
||||
msgid "Bizkaia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1884
|
||||
msgid "Zamora"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1885
|
||||
msgid "Zaragoza"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-activator.php:60
|
||||
msgid "Quote Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-activator.php:62
|
||||
msgid "[gaq_form_fields]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:183
|
||||
msgid "Name field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:186
|
||||
msgid "Name is to be character or alphanumeric."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:199
|
||||
msgid "Email field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:203
|
||||
msgid "Invalid email format."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:212
|
||||
msgid "Phone field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:219
|
||||
msgid "Enter numbers only in Phone field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:224
|
||||
msgid "Enter only number in Phone field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:234
|
||||
msgid "Only characters are allowed in City field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:245
|
||||
msgid "Invalid Zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:254
|
||||
msgid "Only numbers are not allowed in State."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:264
|
||||
msgid "Only numbers are not allowed in Country."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:355
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:379
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:437
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:446
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:449
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:452
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:455
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:458
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:470
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:473
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:476 includes/class-get-a-quote.php:482
|
||||
#: includes/class-get-a-quote.php:485 includes/class-get-a-quote.php:513
|
||||
#: includes/class-get-a-quote.php:516
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:479
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:497
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:500 includes/class-get-a-quote.php:509
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:519
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:330
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:347
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:382
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:392
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:635
|
||||
msgid "Select Any One Option..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:893
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/get-a-quote-public-display.php:43
|
||||
msgid "Type Of Service"
|
||||
msgstr ""
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/gev-email-validator/change_log/CHANGELOG.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/gev-email-validator/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 2021-02-09
|
||||
@@ -0,0 +1,163 @@
|
||||
# Copyright (C) 2021 maranqz
|
||||
# This file is distributed under the same license as the GEV Email Validator plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GEV Email Validator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gev-email-validator\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-09T16:11:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "GEV Email Validator"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The Cheapest advanced Email Address Validation to forms. Prevents typos in email address field and eliminates spam submissions with fake email addresses. The solution is based on <a href=\"https://rapidapi.com/maranqz/api/email-validator15\" target=\"_blank\">Email Validator</a> service."
|
||||
msgstr "Самая дешевая настраиваемая проверка адреса электронной почты (email) для форм. Предотвращает опечатки в поле адреса электронной почты и устраняет спам с поддельных адресов. Решение основано на сервисе <a href=\"https://rapidapi.com/maranqz/api/email-validator15\" target=\"_blank\">Email Validator</a>."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "maranqz"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-email-validator-admin.php:167
|
||||
msgid "Email Validator Settings"
|
||||
msgstr "Email Validator Настройки"
|
||||
|
||||
#: admin/class-email-validator-admin.php:173
|
||||
msgid "API Key"
|
||||
msgstr "API ключ"
|
||||
|
||||
#: admin/class-email-validator-admin.php:183
|
||||
msgid "Verify API Key"
|
||||
msgstr "Проверить API ключ"
|
||||
|
||||
#: admin/class-email-validator-admin.php:184
|
||||
#: admin/partials/email-validator-admin-display.php:27
|
||||
msgid "Checking..."
|
||||
msgstr "Проверка..."
|
||||
|
||||
#: admin/class-email-validator-admin.php:188
|
||||
msgid "You can find the key in <a href=\"https://rapidapi.com/developer/security/\" target=\"_blank\">Rapid Api</a>, <a href=\"https://docs.rapidapi.com/docs/keys\" target=\"_blank\">Documentation</a>."
|
||||
msgstr "Вы можете найти ключ на <a href=\"https://rapidapi.com/developer/security/\" target=\"_blank\">Rapid Api</a>, <a href=\"https://docs.rapidapi.com/docs/keys\" target=\"_blank\">Документация</a>."
|
||||
|
||||
#: admin/class-email-validator-admin.php:195
|
||||
msgid "Block Invalid Email"
|
||||
msgstr "Блокировать невальдный email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:201
|
||||
msgid "Block Role-Based Email"
|
||||
msgstr "Блокировать ролевой email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:207
|
||||
msgid "Block Free Email"
|
||||
msgstr "Блокировать бесплатный email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:213
|
||||
msgid "Block Disposable Email"
|
||||
msgstr "Блокировать одноразовый email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:219
|
||||
msgid "Block UnDeliverable Email"
|
||||
msgstr "Блокировать недоставляемый email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:225
|
||||
msgid "Use in WP-Admin"
|
||||
msgstr "Использовать в WP-Admin"
|
||||
|
||||
#: admin/class-email-validator-admin.php:231
|
||||
msgid "Pages to Skip"
|
||||
msgstr "Страницы для пропуска"
|
||||
|
||||
#: admin/class-email-validator-admin.php:235
|
||||
msgid "One line one page as regular expression"
|
||||
msgstr "Одна линия, одна страница в виде регулярного выражения"
|
||||
|
||||
#: admin/class-email-validator-admin.php:243
|
||||
msgid "Emails to Skip"
|
||||
msgstr "Emailы для пропуска"
|
||||
|
||||
#: admin/class-email-validator-admin.php:247
|
||||
msgid "One line one email as regular expression"
|
||||
msgstr "Одна линия, один email в виде регулярного выражения"
|
||||
|
||||
#: admin/class-email-validator-admin.php:254
|
||||
msgid "Integration with"
|
||||
msgstr "Интеграция с"
|
||||
|
||||
#: admin/class-email-validator-admin.php:271
|
||||
msgid "Please enter a API Key and click \"Save\"."
|
||||
msgstr "Пожалуйста введите API ключ и нажмите «Сохранить»."
|
||||
|
||||
#: admin/class-email-validator-admin.php:294
|
||||
msgid "API Key is valid. Click \"Save\" button below."
|
||||
msgstr "API ключ достоверный. Нажмите кнопку «Сохранить» ниже."
|
||||
|
||||
#: admin/class-email-validator-admin.php:329
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: admin/class-email-validator-admin.php:343
|
||||
msgid "On"
|
||||
msgstr "Вкл."
|
||||
|
||||
#: admin/class-email-validator-admin.php:347
|
||||
msgid "Off"
|
||||
msgstr "Выкл."
|
||||
|
||||
#: admin/class-email-validator-admin.php:379
|
||||
msgid "Reset default value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:15
|
||||
msgid "Save"
|
||||
msgstr "Сохранить"
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:19
|
||||
msgid "Email Validation Demo"
|
||||
msgstr "Email Validation Демонстрация"
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:20
|
||||
msgid "You can use this form to see how Email Validator validates email addresses."
|
||||
msgstr "Вы можете использовать эту форму, чтобы увидеть, как Email Validator проверяет адреса электронной почты."
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:26
|
||||
msgid "Validate Email"
|
||||
msgstr "Проверить Email"
|
||||
|
||||
#: includes/class-email-validator-validator.php:26
|
||||
msgid "Please enter a "
|
||||
msgstr "Пожалуйста введите "
|
||||
|
||||
#: includes/class-email-validator-validator.php:27
|
||||
msgid " email address."
|
||||
msgstr " email."
|
||||
|
||||
#: includes/class-email-validator-validator.php:30
|
||||
msgid "valid"
|
||||
msgstr "валидный"
|
||||
|
||||
#: includes/class-email-validator-validator.php:31
|
||||
msgid "non-free"
|
||||
msgstr "небесплатный"
|
||||
|
||||
#: includes/class-email-validator-validator.php:32
|
||||
msgid "non-disposable"
|
||||
msgstr "неодноразовый"
|
||||
|
||||
#: includes/class-email-validator-validator.php:33
|
||||
msgid "non-role"
|
||||
msgstr "неролевой"
|
||||
|
||||
#: includes/class-email-validator-validator.php:34
|
||||
msgid "existing"
|
||||
msgstr "существующий"
|
||||
|
||||
#: includes/class-email-validator-validator.php:92
|
||||
msgid "Address is valid."
|
||||
msgstr "Адрес действителен."
|
||||
@@ -0,0 +1,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 "您好"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user