Compare commits
29 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 |
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
|
||||
4
.github/workflows/build.yml
vendored
4
.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@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 }}
|
||||
|
||||
|
||||
2
.github/workflows/gempush.yml
vendored
2
.github/workflows/gempush.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
steps:
|
||||
- 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>
|
||||
|
||||
@@ -6,7 +6,8 @@ module WPScan
|
||||
class Aliases < CMSScanner::Controller::Base
|
||||
def cli_options
|
||||
[
|
||||
OptAlias.new(['--stealthy'], alias_for: '--random-user-agent --detection-mode passive')
|
||||
OptAlias.new(['--stealthy'],
|
||||
alias_for: '--random-user-agent --detection-mode passive --plugins-version-detection passive')
|
||||
]
|
||||
end
|
||||
end
|
||||
|
||||
@@ -32,7 +32,8 @@ module WPScan
|
||||
value_if_empty: '1-100')
|
||||
},
|
||||
value_if_empty: 'vp,vt,tt,cb,dbe,u,m',
|
||||
incompatible: [%i[vp ap p], %i[vt at t]]
|
||||
incompatible: [%i[vp ap p], %i[vt at t]],
|
||||
default: { all_plugins: true, config_backups: true }
|
||||
),
|
||||
OptRegexp.new(
|
||||
[
|
||||
@@ -51,7 +52,7 @@ module WPScan
|
||||
OptChoice.new(
|
||||
['--plugins-detection MODE',
|
||||
'Use the supplied mode to enumerate Plugins.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :passive
|
||||
),
|
||||
OptBoolean.new(
|
||||
['--plugins-version-all',
|
||||
@@ -62,7 +63,7 @@ module WPScan
|
||||
OptChoice.new(
|
||||
['--plugins-version-detection MODE',
|
||||
'Use the supplied mode to check plugins\' versions.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :mixed
|
||||
),
|
||||
OptInteger.new(
|
||||
['--plugins-threshold THRESHOLD',
|
||||
|
||||
@@ -200,7 +200,7 @@ module WPScan
|
||||
# If the --enumerate is used, the default value is handled by the Option
|
||||
# However, when using --passwords alone, the default has to be set by the code below
|
||||
def enum_users_range
|
||||
ParsedCli.enumerate&.dig(:users) || cli_enum_choices[0].choices[:u].validate(nil)
|
||||
ParsedCli.enumerate[:users] || cli_enum_choices[0].choices[:u].validate(nil)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -39,18 +39,57 @@ module WPScan
|
||||
#
|
||||
# @return [ Hash ]
|
||||
def potential_urls(opts = {})
|
||||
urls = {}
|
||||
domain_name = (PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
urls = {}
|
||||
index = 0
|
||||
|
||||
File.open(opts[:list]).each_with_index do |path, index|
|
||||
path.gsub!('{domain_name}', domain_name)
|
||||
File.open(opts[:list]).each do |path|
|
||||
path.chomp!
|
||||
|
||||
urls[target.url(path.chomp)] = index
|
||||
if path.include?('{domain_name}')
|
||||
urls[target.url(path.gsub('{domain_name}', domain_name))] = index
|
||||
|
||||
if domain_name != domain_name_with_sub
|
||||
urls[target.url(path.gsub('{domain_name}', domain_name_with_sub))] = index + 1
|
||||
|
||||
index += 1
|
||||
end
|
||||
else
|
||||
urls[target.url(path)] = index
|
||||
end
|
||||
|
||||
index += 1
|
||||
end
|
||||
|
||||
urls
|
||||
end
|
||||
|
||||
def domain_name
|
||||
@domain_name ||= if Resolv::AddressRegex.match?(target.uri.host)
|
||||
target.uri.host
|
||||
else
|
||||
(PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
end
|
||||
end
|
||||
|
||||
def domain_name_with_sub
|
||||
@domain_name_with_sub ||=
|
||||
if Resolv::AddressRegex.match?(target.uri.host)
|
||||
target.uri.host
|
||||
else
|
||||
parsed = PublicSuffix.parse(target.uri.host)
|
||||
|
||||
if parsed.subdomain
|
||||
parsed.subdomain.gsub(".#{parsed.tld}", '')
|
||||
elsif parsed.domain
|
||||
parsed.domain.gsub(".#{parsed.tld}", '')
|
||||
else
|
||||
target.uri.host
|
||||
end
|
||||
end
|
||||
rescue PublicSuffix::DomainNotAllowed
|
||||
@domain_name_with_sub = target.uri.host
|
||||
end
|
||||
|
||||
def create_progress_bar(opts = {})
|
||||
super(opts.merge(title: ' Checking DB Exports -'))
|
||||
end
|
||||
|
||||
@@ -162,7 +162,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Typhoeus::Response ]
|
||||
def head_and_get(path, codes = [200], params = {})
|
||||
final_path = +@path_from_blog
|
||||
final_path = @path_from_blog.dup # @path_from_blog is set in the plugin/theme
|
||||
final_path << path unless path.nil?
|
||||
|
||||
blog.head_and_get(final_path, codes, params)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<% if @version -%>
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.capitalize %>, released on <%= @version.release_date %>).
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.tr('-', '_').humanize %>, released on <%= @version.release_date %>).
|
||||
<%= render('@finding', item: @version) -%>
|
||||
<% else -%>
|
||||
<%= notice_icon %> The WordPress version could not be detected.
|
||||
|
||||
@@ -13,6 +13,7 @@ require 'uri'
|
||||
require 'time'
|
||||
require 'readline'
|
||||
require 'securerandom'
|
||||
require 'resolv'
|
||||
# Monkey Patches/Fixes/Override
|
||||
require 'wpscan/typhoeus/response' # Adds a from_vuln_api? method
|
||||
# Custom Libs
|
||||
|
||||
@@ -11,7 +11,11 @@ module WPScan
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.all_df_data
|
||||
@all_df_data ||= YAML.safe_load(File.read(df_file), [Regexp])
|
||||
@all_df_data ||= if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('4.0.0')
|
||||
YAML.safe_load(File.read(df_file), permitted_classes: [Regexp])
|
||||
else
|
||||
YAML.safe_load(File.read(df_file), [Regexp])
|
||||
end
|
||||
end
|
||||
|
||||
# @return [ Array<Symbol> ]
|
||||
|
||||
@@ -125,14 +125,14 @@ module WPScan
|
||||
return @uri.to_s unless path
|
||||
|
||||
if %r{wp-content/plugins}i.match?(path)
|
||||
path = +path.gsub('wp-content/plugins', plugins_dir)
|
||||
new_path = path.gsub('wp-content/plugins', plugins_dir)
|
||||
elsif /wp-content/i.match?(path)
|
||||
path = +path.gsub('wp-content', content_dir)
|
||||
new_path = path.gsub('wp-content', content_dir)
|
||||
elsif path[0] != '/' && sub_dir
|
||||
path = "#{sub_dir}/#{path}"
|
||||
new_path = "#{sub_dir}/#{path}"
|
||||
end
|
||||
|
||||
super(path)
|
||||
super(new_path || path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.9.0-dev'
|
||||
VERSION = '3.8.18'
|
||||
end
|
||||
|
||||
@@ -21,7 +21,9 @@ describe WPScan::Controller::Aliases do
|
||||
describe 'parsed_options' do
|
||||
context 'when no --stealthy supplied' do
|
||||
it 'contains the correct options' do
|
||||
expect(WPScan::ParsedCli.options).to include(detection_mode: :mixed)
|
||||
expect(WPScan::ParsedCli.options).to include(
|
||||
detection_mode: :mixed, plugins_version_detection: :mixed
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -29,7 +31,9 @@ describe WPScan::Controller::Aliases do
|
||||
let(:cli_args) { "#{super()} --stealthy" }
|
||||
|
||||
it 'contains the correct options' do
|
||||
expect(WPScan::ParsedCli.options).to include(random_user_agent: true, detection_mode: :passive)
|
||||
expect(WPScan::ParsedCli.options).to include(
|
||||
random_user_agent: true, detection_mode: :passive, plugins_version_detection: :passive
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -29,7 +29,7 @@ describe WPScan::Controller::Enumeration do
|
||||
let(:type) { t }
|
||||
let(:detection_mode) { :mixed }
|
||||
|
||||
context 'when vulnerable and mixed detection' do
|
||||
context 'when vulnerable' do
|
||||
let(:cli_args) { "#{super()} -e v#{type[0]}" }
|
||||
|
||||
it 'returns the expected string' do
|
||||
@@ -37,7 +37,7 @@ describe WPScan::Controller::Enumeration do
|
||||
end
|
||||
end
|
||||
|
||||
context 'when all and passive detection' do
|
||||
context 'when all' do
|
||||
let(:cli_args) { "#{super()} -e a#{type[0]}" }
|
||||
let(:detection_mode) { :passive }
|
||||
|
||||
@@ -46,7 +46,7 @@ describe WPScan::Controller::Enumeration do
|
||||
end
|
||||
end
|
||||
|
||||
context 'when most popular and aggressive detection' do
|
||||
context 'when most popular' do
|
||||
let(:cli_args) { "#{super()} -e #{type[0]}" }
|
||||
let(:detection_mode) { :aggressive }
|
||||
|
||||
@@ -58,6 +58,14 @@ describe WPScan::Controller::Enumeration do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#default_opts' do
|
||||
context 'when no --enumerate' do
|
||||
it 'contains the correct version_detection' do
|
||||
expect(controller.default_opts('plugins')[:version_detection]).to include(mode: :mixed)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#cli_options' do
|
||||
it 'contains the correct options' do
|
||||
expect(controller.cli_options.map(&:to_sym)).to eql(
|
||||
@@ -96,6 +104,17 @@ describe WPScan::Controller::Enumeration do
|
||||
|
||||
describe '#run' do
|
||||
context 'when no :enumerate' do
|
||||
before do
|
||||
expect(controller).to receive(:enum_plugins)
|
||||
expect(controller).to receive(:enum_config_backups)
|
||||
|
||||
expect(WPScan::ParsedCli.plugins_detection).to eql :passive
|
||||
end
|
||||
|
||||
it 'calls enum_plugins and enum_config_backups' do
|
||||
controller.run
|
||||
end
|
||||
|
||||
context 'when --passwords supplied but no --username or --usernames' do
|
||||
let(:cli_args) { "#{super()} --passwords some-file.txt" }
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
2314
spec/fixtures/db/dynamic_finders.yml
vendored
2314
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1009
spec/fixtures/dynamic_finders/expected.yml
vendored
1009
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,41 @@
|
||||
# Copyright (C) 2021 Acowebs
|
||||
# This file is distributed under the same license as the Aco Variation Swatches for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aco Variation Swatches for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aco-woo-variation-swatches-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-01T11:51:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: aco-variation-swatches-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "Aco Variation Swatches for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-backend.php:130
|
||||
#: includes/class-acovsw-backend.php:137
|
||||
msgid "Variation Swatches"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-backend.php:132
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-options.php:113
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/action-scheduler/change_log/changelog.txt
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/action-scheduler/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 3.2.0 - 2021-06-03 =
|
||||
* Fix - Add "no ordering" option to as_next_scheduled_action().
|
||||
* Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634.
|
||||
* Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634.
|
||||
* Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas).
|
||||
* Fix - Fix unit tests infrastructure and adapt tests to PHP 8.
|
||||
* Fix - Identify in-use data store.
|
||||
* Fix - Improve test_migration_is_scheduled.
|
||||
* Fix - PHP notice on list table.
|
||||
* Fix - Speed up clean up and batch selects.
|
||||
* Fix - Update pending dependencies.
|
||||
* Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array().
|
||||
* Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility.
|
||||
* Fix - add is_initialized() to docs.
|
||||
* Fix - fix file permissions.
|
||||
* Fix - fixes #664 by replacing __ with esc_html__.
|
||||
|
||||
= 3.1.6 - 2020-05-12 =
|
||||
* Change log starts.
|
||||
@@ -0,0 +1,337 @@
|
||||
# Copyright (C) 2021 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log for Gravity Forms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log for Gravity Forms 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-gravity-forms\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-27T11:24:00+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-gravity-forms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log for Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension for Gravity Forms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP White Security"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpwhitesecurity.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:39
|
||||
msgid "Keep a log when website visitors submits a form (by default the plugin only keeps a log when logged in users submit a form)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:52
|
||||
msgid "Forms in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:53
|
||||
msgid "Confirmations in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:54
|
||||
msgid "Notifications in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:55
|
||||
msgid "Entries in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:56
|
||||
msgid "Fields in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:57
|
||||
msgid "Settings in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:68
|
||||
msgid "Starred"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:69
|
||||
msgid "Unstarred"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:70
|
||||
msgid "Read"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:71
|
||||
msgid "Unread"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:72
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:4
|
||||
msgid "Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:5
|
||||
msgid "Monitor Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:10
|
||||
msgid "A form was created, modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:11
|
||||
msgid "The Form called %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:14
|
||||
#: wp-security-audit-log/custom-alerts.php:30
|
||||
#: wp-security-audit-log/custom-alerts.php:45
|
||||
#: wp-security-audit-log/custom-alerts.php:60
|
||||
#: wp-security-audit-log/custom-alerts.php:93
|
||||
#: wp-security-audit-log/custom-alerts.php:108
|
||||
#: wp-security-audit-log/custom-alerts.php:129
|
||||
#: wp-security-audit-log/custom-alerts.php:144
|
||||
#: wp-security-audit-log/custom-alerts.php:162
|
||||
#: wp-security-audit-log/custom-alerts.php:177
|
||||
#: wp-security-audit-log/custom-alerts.php:196
|
||||
#: wp-security-audit-log/custom-alerts.php:211
|
||||
#: wp-security-audit-log/custom-alerts.php:243
|
||||
#: wp-security-audit-log/custom-alerts.php:258
|
||||
msgid "Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:17
|
||||
#: wp-security-audit-log/custom-alerts.php:33
|
||||
#: wp-security-audit-log/custom-alerts.php:63
|
||||
#: wp-security-audit-log/custom-alerts.php:96
|
||||
#: wp-security-audit-log/custom-alerts.php:132
|
||||
#: wp-security-audit-log/custom-alerts.php:147
|
||||
#: wp-security-audit-log/custom-alerts.php:165
|
||||
#: wp-security-audit-log/custom-alerts.php:180
|
||||
msgid "View form in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:26
|
||||
msgid "A form was moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:27
|
||||
msgid "Moved the form to trash."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:29
|
||||
#: wp-security-audit-log/custom-alerts.php:195
|
||||
#: wp-security-audit-log/custom-alerts.php:226
|
||||
#: wp-security-audit-log/custom-alerts.php:242
|
||||
#: wp-security-audit-log/custom-alerts.php:257
|
||||
msgid "Form name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:42
|
||||
msgid "A form was permanently deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:43
|
||||
msgid "Permanently deleted the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:55
|
||||
msgid "A form setting was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:56
|
||||
msgid "The setting %setting_name% in form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:58
|
||||
#: wp-security-audit-log/custom-alerts.php:276
|
||||
msgid "Previous value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:59
|
||||
#: wp-security-audit-log/custom-alerts.php:277
|
||||
msgid "New value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:72
|
||||
msgid "A form was duplicated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:73
|
||||
msgid "Duplicated the form %original_form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:75
|
||||
msgid "New form name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:76
|
||||
msgid "Source form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:77
|
||||
msgid "New form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:80
|
||||
msgid "View new duplicated form in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:89
|
||||
msgid "A field was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:90
|
||||
msgid "The Field called %field_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:92
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:105
|
||||
msgid "A form was submitted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:106
|
||||
msgid "Submitted the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:109
|
||||
msgid "Submission email"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:112
|
||||
#: wp-security-audit-log/custom-alerts.php:199
|
||||
#: wp-security-audit-log/custom-alerts.php:214
|
||||
#: wp-security-audit-log/custom-alerts.php:230
|
||||
#: wp-security-audit-log/custom-alerts.php:261
|
||||
msgid "View entry"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:124
|
||||
msgid "A confirmation was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:125
|
||||
msgid "The Confirmation called %confirmation_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:127
|
||||
msgid "Confirmation type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:128
|
||||
msgid "Confirmation message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:141
|
||||
msgid "A confirmation was activated or deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:142
|
||||
msgid "The confirmation %confirmation_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:159
|
||||
msgid "A notification was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:160
|
||||
msgid "The Notification called %notification_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:174
|
||||
msgid "A notification was activated or deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:175
|
||||
msgid "Changed the status of the Notification called %notification_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:192
|
||||
msgid "An entry was starred or unstarred"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:193
|
||||
msgid "Entry title: %entry_title%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:208
|
||||
msgid "An entry was marked as read or unread"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:209
|
||||
msgid "The entry called %entry_title% from form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:223
|
||||
msgid "An entry was moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:224
|
||||
msgid "Deleted the entry %event_desc%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:227
|
||||
msgid "Form ID "
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:239
|
||||
msgid "An entry was permanently deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:240
|
||||
msgid "Permanently deleted the entry %entry_title%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:253
|
||||
msgid "An entry note was created or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:254
|
||||
msgid "The entry note %entry_note%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:256
|
||||
msgid "Entry title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:273
|
||||
msgid "A plugin setting was changed."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:274
|
||||
msgid "Changed the plugin setting %setting_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:972
|
||||
msgid "moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1010
|
||||
msgid "restored"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1081
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1221
|
||||
msgid "Not provided"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "advanced-image-comparison-for-elementor",
|
||||
"version": "1.0.0",
|
||||
"description": "Advanced Testimonial Carousel for Elementor WordPress Plugin",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"laravel-mix": "^6.0.13",
|
||||
"node-sass": "^5.0.0",
|
||||
"postcss": "^8.2.6",
|
||||
"resolve-url-loader": "^3.1.2",
|
||||
"sass": "^1.32.8",
|
||||
"sass-loader": "^10.1.1"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"development": "mix",
|
||||
"watch": "mix watch",
|
||||
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||
"hot": "mix watch --hot",
|
||||
"production": "mix --production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ruhel241/advanced-testimonial-carousel.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ruhel241/advanced-testimonial-carousel/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ruhel241/advanced-testimonial-carousel#readme"
|
||||
}
|
||||
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 ""
|
||||
83
spec/fixtures/dynamic_finders/plugin_version/bitform/translation_file/languages/bitform.pot
vendored
Normal file
83
spec/fixtures/dynamic_finders/plugin_version/bitform/translation_file/languages/bitform.pot
vendored
Normal file
@@ -0,0 +1,83 @@
|
||||
# Copyright (C) 2021 BitForm
|
||||
# This file is distributed under the same license as the BitForm plugin.
|
||||
"Project-Id-Version: BitForm 1.0.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: bitform\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "BitForm"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:18
|
||||
msgid "Display a BitForm"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:43
|
||||
msgid "Form:"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:45
|
||||
msgid "Select a form"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:53
|
||||
msgid "Width:"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:59
|
||||
msgid "Height:"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryController.php:66
|
||||
#: Controller/EntryController.php:99
|
||||
#: Controller/PublicController.php:42
|
||||
#: Controller/PublicController.php:55
|
||||
msgid "Data submit failed"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:30
|
||||
#: Controller/EntryValidator.php:50
|
||||
#: Controller/FileController.php:91
|
||||
#: Controller/FormController.php:97
|
||||
#: Controller/FormController.php:118
|
||||
#: Controller/PublicController.php:76
|
||||
msgid "Invalid form"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:60
|
||||
#: Controller/EntryValidator.php:77
|
||||
#: Controller/EntryValidator.php:86
|
||||
#: Controller/EntryValidator.php:96
|
||||
msgid "Form is closed"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:111
|
||||
msgid "Token is required"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:117
|
||||
msgid "Secret is required"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:128
|
||||
msgid "Google server is unreachable"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:132
|
||||
msgid "ReCaptcha verification failed. Please submit again, or refresh the page and try again"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/FileController.php:99
|
||||
#: Controller/PublicController.php:63
|
||||
msgid "Invalid file type"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/FormController.php:92
|
||||
#: Controller/FormController.php:113
|
||||
msgid "Invalid scope"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "ctc-gallery",
|
||||
"version": "1.0.0",
|
||||
"description": "CTC Gallery WordPress plugin",
|
||||
"main": "js-masonry.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ujw0l/masonry-gallery.git"
|
||||
},
|
||||
"keywords": [
|
||||
"Masonry",
|
||||
"gallery",
|
||||
"Wordpress-plugin",
|
||||
"gutenberg-block"
|
||||
],
|
||||
"author": "UjW0L",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ujw0l/masonry-gallery/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ujw0l/masonry-gallery#readme",
|
||||
"dependencies": {
|
||||
"js-overlay": "^1.0.9",
|
||||
"js-masonry": "^1.1.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "pricing-block",
|
||||
"version": "1.0.0",
|
||||
"description": "Pricing Block",
|
||||
"author": "Bluebox Digital",
|
||||
"main": "build/index.js",
|
||||
"devDependencies": {
|
||||
"@wordpress/block-editor": "^5.3.3",
|
||||
"@wordpress/blocks": "^8.0.3",
|
||||
"@wordpress/components": "^13.0.3",
|
||||
"@wordpress/eslint-plugin": "^9.0.4",
|
||||
"@wordpress/i18n": "^3.20.0",
|
||||
"@wordpress/prettier-config": "^1.0.3",
|
||||
"@wordpress/scripts": "^9.0.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.4.1",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"eslint-plugin-react": "^7.23.2",
|
||||
"prettier": "^2.2.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,217 @@
|
||||
# Copyright (C) 2021 <a href="https://braft.pl">BRAFT</a>
|
||||
# This file is distributed under the same license as the BRAFT Woo Shipping Packer plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BRAFT Woo Shipping Packer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/braft-woo-shipping-packer\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-18T14:46:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: braft-woo-shipping-packer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BRAFT Woo Shipping Packer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://braft.pl"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Woocommerce addon to calculate shipping container and costs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "<a href=\"https://braft.pl\">BRAFT</a>"
|
||||
msgstr ""
|
||||
|
||||
#: braft-woo-shipping-packer.php:48
|
||||
msgid "Packer"
|
||||
msgstr ""
|
||||
|
||||
#: braft-woo-shipping-packer.php:78
|
||||
msgid "Box type: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:4
|
||||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:10
|
||||
msgid "Language codes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:12
|
||||
msgid "example JSON: [{\"lang_code\":\"pl_PL\",\"lang_title\":\"Polski\"},{\"lang_code\":\"en_US\",\"lang_title\":\"English\"}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:22
|
||||
#: inc/braftwsp-settings.php:28
|
||||
msgid "Packages parameters"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:30
|
||||
msgid ""
|
||||
"example JSON: [{\"name\":\"My package\",\r\n"
|
||||
" \"parameters\":\"outer width,outer length,outer height,empty weight,inner width,inner length,inner height,max weight\",\r\n"
|
||||
" \"box_price_pl_PL\":\"the price\", \"box_price_en_US\":\"the price\"}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:41
|
||||
#: inc/braftwsp-settings.php:47
|
||||
msgid "Shipping thresholds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:49
|
||||
msgid ""
|
||||
"example JSON: [{\"name\":\"InPost\",\r\n"
|
||||
" \"parameters\":[{\"name\":\"A\", \"max_dimensions\":\"outer width,outer length,outer depth\", \"max_weight\":\"grams\",\r\n"
|
||||
" \"price_pl_PL\":\"the price\", \"price_en_US\":\"the price\"}]}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:60
|
||||
msgid "Backup"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:66
|
||||
msgid "Backup JSON"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:37
|
||||
msgid "Add language"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:101
|
||||
msgid "Box name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:103
|
||||
msgid "Outer width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:105
|
||||
msgid " Outer length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:107
|
||||
msgid " Outer height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:109
|
||||
msgid " Box weight: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:111
|
||||
msgid "Inner width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:113
|
||||
msgid " Inner length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:115
|
||||
msgid " Inner height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:117
|
||||
msgid " Max weigth: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:120
|
||||
msgid "Box price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:143
|
||||
msgid "Add box"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:255
|
||||
msgid "Rate name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:266
|
||||
#: js/braftwsp-settings.js:426
|
||||
msgid "Threshold name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:268
|
||||
#: js/braftwsp-settings.js:428
|
||||
msgid "Max width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:270
|
||||
#: js/braftwsp-settings.js:430
|
||||
msgid " Max length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:272
|
||||
#: js/braftwsp-settings.js:432
|
||||
msgid " Max height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:274
|
||||
#: js/braftwsp-settings.js:434
|
||||
msgid " Max weight: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:277
|
||||
msgid "Price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:282
|
||||
msgid "Add threshold"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:302
|
||||
msgid "Add shipping rate"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:439
|
||||
msgid "price : "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:484
|
||||
msgid "outer dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:487
|
||||
msgid "inner dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:490
|
||||
msgid "box weight"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:491
|
||||
#: js/braftwsp-settings.js:509
|
||||
msgid "max weight"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:493
|
||||
msgid "box price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:506
|
||||
msgid "max dimensions "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:511
|
||||
msgid "price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:525
|
||||
msgid " Backup to JSON file"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:526
|
||||
msgid " Restore from JSON file"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:527
|
||||
msgid " Create TXT file"
|
||||
msgstr ""
|
||||
@@ -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,2 @@
|
||||
/*1.0.0.0 - 2021.*/
|
||||
- Release version 1.0.0
|
||||
407
spec/fixtures/dynamic_finders/plugin_version/code-generator/translation_file/lang/generate-wp.pot
vendored
Normal file
407
spec/fixtures/dynamic_finders/plugin_version/code-generator/translation_file/lang/generate-wp.pot
vendored
Normal file
@@ -0,0 +1,407 @@
|
||||
# Copyright (C) 2014 Generate WP
|
||||
# This file is distributed under the same license as the Generate WP package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Generate WP 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/WordPress-Plugin-Template\n"
|
||||
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:52
|
||||
#: includes/post-types/class-generate-wp-post_type.php:42
|
||||
msgctxt "post type general name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:53
|
||||
#: includes/post-types/class-generate-wp-post_type.php:43
|
||||
msgctxt "post type singular name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:55
|
||||
#: includes/post-types/class-generate-wp-post_type.php:45
|
||||
msgid "Add New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:55
|
||||
#: classes/post-types/class-generate-wp-post_type.php:56
|
||||
#: classes/post-types/class-generate-wp-post_type.php:57
|
||||
#: classes/post-types/class-generate-wp-post_type.php:59
|
||||
#: includes/post-types/class-generate-wp-post_type.php:45
|
||||
#: includes/post-types/class-generate-wp-post_type.php:46
|
||||
#: includes/post-types/class-generate-wp-post_type.php:47
|
||||
#: includes/post-types/class-generate-wp-post_type.php:49
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:56
|
||||
#: includes/post-types/class-generate-wp-post_type.php:46
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:57
|
||||
#: includes/post-types/class-generate-wp-post_type.php:47
|
||||
msgid "New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:58
|
||||
#: includes/post-types/class-generate-wp-post_type.php:48
|
||||
msgid "All %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:58
|
||||
#: classes/post-types/class-generate-wp-post_type.php:60
|
||||
#: classes/post-types/class-generate-wp-post_type.php:61
|
||||
#: classes/post-types/class-generate-wp-post_type.php:62
|
||||
#: includes/post-types/class-generate-wp-post_type.php:48
|
||||
#: includes/post-types/class-generate-wp-post_type.php:50
|
||||
#: includes/post-types/class-generate-wp-post_type.php:51
|
||||
#: includes/post-types/class-generate-wp-post_type.php:52
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:59
|
||||
#: includes/post-types/class-generate-wp-post_type.php:49
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:60
|
||||
#: includes/post-types/class-generate-wp-post_type.php:50
|
||||
msgid "Search %a"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:61
|
||||
#: includes/post-types/class-generate-wp-post_type.php:51
|
||||
msgid "No %s Found"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:62
|
||||
#: includes/post-types/class-generate-wp-post_type.php:52
|
||||
msgid "No %s Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:64
|
||||
#: includes/post-types/class-generate-wp-post_type.php:54
|
||||
msgid "*Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:95
|
||||
#: classes/post-types/class-generate-wp-post_type.php:105
|
||||
#: includes/post-types/class-generate-wp-post_type.php:85
|
||||
#: includes/post-types/class-generate-wp-post_type.php:95
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:96
|
||||
#: includes/post-types/class-generate-wp-post_type.php:86
|
||||
msgid "Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:97
|
||||
#: includes/post-types/class-generate-wp-post_type.php:87
|
||||
msgid "Search Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:98
|
||||
#: includes/post-types/class-generate-wp-post_type.php:88
|
||||
msgid "All Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:99
|
||||
#: includes/post-types/class-generate-wp-post_type.php:89
|
||||
msgid "Parent Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:100
|
||||
#: includes/post-types/class-generate-wp-post_type.php:90
|
||||
msgid "Parent Term:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:101
|
||||
#: includes/post-types/class-generate-wp-post_type.php:91
|
||||
msgid "Edit Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:102
|
||||
#: includes/post-types/class-generate-wp-post_type.php:92
|
||||
msgid "Update Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:103
|
||||
#: includes/post-types/class-generate-wp-post_type.php:93
|
||||
msgid "Add New Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:104
|
||||
#: includes/post-types/class-generate-wp-post_type.php:94
|
||||
msgid "New Term Name"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:125
|
||||
#: includes/post-types/class-generate-wp-post_type.php:115
|
||||
msgid "Custom Field"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:180
|
||||
#: includes/post-types/class-generate-wp-post_type.php:170
|
||||
msgid "Post updated. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:181
|
||||
#: includes/post-types/class-generate-wp-post_type.php:171
|
||||
msgid "Custom field updated."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:182
|
||||
#: includes/post-types/class-generate-wp-post_type.php:172
|
||||
msgid "Custom field deleted."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:183
|
||||
#: includes/post-types/class-generate-wp-post_type.php:173
|
||||
msgid "Post updated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: date and time of the revision
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:185
|
||||
#: includes/post-types/class-generate-wp-post_type.php:175
|
||||
msgid "Post restored to revision from %s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:186
|
||||
#: includes/post-types/class-generate-wp-post_type.php:176
|
||||
msgid "Post published. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:187
|
||||
#: includes/post-types/class-generate-wp-post_type.php:177
|
||||
msgid "Post saved."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:188
|
||||
#: includes/post-types/class-generate-wp-post_type.php:178
|
||||
msgid "Post submitted. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:189
|
||||
#: includes/post-types/class-generate-wp-post_type.php:179
|
||||
msgid "Post scheduled for: %1$s. %2$sPreview post%3$s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:189
|
||||
#: includes/post-types/class-generate-wp-post_type.php:179
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:190
|
||||
#: includes/post-types/class-generate-wp-post_type.php:180
|
||||
msgid "Post draft updated. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:201
|
||||
#: includes/post-types/class-generate-wp-post_type.php:191
|
||||
msgid "Post Details"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:295
|
||||
#: includes/post-types/class-generate-wp-post_type.php:285
|
||||
msgid "Enter the post title here"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:308
|
||||
#: includes/post-types/class-generate-wp-post_type.php:298
|
||||
msgid "Custom field:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:309
|
||||
#: includes/post-types/class-generate-wp-post_type.php:299
|
||||
msgid "Description of this custom field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:70
|
||||
#: includes/class-generate-wp-settings.php:405
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:99
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:111
|
||||
msgid "Standard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:112
|
||||
msgid "These are fairly standard form input fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:116
|
||||
msgid "Some Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:117
|
||||
msgid "This is a standard text field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:120
|
||||
#: includes/class-generate-wp-settings.php:128
|
||||
#: includes/class-generate-wp-settings.php:136
|
||||
msgid "Placeholder text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:124
|
||||
msgid "A Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:125
|
||||
msgid "This is a standard password field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:132
|
||||
msgid "Some Secret Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:133
|
||||
msgid "This is a secret text field - any data saved here will not be displayed after the page has reloaded, but it will be saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:140
|
||||
msgid "A Text Block"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:141
|
||||
msgid "This is a standard text area."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:144
|
||||
msgid "Placeholder text for this textarea"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:148
|
||||
msgid "An Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:149
|
||||
msgid "A standard checkbox - if you save this option as checked then it will store the option as 'on', otherwise it will be an empty string."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:155
|
||||
msgid "A Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:156
|
||||
msgid "A standard select box."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:163
|
||||
msgid "Some Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:164
|
||||
msgid "A standard set of radio buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:171
|
||||
msgid "Some Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:172
|
||||
msgid "You can select multiple items and they will be stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:181
|
||||
msgid "Extra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:182
|
||||
msgid "These are some extra input fields that maybe aren't as common as the others."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:186
|
||||
msgid "A Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:187
|
||||
msgid "This is a standard number field - if this field contains anything other than numbers then the form will not be submitted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:190
|
||||
msgid "42"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:194
|
||||
msgid "Pick a colour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:195
|
||||
msgid "This uses WordPress' built-in colour picker - the option is stored as the colour's hex code."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:201
|
||||
msgid "An Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:202
|
||||
msgid "This will upload an image to your media library and store the attachment ID in the option field. Once you have uploaded an imge the thumbnail will display above these buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:209
|
||||
msgid "A Multi-Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:210
|
||||
msgid "A standard multi-select box - the saved data is stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Upload an image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Use image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Upload new image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:355
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:410
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:427
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:458
|
||||
#: includes/class-generate-wp-settings.php:467
|
||||
#: includes/class-generate-wp.php:207
|
||||
#: includes/class-generate-wp.php:216
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Generate WP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Hugh Lashbrooke"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
@@ -1231,5 +1231,8 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
<!-- HR-2.6: -->
|
||||
|
||||
|
||||
<!-- prodalet -->
|
||||
<!--Start Prodalet code WordPress plugin vers 1.2 {literal}-->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,469 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Shopping discounts v1.0\n"
|
||||
"POT-Creation-Date: 2020-12-04 16:07+0100\n"
|
||||
"PO-Revision-Date: 2020-12-04 19:26+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: it_IT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: dn-footer-contacts.php:54
|
||||
msgid "Main"
|
||||
msgstr "Principale"
|
||||
|
||||
#: dn-footer-contacts.php:55 dn-footer-contacts.php:214
|
||||
msgid "Settings"
|
||||
msgstr "Impostazioni"
|
||||
|
||||
#: dn-footer-contacts.php:56
|
||||
msgid "Stats"
|
||||
msgstr "Statistiche"
|
||||
|
||||
#: dn-footer-contacts.php:94
|
||||
msgid "Telephone number"
|
||||
msgstr "Numero di telefono"
|
||||
|
||||
#: dn-footer-contacts.php:94
|
||||
msgid "Insert telephone number in \"value\" field"
|
||||
msgstr "Inserire il numero di telefono nel campo \"valore\""
|
||||
|
||||
#: dn-footer-contacts.php:95
|
||||
msgid "Maps address"
|
||||
msgstr "Indirizzo di Maps"
|
||||
|
||||
#: dn-footer-contacts.php:95
|
||||
msgid "Insert shortlink by Google Maps (share option) in \"value\" field"
|
||||
msgstr ""
|
||||
"Inserire nel campo \"valore\" lo shortlink fornito da Google Maps (nella "
|
||||
"sezione condivisione)"
|
||||
|
||||
#: dn-footer-contacts.php:96
|
||||
msgid "WhatsApp number"
|
||||
msgstr "Numero di WhatsApp"
|
||||
|
||||
#: dn-footer-contacts.php:96
|
||||
msgid "Insert WhatsApp number in \"value\" field"
|
||||
msgstr "Inserire nel campo \"valore\" il numero collegato a WhatsApp"
|
||||
|
||||
#: dn-footer-contacts.php:134
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
#: dn-footer-contacts.php:135
|
||||
msgid "Value"
|
||||
msgstr "Valore"
|
||||
|
||||
#: dn-footer-contacts.php:136
|
||||
msgid "Order"
|
||||
msgstr "Ordinamento"
|
||||
|
||||
#: dn-footer-contacts.php:137
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: dn-footer-contacts.php:137
|
||||
msgid "Hidden"
|
||||
msgstr "Nascosto"
|
||||
|
||||
#: dn-footer-contacts.php:137
|
||||
msgid "Visible"
|
||||
msgstr "Visibile"
|
||||
|
||||
#: dn-footer-contacts.php:139 dn-footer-contacts.php:236
|
||||
msgid "Save"
|
||||
msgstr "Salva"
|
||||
|
||||
#: dn-footer-contacts.php:143
|
||||
msgid "Sure you want to clear the stats"
|
||||
msgstr "Sicuro di voler svuotare le statistiche"
|
||||
|
||||
#: dn-footer-contacts.php:145
|
||||
msgid "Clear it"
|
||||
msgstr "Svuota"
|
||||
|
||||
#: dn-footer-contacts.php:146
|
||||
msgid "Abort"
|
||||
msgstr "Annulla"
|
||||
|
||||
#: dn-footer-contacts.php:152
|
||||
msgid "Clean stats"
|
||||
msgstr "Statistiche svuotate"
|
||||
|
||||
#: dn-footer-contacts.php:159
|
||||
msgid "For days"
|
||||
msgstr "Per giorno"
|
||||
|
||||
#: dn-footer-contacts.php:160
|
||||
msgid "For months"
|
||||
msgstr "Per mese"
|
||||
|
||||
#: dn-footer-contacts.php:161
|
||||
msgid "For years"
|
||||
msgstr "Per anno"
|
||||
|
||||
#: dn-footer-contacts.php:166
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: dn-footer-contacts.php:167
|
||||
msgid "Total click"
|
||||
msgstr "Click totali"
|
||||
|
||||
#: dn-footer-contacts.php:208
|
||||
msgid "Clear the statistics"
|
||||
msgstr "Svuota le statistiche"
|
||||
|
||||
#: dn-footer-contacts.php:214
|
||||
msgid "In this panel you can customize the form display"
|
||||
msgstr "In questo pannello puoi personalizzare la visualizzazione del modulo"
|
||||
|
||||
#: dn-footer-contacts.php:215
|
||||
msgid "Alignment"
|
||||
msgstr "Alignamento"
|
||||
|
||||
#: dn-footer-contacts.php:216
|
||||
msgid "Center"
|
||||
msgstr "Centrato"
|
||||
|
||||
#: dn-footer-contacts.php:217
|
||||
msgid "Left"
|
||||
msgstr "Sinistra"
|
||||
|
||||
#: dn-footer-contacts.php:218
|
||||
msgid "Right"
|
||||
msgstr "Destra"
|
||||
|
||||
#: dn-footer-contacts.php:220
|
||||
msgid "View"
|
||||
msgstr "Visualizzazione"
|
||||
|
||||
#: dn-footer-contacts.php:221
|
||||
msgid "Icons and titles"
|
||||
msgstr "Icone e titoli"
|
||||
|
||||
#: dn-footer-contacts.php:222
|
||||
msgid "Only titles"
|
||||
msgstr "Solo titoli"
|
||||
|
||||
#: dn-footer-contacts.php:223
|
||||
msgid "Only icons"
|
||||
msgstr "Solo icone"
|
||||
|
||||
#: dn-footer-contacts.php:225
|
||||
msgid "Background"
|
||||
msgstr "Sfondo"
|
||||
|
||||
#: dn-footer-contacts.php:226
|
||||
msgid "Full width"
|
||||
msgstr "Tutto schermo"
|
||||
|
||||
#: dn-footer-contacts.php:227
|
||||
msgid "For each button"
|
||||
msgstr "Per ogni pulsante"
|
||||
|
||||
#: dn-footer-contacts.php:228
|
||||
msgid "None"
|
||||
msgstr "Nessuno"
|
||||
|
||||
#: dn-footer-contacts.php:230
|
||||
msgid "Background color"
|
||||
msgstr "Colore sfondo"
|
||||
|
||||
#: dn-footer-contacts.php:231
|
||||
msgid "Background color hover"
|
||||
msgstr "Colore sfondo al passaggio del cursore"
|
||||
|
||||
#: dn-footer-contacts.php:232
|
||||
msgid "Text color"
|
||||
msgstr "Colore testo"
|
||||
|
||||
#: dn-footer-contacts.php:233
|
||||
msgid "Text color hover"
|
||||
msgstr "Colore testo al passaggio del cursore"
|
||||
|
||||
#: dn-footer-contacts.php:254
|
||||
msgid "Settings updated"
|
||||
msgstr "Impostazioni aggiornate"
|
||||
|
||||
#: dn-footer-contacts.php:273
|
||||
msgid "Contacts updated"
|
||||
msgstr "Contatti aggiornati"
|
||||
|
||||
#: dn-footer-contacts.php:350
|
||||
msgid "January"
|
||||
msgstr "Gennaio"
|
||||
|
||||
#: dn-footer-contacts.php:351
|
||||
msgid "February"
|
||||
msgstr "Febbraio"
|
||||
|
||||
#: dn-footer-contacts.php:352
|
||||
msgid "March"
|
||||
msgstr "Marzo"
|
||||
|
||||
#: dn-footer-contacts.php:353
|
||||
msgid "April"
|
||||
msgstr "Aprile"
|
||||
|
||||
#: dn-footer-contacts.php:354
|
||||
msgid "May"
|
||||
msgstr "Maggio"
|
||||
|
||||
#: dn-footer-contacts.php:355
|
||||
msgid "June"
|
||||
msgstr "Giugno"
|
||||
|
||||
#: dn-footer-contacts.php:356
|
||||
msgid "July"
|
||||
msgstr "Luglio"
|
||||
|
||||
#: dn-footer-contacts.php:357
|
||||
msgid "August"
|
||||
msgstr "Agosto"
|
||||
|
||||
#: dn-footer-contacts.php:358
|
||||
msgid "September"
|
||||
msgstr "Settembre"
|
||||
|
||||
#: dn-footer-contacts.php:359
|
||||
msgid "October"
|
||||
msgstr "Ottobre"
|
||||
|
||||
#: dn-footer-contacts.php:360
|
||||
msgid "November"
|
||||
msgstr "Novembre"
|
||||
|
||||
#: dn-footer-contacts.php:361
|
||||
msgid "December"
|
||||
msgstr "Dicembre"
|
||||
|
||||
#~ msgid "Add new field"
|
||||
#~ msgstr "Aggiungi nuovo campo"
|
||||
|
||||
#~ msgid "Field not found"
|
||||
#~ msgstr "Campo non trovato"
|
||||
|
||||
#~ msgid "Delete it"
|
||||
#~ msgstr "Eliminalo"
|
||||
|
||||
#~ msgid "Definition of the field"
|
||||
#~ msgstr "Definizione del campo"
|
||||
|
||||
#~ msgid "Label"
|
||||
#~ msgstr "Etichetta"
|
||||
|
||||
#~ msgid "Type"
|
||||
#~ msgstr "Tipologia"
|
||||
|
||||
#~ msgid "Label without input field"
|
||||
#~ msgstr "Annotazione"
|
||||
|
||||
#~ msgid "Text"
|
||||
#~ msgstr "Campo di testo"
|
||||
|
||||
#~ msgid "Email"
|
||||
#~ msgstr "Campo email"
|
||||
|
||||
#~ msgid "Url"
|
||||
#~ msgstr "Campo url"
|
||||
|
||||
#~ msgid "Tel"
|
||||
#~ msgstr "Campo telefono"
|
||||
|
||||
#~ msgid "Values (one for row)"
|
||||
#~ msgstr "Valori multipli (uno per riga)"
|
||||
|
||||
#~ msgid "Definition of extra fields"
|
||||
#~ msgstr "Definizione dei campi personalizzati"
|
||||
|
||||
#~ msgid "Actions"
|
||||
#~ msgstr "Azioni"
|
||||
|
||||
#~ msgid "Edit"
|
||||
#~ msgstr "Modifica"
|
||||
|
||||
#~ msgid "Delete"
|
||||
#~ msgstr "Elimina"
|
||||
|
||||
#~ msgid "Save order"
|
||||
#~ msgstr "Salva ordinamento"
|
||||
|
||||
#~ msgid "Field deleted"
|
||||
#~ msgstr "Campo eliminato"
|
||||
|
||||
#~ msgid "Field not found and NOT deleted"
|
||||
#~ msgstr "Campo non trovato e non eliminato!"
|
||||
|
||||
#~ msgid "Field updated"
|
||||
#~ msgstr "Campo aggiornato"
|
||||
|
||||
#~ msgid "required"
|
||||
#~ msgstr "obbligatorio"
|
||||
|
||||
#~ msgid "List of products without weight"
|
||||
#~ msgstr "Lista prodotti senza peso"
|
||||
|
||||
#~ msgid "Back"
|
||||
#~ msgstr "Torna"
|
||||
|
||||
#~ msgid "page"
|
||||
#~ msgstr "pagina"
|
||||
|
||||
#~ msgid "of"
|
||||
#~ msgstr "di"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Title table"
|
||||
#~ msgstr "Titolo tabella"
|
||||
|
||||
#~ msgid "N"
|
||||
#~ msgstr "N"
|
||||
|
||||
#~ msgid "Min weight"
|
||||
#~ msgstr "Peso minimo"
|
||||
|
||||
#~ msgid "Max weight"
|
||||
#~ msgstr "Peso massimo"
|
||||
|
||||
#~ msgid "Cost"
|
||||
#~ msgstr "Costo"
|
||||
|
||||
#~ msgid "Add row"
|
||||
#~ msgstr "Aggiungi regola"
|
||||
|
||||
#~ msgid "Definition of weight-based shipping tables"
|
||||
#~ msgstr "Definizione tabelle spese di spedizioni basate sul peso"
|
||||
|
||||
#~ msgid "List product with weight 0"
|
||||
#~ msgstr "Lista prodotti con peso 0"
|
||||
|
||||
#~ msgid "Setting shipping methods"
|
||||
#~ msgstr "Imposta metodi spedizioni"
|
||||
|
||||
#~ msgid "Rates"
|
||||
#~ msgstr "Regole"
|
||||
|
||||
#~ msgid "Table NOT deleted"
|
||||
#~ msgstr "Tabella NON eliminata"
|
||||
|
||||
#~ msgid "By Weight"
|
||||
#~ msgstr "Basato sul peso"
|
||||
|
||||
#~ msgid "Shipping by weight"
|
||||
#~ msgstr "Spedizione basata sul peso"
|
||||
|
||||
#~ msgid "N/A"
|
||||
#~ msgstr "N/A"
|
||||
|
||||
#~ msgid "This controls the title which the user sees during checkout."
|
||||
#~ msgstr "Etichetta visibile agli utenti durante il checkout (pagamento)"
|
||||
|
||||
#~ msgid "Select table"
|
||||
#~ msgstr "Seleziona tabella"
|
||||
|
||||
#~ msgid "You can define the cost tables in the plugin settings"
|
||||
#~ msgstr "Puoi definire le tabelle nelle impostazioni del plugin"
|
||||
|
||||
#~ msgid "click here"
|
||||
#~ msgstr "clicca qui"
|
||||
|
||||
#~ msgid "Percent"
|
||||
#~ msgstr "Percentuale"
|
||||
|
||||
#~ msgid "Fix"
|
||||
#~ msgstr "Fisso"
|
||||
|
||||
#~ msgid "Unknow"
|
||||
#~ msgstr "Sconosciuto"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Discounts will be applied according to the <b>total expense</b> made by "
|
||||
#~ "the user."
|
||||
#~ msgstr ""
|
||||
#~ "Gli sconti verranno applicati in base alla <b> spesa totale </b> "
|
||||
#~ "effettuata dall'utente."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only the first one published, which matchs the requirements, will be "
|
||||
#~ "used, in ascending order based on the number entered in the \"order\" "
|
||||
#~ "field"
|
||||
#~ msgstr ""
|
||||
#~ "Verrà utilizzato solo il primo pubblicato, che corrisponde ai requisiti, "
|
||||
#~ "in ordine crescente in base al numero immesso nel campo \"ordine\""
|
||||
|
||||
#~ msgid "Use the test page to verify that the discounts are working properly."
|
||||
#~ msgstr ""
|
||||
#~ "Utilizzare la pagina di Test per verificare che gli sconti funzionino "
|
||||
#~ "correttamente."
|
||||
|
||||
#~ msgid "Use the comma to indicate decimals, without point separator"
|
||||
#~ msgstr ""
|
||||
#~ "Utilizza la virgola per indicare i decimali, non utilizzare i punti per "
|
||||
#~ "separare le centinaia"
|
||||
|
||||
#~ msgid "Leave blank field \"To\" for set to not limits"
|
||||
#~ msgstr "Lascia il campo \"A\" vuoto per impostare senza limiti"
|
||||
|
||||
#~ msgid "For help or more informations contact "
|
||||
#~ msgstr "Per aiuto o maggiori informazioni contattare"
|
||||
|
||||
#~ msgid "Discount setting"
|
||||
#~ msgstr "Impostazione sconto"
|
||||
|
||||
#~ msgid "Test"
|
||||
#~ msgstr "Test"
|
||||
|
||||
#~ msgid "Shopping discounts"
|
||||
#~ msgstr "Sconto spesa"
|
||||
|
||||
#~ msgid "This page allows to test discounts rules"
|
||||
#~ msgstr "Questa pagina permette di verificare le regole inserite"
|
||||
|
||||
#~ msgid "Insert total cart value"
|
||||
#~ msgstr "Inserisci totale spesa"
|
||||
|
||||
#~ msgid "Start test"
|
||||
#~ msgstr "Inizia test"
|
||||
|
||||
#~ msgid "Results for"
|
||||
#~ msgstr "Risultato per"
|
||||
|
||||
#~ msgid "Discount"
|
||||
#~ msgstr "Sconto"
|
||||
|
||||
#~ msgid "New total"
|
||||
#~ msgstr "Nuovo totale"
|
||||
|
||||
#~ msgid "There are no applicable discounts for"
|
||||
#~ msgstr "Non ci sono regole applicabili a"
|
||||
|
||||
#~ msgid "Update results for"
|
||||
#~ msgstr "Aggiorna risultati per"
|
||||
|
||||
#~ msgid "Apply from"
|
||||
#~ msgstr "Applica da"
|
||||
|
||||
#~ msgid "Apply to"
|
||||
#~ msgstr "Applica fino a"
|
||||
|
||||
#~ msgid "From"
|
||||
#~ msgstr "Da"
|
||||
|
||||
#~ msgid "To"
|
||||
#~ msgstr "A"
|
||||
|
||||
#~ msgid "No limits"
|
||||
#~ msgstr "Senza limite"
|
||||
|
||||
#~ msgid "Add discount"
|
||||
#~ msgstr "Aggiungi sconto"
|
||||
821
spec/fixtures/dynamic_finders/plugin_version/dplayer/translation_file/languages/dplayer.pot
vendored
Normal file
821
spec/fixtures/dynamic_finders/plugin_version/dplayer/translation_file/languages/dplayer.pot
vendored
Normal file
@@ -0,0 +1,821 @@
|
||||
# Copyright (C) 2021 dPlayer
|
||||
# This file is distributed under the same license as the dPlayer package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: dPlayer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dplayer\n"
|
||||
"POT-Creation-Date: 2021-04-20 14:16:46+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: dplayer.php:58 dplayer.php:59
|
||||
msgid "dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:60
|
||||
msgid "dPlayer Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:61
|
||||
msgid "Add New dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:62
|
||||
msgid "Add New dPlayer "
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:63
|
||||
msgid "New dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:64
|
||||
msgid "Edit dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:65
|
||||
msgid "View dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:66
|
||||
msgid "dPlayers"
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:67
|
||||
msgid "Sorry, we couldn't find the Feed you are looking for."
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:71
|
||||
msgid "dPlayer Options."
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:130
|
||||
msgid "Shortcode updated "
|
||||
msgstr ""
|
||||
|
||||
#: dplayer.php:169
|
||||
msgid "Copy this shortcode and paste it into your post, page, or text widget content"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:225
|
||||
msgid "Error while saving the changes."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:285
|
||||
msgid "Settings successfully imported."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:297
|
||||
#: inc/csf/classes/admin-options.class.php:313
|
||||
msgid "Default settings restored."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:384
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:563
|
||||
msgid "You have unsaved changes, save your changes!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:565
|
||||
msgid "show all settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:567 inc/csf/fields/icon/icon.php:57
|
||||
#: inc/csf/fields/map/map.php:23
|
||||
msgid "Search..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:570
|
||||
#: inc/csf/classes/admin-options.class.php:693
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:570
|
||||
#: inc/csf/classes/admin-options.class.php:693
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:571
|
||||
#: inc/csf/classes/admin-options.class.php:694
|
||||
msgid "Reset Section"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:571
|
||||
#: inc/csf/classes/admin-options.class.php:694
|
||||
msgid "Are you sure to reset this section options?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:572
|
||||
#: inc/csf/classes/admin-options.class.php:695
|
||||
msgid "Reset All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:572
|
||||
#: inc/csf/classes/admin-options.class.php:695
|
||||
#: inc/csf/classes/comment-options.class.php:215
|
||||
#: inc/csf/classes/metabox-options.class.php:293
|
||||
#: inc/csf/fields/backup/backup.php:31
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:572
|
||||
#: inc/csf/classes/admin-options.class.php:695
|
||||
msgid "Are you sure you want to reset all settings to default values?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/admin-options.class.php:670
|
||||
#: inc/csf/classes/comment-options.class.php:198
|
||||
#: inc/csf/classes/metabox-options.class.php:276
|
||||
#: inc/csf/fields/button_set/button_set.php:56
|
||||
#: inc/csf/fields/checkbox/checkbox.php:76 inc/csf/fields/radio/radio.php:75
|
||||
#: inc/csf/fields/select/select.php:113 inc/csf/functions/actions.php:41
|
||||
msgid "No data available."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/comment-options.class.php:216
|
||||
#: inc/csf/classes/metabox-options.class.php:294
|
||||
msgid "update post"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/comment-options.class.php:216
|
||||
#: inc/csf/classes/metabox-options.class.php:294
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:529
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:530
|
||||
msgid "Please enter %s or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:531
|
||||
msgid "Searching..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:532
|
||||
msgid "No results found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:634
|
||||
msgid "Oops! Not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/setup.class.php:708 inc/csf/classes/setup.class.php:712
|
||||
msgid "Field not found!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/shortcode-options.class.php:251
|
||||
#: inc/csf/fields/group/group.php:23
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/classes/shortcode-options.class.php:288
|
||||
#: inc/csf/functions/actions.php:16 inc/csf/functions/actions.php:68
|
||||
#: inc/csf/functions/actions.php:106 inc/csf/functions/actions.php:141
|
||||
#: inc/csf/functions/actions.php:170
|
||||
msgid "Error: Invalid nonce verification."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:36
|
||||
#: inc/csf/fields/media/media.php:57
|
||||
msgid "Not selected"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:72 inc/csf/fields/date/date.php:31
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:90 inc/csf/fields/date/date.php:32
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:108
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:114
|
||||
msgid "Gradient Direction"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:115
|
||||
msgid "⇓ top to bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:116
|
||||
msgid "⇒ left to right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:117
|
||||
msgid "⇘ corner top to right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:118
|
||||
msgid "⇙ corner top to left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:161
|
||||
msgid "Background Position"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:162
|
||||
msgid "Left Top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:163
|
||||
msgid "Left Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:164
|
||||
msgid "Left Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:165
|
||||
msgid "Center Top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:166
|
||||
msgid "Center Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:167
|
||||
msgid "Center Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:168
|
||||
msgid "Right Top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:169
|
||||
msgid "Right Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:170
|
||||
msgid "Right Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:184
|
||||
msgid "Background Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:185
|
||||
msgid "Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:186
|
||||
msgid "No Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:187
|
||||
msgid "Repeat Horizontally"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:188
|
||||
msgid "Repeat Vertically"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:202
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:203
|
||||
msgid "Scroll"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:204
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:218
|
||||
msgid "Background Size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:219
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:220
|
||||
msgid "Contain"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:221
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:235
|
||||
msgid "Background Origin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:236
|
||||
#: inc/csf/fields/background/background.php:254
|
||||
msgid "Padding Box"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:237
|
||||
#: inc/csf/fields/background/background.php:253
|
||||
msgid "Border Box"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:238
|
||||
#: inc/csf/fields/background/background.php:255
|
||||
msgid "Content Box"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:252
|
||||
msgid "Background Clip"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:269
|
||||
msgid "Background Blend Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:270
|
||||
#: inc/csf/fields/link_color/link_color.php:36
|
||||
#: inc/csf/fields/typography/typography.php:186
|
||||
msgid "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:271
|
||||
msgid "Multiply"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:272
|
||||
msgid "Screen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:273
|
||||
msgid "Overlay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:274
|
||||
msgid "Darken"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:275
|
||||
msgid "Lighten"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:276
|
||||
msgid "Color Dodge"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:277
|
||||
msgid "Saturation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:278
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/background/background.php:279
|
||||
msgid "Luminosity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/backup/backup.php:26
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/backup/backup.php:29
|
||||
msgid "Export & Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:25 inc/csf/fields/spacing/spacing.php:25
|
||||
msgid "top"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:26 inc/csf/fields/spacing/spacing.php:26
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:27 inc/csf/fields/spacing/spacing.php:27
|
||||
msgid "bottom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:28 inc/csf/fields/spacing/spacing.php:28
|
||||
msgid "left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:29 inc/csf/fields/spacing/spacing.php:29
|
||||
msgid "all"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:51
|
||||
#: inc/csf/fields/typography/typography.php:214
|
||||
msgid "Solid"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:52
|
||||
#: inc/csf/fields/typography/typography.php:217
|
||||
msgid "Dashed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:53
|
||||
#: inc/csf/fields/typography/typography.php:216
|
||||
msgid "Dotted"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:54
|
||||
#: inc/csf/fields/typography/typography.php:215
|
||||
msgid "Double"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:55
|
||||
msgid "Inset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:56
|
||||
msgid "Outset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:57
|
||||
msgid "Groove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:58
|
||||
msgid "ridge"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/border/border.php:59
|
||||
#: inc/csf/fields/typography/typography.php:199
|
||||
#: inc/csf/fields/typography/typography.php:213
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/dimensions/dimensions.php:22
|
||||
msgid "width"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/dimensions/dimensions.php:23
|
||||
msgid "height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/gallery/gallery.php:20
|
||||
msgid "Add Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/gallery/gallery.php:21
|
||||
msgid "Edit Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/gallery/gallery.php:22
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:35 inc/csf/fields/repeater/repeater.php:27
|
||||
msgid "Error: Field ID conflict."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:46 inc/csf/fields/group/group.php:87
|
||||
#: inc/csf/fields/repeater/repeater.php:48
|
||||
#: inc/csf/fields/repeater/repeater.php:76
|
||||
msgid "Are you sure to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:121 inc/csf/fields/repeater/repeater.php:89
|
||||
msgid "You cannot add more."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/group/group.php:122 inc/csf/fields/repeater/repeater.php:90
|
||||
msgid "You cannot remove more."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/icon/icon.php:20 inc/csf/fields/icon/icon.php:53
|
||||
msgid "Add Icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/icon/icon.php:21
|
||||
msgid "Remove Icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link/link.php:20
|
||||
msgid "Add Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link/link.php:21
|
||||
msgid "Edit Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link/link.php:22
|
||||
msgid "Remove Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:37
|
||||
msgid "Hover"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:38
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:39
|
||||
msgid "Visited"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/link_color/link_color.php:40
|
||||
msgid "Focus"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/map/map.php:24
|
||||
msgid "Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/map/map.php:25
|
||||
msgid "Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/media/media.php:23 inc/csf/fields/upload/upload.php:21
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/media/media.php:24 inc/csf/fields/upload/upload.php:22
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/sorter/sorter.php:21
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/sorter/sorter.php:22
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/switcher/switcher.php:20
|
||||
msgid "On"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/switcher/switcher.php:21
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:96
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:97
|
||||
msgid "Select a font"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:105
|
||||
msgid "Backup Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:119
|
||||
#: inc/csf/fields/typography/typography.php:132
|
||||
#: inc/csf/fields/typography/typography.php:145
|
||||
#: inc/csf/fields/typography/typography.php:160
|
||||
#: inc/csf/fields/typography/typography.php:176
|
||||
#: inc/csf/fields/typography/typography.php:189
|
||||
#: inc/csf/fields/typography/typography.php:203
|
||||
#: inc/csf/fields/typography/typography.php:221
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:130
|
||||
msgid "Font Style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:144
|
||||
#: inc/csf/fields/typography/typography.php:145
|
||||
msgid "Load Extra Styles"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:158
|
||||
msgid "Subset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:168
|
||||
msgid "Text Align"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:170
|
||||
msgid "Inherit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:171
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:172
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:173
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:174
|
||||
msgid "Justify"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:175
|
||||
msgid "Initial"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:184
|
||||
msgid "Font Variant"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:187
|
||||
msgid "Small Caps"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:188
|
||||
msgid "All Small Caps"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:197
|
||||
msgid "Text Transform"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:200
|
||||
msgid "Capitalize"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:201
|
||||
msgid "Uppercase"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:202
|
||||
msgid "Lowercase"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:211
|
||||
msgid "Text Decoration"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:218
|
||||
msgid "Wavy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:219
|
||||
msgid "Overline"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:220
|
||||
msgid "Line-through"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:233
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:245
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:257
|
||||
msgid "Letter Spacing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:269
|
||||
msgid "Word Spacing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:284
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:295
|
||||
msgid "Custom Style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:362
|
||||
msgid "Custom Web Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:368
|
||||
msgid "Safe Web Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/fields/typography/typography.php:388
|
||||
msgid "Google Web Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:72 inc/csf/functions/actions.php:110
|
||||
msgid "Error: Invalid key."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:114
|
||||
msgid "Error: The response is not a valid JSON response."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:174
|
||||
msgid "Error: Invalid term ID."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/actions.php:180
|
||||
msgid "Error: You do not have permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:14 inc/csf/functions/validate.php:86
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:32 inc/csf/functions/validate.php:106
|
||||
msgid "Please enter a valid number."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:50 inc/csf/functions/validate.php:126
|
||||
msgid "This field is required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/functions/validate.php:68 inc/csf/functions/validate.php:146
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:23
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:24
|
||||
msgid "Video Source."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:25
|
||||
msgid "Upload Your Video here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:31
|
||||
msgid "Upload Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:32
|
||||
msgid "Subtitle Source."
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:33
|
||||
msgid "Upload Your Subtitle here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:44
|
||||
msgid "Upload logo"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:45
|
||||
msgid "Logo Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:46
|
||||
msgid "Upload Your logo here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:54
|
||||
msgid "Upload Banner"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:55
|
||||
msgid "Banner Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:56
|
||||
msgid "Upload Your Banner here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:62
|
||||
msgid "Auto Play"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:63 inc/csf/metabox-options.php:73
|
||||
msgid "Choose a option whatever you want - Show / Hide"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:72
|
||||
msgid "Video Loop"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:84
|
||||
msgid "Choose Your Player Theme Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:91
|
||||
msgid "Choose Your Player Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/csf/metabox-options.php:97 inc/csf/metabox-options.php:98
|
||||
msgid "Player Subtitle Font / Size"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/dPlayer"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "You can easily integrate video player in your wordress website using this plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://abuhayatpolash.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,954 @@
|
||||
# Copyright (C) 2021 Rouergue Creation
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Custom Oceanwp Shop 1.0\n"
|
||||
"Report-Msgid-Bugs-To: ntickets\n"
|
||||
"POT-Creation-Date: 2021-05-01 13:16+0200\n"
|
||||
"PO-Revision-Date: 2021-05-05 09:31+0200\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: \n"
|
||||
"X-Generator: Poedit 2.4.3\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Language: fr\n"
|
||||
|
||||
# Traduction ecos-admin-menu.php
|
||||
# ########################################################
|
||||
#: inc/ecos-admin-menu.php:32 inc/ecos-admin-menu.php:47
|
||||
#: inc/ecos-admin-menu.php:119
|
||||
msgid "Easy Custom OceanWP Shop General Settings"
|
||||
msgstr "Réglages général du plugin Easy Custom OceanWP Shop"
|
||||
|
||||
#: inc/ecos-admin-menu.php:33
|
||||
msgid "ECOS Settings"
|
||||
msgstr "Paramètres ECOS"
|
||||
|
||||
#: inc/ecos-admin-menu.php:48
|
||||
msgid "General Settings"
|
||||
msgstr "Réglages Général"
|
||||
|
||||
#: inc/ecos-admin-menu.php:61 inc/ecos-admin-menu.php:62
|
||||
#: inc/ecos-admin-menu.php:175
|
||||
msgid "Woocommerce Standard Shop Settings"
|
||||
msgstr "Paramètres Boutique Standard WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:62 inc/ecos-admin-menu.php:133
|
||||
msgid "Woocommerce Standard Shop"
|
||||
msgstr "Boutique Standard WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:74 inc/ecos-admin-menu.php:217
|
||||
msgid "custom store settings with OceanWP theme"
|
||||
msgstr "Paramètres de la boutique personnalisés avec le thème OceanWP"
|
||||
|
||||
#: inc/ecos-admin-menu.php:75 inc/ecos-admin-menu.php:137
|
||||
msgid "OceanWP Theme Shop"
|
||||
msgstr "Boutique du thème OceanWP"
|
||||
|
||||
#: inc/ecos-admin-menu.php.php:127 inc/ecos-admin-menu.php.php:226
|
||||
#: inc/ecos-admin-menu.php.php:472
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:255
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1054
|
||||
msgid "Shop customization:"
|
||||
msgstr "Personnalisation de la boutique:"
|
||||
|
||||
#: inc/ecos-admin-menu.php.php:129
|
||||
msgid "The settings on this page are functional regardless of the WordPress theme used."
|
||||
msgstr "Les paramètres de cette page sont fonctionnels quel que soit le thème WordPress utilisé."
|
||||
|
||||
#: inc/ecos-admin-menu.php:131
|
||||
msgid "Important! has the shop section if you do not use the OceanWP theme select the option:"
|
||||
msgstr "Important! a la section boutique si vous n'utilisez pas le thème OceanWP sélectionnez l'option:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:135
|
||||
msgid "otherwise"
|
||||
msgstr "Sinon"
|
||||
|
||||
#: inc/ecos-admin-menu.php:139
|
||||
msgid "depending on the option chosen for more customization, respectively select the menu:"
|
||||
msgstr "En fonction de l'option choisie pour plus de personnalisation, sélectionnez respectivement le menu:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:141
|
||||
msgid "• ECOS settings > Woocommerce Standard Shop"
|
||||
msgstr "• Paramètres ECOS > Boutique standard WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:143
|
||||
msgid "• ECOS settings > OceanWP Theme Shop"
|
||||
msgstr "• Paramètres ECOS > Boutique du thème OceanWP"
|
||||
|
||||
#: inc/ecos-admin-menu.php:154 inc/ecos-admin-menu.php:196
|
||||
#: inc/ecos-admin-menu.php:250
|
||||
msgid "Save Settings"
|
||||
msgstr "Enregistrer les paramètres"
|
||||
|
||||
#: inc/ecos-admin-menu.php:183
|
||||
msgid "WooCommerce shop customization:"
|
||||
msgstr "Personnalisation de la boutique WooCommerce:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:185
|
||||
msgid "This settings page is under development."
|
||||
msgstr "Cette page de paramètres est en cours de développement."
|
||||
|
||||
#: inc/ecos-admin-menu.php:187
|
||||
msgid "More customization of the store to come for the next version of the plugin."
|
||||
msgstr "Plus de personnalisation de la boutique à venir pour la prochaine version du plugin."
|
||||
|
||||
#: inc/ecos-admin-menu.php:228
|
||||
msgid "welcome to the settings page of a store customized with the OceanWP Theme."
|
||||
msgstr "Bienvenue sur la page des paramètres d'une boutique personnalisée avec le thème OceanWP."
|
||||
|
||||
#: inc/ecos-admin-menu.php:230
|
||||
msgid "the parameters on this page are complementary to those defined by the OceanWP theme via the menus:"
|
||||
msgstr "Les paramètres de cette page sont complémentaires de ceux définis par le thème OceanWP via les menus:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:232
|
||||
msgid "• Appearance > Customize > WooCommerce"
|
||||
msgstr "• Apparence> Personnaliser> WooCommerce"
|
||||
|
||||
#: inc/ecos-admin-menu.php:234
|
||||
msgid "• Appearance > Typography"
|
||||
msgstr "• Apparence> Typographie"
|
||||
|
||||
#: inc/ecos-admin-menu.php:236
|
||||
msgid "Important! for the parameters of this page to be functional you must have selected in the shop section of the menu:"
|
||||
msgstr "Important! pour que les paramètres de cette page soient fonctionnels, vous devez avoir sélectionné dans la section boutique du menu:"
|
||||
|
||||
#: inc/ecos-admin-menu.php:238
|
||||
msgid "ECOS Setting > General settings"
|
||||
msgstr "Paramètres ECOS > Réglages Général"
|
||||
|
||||
#: inc/ecos-admin-menu.php:240
|
||||
msgid "the shop choice option: oceanwp theme shop"
|
||||
msgstr "l'option pour le choix de la boutique: boutique du thème oceanwp"
|
||||
|
||||
# Traduction ecos-multiple-settings.php
|
||||
# #########################################################
|
||||
#: inc/ecos-multiple-settings.php:112
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:89
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:125
|
||||
msgid "Default settings"
|
||||
msgstr "Paramètres par défaut"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:121
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:98
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:134
|
||||
msgid "initialize the plugin with default settings"
|
||||
msgstr "initialiser le plugin avec les paramètres par défaut"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:134
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:111
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:147
|
||||
msgid "SHOP"
|
||||
msgstr "BOUTIQUE"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:144
|
||||
msgid "shop choice"
|
||||
msgstr "choix de la boutique"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:157
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:392
|
||||
msgid "PRODUCTS"
|
||||
msgstr "PRODUITS"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:167
|
||||
msgid "Display the weight and dimensions of a product"
|
||||
msgstr "Afficher le poids et les dimensions d'un produit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:178
|
||||
msgid "Display the number of products sold"
|
||||
msgstr "Afficher le nombre de produits vendus"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:188
|
||||
msgid "threshold from which we display the number of products sold"
|
||||
msgstr "seuil à partir duquel on affiche le nombre de produits vendus"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:199
|
||||
msgid "Display a promotion message"
|
||||
msgstr "Message de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:208
|
||||
msgid "write a promotion message"
|
||||
msgstr "rédiger un message de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:219
|
||||
msgid "display secure payment with credit card logos"
|
||||
msgstr "afficher le paiement sécurisé avec les logos des cartes de crédit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:229
|
||||
msgid "hide description block"
|
||||
msgstr "masquer le bloc de description"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:240
|
||||
msgid "hide additional information block"
|
||||
msgstr "masquer le bloc d'informations supplémentaires"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:251
|
||||
msgid "hide the reviews block"
|
||||
msgstr "masquer le bloc d'avis"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:267
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:519
|
||||
msgid "CART"
|
||||
msgstr "PANIER"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:277
|
||||
msgid "Add the text free delivery from ... on the shopping cart page"
|
||||
msgstr "Ajouter le texte livraison gratuite à partir de ... sur la page du panier"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:287
|
||||
msgid "enter your text free delivery from ..."
|
||||
msgstr "entrez votre texte livraison gratuite à partir de ..."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:298
|
||||
msgid "show product categories"
|
||||
msgstr "afficher les catégories de produits"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:309
|
||||
msgid "show normal and discounted price"
|
||||
msgstr "afficher le prix normal et en promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:320
|
||||
msgid "hide delivery methods when free is available"
|
||||
msgstr "masquer les modes de livraison lorsque la gratuité est disponible"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:332 inc/ecos-multiple-settings.php:437
|
||||
#: inc/ecos-multiple-settings.php:518 inc/ecos-multiple-settings.php:949
|
||||
msgid "add the weight of the cart"
|
||||
msgstr "Ajouter le poids du Panier"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:344
|
||||
msgid "add of fixed costs to the cart"
|
||||
msgstr "ajout de frais fixes au panier"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:354
|
||||
msgid "Label of fixed costs"
|
||||
msgstr "Étiquette des coûts fixes"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:364
|
||||
msgid "fixed fee amount in x.xx format"
|
||||
msgstr "frais forfaitaire au format x.xx"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:373 inc/ecos-multiple-settings.php:414
|
||||
msgid "VAT class"
|
||||
msgstr "classe de TVA"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:385
|
||||
msgid "Fee as a percentage of the basket amount excluding tax"
|
||||
msgstr "Frais en pourcentage du montant du panier hors taxes"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:395
|
||||
msgid "label for percentage fee"
|
||||
msgstr "étiquette pour les frais en pourcentage"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:405
|
||||
msgid "percentage value in x.xx format"
|
||||
msgstr "valeur du pourcentage au format x.xx"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:426
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:645
|
||||
msgid "CHECKOUT"
|
||||
msgstr "VALIDATION DE LA COMMANDE"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:474
|
||||
msgid "• Choice of a standard Woocommerce store whatever the WordPress theme"
|
||||
msgstr "• Choix d'une boutique Woocommerce standard quel que soit le thème WordPress"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:476
|
||||
msgid "• Choice of a store to customize by the OceanWP theme with the WordPress backoffice menu:"
|
||||
msgstr "• Choix d'une boutique à personnaliser par le thème OceanWP avec le menu du backoffice WordPress:"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:478
|
||||
msgid "Appearance > Customize > WooCommerce > General"
|
||||
msgstr "Apparence > Personnaliser > WooCommerce > Général "
|
||||
|
||||
#: inc/ecos-multiple-settings.php:480
|
||||
msgid "Option remove all WooCommerce features added for OceanWP: No"
|
||||
msgstr "Option supprimer toutes les fonctionnalités WooCommerce ajoutées pour OceanWP: Non"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:492
|
||||
msgid "Display the weight and dimensions of a product:"
|
||||
msgstr "Afficher le poids et les dimensions d'un produit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:494
|
||||
msgid "We display the weight of a product and the dimensions only with simple products."
|
||||
msgstr "Nous affichons le poids d'un produit et les dimensions uniquement avec des produits simples."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:496
|
||||
msgid "Does not work with variable products."
|
||||
msgstr "Ne fonctionne pas avec des produits variables."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:507
|
||||
msgid "Free Shipping Info"
|
||||
msgstr "Informations sur la livraison gratuite"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:548 inc/ecos-multiple-settings.php:551
|
||||
#: inc/ecos-multiple-settings.php:612 inc/ecos-multiple-settings.php:642
|
||||
#: inc/ecos-multiple-settings.php:639 inc/ecos-multiple-settings.php:685
|
||||
#: inc/ecos-multiple-settings.php:688 inc/ecos-multiple-settings.php:723
|
||||
#: inc/ecos-multiple-settings.php:726 inc/ecos-multiple-settings.php:753
|
||||
#: inc/ecos-multiple-settings.php:756 inc/ecos-multiple-settings.php:776
|
||||
#: inc/ecos-multiple-settings.php:779 inc/ecos-multiple-settings.php:800
|
||||
#: inc/ecos-multiple-settings.php:803 inc/ecos-multiple-settings.php:832
|
||||
#: inc/ecos-multiple-settings.php:835 inc/ecos-multiple-settings.php:871
|
||||
#: inc/ecos-multiple-settings.php:874 inc/ecos-multiple-settings.php:895
|
||||
#: inc/ecos-multiple-settings.php:898 inc/ecos-multiple-settings.php:934
|
||||
#: inc/ecos-multiple-settings.php:937 inc/ecos-multiple-settings.php:963
|
||||
#: inc/ecos-multiple-settings.php:966 inc/ecos-multiple-settings.php:988
|
||||
#: inc/ecos-multiple-settings.php:1001 inc/ecos-multiple-settings.php:1067
|
||||
#: inc/ecos-multiple-settings.php:1070 inc/ecos-multiple-settings.php:1130
|
||||
#: inc/ecos-multiple-settings.php:1133
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:296
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:299
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:327
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:330
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:351
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:354
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1142
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1145
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1504
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1507
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1535
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1538
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1576
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1579
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1750
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1753
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1806
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1809
|
||||
msgid "no"
|
||||
msgstr "non"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:556 inc/ecos-multiple-settings.php:620
|
||||
#: inc/ecos-multiple-settings.php:647 inc/ecos-multiple-settings.php:693
|
||||
#: inc/ecos-multiple-settings.php:731 inc/ecos-multiple-settings.php:761
|
||||
#: inc/ecos-multiple-settings.php:784 inc/ecos-multiple-settings.php:808
|
||||
#: inc/ecos-multiple-settings.php:840 inc/ecos-multiple-settings.php:879
|
||||
#: inc/ecos-multiple-settings.php:903 inc/ecos-multiple-settings.php:942
|
||||
#: inc/ecos-multiple-settings.php:971 inc/ecos-multiple-settings.php:1006
|
||||
#: inc/ecos-multiple-settings.php:1075 inc/ecos-multiple-settings.php:1138
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:304
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:335
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:359
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1150
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1512
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1543
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1584
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1758
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1603
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:578 inc/ecos-multiple-settings.php:581
|
||||
msgid "woocommerce standard shop"
|
||||
msgstr "boutique standard woocommerce"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:586
|
||||
msgid "oceanwp theme shop"
|
||||
msgstr "boutique thème oceanwp"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:627
|
||||
msgid "Number Of Products Sold"
|
||||
msgstr "Nombre de produits vendus"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:666
|
||||
msgid "promotion message"
|
||||
msgstr "Message de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:668
|
||||
msgid "only works with promotional products"
|
||||
msgstr "ne fonctionne qu'avec des produits promotionnels"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:710
|
||||
msgid "secure payment"
|
||||
msgstr "Paiement sécurisé"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:738
|
||||
msgid "hide product description blocks"
|
||||
msgstr "Masquer les blocs de description de produit"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:858
|
||||
msgid "category product & promotion price"
|
||||
msgstr "Catégorie produit et prix promotionnel"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:910
|
||||
msgid "hide delivery methods"
|
||||
msgstr "Masquer les modes de livraison"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:914
|
||||
msgid "Option: hide delivery methods when free is available"
|
||||
msgstr "Option: masquer les modes de livraison lorsque la gratuité est disponible"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:916
|
||||
msgid "For correct operation of this option,"
|
||||
msgstr "Pour le bon fonctionnement de cette option,"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:918
|
||||
msgid "start by clearing the WooCommerce cache by going to the menu Woocommerce > Etat > Outils > WooCommerce Trascients."
|
||||
msgstr "commencez par vider le cache de WooCommerce en allant dans le menu Woocommerce> Etat> Outils> WooCommerce Trascients."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:920
|
||||
msgid "Click on the Clear temporary data button."
|
||||
msgstr "Cliquez sur le bouton Effacer les données temporaires."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:978
|
||||
msgid "add fixed costs"
|
||||
msgstr "Ajouter des coûts fixes"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:1048
|
||||
msgid "Add Variable Costs"
|
||||
msgstr "Ajouter des coûts variables"
|
||||
|
||||
#: inc/ecos-multiple-settings.php:981 inc/ecos-multiple-settings.php:1050
|
||||
msgid "VAT class defined from the back office WordPress:WooCommerce > Settings > Tax."
|
||||
msgstr "Classe de TVA définie depuis le back office WordPress: WooCommerce > Paramètres > Taxe."
|
||||
|
||||
#: inc/ecos-multiple-settings.php:983 inc/ecos-multiple-settings.php:1052
|
||||
msgid "if you do not wish to apply VAT, leave the field empty."
|
||||
msgstr "Si vous ne souhaitez pas appliquer la TVA, laissez le champ vide."
|
||||
|
||||
# Traduction ecos-multiple-settings_woocommerce_standard_shop.php
|
||||
# #################################################################
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:123
|
||||
msgid "breadcrumb modification"
|
||||
msgstr "modification du fil d'Ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:133
|
||||
msgid "breadcrumb remove"
|
||||
msgstr "masquer le fil d'ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:145
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:159
|
||||
msgid "shop title: font weight"
|
||||
msgstr "titre de la boutique: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:151
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:165
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:296
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:335
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:365
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:504
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:537
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:616
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:703
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:857
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:958
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1022
|
||||
msgid "500"
|
||||
msgstr "500"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:152
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:166
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:297
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:336
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:366
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:505
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:538
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:617
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:704
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:858
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:959
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1023
|
||||
msgid "600"
|
||||
msgstr "600"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:153
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:167
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:298
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:337
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:367
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:506
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:539
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:618
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:705
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:859
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:960
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1024
|
||||
msgid "700"
|
||||
msgstr "700"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:154
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:168
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:299
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:338
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:368
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:507
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:540
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:619
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:706
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:860
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:961
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1025
|
||||
msgid "800"
|
||||
msgstr "800"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:155
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:169
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:300
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:339
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:369
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:508
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:541
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:620
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:707
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:861
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:962
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1026
|
||||
msgid "900"
|
||||
msgstr "900"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:163
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:186
|
||||
msgid "shop title color"
|
||||
msgstr "couleur du titre de la boutique"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:175
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:207
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:198
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:230
|
||||
msgid "text font size in pixel"
|
||||
msgstr "taille de la police du texte en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:185
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:217
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:208
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:240
|
||||
msgid "text color"
|
||||
msgstr "couleur du texte"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:195
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:218
|
||||
msgid "woocommerce info: background color"
|
||||
msgstr "woocommerce info: couleur d'arrière plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:227
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:250
|
||||
msgid "woocommerce message: background color"
|
||||
msgstr "woocommerce message: couleur d'arrière-plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:257
|
||||
msgid "On the general settings page you have chosen the option: woocommerce standard shop."
|
||||
msgstr "Sur la page de Réglages Général, vous avez choisi l'option: boutique standard woocommerce."
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:261
|
||||
msgid "breadcrumb setting"
|
||||
msgstr "Réglage du fil d'Ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:265
|
||||
msgid "breadcrumb modification:"
|
||||
msgstr "modification du fil d'Ariane:"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:267
|
||||
msgid "shop name insertion in the second position of the breadcrumbs"
|
||||
msgstr "insertion du nom de la boutique en deuxième position du fil d'Ariane"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:269
|
||||
msgid "for pages other than the shop."
|
||||
msgstr "pour les pages autres que la boutique."
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:366
|
||||
msgid "shop title"
|
||||
msgstr "Titre de la boutique"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:384
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1170
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1342
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1394
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1435
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1620
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1651
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1760
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1820
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1870
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1972
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1995
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2018
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2041
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2081
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2185
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2270
|
||||
msgid "Choose an option"
|
||||
msgstr "Sélectionner une option"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:411
|
||||
msgid "Woocommerce Info"
|
||||
msgstr "Woocommerce Info"
|
||||
|
||||
#: inc/ecos-multiple-settings_woocommerce_standard_shop.php:453
|
||||
msgid "Woocommerce Message"
|
||||
msgstr "Woocommerce Message"
|
||||
|
||||
# ecos-multiple-settings_oceanwp_shop.php
|
||||
# #################################################################
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:177
|
||||
msgid "shop title: margin top in pixel"
|
||||
msgstr "titre de la boutique: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:262
|
||||
msgid "product title font"
|
||||
msgstr "police du titre pour les produits"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:271
|
||||
msgid "product title: font size in pixel"
|
||||
msgstr "titre du produit: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:281
|
||||
msgid "product title: font size in pixel on mobile"
|
||||
msgstr "titre du produit: taille de la police sur mobile en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:290
|
||||
msgid "product title: font weight"
|
||||
msgstr "titre du produit: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:308
|
||||
msgid "product title: margin bottom in pixel"
|
||||
msgstr "titre du produit: marge basse en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:320
|
||||
msgid "out of stock badge: font size in pixel"
|
||||
msgstr "badge en rupture de stock: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:329
|
||||
msgid "out stock badge: font weight"
|
||||
msgstr "badge en rupture de stock: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:350
|
||||
msgid "promotion badge: font size in pixel"
|
||||
msgstr "badge de promotion: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:359
|
||||
msgid "promotion badge: font weight"
|
||||
msgstr "badge de promotion: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:403
|
||||
msgid "breadcrumb: margin top in pixels"
|
||||
msgstr "fil d'Ariane: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:412
|
||||
msgid "product sheet: padding top in pixels"
|
||||
msgstr "fiche produit: marge interne haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:424
|
||||
msgid "remove product sheet border"
|
||||
msgstr "supprimer les bordures de la fiche produit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:436
|
||||
msgid "hide related products"
|
||||
msgstr "masquer les produits apparentés"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:446
|
||||
msgid "related products title: font size in pixel"
|
||||
msgstr "titre des produits apparentés: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:458
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:623
|
||||
msgid "hide cross-selling"
|
||||
msgstr "masquer la vente croisée"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:468
|
||||
msgid "cross-selling title: font size in pixel"
|
||||
msgstr "titre de vente croisée: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:480
|
||||
msgid "PRODUCTS CATEGORIES"
|
||||
msgstr "CATÉGORIES DE PRODUITS"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:489
|
||||
msgid "products categories title: font size in pixel"
|
||||
msgstr "titre des catégories de produits: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:498
|
||||
msgid "products categories title: font weight"
|
||||
msgstr "titre des catégories de produits: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:531
|
||||
msgid "cart page title: font weight"
|
||||
msgstr "titre de la page du panier: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:549
|
||||
msgid "cart page title: margin top in pixel"
|
||||
msgstr "titre de la page du panier: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:561
|
||||
msgid "table header: background color"
|
||||
msgstr "en-tête de la table: couleur d'arrière plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:570
|
||||
msgid "products table: thumbnail widht in pixel"
|
||||
msgstr "table des produits: largeur de la vignette en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:579
|
||||
msgid "remove products button: hover color"
|
||||
msgstr "bouton Supprimer les produits: couleur de survol"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:588
|
||||
msgid "button style: border radius in pixel"
|
||||
msgstr "style des boutons: rayon de la bordure en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:600
|
||||
msgid "hide shipping address"
|
||||
msgstr "masquer l'adresse de livraison"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:610
|
||||
msgid "price: font weight"
|
||||
msgstr "prix: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:655
|
||||
msgid "column your order: width en %"
|
||||
msgstr "colonne votre commande: largeur en %"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:661
|
||||
msgid "46"
|
||||
msgstr "46"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:662
|
||||
msgid "47"
|
||||
msgstr "47"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:663
|
||||
msgid "48"
|
||||
msgstr "48"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:664
|
||||
msgid "49"
|
||||
msgstr "49"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:665
|
||||
msgid "50"
|
||||
msgstr "50"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:666
|
||||
msgid "51"
|
||||
msgstr "51"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:667
|
||||
msgid "52"
|
||||
msgstr "52"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:668
|
||||
msgid "53"
|
||||
msgstr "53"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:669
|
||||
msgid "54"
|
||||
msgstr "54"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:679
|
||||
msgid "checkout page title: font size in pixel"
|
||||
msgstr "titre de la page de paiement: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:688
|
||||
msgid "checkout page title: font size in pixel on mobile"
|
||||
msgstr "titre de la page de paiement: taille de la police en pixel sur mobile"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:697
|
||||
msgid "checkout page title: font weight"
|
||||
msgstr "titre de la page de paiement: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:715
|
||||
msgid "checkout page title : margin top in pixel"
|
||||
msgstr "titre de la page de paiement: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:728
|
||||
msgid "other checkout page title : font size in pixel"
|
||||
msgstr "autre titre de la page de paiement: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:740
|
||||
msgid "form: widht in %"
|
||||
msgstr "formulaire: largeur en %"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:749
|
||||
msgid "form: border color"
|
||||
msgstr "formulaire: couleur des bordures"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:761
|
||||
msgid "form input: border color"
|
||||
msgstr "entrée de formulaire: couleur de la bordure"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:773
|
||||
msgid "product title: align"
|
||||
msgstr "titre du produit: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:779
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:795
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:811
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:827
|
||||
msgid "left"
|
||||
msgstr "gauche"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:780
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:796
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:812
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:828
|
||||
msgid "center"
|
||||
msgstr "centre"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:781
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:797
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:813
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:829
|
||||
msgid "right"
|
||||
msgstr "droit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:789
|
||||
msgid "subtotal title: align"
|
||||
msgstr "titre du sous-total: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:805
|
||||
msgid "product column: align"
|
||||
msgstr "colonne de produits: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:821
|
||||
msgid "subtotal column: align"
|
||||
msgstr "colonne de sous-total: aligner"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:839
|
||||
msgid "order table: border color"
|
||||
msgstr "table votre commande: couleur de la bordure"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:851
|
||||
msgid "subtotal price & total price & TVA: font weight"
|
||||
msgstr "prix sous-total & prix total & TVA: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:872
|
||||
msgid "payment methods background color"
|
||||
msgstr "couleur d'arrière-plan des méthodes de paiement"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:881
|
||||
msgid "place order button: width in %"
|
||||
msgstr "bouton de commande: largeur en %"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:896
|
||||
msgid "ORDER RECEIVED"
|
||||
msgstr "ORDRE REÇU"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:907
|
||||
msgid "order détails table: background color(subtotal & shipping & payment method & total)"
|
||||
msgstr "tableau des détails de la commande: couleur d'arrière-plan (sous-total et expédition et mode de paiement et total)"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:917
|
||||
msgid "order détails table: text color(subtotal & shipping & payment method & total)"
|
||||
msgstr "tableau des détails de la commande: couleur du texte (sous-total et expédition et mode de paiement et total)"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:930
|
||||
msgid "MY ACCOUNT PAGE"
|
||||
msgstr "PAGE MON COMPTE"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:943
|
||||
msgid "title my account: font size in pixel"
|
||||
msgstr "titre mon compte: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:952
|
||||
msgid "title my account: font weight"
|
||||
msgstr "titre mon compte: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:970
|
||||
msgid "title my account: margin top in pixel"
|
||||
msgstr "titre mon compte: marge haute en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:981
|
||||
msgid "login title: font size in pixel"
|
||||
msgstr "titre connexion: taille de la police en pixel"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:992
|
||||
msgid "Navigation: background color"
|
||||
msgstr "Navigation: couleur d'arrière-plan"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1003
|
||||
msgid "Product title and Total Title: text color"
|
||||
msgstr "Titre du produit et titre total: couleur du texte"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1016
|
||||
msgid "subtotal price & total price: font weight"
|
||||
msgstr "prix soustotal & prix total: graisse de la police"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1056
|
||||
msgid "On the general settings page you have chosen the option: oceanwp theme shop."
|
||||
msgstr "Sur la page Réglages Général, vous avez choisi l'option: boutique thème oceanwp."
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1058
|
||||
msgid "All the customizations of this settings page are in addition to the options of the WordPress backoffice menu: Appearance> Customize> WooCommerce."
|
||||
msgstr "Toutes les personnalisations obtenues avec les paramètres de cette page sont complémentaires avec les options du menu backoffice de WordPress: Apparence> Personnaliser> WooCommerce."
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1069
|
||||
msgid "Breadcrumb & Product Margin"
|
||||
msgstr "Fil d'Ariane et Marge Produit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1098
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1109
|
||||
msgid "Your Order"
|
||||
msgstr "Votre commande"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1300
|
||||
msgid "Product Title"
|
||||
msgstr "Titre du produit"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1374
|
||||
msgid "Out Of Stock Badge"
|
||||
msgstr "Badge en rupture de stock"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1415
|
||||
msgid "Promotion Badge"
|
||||
msgstr "Badge de promotion"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1489
|
||||
msgid "Remove product sheet border for Title & Button & Méta"
|
||||
msgstr "Supprimer les bordures de la fiche produit pour le titre & bouton & méta"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1519
|
||||
msgid "Related Products"
|
||||
msgstr "Produits Apparentés"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1561
|
||||
msgid "cross-selling: You may also like…"
|
||||
msgstr "vente croisée: vous aimerez peut-être aussi…"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1683
|
||||
msgid "Products Table"
|
||||
msgstr "Table des produits"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1734
|
||||
msgid "Total Cart Table"
|
||||
msgstr "Table total du panier "
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1792
|
||||
msgid "Cross-selling: YOU MAY BE INTERESTED IN…"
|
||||
msgstr "Ventes croisées: VOUS POUVEZ ÊTRE INTÉRESSÉ PAR…"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1852
|
||||
msgid "Checkout Page Title"
|
||||
msgstr "Titre de la page de paiement"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1913
|
||||
msgid "Billing Title & Order & Ship To A Different Address"
|
||||
msgstr "Titre de facturation et commande et expédition à une adresse différente"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1930
|
||||
msgid "Coupon Code Form & Login Form"
|
||||
msgstr "Formulaire code de coupon et formulaire de connexion"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1958
|
||||
msgid "form input billing details"
|
||||
msgstr "formulaire de saisie des détails de facturation"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:1975
|
||||
msgid "your order table"
|
||||
msgstr "table votre commande"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2113
|
||||
msgid "Payment Methods"
|
||||
msgstr "méthodes de paiement"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2229
|
||||
msgid "Login Form"
|
||||
msgstr "Formulaire de connexion"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2247
|
||||
msgid "Navigation"
|
||||
msgstr "La navigation"
|
||||
|
||||
#: inc/ecos-multiple-settings_oceanwp_shop.php:2263
|
||||
msgid "Order Details"
|
||||
msgstr "détails de la commande"
|
||||
@@ -0,0 +1,295 @@
|
||||
# ebanqo widget Pot
|
||||
# Copyright 2020 ...
|
||||
# This file is distributed under the GNU General Public License v2 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"eBanqo Widget Pot "
|
||||
"v0.0.1\n"
|
||||
"POT-Creation-Date: "
|
||||
"2020-11-30 16:16+0530\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Synsoft "
|
||||
"Global "
|
||||
"<inquiry@synsoftglobal."
|
||||
"com>\n"
|
||||
"Language-Team: Synsoft "
|
||||
"Global "
|
||||
"<inquiry@synsoftglobal."
|
||||
"com>\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Synsoft Global "
|
||||
"<inquiry@synsoftglobal."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"2.4.1\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit "
|
||||
"2.4.2\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: ebanqo.php:22
|
||||
msgid ""
|
||||
"Hi, you are welcome. "
|
||||
"Click this button below "
|
||||
"to start chatting with "
|
||||
"our bot."
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:79
|
||||
msgid ""
|
||||
"You might need to clear "
|
||||
"cache if your using a "
|
||||
"cache plugin to see your "
|
||||
"updates"
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:115
|
||||
msgid "eBanqo Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:116
|
||||
msgid "eBanqo"
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:138
|
||||
msgid ""
|
||||
"You do not have "
|
||||
"sufficient permissions "
|
||||
"to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: ebanqo.php:188
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:19
|
||||
msgid ""
|
||||
"eBanqo.io Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:40
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:44
|
||||
msgid ""
|
||||
"Enable widget on site"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:54
|
||||
msgid ""
|
||||
"Set the color of the "
|
||||
"initial chat trigger "
|
||||
"button"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:62
|
||||
msgid ""
|
||||
"Set the delay time for "
|
||||
"the initial prompt "
|
||||
"message to trigger the "
|
||||
"user's attention"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:67
|
||||
msgid "2000 = 2 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:72
|
||||
msgid ""
|
||||
"Set the initial prompt "
|
||||
"message content"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77
|
||||
msgid ""
|
||||
"The value can be any text"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:82
|
||||
msgid "WhatsApp Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:86
|
||||
msgid ""
|
||||
"Enable WhatsApp chat"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:96
|
||||
msgid ""
|
||||
"Set the WhatsApp number "
|
||||
"you want your customers "
|
||||
"to reach on"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:101
|
||||
msgid ""
|
||||
"Example: 2349099069647. "
|
||||
"You don't need to "
|
||||
"include the + sign."
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:106
|
||||
msgid "Twitter Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:110
|
||||
msgid "Enable Twitter chat"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:120
|
||||
msgid ""
|
||||
"Set the Twitter handle "
|
||||
"you want your customers "
|
||||
"to reach you on"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Example: "
|
||||
"104837247573943. To get "
|
||||
"your Twitter recipient "
|
||||
"ID, you can visit "
|
||||
"%shttp://gettwitterid."
|
||||
"com/%s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:130
|
||||
msgid "Messenger Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:134
|
||||
msgid ""
|
||||
"Enable Messenger chat"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:144
|
||||
msgid ""
|
||||
"Set the Facebook page/"
|
||||
"bot you want your "
|
||||
"customers to reach you on"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:149
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Example: "
|
||||
"1147276463357635647. To "
|
||||
"get your Facebook Page "
|
||||
"ID, you can visit "
|
||||
"%shttps://findmyfbid.com/"
|
||||
"%s, and follow the "
|
||||
"instructions there"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:154
|
||||
msgid ""
|
||||
"This allows users to be "
|
||||
"redirected to messenger "
|
||||
"app or open the "
|
||||
"messenger app pop-up on "
|
||||
"your website"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:165
|
||||
msgid "Webchat Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:170
|
||||
msgid "Button color"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:178
|
||||
msgid ""
|
||||
"Your logo on the webchat "
|
||||
"frame"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:183
|
||||
#: templates/settings.php:187
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:186
|
||||
msgid "Upload image"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:195
|
||||
msgid "Your webchat url"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:200
|
||||
msgid ""
|
||||
"https://webchat.ebanqo."
|
||||
"io/yourId"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:205
|
||||
msgid ""
|
||||
"Title on the webchat "
|
||||
"frame"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:210
|
||||
msgid "Your Bot Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:215
|
||||
msgid ""
|
||||
"Chat Frame background-"
|
||||
"color"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:223
|
||||
msgid ""
|
||||
"Chat frame text color"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:231
|
||||
msgid "Logo width size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:236
|
||||
#: templates/settings.php:246
|
||||
msgid "in pixel"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:241
|
||||
msgid "Logo height size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:257
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Having trouble and need "
|
||||
"some help? Check out our "
|
||||
"%sKnowledge Base%s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,100 @@
|
||||
# Copyright (C) 2021 Web Rockstar
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Enhanced YouTube Embed 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/enhanced-youtube-embed\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-04T02:05:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-3f4c34b\n"
|
||||
"X-Domain: enhanced-youtube-embed\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Enhanced YouTube Embed"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Additional options and settings for embedding YouTube videos with the block editor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Web Rockstar"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://webrockstar.net"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:111
|
||||
msgid "Can be in any YouTube URL format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:115
|
||||
msgid "Auto Play"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:124
|
||||
msgid "Hide Related Videos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:133
|
||||
msgid "Hide Video Controls"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:143
|
||||
msgid "Disable Full Screen View"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:155
|
||||
msgid "Do not show video annotations by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:165
|
||||
msgid "Loop Video"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:184
|
||||
msgid "Minimal YouTube Branding"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:196
|
||||
msgid "Use Privacy Enhanced Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:204
|
||||
msgid "Display Closed Captions by Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:214
|
||||
msgid "Interface Language"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:223
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:235
|
||||
msgid "ISO 639-1 two-letter language code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:227
|
||||
msgid "Default Closed Captions Language"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:241
|
||||
msgid "Video Start Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:252
|
||||
msgid "Video will start playing after this many seconds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:257
|
||||
msgid "Video End Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-youtube-embed-admin.php:265
|
||||
msgid "Video will stop playing after this many seconds"
|
||||
msgstr ""
|
||||
57
spec/fixtures/dynamic_finders/plugin_version/epaka-pl/translation_file/languages/epakaapi.pot
vendored
Normal file
57
spec/fixtures/dynamic_finders/plugin_version/epaka-pl/translation_file/languages/epakaapi.pot
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2021 epaka.pl
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Epaka, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: epaka 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-07 12:00+0100\n"
|
||||
"PO-Revision-Date: 2021-01-07 12:00+0100\n"
|
||||
"Last-Translator: Epaka\n"
|
||||
"Language-Team: Epaka\n"
|
||||
"Language: PL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgid "Epaka"
|
||||
msgstr ""
|
||||
|
||||
msgid "Panel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wyloguj"
|
||||
msgstr ""
|
||||
|
||||
msgid "Punkt odbioru"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wybierz punkt odbioru"
|
||||
msgstr ""
|
||||
|
||||
msgid "Punkt odbioru jest wymagany dla wybranego kuriera."
|
||||
msgstr ""
|
||||
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zlokalizuj mnie"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wyszukaj lub wybierz lokalizację"
|
||||
msgstr ""
|
||||
|
||||
msgid "Trwa wyszukiwanie punktów, proszę czekać..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Brak punktów w wybranym obszarze. Zmień obszar lub zmniejsz przybliżenie mapy."
|
||||
msgstr ""
|
||||
|
||||
msgid "Nie znaleziono wybranej lokalizacji"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wpisz kod pocztowy, miasto lub punkt"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,188 @@
|
||||
# Copyright (C) 2021 <a href="https://braft.pl">BRAFT</a>
|
||||
# This file is distributed under the same license as the ESWP Popup Notifications plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ESWP Popup Notifications 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/eswp-popup-notifications\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-30T10:16:43+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: eswp-popup-notifications\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: eswp-popup-notifications.php:37
|
||||
msgid "ESWP Popup Notifications"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://braft.pl"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "It is a very simple pupup notifications plugin to display notices to visitors."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "<a href=\"https://braft.pl\">BRAFT</a>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:22
|
||||
#: inc/eswp-popup-notifications-settings.php:98
|
||||
msgid "Save Popups"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:29
|
||||
msgid "Add Popups"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:31
|
||||
msgid "Style Popups"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:34
|
||||
msgid "Add ESWP Popup Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:64
|
||||
#: js/eswp-popup-notifications-settings.js:23
|
||||
#: js/wp-popup-notifications-settings.js:23
|
||||
msgid "popup slug...(mandatory)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:66
|
||||
#: js/eswp-popup-notifications-settings.js:25
|
||||
#: js/wp-popup-notifications-settings.js:25
|
||||
msgid "comma separated pages..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:69
|
||||
#: js/eswp-popup-notifications-settings.js:28
|
||||
#: js/wp-popup-notifications-settings.js:28
|
||||
msgid "all if empty"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:71
|
||||
#: js/eswp-popup-notifications-settings.js:30
|
||||
#: js/wp-popup-notifications-settings.js:30
|
||||
msgid "Set cookie on close?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:74
|
||||
#: js/eswp-popup-notifications-settings.js:33
|
||||
#: js/wp-popup-notifications-settings.js:33
|
||||
msgid "Expires: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:79
|
||||
#: js/eswp-popup-notifications-settings.js:38
|
||||
#: js/wp-popup-notifications-settings.js:38
|
||||
msgid "message..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:87
|
||||
msgid "Add Popup"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-settings.php:91
|
||||
msgid "Style ESWP Popup Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:39
|
||||
msgid "Overlay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:40
|
||||
#: inc/eswp-popup-notifications-style.php:93
|
||||
#: inc/eswp-popup-notifications-style.php:115
|
||||
msgid "color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:43
|
||||
#: inc/eswp-popup-notifications-style.php:73
|
||||
msgid " opacity: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:46
|
||||
msgid "Notification"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:47
|
||||
msgid "width: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:59
|
||||
msgid "padding: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:71
|
||||
msgid "background color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:76
|
||||
msgid "border color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:78
|
||||
msgid "border width: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:80
|
||||
msgid "border radius: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:82
|
||||
msgid "box shadow: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:85
|
||||
msgid "h-offset: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:87
|
||||
msgid "v-offset: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:89
|
||||
msgid "blur: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:91
|
||||
msgid "spread: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:95
|
||||
msgid "text align: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:97
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:98
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:99
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:102
|
||||
msgid "Font"
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:103
|
||||
msgid "size: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:117
|
||||
msgid "link color: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/eswp-popup-notifications-style.php:123
|
||||
msgid "Your popup notification preview! Brought to you by <a href=\"www.braft.pl\">BRAFT</a>."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,760 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Event Tickets Manager for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-28 19:09+0530\n"
|
||||
"PO-Revision-Date: 2021-04-28 19:09+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:175
|
||||
#: event-tickets-manager-for-woocommerce.php:85
|
||||
#: event-tickets-manager-for-woocommerce.php:91
|
||||
msgid "Event Tickets Manager for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:218
|
||||
msgid "Enable / Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:220
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:225
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:238
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:226
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:239
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:231
|
||||
msgid "Enable Event Location Site"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:233
|
||||
msgid "Enable this option to display event location on Google Map."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:246
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:275
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:350
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:263
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:269
|
||||
msgid "Google API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:265
|
||||
msgid ""
|
||||
"To get your API key, visit <a target=\"_blank\" href=\"http://www."
|
||||
"gmapswidget.com/documentation/generate-google-maps-api-key/\">here</a>, Make "
|
||||
"sure to enable <a target=\"_blank\" href=\"https://console.cloud.google.com/"
|
||||
"apis/library\">Maps JavaScript API</a> and <a target=\"_blank\" href="
|
||||
"\"https://console.cloud.google.com/apis/library\">Geocoding API</a> in order "
|
||||
"to get Google Maps functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:301
|
||||
msgid "Event Ticket Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:303
|
||||
msgid ""
|
||||
"Email Subject to notify receiver about the event ticket received. Use "
|
||||
"[SITENAME] shortcode as the name of the site."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:307
|
||||
msgid "Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:310
|
||||
msgid "Email Body Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:312
|
||||
msgid "Use [SITENAME] shortcode as the name of the site."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:318
|
||||
msgid "Upload Default Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:328
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:333
|
||||
msgid "Upload Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:344
|
||||
msgid "Upload the image which is used as a logo on your Email Template."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:368
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:369
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:370
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:374
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:375
|
||||
msgid "Please submit a ticket, our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:376
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:417
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:452
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:487
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:420
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:455
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:490
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:512
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:537
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:830
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:569
|
||||
msgid "Start Date/ Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:573
|
||||
msgid "Enter the date and time when the event will start."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:581
|
||||
msgid "End Date/ Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:585
|
||||
msgid "Enter the date and time when the event will end."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:593
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:50
|
||||
msgid "Venue"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:597
|
||||
msgid ""
|
||||
"Enter the accurate full address of event where it will be held to get best "
|
||||
"google result. Ex: Dharmapuri, Forest Colony, Tajganj, Agra, Uttar Pradesh "
|
||||
"282001, India"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:614
|
||||
msgid "Location Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:618
|
||||
msgid "Latitude of the event geographic location."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:626
|
||||
msgid "Location Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:630
|
||||
msgid "Longitude of the event geographic location "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:639
|
||||
msgid "Display event on google map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:650
|
||||
msgid "Add custom fields on the tickets for this event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:658
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:659
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:660
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:661
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:736
|
||||
msgid "Add More"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:810
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:811
|
||||
msgid "Textarea"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:812
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:360
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:813
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:814
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:815
|
||||
msgid "Yes/No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:853
|
||||
msgid "Search "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:892
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:47
|
||||
msgid "Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-event-tickets-manager-for-woocommerce-admin.php:971
|
||||
#, php-format
|
||||
msgid "Please add Google API key %s to display event location on google map."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:45
|
||||
msgid "Check-In Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:46
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:48
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:49
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:51
|
||||
msgid "Purchase Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:52
|
||||
msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:53
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:147
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:196
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-event-tickets-manager-for-woocommerce-events-info.php:197
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-admin-dashboard.php:26
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:35
|
||||
msgid "What is an Event Tickets Manager For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:36
|
||||
msgid ""
|
||||
"Events Tickets Manager For WooCommerce is a plugin that allows merchants to "
|
||||
"add events as products on your WooCommerce store. The best part is that you "
|
||||
"can sell the tickets of your offline events without paying a single to third-"
|
||||
"party marketplace services."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:39
|
||||
msgid "With Our Event Tickets Manager, You Can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:42
|
||||
msgid "Add event-based products to your website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:44
|
||||
msgid "Create an event management and ticketing website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:46
|
||||
msgid "Show upcoming events through a calendar on your online store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:47
|
||||
msgid "Manage the stock of tickets."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:48
|
||||
msgid "Display offline events location on google map."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:55
|
||||
msgid "Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:60
|
||||
msgid "Calendar Widget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:61
|
||||
msgid ""
|
||||
"The plugin comes with a calendar widget to portray the upcoming events on "
|
||||
"your store to your customers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:65
|
||||
msgid "Download Tickets As PDF"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:66
|
||||
msgid ""
|
||||
"The plugin allows the customers to download the tickets for offline use. "
|
||||
"Also, when a customer buys an event from your store the pdf is sent to the "
|
||||
"customer via email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:70
|
||||
msgid "Display Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:71
|
||||
msgid ""
|
||||
"The Events Manager For WooCommerce plugin lets you display the location of "
|
||||
"your offline events with the help of Google Maps."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:77
|
||||
msgid "Elite Features of Premium Version - Coming Soon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:81
|
||||
msgid "Promote Online Events"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:82
|
||||
msgid ""
|
||||
"Promote your online webinars and other premium online events from your "
|
||||
"WooCommerce store with the help of our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:86
|
||||
msgid "Buy Multiple Tickets For Single Event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:87
|
||||
msgid ""
|
||||
"The customers will be able to buy multiple tickets for a single event in "
|
||||
"your store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:91
|
||||
msgid "APIs To Verify Tickets"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:92
|
||||
msgid ""
|
||||
"APIs that allow the admin to log in on mobile apps (android/iOS) and scan QR "
|
||||
"codes at physical events to verify the ticket."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:96
|
||||
msgid "Allow Attendees To Pass The Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:97
|
||||
msgid ""
|
||||
"The customers can pass the ticket they have bought to their friends or "
|
||||
"family if they are not able to visit your event."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:101
|
||||
msgid "Reporting With Multiple Views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-overview.php:102
|
||||
msgid ""
|
||||
"The plugin provides a report of how the events in your store are performing. "
|
||||
"You can filter the report event-wise and attendee-wise."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/event-tickets-manager-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:49
|
||||
msgid "Event order email"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:51
|
||||
msgid "This email send to the customer at every event."
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:80
|
||||
msgid "Event order received."
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:161
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:163
|
||||
msgid "Enable this email notification"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:167
|
||||
msgid "Email heading"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:171
|
||||
#, php-format
|
||||
msgid "Available placeholders: %s"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:176
|
||||
msgid "Email type"
|
||||
msgstr ""
|
||||
|
||||
#: emails/class-mwb-etmfw-emails-notification.php:178
|
||||
msgid "Choose which format of email to send."
|
||||
msgstr ""
|
||||
|
||||
#: event-tickets-manager-for-woocommerce.php:130
|
||||
#: event-tickets-manager-for-woocommerce.php:131
|
||||
msgid "Event Check In"
|
||||
msgstr ""
|
||||
|
||||
#: event-tickets-manager-for-woocommerce.php:195
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: event-tickets-manager-for-woocommerce.php:318
|
||||
msgid ""
|
||||
"Woocommerce is not activated, Please activate Woocommerce first to install "
|
||||
"Event Tickets Manager for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:300
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:319
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:325
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:356
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:368
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:373
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:484
|
||||
msgid "Let us know why you are deactivating "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:484
|
||||
msgid " so we can improve the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:488
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-onboarding-steps.php:731
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:43
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:45
|
||||
msgid "Event Ticket Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:199
|
||||
msgid "Widget Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:204
|
||||
msgid "Event View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:206
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:209
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:213
|
||||
msgid "Scope of the Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:252
|
||||
msgid "All events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:253
|
||||
msgid "Future events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce-widget.php:254
|
||||
msgid "Past events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:343
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:347
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:351
|
||||
msgid "Ticket Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:355
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:361
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:385
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:443
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:452
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:455
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:458
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:461
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:464
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:467
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:470
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:473
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:354
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:968
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:467
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:470
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:473
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:358
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:972
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:476
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:479
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:482
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:488
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:491
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:519
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:522
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:485
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:503
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:506
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:515
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-event-tickets-manager-for-woocommerce.php:525
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to "
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/event-tickets-manager-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:244
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:264
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:283
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:305
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:325
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:346
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:933
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:950
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:963
|
||||
msgid "*"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:416
|
||||
msgid "Sorry, your nonce did not verify."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:840
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:843
|
||||
msgid "+ Add to Google Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:867
|
||||
msgid "Edit Ticket Information"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:884
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1023
|
||||
msgid "For"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1036
|
||||
msgid "Ticket Number"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1041
|
||||
msgid "Check In"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1084
|
||||
msgid "User checked in successfully."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1086
|
||||
msgid "Event has not started yet."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1089
|
||||
msgid "Event Expired!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1092
|
||||
msgid "Order not exist."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-event-tickets-manager-for-woocommerce-public.php:1095
|
||||
msgid "User has already checked in for the event."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,308 @@
|
||||
# Copyright (C) 2021 Sabin Mehedin
|
||||
# This file is distributed under the same license as the TikTokFeed plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TikTokFeed 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tik-tok-feed\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-29T06:54:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: tik-tok-feed\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TikTokFeed"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://sgmedia.ro/tik-tok-feed"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "-"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sabin Mehedin"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://sgmedia.ro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:16
|
||||
msgid "Tik Tok"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:22
|
||||
msgid "Shortcode Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:25
|
||||
msgid "Shortcode Feed Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:28
|
||||
msgid "Shortcode User Profile Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:31
|
||||
msgid "Shortcode User Profile Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:42
|
||||
msgid "Customer ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:44
|
||||
msgid "In order to use this plugin you need to connect to the API. Please fill in the field above with your customer id: c3b1852d-eca8-c81e-cdbe-45bf78930c2e"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:45
|
||||
msgid "Tik Tok Username"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:46
|
||||
msgid "Write without @. E.g.: sgmro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:56
|
||||
#: admin/business/model/AdminPage.php:185
|
||||
msgid "Shortcode:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:57
|
||||
msgid "Number of videos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:61
|
||||
msgid "The number of videos we will display in the feed. Max: 20"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:62
|
||||
msgid "Show number of followers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:64
|
||||
#: admin/business/model/AdminPage.php:71
|
||||
#: admin/business/model/AdminPage.php:77
|
||||
#: admin/business/model/AdminPage.php:91
|
||||
#: admin/business/model/AdminPage.php:211
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:65
|
||||
#: admin/business/model/AdminPage.php:72
|
||||
#: admin/business/model/AdminPage.php:78
|
||||
#: admin/business/model/AdminPage.php:92
|
||||
#: admin/business/model/AdminPage.php:212
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:68
|
||||
msgid "Tell me if you want to show the number of followers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:69
|
||||
#: admin/business/model/AdminPage.php:197
|
||||
msgid "Show follow button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:75
|
||||
#: admin/business/model/AdminPage.php:109
|
||||
#: admin/business/model/AdminPage.php:187
|
||||
msgid "Show description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:81
|
||||
#: admin/business/model/AdminPage.php:140
|
||||
msgid "Video cover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:82
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:84
|
||||
msgid "Both"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:85
|
||||
msgid "Static"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:86
|
||||
msgid "Dynamic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:89
|
||||
msgid "Show number of views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:96
|
||||
msgid "Video module"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:97
|
||||
msgid "Show date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:99
|
||||
msgid "Show button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:101
|
||||
#: admin/business/model/AdminPage.php:193
|
||||
msgid "Show likes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:103
|
||||
msgid "Show comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:105
|
||||
msgid "Show shares"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:107
|
||||
#: admin/business/model/AdminPage.php:195
|
||||
msgid "Show views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:120
|
||||
#: admin/business/model/AdminPage.php:233
|
||||
msgid "Follow button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:121
|
||||
#: admin/business/model/AdminPage.php:133
|
||||
#: admin/business/model/AdminPage.php:234
|
||||
#: admin/business/model/AdminPage.php:254
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:123
|
||||
#: admin/business/model/AdminPage.php:243
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:126
|
||||
#: admin/business/model/AdminPage.php:253
|
||||
msgid "Image profile border"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:127
|
||||
#: admin/business/model/AdminPage.php:214
|
||||
msgid "Primary color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:129
|
||||
#: admin/business/model/AdminPage.php:223
|
||||
msgid "Secondary color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:132
|
||||
msgid "Arrows"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:135
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:141
|
||||
msgid "Color number of views"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:144
|
||||
msgid "Video modal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:145
|
||||
msgid "Background for icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:147
|
||||
msgid "Color for icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:149
|
||||
msgid "Primary color for button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:158
|
||||
msgid "Secondary color for button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:167
|
||||
msgid "Third color for button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:186
|
||||
msgid "General settings:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:189
|
||||
msgid "Show following"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:191
|
||||
msgid "Show followers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:208
|
||||
msgid "Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/AdminPage.php:209
|
||||
msgid "Show wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: admin/business/model/api/Authenticator.php:56
|
||||
msgid "You have successfully connected to the API."
|
||||
msgstr ""
|
||||
|
||||
#: admin/TikTokFeedAdmin.php:46
|
||||
msgid "Connect to the API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/TikTokFeedAdmin.php:48
|
||||
msgid "To make the plugin functional, please complete your client id and make a connection to the API!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/TikTokFeedAdmin.php:50
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/feed/item.php:30
|
||||
msgid "View on tiktok"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/feed/items.php:15
|
||||
#: public/presentation/profile.php:37
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/feed/items.php:18
|
||||
#: public/presentation/profile.php:58
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/profile.php:30
|
||||
msgid "Following"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/profile.php:44
|
||||
msgid "Likes"
|
||||
msgstr ""
|
||||
|
||||
#: public/presentation/profile.php:51
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/ffsystems/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/ffsystems/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
Changelog
|
||||
==========
|
||||
|
||||
#### v1.0.0 - June 01, 2021
|
||||
|
||||
First release of the FFSystems for Wordpress plugin.
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/focusable/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/focusable/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "focusable",
|
||||
"version": "1.2.0",
|
||||
"description": "A WordPress plugin that displays a ring on the focusable elements when navigating through keyboard.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/KhizarWeb/focusable.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/KhizarWeb/focusable/issues"
|
||||
},
|
||||
"homepage": "https://github.com/KhizarWeb/focusable#readme",
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.26.14",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"laravel-mix": "^6.0.13",
|
||||
"postcss": "^8.2.6",
|
||||
"sass": "^1.32.8",
|
||||
"sass-loader": "^10.1.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2021 E-Learning expert
|
||||
# This file is distributed under the same license as the Video Resume for LearnDash plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Video Resume for LearnDash 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sfwd-video-resume\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-05T19:53:15+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ld_video_resume\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Video Resume for LearnDash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will resume the video from where user left."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "E-Learning expert"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/manishswamy077/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:93
|
||||
msgid "Select Video Provider"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:94
|
||||
msgid "Vimeo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:95
|
||||
msgid "Youtube"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:105
|
||||
msgid "Wistia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:106
|
||||
msgid "JWPlayer (Javascript Only)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:107
|
||||
msgid "VooPlayer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:120
|
||||
msgid "Multiple Video Resume Support "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-video-resume-setting.php:123
|
||||
msgid "Please select video provider to work with ."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,483 @@
|
||||
# Copyright (C) 2021 Deep Web Solutions
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Locked Payment Methods for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/deep-web-solutions/woocommerce-plugins-locked-payment-"
|
||||
"methods/issues\n"
|
||||
"POT-Creation-Date: 2021-05-29 16:16:14+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:36
|
||||
#. translators: 1. Component name, 2. Component version
|
||||
msgid ""
|
||||
"<strong>%1$s (%2$s)</strong> has encountered an error. Your environment "
|
||||
"doesn't meet all of the system requirements listed below:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:55
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:67
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:315
|
||||
#. translators: PHP version
|
||||
#. translators: WordPress version
|
||||
#. translators: %s: Installed version of the dependant plugin
|
||||
msgid "You're running version %s"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:80
|
||||
msgid ""
|
||||
"If you need to upgrade your version of PHP you can ask your hosting company "
|
||||
"for assistance, and if you need help upgrading WordPress you can refer to "
|
||||
"<a href=\"https://wordpress.org/support/article/updating-wordpress/\" "
|
||||
"target=\"_blank\">the Codex</a>."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/AbstractPermissions.php:85
|
||||
msgid "Failed to update permissions"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:158
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:175
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:223
|
||||
#. translators: 1. Installation node name, 2. Error message.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> failed to complete the installation routine. The "
|
||||
"error is: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:231
|
||||
msgid "<strong>%1$s</strong> was successfully updated."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:231
|
||||
msgid "<strong>%1$s</strong> was successfully installed."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/initialization/error.php:36
|
||||
#. translators: 1. Plugin name, 2. Plugin version, 3. Support email, 4. Support
|
||||
#. website
|
||||
msgid ""
|
||||
"<strong>%1$s (v%2$s)</strong> initialization failed. Please contact us at "
|
||||
"<strong><a href=\"mailto:%3$s\">%3$s</a></strong> or visit our <strong><a "
|
||||
"href=\"%4$s\" target=\"_blank\">support website</a></strong> to get help. "
|
||||
"Please include this error notice in your support query:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:23
|
||||
#. translators: 1. Plugin name, 2. Plugin version, 3. Name of the install
|
||||
#. button
|
||||
msgid ""
|
||||
"<strong>%1$s (v%2$s)</strong> needs to run its installation routine before "
|
||||
"it can be used. Please click the \"%3$s\" button to proceed:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:27
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:36
|
||||
#. translators: Name of the install button
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:23
|
||||
#. translators: 1. Plugin name, 2. Plugin version, 3. Name of the update button
|
||||
msgid ""
|
||||
"A data update is available for <strong>%1$s (v%2$s)</strong>. It is "
|
||||
"recommended to backup your database before proceeding. Please click the "
|
||||
"\"%3$s\" button when ready:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:27
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:38
|
||||
#. translators: Name of the update button
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/CronEvents/CronIntervalsEnum.php:139
|
||||
msgid "Every %s minutes"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/CronEvents/CronIntervalsEnum.php:140
|
||||
msgid "Every %s hours"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:155
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the %2$s PHP "
|
||||
"extension is missing. Contact your host or server administrator to install "
|
||||
"and configure the missing extension."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the following PHP "
|
||||
"extensions are missing: %2$s. Contact your host or server administrator to "
|
||||
"install and configure the missing extensions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:162
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> requires the %2$s PHP extension to function. Contact "
|
||||
"your host or server administrator to install and configure the missing "
|
||||
"extension."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> requires the following PHP extensions to function: "
|
||||
"%2$s. Contact your host or server administrator to install and configure "
|
||||
"the missing extensions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:186
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP functions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the %2$s PHP function "
|
||||
"is missing. Contact your host or server administrator to install and "
|
||||
"configure the missing function."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the following PHP "
|
||||
"functions are missing: %2$s. Contact your host or server administrator to "
|
||||
"install and configure the missing functions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:193
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP functions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> requires the %2$s PHP function to exist. Contact your "
|
||||
"host or server administrator to install and configure the missing function."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> requires the following PHP functions to exist: %2$s. "
|
||||
"Contact your host or server administrator to install and configure the "
|
||||
"missing functions."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:217
|
||||
#. translators: Plugin name or identifiable name.
|
||||
msgid ""
|
||||
"<strong>%s</strong> may behave unexpectedly because the following PHP "
|
||||
"configuration settings are expected:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:221
|
||||
msgid ""
|
||||
"Please contact your hosting provider or server administrator to configure "
|
||||
"these settings. The plugin will attempt to run despite this warning."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:225
|
||||
#. translators: Plugin name or identifiable name.
|
||||
msgid ""
|
||||
"<strong>%s</strong> cannot run because the following PHP configuration "
|
||||
"settings are expected:"
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:229
|
||||
msgid ""
|
||||
"Please contact your hosting provider or server administrator to configure "
|
||||
"these settings."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:251
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the %2$s plugin is "
|
||||
"either not installed or not active. Please install and activate the plugin "
|
||||
"first."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> may behave unexpectedly because the following plugins "
|
||||
"are either not installed or active: %2$s. Please install and activate these "
|
||||
"plugins first."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:258
|
||||
#. translators: 1. Plugin or identifiable name, 2. Comma-separated list of
|
||||
#. missing PHP extensions.
|
||||
msgid ""
|
||||
"<strong>%1$s</strong> requires the %2$s plugin to be installed and active. "
|
||||
"Please install and activate the plugin first."
|
||||
msgid_plural ""
|
||||
"<strong>%1$s</strong> requires the following plugins to be installed and "
|
||||
"active: %2$s. Please install and activate these plugins first."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/Dependencies/Actions/SetupDependenciesAdminNoticesTrait.php:284
|
||||
#. translators: PHP settings value.
|
||||
msgid "%s or higher"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/IntegrationsSettings.php:29
|
||||
msgid "Integrations Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:86
|
||||
msgid "Grant access to the following locked payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:92
|
||||
msgid "Payment methods ..."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:192
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to the group settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:136
|
||||
msgid "Grant access to payment methods:"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:145
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:214
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to membership plans."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:112
|
||||
msgid "View settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:112
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:116
|
||||
msgid "Upgrade for premium features"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:116
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:144
|
||||
msgid "Visit community forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:144
|
||||
msgid "Community support"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:145
|
||||
msgid "Send us an inquiry"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:145
|
||||
msgid "Contact us"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:154
|
||||
msgid "Visit your account area"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:154
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:155
|
||||
msgid "Visit premium support forums"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Plugin.php:155
|
||||
msgid "Premium support"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/GeneralSettings.php:27
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/GeneralSettings.php:50
|
||||
msgid "Payment methods which are locked by default"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/GeneralSettings.php:58
|
||||
msgid "Only enabled payment methods can be selected"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/PluginSettings.php:29
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/PluginSettings.php:45
|
||||
msgid "Remove all data on uninstallation?"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings/PluginSettings.php:50
|
||||
msgid ""
|
||||
"If enabled, the plugin will remove all database data when removed and you "
|
||||
"will need to reconfigure everything if you install it again at a later time."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings.php:126
|
||||
msgid "Failed to delete the plugin options from the database"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/AbstractUnlockStrategy.php:175
|
||||
#. translators: Strategy name.
|
||||
msgid "Unlock via %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:119
|
||||
msgid "Fields have been disabled because this order has already been paid."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:127
|
||||
#. translators: Name of the payment gateway.
|
||||
msgid "Unlock the <i>%s</i> payment method for this order?"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:136
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:243
|
||||
msgid ""
|
||||
"The customer is already granted access to this payment method through other "
|
||||
"means."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:200
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to each unpaid order. Access is granted only for the respective order."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:88
|
||||
msgid "Unlocked for"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:164
|
||||
msgid "Unlocked for..."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Locked Payment Methods for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:236
|
||||
#. translators: Name of the payment gateway.
|
||||
msgid "Unlock the <strong>%s</strong> payment method for this user?"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:301
|
||||
msgid ""
|
||||
"Adds controls for granting access to each locked payment method separately "
|
||||
"to each user's profile page. Access is granted for all future orders and "
|
||||
"all current unpaid orders."
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserRoleStrategy.php:32
|
||||
msgid "User roles with full access to all enabled payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserRoleStrategy.php:119
|
||||
msgid ""
|
||||
"Users with certain roles will be granted full access to all the locked "
|
||||
"payment methods."
|
||||
msgstr ""
|
||||
|
||||
#: src/templates/admin/composer-error.php:20
|
||||
#. translators: %s: Plugin Name
|
||||
msgid "It seems like <strong>%s</strong> is corrupted. Please reinstall!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.deep-web-solutions.com/plugins/locked-payment-methods-for-"
|
||||
"woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A WooCommerce extension which allows shop managers to hide payment methods "
|
||||
"from customers that haven't been manually granted access yet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Deep Web Solutions"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.deep-web-solutions.com"
|
||||
msgstr ""
|
||||
|
||||
#: bootstrap.php:61
|
||||
msgid "Deep Web Solutions: Locked Payment Methods for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: src/configs/settings.php:24
|
||||
msgctxt "settings"
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/configs/settings.php:29
|
||||
msgctxt "settings"
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Settings.php:71
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:64
|
||||
msgctxt "settings"
|
||||
msgid "Locked Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/Groups_Integration.php:180
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:202
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "WC Memberships"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/OrderMetaStrategy.php:188
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "Order Meta"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:289
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "User Meta"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserRoleStrategy.php:107
|
||||
msgctxt "unlock-strategies"
|
||||
msgid "User Roles"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/Integrations/UnlockStrategies/WC_Memberships_Integration.php:113
|
||||
msgctxt "wc-memberships-integration"
|
||||
msgid "Unlocked Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/includes/UnlockStrategies/UserMetaStrategy.php:167
|
||||
msgctxt "users table"
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/login-by-bindid/change_log/changelog.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/login-by-bindid/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Login by BindID
|
||||
|
||||
**1.0.8**
|
||||
|
||||
* First release
|
||||
340
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/change_log/CHANGELOG.txt
vendored
Normal file
340
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,340 @@
|
||||
Changelog
|
||||
|
||||
v3.0
|
||||
* [major] updated to imdbphp-6.5 library
|
||||
* [major] rewritten the code to be compliant with wordpress security
|
||||
* [major] plugin is compatible with tablets/mobile phones (fully responsive)
|
||||
* [major] first block for Gutenberg (for [imdblt] movies included by name)
|
||||
* [medium] popups URLs are rewritten to (blog)/imdlt/(film|person)
|
||||
* [medium] updated to highslide 5.0
|
||||
* [medium] moved all inline javascripts to external files so the plugin is Content Security Policy (CSP) compliant
|
||||
* [medium] cache folder is created if it doesn't exist, highslide is download if it doesn't exist
|
||||
* [medium] new icons, new layout
|
||||
* [minor] removed Pilot search options
|
||||
* [minor] removed js support for IE
|
||||
* [minor] removed support for wordpress < 5.7
|
||||
* [minor] added a tool to copy taxonomy templates in the admin interface
|
||||
* [minor] added a css fix for OceanWP template users
|
||||
* [minor] css/js are now loaded only on /imdblt/ and widget pages
|
||||
* [minor] popup movie pages get their title according to the query string "film"
|
||||
* [minor] css fix for Oceanwp templates
|
||||
* [bug] fixed popup-imdb_person.php which showed both actress & actor
|
||||
* [bug] fixed caching system
|
||||
* [bug] fixed cache refresh for movies, only normal (not _big) pictures where retrieved
|
||||
* [bug] fixed longstanding bug of widget ordering
|
||||
* [bug] fixed broken [imdblt] calls into the post
|
||||
* [bug] fixed layout for standardized taxonomy templates
|
||||
* [bug] fixed Deprecated TinyMCE API call: "onPostProcess" (moved to new tinymce standards)
|
||||
* [bug] removed the use of movie_actress() in popup-imdb_person.php
|
||||
* [bug] fixed bad English grammar, sentences, but much more work to do. Seems like I've improved my skills over a decade.
|
||||
* [misc] renamed the plugin to Lumiere Movies, renamed all classes and functions accordingly
|
||||
* [misc] Under the hood, more robust plugin following (a bit more) wordpress & PHP standards
|
||||
|
||||
v2.3.2
|
||||
* [major] updated to imdbphp-2.3.2 library
|
||||
* [medium] added Ukranian : thanks Michael Yunat
|
||||
* [bug] fixed longstanding bug: shortcodes when editing a wordpress post are back
|
||||
* [bug] fixed longstanding bug: bios are back
|
||||
|
||||
v2.2.3
|
||||
* [major] updated to imdbphp-2.2.3 library
|
||||
|
||||
v2.2.2
|
||||
* [major] updated to imdbphp-2.2.2 library
|
||||
* [medium] added production companies
|
||||
|
||||
v2.2.1
|
||||
* [major] updated to imdbphp-2.2.1 library
|
||||
* [medium] added Croatian : thanks Borisa Djuraskovic!
|
||||
* [bug] fixed newly added "keywords" bug in the taxonomy
|
||||
|
||||
v2.2
|
||||
* [major] updated to imdbphp-2.2 library
|
||||
* [medium] added "keywords" option which allows to diplay the movie keywords. Taxonomy included.
|
||||
* [minor] "Display only thumbnail" option now affects popup picture width in the same way it affects widgets picture width
|
||||
* [bug] deleted "ob_flush(); flush();" in inc/popup-header.php as it was preventing the CSS and JS to be used
|
||||
* [bug] removed "movie connection" option in widget; this was a long non-working useless option
|
||||
|
||||
v2.1.9
|
||||
* [major] updated to imdbphp-2.1.9 library
|
||||
|
||||
v2.1.8
|
||||
* [major] updated to imdbphp-2.1.8 library
|
||||
|
||||
v2.1.7
|
||||
* [major] updated to imdbphp-2.1.7 library
|
||||
* [bug] soundtracks fixed
|
||||
* [bug] movie connection is broken, unactivated
|
||||
|
||||
v2.1.6
|
||||
* [major] updated to imdbphp-2.1.6 library
|
||||
|
||||
v2.1.5
|
||||
* [major] updated to imdbphp-2.1.5 library
|
||||
|
||||
v2.1.4
|
||||
* [major] updated to imdbphp-2.1.4 library
|
||||
* [minor] changed obsolete __ngettext() method to _n() (__ngettext obsolete since wordpress 2.8)
|
||||
* [minor] removed moviepilot options, but who was still using that?
|
||||
|
||||
v2.1.3
|
||||
* [major] updated to imdbphp-2.1.3 library
|
||||
* [major] changed the way to use highslide js (on Wordpress request, piece of code not GPL compliant); it is mandatory now to download the library from [IMDBLt website](https://www.jcvignoli.com/blog/en/imdb-link-transformer "IMDbLT website") in order to get this damn cool window. Once the file downloaded, move the folder "highslide" into the "js" one and check general options in order to activate it
|
||||
* [major] translated into Romanian, thanks to [Web Geek Science](https://webhostinggeeks.com "Web Hosting Geeks")
|
||||
|
||||
v2.1.2
|
||||
* [major] updated to imdbphp-2.1.2 library
|
||||
|
||||
v2.1.1
|
||||
* [major] updated to imdbphp-2.1.1 library
|
||||
* [minor] new cache option to display cache elements in a shorter way (no picture, only names) -> "Quick advanced cache details" option
|
||||
* [minor] added IMDB LT to the new wordpress toolbar menu
|
||||
|
||||
v2.1
|
||||
* [major] updated to imdbphp-2.1.0 library
|
||||
|
||||
v2.0.8
|
||||
* [major] huge speed improvement changing in inc/functions.php is_multiArrayEmpty() from [PHP empty function 1](http://in2.php.net/manual/fr/function.empty.php#92308 "PHP empty function comments") to [PHP empty function 2](http://in2.php.net/manual/fr/function.empty.php#94786 "PHP empty function comments") -> credits to fha
|
||||
* [medium] cache options are divided between "Cache general options" and "Manage Cache" pages. Much more advanced way to manage cached movies. Movie's and People's cache management.
|
||||
* [medium] when the widget displayed more than one movie the widget's title took the title of the previous movie's name
|
||||
* [medium] still some "Fatal error: Cannot redeclare plugin_action() (previously declared in /xxxxxx/wp-content/plugins/wp-to-twitter/wp-to-twitter.php on line 1064) in /xxxxxx/wp-content/plugins/imdb-link-transformer/inc/widget.php:104" -> updated the way to register the plugin, using wp_register_sidebar_widget instead of register_sidebar_widget and removing the plugin_action() function (all obsoletes)
|
||||
* [minor] admin menu added few icons
|
||||
* [bug] fixed displaying " as " text even when no role was existing in popup.php
|
||||
* [bug] fixed typo missing closing ">" line 142 inc/help.php
|
||||
|
||||
v2.0.7
|
||||
* [major] updated to imdbphp-2.0.7 library
|
||||
* [minor] updated to highslide js 4.1.12
|
||||
|
||||
v2.0.6
|
||||
* [major] updated to imdbphp-2.0.6 library
|
||||
|
||||
v2.0.5
|
||||
* [major] updated to imdbphp-2.0.5 library
|
||||
* [minor] widget only finds the movie if the tt number on IMDB is followed by a full seven digits; modified "$moviespecificid = $value;" by "$moviespecificid = str_pad($value, 7, "0", STR_PAD_LEFT);" into widget.php
|
||||
|
||||
v2.0.4
|
||||
* [major] updated to imdbphp-2.0.4 library - !! No more "IMDb" word added at the end of popup movie's title - Pictures from IMDb are back !
|
||||
* [minor] it is now possible to resize thumbnail even if "Display only thumbnail" is turned on yes (found under "general options" -> "Paths & Layout" -> "layout"->"Imdb cover picture"). "Size" is not anymore unactivated (options-general.php) and value filled in is taken into account (imdb-movie.inc.php)
|
||||
* [minor] french strings corrected
|
||||
|
||||
v2.0.3
|
||||
* [bug] Many bugs have been corrected. Among them, pictures should be displayed even if using Firefox, country as movie detail is back.
|
||||
* [bug] Two taxonomy help pictures were forgotten!
|
||||
* [bug] Layout broken when using moviepilot (writer & producer sections, $role parts)
|
||||
* [major] updated to imdbphp-2.0.2 library
|
||||
* [medium] added Bulgarian : thanks Peter!
|
||||
* [medium] added a function to construct highslide and classical links(imdb_popup_link() & imdb_popup_highslide_link() in inc/functions.php, called from imdb-link-transformer.php)
|
||||
* [minor] added title as taxonomy
|
||||
|
||||
v2.0.2
|
||||
* [medium] Completely revisted as taxonomy works; one can select many movie's details as taxonomy. New admin options related to.
|
||||
* [medium] Trailers added as a new movie detail.
|
||||
* [minor] Year added as a new movie detail. The movie's release year will always take place next the title, in brackets.
|
||||
* [minor] French strings corrected. Taxonomy help improved.
|
||||
|
||||
v2.0.1
|
||||
* [bug] when using lumiere_external_call() function with an imdbid from external (not with a movie's name), it didn't work. inc/imdb-link-transformer.php corrected
|
||||
* [major] added possibility (by an option in advanced general settings) to add movie's genre tags directly into post tags (actually, into taxonomy wordpress function). When activated, it display new links instead previous genre tags.
|
||||
* [medium] added colors when option is selected in "Widget/Inside post Options".
|
||||
* [minor] uninstall function wasn't activated. Now, uninstalling IMDb LT plugin should remove every single option added by its own.
|
||||
* [minor] updated to highslide js 4.1.9
|
||||
* [minor] English/French corrections, misc improvements, help enhanced
|
||||
|
||||
v2.0
|
||||
* [bug] A bug was preventing for display right pictures cache size (in admin/cache section)
|
||||
* [bug] access level for Pilot website wasn't working anymore (switching to any value hadn't any effect except staying with "NO_ACCESS")
|
||||
* [major] updated to imdbphp-2.0.1 library
|
||||
* [medium] better multilanguage support -> echo(sprintf(__ngettext())) instead of _e()
|
||||
* [medium] as required by moviepilot's team, added website source at the post's end. IMDBLT will display the source(s) where data come from
|
||||
* [minor] added a few strings forgotten into the translated strings
|
||||
* [minor]removed imdb-link-transformer.php.noclass (obsolete file)
|
||||
* a bunch of improvements
|
||||
|
||||
v1.6
|
||||
* [bug] + [medium] User's comment wasn't working anymore. Rewritten, and also added the option to choose how many comments to display.
|
||||
* [bug] movieconnection(), releaseInfo(), born() and died(), color(), sound(), mpaa(), mpaa_hist() fixed
|
||||
* [major] updated to imdbphp-1.9.10 temporary library
|
||||
* [major] it is now possible to get rid of IMDb datas! New option added: IMDb general options -> Advanced -> Moviepilot part. Implementation for this is brand new, so don't expect yet too much anyway! -> PHP < 5 is no more supported.
|
||||
* [major] as a consequence of Moviepilot's new source, it is now possible to completely switch informations to other languages (much more effective than IMDb way). Currently in use German (the biggest source for Moviepilot), French, English, Spanish and Polish.
|
||||
* [major] new way to include movies inside a post, using their imdb movie's id instead of their names. Use tags [imdbltid]movie's imdb id[/imdbltid] instead of [imdblt]movie's name[/imdblt]. Idea comes from Mattias Fröberg.
|
||||
* [major] possibility to use in widget several imdb-movie-widget (or imdb-movie-widget-bymid) is back again
|
||||
* [medium] lumiere_external_call() function could be called again as previously. Added a second parameter ($external) to the function, so calling can be discriminated into the function. Check help for more explanation.
|
||||
* [medium] added a new widget option, to automatically add a widget according to post title. Turn on "Widget/Inside post Options -> Misc ->Auto widget" option. Especially useful to blogs focused only on movies, where all posts are related to cinema.
|
||||
* [medium] cache functionality added to searches -> a website as imdb or pilot will be less called, imdblt storing its results
|
||||
* [medium] css corrections
|
||||
* [medium] added "creator" detail, aiming to show creators' series
|
||||
* [medium] updated to highslide js 1.4.8
|
||||
* [minor] new functions added to functions.php
|
||||
* [minor] added "Filmography as soundtrack" in popup for people (popup-imdb_person.php)
|
||||
* [minor] splited "General options" from wordpress admin into two subsections : "Paths & Layout" and "Advanced". Advanced subsection is meant to include the... advanced options. General option is much more readable, now.
|
||||
* [minor] cache size is now computed and displayed in admin/cache section
|
||||
* [minor] turned imbd-link-transformer into a class (class imdblt{}); modified inc/popup-imdb_movie.php and inc/help.php according the new structure. As a result of this, one has to open the class (ie $imdblt = new imdblt) before calling the function itself (ie $imdblt->lumiere_external_call('Descent', 'external'))
|
||||
* [minor] by default, cover pictures are not displayed as thumbnail, with a size of 100 px. To change this behaviour: "General options -> Imdb cover picture -> Display only thumbnail"
|
||||
* [minor] removed imdb adress us.imdb.com, added www.imdb.fr
|
||||
* [minor] moved and renamed tinymce javascript from tinymce/editor_plugin.js to js/tinymce_editor_plugin.js
|
||||
|
||||
v1.5
|
||||
* [major] updated to imdbphp-1.9.8 library
|
||||
* [major] many broken searches should work again
|
||||
* [minor] added css update explanations into inc/help.php
|
||||
|
||||
v1.2.2
|
||||
* [major] updated to imdbphp-1.2.2 library
|
||||
|
||||
v1.2.1
|
||||
* [medium] It is now possible to keep your customized imdb.css file; just put your imdb.css into your theme folder.
|
||||
* [minor] added new titles to "inc/options-cache.php"
|
||||
* [minor] added spanish (thanks to Andrés Cabrera)
|
||||
|
||||
v1.2
|
||||
* [major] updated to imdbphp-1.2 library
|
||||
* [medium] added new cache option (Show avanced cache details) which permits (or not) to show movie's cache details (and allows to delete cache for every movie). Unactivated by default, it prevents "Fatal error: Maximum execution time of 30 seconds exceeded" errors.
|
||||
* [medium] modified imdb.css (improvement made by Jeremie Boniface, I'm not able to manage these things)
|
||||
* [minor] rating (inside a post & widget) displays now pictures instead of numbers; depending of good (or bad) feeedbacks, value $imdbwidgetratingnopics has to be implemented into plugin (to permit users to get back to old display, with the numbers) -> Jeremie Boniface demand
|
||||
* [minor] more french strings corrected
|
||||
* [minor] brazilian updated
|
||||
* [minor] only 1 user comment could be retrieved! changed plugin options according to this limitation (removed $imdbwidgetcommentsnumber)
|
||||
* [minor] renamed "cache.php" to "inc/options-cache.php"
|
||||
* [minor] removed robots.txt, since v. 1.1.15 workaround is efficient
|
||||
|
||||
v1.1.15
|
||||
* [bug] (somewhat): if highslide popup is active, search engine bots will index several hundred thousands of movies and actors, since they can now follow an href. Except if you do not care at all about space and bandwith, it could down your website quickly. Moved links to highslide popups from href="" to src: '' (inside javascript) and closed the href tag. To prevent any kind of search engine crawling in a place where it should not crawl, added also a robots.txt file (not convinced about its usefulness, though), and a test at the begining of popup-header.php.
|
||||
* [bug] some translated french strings were wrong
|
||||
* [bug] when several directors were found, it was missing space or comma to display -> added comma
|
||||
* [major] updated to imdbphp-1.1.15 library (1/hopefully fixed "invalid stream resource" on some network timeouts, movie: 2/ added method to retrieve movie types (if specified), person: 3/fixed a property missing in initialization, Fixed goofs(), trailers(), and trivia() )
|
||||
* [major] every admin settings section (cache, widget & general) has its own preferences storage (new foreign keys: $imdb_admin_values, $imdb_widget_values,$imdb_cache_values, whereas $imdb_config_values is dead). As a result of this, resetting General options won't interfere with Cache options, and vice versa.
|
||||
* changed the way several css directives related to popup were working (ie, all <a> tags in owner's blog were impacted, instead of only <a> from the popup)
|
||||
* [minor] added compatibility with [link-indication plugin](http://wordpress.org/extend/plugins/link-indication/ "link-indication plugin home") (modified imdb-link-transformer.php add_filter's execution priority to 11)
|
||||
* [minor] mixing "imdb-movie-widget-bymid" and "imdb-movie-widget" keys actually does work! Removing references saying it doesn't.
|
||||
* [minor] cache movie files into cache.php are now alphabetically ordered
|
||||
* [minor] soundtrack & quotes include an internal popup link instead of a link to imdb website
|
||||
* [minor] moved imdb-widget.php to /inc/, and renamed to widget.php
|
||||
* [minor] added trademarks fields into popup (misc tab) & biographical movies (bio tab)
|
||||
* [minor] added plot limit selection (imdblt settings : Widget/Inside post Options / What to display )
|
||||
* [minor] imdb pictures displayed both in widget and inside a post can be "highslided". To achieve this, activate "Display highslide popup" option and turn "Display only thumbnail" to "no" (and put a small size value, as "150" per example).
|
||||
|
||||
v1.1.14.4
|
||||
* [bug] in config-widget.php, a value for imdbwidgettitle (and one other) section was wrong
|
||||
* [bug] a value $test (imdb-movie.inc.php) was wrongly named -> renamed to $genre
|
||||
* [bug] wrong value for "Plugin directory" (config.php) -> modified
|
||||
* [major] added help page in settings: how to ( including movable boxes to keep useful information), changelog, faqs pages
|
||||
* [major] added security constraints (mainly data post check)
|
||||
* [major] added possiblity to arrange disposition of movie data order (available on Widget/Inside post Options)
|
||||
* [major] added many many new movie's details: goofs,comments,quotes,taglines,colors,also known as,composer,soundtrackmovieconnection,officialSites
|
||||
* [major] completely new cache management system; cache has its own page, and can be deleted now from this very options page (and cache for a pelicular movie can be deleted)
|
||||
* [major] new kind of popup, Highslide JS. Much nicer popup, must be activated from "General options / Layout / Popup / Display highslide popup" -> change to yes to see the difference whenever you click a link opening a popup (from inside post or widget)
|
||||
* [medium] added javascript to unactivate fields which shouldn't be available because of logical constraints
|
||||
* [medium] added uninstall page (uninstall.php)
|
||||
* [medium] added many new classes to manage in a more precise way elements in Widget/Inside post. Check imdb.css file.
|
||||
* [minor] added an option to keep cache files forever (useful if one doesn't want to rely on IMDb)
|
||||
* [minor] added direct access to this changelog (in admin settings)
|
||||
* [minor] added direct access to FAQs (regexp from readme)
|
||||
* [minor] added index.html (empty file)
|
||||
* [minor] added icon compatibility with [Admin Drop Down Menu plugin](http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css "Admin Drop Down Menu plugin home") -> added ozh_imdblt_icon() (&filter ad hoc) in imdb-link-transformer.php
|
||||
* [minor] added new admin menu which can be activated via "General options / Advanced / Display plugin in big menu" -> change to yes to see the difference
|
||||
* [minor] changed the way to submit preferences(config.php): now, after saving/resetting preferences, one stay on the very same page, instead going to a new (and click on "back" link). Also reset is working as it has to.
|
||||
* [minor] added standard wordpress picture to plugins (top left admin settings)
|
||||
* [minor] changed pages admin names -> imdblt_options now (can be seen in adress bar)
|
||||
* [minor] removed old screenshots, added new ones
|
||||
* [minor] consequently to many changes and functions added, plugin shouldn't work at 100% with a wordpress release prior to 2.7. However, no crucial function has been added, and even with old releases IMDb link transformer should mostly work as it used to.
|
||||
|
||||
v1.1.14.3
|
||||
* [major] new way to include movies inside a post: use tags (new way) [imdblt]movies name[/imdblt] instead of (old way) <?php lumiere_external_call ?> + Exec-PHP plugin. That means this release doesn't need any more any kind of third party plugin! Compatibility with the old way kept.
|
||||
* [major] changed the way options from admin settings appear; depending of the current selections, some options will appear, some disappear
|
||||
* [minor] added "Remove popup links" option; user can choose to remove popup links from widget -> no more popup
|
||||
* [minor] added imdb photo size width option (only displayed if thumbnail option deactivated)
|
||||
* [minor] added more pics in admin settings menu
|
||||
* [minor] removed call_imdb_movie function from imdb-link-transformer.php (wasn't used)
|
||||
* [minor] added more screenshots
|
||||
* [bugs] corrected many french comments, typos, options bad explained, an so on...
|
||||
|
||||
v1.1.14.2
|
||||
* [minor] added brazilian language
|
||||
|
||||
v1.1.14.1
|
||||
* [minor] added imdb photo size option; user can choose to display the big cover picture instead of the thumbnails'
|
||||
* [bugs] corrected writers section from imdb-movie.inc.php (before that, some <br /> where added before names, which moved forward text). Was only an issue when displaying imdb inside a post (via imd_external_call() and Exec-PHP plugin)
|
||||
* moved - and renamed - imdb_person.php and imdb_movie.php, and moved popup.php to a more suitable place, "inc/" folder.
|
||||
|
||||
v1.1.14
|
||||
* [major] updated to imdbphp-1.1.14 library
|
||||
* [minor] few french lines (not translated) moved to po files
|
||||
* [minor] defined 'IMDBPHP_CONFIG' value in various files, so future update of izzy's libs could be automatically made, instead of changing config lines from imdb_base.class.php
|
||||
* [minor] French comments in php's translated to English
|
||||
|
||||
v1.1.13.5
|
||||
* [major] added the possiblity to directly enter the movie id through "imdb-movie-widget-bymid" post meta data
|
||||
|
||||
v1.1.13
|
||||
* [major] updated to imdbphp-1.1.13 library
|
||||
* [bug] typo in inc/config-widget.php
|
||||
|
||||
v1.0.1
|
||||
* [bug] imdb.css, h1 section was preventing of working original h1
|
||||
|
||||
v1.0
|
||||
* [major] actress filmography working at once (added "actress" in filmography part from imdb_person.php)
|
||||
* [minor] various (very) minor enhancements
|
||||
|
||||
v0.9.5
|
||||
* [major] updated to imdbphp-1.1.1 library
|
||||
* [minor] added field plot as an available option for widget
|
||||
* [minor] update admin css to match wordpress 2.7 css
|
||||
* [bug] rating function working again
|
||||
|
||||
v0.9.3
|
||||
* [major] added multiple queries widget process (several "imdb-movie-widget" field can be added to a post). Caution! Adding several fields will slow down page display.
|
||||
* [minor] removed the so-said pass of "$filmid = $_GET['imdbpostid']" from imdb-widget to imdb-movie.inc.php (seems to be passed because functional call)
|
||||
* [minor] added a function lumiere_external_call () to permit to call the widget from anywhere into templates (widget no more mandatory)
|
||||
* [minor] changed to lumiere_htmlize() function (htmlentities() unactivated, as it doesn't seems anymore needed and prevented the accentuated letters to go through the search process)
|
||||
|
||||
v0.9.2
|
||||
* [minor] style issue (body class wasn't defined to be only a popup class, therefore general blog theme could be affected)
|
||||
* [minor] work on w3c validation (it should be valid, now)
|
||||
|
||||
v0.9.1
|
||||
* [bug] bug giving an error when no meta custom value added to a post
|
||||
|
||||
v0.9
|
||||
* [major] added widget. Using both widget & direct search possibilities, now everybody can display information related to a post directy into widget fields!
|
||||
* [major] most of the functions have been implemented. It still lacks the "actress" class, which means that it doesn't yet display the data related to an actress. Next release will be out when such a class will be finished.
|
||||
* [bug] preventing imdb button (no tinymce) to be displayed
|
||||
* [bug] usual layout&code fixes
|
||||
|
||||
v0.8
|
||||
* [major] updated to imdbphp-1.0.7 class
|
||||
* [minor] get rid of the PEAR option, it isn't useful
|
||||
* [bug] with some [searchs not giving all results for a person](https://projects.izzysoft.de/trac/imdbphp/ticket/46 "IMDbphp website")
|
||||
* [minor] added an option to remove imdb links (when doing a search)
|
||||
* [major] added an option to bypass the search stage for the popup. Activated by default.
|
||||
* [major] changed the way of browsing in popup window ("AKA search" instead of "back", keeping movie's name in $_GET, layout)
|
||||
* [minor] Automatic check for the cache folders (under admin board options)
|
||||
|
||||
v0.7.1
|
||||
* [bugs] relative path & imdb-link-transformer.php with blank spaces resolved
|
||||
|
||||
v0.7
|
||||
* [major] added admin page
|
||||
* [minor] added "wait on load" message when first search (when results are not yet cached, it take some time to get them)
|
||||
|
||||
v0.6.1
|
||||
* [bugs] minors fixes (layout & code)
|
||||
|
||||
v0.6
|
||||
* [major] changed the way the tags are used; < ! --imdb-->nameMovie< ! --/imdb--> instead of < imdb>nameMovie< /imdb>. This means the already tagged fields should be changed to these new tags. As a result of this, IMDb link transformer is only compatible with Wordpress > 2.5!
|
||||
* [major] support for tinymce editor (imdb tags can be automatically inserted by a new button)
|
||||
* [bugs] some minors fixes (layout & code)
|
||||
|
||||
0.5
|
||||
* [major] director page created (filmo, bio & misc)
|
||||
* [major] updated to imdbphp-1.0.6 libraries
|
||||
* [minor] one title, one result
|
||||
* [minor] every url links to an internal page (except the imdb logos)
|
||||
* [major] localisation files added
|
||||
* [minor] one config file
|
||||
* [major] huge layout and stylesheet work
|
||||
* [major] added many functions
|
||||
|
||||
0.3
|
||||
* [major] initial public release of IMDb Link Transformer
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/translation_file/language/imdb.pot
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/lumiere-movies/translation_file/language/imdb.pot
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2021 jcv
|
||||
# This file is distributed under the same license as the Lumière plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lumière 3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/working-env\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-21T03:05:44-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: working-env\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lumière"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.jcvignoli.com/blog/en/lumiere-movies-wordpress-plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add to every movie title tagged with <!--imdb--> (...) <!--/imdb--> a link to an <a href=\"https://www.imdb.com\"><acronym title=\"internet movie database\">imdb</acronym></a> popup. Can also display data related to movies either in a <a href=\"widgets.php\">widget</a> or inside a post. Perfect for your movie reviews. Cache handling. Have a look at the <a href=\"admin.php?page=imdblt_options\">options page</a>."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "jcv"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.jcvignoli.com/blog"
|
||||
msgstr ""
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/composer_file/package.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "modern-click-to-tweet",
|
||||
"version": "1.0.0",
|
||||
"description": "Adds a beautiful (and customizable) Click to Tweet block to maximize content sharing on Twitter.",
|
||||
"author": "vincentdubroeucq",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"make-pot": "wp i18n make-pot . languages/modern-ctt.pot --exclude=src/*",
|
||||
"make-json": "wp i18n make-json languages/ --no-purge",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^5.2.9",
|
||||
"@wordpress/blocks": "^7.0.5",
|
||||
"@wordpress/i18n": "^3.18.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^13.0.3"
|
||||
}
|
||||
}
|
||||
154
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/translation_file/languages/modern-ctt.pot
vendored
Normal file
154
spec/fixtures/dynamic_finders/plugin_version/modern-ctt/translation_file/languages/modern-ctt.pot
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
# Copyright (C) 2021 Modern Plugins
|
||||
# This file is distributed under the same license as the Modern CTT plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Modern CTT 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/modern-ctt\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-04T10:43:19+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: modern-ctt\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: build/index.js:1
|
||||
msgid "Modern CTT"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a beautiful (and customizable) Click to Tweet block to maximize content sharing on Twitter."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Modern Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://modernplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#: modern-click-to-tweet.php:79
|
||||
msgid "Click to Tweet"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Block settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "URL to share"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "If left empty, defaults to post permalink"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Twitter handle"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Hashtags"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Add in your hastags, just as you would on any tweet."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Call to Action display"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Display link as a button"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Call to Action content"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Icon and text"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Icon only (text will still be visible to screen readers)"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Text only"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Adds a Click To Tweet blockquote."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "tweet"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "click"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "click to tweet"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Code is poetry."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Tweet this !"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Twitter blue"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Minimal"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Plain"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgctxt "block style"
|
||||
msgid "Bordered"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Quote text"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Write text displayed on the site."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Button prompt"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Tweet this"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,785 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB CF7 Integration with ZOHO CRM 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-05-10 18:35+0530\n"
|
||||
"PO-Revision-Date: 2021-05-10 18:27+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: en_US\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:124
|
||||
msgid "Back to feeds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:128
|
||||
msgid "Settings not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:129
|
||||
msgid "Internal server error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:187
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:30
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:33
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:24
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:27
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:22
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:25
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:25
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:28
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:35
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:38
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/header.php:23
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/header.php:26
|
||||
msgid "Zoho"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:261
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:279
|
||||
msgid "Inavlid email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:294
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:367
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:197
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:369
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:199
|
||||
msgid "Standard Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:370
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:380
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:200
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:210
|
||||
msgid "Custom Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:375
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:205
|
||||
msgid "Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:426
|
||||
msgid "Matches exactly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:427
|
||||
msgid "Does not match exactly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:428
|
||||
msgid "Contains (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:429
|
||||
msgid "Does not contain (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:430
|
||||
msgid "Exist in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:431
|
||||
msgid "Does not Exists in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:432
|
||||
msgid "Starts with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:433
|
||||
msgid "Does not start with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:434
|
||||
msgid "Ends with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:435
|
||||
msgid "Does not end with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:436
|
||||
msgid "Less than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:437
|
||||
msgid "Greater than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:438
|
||||
msgid "Less than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:439
|
||||
msgid "Greater than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:440
|
||||
msgid "Equals (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:441
|
||||
msgid "Is empty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:442
|
||||
msgid "Is not empty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:466
|
||||
msgid "Select Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:472
|
||||
msgid "Select Condition"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-zoho-admin.php:477
|
||||
msgid "Enter value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:41
|
||||
msgid "Connection Authorized"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:45
|
||||
msgid "Access token has been expired."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:54
|
||||
msgid "Reauthorize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:55
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:63
|
||||
msgid "Synced Contact Forms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:70
|
||||
msgid "Total number of Contact Form 7 submission data which are synced over Zoho CRM."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:71
|
||||
msgid "View log"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:84
|
||||
msgid "Need any help ? Check our documentation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:87
|
||||
#: mwb-cf7-integration-with-zoho.php:146
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:92
|
||||
msgid "Facing any issue ? Open a support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:95
|
||||
#: mwb-cf7-integration-with-zoho.php:147
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:100
|
||||
msgid "Need personalized solution, contact us !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:103
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:184
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:112
|
||||
msgid "If you don't have a Zoho account, you can "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:112
|
||||
msgid "sign up here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:115
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:123
|
||||
msgid "Zoho Domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:128
|
||||
msgid "Select Zoho domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:134
|
||||
msgid "India (.in)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:135
|
||||
msgid "China (.com.cn)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:136
|
||||
msgid "Australia (.com.au)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:137
|
||||
msgid "Europe (.eu)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:138
|
||||
msgid "USA & Others (.com)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:147
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:152
|
||||
msgid "Enter app id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:170
|
||||
msgid "Secret key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:175
|
||||
msgid "Enter secret key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:194
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:199
|
||||
msgid "Enter redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:211
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:218
|
||||
msgid "Create new client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:218
|
||||
msgid " here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:219
|
||||
msgid "Choose client type as \"Server based\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:220
|
||||
msgid "Enter client name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:220
|
||||
msgid "For eg. Demo app or My app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:221
|
||||
msgid "Enter "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:221
|
||||
msgid "as redirect URI"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:222
|
||||
msgid "Save app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-accounts.php:232
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:30
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:53
|
||||
msgid "Add New Feed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:50
|
||||
msgid "Form : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:51
|
||||
msgid "Object : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds-list.php:52
|
||||
msgid "Primary key : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:31
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:40
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:46
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:23
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:34
|
||||
msgid "Select Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:47
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:35
|
||||
msgid "Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:63
|
||||
msgid "Object"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:72
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:81
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:22
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:33
|
||||
msgid "Select Object"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:90
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:42
|
||||
msgid "Refresh Objects"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-feeds.php:91
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:43
|
||||
msgid "Refresh Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:35
|
||||
msgid "Clear Log"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:40
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:54
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:55
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:49
|
||||
msgid "Feed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:56
|
||||
msgid "Feed ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:57
|
||||
msgid "Zoho Object"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:58
|
||||
msgid "Zoho ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:59
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:60
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:61
|
||||
msgid "Request"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:62
|
||||
msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:69
|
||||
msgid "Please enable the logs from "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-logs-list.php:69
|
||||
msgid "Settings tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:36
|
||||
msgid "What is MWB CF7 Integration with ZOHO CRM?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:37
|
||||
msgid "MWB CF7 Integration with ZOHO CRM plugin integrates your ZOHO CRM account with CF-7, sending all data over ZOHO CRM as per its available modules."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:40
|
||||
msgid "What does MWB CF7 Integration with ZOHO CRM do?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:42
|
||||
msgid "Smooth CF7 Integration With Your ZOHO Account."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:43
|
||||
msgid "Easy CF7 Fields Association With Any Zoho Module Fields."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:44
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:78
|
||||
msgid "Filters CF7 submissions According To User Input."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:45
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:89
|
||||
msgid "Detailed Log Of CF7 Submission Sent To Zoho."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:46
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:100
|
||||
msgid "Primary Key To Update Existing Entry Over ZOHO CRM."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:50
|
||||
msgid "Salient Features of MWB CF7 Integration with ZOHO CRM Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:56
|
||||
msgid "Smooth CF7 Integration With Your ZOHO Account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:58
|
||||
msgid "MWB CF7 Integration with ZOHO CRM offers a smooth integration of both. The admin can enter their Zoho API credentials to integrate Contact Form 7 with their Zoho accounts."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:67
|
||||
msgid "Easy CF7 Fields Association With Any Zoho Module Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:69
|
||||
msgid "Any Contact form 7 field can be linked to any Zoho module field. Any module field like Contacts, Accounts, Leads, Quotes, Deals, Sales and Orders, integrates perfectly with this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:80
|
||||
msgid "The admin can filter the Contact form 7 submissions based on user input using AND/OR logic. This logic will filter CF-7 forms submissions and send it ZOHO CRM depending on user inputs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:91
|
||||
msgid "MWB ZOHO Integration plugin will provide a detailed log of each Contact form 7 sent to Zoho CRM as per the response from the ZOHO CRM. There is logging of all the API interaction with ZOHO CRM for better error handling."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:102
|
||||
msgid "Suppose an entry made by the user already exists over Zoho CRM. In that case, the admin can update it with the help of the “Primary key” provided."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:111
|
||||
msgid "Error eMail Notification For Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-overview.php:113
|
||||
msgid "E-mail notifications are sent to the admin if any input error occurs in the process of data sending entries over to Zoho CRM. This way, the admin gets notified of any slight error in real-time."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:69
|
||||
msgid "Enable logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:74
|
||||
msgid "Enable logging of all the forms data sent over zoho"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:87
|
||||
msgid "Plugin Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:92
|
||||
msgid "Enable plugin data delete at uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:105
|
||||
msgid "Email notification"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:110
|
||||
msgid "Enable email notification on errors"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:127
|
||||
msgid "Enter email address. An email will be sent if any sort of error occurs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:141
|
||||
msgid "Delete logs after N days"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:146
|
||||
msgid "This will delete the logs data after N no. of days"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-cf7-settings.php:161
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:32
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:42
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:34
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:35
|
||||
msgid "We love making new friends! Subscribe below and we promise to keep you up-to-date with our latest new plugins, updates, awesome deals and a few special offers."
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:45
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:30
|
||||
msgid "Something went wrong!!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:50
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:93
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:86
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-ajax-handler.php:113
|
||||
msgid "Something went wrong! Check your credentials and authorize again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:48
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:65
|
||||
msgid "Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:50
|
||||
msgid "Parent Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:51
|
||||
msgid "All Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:52
|
||||
msgid "View Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:54
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:55
|
||||
msgid "Edit Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:56
|
||||
msgid "Update Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:57
|
||||
msgid "Search Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:58
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:59
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:66
|
||||
msgid "Feeds for crm"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:91
|
||||
msgid "Feed details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-feed-cpt.php:92
|
||||
msgid "Conditional Statements"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:337
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:354
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:389
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:399
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-onboarding.php:907
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:66
|
||||
msgid "MWB CF7 Integration with ZOHO CRM"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:176
|
||||
msgid "Help desk"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:178
|
||||
msgid "go pro"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:179
|
||||
msgid "see docs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:180
|
||||
msgid "see tutorial"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:183
|
||||
msgid "Connect with us in one click"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:230
|
||||
msgid "Zoho Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:231
|
||||
msgid "Zoho Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:232
|
||||
msgid "Zoho Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:233
|
||||
#: mwb-cf7-integration-with-zoho.php:124
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-zoho-template-manager.php:234
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:145
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid "Contatc Form 7"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid " is not activated, Please activate Contact Form 7 first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid " Contact Form 7 - Zoho Integration"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-zoho.php:213
|
||||
msgid "."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/add-new-field.php:21
|
||||
msgid "Add New Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/add-new-field.php:27
|
||||
msgid "Add Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:23
|
||||
msgid "Condition Filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:26
|
||||
msgid "If the condition filters are set, only those submissions will be exported which fullfills the condition."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:49
|
||||
msgid "Add \"AND\" filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:57
|
||||
msgid "Add \"OR\" filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:21
|
||||
msgid "Primary Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:24
|
||||
msgid "Select a unique identifier, if you want to update a pre-existing record"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:31
|
||||
msgid "Select Primary Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:35
|
||||
msgid "Please select a field which should be used as \"primary key\" to update an existing record."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:40
|
||||
msgid "Make sure \"Do not allow duplicate values\" is checked in property settings, in order to prevent duplicate record creation."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-fields.php:21
|
||||
msgid "Map Fields"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-fields.php:24
|
||||
msgid "Map your contact form fields with appropriate Zoho fields."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:26
|
||||
msgid "Select the form you would like to integrate with zoho"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:25
|
||||
msgid "Select the zoho object to create on form submission"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-zoho-public.php:574
|
||||
msgid "Error While Posting form data over Zoho"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-zoho-public.php:587
|
||||
msgid "Go to logs"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-zoho-public.php:599
|
||||
msgid "Zoho error"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,576 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB Point of Sale (POS) for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-29 19:34+0530\n"
|
||||
"PO-Revision-Date: 2021-04-29 19:34+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:153
|
||||
msgid "POS Orders"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:154
|
||||
msgid "Show deleted orders"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:241
|
||||
msgid "POS for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:260
|
||||
msgid "Login Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:281
|
||||
msgid "View POS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:285
|
||||
msgid "View POS Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:327
|
||||
msgid "POS Header Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:329
|
||||
msgid "Add text for your pos header on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:333
|
||||
msgid "Header text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:336
|
||||
msgid "POS Header Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:338
|
||||
msgid "Choose a color for your pos header on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:342
|
||||
msgid "Header color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:345
|
||||
msgid "POS Header Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:347
|
||||
msgid "Choose a logo for your pos header on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:351
|
||||
msgid "Header logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:355
|
||||
msgid "POS Footer Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:357
|
||||
msgid "Choose the text color for your pos footer on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:361
|
||||
msgid "Footer Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:364
|
||||
msgid "POS Footer Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:366
|
||||
msgid "Choose a background color for your pos footer on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:370
|
||||
msgid "Footer Background color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:375
|
||||
#: admin/class-pos-for-woocommerce-admin.php:459
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:393
|
||||
msgid "POS Login Panel Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:395
|
||||
msgid "Add title for your pos login page on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:399
|
||||
msgid "Login Page Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:402
|
||||
msgid "POS Login Panel Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:404
|
||||
msgid "Add subheading for your pos login page on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:408
|
||||
msgid "Login Page Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:411
|
||||
msgid "POS Login Panel Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:413
|
||||
msgid "Add description for your pos login page on frontend."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:417
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:420
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:422
|
||||
msgid "Choose color for your pos login page background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:426
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:429
|
||||
#: admin/class-pos-for-woocommerce-admin.php:435
|
||||
msgid "Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:431
|
||||
msgid "Choose the color to change pos login page button color."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:438
|
||||
#: admin/class-pos-for-woocommerce-admin.php:444
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:440
|
||||
msgid "Choose the color to change pos login page button text color."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:447
|
||||
msgid "POS Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:449
|
||||
msgid "Choose a logo for the pos login page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:453
|
||||
msgid "Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:477
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:478
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:479
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:483
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:484
|
||||
msgid "Please submit a ticket, our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:485
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:506
|
||||
msgid "Generate Product Barcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:523
|
||||
msgid "Product QR"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:563
|
||||
msgid "wrong attempt"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:650
|
||||
#: admin/class-pos-for-woocommerce-admin.php:694
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-admin.php:722
|
||||
msgid "Welcome: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-pos-for-woocommerce-pos-orders.php:198
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-admin-dashboard.php:27
|
||||
#: mwb-point-of-sale-woocommerce.php:184
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-admin-dashboard.php:34
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-general.php:32
|
||||
msgid "Barcode Generator Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:35
|
||||
msgid "What is MWB Point of Sale (POS) for WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:36
|
||||
msgid ""
|
||||
"MWB Point of Sale (POS) for WooCommerce is the missing link that can act as "
|
||||
"a tie-up knot for your online and physical stores. This plugin can help you "
|
||||
"easily distribute the workload, appoint multiple outlet/counter managers, "
|
||||
"etc. Therefore, offering complete plugin control over your store sales and "
|
||||
"customer orders, both online and offline."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:39
|
||||
msgid "As a store owner, you can- "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:42
|
||||
msgid ""
|
||||
"Swiftly strategize your store’s inventory and plan tax imposition rates with "
|
||||
"ease"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:43
|
||||
msgid ""
|
||||
"Effortlessly build an online register for your store transaction without "
|
||||
"even purchasing physical point-of-sale tools and services."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:44
|
||||
msgid "Manage orders and offer discounts/coupons at checkout."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:45
|
||||
msgid ""
|
||||
"Easily generate barcodes for every product, even assign a product-Id, and "
|
||||
"SKU."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:46
|
||||
msgid ""
|
||||
"You can easily customize your POS login page i.e. can edit tagline, can add "
|
||||
"a proper description, can change background color, etc"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:51
|
||||
msgid "The free plugin benefits include-"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:58
|
||||
msgid "Product Search and Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:60
|
||||
msgid ""
|
||||
"You can easily make use of the plugin’s outstanding category-based search to "
|
||||
"perform your billing effortlessly. You can also opt for different products "
|
||||
"as per your ease using the category filter, that filter can provide you the "
|
||||
"list of almost all product categories available at your store online."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:69
|
||||
msgid "User-Friendly Single Page Web-App on React JS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:72
|
||||
msgid ""
|
||||
"The Woocommerce POS system itself is built with React JS and is quite user-"
|
||||
"friendly, it offers automatic background refreshing single page web app. You "
|
||||
"need not switch between multiple tabs and refresh your page from time to "
|
||||
"time."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:81
|
||||
msgid "Effortless Inventory Management"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:83
|
||||
msgid ""
|
||||
"Offers efficient inventory management that is seamless and does not require "
|
||||
"you to manually update order data. With a Point of Sale (POS) plugin, you "
|
||||
"can track the sales of a product, and you can also know when its time to "
|
||||
"upgrade your stock."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:92
|
||||
msgid "Seamless Order Synchronization"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:95
|
||||
msgid ""
|
||||
"This plugin offers easy synchronization of all your orders in one place. You "
|
||||
"can access all your online as well offline orders and can easily schedule "
|
||||
"them for further shipping processings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:105
|
||||
msgid "Outstanding Desktop and Email Order Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:107
|
||||
msgid ""
|
||||
"You can easily set the desktop as well as email notifications for orders/"
|
||||
"bills generated using the POS system."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:116
|
||||
msgid "Seller/Manager Profile Updation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-overview.php:118
|
||||
msgid ""
|
||||
"This plugin offers easy customization of all user profiles for admin "
|
||||
"managers. Admin managers can assign outlets as well products to store/outlet "
|
||||
"managers and assign user roles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/pos-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-activator.php:43
|
||||
msgid "Point of Sale"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:301
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:320
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:326
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:357
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:361
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:369
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:374
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:489
|
||||
#, php-format
|
||||
msgid " Let us know why you are deactivating %s so we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:493
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce-onboarding-steps.php:737
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:366
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:370
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:376
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:401
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:461
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:470
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:473
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:476
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:479
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:482
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:485
|
||||
#: includes/class-pos-for-woocommerce.php:488
|
||||
#: includes/class-pos-for-woocommerce.php:491
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:485
|
||||
#: includes/class-pos-for-woocommerce.php:488
|
||||
#: includes/class-pos-for-woocommerce.php:491
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:494
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:497
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:500
|
||||
#: includes/class-pos-for-woocommerce.php:506
|
||||
#: includes/class-pos-for-woocommerce.php:509
|
||||
#: includes/class-pos-for-woocommerce.php:537
|
||||
#: includes/class-pos-for-woocommerce.php:540
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:503
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:521
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:524
|
||||
#: includes/class-pos-for-woocommerce.php:533
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:543
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-pos-for-woocommerce.php:802
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:90 mwb-point-of-sale-woocommerce.php:96
|
||||
msgid "POS for Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:164
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:182
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-point-of-sale-woocommerce.php:217
|
||||
msgid ""
|
||||
"WooCommerce is not activated, Please activate WooCommerce first to activate "
|
||||
"POS For WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/pos-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-pos-for-woocommerce-public.php:113
|
||||
#: public/class-pos-for-woocommerce-public.php:133
|
||||
#: public/class-pos-for-woocommerce-public.php:149
|
||||
#: public/class-pos-for-woocommerce-public.php:182
|
||||
#: public/class-pos-for-woocommerce-public.php:199
|
||||
#: public/class-pos-for-woocommerce-public.php:276
|
||||
#: public/class-pos-for-woocommerce-public.php:310
|
||||
#: public/class-pos-for-woocommerce-public.php:359
|
||||
msgid "Try after sometime !"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-pos-for-woocommerce-public.php:426
|
||||
#: public/class-pos-for-woocommerce-public.php:608
|
||||
#: public/class-pos-for-woocommerce-public.php:639
|
||||
#: public/class-pos-for-woocommerce-public.php:675
|
||||
msgid "Try again !"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,58 @@
|
||||
# Copyright (C) 2021 Seyyed Sajjad Kashizadeh
|
||||
# This file is distributed under the same license as the Navarak Code Highlighter plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Navarak Code Highlighter 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/navarak-code-"
|
||||
"highlighter\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-24T11:20:16+00:00\n"
|
||||
"PO-Revision-Date: 2021-05-24 15:56+0430\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Domain: navarak-code-highlighter\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
|
||||
"Language: fa_IR\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Navarak Code Highlighter"
|
||||
msgstr "برجسته کننده کد نوارک"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://navarak.ir/ساخت-افزونه-نمایش-کد-در-وردپرس-از-مبتد/"
|
||||
msgstr "https://navarak.ir/ساخت-افزونه-نمایش-کد-در-وردپرس-از-مبتد/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"This plugin is developed by NAVARAK team from 0 to learn users how to insert "
|
||||
"codes inside their posts"
|
||||
msgstr ""
|
||||
"این افزونه توسط تیم NAVARAK از 0 برای یادگیری کاربران جهت توسعه پلاگین درج "
|
||||
"کد در داخل های نوشته های وردپرس توسعه یافته است"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Seyyed Sajjad Kashizadeh"
|
||||
msgstr "سید سجاد کاشی زاده"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://kashizadeh.ir/"
|
||||
msgstr "http://kashizadeh.ir/"
|
||||
|
||||
#: admin/class-navarak-code-highlighter-admin.php:113
|
||||
msgid "Code Highlighter"
|
||||
msgstr "برجسته کننده کد"
|
||||
|
||||
#: admin/class-navarak-code-highlighter-admin.php:120
|
||||
msgid "Choose Style"
|
||||
msgstr "انتخاب استایل"
|
||||
|
||||
#: public/partials/navarak-code-highlighter-public-display.php:19
|
||||
msgid "Example"
|
||||
msgstr "مثال"
|
||||
|
||||
#: public/partials/navarak-code-highlighter-public-display.php:22
|
||||
msgid "Copy"
|
||||
msgstr "Copy"
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/ntashka-addons/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/ntashka-addons/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "ntshka-addons",
|
||||
"version": "1.1.0",
|
||||
"description": "A custom elementor widget plugin",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "PolkaDox",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.1.0",
|
||||
"grunt-contrib-clean": "^2.0.0",
|
||||
"grunt-contrib-compress": "^1.6.0",
|
||||
"grunt-contrib-concat": "^1.0.1",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-cssmin": "^3.0.0",
|
||||
"grunt-contrib-uglify": "^4.0.1",
|
||||
"grunt-watcher": "^1.0.0",
|
||||
"grunt-wp-i18n": "^1.0.3"
|
||||
}
|
||||
}
|
||||
490
spec/fixtures/dynamic_finders/plugin_version/one-user-avatar/translation_file/languages/nl_NL.po
vendored
Normal file
490
spec/fixtures/dynamic_finders/plugin_version/one-user-avatar/translation_file/languages/nl_NL.po
vendored
Normal file
@@ -0,0 +1,490 @@
|
||||
# Copyright (C) 2021 One Designs
|
||||
# This file is distributed under the same license as the One User Avatar plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: One User Avatar 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/one-user-avatar\n"
|
||||
"POT-Creation-Date: 2021-05-22T04:16:42+00:00\n"
|
||||
"PO-Revision-Date: 2021-05-23 07:00+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.3\n"
|
||||
"X-Domain: one-user-avatar\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/class-wp-user-avatar-admin.php:230
|
||||
#: includes/class-wp-user-avatar-admin.php:429
|
||||
#: includes/class-wp-user-avatar-widget.php:32
|
||||
#: includes/wpua-options-page.php:55 includes/wpua-tinymce-window.php:31
|
||||
msgid "One User Avatar"
|
||||
msgstr "One User Avatar"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://onedesigns.com/plugins/one-user-avatar/"
|
||||
msgstr "https://onedesigns.com/plugins/one-user-avatar/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Use any image from your WordPress Media Library as a custom user avatar. Add "
|
||||
"your own Default Avatar. Fork of WP User Avatar v2.2.16."
|
||||
msgstr ""
|
||||
"Gebruik een afbeelding uit je WordPress mediabibliotheek als een aangepaste "
|
||||
"gebruikersavatar. Voeg je eigen standaardavatar toe. Gebaseerd op of WP User "
|
||||
"Avatar v2.2.16."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "One Designs"
|
||||
msgstr "One Designs"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://onedesigns.com/"
|
||||
msgstr "https://onedesigns.com/"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:173
|
||||
msgid "You are not allowed to delete this post."
|
||||
msgstr "Je hebt geen toestemming om dit bericht te verwijderen."
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:177
|
||||
msgid "Error in deleting."
|
||||
msgstr "Fout tijdens het verwijderen."
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:231
|
||||
#: includes/class-wp-user-avatar-admin.php:289 includes/wpua-media-page.php:59
|
||||
msgid "Avatars"
|
||||
msgstr "Avatars"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:240
|
||||
#: includes/class-wp-user-avatar-admin.php:241
|
||||
#: includes/class-wp-user-avatar-admin.php:465
|
||||
#: includes/wpua-options-page.php:93
|
||||
msgid "Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:249
|
||||
#: includes/class-wp-user-avatar-admin.php:250
|
||||
msgid "Library"
|
||||
msgstr "Bibliotheek"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:375
|
||||
msgid "Mystery Man"
|
||||
msgstr "Mysterieuze Man"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:376
|
||||
msgid "Blank"
|
||||
msgstr "Leeg"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:377
|
||||
msgid "Gravatar Logo"
|
||||
msgstr "Gravatar Logo"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:378
|
||||
msgid "Identicon (Generated)"
|
||||
msgstr "Identicon (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:379
|
||||
msgid "Wavatar (Generated)"
|
||||
msgstr "Wavatar (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:380
|
||||
msgid "MonsterID (Generated)"
|
||||
msgstr "MonsterID (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:381
|
||||
msgid "Retro (Generated)"
|
||||
msgstr "Retro (Gegenereerd)"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:430
|
||||
#: includes/class-wp-user-avatar.php:231
|
||||
msgid "Choose Image"
|
||||
msgstr "Kies foto"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:431
|
||||
msgid "Remove"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:431
|
||||
#: includes/class-wp-user-avatar.php:292
|
||||
msgid "Undo"
|
||||
msgstr "Ongedaan maken"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:484
|
||||
msgid "Support Forums"
|
||||
msgstr "Helpforums"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:498
|
||||
#: includes/class-wp-user-avatar-admin.php:559 includes/wpua-functions.php:93
|
||||
#: includes/wpua-functions.php:106 includes/wpua-functions.php:114
|
||||
#: includes/wpua-functions.php:186 includes/wpua-tinymce-window.php:94
|
||||
msgid "Profile Picture"
|
||||
msgstr "Profielfoto"
|
||||
|
||||
#: includes/class-wp-user-avatar-admin.php:563
|
||||
#: includes/wpua-options-page.php:300 includes/wpua-options-page.php:306
|
||||
msgid "Default Avatar"
|
||||
msgstr "Standaard Avatar"
|
||||
|
||||
#: includes/class-wp-user-avatar-functions.php:515
|
||||
#: includes/class-wp-user-avatar-functions.php:719
|
||||
msgid "Avatar"
|
||||
msgstr "Avatar"
|
||||
|
||||
#. translators: uploaded files
|
||||
#: includes/class-wp-user-avatar-list-table.php:172
|
||||
msgctxt "uploaded files"
|
||||
msgid "All %s"
|
||||
msgid_plural "All %s"
|
||||
msgstr[0] "Alle %s"
|
||||
msgstr[1] "Alle %s"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:192
|
||||
#: includes/class-wp-user-avatar-list-table.php:549
|
||||
msgid "Delete Permanently"
|
||||
msgstr "Permanent verwijderen"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:222
|
||||
msgid "No media attachments found."
|
||||
msgstr "Geen mediabijlagen gevonden."
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:235
|
||||
msgctxt "column name"
|
||||
msgid "File"
|
||||
msgstr "Bestand"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:236
|
||||
msgid "Author"
|
||||
msgstr "Auteur"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:237
|
||||
msgctxt "column name"
|
||||
msgid "Uploaded to"
|
||||
msgstr "Geüpload naar"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:238
|
||||
msgctxt "column name"
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#. translators: post title
|
||||
#: includes/class-wp-user-avatar-list-table.php:323
|
||||
msgid "Select %s"
|
||||
msgstr "Selecteer %s"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:414
|
||||
msgid "Unpublished"
|
||||
msgstr "Ongepubliceerd"
|
||||
|
||||
#. translators: time from now
|
||||
#: includes/class-wp-user-avatar-list-table.php:422
|
||||
msgctxt "time from now"
|
||||
msgid "%s from now"
|
||||
msgstr "%s vanaf nu"
|
||||
|
||||
#. translators: time ago
|
||||
#: includes/class-wp-user-avatar-list-table.php:428
|
||||
msgctxt "time ago"
|
||||
msgid "%s ago"
|
||||
msgstr "%s geleden"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:433
|
||||
msgid "Y/m/d"
|
||||
msgstr "j F Y"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:523
|
||||
msgid "Edit"
|
||||
msgstr "Bewerk"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:532
|
||||
msgid "Restore"
|
||||
msgstr "Herstel"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:538
|
||||
msgid "Trash"
|
||||
msgstr "Prullenbak"
|
||||
|
||||
#: includes/class-wp-user-avatar-list-table.php:561
|
||||
msgid "View"
|
||||
msgstr "Bekijken"
|
||||
|
||||
#. translators: either wp_footer() or wp_print_footer_scripts() hook.
|
||||
#: includes/class-wp-user-avatar-resource-manager.php:190
|
||||
msgid ""
|
||||
"We're sorry, but your theme's page template didn't make a call to %s, which "
|
||||
"is required by One User Avatar. Please add this call to your page templates."
|
||||
msgstr ""
|
||||
"Het spijt ons, maar de pagina template van je thema heeft geen oproep gedaan "
|
||||
"naar %s, wat vereist is door One User Avatar. Voeg deze oproep toe aan je "
|
||||
"pagina template."
|
||||
|
||||
#: includes/class-wp-user-avatar-shortcode.php:244
|
||||
msgid "Profile updated."
|
||||
msgstr "Profiel bijgewerkt."
|
||||
|
||||
#: includes/class-wp-user-avatar-shortcode.php:273
|
||||
msgid "Update Profile"
|
||||
msgstr "Profiel bijwerken"
|
||||
|
||||
#. translators: [avatar_upload] shortcode
|
||||
#: includes/class-wp-user-avatar-widget.php:27
|
||||
msgid "Insert %s"
|
||||
msgstr "%s invoegen"
|
||||
|
||||
#: includes/class-wp-user-avatar-widget.php:99
|
||||
msgid "Title:"
|
||||
msgstr "Titel:"
|
||||
|
||||
#: includes/class-wp-user-avatar-widget.php:105
|
||||
msgid "Description:"
|
||||
msgstr "Beschrijving:"
|
||||
|
||||
#: includes/class-wp-user-avatar-widget.php:113
|
||||
msgid "Automatically add paragraphs"
|
||||
msgstr "Voeg automatisch paragrafen toe"
|
||||
|
||||
#. translators: user display name
|
||||
#: includes/class-wp-user-avatar.php:227
|
||||
msgid "Choose Image: %s"
|
||||
msgstr "Kies foto: %s"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:243 includes/class-wp-user-avatar.php:244
|
||||
#: includes/wpua-tinymce-window.php:95 includes/wpua-tinymce-window.php:186
|
||||
msgid "Upload"
|
||||
msgstr "Uploaden"
|
||||
|
||||
#. translators: file size in KB
|
||||
#: includes/class-wp-user-avatar.php:253 includes/wpua-options-page.php:188
|
||||
msgid "Maximum upload file size: %s."
|
||||
msgstr "Maximale bestandsgrootte van upload: %s."
|
||||
|
||||
#. translators: allowed file extensions
|
||||
#: includes/class-wp-user-avatar.php:263
|
||||
msgid "Allowed Files: %s"
|
||||
msgstr "Toegestane bestanden: %s"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:276 includes/class-wp-user-avatar.php:278
|
||||
#: includes/wpua-tinymce-window.php:125
|
||||
msgid "Original Size"
|
||||
msgstr "Originele grootte"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:282 includes/class-wp-user-avatar.php:284
|
||||
#: includes/wpua-tinymce-window.php:128
|
||||
msgid "Thumbnail"
|
||||
msgstr "Thumbnail"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:288
|
||||
msgid "Remove Image"
|
||||
msgstr "Afbeelding verwijderen"
|
||||
|
||||
#: includes/class-wp-user-avatar.php:377
|
||||
msgid "This file is not an image. Please try another."
|
||||
msgstr "Dit bestand is geen afbeelding. Probeer een ander bestand."
|
||||
|
||||
#: includes/class-wp-user-avatar.php:382 includes/class-wp-user-avatar.php:414
|
||||
msgid "Memory exceeded. Please try another smaller file."
|
||||
msgstr "Het geheugen is overschreden. Probeer opnieuw met een kleiner bestand."
|
||||
|
||||
#. translators: directory path
|
||||
#: includes/class-wp-user-avatar.php:389
|
||||
msgid ""
|
||||
"Unable to create directory %s. Is its parent directory writable by the "
|
||||
"server?"
|
||||
msgstr ""
|
||||
"Kan map %s niet aanmaken. Is de hoofd folder beschrijfbaar door de server?"
|
||||
|
||||
#: includes/wpua-functions.php:109 includes/wpua-functions.php:118
|
||||
msgid "Image"
|
||||
msgstr "Afbeelding"
|
||||
|
||||
#: includes/wpua-media-page.php:46
|
||||
msgid "You do not have permission to upload files."
|
||||
msgstr "Je hebt geen toestemming om bestanden te uploaden."
|
||||
|
||||
#. translators: search query
|
||||
#: includes/wpua-media-page.php:66
|
||||
msgid "Search results for %s"
|
||||
msgstr "Zoekresultaten voor %s"
|
||||
|
||||
#: includes/wpua-media-page.php:98
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: includes/wpua-options-page.php:108
|
||||
msgid "Add avatar button to Visual Editor"
|
||||
msgstr "Voeg avatar-knop toe aan visuele editor"
|
||||
|
||||
#: includes/wpua-options-page.php:119
|
||||
msgid "Allow Contributors & Subscribers to upload avatars"
|
||||
msgstr "Sta schrijvers & abonnees toe om avatars te uploaden"
|
||||
|
||||
#: includes/wpua-options-page.php:130
|
||||
msgid "Disable Gravatar and use only local avatars"
|
||||
msgstr "Schakel Gravatar uit en gebruik alleen lokale avatars"
|
||||
|
||||
#: includes/wpua-options-page.php:158 includes/wpua-options-page.php:167
|
||||
msgid "Upload Size Limit"
|
||||
msgstr "Bestandsgrootte uploadlimiet"
|
||||
|
||||
#: includes/wpua-options-page.php:159 includes/wpua-options-page.php:168
|
||||
msgid "(only for Contributors & Subscribers)"
|
||||
msgstr "(alleen voor schrijvers & abonnees)"
|
||||
|
||||
#. translators: file name
|
||||
#: includes/wpua-options-page.php:178
|
||||
msgid "%s exceeds the maximum upload size for this site."
|
||||
msgstr "%s overschrijdt de maximale uploadgrootte voor deze site."
|
||||
|
||||
#: includes/wpua-options-page.php:199
|
||||
msgid "Allow users to edit avatars"
|
||||
msgstr "Sta gebruikers toe om avatars te bewerken"
|
||||
|
||||
#: includes/wpua-options-page.php:207
|
||||
msgid "Resize avatars on upload"
|
||||
msgstr "Pas de grootte van avatars aan bij het uploaden"
|
||||
|
||||
#: includes/wpua-options-page.php:212
|
||||
msgid "Width"
|
||||
msgstr "Breedte"
|
||||
|
||||
#: includes/wpua-options-page.php:216
|
||||
msgid "Height"
|
||||
msgstr "Hoogte"
|
||||
|
||||
#: includes/wpua-options-page.php:224
|
||||
msgid "Crop avatars to exact dimensions"
|
||||
msgstr "Snijd avatars bij tot exacte afmetingen"
|
||||
|
||||
#: includes/wpua-options-page.php:246 includes/wpua-options-page.php:252
|
||||
msgid "Avatar Display"
|
||||
msgstr "Avatar weergave"
|
||||
|
||||
#: includes/wpua-options-page.php:259
|
||||
msgid "Show Avatars"
|
||||
msgstr "Toon avatars"
|
||||
|
||||
#: includes/wpua-options-page.php:266 includes/wpua-options-page.php:272
|
||||
msgid "Maximum Rating"
|
||||
msgstr "Leeftijdsgrens"
|
||||
|
||||
#: includes/wpua-options-page.php:278
|
||||
msgid "G — Suitable for all audiences"
|
||||
msgstr "G — Geschikt voor alle leeftijden"
|
||||
|
||||
#: includes/wpua-options-page.php:279
|
||||
msgid "PG — Possibly offensive, usually for audiences 13 and above"
|
||||
msgstr ""
|
||||
"PG — Mogelijk kwetsend, gebruikelijk voor leeftijden van 13 en hoger"
|
||||
|
||||
#: includes/wpua-options-page.php:280
|
||||
msgid "R — Intended for adult audiences above 17"
|
||||
msgstr "R — Alleen voor boven de 17"
|
||||
|
||||
#: includes/wpua-options-page.php:281
|
||||
msgid "X — Even more mature than above"
|
||||
msgstr "X — Nog ouder"
|
||||
|
||||
#: includes/wpua-options-page.php:310
|
||||
msgid ""
|
||||
"For users without a custom avatar of their own, you can either display a "
|
||||
"generic logo or a generated one based on their e-mail address."
|
||||
msgstr ""
|
||||
"Voor gebruikers zonder eigen avatar kun je een logo weergeven dat gemaakt "
|
||||
"word gebaseerd op hun e-mailadres."
|
||||
|
||||
#: includes/wpua-tinymce-window.php:101
|
||||
msgid "User Name"
|
||||
msgstr "Gebruikersnaam"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:121 includes/wpua-tinymce-window.php:134
|
||||
msgid "Size:"
|
||||
msgstr "Grootte:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:126
|
||||
msgid "Large"
|
||||
msgstr "Groot"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:127
|
||||
msgid "Medium"
|
||||
msgstr "Gemiddeld"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:129
|
||||
msgid "Custom"
|
||||
msgstr "Aangepast"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:140
|
||||
msgid "Alignment:"
|
||||
msgstr "Uitlijning:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:144
|
||||
msgid "Center"
|
||||
msgstr "Gecentreerd"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:145
|
||||
msgid "Left"
|
||||
msgstr "Links"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:146
|
||||
msgid "Right"
|
||||
msgstr "Rechts"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:151
|
||||
msgid "Link To:"
|
||||
msgstr "Link naar:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:155
|
||||
msgid "Image File"
|
||||
msgstr "Afbeeldingsbestand"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:156
|
||||
msgid "Attachment Page"
|
||||
msgstr "Bijlagepagina"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:157
|
||||
msgid "Custom URL"
|
||||
msgstr "Aangepaste URL"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:162
|
||||
msgid "URL:"
|
||||
msgstr "URL:"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:170
|
||||
msgid "Open link in a new window"
|
||||
msgstr "Link openen in nieuw venster"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:174
|
||||
msgid "Caption"
|
||||
msgstr "Bijschrift"
|
||||
|
||||
#: includes/wpua-tinymce-window.php:180 includes/wpua-tinymce-window.php:192
|
||||
msgid "Insert into Post"
|
||||
msgstr "Invoegen in bericht"
|
||||
|
||||
#: includes/wpua-tinymce.php:70
|
||||
msgid "Insert Avatar"
|
||||
msgstr "Avatar invoegen"
|
||||
|
||||
#. translators: placeholder for <a> and </a> tags.
|
||||
#: one-user-avatar.php:94
|
||||
msgid ""
|
||||
"The plugin One User Avatar is a replacement for the old WP User Avatar "
|
||||
"plugin. Please %1$sdeactivate WP User Avatar%2$s to start using it."
|
||||
msgstr ""
|
||||
"De plug-in One User Avatar is een vervanging voor de oude WP User Avatar-"
|
||||
"plug-in. %1$sDeactiveer WP User Avatar%2$s om het te gebruiken."
|
||||
|
||||
#~ msgid "Edit Image"
|
||||
#~ msgstr "Afbeelding bewerken"
|
||||
|
||||
#, php-format
|
||||
#~ msgid "Edit %s"
|
||||
#~ msgstr "%s bewerken"
|
||||
|
||||
#, php-format
|
||||
#~ msgid "View %s"
|
||||
#~ msgstr "%s bekijken"
|
||||
|
||||
#~ msgid "Media attachment permanently deleted."
|
||||
#~ msgstr "Mediabijlage permanent verwijderd."
|
||||
@@ -0,0 +1,142 @@
|
||||
# English translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Automatically generated, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Woocommerce Product Disclaimer 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-06 13:46-0400\n"
|
||||
"PO-Revision-Date: 2019-02-19 11:27+0000\n"
|
||||
"Last-Translator: Saad Iqbal <support@wpexperts.io>\n"
|
||||
"Language-Team: English (United States)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"X-Poedit-SourceCharset: iso-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"Language: en_US\n"
|
||||
"X-Loco-Version: 2.2.0; wp-5.0.3"
|
||||
|
||||
#: mypluginindex.php:87 (it is just a line of note, to remind where our code
|
||||
#: appears)
|
||||
msgid "Add disclaimer"
|
||||
msgstr "Add disclaimer"
|
||||
|
||||
msgid "Disclaimer message"
|
||||
msgstr "Disclaimer message"
|
||||
|
||||
msgid "Reject URL"
|
||||
msgstr "Reject URL"
|
||||
|
||||
msgid "Disclaimer option"
|
||||
msgstr "Disclaimer option"
|
||||
|
||||
msgid "Display one time only?"
|
||||
msgstr "Display one time only?"
|
||||
|
||||
msgid "Inherit"
|
||||
msgstr "Inherit"
|
||||
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
msgid "Disable"
|
||||
msgstr "Disable"
|
||||
|
||||
msgid "Woocommerce Disclaimer Settings"
|
||||
msgstr "Woocommerce Disclaimer Settings"
|
||||
|
||||
msgid "Disclaimer"
|
||||
msgstr "Disclaimer"
|
||||
|
||||
msgid "Cookie duration"
|
||||
msgstr "Cookie duration"
|
||||
|
||||
msgid "Cookie activation"
|
||||
msgstr "Cookie activation"
|
||||
|
||||
msgid "Note"
|
||||
msgstr "Note"
|
||||
|
||||
msgid ""
|
||||
"if it is activated, the user will not have to agree every time he add a "
|
||||
"product that he agreed on its disclaimer before."
|
||||
msgstr ""
|
||||
"if it is activated, the user will not have to agree every time he add a "
|
||||
"product that he agreed on its disclaimer before."
|
||||
|
||||
msgid "Activate General Disclaimer"
|
||||
msgstr "Activate General Disclaimer"
|
||||
|
||||
msgid "General Disclaimer Message"
|
||||
msgstr "General Disclaimer Message"
|
||||
|
||||
msgid "Log Disclaimer Activity"
|
||||
msgstr "Log Disclaimer Activity"
|
||||
|
||||
msgid ""
|
||||
"Check this if you want to log the disclaimer activity (accept or reject) on "
|
||||
"your products."
|
||||
msgstr ""
|
||||
"Check this if you want to log the disclaimer activity (accept or reject) on "
|
||||
"your products."
|
||||
|
||||
msgid ""
|
||||
"Do not change these values unless you override the default classes of add to "
|
||||
"cart buttons"
|
||||
msgstr ""
|
||||
"Do not change these values unless you override the default classes of add to "
|
||||
"cart buttons"
|
||||
|
||||
msgid ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to"
|
||||
msgstr ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to"
|
||||
|
||||
msgid "General Reject URL"
|
||||
msgstr "General Reject URL"
|
||||
|
||||
msgid "Disable product disclaimer for this product"
|
||||
msgstr "Disable product disclaimer for this product"
|
||||
|
||||
msgid "Add a unique disclaimer for this product"
|
||||
msgstr "Add a unique disclaimer for this product"
|
||||
|
||||
msgid "Use global disclaimer for this product"
|
||||
msgstr "Use global disclaimer for this product"
|
||||
|
||||
msgid "Enabling this option will show disclaimer only one time"
|
||||
msgstr "Enabling this option will show disclaimer only one time"
|
||||
|
||||
msgid ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to global"
|
||||
msgstr ""
|
||||
"This disclaimer will be applied to all products if the general disclaimer is "
|
||||
"activated and both product and category were set to global"
|
||||
|
||||
msgid ""
|
||||
"Show one time disclaimer message when product add to cart button clicked "
|
||||
"untill next cookie expires"
|
||||
msgstr ""
|
||||
"Show one time disclaimer message when product add to cart button clicked "
|
||||
"untill next cookie expires"
|
||||
|
||||
msgid ""
|
||||
"How much time disclaimer message should not appear when product add to cart "
|
||||
"button clicked"
|
||||
msgstr ""
|
||||
"How much time disclaimer message should not appear when product add to cart "
|
||||
"button clicked"
|
||||
|
||||
msgid ""
|
||||
"Customer will be redirected to this URL if customer does not accept product "
|
||||
"disclaimer"
|
||||
msgstr ""
|
||||
"Customer will be redirected to this URL if customer does not accept product "
|
||||
"disclaimer"
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/pdf-generator-for-wp/composer_file/package.json
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/pdf-generator-for-wp/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "pdf-generator-for-wp",
|
||||
"version": "1.0.0",
|
||||
"description": "=== PDF Generator For WordPress ===\r Contributors: makewebbetter\r Tags: comments, spam\r Requires at least: 4.6\r Tested up to: 4.9.5\r Stable tag: 1.0.0\r License: GNU General Public License v3.0\r License URI: http://www.gnu.org/licenses/gpl-3.0.html",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.2.4",
|
||||
"browser-sync": "^2.26.14",
|
||||
"css-mqpacker": "^7.0.0",
|
||||
"cssnano": "^4.1.10",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-deporder": "^1.2.0",
|
||||
"gulp-imagemin": "^7.1.0",
|
||||
"gulp-newer": "^1.4.0",
|
||||
"gulp-postcss": "^9.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-strip-debug": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-util": "^3.0.8",
|
||||
"postcss-assets": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"gulp-wp-pot": "^2.5.0",
|
||||
"postcss": "^8.2.6"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
505
spec/fixtures/dynamic_finders/plugin_version/pepro-cf7-database/translation_file/languages/cf7db.pot
vendored
Normal file
505
spec/fixtures/dynamic_finders/plugin_version/pepro-cf7-database/translation_file/languages/cf7db.pot
vendored
Normal file
@@ -0,0 +1,505 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"Project-Id-Version: CF7 Database\n"
|
||||
"POT-Creation-Date: 2021-05-19 19:54+0430\n"
|
||||
"PO-Revision-Date: 2020-07-13 02:16+0430\n"
|
||||
"Last-Translator: Amirhosseinhpv <amirhossein@hpv.im>\n"
|
||||
"Language-Team: Amirhosseinhpv <amirhossein@hpv.im>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
||||
"X-Poedit-WPHeader: pepro-cf7-db.php\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
||||
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
|
||||
#: pepro-cf7-db.php:69
|
||||
msgid "CF7 Database"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: pepro-cf7-db.php:70 pepro-cf7-db.php:358 pepro-cf7-db.php:407
|
||||
#: pepro-cf7-db.php:414
|
||||
msgid "Pepro CF7 Database"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:71
|
||||
#, php-format
|
||||
msgid "%2$s ver. %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:97 pepro-cf7-db.php:359 pepro-cf7-db.php:408
|
||||
msgid "A Reliable Solution to Save Contact Form 7 Submissions and Files"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:99 pepro-cf7-db.php:107
|
||||
msgid "Saved Submission"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:100
|
||||
msgid "All CF7 Databases"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:101
|
||||
msgid "Give five-star review"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:102
|
||||
msgid "Pepro CF7 SMS Notifier"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:103
|
||||
msgid "Pepro Dev FREE offerings"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:164
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:165
|
||||
msgid "CF7 Submissions"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:206
|
||||
#, php-format
|
||||
msgctxt "footer-copyright"
|
||||
msgid "Thanks for using %s products"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:206 pepro-cf7-db.php:360 pepro-cf7-db.php:409
|
||||
msgid "Pepro Dev"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:207
|
||||
#, php-format
|
||||
msgctxt "footer-copyright"
|
||||
msgid "%s — Version %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:215
|
||||
msgid "Unauthorized Access!"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:225
|
||||
#, php-format
|
||||
msgid "Submition ID %s Successfully Deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:227
|
||||
#, php-format
|
||||
msgid "Error Deleting Submition ID %s."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:238
|
||||
#, php-format
|
||||
msgid "All data regarding Contact form %s (ID %s) were Successfully Deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:240
|
||||
#, php-format
|
||||
msgid "Error Deleting Contact form %s (ID %s) data from database."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:250
|
||||
msgid "Database Successfully Cleared."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:252
|
||||
msgid "Error Clearing Database."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:274
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Select image file"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:275
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Use this image"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:276
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:277
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Current preview"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:278
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:279
|
||||
msgctxt "js-string"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:280
|
||||
msgctxt "js-string"
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:281
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:282
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:283
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:284
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:285
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:286
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Okay"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:287
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:288
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:289
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:290
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Send to all"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:291
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:292
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Delete Submition"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:293
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Are you sure you want to delete submition ID %s ? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:294
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Are you sure you want to clear all data from database? This cannot be "
|
||||
"undone."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:295
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Are you sure you want to clear all Current Contact form data from database? "
|
||||
"This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:296
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Clear Database"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:298
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Data Exported via %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:299
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "CF7 Database of %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:300
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid "Exported at %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:302
|
||||
#, php-format
|
||||
msgctxt "wc-setting-js"
|
||||
msgid ""
|
||||
"Exported via %s — Date: %s — Developed by Pepro Dev ( https://pepro.dev/ )"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:304
|
||||
msgctxt "data-table"
|
||||
msgid "No data available in table"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:305
|
||||
msgctxt "data-table"
|
||||
msgid "Showing _START_ to _END_ of _TOTAL_ entries"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:306
|
||||
msgctxt "data-table"
|
||||
msgid "Showing 0 to 0 of 0 entries"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:307
|
||||
msgctxt "data-table"
|
||||
msgid "(filtered from _MAX_ total entries)"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:308
|
||||
msgctxt "data-table"
|
||||
msgid "Show _MENU_ entries"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:309
|
||||
msgctxt "data-table"
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:310
|
||||
msgctxt "data-table"
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:311
|
||||
msgctxt "data-table"
|
||||
msgid "Search:"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:312
|
||||
msgctxt "data-table"
|
||||
msgid "No matching records found"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:313
|
||||
msgctxt "data-table"
|
||||
msgid "First"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:314
|
||||
msgctxt "data-table"
|
||||
msgid "Last"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:315
|
||||
msgctxt "data-table"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:316
|
||||
msgctxt "data-table"
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:317
|
||||
msgctxt "data-table"
|
||||
msgid ": activate to sort column ascending"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:318
|
||||
msgctxt "data-table"
|
||||
msgid ": activate to sort column descending"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:319
|
||||
msgctxt "data-table"
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:320
|
||||
msgctxt "data-table"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:321
|
||||
msgctxt "data-table"
|
||||
msgid "Column visibility"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:322
|
||||
msgctxt "data-table"
|
||||
msgid "Export CSV"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:323
|
||||
msgctxt "data-table"
|
||||
msgid "Export Excel"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:324
|
||||
msgctxt "data-table"
|
||||
msgid "Export PDF"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:360 pepro-cf7-db.php:409
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This plugin is proudly developed by %s for FREE, you can support us by "
|
||||
"giving a %s in WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:360 pepro-cf7-db.php:409
|
||||
msgid "five-star review"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:363
|
||||
#, php-format
|
||||
msgid ""
|
||||
"As of ver. 1.5.0 of %s, Setting section removed and saved data will remain "
|
||||
"intact after uninstalling the plugin and you have to manually clear all "
|
||||
"data before uninstalling."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:363
|
||||
msgid "Pepro CF7 Database Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:364
|
||||
msgid "BE CAUTIOUS! ONCE YOU EMPTY THE DATABASE, THERE WILL BE NO WAY BACK!"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:365
|
||||
msgctxt "setting-general"
|
||||
msgid "Empty Database and All Saved Submission"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:369
|
||||
msgid "To view Saved Submission, select a CF7 Form from below list:"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:378
|
||||
msgid "Entered CF7 is not valid, Go back and select another Contact form"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:389
|
||||
msgid "Items per page"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:390 pepro-cf7-db.php:391 pepro-cf7-db.php:392
|
||||
#: pepro-cf7-db.php:393 pepro-cf7-db.php:394 pepro-cf7-db.php:395
|
||||
#: pepro-cf7-db.php:396 pepro-cf7-db.php:397 pepro-cf7-db.php:398
|
||||
#: pepro-cf7-db.php:399 pepro-cf7-db.php:400
|
||||
#, php-format
|
||||
msgctxt "items_per_page"
|
||||
msgid "Show %s items per page"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:402
|
||||
#, php-format
|
||||
msgid "Show your only saved submition"
|
||||
msgid_plural "Show all %s items at once"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pepro-cf7-db.php:414
|
||||
#, php-format
|
||||
msgid "You are here: %s → %s → %s"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:414
|
||||
msgid "Contact Forms"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:418
|
||||
msgid "Delete All Submission of Current Contact form"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:427
|
||||
msgid "Failed Rendering Database! No data saved for this form yet."
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:442
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:443
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:450
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:454
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:458
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:476
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:479
|
||||
#, php-format
|
||||
msgid "Your very first saved submition is showing below"
|
||||
msgid_plural "%s Saved Submission found"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pepro-cf7-db.php:527
|
||||
msgid "Delete this specific submition"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:563
|
||||
msgid "< Previous"
|
||||
msgstr ""
|
||||
|
||||
#: pepro-cf7-db.php:564
|
||||
msgid "Next >"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://pepro.dev/cf7-database/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Reliable Solution to Save CF7 Submissions and Files, Works with CF7 v.5.4+"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Pepro Dev. Group"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://pepro.dev/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Release Date - 4 April 2021*
|
||||
* Initial release
|
||||
@@ -0,0 +1,341 @@
|
||||
# Copyright (C) 2021 WPRealizer
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Base Order for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
||||
"POT-Creation-Date: 2021-06-03 14:50:48+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.0\n"
|
||||
|
||||
#: includes/Admin/Admin.php:40
|
||||
#. translators: %s: wc plugin url
|
||||
msgid ""
|
||||
"Product Base Order for WooCommerce requires WooCommerce to be installed and "
|
||||
"active. You can activate <a href=\"%s\">WooCommerce</a> here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:36
|
||||
msgid "Product Base Order"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Product Base Order for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:52
|
||||
msgid "Shortcodes List:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:59
|
||||
msgid "Global Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:62
|
||||
msgid "All Products Base Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:65
|
||||
msgid "Specefic Products Base Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:68 includes/Admin/Menus.php:71
|
||||
msgid "Filter Products Base Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menus.php:106
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:23
|
||||
msgid "General Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:28
|
||||
msgid "Product Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:33
|
||||
msgid "Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:38
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:59 includes/Admin/SettingsFields.php:106
|
||||
msgid "Logged Users Only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:60 includes/Admin/SettingsFields.php:107
|
||||
msgid ""
|
||||
"Select <strong>Yes</strong> if you want to show the order listing table "
|
||||
"only for logged users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:64 includes/Admin/SettingsFields.php:100
|
||||
#: includes/Admin/SettingsFields.php:111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:65 includes/Admin/SettingsFields.php:101
|
||||
#: includes/Admin/SettingsFields.php:112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:70
|
||||
msgid "Default Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:71
|
||||
msgid ""
|
||||
"This is default title will show on above order listing table for all uses "
|
||||
"shortcodes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:72 includes/Admin/SettingsFields.php:130
|
||||
#: includes/ProductBaseOrder.php:50 includes/ProductBaseOrder.php:52
|
||||
msgid "Recent Orders"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:77
|
||||
msgid "Default Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:78
|
||||
msgid ""
|
||||
"This is default sub title will show on below of main title for all uses "
|
||||
"shortcodes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:83 includes/Admin/SettingsFields.php:141
|
||||
msgid "Default Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:84 includes/Admin/SettingsFields.php:142
|
||||
msgid "Select which columns want to show on defaut columns on order listing table."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:95
|
||||
msgid "Allow for Single Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:96
|
||||
msgid ""
|
||||
"Select <strong>Yes</strong> if you want to show the order listing table on "
|
||||
"each single product page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:117
|
||||
msgid "Select Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:118
|
||||
msgid ""
|
||||
"Select <strong>position</strong> where want to show the order listing table "
|
||||
"on single product page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:122
|
||||
msgid "Before Related Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:123
|
||||
msgid "After Related Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:128
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:129
|
||||
msgid "This title will show on above order listing table."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:135
|
||||
msgid "Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:136
|
||||
msgid "This sub title will show on below of main title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:153
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:159
|
||||
msgid "With Title and SubTitle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:165 templates/global-orders-list.php:14
|
||||
msgid "All Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:171
|
||||
msgid "Specefic Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:177
|
||||
msgid "With Products Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:183
|
||||
msgid "Ignore Products Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:189
|
||||
msgid "With Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:195
|
||||
msgid "Ignore Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:201
|
||||
msgid "Products and Category Filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:207
|
||||
msgid "Allow WC Default Columns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:209
|
||||
msgid ""
|
||||
"<b>Notes:</b> <code>[ \"field_key1|Title1, field_key2|Title2\" ]</code> "
|
||||
"Here first values (field_key1, field_key2 ) is not changable, you can only "
|
||||
"change 2nd values (Title1, Title2) as you want."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:214
|
||||
msgid "Custom Meta Data Column"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:216
|
||||
msgid ""
|
||||
"<b>Notes:</b> <code>[ \"meta_field_key1|Title1, meta_field_key2|Title2\" "
|
||||
"]</code> Here first values (meta_field_key1, meta_field_key2 ) is should be "
|
||||
"same as database meta_key value, you can only change 2nd values (Title1, "
|
||||
"Title2) as you want."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:225
|
||||
msgid "Need Help?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:226
|
||||
msgid ""
|
||||
"<a target=\"_blank\" href=\"https://www.wprealizer.com/contact-us/\">Click "
|
||||
"here</a> to get support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/SettingsFields.php:552
|
||||
msgid "Choose File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:64
|
||||
msgid "Order#"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:65
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:66
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:67
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:68
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:69
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:70
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:71
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:72
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:73
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:74
|
||||
msgid "Payment Method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:75
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:76
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:77
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:169
|
||||
#. translators: %1$s: Item count, %2$s: symble, %3$s: Total
|
||||
msgid "%1$s%2$s for %3$s item"
|
||||
msgid_plural "%1$s%2$s for %3$s items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: templates/global-orders-list.php:12
|
||||
msgid "Filter By Product"
|
||||
msgstr ""
|
||||
|
||||
#: templates/global-orders-list.php:21
|
||||
msgid "Filter By Category"
|
||||
msgstr ""
|
||||
|
||||
#: templates/global-orders-list.php:23
|
||||
msgid "All Categories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/global-orders-list.php:197
|
||||
msgid "No orders found!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wprealizer.com/wprealizer-plugins/product-base-order-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WPRealizer"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wprealizer.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,120 @@
|
||||
# Copyright (C) 2021 Acowebs
|
||||
# This file is distributed under the same license as the Product Table For WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Table For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aco-woo-product-table-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-27T05:01:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: product-table-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Product Table For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin helps to show products in table layout"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: filters/rating-filter.php:65
|
||||
#: filters/rating-filter.php:77
|
||||
#: filters/rating-filter.php:89
|
||||
#: filters/rating-filter.php:101
|
||||
#: filters/rating-filter.php:113
|
||||
msgid "Rated"
|
||||
msgstr ""
|
||||
|
||||
#: filters/results-per-page.php:16
|
||||
#: filters/results-per-page.php:17
|
||||
#: filters/results-per-page.php:43
|
||||
msgid "Results per page"
|
||||
msgstr ""
|
||||
|
||||
#: filters/sort.php:13
|
||||
#: filters/sort.php:14
|
||||
msgid "Sort by"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:223
|
||||
msgid "Thumbnail (150 x 150 cropped)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:224
|
||||
msgid "Medium (300 x 300)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:225
|
||||
msgid "Medium Large (768 x 0 infinite height)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:226
|
||||
msgid "Large resolution (1024 x 1024)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:227
|
||||
msgid "Full (original size)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:239
|
||||
msgid "0 infinite height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-api.php:243
|
||||
msgid "cropped"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:192
|
||||
msgid "Products not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:193
|
||||
msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:194
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:195
|
||||
msgid "View Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:217
|
||||
msgid "Product Tables"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:218
|
||||
msgid "Product Table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:219
|
||||
msgid "Woo Product Table By Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:245
|
||||
#: includes/class-awcpt-backend.php:246
|
||||
msgid "WC Product Tables"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcpt-backend.php:268
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: templates/rating.php:14
|
||||
#: templates/rating.php:26
|
||||
msgid "out of 5 stars"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,90 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Protect Media Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2021-05-16 23:59+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: ateliee <info@ateliee.com>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.4.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: src/include.php:60 src/include.php:84
|
||||
msgid "Protect Media Setting"
|
||||
msgstr "メディアの保護設定"
|
||||
|
||||
#: src/include.php:61
|
||||
msgid "Protect Media"
|
||||
msgstr "メディアの保護"
|
||||
|
||||
#: src/include.php:85
|
||||
msgid "Make login required for file access of the set path."
|
||||
msgstr "設定されたパスのファイルアクセスをログイン必須にします。"
|
||||
|
||||
#: src/include.php:87
|
||||
msgid "Check if AllowOverride in php.ini is enabled."
|
||||
msgstr "php.iniのAllowOverrideが有効か確認してください。"
|
||||
|
||||
#: src/include.php:90
|
||||
#, php-format
|
||||
msgid "%s does not exist. Save and update your settings."
|
||||
msgstr "%sが存在しません。設定を保存して更新してください。"
|
||||
|
||||
#: src/include.php:93
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You don't have write permission to .htaccess. Please describe the following "
|
||||
"in %s."
|
||||
msgstr ".htaccessへの書き込み権限がありません。下記を%sに記載ください"
|
||||
|
||||
#: src/include.php:98
|
||||
msgid "You don't have write permission to .htaccess."
|
||||
msgstr ".htaccessへの書き込み権限がありません。"
|
||||
|
||||
#: src/include.php:102
|
||||
msgid "Protection is not enabled because the path is invalid."
|
||||
msgstr "パスが無効のため保護が有効化されていません。"
|
||||
|
||||
#: src/include.php:110
|
||||
msgid "Path setting"
|
||||
msgstr "パス設定"
|
||||
|
||||
#: src/include.php:111
|
||||
msgid "Please specify the path from uploads"
|
||||
msgstr "uploadsからのパスを指定してください"
|
||||
|
||||
#: src/include.php:114
|
||||
msgid "Deny all access"
|
||||
msgstr "アクセスを全て拒否"
|
||||
|
||||
#: src/include.php:134
|
||||
msgid "The settings have been saved."
|
||||
msgstr "設定の保存が完了しました。"
|
||||
|
||||
#: src/include.php:200
|
||||
msgid ".htaccess could not be read."
|
||||
msgstr ".htaccessが読み込めませんでした。"
|
||||
|
||||
#: src/include.php:209
|
||||
msgid "Any changes to the directive between these markers will be overwritten."
|
||||
msgstr ""
|
||||
"これらのマーカー間にあるディレクティブへのいかなる変更も上書きされてしまいま"
|
||||
"す。"
|
||||
|
||||
#: src/include.php:218
|
||||
msgid "Failed to write to .htaccess."
|
||||
msgstr ".htaccessへの書き込みに失敗しました。"
|
||||
@@ -10,6 +10,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/2-click-socialmedia-buttons/js/social_bookmarks-min.js?ver=1.6.4"></script>
|
||||
|
||||
|
||||
<!-- 2checkout -->
|
||||
<link rel="stylesheet" id="2checkout-css" href="http://wp.lab/wp-content/plugins/2checkout/assets/css/front.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/2checkout/assets/js/front.js?ver=1.0" id="2checkout-js"></script>
|
||||
|
||||
|
||||
<!-- 3-word-address-validation-field -->
|
||||
<link rel="stylesheet" id="what3words_autosuggest_wp-css" href="http://wp.lab/wp-content/plugins/3-word-address-validation-field/public/css/jquery.w3w-autosuggest-plugin.min.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3-word-address-validation-field/public/js/jquery.w3w-autosuggest-plugin.bundle.min.js?ver=1.1.0"></script>
|
||||
@@ -134,6 +139,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/a-simple-backend/js/interact.js?ver=1.0.4.7"></script>
|
||||
|
||||
|
||||
<!-- a11y-kit -->
|
||||
<link rel="stylesheet" id="a11y-kit-css" href="http://wp.lab/wp-content/plugins/a11y-kit/public/css/a11y-kit-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- a2reviews -->
|
||||
<link rel="stylesheet" id="a2reviews-css" href="http://wp.lab/wp-content/plugins/a2reviews/public/css/a2reviews-public.css?ver=1.0.4" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/a2reviews/public/js/a2reviews-public.js?ver=1.0.4"></script>
|
||||
@@ -323,6 +332,8 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/activityhub/assets/js/select2.min.js?ver=2.0.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/activityhub/assets/js/slick.min.js?ver=2.0.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/activityhub/assets/js/activityhub.min.js?ver=2.0.1"></script>
|
||||
<link rel="stylesheet" id="fieldday_style-css" href="http://wp.lab/wp-content/plugins/activityhub/assets/css/fieldday.min.css?ver=2.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/activityhub/assets/js/fieldday.min.js?ver=2.0.1" id="fieldday_script-js"></script>
|
||||
|
||||
|
||||
<!-- activitytime -->
|
||||
@@ -445,6 +456,11 @@
|
||||
<link rel="stylesheet" id="admin-bar-wrap-fix-css" href="http://wp.lab/wp-content/plugins/admin-bar-wrap-fix/admin-bar-wrap-fix.min.css?ver=0.9.2" type="text/css" media="screen">
|
||||
|
||||
|
||||
<!-- admin-email-address-changer -->
|
||||
<link rel="stylesheet" id="admin-email-address-changer-css" href="http://wp.lab/wp-content/plugins/admin-email-address-changer/public/css/admin-email-address-changer-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/admin-email-address-changer/public/js/admin-email-address-changer-public.js?ver=1.0.0" id="admin-email-address-changer-js"></script>
|
||||
|
||||
|
||||
<!-- admin-keys -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/admin-keys/assets/js/mousetrap.min.js?ver=1.4.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/admin-keys/assets/js/mousetrap-global-bind.min.js?ver=1.4.0"></script>
|
||||
@@ -597,6 +613,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-product-wishlist-for-woo/public/js/advanced-product-wishlist-for-woocomerce-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- advanced-related-posts -->
|
||||
<link rel="stylesheet" id="advanced-related-posts-css" href="http://wp.lab/wp-content/plugins/advanced-related-posts/public/css/advanced-related-posts-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/advanced-related-posts/public/js/advanced-related-posts-public.js?ver=1.0.0" id="advanced-related-posts-under-posts-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/advanced-related-posts/public/js/advanced-related-posts-public-ajax.js?ver=1.0.0" id="advanced-related-posts-under-posts-ajax-js"></script>
|
||||
|
||||
|
||||
<!-- advanced-sermons -->
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8" media="all">
|
||||
@@ -730,6 +752,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/aio-contact-lite/public/js/aio-contact-lite-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- aio-tools -->
|
||||
<link rel="stylesheet" id="aio-tools-css" href="http://wp.lab/wp-content/plugins/aio-tools/assets/css/aio-tools-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/aio-tools/assets/js/aio-tools-public.js?ver=1.0" id="aio-tools-js"></script>
|
||||
|
||||
|
||||
<!-- ajar-productions-in5-embed -->
|
||||
<link rel="stylesheet" id="in5-public-css" href="http://wp.lab/wp-content/plugins/ajar-productions-in5-embed/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajar-productions-in5-embed/assets/js/screenfull.js?ver=1.0.0"></script>
|
||||
@@ -863,6 +890,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/alojapro-widget/js/calendar/alojapro_widget.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- alpha-google-map-for-elementor -->
|
||||
<link rel="stylesheet" id="alphamap-widget-css" href="http://wp.lab/wp-content/plugins/alpha-google-map-for-elementor/assets/css/alpha-map-widget.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/alpha-google-map-for-elementor/assets/js/pa-maps-finder.js?ver=1.0.1" id="alpha-maps-finder-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/alpha-google-map-for-elementor/assets/js/alpha-map.js?ver=1.0.1" id="alphamap-js"></script>
|
||||
|
||||
|
||||
<!-- alpha-testimonials -->
|
||||
<link rel="stylesheet" id="main-style-css" href="http://wp.lab/wp-content/plugins/alpha-testimonials/inc/../assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/alpha-testimonials/inc/../assets//js/testimonials.min.js?ver=1.0"></script>
|
||||
@@ -895,6 +928,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/amazing-linker/public/js/amazing-linker-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- amazing-neo-brands -->
|
||||
<link rel="stylesheet" id="amazing-neo-brands-font-css" href="http://wp.lab/wp-content/plugins/amazing-neo-brands/assets/css/style.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- amazing-search -->
|
||||
<link rel="stylesheet" id="amazing-search-css" href="http://wp.lab/wp-content/plugins/amazing-search/public/css/amazing-search-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/amazing-search/public/js/amazing-search-public.js?ver=1.0.0"></script>
|
||||
@@ -1349,6 +1386,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/auto-image-alt/js/auto_image_alt.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- auto-post-to-social-media-wp-to-social-champ -->
|
||||
<link rel="stylesheet" id="wp-socialchamp-css" href="http://wp.lab/wp-content/plugins/auto-post-to-social-media-wp-to-social-champ/public/css/wp-socialchamp-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/auto-post-to-social-media-wp-to-social-champ/public/js/wp-socialchamp-public.js?ver=1.0.0" id="wp-socialchamp-js"></script>
|
||||
|
||||
|
||||
<!-- auto-seo-links -->
|
||||
<link rel="stylesheet" id="auto-seo-links-css" href="http://wp.lab/wp-content/plugins/auto-seo-links/public/css/auto-seo-links-public.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/auto-seo-links/public/js/auto-seo-links-public.min.js?ver=1.0.1"></script>
|
||||
@@ -1369,6 +1411,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/autocorrector-wp-camelcase/public/js/autocorrector-wp-camelcase-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- autolocation-checkout -->
|
||||
<link rel="stylesheet" id="autolocation-checkout-css" href="http://wp.lab/wp-content/plugins/autolocation-checkout/public/css/autolocation-checkout-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/autolocation-checkout/public/js/autolocation-checkout-public.js?ver=1.0.0" id="autolocation-checkout-js"></script>
|
||||
|
||||
|
||||
<!-- automatic-copyright-year -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/automatic-copyright-year/script.js?ver=1.0"></script>
|
||||
|
||||
@@ -1994,6 +2041,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blackout-darkmode-widget/js/blackout.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- blackwebsite-wp-dark-mode -->
|
||||
<script src="http://wp.lab/wp-content/plugins/blackwebsite-wp-dark-mode/js/blackwebsite.js?ver=1.0" id="blackwebsite_script-js"></script>
|
||||
|
||||
|
||||
<!-- blend-photos -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blend-photos/js/cropsetup.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blend-photos/js/jquery.Jcrop.js?ver=1.0.0"></script>
|
||||
@@ -2591,6 +2642,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddy-views/public/js/buddy-views.min.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- buddyboss-extended-add-on -->
|
||||
<link rel="stylesheet" id="bbea-css-css" href="http://wp.lab/wp-content/plugins/buddyboss-extended-add-on/main.css?ver=v1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- buddyboss-group-auto-subscription-to-forum-and-discussions -->
|
||||
<link rel="stylesheet" id="bbsgs-css-css" href="http://wp.lab/wp-content/plugins/buddyboss-group-auto-subscription-to-forum-and-discussions/frontend/custom.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/buddyboss-group-auto-subscription-to-forum-and-discussions/frontend/custom.js?ver=1.0.0" id="bbsgs-js-js"></script>
|
||||
@@ -2641,6 +2696,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bugherd-dashboard/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- build-a-house -->
|
||||
<link rel="stylesheet" id="iworks_build_a_house_blocks-expences-css" href="http://wp.lab/wp-content/plugins/build-a-house/assets/styles/frontend/blocks/expences.min.css?ver=1.0.2" media="all">
|
||||
|
||||
|
||||
<!-- builder-blocks -->
|
||||
<link rel="stylesheet" id="builder-blocks-blocks-css-css" href="http://wp.lab/wp-content/plugins/builder-blocks/blocks/dist/main.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -2670,6 +2729,11 @@
|
||||
|
||||
<!-- business-directory-plugin -->
|
||||
<link rel="stylesheet" id="wpbdp-widgets-css" href="http://wp.lab/wp-content/plugins/business-directory-plugin/assets/css/widgets.min.css?ver=5.1.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpbdp-base-css-css" href="https://wp.lab/wp-content/plugins/business-directory-plugin/assets/css/wpbdp.min.css?ver=5.1.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="default-styles-css" href="https://wp.lab/wp-content/plugins/business-directory-plugin/themes/default/assets/styles.css?ver=5.1.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/business-directory-plugin/assets/js/dnd-upload.min.js?ver=5.1.6" id="wpbdp-dnd-upload-js"></script>
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/business-directory-plugin/assets/js/wpbdp.min.js?ver=5.1.6" id="wpbdp-js-js"></script>
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/business-directory-plugin/assets/js/recaptcha.min.js?ver=5.1.6" id="wpbdp-recaptcha-js"></script>
|
||||
|
||||
|
||||
<!-- business-era-extension -->
|
||||
@@ -3537,6 +3601,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/clio-grow-form/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- clone-posts -->
|
||||
<link rel="stylesheet" id="clone-posts-css" href="http://wp.lab/wp-content/plugins/clone-posts/public/css/clone-posts-public.css?ver=2.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/clone-posts/public/js/clone-posts-public.js?ver=2.0.0" id="clone-posts-js"></script>
|
||||
|
||||
|
||||
<!-- closify-maestro-image-uploader-gallery-builder -->
|
||||
<link rel="stylesheet" id="closify-default-css" href="http://wp.lab/wp-content/plugins/closify-maestro-image-uploader-gallery-builder/assets/css/style.css?ver=1.9.2.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="arfaly-default-css" href="http://wp.lab/wp-content/plugins/closify-maestro-image-uploader-gallery-builder/assets/css/arfaly.css?ver=1.9.2.3" type="text/css" media="all">
|
||||
@@ -3637,6 +3706,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/codeprey-mi-video-popup/inc/placeholder.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- codesoup-invoice -->
|
||||
<link rel="stylesheet" id="InvoiceIT/css-css" href="http://wp.lab/wp-content/plugins/codesoup-invoice/dist/styles/main-a916c311.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="InvoiceIT/print-css" href="http://wp.lab/wp-content/plugins/codesoup-invoice/dist/styles/print-a916c311.css?ver=1.0.0" media="print">
|
||||
<script src="http://wp.lab/wp-content/plugins/codesoup-invoice/dist/scripts/main-a916c311.js?ver=1.0.0" id="InvoiceIT/js-js"></script>
|
||||
|
||||
|
||||
<!-- codexin-image-gallery -->
|
||||
<link rel="stylesheet" id="cdxn-ig-vendorcss-css" href="http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/vendor/styles/plugins.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="codexin-image-gallery-css" href="http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/styles/cdxn-ig.min.css?ver=1.0.1" media="all">
|
||||
@@ -4271,6 +4346,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/crypto-ticker/assets/js/jquery.stockticker.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cryptocurrency-exchanges -->
|
||||
<link rel="stylesheet" id="cryptoexchanges_main-css" href="http://wp.lab/wp-content/plugins/cryptocurrency-exchanges/assets/css/cryptoexchanges_main.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="cryptoexchanges_widget_cryptoexchanges_widget-css" href="http://wp.lab/wp-content/plugins/cryptocurrency-exchanges/assets/css/cryptoexchanges_widget_cryptoexchanges_widget.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cryptocurrency-exchanges/assets/js/cryptoexchanges_main.js?ver=1.0" id="cryptoexchanges_main-js"></script>
|
||||
|
||||
|
||||
<!-- cryptocurrency-widgets-pack -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cryptocurrency-widgets-pack/assets/public/js/common.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -4535,6 +4616,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/deeper-comments/views/js/deeper.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- definitions-internal-linkbuilding -->
|
||||
<link rel="stylesheet" id="rspdef-tooltip-css" href="http://wp.lab/wp-content/plugins/definitions-internal-linkbuilding/assets/css/tooltip.css?ver=1.0.0" media="all">
|
||||
<script defer src="http://wp.lab/wp-content/plugins/definitions-internal-linkbuilding/assets/js/definitions.min.js?ver=1.0.0" id="rspdef-js"></script>
|
||||
|
||||
|
||||
<!-- delicious-recipes -->
|
||||
<link rel="stylesheet" id="delicious-recipes-single-css" href="http://wp.lab/wp-content/plugins/delicious-recipes//assets/public/css/min/delicious-recipes-public.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/delicious-recipes//assets/public/js/min/delicious-recipes-public.min.js?ver=1.0.0"></script>
|
||||
@@ -4623,6 +4709,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/disable-right-click-images/script.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- disable-right-click-ninetyseven-infotech -->
|
||||
<script src="http://wp.lab/wp-content/plugins/disable-right-click-ninetyseven-infotech/js/disable-right-click-nsi.js?ver=1.0" id="disable-right-click-nsi-js"></script>
|
||||
|
||||
|
||||
<!-- disable-wp-comments -->
|
||||
<link rel="stylesheet" id="disable-wp-comments-css" href="http://wp.lab/wp-content/plugins/disable-wp-comments/public/css/disable-wp-comments-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/disable-wp-comments/public/js/disable-wp-comments-public.js?ver=1.0.0"></script>
|
||||
@@ -4893,6 +4983,10 @@
|
||||
<link rel="stylesheet" id="ecae-buttonskin-none-css" href="http://wp.lab/wp-content/plugins/easy-custom-auto-excerpt/buttons/ecae-buttonskin-none.css?ver=2.4.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- easy-custom-oceanwp-shop -->
|
||||
<link rel="stylesheet" id="ecos_chargement_style-css" href="http://wp.lab/wp-content/plugins/easy-custom-oceanwp-shop/css/easy-custom-oceanwp-shop.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- easy-digital-downloads -->
|
||||
<link rel="stylesheet" id="edd-styles-css" href="http://wp.lab/wp-content/plugins/easy-digital-downloads/templates/edd.min.css?ver=2.8.14" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-digital-downloads/assets/js/edd-ajax.min.js?ver=2.8.14"></script>
|
||||
@@ -5039,6 +5133,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-scroll/js/easyscroll-main.js?ver=0.1"></script>
|
||||
|
||||
|
||||
<!-- easy-select-and-share -->
|
||||
<link rel="stylesheet" id="esas-fontawesome-css" href="http://wp.lab/wp-content/plugins/easy-select-and-share/admin/css/font-awesome.min.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- easy-side-tab-cta -->
|
||||
<link rel="stylesheet" id="est-frontend-css-css" href="http://wp.lab/wp-content/plugins/easy-side-tab-cta/css/frontend/est-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="est-frontend-scrollbar-css-css" href="http://wp.lab/wp-content/plugins/easy-side-tab-cta/css/jquery.mCustomScrollbar.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -5327,6 +5425,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-calendar-lite/assets/js/default.js?ver=1.0.2" id="elegant-calendar-default-js"></script>
|
||||
|
||||
|
||||
<!-- elegant-free-shipping-bar-for-woocommerce -->
|
||||
<link rel="stylesheet" id="efsb-frontend-css-css" href="http://wp.lab/wp-content/plugins/elegant-free-shipping-bar-for-woocommerce/assets/css/efsb_frontend.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/elegant-free-shipping-bar-for-woocommerce/assets/js/efsb_frontend_js.js?ver=1.0" id="efsb-frontend-js-js"></script>
|
||||
|
||||
|
||||
<!-- elegantui-social-media-icons -->
|
||||
<link rel="stylesheet" id="eui-smi-css" href="http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/css/eui-smi-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/js/eui-smi-public.js?ver=1.0.0"></script>
|
||||
@@ -5348,11 +5451,20 @@
|
||||
<script type='text/javascript' src='http://wp.lab/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=1.7.11'></script>
|
||||
|
||||
|
||||
<!-- elex-choose-your-delivery-date -->
|
||||
<script src="http://wp.lab/wp-content/plugins/elex-choose-your-delivery-date/resources/flatpickr_js/flatpickr.js?ver=1.0.0" id="elex_cd_flatpickr_scripts-js"></script>
|
||||
|
||||
|
||||
<!-- eli-for-digital-magazines -->
|
||||
<script src="http://wp.lab/wp-content/plugins/eli-for-digital-magazines/script.js?ver=2.2"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/eli-for-digital-magazines/jquery.fancybox.min.js?ver=2.2"></script>
|
||||
|
||||
|
||||
<!-- elite-notification -->
|
||||
<link rel="stylesheet" id="apbd-sales-noti-main-css-css" href="http://wp.lab/wp-content/plugins/elite-notification/css/client_style.css?ver=1.0.3" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/elite-notification/uilib/sliding-growl-notification/js/notify.js?ver=1.0.3" id="apbd-sales-noti-script-js"></script>
|
||||
|
||||
|
||||
<!-- ellie-code-snippet -->
|
||||
<link rel="stylesheet" id="ellie-code-snippet-css" href="http://wp.lab/wp-content/plugins/ellie-code-snippet/public/css/ellie-code-snippet-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ellie-code-snippet/public/js/ellie-code-snippet-public.js?ver=1.0.0"></script>
|
||||
@@ -5458,6 +5570,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/enhanced-catalog-images-for-woocommerce/assets/frontend/js/main.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- enhanced-youtube-embed -->
|
||||
<script src="http://wp.lab/wp-content/plugins/enhanced-youtube-embed/public/js/enhanced-youtube-embed-public.js?ver=1.0.0" id="enhanced-youtube-embed-js"></script>
|
||||
|
||||
|
||||
<!-- enlighter -->
|
||||
<link rel="stylesheet" id="enlighter-local-css" href="http://wp.lab/wp-content/plugins/enlighter/resources/EnlighterJS.min.css?ver=3.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/enlighter/resources/mootools-core-yc.js?ver=3.5"></script>
|
||||
@@ -5595,6 +5711,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/essential-widgets/public/js/essential-widgets-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- eswp-popup-notifications -->
|
||||
<script src="http://wp.lab/wp-content/plugins/eswp-popup-notifications/js/eswp-popup-notifications-frontend.js?ver=1.0.0" id="eswppunot-frontend-js-js"></script>
|
||||
|
||||
|
||||
<!-- ethereumico -->
|
||||
<link rel="stylesheet" id="ethereum-ico-css" href="http://wp.lab/wp-content/plugins/ethereumico/ethereum-ico.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ethereumico/ethereum-ico.js?ver=1.0.2"></script>
|
||||
@@ -5807,6 +5927,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/extend-filter-products-by-price-widget/public/js/wc-change-filter-by-price-display-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- extensions-for-cf7 -->
|
||||
<script src="http://wp.lab/wp-content/plugins/extensions-for-cf7/assets/js/conditional-field.js?ver=1.0.0" id="extcf7-conditional-field-script-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/extensions-for-cf7/assets/js/redirect.js?ver=1.0.0" id="extcf7-redirect-script-js"></script>
|
||||
|
||||
|
||||
<!-- extensions-for-two-factor -->
|
||||
<link rel="stylesheet" id="two-factor-extensions-css" href="http://wp.lab/wp-content/plugins/extensions-for-two-factor/public/css/two-factor-extensions-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/extensions-for-two-factor/public/js/two-factor-extensions-public.js?ver=1.0.2"></script>
|
||||
@@ -5896,6 +6021,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/facebook-social-stream/js/wp-fb-social-stream.min.js?ver=1.6.6"></script>
|
||||
|
||||
|
||||
<!-- faculty-weekly-schedule -->
|
||||
<link rel="stylesheet" id="fws-schedule-css" href="http://wp.lab/wp-content/plugins/faculty-weekly-schedule/schedule/css/fws-schedule.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/faculty-weekly-schedule/schedule/scripts/fws-schedule.js?ver=1.0.0" id="fws-schedule-js"></script>
|
||||
|
||||
|
||||
<!-- fakeblock -->
|
||||
<link rel="stylesheet" id="fkblk-css" href="http://wp.lab/wp-content/plugins/fakeblock/assets/css/fkblk.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fakeblock/assets/js/fkblk.min.js?ver=1.0.0"></script>
|
||||
@@ -6039,6 +6169,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/featured-video-plus/js/frontend.min.js?ver=2.3.3"></script>
|
||||
|
||||
|
||||
<!-- feed-for-tiktok -->
|
||||
<link rel="stylesheet" id="tik-tok-feed-css" href="http://wp.lab/wp-content/plugins/feed-for-tiktok/public/dist/css/tik-tok-feed.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/feed-for-tiktok/public/dist/js/tik-tok-feed.js?ver=1.0.0" id="tik-tok-feed-js"></script>
|
||||
|
||||
|
||||
<!-- feed-reading-blogroll -->
|
||||
<link rel="stylesheet" id="feedreading_style-css" href="http://wp.lab/wp-content/plugins/feed-reading-blogroll/css/feedreading_blogroll.css?ver=1.5.9.2" type="text/css" media="all">
|
||||
|
||||
@@ -6336,6 +6471,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flying-pages/flying-pages.min.js?ver=1.0.3" async></script>
|
||||
|
||||
|
||||
<!-- flyout-menu-awesome -->
|
||||
<link rel="stylesheet" id="flyout-menu-awesome-css" href="http://wp.lab/wp-content/plugins/flyout-menu-awesome/public/css/flyout-menu-awesome-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/flyout-menu-awesome/public/js/modernizr-flyout-awesome.js?ver=1.0.0" id="modernizr-flyout-awesome-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flyout-menu-awesome/public/js/classie.js?ver=1.0.0" id="classie-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flyout-menu-awesome/public/js/wpmenujs.js?ver=1.0.0" id="flyout-menu-awesome-menuwpjs-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flyout-menu-awesome/public/js/flyout-menu-awesome-public.js?ver=1.0.0" id="flyout-menu-awesome-js"></script>
|
||||
|
||||
|
||||
<!-- flytedesk-digital -->
|
||||
<link rel="stylesheet" id="flytedesk-digital-css" href="http://wp.lab/wp-content/plugins/flytedesk-digital/public/css/flytedesk-digital-public.css?ver=20181101" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flytedesk-digital/public/js/flytedesk-digital-public.js?ver=20181101"></script>
|
||||
@@ -6350,6 +6493,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/focus-on-reviews-for-woocommerce/public/js/forfwc-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- focusable -->
|
||||
<link rel="stylesheet" id="focusable-style-css" href="http://wp.lab/wp-content/plugins/focusable//assets/dist/css/style.css?ver=1.2.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/focusable//assets/dist/js/main.js?ver=1.2.0" id="focusable-main-js"></script>
|
||||
|
||||
|
||||
<!-- follow-bbpress -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/follow-bbpress/js/script.js?ver=1.0"></script>
|
||||
|
||||
@@ -7491,6 +7639,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hana-widgets/js/hana-widgets.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- happy-elementor-addons-pro -->
|
||||
<script type="d7a96c59afc486b10107b457-text/javascript" src="https://wp.lab/wp-content/plugins/happy-elementor-addons-pro/assets/admin/js/marvin-ls.min.js?ver=1.16.0" id="marvin-ls-js"></script>
|
||||
<script type="d7a96c59afc486b10107b457-text/javascript" src="https://wp.lab/wp-content/plugins/happy-elementor-addons-pro/assets/admin/js/marvin.min.js?ver=1.16.0" id="marvin-js"></script>
|
||||
<script type="d7a96c59afc486b10107b457-text/javascript" src="https://wp.lab/wp-content/plugins/happy-elementor-addons-pro/assets/js/happy-addons-pro.js?ver=1.16.0" id="happy-addons-pro-js"></script>
|
||||
|
||||
|
||||
<!-- harmonia -->
|
||||
<link rel="stylesheet" id="harmonia-css-css" href="http://wp.lab/wp-content/plugins/harmonia/css/harmonia.css?ver=1.0.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/harmonia/js/harmonia.js?ver=1.0.3"></script>
|
||||
@@ -7519,6 +7673,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/healthcare-review-master/public/js/jquery.easy-ticker.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- hearken -->
|
||||
<link rel="stylesheet" id="hearken-css" href="http://wp.lab/wp-content/plugins/hearken/public/css/hearken-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- heart-this -->
|
||||
<link rel="stylesheet" id="heart-this-css" href="http://wp.lab/wp-content/plugins/heart-this/css/heart-this.min.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/heart-this/js/heartThis.pkgd.min.js?ver=0.1.0"></script>
|
||||
@@ -7865,6 +8023,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ico-list-widget/assets/js/elw.front.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- iconize -->
|
||||
<link rel="stylesheet" id="iconize-styles-css" href="http://wp.lab/wp-content/plugins/iconize/css/iconize.min.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="iconize-default-font-styles-css" href="http://wp.lab/wp-content/plugins/iconize/css/iconize-fonts.min.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="iconize-dashicons-font-styles-css" href="http://wp.lab/wp-content/plugins/iconize/css/dashicons.min.css?ver=1.0.1" media="all">
|
||||
|
||||
|
||||
<!-- iconpress-lite -->
|
||||
<link rel="stylesheet" id="iconpress-css-css" href="http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/iconpress.css?ver=1.4.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="iconpress-panel-css-css" href="http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/panel.css?ver=1.4.0" type="text/css" media="all">
|
||||
@@ -8042,6 +8206,10 @@
|
||||
<link rel="stylesheet" id="ibwp-public-style-css" href="http://wp.lab/wp-content/plugins/inboundwp-lite/assets/css/ibwp-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- inbox-forms -->
|
||||
<script src="http://wp.lab/wp-content/plugins/inbox-forms/assets/dist/js/inbox.js?ver=1.0.0" id="inbox-js"></script>
|
||||
|
||||
|
||||
<!-- indianwebs-pideme-cambios -->
|
||||
<link rel="stylesheet" id="pideme_cambios-css" href="http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/css/pideme_cambios-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/js/pideme_cambios-public.js?ver=1.0.0"></script>
|
||||
@@ -8230,6 +8398,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/integrate-ticket-master/includes/js/bootstrap.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- integration-for-nummuspay -->
|
||||
<link rel="stylesheet" id="integration-nummuspay-css" href="http://wp.lab/wp-content/plugins/integration-for-nummuspay/public/css/integration-nummuspay-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/integration-for-nummuspay/public/js/integration-nummuspay-public.js?ver=1.0.0" id="integration-nummuspay-js"></script>
|
||||
|
||||
|
||||
<!-- integration-with-mautic-for-wp -->
|
||||
<link rel="stylesheet" id="wp-mautic-integration-css" href="http://wp.lab/wp-content/plugins/integration-with-mautic-for-wp/public/css/wp-mautic-integration-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/integration-with-mautic-for-wp/public/js/wp-mautic-integration-public.js?ver=1.0.0" id="wp-mautic-integration-js"></script>
|
||||
@@ -8424,6 +8597,11 @@
|
||||
<link rel="stylesheet" id="jgccfr-msg-style-css" href="http://wp.lab/wp-content/plugins/jgc-content-for-registered-users/css/jgc-cfr-style.css?ver=1.1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- jiangqie-official-website-mini-program -->
|
||||
<link rel="stylesheet" id="jiangqie-ow-free-css" href="http://wp.lab/wp-content/plugins/jiangqie-official-website-mini-program/public/css/jiangqie-ow-free-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/jiangqie-official-website-mini-program/public/js/jiangqie-ow-free-public.js?ver=1.0.0" id="jiangqie-ow-free-js"></script>
|
||||
|
||||
|
||||
<!-- jibber-voice-comments -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/jibber-voice-comments/script.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -8704,6 +8882,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kiip/public/js/kiip-for-wordpress-public-contained.js?ver=3.1.8"></script>
|
||||
|
||||
|
||||
<!-- kiko-bot -->
|
||||
<link rel="stylesheet" id="app-kikobot-css" href="http://wp.lab/wp-content/plugins/kiko-bot/assets/css/app.css?ver=1.0.0" media="">
|
||||
|
||||
|
||||
<!-- kingcomposer -->
|
||||
<link rel="stylesheet" id="kc-general-css" href="http://wp.lab/wp-content/plugins/kingcomposer/assets/frontend/css/kingcomposer.min.css?ver=2.6.15" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="kc-animate-css" href="http://wp.lab/wp-content/plugins/kingcomposer/assets/css/animate.css?ver=2.6.15" type="text/css" media="all">
|
||||
@@ -9044,6 +9226,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leira-access/public/js/leira-access-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- lesson-bookmark-tutor-lms -->
|
||||
<link rel="stylesheet" id="tutor-lms-lesson-bookmark-css" href="http://wp.lab/wp-content/plugins/lesson-bookmark-tutor-lms/public/css/tutor-lms-lesson-bookmark-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/lesson-bookmark-tutor-lms/public/js/tutor-lms-lesson-bookmark-public.js?ver=1.0.0" id="tutor-lms-lesson-bookmark-js"></script>
|
||||
|
||||
|
||||
<!-- letter-template -->
|
||||
<link rel="stylesheet" id="wnlt-css" href="http://wp.lab/wp-content/plugins/letter-template/css/wn-letter-template.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -9244,6 +9431,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/live-composer-page-builder/js/frontend/main.js?ver=1.3.9"></script>
|
||||
|
||||
|
||||
<!-- live-news-lite -->
|
||||
<link rel="stylesheet" id="daextlnl-general-css" href="http://wp.lab/wp-content/plugins/live-news-lite/public/assets/css/general.css?ver=1.02" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/live-news-lite/public/assets/js/inc/momentjs/moment.js?ver=1.02" id="daextlnl-momentjs-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/live-news-lite/public/assets/js/inc/mobile-detect-js/mobile-detect.min.js?ver=1.02" id="daextlnl-mobile-detect-js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/live-news-lite/public/assets/js/general.js?ver=1.02" id="daextlnl-general-js"></script>
|
||||
|
||||
|
||||
<!-- live-photos -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/live-photos//js/livephotos.js?ver=0.1"></script>
|
||||
|
||||
@@ -9392,6 +9586,13 @@
|
||||
<link rel="stylesheet" id="loginid_dw-main-css-css" href="http://wp.lab/wp-content/plugins/loginid-directweb/includes/main.css?ver=1.0.8" media="all">
|
||||
|
||||
|
||||
<!-- loginmojo -->
|
||||
<link rel="stylesheet" id="loginmojo-intel-tel-input-css" href="http://wp.lab/wp-content/plugins/loginmojo/assets/css/intlTelInput.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="loginmojo-subscribe-css" href="http://wp.lab/wp-content/plugins/loginmojo/assets/css/subscribe.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/loginmojo/assets/js/intel/intlTelInput.min.js?ver=1.0.0" id="loginmojo-intel-tel-input-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/loginmojo/assets/js/intel/intel-script.js?ver=1.0.0" id="loginmojo-intel-script-js"></script>
|
||||
|
||||
|
||||
<!-- logistia -->
|
||||
<link rel="stylesheet" id="logistia-css" href="http://wp.lab/wp-content/plugins/logistia/public/css/logistia-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/logistia/public/js/logistia-public.js?ver=1.0.0"></script>
|
||||
@@ -9552,6 +9753,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lz-accordion/js/active.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- lz-scroll-bar -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lz-scroll-bar/js/jquery.nicescroll.min.js?ver=1.0" id="lz-scrollbar-main-js"></script>
|
||||
|
||||
|
||||
<!-- mabel-shoppable-images-lite -->
|
||||
<link rel="stylesheet" id="mabel-shoppable-images-lite-css" href="http://wp.lab/wp-content/plugins/mabel-shoppable-images-lite/public/css/public.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mabel-shoppable-images-lite/public/js/public.min.js?ver=1.0.2"></script>
|
||||
@@ -10197,6 +10402,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/microslider/public/js/microslider-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- mighty-frequently-bought-together -->
|
||||
<script src="http://wp.lab/wp-content/plugins/mighty-frequently-bought-together/assets/js/product_view.js?ver=1.0.0" id="mighty_fbt_view_script-js"></script>
|
||||
|
||||
|
||||
<!-- mihanpanel-lite -->
|
||||
<link rel="stylesheet" id="mw_fontawesome_css-css" href="http://wp.lab/wp-content/plugins/mihanpanel-lite/css/fa/css/all.css?ver=8.5" media="all">
|
||||
<link rel="stylesheet" id="mw-profile-widget-css" href="http://wp.lab/wp-content/plugins/mihanpanel-lite/css/profile-widget.css?ver=8.5" media="all">
|
||||
@@ -10254,6 +10463,11 @@
|
||||
<link rel="stylesheet" id="mtr-user-css-css" href="http://wp.lab/wp-content/plugins/mins-to-read/public/css/mtr-user.css?ver=1.2.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- mint-faq -->
|
||||
<link rel="stylesheet" id="mintfaq_style-css" href="http://wp.lab/wp-content/plugins/mint-faq/assets/css/mint-faq.min.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/mint-faq/assets/mint-faq.min.js?ver=1.1.0" id="mintfaq_script-js"></script>
|
||||
|
||||
|
||||
<!-- mio-custom-resent-posts-widget -->
|
||||
<link rel="stylesheet" id="mwcrp-css" href="http://wp.lab/wp-content/plugins/mio-custom-resent-posts-widget/mio-custom-recent-posts.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -10332,6 +10546,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/modern-comparison-slider/public/js/modern-comparison-slider-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- modern-ctt -->
|
||||
<link rel="stylesheet" id="modern-ctt-block-css" href="http://wp.lab/wp-content/plugins/modern-ctt/build/style-index.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- modern-footnotes -->
|
||||
<link rel="stylesheet" id="modern_footnotes-css" href="http://wp.lab/wp-content/plugins/modern-footnotes/styles.min.css?ver=1.1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modern-footnotes/modern-footnotes.min.js?ver=1.1.2"></script>
|
||||
@@ -10367,6 +10585,11 @@
|
||||
<link rel="stylesheet" id="moex_style-css" href="http://wp.lab/wp-content/plugins/moexrate/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- mojito-shipping -->
|
||||
<link rel="stylesheet" id="mojito-shipping-css" href="http://wp.lab/wp-content/plugins/mojito-shipping/public/css/mojito-shipping-public.css?ver=1.3.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/mojito-shipping/public/js/mojito-shipping-public.js?ver=1.3.0" id="mojito-shipping-js"></script>
|
||||
|
||||
|
||||
<!-- mojoplug-slide-panel -->
|
||||
<link rel="stylesheet" id="mojo-sp-css" href="http://wp.lab/wp-content/plugins/mojoplug-slide-panel/public/css/mojo-sp-public.css?ver=1.1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="mojo-sp-style-css" href="http://wp.lab/wp-content/plugins/mojoplug-slide-panel/style.css?ver=1.1.1" type="text/css" media="all">
|
||||
@@ -10693,6 +10916,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/my-social-feed/public/assets/js/instagramFeed.custom.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- my-video-room -->
|
||||
<script src="http://wp.lab/wp-content/plugins/my-video-room/js/app.js?ver=1.5.0" id="myvideoroom-app-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/my-video-room/js/monitor.js?ver=1.5.0" id="myvideoroom-monitor-js"></script>
|
||||
|
||||
|
||||
<!-- myanmar-unipress -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/rabbit.js?ver=1.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/bunny.js?ver=1.1.0"></script>
|
||||
@@ -10776,6 +11004,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/natural-contact-form/js/natural-contact-form.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- navarak-code-highlighter -->
|
||||
<link rel="stylesheet" id="navarak-code-highlighter-css" href="http://wp.lab/wp-content/plugins/navarak-code-highlighter/public/css/navarak-code-highlighter-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="navarak-code-highlighter-highlighcss-css" href="http://wp.lab/wp-content/plugins/navarak-code-highlighter/public/css/highlightjs/darcula.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/navarak-code-highlighter/public/js/highlight.pack.js?ver=1.0.0" id="navarak-code-highlighter-highlighjs-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/navarak-code-highlighter/public/js/navarak-code-highlighter-public.js?ver=1.0.0" id="navarak-code-highlighter-js"></script>
|
||||
|
||||
|
||||
<!-- naver-map -->
|
||||
<link rel="stylesheet" id="naver_map-css" href="http://wp.lab/wp-content/plugins/naver-map/naver-map.css?ver=1.10" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/naver-map/naver-map.js?ver=1.10"></script>
|
||||
@@ -11147,6 +11382,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nuttifox-support/public/js/nuttifox-support-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- nuu-contact -->
|
||||
<link rel="stylesheet" id="nuu-contact-style-phone-css" href="http://wp.lab/wp-content/plugins/nuu-contact/assets/css/nuu-contact-phone-style.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- nvv-debug-lines -->
|
||||
<link rel="stylesheet" id="nvv_debug_lines_style-css" href="http://wp.lab/wp-content/plugins/nvv-debug-lines/css/nvv-debud-lines-styles.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/nvv-debug-lines/js/nvv-debud-lines-function.js?ver=1.0.1" id="nvv_debug_lines_functions_js-js"></script>
|
||||
|
||||
|
||||
<!-- nwa -->
|
||||
<link rel="stylesheet" id="nwa-css" href="http://wp.lab/wp-content/plugins/nwa/public/css/nwa-public.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nwa/public/js/nwa-public.js?ver=0.1.0"></script>
|
||||
@@ -11726,6 +11970,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pdf-generator-addon-for-elementor-page-builder/public/js/pdf-generator-addon-for-elementor-page-builder-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- pdf-generator-for-wp -->
|
||||
<link rel="stylesheet" id="pdf-generator-for-wp-css" href="http://wp.lab/wp-content/plugins/pdf-generator-for-wp/public/src/scss/pdf-generator-for-wp-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="pdf-generator-for-wpcommon-css" href="http://wp.lab/wp-content/plugins/pdf-generator-for-wp/common/src/scss/pdf-generator-for-wp-common.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/pdf-generator-for-wp/public/src/js/pdf-generator-for-wp-public.js?ver=1.0.0" id="pdf-generator-for-wppublic-js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pdf-generator-for-wp/common/src/js/pdf-generator-for-wp-common.js?ver=1.0.0" id="pdf-generator-for-wpcommon-js"></script>
|
||||
|
||||
|
||||
<!-- pdf-invoices-and-packing-slips-for-woocommerce -->
|
||||
<link rel="stylesheet" id="apifw-frontend-css" href="http://wp.lab/wp-content/plugins/pdf-invoices-and-packing-slips-for-woocommerce/assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
|
||||
@@ -11765,6 +12016,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/peepso-core/assets/js/posttabs.min.js?ver=1.9.1"></script>
|
||||
|
||||
|
||||
<!-- pepperi-open-catalog -->
|
||||
<script src="http://wp.lab/wp-content/plugins/pepperi-open-catalog/scripts/pepUtils.js?ver=1.0.1" id="pepOpenCatalogItemsDataAjax_Id-js"></script>
|
||||
|
||||
|
||||
<!-- perelandra-sermons -->
|
||||
<link rel="stylesheet" id="main-css" href="http://wp.lab/wp-content/plugins/perelandra-sermons/assets/dist/css/main.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/perelandra-sermons/vendor/fitVids/jquery.fitvids.js?ver=1.1.0"></script>
|
||||
@@ -12476,6 +12731,8 @@
|
||||
<!-- press-release -->
|
||||
<link rel="stylesheet" id="prwirepro-press_release_editor-css" href="http://wp.lab/wp-content/plugins/press-release/inc/frontend/css/prwirepro-press_release_editor-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release/inc/frontend/js/prwirepro-press_release_editor-frontend.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="pressreleaseeditor_main-css" href="http://wp.lab/wp-content/plugins/press-release/assets/css/pressreleaseeditor_main.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/press-release/assets/js/pressreleaseeditor_main.js?ver=1.0.0" id="pressreleaseeditor_main-js"></script>
|
||||
|
||||
|
||||
<!-- press-release-distribution -->
|
||||
@@ -12506,6 +12763,8 @@
|
||||
<!-- press-release-writer -->
|
||||
<link rel="stylesheet" id="prwirepro-press_release_writer-css" href="http://wp.lab/wp-content/plugins/press-release-writer/inc/frontend/css/prwirepro-press_release_writer-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release-writer/inc/frontend/js/prwirepro-press_release_writer-frontend.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="prwireprowriter_main-css" href="http://wp.lab/wp-content/plugins/press-release-writer/assets/css/prwireprowriter_main.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/press-release-writer/assets/js/prwireprowriter_main.js?ver=1.0.0" id="prwireprowriter_main-js"></script>
|
||||
|
||||
|
||||
<!-- press-search -->
|
||||
@@ -12619,6 +12878,13 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/product-availability-checker/public/js/pac-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- product-base-order-for-woocommerce -->
|
||||
<link rel="stylesheet" id="product-base-order-wc-style-css" href="http://wp.lab/wp-content/plugins/product-base-order-for-woocommerce/assets/css/product-base-order-wc-style.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="product-base-order-wc-data-table-css" href="http://wp.lab/wp-content/plugins/product-base-order-for-woocommerce/assets/vendors/data-table/jquery.dataTables.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/product-base-order-for-woocommerce/assets/js/product-base-order-wc.js?ver=1.0.0" id="product-base-order-wc-script-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/product-base-order-for-woocommerce/assets/vendors/data-table/jquery.dataTables.js?ver=1.0.0" id="product-base-order-wc-data-table-js"></script>
|
||||
|
||||
|
||||
<!-- product-customizer-light -->
|
||||
<link rel="stylesheet" id="k2cl-product-customizer-css" href="http://wp.lab/wp-content/plugins/product-customizer-light/public/css/customizer.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="k2cl-product-customizer_grid-css" href="http://wp.lab/wp-content/plugins/product-customizer-light/public/css/grid.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -12666,6 +12932,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/productdyno/public/js/productdyno-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- products-attachments-for-woocommerce -->
|
||||
<link rel="stylesheet" id="pafw-frontend-css-css" href="http://wp.lab/wp-content/plugins/products-attachments-for-woocommerce/assets/css/pafw_frontend_css.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- products-boxes-slider-for-woocommerce -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/products-boxes-slider-for-woocommerce/js/uikit.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/products-boxes-slider-for-woocommerce/js/uikit-icons.min.js?ver=1.0.0"></script>
|
||||
@@ -13277,6 +13547,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/refer-a-friend-for-woocommerce-by-wpgens/public/js/gens-raf-public.js?ver=1.1.4"></script>
|
||||
|
||||
|
||||
<!-- refpress -->
|
||||
<link rel="stylesheet" id="refpress-css" href="http://wp.lab/wp-content/plugins/refpress/public/css/refpress.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/refpress/public/js/refpress.min.js?ver=1.0.0" id="refpress-js"></script>
|
||||
|
||||
|
||||
<!-- reframer -->
|
||||
<link rel="stylesheet" id="reframer-public-css" href="http://wp.lab/wp-content/plugins/reframer/public/css/reframer-public.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/reframer/public/js/reframer-public.min.js?ver=1.0.2"></script>
|
||||
@@ -13350,6 +13625,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/reportcomments/reportcomments.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- repurpost -->
|
||||
<link rel="stylesheet" id="repurpost-css" href="http://wp.lab/wp-content/plugins/repurpost/public/css/repurpost-public.css?ver=1.0.4" media="all">
|
||||
|
||||
|
||||
<!-- reputate -->
|
||||
<link rel="stylesheet" id="reputate_wordpress-css" href="http://wp.lab/wp-content/plugins/reputate/public/css/reputate_wordpress-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/reputate/public/js/reputate_wordpress-public.js?ver=1.0.0"></script>
|
||||
@@ -13827,6 +14106,14 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/sales-booster-gd-for-woocommerce/public/js/fingerprint.js?ver=1.0.0" id="sales_booster_fingerprint_script-js"></script>
|
||||
|
||||
|
||||
<!-- sales-count-product-for-woocommerce -->
|
||||
<link rel="stylesheet" id="scpfw-frontend-css-css" href="http://wp.lab/wp-content/plugins/sales-count-product-for-woocommerce/assets/css/scpfw_frontend_css.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- sales-map-for-woocommerce -->
|
||||
<link rel="stylesheet" id="sales-map-woo-css" href="http://wp.lab/wp-content/plugins/sales-map-for-woocommerce/public/css/sales-map-woo-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- sales-notifications-by-social-oracle -->
|
||||
<link rel="stylesheet" id="social-oracle-css" href="http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/css/social-oracle-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/js/social-oracle-public.js?ver=1.0.1"></script>
|
||||
@@ -13865,6 +14152,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/samuweb-skim-blog/samuweb-skim-blog.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- sanremo-trails -->
|
||||
<link rel="stylesheet" id="sanremo-trails-css" href="http://wp.lab/wp-content/plugins/sanremo-trails/public/css/sanremo-trails-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="sanremo-css-css" href="http://wp.lab/wp-content/plugins/sanremo-trails/style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sanremo-trails/public/js/sanremo-trails-public.js?ver=1.0.0" id="sanremo-trails-js"></script>
|
||||
|
||||
|
||||
<!-- saoshyant-page-builder -->
|
||||
<script src="http://wp.lab/wp-content/plugins/saoshyant-page-builder/assets/js/script.js?ver=1.1"></script>
|
||||
<link rel="stylesheet" id="imagehover-css" href="http://wp.lab/wp-content/plugins/saoshyant-page-builder/assets/css/imagehover.min.css?ver=1.1" media="all">
|
||||
@@ -14236,6 +14529,11 @@
|
||||
<link rel="stylesheet" id="ssp-frontend-player-css" href="http://wp.lab/wp-content/plugins/seriously-simple-podcasting/assets/css/player.css?ver=1.19.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sermone-online-sermons-management -->
|
||||
<link rel="stylesheet" id="sermone-style-css" href="http://wp.lab/wp-content/plugins/sermone-online-sermons-management//dist/sermone.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sermone-online-sermons-management//dist/sermone.frontend.bundle.js?ver=1.0.0" id="sermone-script-js"></script>
|
||||
|
||||
|
||||
<!-- serp-rank -->
|
||||
<link rel="stylesheet" id="serp-rank-css" href="http://wp.lab/wp-content/plugins/serp-rank/public/css/serp-rank-public.css?ver=1.0.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/serp-rank/public/js/serp-rank-public.js?ver=1.0.3"></script>
|
||||
@@ -14356,6 +14654,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sheetpress/public/js/sheetpress-by-wpgeniuz-public.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- sheets-to-wp-table-live-sync -->
|
||||
<link rel="stylesheet" id="GSWPTS-frontend-css-css" href="http://wp.lab/wp-content/plugins/sheets-to-wp-table-live-sync/Assets/Public/Styles/frontend.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sheets-to-wp-table-live-sync/Assets/Public/Common/DataTables/Tables/js/jquery.dataTables.min.js?ver=1.0.1" id="GSWPTS-frontend-table-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sheets-to-wp-table-live-sync/Assets/Public/Common/DataTables/Tables/js/dataTables.semanticui.min.js?ver=1.0.1" id="GSWPTS-frontend-semantic-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sheets-to-wp-table-live-sync/Assets/Public/Scripts/Frontend/frontend.min.js?ver=1.0.1" id="GSWPTS-frontend-js-js"></script>
|
||||
|
||||
|
||||
<!-- shiftnav-responsive-mobile-menu -->
|
||||
<link rel="stylesheet" id="shiftnav-css" href="http://wp.lab/wp-content/plugins/shiftnav-responsive-mobile-menu/assets/css/shiftnav.min.css?ver=1.6.1.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="shiftnav-font-awesome-css" href="http://wp.lab/wp-content/plugins/shiftnav-responsive-mobile-menu/assets/css/fontawesome/css/font-awesome.min.css?ver=1.6.1.2" type="text/css" media="all">
|
||||
@@ -15429,10 +15734,22 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/some-maps/js/some-maps.js?ver=1.4"></script>
|
||||
|
||||
|
||||
<!-- sopro -->
|
||||
<link rel="stylesheet" id="sopro-css" href="http://wp.lab/wp-content/plugins/sopro/public/css/sopro-plugin-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sopro/public/js/sopro-plugin-public.js?ver=1.0.0" id="sopro-js"></script>
|
||||
|
||||
|
||||
<!-- source-affix -->
|
||||
<link rel="stylesheet" id="source-affix-plugin-styles-css" href="http://wp.lab/wp-content/plugins/source-affix/css/public.css?ver=1.5.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sp-blog-designer -->
|
||||
<link rel="stylesheet" id="spbd-front-style-css" href="http://wp.lab/wp-content/plugins/sp-blog-designer/assets/css/sp-blogs.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="slick-style-css" href="http://wp.lab/wp-content/plugins/sp-blog-designer/assets/css/slick.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sp-blog-designer/assets/js/slick.min.js?ver=1.0.0" id="sp-slick-carousel-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sp-blog-designer/assets/js/sp-frontend.min.js?ver=1.0.0" id="spbd-frontend-js"></script>
|
||||
|
||||
|
||||
<!-- sp-client-document-manager -->
|
||||
<link rel="stylesheet" id="cdm-style-css" href="http://wp.lab/wp-content/plugins/sp-client-document-manager/style.css?ver=2.8.8" type="text/css" media="all">
|
||||
|
||||
@@ -15708,6 +16025,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/sticky-block/dist/sticky-block.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- sticky-header-on-scroll -->
|
||||
<link rel="stylesheet" id="sticky-header-on-scroll-css" href="http://wp.lab/wp-content/plugins/sticky-header-on-scroll/public/css/sticky-header-on-scroll-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sticky-header-on-scroll/public/js/sticky-header-on-scroll-public.js?ver=1.0" id="sticky-header-on-scroll-js"></script>
|
||||
|
||||
|
||||
<!-- sticky-menu-or-anything-on-scroll -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-menu-or-anything-on-scroll/assets/js/jq-sticky-anything.min.js?ver=2.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-menu-or-anything-on-scroll/assets/js/stickThis.js?ver=2.1.1"></script>
|
||||
@@ -15976,6 +16298,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/survey-popup/public/js/survey-popup-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- surveylock-me -->
|
||||
<link rel="stylesheet" id="slm-main-public-css" href="http://wp.lab/wp-content/plugins/surveylock-me/assets/css/main.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/surveylock-me/assets/js/dist/main.min.js?ver=1.0.0" id="slm-main-public-js"></script>
|
||||
|
||||
|
||||
<!-- suspended-lists-for-sportspress -->
|
||||
<link rel="stylesheet" id="suspended-lists-for-sportspress-front-styles-css" href="http://wp.lab/wp-content/plugins/suspended-lists-for-sportspress/assets/css/front/styles.css?ver=0.0.1" type="text/css" media="all">
|
||||
|
||||
@@ -16108,6 +16435,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/tablesome/assets/bundles/public.bundle.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- tabs-with-posts -->
|
||||
<link rel="stylesheet" id="twrp-style-css" href="http://wp.lab/wp-content/plugins/tabs-with-posts/assets/frontend/style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tabs-with-posts/assets/frontend/script.js?ver=1.0.0" id="twrp-script-js"></script>
|
||||
|
||||
|
||||
<!-- tabulate -->
|
||||
<link rel="stylesheet" id="tabulate-timepicker-css" href="http://wp.lab/wp-content/plugins/tabulate/assets/jquery-ui-timepicker-addon.css?ver=2.10.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="tabulate-leaflet-css" href="http://wp.lab/wp-content/plugins/tabulate/assets/leaflet/css/leaflet.css?ver=2.10.1" type="text/css" media="all">
|
||||
@@ -16229,6 +16561,11 @@
|
||||
<link rel="stylesheet" id="taskbreaker-stylesheet-css" href="http://wp.lab/wp-content/plugins/taskbreaker-project-management/assets//css/style.css?ver=1.4.12" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- tatum -->
|
||||
<link rel="stylesheet" id="tatum-css" href="http://wp.lab/wp-content/plugins/tatum/public/css/tatum-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tatum/public/js/tatum-public.js?ver=1.0.0" id="tatum-js"></script>
|
||||
|
||||
|
||||
<!-- taugun -->
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/taugun/assets/css/font-awesome.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="esf-single-event-css" href="http://wp.lab/wp-content/plugins/taugun/assets/css/frontend/single-event.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -16420,6 +16757,10 @@
|
||||
<link rel="stylesheet" id="rt-tpg-css-css" href="http://wp.lab/wp-content/plugins/the-post-grid/assets/css/thepostgrid.css?ver=2.2.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- the-travel-button -->
|
||||
<link rel="stylesheet" id="the-travel-button-css-public-css" href="http://wp.lab/wp-content/plugins/the-travel-button/public/css/wth-travel-button-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- the-tweet-button -->
|
||||
<link rel="stylesheet" id="tweet-button-css" href="http://wp.lab/wp-content/plugins/the-tweet-button/public/css/tweet-button-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/the-tweet-button/public/js/twitter-widgets.js?ver=1.0.0"></script>
|
||||
@@ -16860,6 +17201,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/truendo/public/js/truendo-public.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- trust-reviews -->
|
||||
<link rel="stylesheet" id="trp-css-css" href="http://wp.lab/wp-content/plugins/trust-reviews/assets/css/trp.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/trust-reviews/assets/js/wpac-time.js?ver=1.0" id="trp-time-js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/trust-reviews/assets/js/blazy.min.js?ver=1.0" id="blazy-js-js"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/trust-reviews/assets/js/trp.js?ver=1.0" id="trp-js-js"></script>
|
||||
|
||||
|
||||
<!-- trusted-order-notifications -->
|
||||
<link rel="stylesheet" id="vnf-style-css" href="http://wp.lab/wp-content/plugins/trusted-order-notifications/assets/css/vnfaster-order.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/trusted-order-notifications/assets/js/vnfaster-order.min.js?ver=2.0.0"></script>
|
||||
@@ -17861,6 +18209,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/voimada-rest-api/public/js/voimadarestapi-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- vote-smiley-reaction -->
|
||||
<link rel="stylesheet" id="rahularyan_vsr-frontend-style-css" href="http://wp.lab/wp-content/plugins/vote-smiley-reaction/assets/styles/frontend.css?ver=0.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/vote-smiley-reaction/assets/js/frontend.js?ver=0.1.0" id="rahularyan_vsr-frontend-script-js"></script>
|
||||
|
||||
|
||||
<!-- voting-for-a-photo -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voting-for-a-photo/assets/frontend/js/voting-for-photo.js?ver=1.1"></script>
|
||||
|
||||
@@ -18993,6 +19346,9 @@
|
||||
<link rel="stylesheet" id="wdcl-slick-theme-css" href="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/vendor/slick/slick-theme.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/vendor/slick/slick.min.js?ver=1.0.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/js/main.js?ver=1.0.1"></script>
|
||||
<link rel="stylesheet" id="wdcl-core-css" href="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/css/core.min.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="wdcl-slick-css" href="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/css/slick.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/js/slick.min.js?ver=1.0.1" id="wdcl-slick-js"></script>
|
||||
|
||||
|
||||
<!-- wowpi-guild -->
|
||||
|
||||
1906
spec/fixtures/dynamic_finders/plugin_version/refpress/translation_file/languages/refpress.pot
vendored
Normal file
1906
spec/fixtures/dynamic_finders/plugin_version/refpress/translation_file/languages/refpress.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,205 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SendCloud | Smart Shipping Service 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sendcloud-"
|
||||
"shipping\n"
|
||||
"POT-Creation-Date: 2021-02-01T10:06:51+01:00\n"
|
||||
"PO-Revision-Date: 2021-02-02 12:56+0100\n"
|
||||
"Last-Translator: admin <test@sendcloud.sc>\n"
|
||||
"Language-Team: German\n"
|
||||
"Language: de_DE\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-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
||||
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
||||
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
||||
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
||||
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
||||
"X-Loco-Target-Locale: de_DE\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SendCloud | Smart Shipping Service"
|
||||
msgstr "SendCloud | Smart Shipping Service"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://sendcloud.sc"
|
||||
msgstr "http://sendcloud.sc"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "SendCloud plugin."
|
||||
msgstr "SendCloud Plugin."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "SendCloud B.V."
|
||||
msgstr "SendCloud B.V."
|
||||
|
||||
#: includes/Checkout/Api/class-checkout-api-service.php:76
|
||||
msgid "Invalid checkout payload."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Checkout/Api/class-checkout-api-service.php:81
|
||||
msgid "Configuration updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Checkout/Api/class-checkout-api-service.php:100
|
||||
#: includes/Integration/Api/class-integration-api-service.php:73
|
||||
msgid "Failed to delete checkout configuration."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Checkout/Api/class-checkout-api-service.php:105
|
||||
#: includes/Integration/Api/class-integration-api-service.php:78
|
||||
msgid "Configuration deleted"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Checkout/Shipping/class-abstract-free-shipping-shipping-method.php:103
|
||||
msgid "Enable Free Shipping"
|
||||
msgstr "Kostenloses Versenden wurde hinzugefügt"
|
||||
|
||||
#: includes/Checkout/Shipping/class-abstract-free-shipping-shipping-method.php:108
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: includes/Checkout/Shipping/class-abstract-free-shipping-shipping-method.php:109
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: includes/Checkout/Shipping/class-abstract-free-shipping-shipping-method.php:113
|
||||
msgid "Minimum Order Amount for Free Shipping"
|
||||
msgstr "Minimale Bestellmenge für kostenloses Versenden"
|
||||
|
||||
#: includes/Checkout/Shipping/class-abstract-free-shipping-shipping-method.php:116
|
||||
msgid "If enabled, users will need to spend this amount to get free shipping."
|
||||
msgstr ""
|
||||
"Sobald dies aktiviert wurde, müssen Kunden für diesen Betrag einkaufen um "
|
||||
"den kostenlosen Versand zu nutzen."
|
||||
|
||||
#: includes/Checkout/Shipping/NominatedDay/class-checkout-handler.php:77
|
||||
msgid "Delivered by {carrier}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Checkout/Shipping/NominatedDay/class-checkout-handler.php:116
|
||||
msgid "Please choose a delivery date."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Checkout/Shipping/NominatedDay/class-nominated-day-shipping-method.php:26
|
||||
msgid "Nominated Day Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Checkout/Shipping/NominatedDay/class-nominated-day-shipping-method.php:27
|
||||
msgid ""
|
||||
"Nominated Day Delivery lets the customer select a delivery day in the "
|
||||
"checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-sc-settings-sendcloud.php:28
|
||||
msgid "SendCloud"
|
||||
msgstr "SendCloud"
|
||||
|
||||
#: includes/ServicePoint/Api/class-sc-api-service-point.php:59
|
||||
msgid "No data specified to enable the plugin"
|
||||
msgstr "Keine Daten spezifiziert das Plugin zu aktivieren"
|
||||
|
||||
#: includes/ServicePoint/Api/class-sc-api-service-point.php:63
|
||||
msgid "Plugin enabled"
|
||||
msgstr "Plugin aktiviert"
|
||||
|
||||
#: includes/ServicePoint/Api/class-sc-api-service-point.php:75
|
||||
msgid "Plugin disabled"
|
||||
msgstr "Plugin deaktiviert"
|
||||
|
||||
#: includes/ServicePoint/class-checkout-handler.php:69
|
||||
msgid "Select Service Point"
|
||||
msgstr "Wählen Sie einen Service Point"
|
||||
|
||||
#: includes/ServicePoint/class-checkout-handler.php:103
|
||||
msgid "Please choose a service point."
|
||||
msgstr "Bitte wählen Sie einen Paketshop"
|
||||
|
||||
#: includes/ServicePoint/Shipping/class-sc-service-point-shipping-method.php:27
|
||||
msgid "Service Point Delivery"
|
||||
msgstr "Paketshop Zustellung"
|
||||
|
||||
#: includes/ServicePoint/Shipping/class-sc-service-point-shipping-method.php:28
|
||||
msgid ""
|
||||
"Service Point Delivery lets the customer select a servicepoint in the "
|
||||
"checkout."
|
||||
msgstr ""
|
||||
"Paketshop Zustellung ermöglicht dem Kunden zu wählen wo sie Ihre Pakete "
|
||||
"abgeben."
|
||||
|
||||
#: includes/ServicePoint/Shipping/class-sc-service-point-shipping-method.php:58
|
||||
msgid "Carrier Selection"
|
||||
msgstr "Auswahl der Versanddienstleister"
|
||||
|
||||
#: includes/ServicePoint/Shipping/class-sc-service-point-shipping-method.php:62
|
||||
msgid ""
|
||||
"A comma separated list of your SendCloud enabled carrier codes (e.g. ups, "
|
||||
"dpd, dhl), an empty value here will display all your SendCloud enabled "
|
||||
"carriers"
|
||||
msgstr ""
|
||||
" Eine Liste aller aktivierten Versanddienstleister, getrennt durch Kommas (z."
|
||||
"B. ups, dpd, dhl). Ohne Eingabe werden alle aktivierten SendCloud "
|
||||
"Versanddienstleister angezeigt."
|
||||
|
||||
#: resources/views/checkout/delivery-date-admin-widget.php:12
|
||||
#: resources/views/checkout/delivery-date-thank-you-widget.php:14
|
||||
#: resources/views/mail/delivery-date-mail-widget.php:12
|
||||
msgid "Expected delivery date"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/checkout/delivery-date-admin-widget.php:15
|
||||
msgid "You can't change the selected delivery date"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/checkout/delivery-date-admin-widget.php:16
|
||||
#: resources/views/checkout/extend-order-details.php:13
|
||||
msgid "Non editable"
|
||||
msgstr "Nicht editierbar"
|
||||
|
||||
#: resources/views/checkout/extend-order-details.php:9
|
||||
#: resources/views/checkout/service-point-address-thank-you-widget.php:11
|
||||
#: resources/views/mail/extend-order-created-mail.php:10
|
||||
msgid "Service Point Address"
|
||||
msgstr "Paketshop Adresse"
|
||||
|
||||
#: resources/views/checkout/extend-order-details.php:12
|
||||
msgid "You can't change the selected Service Point"
|
||||
msgstr "Sie können den ausgewählten Service Point ändern"
|
||||
|
||||
#: resources/views/plugin/deactivation-notice.php:2
|
||||
msgid ""
|
||||
"SendCloud | Smart Shipping Service plugin deactivated itself because "
|
||||
"WooCommerce is not available."
|
||||
msgstr ""
|
||||
"SendCloud | Smart Shipping Service plugin ist deaktiviert, da WooCommerce "
|
||||
"gerade nicht verfügbar ist."
|
||||
|
||||
#: resources/views/wc-settings/sendcloud-page.php:16
|
||||
msgid "Connect with SendCloud"
|
||||
msgstr "Verbinde mit SendCloud."
|
||||
|
||||
#: resources/views/wc-settings/sendcloud-page.php:18
|
||||
msgid "Allows you to see your WooCommerce orders in the SendCloud Panel."
|
||||
msgstr ""
|
||||
"Erlaut es dir deine WooCommerce Bestellungen im SendCloud Panel zu sehen."
|
||||
|
||||
#: resources/views/wc-settings/sendcloud-page.php:22
|
||||
msgid "You need to enable permalinks. On Settings -> Permalinks."
|
||||
msgstr ""
|
||||
"Bitte schalten Sie \"Permalinks\" frei. Diese finden Sie unter Einstellungen "
|
||||
"-> Permalinks"
|
||||
|
||||
#: resources/views/wc-settings/sendcloud-page.php:28
|
||||
msgid "Go to SendCloud"
|
||||
msgstr "Gehe zu SendCloud"
|
||||
|
||||
#: resources/views/wc-settings/sendcloud-page.php:30
|
||||
msgid "Open the SendCloud panel and start shipping."
|
||||
msgstr "Öffne das SendCloud Panel und starte mit dem Versenden."
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "sermone",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "webpack -w"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/plugin-transform-runtime": "^7.12.10",
|
||||
"@babel/preset-env": "^7.12.10",
|
||||
"babel-loader": "^8.2.2",
|
||||
"css-loader": "^5.0.1",
|
||||
"es6-promise-promise": "^1.0.0",
|
||||
"file-loader": "^6.2.0",
|
||||
"plyr": "^3.6.4",
|
||||
"sass": "^1.30.0",
|
||||
"sass-loader": "^10.1.0",
|
||||
"style-loader": "^2.0.0",
|
||||
"tippy.js": "^6.3.0",
|
||||
"webpack": "^5.10.2",
|
||||
"webpack-cli": "^4.2.0"
|
||||
},
|
||||
"browserslist": [
|
||||
"defaults"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,413 @@
|
||||
# Copyright (C) 2021 Sergiy Dzysyak
|
||||
# This file is distributed under the same license as the Suggestion Toolkit plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Suggestion Toolkit 4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/suggestion-toolkit\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-11T01:25:52+03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: suggestion-toolkit\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: index.php:155
|
||||
#: widgets/elementor-suggestion-toolkit.php:35
|
||||
#: js/blocks.js:38
|
||||
msgid "Suggestion Toolkit"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://erlycoder.com/product/relevant-related-posts/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This WordPress plugin allows to display recomendations of blog posts, WooCommerce products, YouTube videos, eBay products in various layout styles albost any place of WordPress website (some features are enabled via extensions). It includes WordPress widget, shortcode, Gutenberg block and Elementor widget."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sergiy Dzysyak"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://erlycoder.com/"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:66
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:67
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:68
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:72
|
||||
msgid "Thumbs row"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:73
|
||||
msgid "Thumbs row with scroll"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:74
|
||||
msgid "Thumbs column"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:75
|
||||
msgid "Text only row"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:76
|
||||
msgid "Text only column"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:80
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:81
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:82
|
||||
msgid "Alphabetical Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:83
|
||||
msgid "Alphabetical Descending"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:84
|
||||
msgid "Publish Date Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:85
|
||||
msgid "Publish Date Descending"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:89
|
||||
#: widgets/elementor-suggestion-toolkit.php:62
|
||||
#: js/blocks.js:257
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:90
|
||||
msgid "First tag"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:91
|
||||
msgid "Tags 1,2,3"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:97
|
||||
msgid "Suggestion Toolkit - Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:138
|
||||
msgid "Suggestion Toolkit Settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:138
|
||||
msgid "Relevant Related"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:139
|
||||
msgid "Basic Settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:139
|
||||
#: index.php:285
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:168
|
||||
msgid "Post types available for suggestion blocks"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:172
|
||||
msgid "You should select post types that will be available for suggestion blocks creation from post types regirterred on your website"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:174
|
||||
msgid "Upgrade to pro"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:174
|
||||
msgid "to enable other than blog 'post' type susggestions, like Woocommerce products or else "
|
||||
msgstr ""
|
||||
|
||||
#: index.php:175
|
||||
msgid "Advanced version also includes additional templates and prioritized support and updates"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:183
|
||||
msgid "Types of the posts to suggest"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:191
|
||||
msgid "If separate template is not available, than default post template will be used"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:194
|
||||
msgid "Append suggestions from category"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:198
|
||||
msgid "If there is not enough suggestion generated by the keywords, posts from the same category will be appended to the suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:201
|
||||
msgid "Append by random"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:205
|
||||
msgid "If there is not enough suggestion generated by the keywords, random posts will be appended to the suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:209
|
||||
msgid "Layout & Styles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:213
|
||||
msgid "Minimal thumb size"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:221
|
||||
msgid "Fit image into thumbnail area"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:224
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:225
|
||||
msgid "Contain"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:231
|
||||
msgid "Suggestion title font size"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:238
|
||||
msgid "Number of words in titles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:242
|
||||
msgid "Number of words that will be followed with ellipsis instead of long titles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:246
|
||||
msgid "Cache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:250
|
||||
msgid "Cache type"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:253
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:254
|
||||
msgid "Memcache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:255
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:259
|
||||
msgid "Memcache works faster, however files may same some memory on the server. Files will work better with longer expiration times."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:262
|
||||
msgid "Cache expiration time in seconds"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:264
|
||||
msgid "Longer expiration time will save server resources"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:284
|
||||
#: index.php:305
|
||||
msgid "Extensions"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:304
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:304
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:304
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:306
|
||||
msgid "Write a review"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:311
|
||||
msgid "Confirm compatibility"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:54
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:62
|
||||
#: js/blocks.js:257
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:65
|
||||
msgid "Ex: We suggest:"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:72
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:75
|
||||
#: widgets/wp-suggestion-toolkit.php:131
|
||||
msgid "Ex: test"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:84
|
||||
#: js/blocks.js:275
|
||||
msgid "Layout & styles"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:92
|
||||
#: js/blocks.js:277
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:102
|
||||
#: js/blocks.js:285
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:112
|
||||
#: js/blocks.js:297
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:116
|
||||
#: widgets/wp-suggestion-toolkit.php:163
|
||||
msgid "Ex: 100%"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:123
|
||||
#: js/blocks.js:307
|
||||
msgid "Align"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:133
|
||||
#: js/blocks.js:314
|
||||
msgid "Show post date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:135
|
||||
#: widgets/elementor-suggestion-toolkit.php:147
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:136
|
||||
#: widgets/elementor-suggestion-toolkit.php:148
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:145
|
||||
#: js/blocks.js:326
|
||||
msgid "Show `more` button"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:161
|
||||
#: js/blocks.js:338
|
||||
msgid "Post types"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:184
|
||||
msgid "Number of posts"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:187
|
||||
msgid "Ex: 3"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:205
|
||||
msgid "Ad to display"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:222
|
||||
#: widgets/wp-suggestion-toolkit.php:132
|
||||
#: widgets/wp-suggestion-toolkit.php:207
|
||||
#: js/blocks.js:213
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:225
|
||||
#: widgets/wp-suggestion-toolkit.php:207
|
||||
#: js/blocks.js:223
|
||||
msgid "plugin to enable extended post types including products"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:237
|
||||
#: js/blocks.js:341
|
||||
msgid "IDs include/exclude"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:245
|
||||
#: js/blocks.js:343
|
||||
msgid "Include post IDs"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:248
|
||||
#: widgets/elementor-suggestion-toolkit.php:258
|
||||
msgid "Ex: 1, 5, 12"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/elementor-suggestion-toolkit.php:255
|
||||
#: js/blocks.js:352
|
||||
msgid "Exclude post IDs"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/wp-suggestion-toolkit.php:127
|
||||
msgid "Ex: Related"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/wp-suggestion-toolkit.php:132
|
||||
msgid "plugin to enable suggestions by title and keywords of current post"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/wp-suggestion-toolkit.php:214
|
||||
#: widgets/wp-suggestion-toolkit.php:217
|
||||
msgid "Ex: 3, 12, 33"
|
||||
msgstr ""
|
||||
|
||||
#: js/blocks.js:39
|
||||
msgid "Related postst generated via configured search engine on your WordPress installation"
|
||||
msgstr ""
|
||||
|
||||
#: js/blocks.js:136
|
||||
msgid "Number of suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: js/blocks.js:255
|
||||
msgid "Basic settings"
|
||||
msgstr ""
|
||||
|
||||
#: js/blocks.js:266
|
||||
msgid "Search keyword"
|
||||
msgstr ""
|
||||
48
spec/fixtures/dynamic_finders/plugin_version/support-monitor/composer_file/package.json
vendored
Normal file
48
spec/fixtures/dynamic_finders/plugin_version/support-monitor/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"name": "support-monitor",
|
||||
"version": "1.0.1",
|
||||
"description": "A WordPress support monitoring plugin",
|
||||
"author": "Tareq Hasan <tareq@wedevs.com>",
|
||||
"license": "GPLv2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "webpack --watch --progress --hide-modules",
|
||||
"dev-build": "webpack -d --mode development",
|
||||
"build": "webpack -p --mode production"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/api-fetch": "^3.23.1",
|
||||
"axios": "^0.21.1",
|
||||
"vue": "^2.6.11",
|
||||
"vue-content-loader": "^0.2.3",
|
||||
"vue-router": "^3.4.3",
|
||||
"vue-toastr": "^2.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.14.0",
|
||||
"@babel/preset-env": "^7.14.1",
|
||||
"babel-loader": "^8.1.0",
|
||||
"browser-sync": "^2.26.12",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"css-loader": "^3.6.0",
|
||||
"file-loader": "^4.3.0",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"html-webpack-template": "^6.2.0",
|
||||
"less": "^3.12.2",
|
||||
"less-loader": "^5.0.0",
|
||||
"mini-css-extract-plugin": "^0.8.2",
|
||||
"node-sass": "^4.14.1",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
"postcss-loader": "^4.0.1",
|
||||
"precss": "^4.0.0",
|
||||
"sass-loader": "^9.0.3",
|
||||
"style-loader": "^1.2.1",
|
||||
"tailwindcss": "^1.8.10",
|
||||
"terser-webpack-plugin": "^4.1.0",
|
||||
"url-loader": "^2.3.0",
|
||||
"vue-loader": "^15.9.3",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"webpack": "^4.44.1",
|
||||
"webpack-cli": "^3.3.12"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,486 @@
|
||||
# Copyright (C) 2021 We Travel Hub, S.L.
|
||||
# This file is distributed under the same license as the The Travel Button plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: The Travel Button 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/the-travel-button\n"
|
||||
"Last-Translator: We Travel Hub <it@wetravelhub.com>\n"
|
||||
"Language-Team: EN <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-14T16:50:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: the-travel-button\n"
|
||||
"Language: en\n"
|
||||
|
||||
# language ISO 639-1 for wetravelhub urls
|
||||
msgid "en"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/partials/about_wth.php:27 admin/partials/main.php:63
|
||||
msgid "The Travel Button"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins//the-travel-button/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The Travel Button plugin for WordPress will allow you to easily customize and manage different travel buttons to use in your posts. With the travel button, you will be able to monetize your travel content effectively while helping your visitors book any tourism and travel-related services."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "We Travel Hub"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.wetravelhub.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/about_wth.php:31
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/about_wth.php:32
|
||||
msgid "Copyright"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/about_wth.php:33
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/about_wth.php:34
|
||||
msgid "Release notes"
|
||||
msgstr ""
|
||||
|
||||
msgid "With our plugin for WordPress, you can easily customize and manage different travel buttons to use in your posts."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/about_wth.php:67
|
||||
msgid "The travel button helps you monetize your travel content effectively while giving your visitors access to a global tourism and travel-related services search engine. It is an elegant advertising solution, fully adaptable to your website's design, with customizable style and placement."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/about_wth.php:68
|
||||
msgid "It saves visitors time when, inspired by the content you have published about a destination, they want to find useful information to plan a trip. With a single click and without leaving your website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:45 admin/partials/new_button.php:43
|
||||
#: admin/partials/styles.php:44
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:70
|
||||
msgid "buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:71 admin/partials/styles.php:61
|
||||
msgid "Page %1$d of %2$d"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:74 admin/partials/styles.php:64
|
||||
msgid "search by id or name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:80 admin/partials/styles.php:70
|
||||
msgid "Id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:81 admin/partials/new_button.php:70
|
||||
#: admin/partials/new_style.php:51 admin/partials/styles.php:71
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:82
|
||||
msgid "shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:83 admin/partials/new_button.php:81
|
||||
msgid "Website code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:84 admin/partials/styles.php:72
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:85 admin/partials/styles.php:74
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:95
|
||||
msgid "Not configured"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:98
|
||||
msgid "Configured"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:104 admin/partials/styles.php:88
|
||||
msgid "Clone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:105 admin/partials/styles.php:89
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:108 admin/partials/buttons.php:140
|
||||
#: admin/partials/styles.php:92 admin/partials/styles.php:125
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:119 admin/partials/styles.php:104
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:125 admin/partials/styles.php:110
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:141 admin/partials/new_button.php:117
|
||||
#: admin/partials/new_style.php:126 admin/partials/styles.php:126
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/buttons.php:144 admin/partials/styles.php:129
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
msgid "On button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
msgid "This operation cannot be undone. Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
msgid "No website codes found"
|
||||
msgstr ""
|
||||
|
||||
msgid "Separate multiple classes with spaces."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/load-db-records.php:14
|
||||
msgid "created"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/load-db-records.php:16
|
||||
msgid "updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/load-db-records.php:24
|
||||
msgid "this item cannot be deleted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/load-db-records.php:26
|
||||
msgid "deleted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:30
|
||||
msgid "Starting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:36
|
||||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:37
|
||||
msgid "Styles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:41
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:66
|
||||
msgid "New button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:69
|
||||
msgid "New style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:87
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:90
|
||||
msgid "About this plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:92
|
||||
msgid "Documentation & FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:93
|
||||
msgid "Tutorials"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:94
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/main.php:95
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:33
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:59 admin/partials/new_style.php:40
|
||||
#: admin/partials/preferences.php:55
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:60
|
||||
msgid "Add destinations"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:61
|
||||
msgid "Direct links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:72 admin/partials/new_style.php:53
|
||||
msgid "enter a short descriptive name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:75 admin/partials/new_style.php:56
|
||||
msgid "Additional information"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:77 admin/partials/new_style.php:58
|
||||
msgid "enter additional information"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:84 admin/partials/preferences.php:91
|
||||
msgid "Default website code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:90 admin/partials/new_style.php:29
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_button.php:118 admin/partials/new_style.php:127
|
||||
#: admin/partials/preferences.php:140
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:41
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:42
|
||||
msgid "Predefined CSS classes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:61
|
||||
msgid "Additional CSS classes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:72
|
||||
msgid "You can use these predefined CSS classes as additional CSS in your button's style configuration."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:76
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:77
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:83
|
||||
msgid "Centers the button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:87
|
||||
msgid "Floats the button to the left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:91
|
||||
msgid "Floats the button to the right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:95
|
||||
msgid "Adds 20px top margin, if it is preceded by another element, and always 20px bottom margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:99
|
||||
msgid "Adds 20px top margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:103
|
||||
msgid "Adds 20px bottom margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:107
|
||||
msgid "Adds 20px left margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/new_style.php:111
|
||||
msgid "Adds 20px right margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:30
|
||||
msgid "stored"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:34
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:35
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:36
|
||||
msgid "Contributor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:41
|
||||
msgid "Allow Travel Buttons to be displayed and added to pages and posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:42
|
||||
msgid "Allow Travel Buttons to be created and edited"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:43
|
||||
msgid "Allow website code to be changed when creating or editing Travel Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:44
|
||||
msgid "Allow delete Travel Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:45
|
||||
msgid "Allow create and edit styles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:46
|
||||
msgid "Allow delete styles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:56
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:66
|
||||
msgid "Please, load your We Travel Hub website codes."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:74
|
||||
msgid "Please, configure your default website code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:66
|
||||
msgid "We need to know your website code to keep track of transactions made by your visitors through the travel button and make sure you earn your affiliate commissions."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:67 admin/partials/preferences.php:75
|
||||
msgid "Manage your account at We Travel Hub"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:79
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:83
|
||||
msgid "Enter your We Travel Hub account API Key and load your website codes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:86
|
||||
msgid "Load website codes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:94
|
||||
msgid "Website code is not configured"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:100
|
||||
msgid "Use default website code on all Travel Buttons, otherwise the website code defined on each Travel button will be used"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:103
|
||||
msgid "Hide Travel Buttons if the website code is not configured"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:106
|
||||
msgid "Items per page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/preferences.php:119
|
||||
msgid "Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/starting.php:17
|
||||
msgid "let's get started! set up your travel button"
|
||||
msgstr ""
|
||||
|
||||
msgid "do you like it in this style?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/starting.php:19
|
||||
msgid "find your style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/starting.php:22
|
||||
msgid "you are almost done!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/starting.php:24
|
||||
msgid "Create your first Travel Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/starting.php:27
|
||||
msgid "you are not allowed to create Travel Button styles<br/>Please, contact the admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/starting.php:30
|
||||
msgid "you are not allowed to create Travel Buttons<br/>Please, contact the admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/styles.php:60
|
||||
msgid "styles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wth-travel-button.php:228
|
||||
#: includes/class-wth-travel-button.php:233
|
||||
msgid "Oppps, something went wrong!"
|
||||
msgstr ""
|
||||
|
||||
msgid "You can use these shortcodes to generate URLs for this Travel Button and use them with your own content as custom links, images, banners... for example:"
|
||||
msgstr ""
|
||||
|
||||
msgid "All tourism services"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accommodation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgid "Restaurants"
|
||||
msgstr ""
|
||||
|
||||
msgid "Activities"
|
||||
msgstr ""
|
||||
|
||||
msgid "Intuitive editor to customize your travel buttons"
|
||||
msgstr ""
|
||||
|
||||
msgid "Link travel buttons to locations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add travel buttons adapted to your website's style"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't waste time! Change travel button styles without re-publishing your posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Full screen mode editor"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,131 @@
|
||||
# Copyright (C) 2021 Tidy Head Tag
|
||||
# This file is distributed under the same license as the Tidy Head Tag package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Tidy Head Tag 1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tidy-head-tag\n"
|
||||
"POT-Creation-Date: 2021-05-01 06:48:39+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"
|
||||
|
||||
#. #-#-#-#-# tidy-head-tag.pot (Tidy Head Tag 1.2.0) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: includes/class-tidy-head-tag-admin.php:36
|
||||
msgid "Tidy Head Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:53
|
||||
msgid "Options saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:58
|
||||
msgid "Tidy Head Tag Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:59
|
||||
msgid "Check the tags you want to remove."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:64
|
||||
msgid "meta generator tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:65
|
||||
msgid "Display the version of WordPress you are using."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:70
|
||||
msgid "link EditURI tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:71
|
||||
msgid "Display the link to the Really Simple Discovery (RSD) service endpoint."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:76
|
||||
msgid "link wlwmanifest tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:77
|
||||
msgid ""
|
||||
"Display the tags required when posting to WordPress using Windows Live "
|
||||
"Writer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:82
|
||||
msgid "link shortlink tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:83
|
||||
msgid "Display short link for each WordPress page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:88
|
||||
msgid "Emoji scripts and styles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:89
|
||||
msgid "Display CSS and JavaScript required when using emoji."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:94
|
||||
msgid "link RSS feed tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:95
|
||||
msgid "Display the URL of the RSS feed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:100
|
||||
msgid "link comment feed tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:101
|
||||
msgid "Display the links to the extra feeds such as category feeds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:106
|
||||
msgid "link REST API tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:107
|
||||
msgid "Display the tags required when using the REST API."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:112
|
||||
msgid "link oEmbed tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:113
|
||||
msgid ""
|
||||
"Display the tags required when you want to embed external content such as "
|
||||
"YouTube or Twitter."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:118
|
||||
msgid "link rel=prev/next tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tidy-head-tag-admin.php:119
|
||||
msgid "Display the post relational links to Previous and Next."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/glatchdesign/Tidy-Head-Tag"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Organize the head tags that WordPress automatically outputs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Glatch"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://glatchdesign.com"
|
||||
msgstr ""
|
||||
251
spec/fixtures/dynamic_finders/plugin_version/tiles/translation_file/languages/tiles.pot
vendored
Normal file
251
spec/fixtures/dynamic_finders/plugin_version/tiles/translation_file/languages/tiles.pot
vendored
Normal file
@@ -0,0 +1,251 @@
|
||||
# Copyright (c) 2021 Tiles
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Tiles 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/usetiles/tiles/issues\n"
|
||||
"Last-Translator: hi@usetiles.com\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-03T13:23:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: tiles\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
#: includes/class-tiles-register-categories.php:32
|
||||
msgid "Tiles"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Rapidly <strong>build beautiful websites</strong> with Tiles, the most robust collection of utility block patterns for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-action-links.php:30
|
||||
msgid "Get more tiles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:36
|
||||
msgid "Mono Dark"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:41
|
||||
msgid "Mono Light"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:46
|
||||
msgid "Primary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:51
|
||||
msgid "Secondary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:56
|
||||
msgid "Tertiary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:61
|
||||
msgid "Quaternary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:66
|
||||
msgid "Quinary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:71
|
||||
msgid "Senary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-colors.php:76
|
||||
msgid "Septenary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:36
|
||||
msgid "XS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:37
|
||||
msgctxt "Font size"
|
||||
msgid "XS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:42
|
||||
msgid "SM"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:43
|
||||
#: includes/class-tiles-font-sizes.php:55
|
||||
#: includes/class-tiles-font-sizes.php:61
|
||||
msgctxt "Font size"
|
||||
msgid "SM"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:48
|
||||
msgid "MD"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:49
|
||||
msgctxt "Font size"
|
||||
msgid "MD"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:54
|
||||
msgid "LG"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:60
|
||||
msgid "XL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:66
|
||||
msgid "2XL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:67
|
||||
msgctxt "Font size"
|
||||
msgid "XXL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:72
|
||||
msgid "3XL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles-font-sizes.php:73
|
||||
msgctxt "Font size"
|
||||
msgid "3XL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles.php:43
|
||||
msgid "Cloning is fossssrbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles.php:50
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tiles.php:129
|
||||
msgid "Placeholder image, from the Tiles WordPress plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/fullwidth-cta.php:23
|
||||
msgid "Everything you need for your next big adventure"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/fullwidth-cta.php:30
|
||||
msgid "Get Started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/fullwidth-cta.php:50
|
||||
msgctxt "Block pattern title"
|
||||
msgid "Fullwidth Call to Action [Tiles]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/fullwidth-cta.php:51
|
||||
msgctxt "Block pattern description"
|
||||
msgid "Call to action with a heading and a button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/join-our-team.php:17
|
||||
msgid "Join our team"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/join-our-team.php:20
|
||||
msgid "We work hard, play harder, but never really play it safe... and we're always looking for talented folks to join our ever growing team."
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/join-our-team.php:57
|
||||
msgid "We believe that great results are best delivered by highly creative and diverse teams working in unison. Does that sound good to you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/join-our-team.php:63
|
||||
msgid "Careers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/join-our-team.php:78
|
||||
msgctxt "Block pattern title"
|
||||
msgid "Large Image Caption Below [Tiles]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/join-our-team.php:79
|
||||
msgctxt "Block pattern description"
|
||||
msgid "A large image area perfect for team or about pages. "
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/offset-gallery.php:31
|
||||
msgctxt "Block pattern title"
|
||||
msgid "Offset Gallery [Tiles]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/offset-gallery.php:32
|
||||
msgctxt "Block pattern description"
|
||||
msgid "An interesting photo gallery for landing pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:20
|
||||
msgid "We design and develop web apps for startups, small, and medium businesses."
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:24
|
||||
msgid "We exist to help all those people with creative ideas stand out and succeed. We create modern applications that enable millions to build a brand, share their stories, and transact with their customers in an impactful and beautiful online presence."
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:31
|
||||
msgid "3,431"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:35
|
||||
msgid "Websites and applications built by our top-notch team."
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:43
|
||||
msgid "1,547"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:47
|
||||
msgid "Cups of coffee our team has consumed over the last year."
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:59
|
||||
msgctxt "Block pattern title"
|
||||
msgid "Right Column Stats [Tiles]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/right-stats.php:60
|
||||
msgctxt "Block pattern description"
|
||||
msgid "A creative way to display statistics on your about page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/three-steps.php:21
|
||||
msgid "Explore"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/three-steps.php:29
|
||||
#: includes/patterns/three-steps.php:53
|
||||
#: includes/patterns/three-steps.php:77
|
||||
msgid "Sign up"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/three-steps.php:45
|
||||
msgid "Discover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/three-steps.php:65
|
||||
msgid "3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/three-steps.php:69
|
||||
msgid "Lead"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/three-steps.php:89
|
||||
msgctxt "Block pattern title"
|
||||
msgid "Three Steps [Tiles]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns/three-steps.php:90
|
||||
msgctxt "Block pattern description"
|
||||
msgid "Display next steps for your about or landing page"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,703 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Quickboard\n"
|
||||
"POT-Creation-Date: 2021-05-03 11:16+0200\n"
|
||||
"PO-Revision-Date: 2021-05-03 11:17+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: UKischkel\n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: title-to-titletag.php:23
|
||||
msgid "Use Media Gallery title as title tag in images."
|
||||
msgstr "Verwenden Sie den Titel der Mediengalerie als Titel-Tag in Bildern."
|
||||
|
||||
#: title-to-titletag.php:58
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires %2$s version %3$s or greater."
|
||||
msgstr "\"%1$s\" benötigt %2$s Version %3$s oder neuer."
|
||||
|
||||
#: title-to-titletag.php:59
|
||||
msgid "Title to Titletag"
|
||||
msgstr "Titel zu Titletag"
|
||||
|
||||
#: title-to-titletag.php:60
|
||||
msgid "PHP"
|
||||
msgstr "PHP"
|
||||
|
||||
#~ msgid "Movable Mobile Menu Help"
|
||||
#~ msgstr "Movable Mobile Menü Hilfe"
|
||||
|
||||
#~ msgid "Basic information"
|
||||
#~ msgstr "Basisinformationen"
|
||||
|
||||
#~ msgid "Go to Appearance -> Menus and create a new menu. Connect this menu to the display location named\" Movable Mobile Menu\"."
|
||||
#~ msgstr "Wechseln Sie zu \"Design > Menüs, und erstellen Sie ein neues Menü. Verbinden Sie dieses Menü mit der Theme Position \"Movable Mobile Menu\"."
|
||||
|
||||
#~ msgid "For menu items with a sub-menu use custom links with URL \"#\"."
|
||||
#~ msgstr "Verwenden Sie für Menüelemente mit einem Untermenü benutzerdefinierte Links mit der URL \"#\"."
|
||||
|
||||
#~ msgid "Keep in mind that this is a mobile menu. Don't create a to deep menu-structure."
|
||||
#~ msgstr "Denken Sie daran, dass dies ein mobiles Menü ist. Erstellen Sie keine zu tiefe Menüstruktur."
|
||||
|
||||
#~ msgid "Known limitations"
|
||||
#~ msgstr "Bekannte Einschränkungen"
|
||||
|
||||
#~ msgid "Using shortcodes within the menu field \"Navigation menu\" is not possible."
|
||||
#~ msgstr "Die Verwendung von Shortcodes im Menüfeld \"Angezeigter Name\" ist nicht möglich."
|
||||
|
||||
#~ msgid "View on mobile device"
|
||||
#~ msgstr "Ansicht auf mobilem Gerät"
|
||||
|
||||
#~ msgid "The area with the <span class='dashicons dashicons-move' ></span> is to grab the navigation drawer and drag it to a comfortable position."
|
||||
#~ msgstr "Der Bereich mit dem <span class='dashicons dashicons-move' ></span> ist, um die Navigation zu ziehen und in einer bequemen Position abzulegen."
|
||||
|
||||
#~ msgid "The area with the <span class='dashicons dashicons-menu' ></span> is to open a modal containing the menu."
|
||||
#~ msgstr "Der Bereich mit dem <span class='dashicons dashicons-menu' ></span> ist, um ein Modal zu öffnen, welches das Menü enthält."
|
||||
|
||||
#~ msgid "This is how the menu will look.<br>The appearance depends on your theme."
|
||||
#~ msgstr "So sieht das Menü aus.<br>Das Aussehen hängt mit von Ihrem Theme ab."
|
||||
|
||||
#~ msgid "Movable Mobile Menu"
|
||||
#~ msgstr "Movable Mobile Menü"
|
||||
|
||||
#~ msgid "Advantage of Pro version"
|
||||
#~ msgstr "Vorteil der Pro-Version"
|
||||
|
||||
#~ msgid "Style the Movable Mobile Menu and add up to 2 extra buttons with custom links."
|
||||
#~ msgstr "Stylen Sie das mobile Menü und fügen Sie bis zu 2 zusätzliche Schaltflächen mit benutzerdefinierten Links hinzu."
|
||||
|
||||
#~ msgid "This is how the menu will look.<br>The icons <span class='dashicons dashicons-insert' ></span> and <span class='dashicons dashicons-remove' ></span> are to toggle the view of a submenu."
|
||||
#~ msgstr "So sieht das Menü aus.<br>Die Icons <span class='dashicons dashicons-insert' ></span> und <span class='dashicons dashicons-remove' ></span> öffnen und schliessen die Untermenüs."
|
||||
|
||||
#~ msgid "This menu also can be styled to your needs. Set background, link-color, sub-menu background and color of the toggle button."
|
||||
#~ msgstr "Dieses Menü kann auch nach Ihren Bedürfnissen formatiert werden. Legen Sie Hintergrund, Link-Farbe, Untermenü-Hintergrund und Farbe der Icons fest."
|
||||
|
||||
#~ msgid "Get the Movable Mobile Menu Pro version now."
|
||||
#~ msgstr "Holen Sie sich jetzt die Movable Mobile Menu Pro Version."
|
||||
|
||||
#~ msgid "Movable Mobile Menu is a menu which appeares on mobile devices for improved navigation."
|
||||
#~ msgstr "Movable Float Menu ist ein Menü, das auf mobilen Geräten für eine verbesserte Navigation angezeigt wird."
|
||||
|
||||
#~ msgid "Help"
|
||||
#~ msgstr "Hilfe"
|
||||
|
||||
#~ msgid "Go Pro"
|
||||
#~ msgstr "Pro Version holen"
|
||||
|
||||
#~ msgid "Mobile Menu has not been set"
|
||||
#~ msgstr "Mobiles Menü wurde nicht festgelegt"
|
||||
|
||||
#~ msgid "Creating a menu"
|
||||
#~ msgstr "Erstellen eines Menüs"
|
||||
|
||||
#~ msgid "Settings"
|
||||
#~ msgstr "Einstellungen"
|
||||
|
||||
#~ msgid "Mobile Float Menu"
|
||||
#~ msgstr "Mobiles Schwebe Menü"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Mobile Float Menu"
|
||||
#~ msgid "Mobile Float menu"
|
||||
#~ msgstr "Mobiles Schwebe Menü"
|
||||
|
||||
#~ msgid "Flowmenu"
|
||||
#~ msgstr "Flowmenü"
|
||||
|
||||
#~ msgid "please select"
|
||||
#~ msgstr "bitte auswählen"
|
||||
|
||||
#~ msgid "Select to set or edit"
|
||||
#~ msgstr "Wählen zum speichern oder editieren"
|
||||
|
||||
#~ msgid "Modules"
|
||||
#~ msgstr "Module"
|
||||
|
||||
#~ msgid "Design module buttons"
|
||||
#~ msgstr "Designen der Modulschaltflächen"
|
||||
|
||||
#~ msgid "Design"
|
||||
#~ msgstr "Design"
|
||||
|
||||
#~ msgid "Close and save"
|
||||
#~ msgstr "Schliessen und speichern"
|
||||
|
||||
#~ msgid "Rename and close."
|
||||
#~ msgstr "Umbenennen und schliessen."
|
||||
|
||||
#~ msgid "BACKGROUND"
|
||||
#~ msgstr "HINTERGRUND"
|
||||
|
||||
#~ msgid "LOGO"
|
||||
#~ msgstr "LOGO"
|
||||
|
||||
#~ msgid "BUTTON"
|
||||
#~ msgstr "Button"
|
||||
|
||||
#~ msgid "Choose a background-image or background-color for the Quickdashboard."
|
||||
#~ msgstr "Wählen Sie ein Hintergrundbild oder eine Hintergrundfarbe für das Quickdashboard aus."
|
||||
|
||||
#~ msgid "Do you need help with this"
|
||||
#~ msgstr "Benötigen Sie Hilfe dabei?"
|
||||
|
||||
#~ msgid "Quickdashboard background color"
|
||||
#~ msgstr "Quickdashboard Hintergrund"
|
||||
|
||||
#~ msgid "Quickdashboard background-image"
|
||||
#~ msgstr "Quickdashboard Hintergrundbild"
|
||||
|
||||
#~ msgid "Click to choose image"
|
||||
#~ msgstr "Zur Bildauswahl klicken"
|
||||
|
||||
#~ msgid "Remove image"
|
||||
#~ msgstr "Bild entfernen"
|
||||
|
||||
#~ msgid "Choose a logo-image for the Quickdashboard."
|
||||
#~ msgstr "Zur Bildauswahl klicken"
|
||||
|
||||
#~ msgid "Image"
|
||||
#~ msgstr "Bild"
|
||||
|
||||
#~ msgid "max. 350px width"
|
||||
#~ msgstr "max. 350px breit"
|
||||
|
||||
#~ msgid "Remove logo"
|
||||
#~ msgstr "Logo entfernen"
|
||||
|
||||
#~ msgid "Max. width"
|
||||
#~ msgstr "Max. Breite"
|
||||
|
||||
#~ msgid "in px"
|
||||
#~ msgstr "in px"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Position"
|
||||
|
||||
#~ msgid "left"
|
||||
#~ msgstr "links"
|
||||
|
||||
#~ msgid "middle"
|
||||
#~ msgstr "mitte"
|
||||
|
||||
#~ msgid "right"
|
||||
#~ msgstr "rechts"
|
||||
|
||||
#~ msgid "Style the buttons for the Quickdashboard."
|
||||
#~ msgstr "Designen der Modulschaltflächen"
|
||||
|
||||
#~ msgid "Width"
|
||||
#~ msgstr "Breite"
|
||||
|
||||
#~ msgid "Hight"
|
||||
#~ msgstr "Höhe"
|
||||
|
||||
#~ msgid "Gap"
|
||||
#~ msgstr "Abstand"
|
||||
|
||||
#~ msgid "Shadow"
|
||||
#~ msgstr "Schatten"
|
||||
|
||||
#~ msgid "no comma"
|
||||
#~ msgstr "kein Komma"
|
||||
|
||||
#~ msgid "Border-radius"
|
||||
#~ msgstr "Rahmen-Radius"
|
||||
|
||||
#~ msgid "Lock/ unlock"
|
||||
#~ msgstr "alle/einzeln"
|
||||
|
||||
#~ msgid "Border"
|
||||
#~ msgstr "Rahmen"
|
||||
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Hintergrundfarbe"
|
||||
|
||||
#~ msgid "Font-size"
|
||||
#~ msgstr "Textgröße"
|
||||
|
||||
#~ msgid "Font-color"
|
||||
#~ msgstr "Textfarbe"
|
||||
|
||||
#~ msgid "Font-style"
|
||||
#~ msgstr "Textstil"
|
||||
|
||||
#~ msgid "Save Design"
|
||||
#~ msgstr "Änderungen speichern"
|
||||
|
||||
#~ msgid "Reset Design"
|
||||
#~ msgstr "Reset Design"
|
||||
|
||||
#~ msgid "Attention"
|
||||
#~ msgstr "Achtung"
|
||||
|
||||
#~ msgid "Are you sure to delete the design settings?"
|
||||
#~ msgstr "Sind Sie sicher, dass Sie die Design-Einstellungen löschen möchten?"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#~ msgid "example"
|
||||
#~ msgstr "Beispiel"
|
||||
|
||||
#~ msgid "example "
|
||||
#~ msgstr "Beispiel "
|
||||
|
||||
#~ msgid "second row"
|
||||
#~ msgstr "ZWEITE REIHE"
|
||||
|
||||
#~ msgid "Choose a new WordPress user for whom you want to provide the Quickdashboard."
|
||||
#~ msgstr "Wählen Sie einen WordPress-Benutzer aus, für den die Einstellungen gelten sollen."
|
||||
|
||||
#~ msgid "New"
|
||||
#~ msgstr "Neu"
|
||||
|
||||
#~ msgid "Duplicate a configuration from one configured user to another."
|
||||
#~ msgstr "Duplizieren Sie eine Konfiguration auf einen anderen WordPress Nutzer."
|
||||
|
||||
#~ msgid "Duplicate"
|
||||
#~ msgstr "Duplizieren"
|
||||
|
||||
#~ msgid "Remove, modify or delete assigned WordPress modules for a user."
|
||||
#~ msgstr "Entfernen, ändern oder löschen von Einstellungen für einen Nutzer."
|
||||
|
||||
#~ msgid "Edit"
|
||||
#~ msgstr "Bearbeiten"
|
||||
|
||||
#~ msgid "Choose a WordPress user for whom you want to provide the Quickdashboard."
|
||||
#~ msgstr "Wählen Sie einen WordPress-Benutzer aus, für den die Einstellungen gelten sollen."
|
||||
|
||||
#~ msgid "Please choose a user..."
|
||||
#~ msgstr "Bitte einen Nutzer auswählen..."
|
||||
|
||||
#~ msgid "Save"
|
||||
#~ msgstr "Speichern"
|
||||
|
||||
#~ msgid "Abort"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#~ msgid "select from user"
|
||||
#~ msgstr "wähle von Nutzer"
|
||||
|
||||
#~ msgid "select to new user"
|
||||
#~ msgstr "wähle nach Nutzer"
|
||||
|
||||
#~ msgid "Copy & Save"
|
||||
#~ msgstr "Kopieren und speichern"
|
||||
|
||||
#~ msgid "Remove usersettings"
|
||||
#~ msgstr "Einstellungen entfernen"
|
||||
|
||||
#~ msgid "Save changes"
|
||||
#~ msgstr "Änderungen speichern"
|
||||
|
||||
#~ msgid "New comments"
|
||||
#~ msgstr "Kommentare"
|
||||
|
||||
#~ msgid "Quickdashboard Pro enables a custom wp-admin dashboard for certain users."
|
||||
#~ msgstr "Quickdashboard Pro ermöglicht ein benutzerdefiniertes wp-admin-Dashboard für bestimmte Benutzer."
|
||||
|
||||
#~ msgid "Quickdashboard enables a custom dashboard. User will get a special dashboard when accessing the wp-admin area. From there they only can access the setting pages which are allowed. These rules are configured by an admin."
|
||||
#~ msgstr "Quickdashboard ermöglicht ein benutzerdefiniertes Dashboard. Der Benutzer erhält ein spezielles Dashboard, wenn er auf den wp-admin-Bereich zugreift. Von dort aus können sie nur auf die erlaubten Einstellseiten zugreifen. Diese Regeln werden von einem Administrator konfiguriert."
|
||||
|
||||
#~ msgid "Quickdashboard Pro"
|
||||
#~ msgstr "Quickdashboard Pro"
|
||||
|
||||
#~ msgid "Your Quickdashboard Pro license may be deactivated or expired!"
|
||||
#~ msgstr "Ihre Quickdashboard Pro Lizenz wurde entweder deaktiviert oder ist abgelaufen!"
|
||||
|
||||
#~ msgid "You are not allowed to visit this page!"
|
||||
#~ msgstr "Sie dürfen diese Seite nicht aufrufen!"
|
||||
|
||||
#~ msgid "Copy"
|
||||
#~ msgstr "Kopiere"
|
||||
|
||||
#~ msgid "to"
|
||||
#~ msgstr "nach"
|
||||
|
||||
#~ msgid "Please select a user first!"
|
||||
#~ msgstr "Bitte erst einen Nutzer auswählen!"
|
||||
|
||||
#~ msgid "Drag and drop to sort"
|
||||
#~ msgstr "Ziehen zum sortieren"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Löschen"
|
||||
|
||||
#~ msgid "Clear color"
|
||||
#~ msgstr "Farbe löschen"
|
||||
|
||||
#~ msgid "Default"
|
||||
#~ msgstr "Standard"
|
||||
|
||||
#~ msgid "Select default color"
|
||||
#~ msgstr "Standard-Farbe wählen"
|
||||
|
||||
#~ msgid "Select Color"
|
||||
#~ msgstr "Farbe wählen"
|
||||
|
||||
#~ msgid "Color value"
|
||||
#~ msgstr "Farbwert"
|
||||
|
||||
#~ msgid "Activate license"
|
||||
#~ msgstr "Lizenz aktivieren"
|
||||
|
||||
#~ msgid "Deactivate license"
|
||||
#~ msgstr "Lizenz deaktivieren"
|
||||
|
||||
#~ msgid "License Management"
|
||||
#~ msgstr "Lizenz Management"
|
||||
|
||||
#~ msgid "The following message came from the server"
|
||||
#~ msgstr "Die folgende Meldung kam vom Server"
|
||||
|
||||
#~ msgid "Activation successful!"
|
||||
#~ msgstr "Aktivierung erfolgreich!"
|
||||
|
||||
#~ msgid "Deactivation successful!"
|
||||
#~ msgstr "Deaktivierung erfolgreich!"
|
||||
|
||||
#~ msgid "Please enter a license key."
|
||||
#~ msgstr "Bitte geben Sie einen Lizenzschlüssel ein."
|
||||
|
||||
#~ msgid "License key"
|
||||
#~ msgstr "Lizenzschlüssel"
|
||||
|
||||
#~ msgid "Activate"
|
||||
#~ msgstr "Aktivieren"
|
||||
|
||||
#~ msgid "Deactivate"
|
||||
#~ msgstr "Deaktivieren"
|
||||
|
||||
#~ msgid "Your license expires on "
|
||||
#~ msgstr "Ihre Lizenz endet am "
|
||||
|
||||
#~ msgid "Your license expired on "
|
||||
#~ msgstr "Ihr Lizenzschlüssel ist abgelaufen seit "
|
||||
|
||||
#~ msgid "select"
|
||||
#~ msgstr "wählen"
|
||||
|
||||
#~ msgid "Quickdashboard Pro allows you to create a custom dashboard for user."
|
||||
#~ msgstr "Quickdashboard Pro ermöglicht ein spezielles Dashboard für einzelne Nutzer zu erstellen."
|
||||
|
||||
#~ msgid "Before working with Quickdashboard Pro you need to have at leased one additional user."
|
||||
#~ msgstr "Bevor Sie mit Quickdashboard Pro arbeiten, müssen Sie einen zusätzlichen Benutzer angelegt haben."
|
||||
|
||||
#~ msgid "Notice:"
|
||||
#~ msgstr "Hinweis:"
|
||||
|
||||
#~ msgid "Be aware: you can link a user to any module, but if the neccessary rights are missing, the user can't access this module. So give this user the appropriate role."
|
||||
#~ msgstr "Beachten Sie: Sie können einen Benutzer mit einem beliebigen Modul verknüpfen. Wenn jedoch die erforderlichen Rechte fehlen, kann der Benutzer nicht auf dieses Modul zugreifen. Geben Sie diesem Benutzer die entsprechende Rolle."
|
||||
|
||||
#~ msgid "Here you choose the user to which your settings will apply."
|
||||
#~ msgstr "Hier wählen Sie den Benutzer aus, auf den Ihre Einstellungen angewendet werden sollen."
|
||||
|
||||
#~ msgid "This will load the Quickdashboard Pro Menu into the WP-Menu."
|
||||
#~ msgstr "Dies lädt das Quickdashboard Pro Menü in das WP-Menü."
|
||||
|
||||
#~ msgid "There you can select the modules which will be addressed to the user you have choosen."
|
||||
#~ msgstr "Dort können Sie die Module auswählen, die dem von Ihnen ausgewählten Benutzer zugeordnet werden."
|
||||
|
||||
#~ msgid "The modules will be shown as buttons."
|
||||
#~ msgstr "Die Module werden als Schaltflächen angezeigt."
|
||||
|
||||
#~ msgid "After saving, you can repeat this for another user wih different settings."
|
||||
#~ msgstr "Nach dem Speichern können Sie dies für einen anderen Benutzer mit anderen Einstellungen wiederholen."
|
||||
|
||||
#~ msgid "Or you can copy settings from one to another user."
|
||||
#~ msgstr "Oder Sie können Einstellungen von einem auf einen anderen Benutzer kopieren."
|
||||
|
||||
#~ msgid "You also can choose an saved user to edit or delete completly from Quickdashboard Pro settings."
|
||||
#~ msgstr "Sie können auch einen gespeicherten Benutzer auswählen, der bearbeitet oder vollständig aus den Quickdashboard Pro-Einstellungen gelöscht werden soll."
|
||||
|
||||
#~ msgid "After selecting an user to edit, saved modules will be shown as buttons."
|
||||
#~ msgstr "Nachdem Sie einen zu bearbeitenden Benutzer ausgewählt haben, werden gespeicherte Module als Schaltflächen angezeigt."
|
||||
|
||||
#~ msgid "By drag and drop you are able to rearrange the buttons."
|
||||
#~ msgstr "Mittels Drag & Drop können Sie die Reihenfolge der Schaltflächen ändern."
|
||||
|
||||
#~ msgid "You may click onto the button text to edit it."
|
||||
#~ msgstr "Sie können auf den Schaltflächen Text klicken um diese zu bearbeiten."
|
||||
|
||||
#~ msgid "This ist our button designer."
|
||||
#~ msgstr "Dies ist unser Schaltflächen Designer."
|
||||
|
||||
#~ msgid "It allows you to change the appearance of the module-buttons, change the page background, add a logo image which will be appear above the module buttons or even add a background image. Also custom fonts for the buttons are possible."
|
||||
#~ msgstr "Sie können das Erscheinungsbild der Modulschaltflächen ändern, den Seitenhintergrund ändern, ein Logo hinzufügen, das über den Modulschaltflächen angezeigt wird, oder sogar ein Hintergrundbild hinzufügen. Auch benutzerdefinierte Schriftarten für die Schaltflächen sind möglich."
|
||||
|
||||
#~ msgid "You can add a custom font by linking to an extern hoster."
|
||||
#~ msgstr "Sie können eine benutzerdefinierte Schriftart hinzufügen, indem Sie eine Verknüpfung zu einem externen Hoster herstellen."
|
||||
|
||||
#~ msgid "Example: choose your font from Google Fonts, then choose \"embed\", then \"@import\"."
|
||||
#~ msgstr "Beispiel: Wählen Sie Ihre Schriftart aus Google Fonts aus, wählen Sie \"embed\" und dann \"@import\"."
|
||||
|
||||
#~ msgid "You get this code snippet"
|
||||
#~ msgstr "Sie erhalten dieses Code-Snipsel"
|
||||
|
||||
#~ msgid "You only need the part with the yellow background! No quotes!"
|
||||
#~ msgstr "Sie brauchen nur den Teil mit dem gelben Hintergrund! Keine Anführungszeichen!"
|
||||
|
||||
#~ msgid "Copy and past it into the text field \"Font link\"."
|
||||
#~ msgstr "Kopieren Sie es und fügen Sie es in das Textfeld \"Font Link\" ein."
|
||||
|
||||
#~ msgid "The text field named \"Font name\" is just to save a name to it as reminder when editing."
|
||||
#~ msgstr "Das Textfeld mit dem Namen \"Font Name\" dient lediglich dazu, einen Namen als Erinnerung beim Bearbeiten zu speichern."
|
||||
|
||||
#~ msgid "Only one kind of style can be saved. It applys to all user."
|
||||
#~ msgstr "Es kann nur eine Art von Style gespeichert werden. Es gilt für alle Benutzer."
|
||||
|
||||
#~ msgid "Quickdashboard Pro has a function to stop calling not assigned modules by manupulating the URL."
|
||||
#~ msgstr "Quickdashboard Pro verhindert, Module, die nicht zugeordnet sind, durch URL Manipulation aufzurufen."
|
||||
|
||||
#~ msgid "Known issues"
|
||||
#~ msgstr "Bekannte Probleme"
|
||||
|
||||
#~ msgid "Some Plugins have own rights. Quickdashboard Pro still will create a link in the custom Dashboard, but it might happen that the linked page will not be loaded and an error will occur. Best practise is to check the Quickdashboard with the user to whom the settings apply logged in."
|
||||
#~ msgstr "Einige Plugins haben eigene Rechte. Quickdashboard Pro erstellt weiterhin einen Link im benutzerdefinierten Dashboard. Es kann jedoch vorkommen, dass die verknüpfte Seite nicht geladen wird und ein Fehler auftritt. Am besten überprüfen Sie das Quickboard mit dem Benutzer, für den die Einstellungen gelten."
|
||||
|
||||
#~ msgid "This applys often to SEO plugins!"
|
||||
#~ msgstr "Meist tritt dies bei SEO Plugins auf!"
|
||||
|
||||
#~ msgid "Contact:"
|
||||
#~ msgstr "Kontakt:"
|
||||
|
||||
#~ msgid "If you need further help or have any other reason to contact us, we are looking forward to hear from you."
|
||||
#~ msgstr "Wenn Sie weitere Hilfe benötigen oder einen anderen Grund haben, uns zu kontaktieren, freuen wir uns, von Ihnen zu hören."
|
||||
|
||||
#~ msgid "In case of trouble, please give us as many details as possible, maybe add a screenshot for reference."
|
||||
#~ msgstr "Im Falle von Problemen geben Sie uns bitte so viele Details wie möglich und fügen Sie möglicherweise einen Screenshot als Referenz hinzu."
|
||||
|
||||
#~ msgid "Contact to Quickdashboard Pro"
|
||||
#~ msgstr "Kontakt zu Quickdashboard Pro"
|
||||
|
||||
#~ msgid "1.0.0 - Stable release version"
|
||||
#~ msgstr "1.0.0 - Stabile Release-Version"
|
||||
|
||||
#~ msgid "Remove settings for this user or save changes."
|
||||
#~ msgstr "Entfernen Sie die Einstellungen für diesen Benutzer oder speichern Sie die Änderungen."
|
||||
|
||||
#~ msgid "Copy settings."
|
||||
#~ msgstr "Kopieren der Einstellungen."
|
||||
|
||||
#~ msgid "Logo image"
|
||||
#~ msgstr "Logo Bild"
|
||||
|
||||
#~ msgid "Button width"
|
||||
#~ msgstr "Button Breite"
|
||||
|
||||
#~ msgid "Button hight"
|
||||
#~ msgstr "Button Höhe"
|
||||
|
||||
#~ msgid "Font"
|
||||
#~ msgstr "Schriftart"
|
||||
|
||||
#~ msgid "Link to extern hosted font, like Google-Fonts"
|
||||
#~ msgstr "Link zu externem Hoster, wie z.B. Google-Fonts"
|
||||
|
||||
#~ msgid "For more info look in our help section"
|
||||
#~ msgstr "Mehr Info finden Sie in der Hilfe"
|
||||
|
||||
#~ msgid "Font link URL"
|
||||
#~ msgstr "Font Link URL"
|
||||
|
||||
#~ msgid "Font name"
|
||||
#~ msgstr "Font Name"
|
||||
|
||||
#~ msgid "in px, em, pt..."
|
||||
#~ msgstr "in px, em, pt..."
|
||||
|
||||
#~ msgid "Button gap"
|
||||
#~ msgstr "Button Abstand"
|
||||
|
||||
#~ msgid "Button shadow"
|
||||
#~ msgstr "Button Schatten"
|
||||
|
||||
#~ msgid "Reset"
|
||||
#~ msgstr "Reset"
|
||||
|
||||
#~ msgid "Quickdashboardpro"
|
||||
#~ msgstr "Quickdashboard Pro"
|
||||
|
||||
#~ msgid "Upload of files not allowed!"
|
||||
#~ msgstr "Hochladen von Dateien nicht erlaubt!"
|
||||
|
||||
#~ msgid "Unexpected error."
|
||||
#~ msgstr "Unerwarteter Fehler."
|
||||
|
||||
#~ msgid "The license key on this domain is already inactive"
|
||||
#~ msgstr "Der Lizenzschlüssel für diese Domain ist bereits inaktiv"
|
||||
|
||||
#~ msgid "success"
|
||||
#~ msgstr "Erfolgreich"
|
||||
|
||||
#~ msgid "requires to be registered. Please enter your key"
|
||||
#~ msgstr "muss registriert werden. Bitte geben Sie Ihren Key"
|
||||
|
||||
#~ msgid "HERE"
|
||||
#~ msgstr "HIER ein"
|
||||
|
||||
#~ msgid "Your License has expired. Please add a new key"
|
||||
#~ msgstr "Ihre Lizenz ist abgelaufen. Bitte geben Sie einen neuen Lizenzschlüssel"
|
||||
|
||||
#~ msgid "License key activated"
|
||||
#~ msgstr "Lizenzschlüssel aktiviert"
|
||||
|
||||
#~ msgid "Your License key is blocked"
|
||||
#~ msgstr "Lizenzschlüssel blockiert"
|
||||
|
||||
#~ msgid "Your License key has expired"
|
||||
#~ msgstr "Ihr Lizenzschlüssel ist abgelaufen"
|
||||
|
||||
#~ msgid "License key already in use on"
|
||||
#~ msgstr "Lizenzschlüssel wird bereits genutzt"
|
||||
|
||||
#~ msgid "Reached maximum activation. License key already in use on"
|
||||
#~ msgstr "Maximale Aktivierung erreicht. Der Lizenzschlüssel wird bereits genutzt"
|
||||
|
||||
#~ msgid "Reached maximum allowable domains"
|
||||
#~ msgstr "Maximale erlaubte Domains erreicht"
|
||||
|
||||
#~ msgid "Invalid license key"
|
||||
#~ msgstr "Ungültiger Lizenzschlüssel"
|
||||
|
||||
#~ msgid "New user"
|
||||
#~ msgstr "Neuer Benutzer"
|
||||
|
||||
#~ msgid "Copy usersettings"
|
||||
#~ msgstr "Kopieren von Benutzereinstellungen"
|
||||
|
||||
#~ msgid "Choose user to copy settings:"
|
||||
#~ msgstr "Wählen Sie einen Benutzer aus, um die Einstellungen zu kopieren:"
|
||||
|
||||
#~ msgid "Choose user to edit settings:"
|
||||
#~ msgstr "Wählen Sie einen Benutzer aus, um die Einstellungen zu bearbeiten:"
|
||||
|
||||
#~ msgid "We reccommend to delete saved options first before saving new ones."
|
||||
#~ msgstr "Wir empfehlen, gespeicherte Optionen zuerst zu löschen, bevor neue gespeichert werden."
|
||||
|
||||
#~ msgid "Here you can add a logo image which will be appear above the module buttons."
|
||||
#~ msgstr "Hier können Sie ein Logo-Bild hinzufügen, das über den Modulschaltflächen angezeigt wird."
|
||||
|
||||
#~ msgid "Plugins"
|
||||
#~ msgstr "Plugins"
|
||||
|
||||
#~ msgid "Updates"
|
||||
#~ msgstr "Updates"
|
||||
|
||||
#~ msgid "Welcome"
|
||||
#~ msgstr "Willkommen"
|
||||
|
||||
#~ msgid "Choose modules"
|
||||
#~ msgstr "Module wählen"
|
||||
|
||||
#~ msgid "Welcome to Quickboard Pro"
|
||||
#~ msgstr "Willkommen zu Quickboard Pro"
|
||||
|
||||
#~ msgid "We tried to make your work experience with our tool as easy as possible."
|
||||
#~ msgstr "Wir haben versucht, Ihre Arbeitserfahrung mit unserem Tool so einfach wie möglich zu gestalten."
|
||||
|
||||
#~ msgid "Just follow the options in order, but best read our workflow and help which you will find at this menu point"
|
||||
#~ msgstr "Befolgen Sie einfach die Optionen in der angegebenen Reihenfolge, aber lesen Sie am besten unseren Workflow und die Hilfe, die Sie unter diesem Menüpunkt finden"
|
||||
|
||||
#~ msgid "Choose modules from our menu, rename, rearrange and save."
|
||||
#~ msgstr "Module auswählen, umbenennen, sortieren und abspeichern."
|
||||
|
||||
#~ msgid " - File editing not available!"
|
||||
#~ msgstr " - Dateibearbeitung nicht verfügbar!"
|
||||
|
||||
#~ msgid "Dashboard to Quickboard"
|
||||
#~ msgstr "Dashboard to Quickboard"
|
||||
|
||||
#~ msgid "Add a logo"
|
||||
#~ msgstr "Logo hinzufügen"
|
||||
|
||||
#~ msgid "Button text converting:"
|
||||
#~ msgstr "Button Text formatieren:"
|
||||
|
||||
#~ msgid "none"
|
||||
#~ msgstr "nichts gewählt"
|
||||
|
||||
#~ msgid "First letter uppercase"
|
||||
#~ msgstr "Erster Buchstabe Groß"
|
||||
|
||||
#~ msgid "All letters uppercase"
|
||||
#~ msgstr "Alle Buchstaben GROSS"
|
||||
|
||||
#~ msgid "All letters lowercase"
|
||||
#~ msgstr "Alle Buchstaben klein"
|
||||
|
||||
#~ msgid "max. Buttons in row"
|
||||
#~ msgstr "Max. Schaltflächen in Reihe"
|
||||
|
||||
#~ msgid "Standard auto-fit"
|
||||
#~ msgstr "Standard-Auto-Fit"
|
||||
|
||||
#~ msgid "Delete"
|
||||
#~ msgstr "Löschen"
|
||||
|
||||
#~ msgid "Dashboard to Quickboard adds a new role named \"Quickbord\"."
|
||||
#~ msgstr "Dashboard to Quickboard legt eine neue Benutzerrolle \"Quickboard\" an."
|
||||
|
||||
#~ msgid "The following rules are directed to the role \"Quickbord\":"
|
||||
#~ msgstr "Folgende Befugnisse nach Wordpress werden der Rolle \"Quickbord\" zugeordnet:"
|
||||
|
||||
#~ msgid "Under the tab \"Choose from menu\" you choose from the main navigation and, if applies, from the subnavigation which options should be accessible for the role \"Quickbord\"."
|
||||
#~ msgstr "Unter der Registerkarte \"Menü wählen\" wählen Sie aus der Hauptnavigation und, falls zutreffend, aus der Unternavigation, die Optionen aus, die für die Rolle \"Quickbord\" zugänglich sein soll."
|
||||
|
||||
#~ msgid "In the submenu navigation you can set your own names for the buttons on the Quickboard."
|
||||
#~ msgstr "In der Untermenünavigation können Sie eigene Namen für die Schaltflächen auf dem Quickboard festlegen."
|
||||
|
||||
#~ msgid "Notice: "
|
||||
#~ msgstr "Hinweis:"
|
||||
|
||||
#~ msgid "Not all options under the main navigation have a submenu!"
|
||||
#~ msgstr "Nicht alle Optionen unter der Hauptnavigation haben ein Untermenü!"
|
||||
|
||||
#~ msgid "If you, after saving, want to add more buttons, click twice slowly on the main navigation option. This reloads all navigation points in the subnavigation and can then be activated."
|
||||
#~ msgstr "Wenn Sie nach dem Speichern weitere Schaltflächen hinzufügen möchten, klicken Sie zweimal langsam auf die Hauptnavigationsoption. Dadurch werden alle Navigationspunkte in der Unternavigation neu geladen und können dann aktiviert werden."
|
||||
|
||||
#~ msgid "Under the tab \"Button Design\" you can set how the Buttons should look."
|
||||
#~ msgstr "Unter \"Button Design\" stellen Sie ein, wie die Schaltflächen aussehen sollen."
|
||||
|
||||
#~ msgid "Under the tab \"Logo\" you can upload a logo. Max. width: 250px, max. height: 100px."
|
||||
#~ msgstr "Unter \"Logo\" können Sie ein Logo hochladen. Maximale Breite: 250px, max. Höhe: 100px."
|
||||
|
||||
#~ msgid "Quickboard"
|
||||
#~ msgstr "Quickboard"
|
||||
|
||||
#~ msgid "MOVE ME"
|
||||
#~ msgstr "Zieh mich"
|
||||
|
||||
#~ msgid "Logo"
|
||||
#~ msgstr "Logo"
|
||||
|
||||
#~ msgid "Help/ Workflow"
|
||||
#~ msgstr "Hilfe / Workflow"
|
||||
|
||||
#~ msgid "Main navigation"
|
||||
#~ msgstr "Hauptnavigation"
|
||||
|
||||
#~ msgid "Sub navigation and renaming"
|
||||
#~ msgstr "Subnavigation und eigener Name"
|
||||
|
||||
#~ msgid "Personal"
|
||||
#~ msgstr "Personal"
|
||||
|
||||
#~ msgid "EXAMPLE"
|
||||
#~ msgstr "Beispiel"
|
||||
|
||||
#~ msgid "SECOND ROW"
|
||||
#~ msgstr "ZWEITE REIHE"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The license key on this domain is already inactive"
|
||||
#~ msgid "The license key on this domain is already inactived"
|
||||
#~ msgstr "Der Lizenzschlüssel für diese Domain ist bereits inaktiv"
|
||||
@@ -0,0 +1,64 @@
|
||||
# Copyright (C) 2021 Trendy Plugins
|
||||
# This file is distributed under the same license as the TP Chat Lite plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TP Chat Lite 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tp-chat-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-05-19T18:47:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: tp-chat-lite\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TP Chat Lite"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://trendyplugins.com/plugins/tp-chat-lite"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "TP Chat Lite is the fastest way for your website visitors to get in touch with you via WhatsApp. Stay always easy-to-reach for users via their favourite messenger."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Trendy Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://trendyplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: backend/admin_view.php:16
|
||||
#: backend/admin_view.php:31
|
||||
msgid "WhatsApp Chat"
|
||||
msgstr ""
|
||||
|
||||
#: backend/admin_view.php:61
|
||||
msgid "Account Info"
|
||||
msgstr ""
|
||||
|
||||
#: backend/admin_view.php:68
|
||||
msgid "Mobile Number"
|
||||
msgstr ""
|
||||
|
||||
#: backend/admin_view.php:77
|
||||
msgid "Support Message"
|
||||
msgstr ""
|
||||
|
||||
#: backend/admin_view.php:116
|
||||
msgid "+8801717407376"
|
||||
msgstr ""
|
||||
|
||||
#: backend/admin_view.php:117
|
||||
msgid "Hi, I need support"
|
||||
msgstr ""
|
||||
|
||||
#: backend/admin_view.php:124
|
||||
msgid "Some Changes are done!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,239 @@
|
||||
# Copyright (C) 2021 Rahul Aryan
|
||||
# This file is distributed under the same license as the Vote & Smiley Reaction package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Vote & Smiley Reaction 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/vote-smiley-reaction\n"
|
||||
"POT-Creation-Date: 2021-05-26 06:44:39+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/main.php:271
|
||||
msgid "100"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:124
|
||||
msgid "You are not allowed to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:193
|
||||
msgid "You are not allowed to access this action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:262
|
||||
msgid "Custom post types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:263
|
||||
msgid "Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:264
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:265
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:31 includes/ajax.php:40
|
||||
msgid "Invalid action."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:50
|
||||
msgid "You must be logged in to react."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:61
|
||||
msgid "You are not allowed to react."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:75
|
||||
msgid "Failed to react."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:81
|
||||
msgid "Successfully removed reaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:81
|
||||
msgid "Successfully reacted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:94 includes/ajax.php:100 includes/ajax.php:121
|
||||
#: includes/ajax.php:134 includes/ajax.php:142 includes/ajax.php:148
|
||||
msgid "Bad request"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ajax.php:128 includes/ajax.php:153
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:121 includes/main.php:130
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:257
|
||||
msgid "Vote Up"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:264
|
||||
msgid "Vote Down"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:277
|
||||
msgid "Angry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:283
|
||||
msgid "Clap"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:289
|
||||
msgid "Confused"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:295
|
||||
msgid "Eyes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:301
|
||||
msgid "Happy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:307
|
||||
msgid "Idea"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:313
|
||||
msgid "Rocket"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:319
|
||||
msgid "Unhappy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:325
|
||||
msgid "Flag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/main.php:386
|
||||
msgid "Unable to guess id and type of current page."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/index.php:14
|
||||
msgid "Reaction Types"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/index.php:15
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/index.php:21
|
||||
msgid "Invalid tab."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_type.php:22
|
||||
msgid "This is a system default reaction type"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_type.php:30
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_type.php:39
|
||||
msgid "Set icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_type.php:40
|
||||
msgid "Replace icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_type.php:52
|
||||
msgid "By default it will show everywhere. You can "
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_type.php:53
|
||||
msgid "select"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:78 views/admin/reaction_types.php:110
|
||||
msgid "Save reaction types"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:79 views/admin/reaction_types.php:111
|
||||
msgid "Reset to default"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:87
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:88
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:89
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:90
|
||||
msgid "Where to show"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:100
|
||||
msgid "No reaction type registered, click below button to add one."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/reaction_types.php:106
|
||||
msgid "Add reaction type"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/settings.php:19
|
||||
msgid "Reaction settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/settings.php:22
|
||||
msgid "Restrict user to add only one type of reaction in an object."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/settings.php:27
|
||||
msgid "Save options"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Vote & Smiley Reaction"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/rahularyan/vote-smiley-reaction"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Add voting and smiley reaction in WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Rahul Aryan"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wp.cafe"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,235 @@
|
||||
# Copyright (C) 2021 WPRealizer
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Custom Product Tab Manager 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
||||
"POT-Creation-Date: 2021-05-04 17:17:56+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.0\n"
|
||||
|
||||
#: includes/Admin/WCPTM_Admin.php:59 templates/product-panel-tab.php:1
|
||||
#: templates/product-tabs.php:42
|
||||
msgid "Custom Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/WCPTM_Admin.php:79
|
||||
msgid "Tabs saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/WCPTM_Admin.php:93
|
||||
msgid "Error: Tabs not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/WCPTM_Admin.php:117 includes/Admin/WCPTM_Admin.php:162
|
||||
msgid "Product Tab Group"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/WCPTM_Admin.php:138
|
||||
msgid "Tabs deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/WCPTM_Admin.php:277
|
||||
#. translators: %s: wc plugin url
|
||||
msgid ""
|
||||
"Custom Tabs for WooCommerce Products requires WooCommerce to be installed "
|
||||
"and active. You can activate <a href=\"%s\">WooCommerce</a> here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/WCPTM_Assets.php:82
|
||||
msgid "Are you want to remove this tab?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:6
|
||||
msgid "Create Product Custom Global Tab"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:7
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:11
|
||||
msgid "Edit Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:12
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:19
|
||||
msgid "Set up tabs that apply to all products or specific product categories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:25
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:29
|
||||
msgid "This name is for your reference only and will not be visible to customers."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:34
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:39
|
||||
msgid "Enable this to use for global tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:45
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:49
|
||||
#: templates/admin/html-product-tabs-global-admin.php:45
|
||||
msgid "All Products"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:50
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin-manage.php:61
|
||||
msgid ""
|
||||
"Select which categories this tabs should apply to. Create tabs for a single "
|
||||
"product when editing that product."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:8
|
||||
#: templates/product-tabs.php:17
|
||||
msgid "Product Custom Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:8
|
||||
msgid "Create New"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:12
|
||||
msgid "Tab Group Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:13
|
||||
msgid "Products and Categories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:14
|
||||
msgid "Number of Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:29
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:34
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:47
|
||||
msgid "No Products Assigned"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:66
|
||||
msgid "No Custom Tabs Found,"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:68
|
||||
msgid "Create Product Custom Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/html-product-tabs-global-admin.php:80
|
||||
msgid ""
|
||||
"Need help with Custom Tabs for WooCommerce Products? <a href=\"%s\" "
|
||||
"target=\"_blank\">Click here Visit the Documentation</a>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-single-new-tab.php:15
|
||||
msgid "New Tab"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-single-new-tab.php:18 templates/product-single-tab.php:18
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-single-new-tab.php:25 templates/product-single-tab.php:28
|
||||
msgid "Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-single-new-tab.php:27 templates/product-single-tab.php:30
|
||||
msgid "Custom Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-single-new-tab.php:31 templates/product-single-tab.php:34
|
||||
msgid "Tab Content"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:18
|
||||
msgid "Manage custom tabs for this product"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:24
|
||||
msgid "Disabled global tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:26
|
||||
msgid "Enable this to disabled global custom tabs for this product"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:31
|
||||
msgid "Disabled others tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:33
|
||||
msgid ""
|
||||
"Enable this to disabled others tabs for this product, now show only below "
|
||||
"tabs"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:44
|
||||
msgid "Expand all"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:44
|
||||
msgid "Close all"
|
||||
msgstr ""
|
||||
|
||||
#: templates/product-tabs.php:80
|
||||
msgid "Add New Tab"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce Custom Product Tab Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.wprealizer.com/wprealizer-plugins/wc-custom-product-tab-manager/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Using this plugin you can create and manage custom products tabs on your "
|
||||
"WooCommerce per category or products wise."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WPRealizer"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wprealizer.com"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/woowup-abandoned-cart/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/woowup-abandoned-cart/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
Version 1.0.0 - 2021-04-12
|
||||
- Initial Release
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,105 @@
|
||||
# Copyright (C) 2021 WP Data Sync
|
||||
# This file is distributed under the same license as the WP Data Sync - WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Data Sync - WooCommerce 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-data-sync-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-05-15T17:02:56+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: wp-data-sync-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Data Sync - WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpdatasync.com/products/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add data fields to your WooCommecre products"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Data Sync"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpdatasync.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/add-custom-fields-to-products.php:22
|
||||
msgid "MPN"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/add-custom-fields-to-products.php:24
|
||||
msgid "Manufacturer Part Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/add-custom-fields-to-products.php:29
|
||||
msgid "GTIN"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/add-custom-fields-to-products.php:31
|
||||
msgid "Global Trade Item Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/add-custom-fields-to-products.php:36
|
||||
msgid "ISBN"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/add-custom-fields-to-products.php:38
|
||||
msgid "International Standard Book Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:48
|
||||
msgctxt "Brands"
|
||||
msgid "Brands"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:49
|
||||
msgctxt "Brand"
|
||||
msgid "Brand"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:50
|
||||
msgid "Search Brands"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:51
|
||||
msgid "All Brands"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:52
|
||||
msgid "Parent Brand"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:53
|
||||
msgid "Parent Brand:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:54
|
||||
msgid "View Brand"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:55
|
||||
msgid "Update Brand"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:56
|
||||
msgid "Add New Brand"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:57
|
||||
msgid "New Brand Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/register-brand-taxonomy.php:58
|
||||
msgid "Brand"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,52 @@
|
||||
# Copyright (C) 2021 WPClever
|
||||
# This file is distributed under the same license as the WPC Update Variations In Cart for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Update Variations In Cart for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-update-variations-in-cart\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-13T22:57:10+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-update-variations-in-cart\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Update Variations In Cart for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WPC Update Variations In Cart gives your customer power to change variation in cart."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-update-variations-in-cart.php:69
|
||||
#: wpc-update-variations-in-cart.php:125
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-update-variations-in-cart.php:70
|
||||
msgid "Cart updated."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-update-variations-in-cart.php:87
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-update-variations-in-cart.php:126
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
61
spec/fixtures/dynamic_finders/plugin_version/zeeker/translation_file/languages/zeeker.pot
vendored
Normal file
61
spec/fixtures/dynamic_finders/plugin_version/zeeker/translation_file/languages/zeeker.pot
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
# Copyright (C) 2021 Zeeker Team
|
||||
# This file is distributed under the same license as the Zeeker WPPD plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Zeeker WPPD 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/zeeker\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-04T15:54:02+05:45\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: zeeker\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Zeeker WPPD"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zeeker.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Display the Zeeker Widget on the site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Zeeker Team"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-zeeker-admin-settings.php:52
|
||||
msgid "Zeeker Settings Option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-zeeker-admin-settings.php:53
|
||||
msgid "Zeeker Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-zeeker-admin-settings.php:74
|
||||
msgid "Add the Zeeker Widget ID and tagname here."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-zeeker-admin-settings.php:82
|
||||
#: admin/inc/class-zeeker-admin-settings.php:117
|
||||
msgid "Zeeker Widget ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-zeeker-admin-settings.php:95
|
||||
msgid "Zeeker Widget Tagname"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-zeeker-admin-settings.php:132
|
||||
msgid "tagname"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-zeeker-admin-settings.php:157
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
@@ -1,4 +1,4 @@
|
||||
[+] WordPress version 3.8.1 identified (Outdated-via-api, released on 2014-01-23-via-api).
|
||||
[+] WordPress version 3.8.1 identified (Outdated via api, released on 2014-01-23-via-api).
|
||||
| Found By: rspec
|
||||
|
|
||||
| [!] 2 vulnerabilities identified:
|
||||
|
||||
@@ -20,17 +20,17 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.4'
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.5'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.10.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.13.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.16.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.11.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
s.add_development_dependency 'webmock', '~> 3.12.0'
|
||||
s.add_development_dependency 'webmock', '~> 3.13.0'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user