Compare commits

..

1 Commits

Author SHA1 Message Date
erwanlr
2b46ecb3c9 Fixes #1628 2021-04-26 17:48:25 +02:00
226 changed files with 84 additions and 122866 deletions

View File

@@ -1,7 +0,0 @@
version: "2"
# https://docs.codeclimate.com/docs/default-analysis-configuration#sample-codeclimateyml
checks:
method-complexity:
enabled: true
config:
threshold: 15

View File

@@ -9,14 +9,14 @@ jobs:
strategy:
matrix:
ruby: [2.5, 2.6, 2.7, 3.0]
ruby: [2.5, 2.6, 2.7]
steps:
- name: Checkout code
uses: actions/checkout@v2.3.4
- name: Set up Ruby ${{ matrix.ruby }}
uses: actions/setup-ruby@v1.1.3
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}

View File

@@ -1,49 +0,0 @@
name: Build Docker Images
on:
push:
branches:
- master
release:
types: [published]
schedule:
- cron: '0 7 * * *'
jobs:
images:
runs-on: ubuntu-latest
steps:
- name: checkout sources
uses: actions/checkout@v2.3.4
- name: Set tag to latest
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
run: |
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
- name: Set tag to release name
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')
run: |
echo "DOCKER_TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
- name: Check if DOCKER_TAG is set
if: env.DOCKER_TAG == ''
run: |
echo DOCKER_TAG is not set!
exit 1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1.10.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
tags: wpscanteam/wpscan:${{ env.DOCKER_TAG }}

View File

@@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1.1.3
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x

View File

@@ -15,7 +15,7 @@ Lint/MissingSuper:
Lint/UriEscapeUnescape:
Enabled: false
Metrics/AbcSize:
Max: 27
Max: 25
Metrics/BlockLength:
Exclude:
- 'spec/**/*'

View File

@@ -1 +1 @@
3.0.2
2.7.2

View File

@@ -1,4 +1,4 @@
FROM ruby:3.0.2-alpine AS builder
FROM ruby:2.7.2-alpine AS builder
LABEL maintainer="WPScan Team <contact@wpscan.com>"
RUN echo "install: --no-document --no-post-install-message\nupdate: --no-document --no-post-install-message" > /etc/gemrc
@@ -19,7 +19,7 @@ RUN rake install --trace
RUN chmod -R a+r /usr/local/bundle
FROM ruby:3.0.2-alpine
FROM ruby:2.7.2-alpine
LABEL maintainer="WPScan Team <contact@wpscan.com>"
LABEL org.opencontainers.image.source https://github.com/wpscanteam/wpscan

View File

@@ -15,7 +15,6 @@
<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>

View File

@@ -6,8 +6,7 @@ module WPScan
class Aliases < CMSScanner::Controller::Base
def cli_options
[
OptAlias.new(['--stealthy'],
alias_for: '--random-user-agent --detection-mode passive --plugins-version-detection passive')
OptAlias.new(['--stealthy'], alias_for: '--random-user-agent --detection-mode passive')
]
end
end

View File

@@ -32,8 +32,7 @@ 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]],
default: { all_plugins: true, config_backups: true }
incompatible: [%i[vp ap p], %i[vt at t]]
),
OptRegexp.new(
[
@@ -52,7 +51,7 @@ module WPScan
OptChoice.new(
['--plugins-detection MODE',
'Use the supplied mode to enumerate Plugins.'],
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :passive
choices: %w[mixed passive aggressive], normalize: :to_sym
),
OptBoolean.new(
['--plugins-version-all',
@@ -63,7 +62,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, default: :mixed
choices: %w[mixed passive aggressive], normalize: :to_sym
),
OptInteger.new(
['--plugins-threshold THRESHOLD',

View File

@@ -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[:users] || cli_enum_choices[0].choices[:u].validate(nil)
ParsedCli.enumerate&.dig(:users) || cli_enum_choices[0].choices[:u].validate(nil)
end
end
end

View File

@@ -39,57 +39,18 @@ module WPScan
#
# @return [ Hash ]
def potential_urls(opts = {})
urls = {}
index = 0
urls = {}
domain_name = (PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
File.open(opts[:list]).each do |path|
path.chomp!
File.open(opts[:list]).each_with_index do |path, index|
path.gsub!('{domain_name}', domain_name)
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
urls[target.url(path.chomp)] = index
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

View File

@@ -13,7 +13,7 @@ module WPScan
return unless [200, 302].include?(res.code)
return if res.code == 302 && location&.include?('wp-login.php?action=register')
return unless res.code == 200 || (res.code == 302 && location&.include?('wp-signup.php'))
return unless res.code == 200 || res.code == 302 && location&.include?('wp-signup.php')
target.multisite = true

View File

@@ -30,7 +30,7 @@ module WPScan
def vulnerabilities
vulns = []
vulns << rce_webshot_vuln if version == false || (version > '1.35' && version < '2.8.14' && webshot_enabled?)
vulns << rce_webshot_vuln if version == false || version > '1.35' && version < '2.8.14' && webshot_enabled?
vulns << rce_132_vuln if version == false || version < '1.33'
vulns

View File

@@ -162,7 +162,7 @@ module WPScan
#
# @return [ Typhoeus::Response ]
def head_and_get(path, codes = [200], params = {})
final_path = @path_from_blog.dup # @path_from_blog is set in the plugin/theme
final_path = +@path_from_blog
final_path << path unless path.nil?
blog.head_and_get(final_path, codes, params)

View File

@@ -1,5 +1,5 @@
<% if @version -%>
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.tr('-', '_').humanize %>, released on <%= @version.release_date %>).
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.capitalize %>, released on <%= @version.release_date %>).
<%= render('@finding', item: @version) -%>
<% else -%>
<%= notice_icon %> The WordPress version could not be detected.

View File

@@ -13,7 +13,6 @@ 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

View File

@@ -11,11 +11,7 @@ module WPScan
# @return [ Hash ]
def self.all_df_data
@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
@all_df_data ||= YAML.safe_load(File.read(df_file), [Regexp])
end
# @return [ Array<Symbol> ]

View File

@@ -24,9 +24,7 @@ module WPScan
FileUtils.mkdir_p(repo_directory.to_s) unless Dir.exist?(repo_directory.to_s)
unless repo_directory.writable?
raise "#{repo_directory} is not writable (uid: #{Process.uid}, gid: #{Process.gid})"
end
raise "#{repo_directory} is not writable" unless repo_directory.writable?
delete_old_files
end

View File

@@ -5,16 +5,16 @@ module WPScan
class PluginsThresholdReached < Standard
def to_s
"The number of plugins detected reached the threshold of #{ParsedCli.plugins_threshold} " \
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
'option to ignore the bad responses.'
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
'option to ignore the bad responses.'
end
end
class ThemesThresholdReached < Standard
def to_s
"The number of themes detected reached the threshold of #{ParsedCli.themes_threshold} " \
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
'option to ignore the bad responses.'
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
'option to ignore the bad responses.'
end
end
end

View File

@@ -26,7 +26,7 @@ module WPScan
class WpContentDirNotDetected < Standard
def to_s
'Unable to identify the wp-content dir, please supply it with --wp-content-dir,' \
' use the --scope option or make sure the --url value given is the correct one'
' use the --scope option or make sure the --url value given is the correct one'
end
end

View File

@@ -56,9 +56,7 @@ module WPScan
homepage_result = find(target.homepage_res, opts)
unless homepage_result.nil? || (homepage_result.is_a?(Array) && homepage_result&.empty?)
return homepage_result
end
return homepage_result unless homepage_result.nil? || homepage_result.is_a?(Array) && homepage_result&.empty?
find(target.error_404_res, opts)
end

View File

@@ -125,14 +125,14 @@ module WPScan
return @uri.to_s unless path
if %r{wp-content/plugins}i.match?(path)
new_path = path.gsub('wp-content/plugins', plugins_dir)
path = +path.gsub('wp-content/plugins', plugins_dir)
elsif /wp-content/i.match?(path)
new_path = path.gsub('wp-content', content_dir)
path = +path.gsub('wp-content', content_dir)
elsif path[0] != '/' && sub_dir
new_path = "#{sub_dir}/#{path}"
path = "#{sub_dir}/#{path}"
end
super(new_path || path)
super(path)
end
end
end

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.8.19'
VERSION = '3.9.0-dev'
end

View File

@@ -21,9 +21,7 @@ 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, plugins_version_detection: :mixed
)
expect(WPScan::ParsedCli.options).to include(detection_mode: :mixed)
end
end
@@ -31,9 +29,7 @@ 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, plugins_version_detection: :passive
)
expect(WPScan::ParsedCli.options).to include(random_user_agent: true, detection_mode: :passive)
end
end
end

View File

@@ -29,7 +29,7 @@ describe WPScan::Controller::Enumeration do
let(:type) { t }
let(:detection_mode) { :mixed }
context 'when vulnerable' do
context 'when vulnerable and mixed detection' 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' do
context 'when all and passive detection' 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' do
context 'when most popular and aggressive detection' do
let(:cli_args) { "#{super()} -e #{type[0]}" }
let(:detection_mode) { :aggressive }
@@ -58,14 +58,6 @@ 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(
@@ -104,17 +96,6 @@ 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" }

View File

@@ -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 values' do
it 'replaces {domain_name} by its value' do
expect(finder.potential_urls(opts).keys).to eql %w[
http://ex.lo/aa/ex.sql
http://ex.lo/aa/wordpress.sql
@@ -27,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 values' do
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql", "#{url}/#{sub_domain}.domain.sql"
it 'replaces {domain_name} by its correct value' do
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql"
end
end
end
@@ -44,22 +44,16 @@ 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 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'
)
it 'replaces {domain_name} by its correct value' do
expect(finder.potential_urls(opts).keys).to include 'https://dev.something.com.tr/something.sql'
end
end
context 'when some weird stuff' do
let(:url) { 'https://098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.com' }
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"
)
it 'replaces {domain_name} by its correct value' do
expect(finder.potential_urls(opts).keys).to include "#{url}/domain-test.sql"
end
end
@@ -70,14 +64,6 @@ 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

View File

@@ -35,7 +35,7 @@ describe WPScan::Finders::Passwords::WpLogin do
context 'when multiple cookies set' do
let(:headers) do
"Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/\r\n" \
'Set-Cookie: something=value; path=/'
'Set-Cookie: something=value; path=/'
end
it 'returns false' do
@@ -47,9 +47,9 @@ describe WPScan::Finders::Passwords::WpLogin do
context 'when logged_in cookie set' do
let(:headers) do
"Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/\r\r" \
"Set-Cookie: wordpress_xxx=yyy; path=/wp-content/plugins; httponly\r\n" \
"Set-Cookie: wordpress_xxx=yyy; path=/wp-admin; httponly\r\n" \
'Set-Cookie: wordpress_logged_in_xxx=yyy; path=/; httponly'
"Set-Cookie: wordpress_xxx=yyy; path=/wp-content/plugins; httponly\r\n" \
"Set-Cookie: wordpress_xxx=yyy; path=/wp-admin; httponly\r\n" \
'Set-Cookie: wordpress_logged_in_xxx=yyy; path=/; httponly'
end
it 'returns false' do

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,97 +0,0 @@
= 4.0.0 =
* Released 2021.07.20
* Upgraded to use V4 of the what3words AutoSuggest Component with improved styling and functionality.
* Updated admin section interface.
* Addition of advanced clipping options to restrict suggestions displayed to a user.
* Addition of options to store latitude and longitude coordinates and nearest place against a record.
* Added ability to change the field label.
= 3.0.11 =
* Released 2021.06.30
* Fixes non-fatal debugging log output for PHP "Variable assignment" error
= 3.0.10 =
* Released 2021.03.09
* Fixes passing API key to autosuggest for requests.
= 3.0.9 =
* Released 2021.02.03
* Updated screenshots
* Send key version numbers to what3words API via `X-W3W-Plugin` request header.
= 3.0.8 =
* Released 2020.12.11
* Improved interoperability, errors in 3rd party scripts will be less likely to prevent the plugin operating.
* Bumped to latest WordPress release, 5.6
= 3.0.7 =
* Released 2020.06.17
* Addresses an error that prevented the plugin loading on Internet Explorer.
* Minor styling improvements.
= 3.0.6 =
* Released 2020.06.02
* Further improvements to match theme styling
* Clarified the purpose of the `Input Selector(s)` field
* Updated readme
= 3.0.5 =
* Released 2020.06.01
* Apply missing `font-size` property.
= 3.0.4 =
* Released 2020.06.01
* Hotfix missing `font-size` property.
= 3.0.3 =
* Released 2020.06.01
* Plugin tweaked to take up less vertical height on themes with slimmer text inputs.
= 3.0.2 =
* Released 2020.06.01
* The plugin now inherits styles from the current wordpress theme for more seamless integration.
* The following css properties are automatically applied to the upgraded input: `background-color`, `border`, `border-radius`, `color`, `font`, `height`.
= 3.0.1 =
* Released 2020.05.27
* Fixes an issue where country clipping would not work when shipping and billing addresses were in different countries.
* Updated screenshots
= 3.0.0 =
* Released 2020.05.26
* Updated the plugin to use new web component and V3 of the what3words API. Note that this release simplifies the plugin setup and removes some settings.
* Updated links to what3words documentation and developer site
* Settings available are now:
* API key
* CSS selector to specify which inputs should be upgraded to the auto suggest component
* Placeholder text shown on inputs
* Turn on/off the WooCommerce integration, to automatically add what3words address fields to your checkout forms
= 2.0.4 =
* Released 2019.01.16
* Added new function to allow a country field to be specified for country clipping
= 2.0.3 =
* Released 2018.04.05
* bug fixes
= 2.0.2 =
* Released 2018.03.16
* bug fixes
= 2.0.1 =
* Released 2018.01.09
* bug fixes
= 2.0.0 =
* Released 2018.01.08
* Reworked and redesigned plugin code base
= 1.1.0 =
* uses what3words autosuggest jQuery plugin 1.2.0
= 1.0.1 =
* General fixes
= 1.0.0 =
* Initial release

View File

@@ -1,38 +0,0 @@
{
"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"
}
}

View File

@@ -1,66 +0,0 @@
# Copyright (C) 2021 AbsolutePlugins
# This file is distributed under the GPLv3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Absolute Thumbnail Column 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/absolute-thumbnail-column\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-07-07T14:49:00+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: absp-thumbnail-column\n"
#. Plugin Name of the plugin
msgid "Absolute Thumbnail Column"
msgstr ""
#. Plugin URI of the plugin
msgid "https://absoluteplugins.com/plugins/absolute-thumbnail-column/"
msgstr ""
#. Description of the plugin
msgid "Absolute Thumbnail column allows you to upload, select and change thumbnail on any post-types right from the post table."
msgstr ""
#. Author of the plugin
msgid "AbsolutePlugins"
msgstr ""
#. Author URI of the plugin
msgid "https://absoluteplugins.com/"
msgstr ""
#: absolute-thumbnail-column.php:112
msgid "Thumbnail"
msgstr ""
#: absolute-thumbnail-column.php:175
#: absolute-thumbnail-column.php:177
msgid "Click the image to edit or update"
msgstr ""
#: absolute-thumbnail-column.php:179
#: absolute-thumbnail-column.php:181
msgid "Remove featured image"
msgstr ""
#: absolute-thumbnail-column.php:189
msgid "No Thumb"
msgstr ""
#: absolute-thumbnail-column.php:197
#: absolute-thumbnail-column.php:199
msgid "Set featured image"
msgstr ""
#: absolute-thumbnail-column.php:360
msgid "Could not set that as the thumbnail image. Try a different attachment."
msgstr ""
#: absolute-thumbnail-column.php:362
msgid "Could not remove the post thumbnail image. Try a again later."
msgstr ""

View File

@@ -1,41 +0,0 @@
# 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 ""

View File

@@ -1,21 +0,0 @@
*** 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.

View File

@@ -1,337 +0,0 @@
# 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 ""

View File

@@ -1,34 +0,0 @@
# Copyright (C) 2021 Brickdots
# This file is distributed under the same license as the Admin Todotastic plugin.
msgid ""
msgstr ""
"Project-Id-Version: Admin Todotastic 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/src\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: n/a\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
#. Plugin Name of the plugin
msgid "Admin Todotastic"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/admin-todotastic"
msgstr ""
#. Description of the plugin
msgid "Assign todo to internal users by mentioning them"
msgstr ""
#. Author of the plugin
msgid "Brickdots"
msgstr ""
#. Author URI of the plugin
msgid "https://brickdots.com"
msgstr ""

View File

@@ -1,33 +0,0 @@
{
"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"
}

View File

@@ -1,9 +0,0 @@
== 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

View File

@@ -1,495 +0,0 @@
# Copyright (C) 2021 All Embed Addons for elementor
# This file is distributed under the same license as the All Embed Addons for elementor package.
msgid ""
msgstr ""
"Project-Id-Version: All Embed Addons for elementor 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/All-Embed-Elementor-Addons\n"
"POT-Creation-Date: 2021-05-28 04:47:21+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#. translators: 1: Plugin name 2: Elementor
#: All-Embed.php:129
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
msgstr ""
#: All-Embed.php:130
msgid "Media Player Addon"
msgstr ""
#: All-Embed.php:131 All-Embed.php:154
msgid "Elementor"
msgstr ""
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
#: All-Embed.php:152 All-Embed.php:176
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
msgstr ""
#: All-Embed.php:153
msgid "unlimited addon"
msgstr ""
#: All-Embed.php:177
msgid "venus wp"
msgstr ""
#: All-Embed.php:178
msgid "PHP"
msgstr ""
#: plugin.php:167
msgid "All Embed For Elementor"
msgstr ""
#: widgets/Sirv.php:40
msgid "Sirv Embed"
msgstr ""
#: widgets/Sirv.php:90
msgid "Sirv Content Settings"
msgstr ""
#: widgets/Sirv.php:99
msgid "Sirv Link"
msgstr ""
#: widgets/Sirv.php:102 widgets/appointly.php:102 widgets/bandcamp.php:102
#: widgets/codepen.php:102 widgets/creddle.php:102 widgets/dailymotion.php:102
#: widgets/dartfish.php:102 widgets/facebook.php:102 widgets/genial.php:102
#: widgets/giphy.php:102 widgets/google-map.php:102 widgets/imgur.php:102
#: widgets/invison.php:102 widgets/jotform.php:102 widgets/kuula.php:102
#: widgets/linkedin.php:102 widgets/mixcloud.php:102 widgets/pinterest.php:102
#: widgets/reddit.php:102 widgets/slideshare.php:102 widgets/soundcloud.php:102
#: widgets/spotify.php:102 widgets/twitch.php:102 widgets/twitframe.php:102
#: widgets/vimeo_addon.php:102 widgets/youtube_addon.php:102
msgid "https://your-link.com"
msgstr ""
#: widgets/Sirv.php:112
msgid "Sirv Other Settings"
msgstr ""
#: widgets/Sirv.php:119 widgets/appointly.php:119 widgets/bandcamp.php:119
#: widgets/codepen.php:119 widgets/creddle.php:119 widgets/dailymotion.php:118
#: widgets/dartfish.php:119 widgets/facebook.php:119 widgets/genial.php:119
#: widgets/giphy.php:119 widgets/google-map.php:119 widgets/imgur.php:119
#: widgets/invison.php:119 widgets/jotform.php:119 widgets/kuula.php:119
#: widgets/linkedin.php:119 widgets/mixcloud.php:119 widgets/pinterest.php:119
#: widgets/reddit.php:119 widgets/slideshare.php:119 widgets/soundcloud.php:119
#: widgets/spotify.php:119 widgets/twitch.php:119 widgets/twitframe.php:119
#: widgets/vimeo_addon.php:119 widgets/youtube_addon.php:119
msgid "Width"
msgstr ""
#: widgets/Sirv.php:147 widgets/appointly.php:148 widgets/bandcamp.php:147
#: widgets/codepen.php:147 widgets/creddle.php:147 widgets/dailymotion.php:146
#: widgets/dartfish.php:147 widgets/facebook.php:147 widgets/genial.php:147
#: widgets/giphy.php:147 widgets/google-map.php:147 widgets/invison.php:147
#: widgets/jotform.php:147 widgets/kuula.php:147 widgets/linkedin.php:147
#: widgets/mixcloud.php:147 widgets/pinterest.php:147 widgets/reddit.php:147
#: widgets/slideshare.php:147 widgets/soundcloud.php:147
#: widgets/spotify.php:147 widgets/twitch.php:147 widgets/twitframe.php:147
#: widgets/vimeo_addon.php:147 widgets/youtube_addon.php:147
msgid "Height"
msgstr ""
#: widgets/appointly.php:40
msgid "appointly Embed Player"
msgstr ""
#: widgets/appointly.php:90
msgid "appointly Content Settings"
msgstr ""
#: widgets/appointly.php:99 widgets/dartfish.php:99 widgets/invison.php:99
#: widgets/jotform.php:99 widgets/soundcloud.php:99 widgets/vimeo_addon.php:99
#: widgets/youtube_addon.php:99
msgid "Video Link"
msgstr ""
#: widgets/appointly.php:112
msgid "appointly Other Settings"
msgstr ""
#: widgets/bandcamp.php:40
msgid "bandcamp Embed Player"
msgstr ""
#: widgets/bandcamp.php:90
msgid "bandcamp Content Settings"
msgstr ""
#: widgets/bandcamp.php:99
msgid "bandcamp Link"
msgstr ""
#: widgets/bandcamp.php:112
msgid "bandcamp Other Settings"
msgstr ""
#: widgets/codepen.php:40
msgid "Codepen Embed"
msgstr ""
#: widgets/codepen.php:90
msgid "Codepen Content Settings"
msgstr ""
#: widgets/codepen.php:99
msgid "Codepen Link"
msgstr ""
#: widgets/codepen.php:112
msgid "Codepen Other Settings"
msgstr ""
#: widgets/creddle.php:40
msgid "creddle Embed"
msgstr ""
#: widgets/creddle.php:90
msgid "creddle Content Settings"
msgstr ""
#: widgets/creddle.php:99
msgid "creddle Link"
msgstr ""
#: widgets/creddle.php:112
msgid "creddle Other Settings"
msgstr ""
#: widgets/dailymotion.php:40
msgid "dailymotion Embed"
msgstr ""
#: widgets/dailymotion.php:90
msgid "dailymotion Content Settings"
msgstr ""
#: widgets/dailymotion.php:99
msgid "dailymotion Link"
msgstr ""
#: widgets/dailymotion.php:112
msgid "dailymotion Other Settings"
msgstr ""
#: widgets/dartfish.php:40
msgid "dartfish Embed Player"
msgstr ""
#: widgets/dartfish.php:90
msgid "dartfish Player Content Settings"
msgstr ""
#: widgets/dartfish.php:112
msgid "Player Other Settings"
msgstr ""
#: widgets/facebook.php:40
msgid "facebook Embed"
msgstr ""
#: widgets/facebook.php:90
msgid "facebook Content Settings"
msgstr ""
#: widgets/facebook.php:99
msgid "facebook Link"
msgstr ""
#: widgets/facebook.php:112
msgid "facebook Other Settings"
msgstr ""
#: widgets/genial.php:40
msgid "genial Embed"
msgstr ""
#: widgets/genial.php:90
msgid "genial Content Settings"
msgstr ""
#: widgets/genial.php:99
msgid "genial Link"
msgstr ""
#: widgets/genial.php:112
msgid "genial Other Settings"
msgstr ""
#: widgets/giphy.php:40
msgid "giphy Embed Player"
msgstr ""
#: widgets/giphy.php:90
msgid "Giphy Content Settings"
msgstr ""
#: widgets/giphy.php:99
msgid "Giphy Link"
msgstr ""
#: widgets/giphy.php:112
msgid "Giphy Other Settings"
msgstr ""
#: widgets/google-map.php:40
msgid "Google Map Embed"
msgstr ""
#: widgets/google-map.php:90
msgid "Map Content Settings"
msgstr ""
#: widgets/google-map.php:99
msgid "Map Link"
msgstr ""
#: widgets/google-map.php:112
msgid "Map Other Settings"
msgstr ""
#: widgets/imgur.php:40
msgid "imgur Embed"
msgstr ""
#: widgets/imgur.php:90
msgid "imgur Content Settings"
msgstr ""
#: widgets/imgur.php:99
msgid "imgur Link"
msgstr ""
#: widgets/imgur.php:112
msgid "imgur Other Settings"
msgstr ""
#: widgets/invison.php:40
msgid "invison Embed"
msgstr ""
#: widgets/invison.php:90
msgid "invison Content Settings"
msgstr ""
#: widgets/invison.php:112
msgid "invison Other Settings"
msgstr ""
#: widgets/jotform.php:40
msgid "jotform Embed Form"
msgstr ""
#: widgets/jotform.php:90
msgid "jotform Content Settings"
msgstr ""
#: widgets/jotform.php:112
msgid "jotform Other Settings"
msgstr ""
#: widgets/kuula.php:40
msgid "kuula Embed"
msgstr ""
#: widgets/kuula.php:90
msgid "kuula Content Settings"
msgstr ""
#: widgets/kuula.php:99
msgid "kuula Link"
msgstr ""
#: widgets/kuula.php:112
msgid "kuula Other Settings"
msgstr ""
#: widgets/linkedin.php:40
msgid "linkedin Embed"
msgstr ""
#: widgets/linkedin.php:90
msgid "linkedin Content Settings"
msgstr ""
#: widgets/linkedin.php:99
msgid "linkedin Link"
msgstr ""
#: widgets/linkedin.php:112
msgid "linkedin Other Settings"
msgstr ""
#: widgets/mixcloud.php:40
msgid "mixcloud Player"
msgstr ""
#: widgets/mixcloud.php:90
msgid "mixcloud Content Settings"
msgstr ""
#: widgets/mixcloud.php:99
msgid "mixcloud Link"
msgstr ""
#: widgets/mixcloud.php:112
msgid "mixcloud Other Settings"
msgstr ""
#: widgets/pinterest.php:40
msgid "pinterest Embed"
msgstr ""
#: widgets/pinterest.php:90
msgid "pinterest Content Settings"
msgstr ""
#: widgets/pinterest.php:99
msgid "pinterest Link"
msgstr ""
#: widgets/pinterest.php:112
msgid "pinterest Other Settings"
msgstr ""
#: widgets/reddit.php:40
msgid "reddit Embed"
msgstr ""
#: widgets/reddit.php:90
msgid "reddit Content Settings"
msgstr ""
#: widgets/reddit.php:99
msgid "reddit Link"
msgstr ""
#: widgets/reddit.php:112
msgid "reddit Other Settings"
msgstr ""
#: widgets/slideshare.php:40
msgid "Slideshare Embed"
msgstr ""
#: widgets/slideshare.php:90
msgid "Slideshare Content Settings"
msgstr ""
#: widgets/slideshare.php:99
msgid "Slideshare Link"
msgstr ""
#: widgets/slideshare.php:112
msgid "Slideshare Other Settings"
msgstr ""
#: widgets/soundcloud.php:40
msgid "Soundcloud Embed Player"
msgstr ""
#: widgets/soundcloud.php:90
msgid "Soundcloud Player Content Settings"
msgstr ""
#: widgets/soundcloud.php:112
msgid "Soundcloud Player Other Settings"
msgstr ""
#: widgets/spotify.php:40
msgid "Spotify Embed Player"
msgstr ""
#: widgets/spotify.php:90
msgid "spotify Player Content Settings"
msgstr ""
#: widgets/spotify.php:99
msgid "Spotify Link"
msgstr ""
#: widgets/spotify.php:112
msgid "Spotify Player Other Settings"
msgstr ""
#: widgets/twitch.php:40
msgid "twitch Embed Player"
msgstr ""
#: widgets/twitch.php:90
msgid "twitch Content Settings"
msgstr ""
#: widgets/twitch.php:99
msgid "twitch Link"
msgstr ""
#: widgets/twitch.php:112
msgid "twitch Player Other Settings"
msgstr ""
#: widgets/twitframe.php:40
msgid "twitframe Embed"
msgstr ""
#: widgets/twitframe.php:90
msgid "twitframe Content Settings"
msgstr ""
#: widgets/twitframe.php:99
msgid "twitframe Link"
msgstr ""
#: widgets/twitframe.php:112
msgid "twitframe Player Other Settings"
msgstr ""
#: widgets/vimeo_addon.php:40
msgid "Vimeo Embed Player"
msgstr ""
#: widgets/vimeo_addon.php:90
msgid "Vimeo Player Content Settings"
msgstr ""
#: widgets/vimeo_addon.php:112
msgid "Vimeo Player Other Settings"
msgstr ""
#: widgets/youtube_addon.php:40
msgid "Youtube Embed Player"
msgstr ""
#: widgets/youtube_addon.php:90
msgid "Youtube Player Content Settings"
msgstr ""
#: widgets/youtube_addon.php:112
msgid "Youtube Player Other Settings"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "All Embed Addons for elementor"
msgstr ""
#. Description of the plugin/theme
msgid "Collection of All types of Embed files such as YouTube, Vimeo and more...."
msgstr ""
#. Author of the plugin/theme
msgid "bPlugins LLC"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://bPlugins.com"
msgstr ""

View File

@@ -1,50 +0,0 @@
{
"name": "all-in-one-music-player",
"title": "All in One Music Player",
"version": "1.0.0",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/sanzeeb3/music-player.git"
},
"license": "GPL-3.0+",
"main": "Gruntfile.js",
"scripts": {
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"dev": "cross-env BABEL_ENV=default webpack --watch"
},
"devDependencies": {
"autoprefixer": "~9.1.5",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.1",
"grunt": "~1.3.0",
"lint-staged": "^9.5.0",
"grunt-checktextdomain": "~1.0.1",
"grunt-contrib-compress": "^1.5.0",
"grunt-contrib-cssmin": "~2.2.1",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "~1.1.0",
"grunt-phpcs": "~0.4.0",
"grunt-postcss": "~0.9.0",
"grunt-replace": "^2.0.2",
"grunt-rtlcss": "~2.0.1",
"grunt-sass": "~3.0.1",
"grunt-stylelint": "~0.10.1",
"grunt-wp-i18n": "^1.0.3",
"node-sass": "^4.14.1",
"stylelint": "~9.5.0",
"webpack": "^3.1.0",
"husky": "^3.1.0"
},
"engines": {
"node": ">=8.9.3",
"npm": ">=5.5.1"
},
"dependencies": {
"save": "^2.3.3"
}
}

View File

@@ -1,50 +0,0 @@
# Copyright (C) 2021 Sanjeev Aryal
# This file is distributed under the same license as the All in One Music Player package.
msgid ""
msgstr ""
"Project-Id-Version: All in One Music Player 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-06-18 04:53:28+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"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: src/Plugin.php:243
msgid "No music player selected."
msgstr ""
#: templates/a-player.php:2 templates/circular-spikes.php:5
msgid "Searching media files..."
msgstr ""
#: templates/a-player.php:3 templates/circular-spikes.php:6
msgid "Please upload your audio files in the media library."
msgstr ""
#: templates/flat-black.php:5
msgid "Hide Playlist"
msgstr ""
#: templates/flat-black.php:57
msgid "Show Playlist"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "All in One Music Player"
msgstr ""
#. Description of the plugin/theme
msgid "Easily embed your favourite music player in your website."
msgstr ""
#. Author of the plugin/theme
msgid "Sanjeev Aryal"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://www.sanjeebaryal.com.np"
msgstr ""

View File

@@ -1,353 +0,0 @@
# 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 ""

View File

@@ -1,6 +0,0 @@
*** WP Davies Alpha Insights ***
= 2020.10.2 - version 1.0.0 =
* Initial release
// Fix, Tweak, Feature, Update, Add, Remove

View File

@@ -1,281 +0,0 @@
# Copyright (C) 2021 Ali Ali
# This file is distributed under the same license as the Alpha Price Table For Elementor plugin.
msgid ""
msgstr ""
"Project-Id-Version: Alpha Price Table For Elementor 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/alpha-price-table-for-elementor\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-06-05T02:56:49+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: alpha-pricetable-for-elementor\n"
#. Plugin Name of the plugin
msgid "Alpha Price Table For Elementor"
msgstr ""
#. Description of the plugin
msgid "Premium Price Table 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-pricetable.php:87
msgid "%1$sAlpha Price Table for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be active. Please activate Elementor to continue."
msgstr ""
#: include/alpha-pricetable.php:88
msgid "Activate Elementor"
msgstr ""
#. translators: 1: Just text decoration 2: Just text decoration
#: include/alpha-pricetable.php:95
msgid "%1$sAlpha Price Table for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be installed and activated. Please install Elementor to continue."
msgstr ""
#: include/alpha-pricetable.php:96
msgid "Install Elementor"
msgstr ""
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
#: include/alpha-pricetable.php:110
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
msgstr ""
#: include/alpha-pricetable.php:111
msgid "Alpha Price Table for Elementor"
msgstr ""
#: include/alpha-pricetable.php:112
msgid "Elementor"
msgstr ""
#. translators: 1: Plugin name 2: Required PHP version
#: include/alpha-pricetable.php:126
msgid "\"%1$s\" requires PHP version %2$s or greater."
msgstr ""
#: include/alpha-pricetable.php:127
#: include/alpha_price_table.php:21
msgid "Alpha Price Table"
msgstr ""
#: include/alpha_price_table.php:36
#: include/alpha_price_table.php:227
msgid "Header"
msgstr ""
#: include/alpha_price_table.php:43
#: include/alpha_price_table.php:263
msgid "Title"
msgstr ""
#: include/alpha_price_table.php:45
msgid "Enter your title"
msgstr ""
#: include/alpha_price_table.php:52
msgid "Alignment"
msgstr ""
#: include/alpha_price_table.php:57
msgid "Left"
msgstr ""
#: include/alpha_price_table.php:61
msgid "Center"
msgstr ""
#: include/alpha_price_table.php:65
msgid "Right"
msgstr ""
#: include/alpha_price_table.php:78
msgid "Description"
msgstr ""
#: include/alpha_price_table.php:80
msgid "Enter your description"
msgstr ""
#: include/alpha_price_table.php:87
msgid "Heading Tag"
msgstr ""
#: include/alpha_price_table.php:105
#: include/alpha_price_table.php:323
msgid "Features"
msgstr ""
#: include/alpha_price_table.php:114
msgid "Text"
msgstr ""
#: include/alpha_price_table.php:116
msgid "List Item"
msgstr ""
#: include/alpha_price_table.php:128
msgid "Icon"
msgstr ""
#: include/alpha_price_table.php:138
msgid "Icon Color"
msgstr ""
#: include/alpha_price_table.php:150
msgid "Icon Position"
msgstr ""
#: include/alpha_price_table.php:154
msgid "Before"
msgstr ""
#: include/alpha_price_table.php:155
msgid "After"
msgstr ""
#: include/alpha_price_table.php:170
msgid "List Item #1"
msgstr ""
#: include/alpha_price_table.php:175
msgid "List Item #2"
msgstr ""
#: include/alpha_price_table.php:180
msgid "List Item #3"
msgstr ""
#: include/alpha_price_table.php:194
#: include/alpha_price_table.php:400
msgid "Footer"
msgstr ""
#: include/alpha_price_table.php:201
msgid "Button Text"
msgstr ""
#: include/alpha_price_table.php:203
msgid "Click Here"
msgstr ""
#: include/alpha_price_table.php:210
msgid "Link"
msgstr ""
#: include/alpha_price_table.php:212
msgid "https://your-link.com"
msgstr ""
#: include/alpha_price_table.php:236
#: include/alpha_price_table.php:332
#: include/alpha_price_table.php:409
#: include/alpha_price_table.php:502
#: include/alpha_price_table.php:587
msgid "Background Color"
msgstr ""
#: include/alpha_price_table.php:251
#: include/alpha_price_table.php:344
#: include/alpha_price_table.php:420
msgid "Padding"
msgstr ""
#: include/alpha_price_table.php:272
#: include/alpha_price_table.php:301
#: include/alpha_price_table.php:356
msgid "Color"
msgstr ""
#: include/alpha_price_table.php:292
msgid "Sub Title"
msgstr ""
#: include/alpha_price_table.php:381
msgid "Width"
msgstr ""
#: include/alpha_price_table.php:432
msgid "Button"
msgstr ""
#: include/alpha_price_table.php:444
msgid "Size"
msgstr ""
#: include/alpha_price_table.php:448
msgid "Extra Small"
msgstr ""
#: include/alpha_price_table.php:449
msgid "Small"
msgstr ""
#: include/alpha_price_table.php:450
msgid "Medium"
msgstr ""
#: include/alpha_price_table.php:451
msgid "Large"
msgstr ""
#: include/alpha_price_table.php:452
msgid "Extra Large"
msgstr ""
#: include/alpha_price_table.php:465
msgid "Normal"
msgstr ""
#: include/alpha_price_table.php:475
#: include/alpha_price_table.php:573
msgid "Text Color"
msgstr ""
#: include/alpha_price_table.php:531
msgid "Border Radius"
msgstr ""
#: include/alpha_price_table.php:546
msgid "Text Padding"
msgstr ""
#: include/alpha_price_table.php:563
msgid "Hover"
msgstr ""
#: include/alpha_price_table.php:601
msgid "Border Color"
msgstr ""
#: include/alpha_price_table.php:615
msgid "Animation"
msgstr ""
#: include/alpha_price_table.php:632
msgid "Table"
msgstr ""
#: include/alpha_price_table.php:641
msgid "Overflow"
msgstr ""
#: include/alpha_price_table.php:645
msgid "Hidden"
msgstr ""
#: include/alpha_price_table.php:646
msgid "Visible"
msgstr ""

View File

@@ -1,222 +0,0 @@
# Copyright (C) 2021 Ali Ali
# This file is distributed under the same license as the Alpha Single Product For Elementor plugin.
msgid ""
msgstr ""
"Project-Id-Version: Alpha Single Product For Elementor 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/alpha-single-product-for-elementor\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-06-09T04:33:58+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: alpha-single-product-for-elementor\n"
#. Plugin Name of the plugin
msgid "Alpha Single Product For Elementor"
msgstr ""
#. Description of the plugin
msgid "Single WooCommerce Product Widget Addon For Elementor."
msgstr ""
#. Author of the plugin
msgid "Ali Ali"
msgstr ""
#. Author URI of the plugin
msgid "https://github.com/Ali-A-Ali"
msgstr ""
#: include/alpha-sp.php:80
#: include/alpha_sp_product.php:463
msgid "Go to cart"
msgstr ""
#. translators: 1: Just text decoration 2: Just text decoration
#: include/alpha-sp.php:109
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be active. Please activate Elementor to continue."
msgstr ""
#: include/alpha-sp.php:110
msgid "Activate Elementor"
msgstr ""
#. translators: 1: Just text decoration 2: Just text decoration
#: include/alpha-sp.php:117
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be installed and activated. Please install Elementor to continue."
msgstr ""
#: include/alpha-sp.php:118
msgid "Install Elementor"
msgstr ""
#. translators: 1: Just text decoration 2: Just text decoration
#: include/alpha-sp.php:137
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"WooCommerce\"%2$s plugin to be active. Please activate WooCommerce to continue."
msgstr ""
#: include/alpha-sp.php:138
msgid "Activate WooCommerce"
msgstr ""
#. translators: 1: Just text decoration 2: Just text decoration
#: include/alpha-sp.php:145
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"WooCommerce\"%2$s plugin to be installed and activated. Please install WooCommerce to continue."
msgstr ""
#: include/alpha-sp.php:146
msgid "Install WooCommerce"
msgstr ""
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
#: include/alpha-sp.php:160
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
msgstr ""
#: include/alpha-sp.php:161
msgid "Alpha Single Product Widget for Elementor"
msgstr ""
#: include/alpha-sp.php:162
msgid "Elementor"
msgstr ""
#. translators: 1: Plugin name 2: Required PHP version
#: include/alpha-sp.php:176
msgid "\"%1$s\" requires PHP version %2$s or greater."
msgstr ""
#: include/alpha-sp.php:177
msgid "Alpha Single Product Widget"
msgstr ""
#: include/alpha_sp_product.php:20
msgid "Alpha SP Widget"
msgstr ""
#: include/alpha_sp_product.php:36
msgid "Query Settings"
msgstr ""
#: include/alpha_sp_product.php:43
msgid "Select Product"
msgstr ""
#: include/alpha_sp_product.php:57
msgid "Product Settings"
msgstr ""
#: include/alpha_sp_product.php:63
msgid "Hide Title"
msgstr ""
#: include/alpha_sp_product.php:74
msgid "Hide Price"
msgstr ""
#: include/alpha_sp_product.php:85
msgid "Action Button Text"
msgstr ""
#: include/alpha_sp_product.php:87
msgid "ADD TO CART"
msgstr ""
#: include/alpha_sp_product.php:94
msgid "Add CSS Class"
msgstr ""
#: include/alpha_sp_product.php:102
msgid "Product Image Size"
msgstr ""
#: include/alpha_sp_product.php:111
msgid "Width"
msgstr ""
#: include/alpha_sp_product.php:122
msgid "Height"
msgstr ""
#: include/alpha_sp_product.php:136
msgid "Style"
msgstr ""
#: include/alpha_sp_product.php:144
msgid "Padding"
msgstr ""
#: include/alpha_sp_product.php:156
#: include/alpha_sp_product.php:211
#: include/alpha_sp_product.php:254
msgid "Margin"
msgstr ""
#: include/alpha_sp_product.php:169
msgid "Product Title"
msgstr ""
#: include/alpha_sp_product.php:187
msgid "Title Color"
msgstr ""
#: include/alpha_sp_product.php:199
msgid "Title Hover Color"
msgstr ""
#: include/alpha_sp_product.php:224
msgid "Product Price"
msgstr ""
#: include/alpha_sp_product.php:233
msgid "Price Color"
msgstr ""
#: include/alpha_sp_product.php:269
msgid "Action Button Style"
msgstr ""
#: include/alpha_sp_product.php:277
msgid "Button"
msgstr ""
#: include/alpha_sp_product.php:291
msgid "Normal"
msgstr ""
#: include/alpha_sp_product.php:298
#: include/alpha_sp_product.php:387
msgid "Text Color"
msgstr ""
#: include/alpha_sp_product.php:319
#: include/alpha_sp_product.php:398
msgid "Background Color"
msgstr ""
#: include/alpha_sp_product.php:342
msgid "Border Radius"
msgstr ""
#: include/alpha_sp_product.php:354
msgid "Button Padding"
msgstr ""
#: include/alpha_sp_product.php:366
msgid "Button Margin"
msgstr ""
#: include/alpha_sp_product.php:380
msgid "Hover"
msgstr ""
#: include/alpha_sp_product.php:409
msgid "Border Color"
msgstr ""
#: include/alpha_sp_product.php:431
msgid "Select"
msgstr ""

View File

@@ -1,22 +0,0 @@
{
"name": "api-cache-pro",
"version": "0.0.3",
"description": "A simple plugin to cache WP Rest API Requests.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hubbardlabs/api-cache-pro.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hubbardlabs/api-cache-pro/issues"
},
"homepage": "https://github.com/hubbardlabs/api-cache-pro#readme"
}

View File

@@ -1,345 +0,0 @@
# Copyright (C) 2021 aThemes
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: aThemes Blocks 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/athemes-blocks\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-07-23T15:39:37+00:00\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: athemes-blocks\n"
#. Plugin Name of the plugin
msgid "aThemes Blocks"
msgstr ""
#. Description of the plugin
msgid "aThemes Blocks is a Gutenberg plugin extending the WordPress editor with awesome blocks."
msgstr ""
#. Author of the plugin
msgid "aThemes"
msgstr ""
#. Author URI of the plugin
msgid "https://athemes.com"
msgstr ""
#: athemes-blocks.php:36
msgid "aThemes Blocks plugin requires PHP version %s+. Please update your server PHP version to get the plugin working."
msgstr ""
#: athemes-blocks.php:46
msgid "aThemes Blocks plugin requires WordPress version %s+. Please update the WordPress version to get the plugin working."
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:25
msgid "Container Block"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:27
msgid "A style wrapper to combine different blocks in a single row."
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:30
msgid "wrapper"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:31
msgid "athemes"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:32
msgid "container"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:33
msgid "section"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:46
msgid "Lorem ipsum dolor"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/index.js:53
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam id tempus metus. Donec vestibulum, purus at eleifend maximus."
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:107
#: src/components/global-advanced-controls/index.js:29
msgid "General"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:115
#: src/block/container/edit.js:123
#: src/block/container/edit.js:131
msgid "Content Width"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:140
msgid "Border Radius"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:152
msgid "Moves the block to backward or forward"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:154
msgid "Z-index"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:167
msgid "Content Alignment"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:262
msgid "Spacing"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:271
msgid "Paddings"
msgstr ""
#: dist/blocks.build.js:1
#: src/block/container/edit.js:450
msgid "Margins"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/panel-tabs-buttons/index.js:25
msgid "Settings"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/panel-tabs-buttons/index.js:31
msgid "Style"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/panel-tabs-buttons/index.js:37
msgid "Advanced"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/responsive-controls/index.js:141
msgid "Units"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/responsive-controls/index.js:155
msgid "Device"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/advanced-control/index.js:28
msgid "Element ID"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:36
msgid "Background"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:42
msgid "None"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:48
msgid "Color"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:54
msgid "Gradient"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:60
msgid "Image"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:65
msgid "Background Color"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:73
msgid "Gradient Color #1"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:78
msgid "Gradient Color #2"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:83
msgid "Degree"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:92
msgid "Color #1 position"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:101
msgid "Color #2 position"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:127
#: src/components/background-control/index.js:134
msgid "Select a image"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:134
msgid "Replace image"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:150
msgid "Remove Image"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:157
msgid "Background Size"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:161
msgid "Auto"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:162
msgid "Contain"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:163
msgid "Cover"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:167
msgid "Background Position"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:171
msgid "Top left"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:172
msgid "Top center"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:173
msgid "Top right"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:174
msgid "Center left"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:175
msgid "Center"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:176
msgid "Center right"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:177
msgid "Bottom left"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:178
msgid "Bottom center"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:179
msgid "Bottom right"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:183
msgid "Background Attachment"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:187
msgid "Fixed"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:188
msgid "Scroll"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:192
msgid "Background Repeat"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:196
msgid "No repeat"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:197
msgid "Repeat"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:198
msgid "Repeat X"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:199
msgid "Repeat Y"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:200
msgid "Round"
msgstr ""
#: dist/blocks.build.js:1
#: src/components/background-control/index.js:201
msgid "Space"
msgstr ""

View File

@@ -1,272 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: Autodate (Wordpress plugin) 1.0\n"
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/autodate\n"
"POT-Creation-Date: 2021-05-02 11:00+0800\n"
"Last-Translator: \n"
"Language-Team: Sergei Sahapov <s.sahapov@hotmail.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-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#. Description of the plugin
msgid "This plugin allows you to add dates to your site that will update automatically according to the interval you specify"
msgstr ""
#. Plugin Name of the plugin
#: ../php_inc/autodate.php:60
#, php-format
msgid "Autodate"
msgstr ""
#: ../php_inc/autodate.php:60 ../php_inc/autodate.php:362
#, php-format
msgid "Autodate management"
msgstr ""
#: ../php_inc/autodate.php:87
#, php-format
msgid ""
"An error occurred while transferring data.\n"
" Refresh the Autodate page and try changing the data again"
msgstr ""
#: ../php_inc/autodate.php:96
#, php-format
msgid "Failed to update data for field *Short description*"
msgstr ""
#: ../php_inc/autodate.php:102
#, php-format
msgid "Failed to update data for field *When to update the date*"
msgstr ""
#: ../php_inc/autodate.php:108
#, php-format
msgid "Failed to update data for field *Update frequency*"
msgstr ""
#: ../php_inc/autodate.php:114
#, php-format
msgid "Failed to update data for field *Displayed date*"
msgstr ""
#: ../php_inc/autodate.php:120
#, php-format
msgid "Failed to update data for field *How much to shift the date*"
msgstr ""
#: ../php_inc/autodate.php:126
#, php-format
msgid "Failed to update the state of switch *Switched on/Switched off*"
msgstr ""
#: ../php_inc/autodate.php:206
#, php-format
msgid ""
"An error occured while saving your changes.\n"
" Refresh the plugin page"
msgstr ""
#: ../php_inc/autodate.php:209
#, php-format
msgid "New date information has been saved"
msgstr ""
#: ../php_inc/autodate.php:213 ../php_inc/autodate.php:218
#, php-format
msgid "Data changes saved"
msgstr ""
#: ../php_inc/autodate.php:221
#, php-format
msgid ""
"An error occurred while saving data.\n"
" Refresh the Autodate page and try changing the data again"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "does not exist"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Switched on"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Switched off"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Save changes"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Delete this data"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Are you sure you want to delete this data?"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Data has not been deleted!\\n Refresh the Autodate page and try again"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Data deleted successfully"
msgstr ""
#: ../php_inc/autodate.php:357
#, php-format
msgid "Want to add new data?"
msgstr ""
#: ../php_inc/autodate.php:362
#, php-format
msgid "On this plugin page you can: manage automatically updated dates, create new ones, delete existing ones"
msgstr ""
#: ../php_inc/autodate.php:373
#, php-format
msgid "Autodate usage hint"
msgstr ""
#: ../php_inc/autodate.php:376
#, php-format
msgid "How to use Autodate"
msgstr ""
#: ../php_inc/autodate.php:379
#, php-format
msgid "To use the plugin, you need to take a few steps:"
msgstr ""
#: ../php_inc/autodate.php:381
#, php-format
msgid "Create new date (button <strong>Add date</strong>)"
msgstr ""
#: ../php_inc/autodate.php:382
#, php-format
msgid "Customize the date:"
msgstr ""
#: ../php_inc/autodate.php:384
#, php-format
msgid "Specify the value of the <strong>Displayed date</strong>"
msgstr ""
#: ../php_inc/autodate.php:385
#, php-format
msgid "Specify the value of the <strong>How much to shift the date</strong>"
msgstr ""
#: ../php_inc/autodate.php:386
#, php-format
msgid "Specify the value of the <strong>When to update the date</strong>"
msgstr ""
#: ../php_inc/autodate.php:387
#, php-format
msgid "Specify the value of the <strong>Update frequency</strong>"
msgstr ""
#: ../php_inc/autodate.php:388
#, php-format
msgid "For further convenience of editing the date, it is recommended to specify a value for the <strong>short description</strong>"
msgstr ""
#: ../php_inc/autodate.php:391
#, php-format
msgid "Switch on date (<strong>Switched on/Switched off</strong>)<br><em>Please note that if the target date is <strong>switched off</strong>, then it will not be displayed on the site, BUT it will be updated in accordance with the specified settings.</em>"
msgstr ""
#: ../php_inc/autodate.php:392
#, php-format
msgid "Save the date (button <strong>Save changes</strong>)"
msgstr ""
#: ../php_inc/autodate.php:393
#, php-format
msgid "Copy the generated <strong>shortcode</strong>"
msgstr ""
#: ../php_inc/autodate.php:394
#, php-format
msgid "Add <strong>shortcode</strong> to post or page content<br><em>Please note that the date will be displayed in the format specified in your Wordpress settings ( <strong>Settings</strong> --> <strong>General</strong> --> item <strong>Date format</strong> )</em><br>P.S. Please note that the <strong style='color: #f00;'>Autodate only works with the date</strong>, data that determine the time (hours, minutes, seconds) are not taken into account."
msgstr ""
#: ../php_inc/autodate.php:396
#, php-format
msgid "You can also:"
msgstr ""
#: ../php_inc/autodate.php:398
#, php-format
msgid "Delete previously created dates (red button <strong>X</strong>)"
msgstr ""
#: ../php_inc/autodate.php:399
#, php-format
msgid "Edit settings of previously created dates (Remember to save your changes - button <strong>Save changes</strong>)"
msgstr ""
#: ../php_inc/autodate.php:410 ../php_inc/autodate.php:413
#, php-format
msgid "How to manage date settings"
msgstr ""
#: ../php_inc/autodate.php:416
#, php-format
msgid "Let's say the Autodate settings fields contain the following values:"
msgstr ""
#: ../php_inc/autodate.php:416
#, php-format
msgid "<strong>Displayed date:</strong> 15.01.2021"
msgstr ""
#: ../php_inc/autodate.php:416
#, php-format
msgid "How much to shift the date"
msgstr ""
#: ../php_inc/autodate.php:416
#, php-format
msgid "<strong>When to update the date:</strong> 13.01.2021"
msgstr ""
#: ../php_inc/autodate.php:416
#, php-format
msgid "Update frequency"
msgstr ""
#: ../php_inc/autodate.php:416
#, php-format
msgid "This means that until <strong>13.01.2021</strong> the website will display the date <strong>15.01.2021</strong>.<br>From <strong>13.01.2021</strong> to <strong>22.01.2021</strong> <em>(13.01 + 10 is the date of the next update)</em> the date on the website will be as follows: <strong>25.01.2021</strong> <em>(15.01 + 10 is the date shift)</em>"
msgstr ""
#: ../php_inc/autodate.php:424
#, php-format
msgid "<th>Switch on/Switch off </th><th>Shortcode</th><th>Short description</th><th>Displayed date</th><th>How much to shift the date</th><th>When to update the date</th><th>Update frequency</th>"
msgstr ""
#: ../php_inc/autodate.php:424
#, php-format
msgid "Add date"
msgstr ""

View File

@@ -1,6 +0,0 @@
== Changelog ==
= 1.0.1 =
fixed bug in the validate_account function that caused an incorrect response when a valid uname and invalid pin were passed in
= 1.0.0 =
initial release

View File

@@ -1,167 +0,0 @@
# Copyright (C) 2021 Nguyen Pham
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/best-suggestion-boxes"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"Project-Id-Version: Best Suggestion Boxes 1.0.0\n"
"Language-Team: \n"
"Language: en_US\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Best Suggestion Boxes
#: admin/class-admin.php:285
msgid "Best Suggestion Boxes"
msgstr ""
#. A Better Way to Connect With Customers. You don't have time to talk with some online customers? This plugin will help you connect with them.
#: admin/class-admin.php:286
msgid "A Better Way to Connect With Customers. You don't have time to talk with some online customers? This plugin will help you connect with them."
msgstr ""
#. Author of the plugin
msgid "Nguyen Pham"
msgstr ""
#: admin/class-admin.php:60 admin/class-admin.php:216 admin/class-admin.php:221
msgid "Settings"
msgstr ""
#: admin/class-admin.php:198
msgid "Suggestion"
msgstr ""
#: admin/class-admin.php:201 admin/partials/admin-display.php:21
msgid "Add New Screen"
msgstr ""
#: admin/class-admin.php:202 admin/partials/admin-display.php:22
msgid "Add New Suggest"
msgstr ""
#: admin/class-admin.php:222 admin/class-admin.php:289
msgid "Copyright"
msgstr ""
#: admin/class-admin.php:237
msgid "Enable"
msgstr ""
#: admin/class-admin.php:239
msgid "Title"
msgstr ""
#: admin/class-admin.php:240
msgid "Chat with us!"
msgstr ""
#: admin/class-admin.php:243
msgid "Logo"
msgstr ""
#: admin/class-admin.php:247
msgid "Style color"
msgstr ""
#: admin/class-admin.php:250
msgid "Icon Size"
msgstr ""
#: admin/class-admin.php:253
msgid "Title Size"
msgstr ""
#: admin/class-admin.php:256
msgid "Font Size"
msgstr ""
#: admin/class-admin.php:259
msgid "Position"
msgstr ""
#: admin/class-admin.php:261
msgid "Bottom Right"
msgstr ""
#: admin/class-admin.php:262
msgid "Bottom Left"
msgstr ""
#: admin/class-admin.php:263
msgid "Top Right"
msgstr ""
#: admin/class-admin.php:264
msgid "Top Left"
msgstr ""
#: admin/class-admin.php:268
msgid "Padding X"
msgstr ""
#: admin/class-admin.php:271
msgid "Padding Y"
msgstr ""
#: admin/class-admin.php:282 admin/class-admin.php:291
msgid "Section Description"
msgstr ""
#: admin/class-admin.php:294
msgid "Author"
msgstr ""
#: admin/partials/admin-display.php:18
msgid "Screens and Suggestions"
msgstr ""
#: admin/partials/admin-display.php:44 admin/partials/admin-display.php:63
#: admin/partials/admin-display.php:70
msgid "Edit"
msgstr ""
#: admin/partials/admin-display.php:45 admin/partials/admin-display.php:64
#: admin/partials/admin-display.php:70 admin/partials/screen.php:47
#: admin/partials/suggest.php:71
msgid "Delete"
msgstr ""
#: admin/partials/admin-display.php:61
msgid "Suggestions"
msgstr ""
#: admin/partials/admin-display.php:62
msgid "Go to"
msgstr ""
#: admin/partials/screen.php:27
msgid "Screen's name"
msgstr ""
#: admin/partials/screen.php:42
msgid "Name"
msgstr ""
#: admin/partials/screen.php:47 admin/partials/suggest.php:71
msgid "Submit"
msgstr ""
#: admin/partials/suggest.php:28 admin/partials/suggest.php:62
msgid "Message"
msgstr ""
#: admin/partials/suggest.php:43
msgid "Screen"
msgstr ""
#: admin/partials/suggest.php:52
msgid "Click go to screen"
msgstr ""
#: admin/partials/suggest.php:54
msgid "None"
msgstr ""

View File

@@ -1,83 +0,0 @@
# 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 ""

View File

@@ -1,29 +0,0 @@
{
"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"
}
}

View File

@@ -1,5 +0,0 @@
*** Changelog ***
= 1.0.0 - 2021-06-17 =
* Initial Release

View File

@@ -1,27 +0,0 @@
{
"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"
}
}

View File

@@ -1,217 +0,0 @@
# 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 ""

View File

@@ -1,12 +0,0 @@
# Changelog
## 1.0.1 _(2021-07-13)_
* Change: Note compatibility through WP 5.7+
* Change: Add a tad more to the plugin's longer description
* Change: Update copyright date (2021)
* Change: Trivial code tweaks
* Change: Fix typo in inline parameter documentation
* Change: Unit tests: Move `phpunit/` into `tests/`
## 1.0 _(2020-08-07)_
* Initial public release.

View File

@@ -1,2 +0,0 @@
/** 1.0.0 - 2021.07.23 **/
~ The first released.

View File

@@ -1,339 +0,0 @@
# Copyright (C) 2021 Vinny Alves
# This file is distributed under the same license as the UseStrict's Calendly Embedder plugin.
msgid ""
msgstr ""
"Project-Id-Version: UseStrict's Calendly Embedder 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cal-embedder-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-08-22T01:24:35+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: cal-embedder-lite\n"
#. Plugin Name of the plugin
msgid "UseStrict's Calendly Embedder"
msgstr ""
#. Plugin URI of the plugin
msgid "https://usestrict.net/cal-embedder-pro"
msgstr ""
#. Description of the plugin
msgid "Simple embedding for Calendly (and soon various other calendar services)."
msgstr ""
#. Author of the plugin
msgid "Vinny Alves"
msgstr ""
#. Author URI of the plugin
msgid "https://usestrict.consulting"
msgstr ""
#: admin-settings.tmpl.php:9
msgid "Refresh URLs"
msgstr ""
#. translators: the plugin version
#: admin-settings.tmpl.php:23
msgid "UseStrict's Calendly Embedder (v%s)"
msgstr ""
#: admin-settings.tmpl.php:26
msgid "API Key"
msgstr ""
#: admin-settings.tmpl.php:31
msgid "Please enter your Calendly API key below and click \"Connect\". This will help us get your Event Types from Calendly and display them in the shortcode builder."
msgstr ""
#: admin-settings.tmpl.php:33
msgid "Connect"
msgstr ""
#: admin-settings.tmpl.php:37
msgid "Your Calendly API Key."
msgstr ""
#. translators: link to calendly integrations
#: admin-settings.tmpl.php:48
msgid "You can find it <a href=\"%s\" target=\"_blank\">here</a>."
msgstr ""
#: admin-settings.tmpl.php:70
msgid "Disconnect"
msgstr ""
#: admin-settings.tmpl.php:90
msgid "Shortcode Builder"
msgstr ""
#: admin-settings.tmpl.php:96
msgid "Required Fields"
msgstr ""
#: admin-settings.tmpl.php:100
msgid "URL"
msgstr ""
#: admin-settings.tmpl.php:128
msgid "Embed Type"
msgstr ""
#: admin-settings.tmpl.php:131
msgid "Inline"
msgstr ""
#: admin-settings.tmpl.php:132
msgid "Pop-up Text"
msgstr ""
#: admin-settings.tmpl.php:133
msgid "Pop-up Widget"
msgstr ""
#: admin-settings.tmpl.php:140
msgid "Widget Settings"
msgstr ""
#: admin-settings.tmpl.php:145
msgid "Text"
msgstr ""
#: admin-settings.tmpl.php:147
#: cal-embedder-lite.php:235
#: cal-embedder-lite.php:336
msgid "Schedule time with me"
msgstr ""
#: admin-settings.tmpl.php:152
msgid "Color"
msgstr ""
#: admin-settings.tmpl.php:159
#: admin-settings.tmpl.php:243
msgid "Text Color"
msgstr ""
#: admin-settings.tmpl.php:166
msgid "Include Branding"
msgstr ""
#: admin-settings.tmpl.php:176
msgid "Booking Page Settings"
msgstr ""
#: admin-settings.tmpl.php:181
msgid "Prefill User Info"
msgstr ""
#: admin-settings.tmpl.php:186
msgid "Allow Query Strings"
msgstr ""
#: admin-settings.tmpl.php:191
msgid "Min. Width"
msgstr ""
#: admin-settings.tmpl.php:196
msgid "Height"
msgstr ""
#: admin-settings.tmpl.php:201
msgid "Extra Classes"
msgstr ""
#: admin-settings.tmpl.php:206
msgid "Extra Styles"
msgstr ""
#. translators: %d is the number of the custom answer
#: admin-settings.tmpl.php:214
msgid "Custom Answer %d"
msgstr ""
#: admin-settings.tmpl.php:221
msgid "Hide GDPR Banner"
msgstr ""
#: admin-settings.tmpl.php:226
msgid "Hide Landing Page Details"
msgstr ""
#: admin-settings.tmpl.php:231
msgid "Hide Event Type Details"
msgstr ""
#: admin-settings.tmpl.php:236
msgid "Background Color"
msgstr ""
#: admin-settings.tmpl.php:250
msgid "Primary Color"
msgstr ""
#: admin-settings.tmpl.php:260
msgid "Loading..."
msgstr ""
#: admin-settings.tmpl.php:262
msgid "Click to Copy."
msgstr ""
#: admin-settings.tmpl.php:263
msgid "Copied!"
msgstr ""
#: admin-settings.tmpl.php:264
msgid "Click to copy."
msgstr ""
#: admin-settings.tmpl.php:267
msgid "Instructions"
msgstr ""
#: admin-settings.tmpl.php:268
msgid "Select the options and then click the \"copy\" link to copy the shortcode into the clipboard. Then paste it in the post/page where you want the Calendly widget to appear."
msgstr ""
#: admin-settings.tmpl.php:269
msgid "Required Fields:"
msgstr ""
#: admin-settings.tmpl.php:272
msgid "URL:"
msgstr ""
#: admin-settings.tmpl.php:273
msgid "This is the URL that is passed to the Calendly widget. Choose the \"Profile\" URL to display all of your Event Types."
msgstr ""
#: admin-settings.tmpl.php:276
msgid "Embed Type:"
msgstr ""
#. translators: link to Calendly help
#: admin-settings.tmpl.php:279
msgid "See <a href=\"%s\" target=\"_blank\">this</a> for information on each type."
msgstr ""
#: admin-settings.tmpl.php:284
msgid "Booking Page Fields"
msgstr ""
#: admin-settings.tmpl.php:287
msgid "Prefill User Info:"
msgstr ""
#: admin-settings.tmpl.php:288
msgid "Turn this on if you want to pre-populate the booking form with the logged-in user's Name, First and Last Name, and Email, depending on your form fields."
msgstr ""
#: admin-settings.tmpl.php:291
msgid "Allow Query Strings:"
msgstr ""
#: admin-settings.tmpl.php:292
msgid "Whether to allow Calendly to fetch information from the page URL. If the user is logged in, the Prefill information will take precedence."
msgstr ""
#: admin-settings.tmpl.php:295
msgid "Min. Width and Height:"
msgstr ""
#: admin-settings.tmpl.php:296
msgid "Adjust dimensions of the iframe that Calendly creates."
msgstr ""
#: admin-settings.tmpl.php:299
msgid "Custom Answers 1 to 10:"
msgstr ""
#. translators: Calendly help URL
#: admin-settings.tmpl.php:302
msgid "Calendly allows for up to 10 extra fields of various types. They explain the values you can enter <a href=\"%s\" target=\"_blank\">here</a>."
msgstr ""
#. translators: Link to plugin author site
#: admin-settings.tmpl.php:311
msgid "For more powerful control of your widgets, check out our Calendly Embedder Pro plugin over at <a href=\"%s\">UseStrict Consulting</a>."
msgstr ""
#: admin-settings.tmpl.php:314
msgid "Features include:"
msgstr ""
#: admin-settings.tmpl.php:316
msgid "Save your shortcodes in the shortcode library for ease of use."
msgstr ""
#: admin-settings.tmpl.php:317
msgid "Embed using a Gutenberg block."
msgstr ""
#: admin-settings.tmpl.php:318
msgid "Embed using an Elementor widget."
msgstr ""
#: admin-settings.tmpl.php:319
msgid "Setting Google Analytics variables (Campaign, Source, Medium, Content and Term)"
msgstr ""
#: admin-settings.tmpl.php:320
msgid "Track interaction such as:"
msgstr ""
#: admin-settings.tmpl.php:322
msgid "Profile page was viewed"
msgstr ""
#: admin-settings.tmpl.php:323
msgid "Event type page was viewed"
msgstr ""
#: admin-settings.tmpl.php:324
msgid "Invitee selected date and time"
msgstr ""
#: admin-settings.tmpl.php:325
msgid "Invitee successfully booked a meeting"
msgstr ""
#: cal-embedder-lite.php:182
msgid "You MUST provide a URL for the Calendly shortcode"
msgstr ""
#. translators: 1: the type of shortcode 2: the widget type
#: cal-embedder-lite.php:195
msgid "I do not know how to handle these attributes. type: \"%1$s\", widget: \"%2$s\""
msgstr ""
#: cal-embedder-lite.php:550
msgid "Missing or bad nonce"
msgstr ""
#. translators: 1: the Calendly account holder's name
#: cal-embedder-lite.php:642
msgid "Profile (%1$s)"
msgstr ""
#: cal-embedder-lite.php:680
msgid "The API Key is required"
msgstr ""
#: cal-embedder-lite.php:687
msgid "Disconnected!"
msgstr ""
#: cal-embedder-lite.php:691
msgid "Refreshed!"
msgstr ""
#. translators: the URL of the settings page
#: cal-embedder-lite.php:710
msgid "<a href=\"%s\">Settings</a>"
msgstr ""

View File

@@ -1,23 +0,0 @@
{
"name": "candescent",
"version": "1.0.0",
"description": "Accessibility Guidance Tool",
"author": "Ignition72",
"license": "GPL-2.0",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update",
"check-licenses": "wp-scripts build & wp-scripts check-licenses --prod --gpl2"
},
"devDependencies": {
"@wordpress/scripts": "^12.1.1"
},
"dependencies": {
"tinycolor2": "^1.4.1"
}
}

View File

@@ -1,33 +0,0 @@
*** Changelog ***
= 2.0.4 - 2021-06-14 =
* Update - readme.txt
* Add - changelog.txt
= 2.0.3 - 2021-06-09 =
* Fix - Renaming gateway ID from `centrobill_cc` to `centrobill`
* Fix - Substring SKU title (max length - 64 chars)
= 2.0.2 - 2021-04-29 =
* Add - Enable/disable cardholder name field on checkout form
= 2.0.1 - 2021-04-26 =
* Add - Collect browser info to payment requests (for 3DS payments)
* Add - Hook `woocommerce_create_order`
* Add - Hook `woocommerce_before_thankyou`
= 2.0.0 - 2021-04-19 =
* Tweak - Refactored code base
* Add - Credit Card form
* Add - Bancontact
* Add - EPS
* Add - Giropay
* Add - iDeal
* Add - MyBank
* Add - Online Banking
* Add - Przelewy24
* Add - SEPA Direct Debit
* Add - SOFORT Banking
= 1.0.0 - 2018-01-11 =
* First Release

View File

@@ -1,28 +0,0 @@
# 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"

View File

@@ -1,80 +0,0 @@
# 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 ""

View File

@@ -1,28 +0,0 @@
{
"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"
}
}

View File

@@ -1,29 +0,0 @@
{
"name": "checkout-field-customizer",
"version": "1.0.0",
"description": "Woocommerce Checkout Field Customizer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"axios": "^0.21.0",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.25",
"qs": "^6.9.4",
"resolve-url-loader": "^4.0.0",
"sass": "^1.30.0",
"sass-loader": "^8.0.2",
"vue": "^2.6.12",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"vue-js-modal": "^2.0.0-rc.6",
"vue-sweetalert2": "^4.2.0",
"vuedraggable": "^2.24.3"
}
}

View File

@@ -1,2 +0,0 @@
/*1.0.0.0 - 2021.*/
- Release version 1.0.0

View File

@@ -1,740 +0,0 @@
# Blank WordPress Pot
# Copyright 2014 ...
# This file is distributed under the GNU General Public License v3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Cocoon Scenery Color v1.0.0\n"
"POT-Creation-Date: 2021-06-21 20:07+0900\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: lacaraterra.site<https://lacaraterra.site/>\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-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;_e_my;__my;my_generate_tips_tag;translateText\n"
"X-Poedit-Basepath: ..\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: languages\n"
"X-Poedit-SearchPathExcluded-1: options\n"
#: cocoon-scenery-color.php:142 cocoon-scenery-color.php:360
msgid "カラー設定"
msgstr "Color setting"
#: cocoon-scenery-color.php:143 cocoon-scenery-color.php:343
msgid "サイトカラー設定"
msgstr "Site color setting"
#: cocoon-scenery-color.php:191 cocoon-scenery-color.php:236
msgid "設定は保存されました。"
msgstr "The settings have been saved."
#: cocoon-scenery-color.php:346
msgid "サイトカラーの設定"
msgstr "Site color setting"
#: cocoon-scenery-color.php:348
msgid "サイトのカラーを設定します。"
msgstr "Set the color of the site."
#: cocoon-scenery-color.php:363 cocoon-scenery-color.php:441
msgid "全ての投稿、固定ページに設定したカラーが適用されます。"
msgstr "The color set for all posts and fixed pages will be applied."
#: cocoon-scenery-color.php:378
msgid "プレビュー"
msgstr "Preview"
#: cocoon-scenery-color.php:380
msgid "個別にコピーする場合は各項目をダブルクリックします。"
msgstr "Double-click each item to copy them individually."
#: cocoon-scenery-color.php:380
msgid "一括コピー →"
msgstr "Bulk copy →"
#: cocoon-scenery-color.php:382 cocoon-scenery-color.php:461
msgid "カラーの作成"
msgstr "Color creation"
#: cocoon-scenery-color.php:386
msgid "ダブルクリックで右側へコピーします。"
msgstr "Double-click to copy to the right."
#: cocoon-scenery-color.php:436
msgid "カラーを選択してください"
msgstr "Please select a color"
#: cocoon-scenery-color.php:440
msgid "サイトカラーの変更"
msgstr "Change site color"
#: cocoon-scenery-color.php:440
msgid "サイトのカラーを変更します。"
msgstr "Change the color of the site."
#: cocoon-scenery-color.php:445 cocoon-scenery-color.php:447
msgid "カラー作成後にサイトカラーの変更も行います。"
msgstr "You can also change the site color after creating the color."
#: cocoon-scenery-color.php:446
msgid "サイトカラーの変更も行う"
msgstr "Also change the site color"
#: cocoon-scenery-color.php:455
msgid "カラーの削除"
msgstr "Delete color"
#: cocoon-scenery-color.php:455 cocoon-scenery-color.php:456
msgid "カラーを削除します。"
msgstr "Delete the color."
#: cocoon-scenery-color.php:461 cocoon-scenery-color.php:462
msgid "新しいカラーファイルを作成するか、既存のファイルを変更します。"
msgstr "Create a new color file or modify an existing file."
#: select-color.js:49
msgid "プレビュー画像がありません"
msgstr "No preview image"
#: select-color.js:115
msgid "[カラーの名称]:ファイル名に指定できない文字が含まれています。"
msgstr "'Color name': The file name contains characters that cannot be specified."
#: select-color.js:144
msgid "[カラーの名称]:カラーの原本は変更できません。名称を変更し新たなカラーとして作成してください。"
msgstr "'Color name': The original color cannot be changed.Please change the name and create it as a new color."
msgid "クリックでカラーパレットを表示します。"
msgstr "Click to display the color palette."
msgid "カラーの説明"
msgstr "Color description"
msgid "カラーの名称(ファイル名)"
msgstr "Color name (file name)"
msgid "サイトキーカラー"
msgstr "Site key color"
msgid "サイトキーテキストカラー"
msgstr "Site key text color"
msgid "サイト選択文字色"
msgstr "Site selection text color"
msgid "サイト内のテキストを選択した際の文字色を指定します。"
msgstr "Specifies the text color when selecting text on the site."
msgid "サイト選択文字背景色"
msgstr "Site selection text background color"
msgid "サイト内のテキストを選択した際の背景色を指定します。"
msgstr "Specifies the background color when selecting text on the site."
msgid "サイトフォント"
msgstr "Site font"
msgid "ヒラギノ角ゴ, メイリオ"
msgstr "Hiragino Kakugo, Meirio"
msgid "メイリオ, ヒラギノ角ゴ"
msgstr "Meiryo, Hiragino Kaku Gothic Pro"
msgid "游ゴシック体, ヒラギノ角ゴ"
msgstr "YuGothic, Hiragino Kaku Gothic Pro"
msgid " Pゴシック, ヒラギノ角ゴ"
msgstr "MS P Gothic, Hiragino Kaku Gothic Pro"
msgid "Noto Sans JPWEBフォント"
msgstr "Noto Sans JP (web font)"
msgid "Noto Serif JPWEBフォント"
msgstr "Noto Serif JP (web font)"
msgid "Mplus 1pWEBフォント"
msgstr "Mplus 1p (web font)"
msgid "Rounded Mplus 1cWEBフォント"
msgstr "Rounded Mplus 1c (web font)"
msgid "小杉ゴシックWEBフォント"
msgstr "Kosugi Gothic (web font)"
msgid "小杉丸ゴシックWEBフォント"
msgstr "Kosugimaru Gothic (web font)"
msgid "さわらびゴシックWEBフォント"
msgstr "Sawarabi Gothic (web font)"
msgid "さわらび明朝WEBフォント"
msgstr "Sawarabi Mincho (web font)"
msgid "サイト文字サイズ"
msgstr "Site font size"
msgid "サイト文字の太さ"
msgstr "Site font weight"
msgid "サイト文字色"
msgstr "Site text color"
msgid "サイト背景色"
msgstr "Site background color"
msgid "リンク色"
msgstr "Link color"
msgid "日付フォーマット"
msgstr "Date format"
msgid "ヘッダーの高さ"
msgstr "Header height"
msgid "ヘッダーの高さ(モバイル)"
msgstr "Header height (mobile)"
msgid "ヘッダーの表示形式"
msgstr "Header display format"
msgid "センターロゴ(デフォルト)"
msgstr "Center logo (default)"
msgid "センターロゴ(トップメニュー)"
msgstr "Center logo (top menu)"
msgid "センターロゴ(スリムメニュー)"
msgstr "Center logo (slim menu)"
msgid "センターロゴ(スリムトップメニュー)"
msgstr "Center logo (slim top menu)"
msgid "トップメニュー"
msgstr "Top menu"
msgid "トップメニュー(右寄せ)"
msgstr "Top menu (right-justified)"
msgid "トップメニュー小"
msgstr "Top menu small"
msgid "トップメニュー小(右寄せ)"
msgstr "Top menu small (right-justified)"
msgid "ヘッダー全体背景色"
msgstr "Entire header color"
msgid "ヘッダー全体文字色"
msgstr "Entire header text color"
msgid "ロゴエリア背景色"
msgstr "Logo area background color"
msgid "ロゴ文字色"
msgstr "Logo text color"
msgid "グローバルナビ色"
msgstr "Global navigation color"
msgid "グローバルナビ文字色"
msgstr "Global navigation text color"
msgid "通知エリア背景色"
msgstr "Notification area background color"
msgid "通知エリア文字色"
msgstr "Notification area text color"
msgid "通知タイプ"
msgstr "Notification type"
msgid "通知(緑色)"
msgstr "Notification (green)"
msgid "注意(黄色)"
msgstr "Attention (yellow)"
msgid "警告(赤色)"
msgstr "Warning (red)"
msgid "アピールエリア背景色"
msgstr "Announcement area background color"
msgid "アピールエリアボタン色"
msgstr "Announcement area button color"
msgid "アピールエリア表示ページ"
msgstr "Display the announcement area"
msgid "表示しない"
msgstr "Do not display"
msgid "全ページで表示"
msgstr "Display on all pages"
msgid "フロントページのみで表示"
msgstr "Display on the front page only"
msgid "投稿・固定ページ以外で表示"
msgstr "Display on pages other than posts/pages"
msgid "投稿・固定ページのみで表示"
msgstr "Display only on posts/pages"
msgid "投稿ページのみで表示"
msgstr "Display on posts only"
msgid "固定ページのみで表示"
msgstr "Display on pages only"
msgid "フッター背景色"
msgstr "Footer background color"
msgid "フッター文字色"
msgstr "Footer text color"
msgid "フッター表示タイプ"
msgstr "Footer display type"
msgid "ロゴ&メニュー&クレジット"
msgstr "Logos & Menus & Credits"
msgid "メニュー&クレジット(左右)"
msgstr "Menus & Credits (Left and Right)"
msgid "メニュー&クレジット(中央揃え)"
msgstr "Menus & Credits (Center)"
msgid "ブロックエディター拡張色A"
msgstr "Block editor extended color A"
msgid "ブロックエディター拡張色B"
msgstr "Block editor extended color B"
msgid "ブロックエディター拡張色C"
msgstr "Block editor extended color C"
msgid "ブロックエディター拡張色D"
msgstr "Block editor extended color D"
msgid "ブロックエディター拡張色E"
msgstr "Block editor extended color E"
msgid "ブロックエディター拡張色F"
msgstr "Block editor extended color F"
msgid "エディター背景色"
msgstr "Editor background color"
msgid "エディターの背景色を指定します。"
msgstr "Specifies the background color of the editor."
msgid "エディターテキスト色"
msgstr "Editor text color"
msgid "エディターのテキスト色を指定します。"
msgstr "Specifies the text color of the editor."
msgid "コンテンツ枠線色"
msgstr "Content border color"
msgid "メインカラムのボーダー色を指定します。未入力でデフォルトの透過色になります。"
msgstr "Specifies the border color of the main column. If left blank, transparent color is used by default."
msgid "サイドバー枠線色"
msgstr "Sidebar border color"
msgid "サイドバーのボーダー色を指定します。未入力でデフォルトの透過色になります。"
msgstr "Specifies the border color of the side bar. If left blank, transparent color is used by default."
msgid "コメント入力案内メッセージ"
msgstr "Comment input guidance message"
msgid "キャッチフレーズの配置"
msgstr "Tagline placement"
msgid "ヘッダートップ(デフォルト)"
msgstr "Header top (default)"
msgid "ヘッダーボトム"
msgstr "Header bottom"
msgid "サイドバーの位置"
msgstr "Sidebar position"
msgid "サイドバー右"
msgstr "Sidebar right"
msgid "サイドバー左"
msgstr "Sidebar left"
msgid "サイドバーの表示状態"
msgstr "Display status of the sidebar"
msgid "全てのページで表示"
msgstr "Display on all pages"
msgid "全てのページで非表示"
msgstr "Hide on all pages"
msgid "フロントページで非表示"
msgstr "Hide on the front page"
msgid "インデックスページで非表示"
msgstr "Hide on index pages"
msgid "固定ページで非表示"
msgstr "Hide on pages"
msgid "投稿ページで非表示"
msgstr "Hide on post pages"
msgid "404ページで非表示"
msgstr "Hide on 404 pages"
msgid "関連記事表示タイプ"
msgstr "Related articles display type"
msgid "エントリーカード(デフォルト)"
msgstr "Entry card (default)"
msgid "ミニカード(推奨表示数:偶数)"
msgstr "Mini card (recommended display count: an even number)"
msgid "縦型カード3列推奨表示数6, 12, 18..."
msgstr "Vertical card 3-column (recommended display count: 6, 12, 18,...)"
msgid "縦型カード4列推奨表示数4, 8, 12..."
msgstr "Vertical card 4-column (recommended display count: 4, 8, 12,...)"
msgid "関連記事表示投稿数"
msgstr "Number of posts in related article display"
msgid "最小2"
msgstr "minimum: 2"
msgid "最大30"
msgstr "maximum: 30"
msgid "ページ送りナビ表示タイプ"
msgstr "Page feed navigation display type"
msgid "デフォルト"
msgstr "default"
msgid "サムネイル正方形"
msgstr "Thumbnail square"
msgid "投稿ページパンくずリスト表示位置"
msgstr "The breadcrumb display position for post pages"
msgid "メインカラム手前"
msgstr "Above the main column"
msgid "メインカラムトップ"
msgstr "Above the page/post title"
msgid "メインカラムボトム(デフォルト)"
msgstr "Bottom of the main column (default)"
msgid "フッター手前"
msgstr "Above the footer"
msgid "固定ページパンくずリスト表示位置"
msgstr "The breadcrumb display position for pages"
msgid "サイト全体のポイントとなる部分に適用される背景色を指定します。"
msgstr "Specifies the background color to be applied to the part that becomes the point of the entire site."
msgid "サイト全体のポイントとなる部分に適用されるテキスト色を指定します。"
msgstr "Specifies the text color to be applied to the part that becomes the point of the entire site."
msgid "サイト全体に適用されるフォントを選択します。"
msgstr "Select the font to be applied to the entire site."
msgid "サイト全体のフォントサイズを選択します。"
msgstr "Change the font size of the entire site."
msgid "フォントの太さを選択します。"
msgstr "Select the font weight."
msgid "サイト全体の文字色を指定します。"
msgstr "Change the text color of the entire site."
msgid "サイト全体の背景色を指定します。"
msgstr "Select the background color for the entire site."
msgid "サイトで利用されるリンク色を指定します。"
msgstr "Select the link color to be used on the site."
msgid "テーマ全体に使われている日付のフォーマット形式です。"
msgstr "Enter the date format to be used for the entire theme (initial values: Y.m.d)."
msgid "ヘッダーの高さをpx数で指定します。最小0px、最大800px"
msgstr "Specifies the header height in pixels. If left blank, the default height will be used. (minimum: 0 px, maximum: 800 px)"
msgid "モバイルでのヘッダーの高さをpx数で指定します。最小0px、最大600px"
msgstr "Specifies the header height for mobile devices in pixels. If left blank, the default height will be used. (minimum: 0 px, maximum: 600 px)"
msgid "ヘッダーの表示形式を選択します。"
msgstr "Select the header display format."
msgid "ヘッダのロゴ部分やグローバルナビ全てを含めた背景色を指定します。"
msgstr "Select the background color including for the header logo part and all global navigation."
msgid "ヘッダーのロゴ部分やグローバルナビ全てを含めたテキスト色を指定します。"
msgstr "Select the text color including for the header logo part and all global navigation."
msgid "ヘッダーロゴエリア背景色"
msgstr "Header logo area background color"
msgid "グローバルナビ上のヘッダー背景色を指定します。"
msgstr "Select the header background color above global navigation."
msgid "ヘッダーロゴ文字色"
msgstr "Header logo text color"
msgid "グローバルナビ上のヘッダーテキスト色を指定します。"
msgstr "Select the text color above color navigation."
msgid "グローバルナビ全体の背景色を指定します。"
msgstr "Select the background color for the entire global navigation."
msgid "グローバルナビ全体のテキスト色を指定します。"
msgstr "Select the text color for the entire global navigation."
msgid "メッセージに対して独自の背景色を設定したい場合は色を指定してください。"
msgstr "Select a color if you want to set your own background color for messages."
msgid "メッセージに対して独自のテキスト色を設定したい場合は色を指定してください。"
msgstr "Select a color if you want to set your own text color for messages."
msgid "通知の種類を選択します。背景色も変わり、重要度が変わります。"
msgstr "Select the type of notification. The background color and the importance will change."
msgid "アピールエリアの背景色を指定します。"
msgstr "Set the background color of the announcement area."
msgid "アピールエリアのボタン全体の色を指定します。"
msgstr "Select the color of the entire button in the announcement area."
msgid "アピールエリアを表示するページを選択します。"
msgstr "Set the page for displaying the announcement area."
msgid "サイト下部(フッター部分)の背景色を指定します。"
msgstr "Specifies the background color for the bottom part of the site (footer section)."
msgid "サイト下部(フッター部分)のテキスト色を指定します。"
msgstr "Specifies the text color for the bottom part of the site (footer section)."
msgid "フッターの表示タイプを選択します。"
msgstr "Select the footer display type."
msgid "トップへ戻るボタン背景色"
msgstr "\"Back to top\" button background color"
msgid "トップへ戻るボタンの背景色を指定します。"
msgstr "Sets the background color of the 'Back to top' button."
msgid "トップへ戻るボタン文字色"
msgstr "\"Back to top\" button text color"
msgid "トップへ戻るボタンの文字色を指定します。"
msgstr "Sets the text color of the 'Back to top' button."
msgid "ブロックエディターのカラーパレットに色を追加できます。"
msgstr "You can add colors to the block editor's color palette."
msgid "コメント入力フォームの上に表示する案内メッセージです。"
msgstr "Enter a guidance message to be displayed on the comment input form."
msgid "キャッチフレーズの表示位置を選択します。※[ヘッダーの表示形式]が「センターロゴ」の場合に有効となります。"
msgstr "Sets the display position of a tagline. *When 'Header layout' is set to 'Center logo'."
msgid "サイドバーの表示位置を選択します。"
msgstr "Select the display position of the sidebar."
msgid "サイドバーを表示するページの設定です。"
msgstr "This is the setting of pages on which the sidebar will be displayed."
msgid "カテゴリ・タグ表示"
msgstr "Category and tag display"
msgid "カテゴリとタグの表示を制御します。"
msgstr "Control the display of categories and tags."
msgid "カテゴリ・タグ2列"
msgstr "Categories/tags 2-column"
msgid "カテゴリ・タグ1列"
msgstr "Categories/tags 1-column"
msgid "カテゴリのみ"
msgstr "Categories only"
msgid "タグのみ"
msgstr "Tags only"
msgid "カテゴリもタグも表示しない"
msgstr "Do not display categories or tags"
msgid "カテゴリ・タグ表示位置"
msgstr "Category and tag display position"
msgid "カテゴリとタグの表示位置を選択します。"
msgstr "Sets the display position of categories and tags."
msgid "タイトル上"
msgstr "Above title"
msgid "本文上"
msgstr "Content top"
msgid "本文下(デフォルト)"
msgstr "Content bottom (default)"
msgid "関連記事の表示タイプを選択します。"
msgstr "Select the display type of related articles."
msgid "関連記事で表示する投稿数を選択します。最小2、最大30"
msgstr "The post count setting to be displayed for related articles. (minimum: 2, maximum: 30)"
msgid "ページ送りナビの見た目を選択します。"
msgstr "Change the look of the page feed navigation."
msgid "投稿でのパンくずリストの表示位置を選択します。"
msgstr "Set the breadcrumb display position for posts."
msgid "固定ページでのパンくずリストの表示位置を選択します。"
msgstr "Set the breadcrumb display position for pages."
msgid "カラーの説明です。カラーの選択リストに表示されます。"
msgstr "A description of the color.It will appear in the color selection list."
msgid "カラーの名称です。ファイル名に使用します。"
msgstr "The name of the color.Used for the file name."
msgid "カラーファイルを上書きできるようにします。"
msgstr "Allows you to overwrite color files."
msgid "全て選択または解除します。"
msgstr "Select or deselect all."
msgid "全選択"
msgstr "Select all"
msgid "値として''を格納します。"
msgstr "Store '' as the value."
msgid "値無し"
msgstr "No value"
msgid "Cocoonで定義しているカラーなどの情報を簡単に設定することができます。"
msgstr "You can easily set information such as colors defined in Cocoon."
msgid "設定したカラーなどの情報をファイルとして保存することができます。"
msgstr "Information such as the set color can be saved as a file."
msgid "ファイルとして保存した情報をもとにあらたなファイルを作成することもできます。"
msgstr "You can also create a new file based on the information saved as a file."
msgid "カラーを選択します。"
msgstr "Select a color."
msgid "スキン制御:"
msgstr "Skin control:"
msgid "※スキンでCocoon設定値を制御している場合は、実際にサイトを表示する際にはここでの設定値よりもスキンの設定値が優先して使われます。"
msgstr "* If the skin controls the Cocoon settings, the skin settings will be used in preference to the settings here when actually displaying the site."
msgid "DBの現在値です"
msgstr "The current value of DB"
msgid "※Cocoon設定の一部が変更されますので、事前にバックアップファイルを取得してください。"
msgstr "* Please obtain a backup file in advance as some Cocoon settings will be changed."
msgid "カラー(カラーファイル)を更新しました。"
msgstr "The color (color file) has been updated."
msgid "カラー(カラーファイル)を作成しました。"
msgstr "The color (color file) has been created."
msgid "カラー(カラーファイル)を削除します。"
msgstr "Delete the color (color file)."
msgid "カラー(カラーファイル)を削除しました。"
msgstr "The color (color file) has been deleted."
msgid "バックアップ・リストア"
msgstr "Backup / Restore"
msgid "作成したカラー情報(カラーファイル)のバックアップとリストアを行います。"
msgstr "Back up and restore the created color information (color file)."
msgid "※本プラグインのバージョンアップを行うと作成したカラー情報が失われますので、プラグインのバージョンアップを行う前にはバックアップを取得してください。"
msgstr "* If you upgrade this plug-in, the created color information will be lost, so please make a backup before upgrading the plug-in."
msgid "※本プラグインのバージョンアップを行ったあとは、カラー情報を復元するためにバックアップしたファイルをリストアしてください。"
msgstr "* After upgrading the version of this plug-in, restore the backed up file to restore the color information."
msgid "バックアップ"
msgstr "Backup"
msgid "バックアップファイルの取得"
msgstr "Download backed up file"
msgid "カラー情報(カラーファイル)をバックアップする場合はボタンをクリックしてください。"
msgstr "Click the button to back up the color information (color file)."
msgid "リストア"
msgstr "Restore"
msgid "バックアップしたファイルをアップロード: "
msgstr "Upload backed up files:"
msgid "カラー情報(カラーファイル)の復元"
msgstr "Restoration of color information (color file)"
msgid "[ファイルを選択]ボタンをクリックしてバックアップしたファイルを選択し、[カラー情報(カラーファイル)の復元]ボタンをクリックしてください。"
msgstr "Click the 'Select File' button to select the backed up file, and then click the 'Restoration of color information (color file)' button."
msgid "カラー(カラーファイル)を復元しました。"
msgstr "Restored color (color file)."
msgid "アップロードファイルを移動できませんでした。"
msgstr "The upload file could not be moved."
msgid "ファイルをアップロードできませんでした。エラー情報:"
msgstr "The file could not be uploaded. Error information:"
msgid "アップロードファイルのサイズが上限値を超えています。上限値:"
msgstr "The size of the uploaded file exceeds the upper limit. Upper limit:"
msgid "アップロードファイルはzip形式ではありません。エラー情報:"
msgstr "The uploaded file is not in zip format. Error information:"
msgid "ZipArchiveクラスが無効です。"
msgstr "The ZipArchive class is invalid."
msgid "ZipArchiveクラスのextractToメソッドでエラーが発生しました。"
msgstr "An error occurred in the extractTo method of the ZipArchive class."
msgid "ZipArchiveクラスのopenメソッドでエラーが発生しました。エラーコード:"
msgstr "An error occurred in the open method of the ZipArchive class. Error code:"
msgid "アップロードファイルのフォルダ構成が正しくありません。"
msgstr "The folder structure of the uploaded file is incorrect."
msgid "ファイルコピーでエラーが発生しました。エラーメッセージ:"
msgstr "There was an error copying the file. Error message:"
msgid "SILKシルクスキンで提供されているカラーファイルを元にしています。"
msgstr "It is based on the color file provided by SILK skin."

View File

@@ -1,407 +0,0 @@
# 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&#8217; 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 ""

View File

@@ -167,6 +167,9 @@ Ahalogy wordpress plugin [version 2.1.0] is installed but Client ID not set
<!-- / Google Analytics by MonsterInsights -->
<!-- Hotjar Tracking Code for wp.lab -->
<!-- Powered by iMP Download v1.4 -->
@@ -1228,12 +1231,5 @@ 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}-->
<!-- review-schema -->
<!-- This Google structured data (Rich Snippet) auto generated by RadiusTheme Review Schema plugin version 1.0.1 -->

View File

@@ -1,805 +0,0 @@
# Copyright (C) 2021 kraftplugins
# This file is distributed under the same license as the Demo Importer Plus package.
msgid ""
msgstr ""
"Project-Id-Version: Demo Importer Plus 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/demo-importer-plus\n"
"POT-Creation-Date: 2021-06-12 15:49:51+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 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"
#: admin/partials/getting-started.php:11
msgid "Getting Started"
msgstr ""
#: admin/partials/getting-started.php:16
msgid "Select Page Builder"
msgstr ""
#: admin/partials/getting-started.php:17
msgid ""
"We offer starter templates that can be imported in one click. These sites "
"are available in the following page builders. Please choose your preferred "
"page builder from the list below."
msgstr ""
#: admin/partials/menu-page.php:38
msgid "All"
msgstr ""
#: admin/partials/menu-page.php:39
msgid "Free"
msgstr ""
#: admin/partials/menu-page.php:40
msgid "Pro"
msgstr ""
#: admin/partials/menu-page.php:56 admin/partials/menu-page.php:99
msgid "Heading"
msgstr ""
#: admin/partials/menu-page.php:65
msgid "Available Templates"
msgstr ""
#: admin/partials/menu-page.php:125 admin/partials/menu-page.php:490
msgid "Page Templates"
msgstr ""
#: admin/partials/menu-page.php:168
msgid "Import Complete Site"
msgstr ""
#: admin/partials/menu-page.php:169
msgid "Import Template"
msgstr ""
#: admin/partials/menu-page.php:191
#: inc/classes/class-demo-importer-plus.php:156
msgid "Your Selected Website is Being Imported."
msgstr ""
#: admin/partials/menu-page.php:193
#: inc/classes/class-demo-importer-plus.php:157
msgid "Your Selected Template is Being Imported."
msgstr ""
#: admin/partials/menu-page.php:207
msgid "Delete Previously Imported Site"
msgstr ""
#: admin/partials/menu-page.php:209
msgid ""
"Selecting this option will delete all the data from the previous import. "
"Kindly uncheck this option if this is not intended."
msgstr ""
#: admin/partials/menu-page.php:209
msgid "You can find the backup to the current customizer settings at "
msgstr ""
#: admin/partials/menu-page.php:209
msgid "/wp-content/uploads/demo-importer-plus/"
msgstr ""
#: admin/partials/menu-page.php:231
msgid "Install & Activate Compatible Theme"
msgstr ""
#: admin/partials/menu-page.php:233
msgid ""
"To import the site in the original format, you would need the same theme "
"activated. You can import it with any other theme, but the site might lose "
"some of the design settings and look a bit different."
msgstr ""
#: admin/partials/menu-page.php:241
msgid "Import Customizer Settings"
msgstr ""
#: admin/partials/menu-page.php:243
msgid ""
"This will import the customizer settings of the template you have chosen. "
"Please note that, this will override your current customizer settings."
msgstr ""
#: admin/partials/menu-page.php:254
msgid "Import Widgets"
msgstr ""
#: admin/partials/menu-page.php:261
msgid "Install Required Plugins"
msgstr ""
#: admin/partials/menu-page.php:264
msgid "Required plugins will be installed and activated automatically."
msgstr ""
#: admin/partials/menu-page.php:273
msgid "Import Content"
msgstr ""
#: admin/partials/menu-page.php:276
msgid ""
"Selecting this option will import the demo content of the template you have "
"chosen. It will import all the dummy pages, posts, images, and menus. If "
"you do not want the demo content, kindly uncheck this option."
msgstr ""
#: admin/partials/menu-page.php:294
#. translators: %s is the dynamic string.
msgid ""
"Depending on the %s you have chosen and your server configuration, the "
"process can take a couple of minutes to import the demo content."
msgstr ""
#: admin/partials/menu-page.php:300
#. translators: %s is the dynamic string.
msgid "Please do NOT close this browser window until the %s is imported completely."
msgstr ""
#: admin/partials/menu-page.php:314
msgid "Import"
msgstr ""
#: admin/partials/menu-page.php:315 admin/partials/menu-page.php:393
#: admin/partials/menu-page.php:399 admin/partials/menu-page.php:401
msgid "Skip & Import"
msgstr ""
#: admin/partials/menu-page.php:316 admin/partials/menu-page.php:394
#: admin/partials/menu-page.php:402
msgid "Cancel"
msgstr ""
#: admin/partials/menu-page.php:323 admin/partials/menu-page.php:354
msgid "Imported Successfully!"
msgstr ""
#: admin/partials/menu-page.php:327
msgid "The Website Imported Successfully! 🎉"
msgstr ""
#: admin/partials/menu-page.php:329 admin/partials/menu-page.php:359
msgid ""
"You can now start customizing the website to suit your preference. Enjoy "
"website your building!"
msgstr ""
#: admin/partials/menu-page.php:331 admin/partials/menu-page.php:360
msgid ""
"PS: The images used in the demo are free for personal uses. We strong "
"recommend you to replace the images and any copyrighted media before "
"publishing your website online."
msgstr ""
#: admin/partials/menu-page.php:334
msgid "View Site"
msgstr ""
#: admin/partials/menu-page.php:343
msgid "Your website is facing a temporary issue connecting to the template server."
msgstr ""
#: admin/partials/menu-page.php:347
#: inc/classes/class-demo-importer-plus.php:173
#: inc/classes/class-demo-importer-plus.php:178
#: inc/classes/class-demo-importer-plus.php:183
#. translators: %s doc link.
msgid ""
"Read an article <a href=\"%s\" target=\"_blank\">here</a> to resolve the "
"issue."
msgstr ""
#: admin/partials/menu-page.php:358
msgid "The Template Imported Successfully! 🎉"
msgstr ""
#: admin/partials/menu-page.php:363
msgid "View Template"
msgstr ""
#: admin/partials/menu-page.php:371
msgid "We're Almost There!"
msgstr ""
#: admin/partials/menu-page.php:380
msgid ""
"Currently, WordPress debug mode is enabled on your website. With this "
"option enabled, any errors caused by the third-party plugin will hinder the "
"import process."
msgstr ""
#: admin/partials/menu-page.php:381
msgid ""
"We recommend you to disable it before starting the import process. You can "
"do this, by adding the following code into the wp-config.php file."
msgstr ""
#: admin/partials/menu-page.php:382
msgid "define('WP_DEBUG', false);"
msgstr ""
#: admin/partials/menu-page.php:384
msgid ""
"Updates for some of the installed plugins used in this template are "
"available."
msgstr ""
#: admin/partials/menu-page.php:385
msgid ""
"Please update them for the successful import. You can also skip this but it "
"might affect the template imported."
msgstr ""
#: admin/partials/menu-page.php:398
msgid "Update"
msgstr ""
#: admin/partials/menu-page.php:426
msgid "Site Templates"
msgstr ""
#: admin/partials/menu-page.php:435 admin/partials/menu-page.php:499
#: admin/partials/menu-page.php:573
msgid "Make as Favorite"
msgstr ""
#: admin/partials/menu-page.php:481 admin/partials/menu-page.php:542
#: admin/partials/menu-page.php:619
#. translators: %s are white label strings.
msgid "Agency"
msgstr ""
#: admin/partials/menu-page.php:555
msgid "Sorry No Results Found."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Demo Importer Plus"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:64
#: inc/classes/class-demo-importer-plus-ajax.php:141
#: inc/classes/class-demo-importer-plus-ajax.php:428
#: inc/classes/class-demo-importer-plus-ajax.php:606
#: inc/classes/class-demo-importer-plus-ajax.php:643
#: inc/classes/class-demo-importer-plus-ajax.php:702
#: inc/classes/class-demo-importer-plus-sites-importer.php:125
#: inc/classes/class-demo-importer-plus-sites-importer.php:166
#: inc/classes/class-demo-importer-plus-sites-importer.php:230
#: inc/classes/class-demo-importer-plus-sites-importer.php:301
#: inc/classes/class-demo-importer-plus-sites-importer.php:343
#: inc/classes/class-demo-importer-plus-sites-importer.php:387
#: inc/classes/class-demo-importer-plus-sites-importer.php:518
#: inc/classes/class-demo-importer-plus-sites-importer.php:543
#: inc/classes/class-demo-importer-plus-sites-importer.php:574
#: inc/classes/class-demo-importer-plus-sites-importer.php:621
#: inc/classes/class-demo-importer-plus-sites-importer.php:660
#: inc/classes/class-demo-importer-plus-sites-importer.php:694
msgid "You are not allowed to perform this action"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:68
msgid "Invalid API URL"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:81
msgid "Invalid Post Meta"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:88
msgid "Invalid Post ID or Elementor Meta"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:151
msgid "Theme Activated"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:163
msgid "Provided API URL is empty! Please try again!"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:301
msgid ""
"Insufficient Permission. Please contact your Super Admin to allow the "
"install required plugin permissions."
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:381
msgid "Error: You don't have the required permissions to install plugins."
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:415
msgid "Plugin Activated"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:570
msgid "User does not have permission!"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:630
#: inc/classes/class-demo-importer-plus-sites-importer.php:151
msgid "Customizer data is empty!"
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:647
#: inc/classes/class-demo-importer-plus-sites-importer.php:170
msgid ""
"If XMLReader is not available, it imports all other settings and only skips "
"XML import. This creates an incomplete website. We should bail early and "
"not import anything if this is not present."
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:675
#: inc/classes/class-demo-importer-plus-sites-importer.php:201
msgid "There was an error downloading the XML file."
msgstr ""
#: inc/classes/class-demo-importer-plus-ajax.php:689
#: inc/classes/class-demo-importer-plus-sites-importer.php:215
msgid "Invalid site XML file!"
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:87
msgid "Required File Permissions to import the templates are missing."
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:89
msgid "This is usually due to inconsistent file permissions."
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:92
msgid ""
"You can easily update permissions by adding the following code into the "
"wp-config.php file."
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:231
msgid "Enabled"
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:234
msgid "Disabled"
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:303
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:347
msgid "Yes"
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:306
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:350
msgid "No"
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:362
msgid "You currently have no scheduled cron events."
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer.php:325
msgid "Site options are empty!"
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer.php:371
msgid "Widget data is empty!"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:122
msgid ""
"Syncing template library in the background. The process can take anywhere "
"between 2 to 3 minutes. We will notify you once done."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:123
msgid ""
"Some of the files required during the import process are "
"missing.<br/><br/>Please try again after some time."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:124
msgid ""
"<p>WordPress debug mode is currently enabled on your website. This has "
"interrupted the import process..</p><p>Kindly disable debug mode and try "
"importing Starter Template again.</p><p>You can add the following code into "
"the wp-config.php file to disable debug "
"mode.</p><p><code>define('WP_DEBUG', false);</code></p>"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:126
#: inc/classes/class-demo-importer-plus.php:128
#. translators: %s is a documentation link.
msgid ""
"<p>Your website is facing a temporary issue in connecting the template "
"server.</p><p>Read <a href=\"%s\" target=\"_blank\">article</a> to resolve "
"the issue and continue importing template.</p>"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:132
#. translators: %s are white label strings.
msgid ""
"Warning! Import process is not complete. Don't close the window until "
"import process complete. Do you still want to leave the window?"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:133
msgid "Done! View Site"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:135
#. translators: %s is a template name
msgid "Import \"%s\" Template"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:138
msgid "Installing Required Plugins.."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:140
#. translators: %s are white label strings.
msgid "Installing Theme.."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:151
msgid "Dismiss this notice."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:155
msgid "One Last Step.."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:171
msgid "XMLReader Support Missing"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:173
#. translators: %s doc link.
msgid ""
"You're close to importing the template. To complete the process, enable "
"XMLReader support on your website.."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:176
msgid "cURL Support Missing"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:178
#. translators: %s doc link.
msgid "To run a smooth import, kindly enable cURL support on your website."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:181
msgid "Disable Debug Mode"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:183
#. translators: %s doc link.
msgid ""
"WordPress debug mode is currently enabled on your website. With this, any "
"errors from third-party plugins might affect the import process."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:183
msgid ""
"Kindly disable it to continue importing the Starter Template. To do so, you "
"can add the following code into the wp-config.php file."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:186
msgid "Update Plugin"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:188
#. translators: %s update page link.
msgid "Updates are available for plugins used in this starter template."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:188
msgid ""
"Kindly <a href=\"%s\" target=\"_blank\">update</a> them for a successful "
"import. Skipping this step might break the template design/feature."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:191
msgid "Required Plugins Missing"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:192
msgid ""
"This starter template requires premium plugins. As these are third party "
"premium plugins, you'll need to purchase, install and activate them first."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:195
msgid "Dynamic Page"
msgstr ""
#: inc/classes/class-demo-importer-plus.php:196
msgid ""
"The page template you are about to import contains a dynamic widget/module. "
"Please note this dynamic data will not be available with the imported page."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:196
msgid "You will need to add it manually on the page."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:196
msgid "This dynamic content will be available when you import the entire site."
msgstr ""
#: inc/classes/class-demo-importer-plus.php:339
msgid "Elementor"
msgstr ""
#: inc/importers/batch-processing/helpers/class-wp-background-process-demo-importer-plus-importer.php:80
msgid "All processes are complete"
msgstr ""
#: inc/importers/batch-processing/helpers/class-wp-background-process.php:440
#. translators: %d are the minutes.
msgid "Every %d Minutes"
msgstr ""
#: inc/importers/class-demo-importer-plus-widget-importer.php:73
msgid "Import data could not be read. Please try a different file."
msgstr ""
#: inc/importers/class-demo-importer-plus-widget-importer.php:108
msgid "Widget area does not exist in theme (using Inactive)"
msgstr ""
#: inc/importers/class-demo-importer-plus-widget-importer.php:126
msgid "Site does not support widget"
msgstr ""
#: inc/importers/class-demo-importer-plus-widget-importer.php:147
msgid "Widget already exists"
msgstr ""
#: inc/importers/class-demo-importer-plus-widget-importer.php:204
msgid "Imported"
msgstr ""
#: inc/importers/class-demo-importer-plus-widget-importer.php:207
msgid "Imported to Inactive"
msgstr ""
#: inc/importers/class-demo-importer-plus-widget-importer.php:212
msgid "No Title"
msgstr ""
#: inc/importers/wxr-importer/class-demo-importer-plus-wxr-importer.php:352
msgid "Import complete!"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:224
msgid "Could not open the file for parsing"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:262
#: inc/importers/wxr-importer/class-wxr-importer.php:381
#: inc/importers/wxr-importer/class-wxr-importer.php:457
#. translators: %1$s is WXR version, %2$s is max supported WXR version.
msgid ""
"This WXR file (version %1$s) is newer than the importer (version %2$s) and "
"may not be supported. Please consider updating."
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:608
msgid "The file does not exist, please try again."
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:668
msgid "Invalid author mapping"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:769
msgid "Cannot import auto-draft posts"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:864
#. translators: %1$s is the import message, %2$s is post type.
msgid "Failed to import \"%1$s\": Invalid post type %2$s"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:877
#. translators: %1$s single post type, %2$s is post title.
msgid "%1$s \"%2$s\" already exists."
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:974
#. translators: %s is post title
msgid "Skipping attachment \"%s\", fetching attachments disabled"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:998
#. translators: %1$s is the post title, %2$s is post type.
msgid "Failed to import \"%1$s\" (%2$s)"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1033
#: inc/importers/wxr-importer/class-wxr-importer.php:1921
#. translators: %1$s is the post title, %2$s is post type.
#. translators: %1$s is the taxonomy name, %2$s is taxonomy.
msgid "Imported \"%1$s\" (%2$s)"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1041
#. translators: %1$s is the original post id, %2$s is old post id.
msgid "Post %1$d remapped to %2$d"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1192
msgid "Invalid file type"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1698
#. translators: %s user login name
msgid "Failed to import user \"%s\""
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1722
#. translators: %s user login name
msgid "Imported user \"%s\""
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1729
#. translators: %1$s original user Id, %2$s old user Id.
msgid "User %1$d remapped to %2$d"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1894
#. translators: %1$s is the taxonomy, %2$s is taxonomy name.
msgid "Failed to import %1$s %2$s"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1929
#. translators: %1$s is term original id, %2$s is term id.
msgid "Term %1$d remapped to %2$d"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:1987
#. translators: %1$s is error code, %2$s is error code header, %3$s is url.
msgid "Remote server returned %1$d %2$s for %3$s"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2000
msgid "Remote file is incorrect size"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2005
msgid "Zero size file downloaded"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2012
#. translators: %s max file size.
msgid "Remote file is too large, limit is %s"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2045
#. translators: %d is post id.
msgid "Running post-processing for post %d"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2061
#. translators: %1$s is post title, %2$s is post id.
msgid "Could not find the post parent for \"%1$s\" (post #%2$d)"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2069
#. translators: %1$d is post id, %2$d is parent post id.
msgid "Post %1$d was imported with parent %2$d, but could not be found"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2086
#. translators: %1$s is the post title, %2$s is post id.
msgid "Could not find the author for \"%1$s\" (post #%2$d)"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2094
#. translators: %1$d is post id, %2$s is author slug.
msgid "Post %1$d was imported with author \"%2$s\", but could not be found"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2123
#. translators: %d is post id.
msgid "Post %d was marked for post-processing, but none was required."
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2137
#. translators: %1$s is the post title, %2$s is post id.
msgid "Could not update \"%1$s\" (post #%2$d) with mapped data"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2191
#. translators: %1$s is the post title, %2$s is post id.
msgid "Could not find the menu object for \"%1$s\" (post #%2$d)"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2199
#. translators: %1$s is post id, %2$s is post object id, %3$s is menu type.
msgid ""
"Post %1$d was imported with object \"%2$d\" of type \"%3$s\", but could not "
"be found"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2230
#. translators: %d is comment id.
msgid "Could not find the comment parent for comment #%d"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2237
#. translators: %1$s is comment id, %2$s is parent comment id.
msgid "Comment %1$d was imported with parent %2$d, but could not be found"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2254
#. translators: %d is comment id.
msgid "Could not find the author for comment #%d"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2261
#. translators: %1$d is comment id, %2$d is author id.
msgid "Comment %1$d was imported with author %2$d, but could not be found"
msgstr ""
#: inc/importers/wxr-importer/class-wxr-importer.php:2281
#. translators: %d is comment id.
msgid "Could not update comment #%d with mapped data"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://kraftplugins.com/demo-importer-plus"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Demo Importer Plus allows you to Import the demo content, widgets, "
"customizer settings and theme settings with a single click without any "
"hassle."
msgstr ""
#. Author of the plugin/theme
msgid "kraftplugins"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://kraftplugins.com/"
msgstr ""
#: admin/partials/menu-page.php:81
msgctxt "no. of templates"
msgid "%s template"
msgid_plural "%s templates"
msgstr[0] ""
msgstr[1] ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:249
#. translators: %1$s Memory Limit, %2$s Recommended memory limit.
msgctxt "Recommended Memory Limit"
msgid "Current memory limit %1$s. We recommend setting memory to at least %2$s."
msgstr ""
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:314
msgctxt "PHP Version"
msgid "We recommend to use php 5.4 or higher"
msgstr ""

View File

@@ -1,231 +0,0 @@
# Copyright (C) 2021 Acowebs
# This file is distributed under the same license as the Deposits & Partial Payments for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Deposits & Partial Payments for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/deposits-partial-payments-for-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-07-03T11:21:45+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: deposits-partial-payments-for-woocommerce\n"
#. Plugin Name of the plugin
msgid "Deposits & Partial Payments for WooCommerce"
msgstr ""
#. Description of the plugin
msgid "WooCommerce Deposits allows customers to pay for products using a fixed or percentage amount in WooCommerce store"
msgstr ""
#. Author of the plugin
msgid "Acowebs"
msgstr ""
#. Author URI of the plugin
msgid "http://acowebs.com"
msgstr ""
#: includes/class-awcdp-backend.php:144
msgid "Deposits For WooCommerce"
msgstr ""
#: includes/class-awcdp-backend.php:144
#: includes/class-awcdp-backend.php:276
msgid "Deposits"
msgstr ""
#: includes/class-awcdp-backend.php:163
msgid "Settings"
msgstr ""
#: includes/class-awcdp-backend.php:291
msgid "Enable Deposit "
msgstr ""
#: includes/class-awcdp-backend.php:293
msgid "Yes"
msgstr ""
#: includes/class-awcdp-backend.php:294
msgid "No"
msgstr ""
#: includes/class-awcdp-backend.php:296
msgid "Allow customers to pay a deposit for this product."
msgstr ""
#: includes/class-awcdp-backend.php:302
msgid "Deposit type"
msgstr ""
#: includes/class-awcdp-backend.php:304
msgid "Fixed"
msgstr ""
#: includes/class-awcdp-backend.php:305
msgid "Percentage"
msgstr ""
#: includes/class-awcdp-backend.php:311
#: includes/class-awcdp-front-end.php:541
#: includes/class-awcdp-front-end.php:588
#: includes/class-awcdp-front-end.php:1331
#: includes/class-awcdp-front-end.php:1866
msgid "Deposit Amount"
msgstr ""
#: includes/class-awcdp-backend.php:312
msgid "The amount of deposit needed. Do not include currency or percent symbols."
msgstr ""
#: includes/class-awcdp-backend.php:368
#: includes/class-awcdp-front-end.php:915
#: includes/class-awcdp-front-end.php:1281
#: templates/order/awcdp-partial-payment-details.php:36
msgid "Deposit"
msgstr ""
#: includes/class-awcdp-backend.php:373
#: includes/class-awcdp-front-end.php:499
#: includes/class-awcdp-front-end.php:550
#: includes/class-awcdp-front-end.php:965
#: includes/class-awcdp-front-end.php:1330
#: includes/class-awcdp-front-end.php:1865
#: templates/order/awcdp-partial-payment-details.php:34
msgid "Future Payments"
msgstr ""
#: includes/class-awcdp-backend.php:407
msgid "Partial Payments"
msgstr ""
#: includes/class-awcdp-backend.php:418
#: templates/emails/email-partial-payments-details.php:9
#: templates/order/awcdp-partial-payment-details.php:16
msgid "Partial payment details"
msgstr ""
#: includes/class-awcdp-backend.php:473
msgid "This is a partial payment for order %s"
msgstr ""
#: includes/class-awcdp-backend.php:474
msgid "View"
msgstr ""
#: includes/class-awcdp-deposits.php:51
#: includes/class-awcdp-deposits.php:56
msgid "Payments"
msgstr ""
#: includes/class-awcdp-deposits.php:52
#: templates/admin/order-partial-payments.php:20
#: templates/emails/email-partial-payments-details.php:14
#: templates/order/awcdp-partial-payment-details.php:21
msgid "Payment"
msgstr ""
#: includes/class-awcdp-deposits.php:53
msgctxt "custom post type setting"
msgid "Edit Payment"
msgstr ""
#: includes/class-awcdp-deposits.php:54
msgid "Search Payments"
msgstr ""
#: includes/class-awcdp-deposits.php:55
msgctxt "custom post type setting"
msgid "Order"
msgstr ""
#: includes/class-awcdp-deposits.php:96
msgctxt "Order status"
msgid "Partially Paid"
msgstr ""
#: includes/class-awcdp-deposits.php:101
msgid "Partially Paid <span class=\"count\">(%s)</span>"
msgid_plural "Partially Paid <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: includes/class-awcdp-front-end.php:267
#: includes/class-awcdp-front-end.php:276
msgid "per item"
msgstr ""
#: includes/class-awcdp-front-end.php:287
msgid "Pay Deposit"
msgstr ""
#: includes/class-awcdp-front-end.php:288
msgid "Pay Full Amount"
msgstr ""
#: includes/class-awcdp-front-end.php:289
msgid "Pay a deposit of "
msgstr ""
#: includes/class-awcdp-front-end.php:498
#: includes/class-awcdp-front-end.php:964
#: includes/class-awcdp-front-end.php:1329
#: includes/class-awcdp-front-end.php:1864
msgid "Due Today"
msgstr ""
#: includes/class-awcdp-front-end.php:591
msgid "%s payable in deposit"
msgstr ""
#: includes/class-awcdp-front-end.php:804
msgid "Future payment"
msgstr ""
#: includes/class-awcdp-front-end.php:1140
msgid "Partially Paid"
msgstr ""
#: includes/class-awcdp-front-end.php:1519
msgid "Partial Payment for order %s"
msgstr ""
#: includes/class-awcdp-list.php:121
msgid "Partial Payment"
msgstr ""
#: includes/class-awcdp-order.php:318
msgid "Partial Payment amount:"
msgstr ""
#: templates/admin/order-partial-payments.php:11
msgid "No payment schedule found."
msgstr ""
#: templates/admin/order-partial-payments.php:19
#: templates/emails/email-partial-payments-details.php:13
#: templates/order/awcdp-partial-payment-details.php:20
msgid "ID"
msgstr ""
#: templates/admin/order-partial-payments.php:21
#: templates/emails/email-partial-payments-details.php:15
msgid "Payment method"
msgstr ""
#: templates/admin/order-partial-payments.php:22
#: templates/emails/email-partial-payments-details.php:16
#: templates/order/awcdp-partial-payment-details.php:22
msgid "Amount"
msgstr ""
#: templates/admin/order-partial-payments.php:23
#: templates/emails/email-partial-payments-details.php:17
#: templates/order/awcdp-partial-payment-details.php:23
msgid "Status"
msgstr ""

View File

@@ -1,469 +0,0 @@
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"

View File

@@ -1,662 +0,0 @@
# Copyright (C) 2021 Document Embedder Addons for Elementor
# This file is distributed under the same license as the Document Embedder Addons for Elementor package.
msgid ""
msgstr ""
"Project-Id-Version: Document Embedder Addons for Elementor 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/document-embedder-addons-for-elementor\n"
"POT-Creation-Date: 2021-04-07 05:34:36+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#. translators: 1: Plugin name 2: Elementor
#: document-embedder-addons-for-elementor.php:132
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
msgstr ""
#: document-embedder-addons-for-elementor.php:133
#: document-embedder-addons-for-elementor.php:180
msgid "Document Embedder Addons"
msgstr ""
#: document-embedder-addons-for-elementor.php:134
#: document-embedder-addons-for-elementor.php:157
msgid "Elementor"
msgstr ""
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
#: document-embedder-addons-for-elementor.php:155
#: document-embedder-addons-for-elementor.php:179
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
msgstr ""
#: document-embedder-addons-for-elementor.php:156
msgid "b addon"
msgstr ""
#: document-embedder-addons-for-elementor.php:181
msgid "PHP"
msgstr ""
#: plugin.php:128
msgid "B Addon"
msgstr ""
#: public/widgets/bae-doc-embedder.php:17
msgid "Doc Embedder"
msgstr ""
#: public/widgets/bae-doc-embedder.php:32
msgid "Docs Content"
msgstr ""
#: public/widgets/bae-doc-embedder.php:39
#: public/widgets/bae-excel-embedder.php:38
#: public/widgets/bae-excel-viewer.php:40 public/widgets/bae-google-docs.php:40
#: public/widgets/bae-google-sheets.php:40
#: public/widgets/bae-google-slides.php:40
#: public/widgets/bae-pdf-embedder.php:40
#: public/widgets/bae-pdf-native-embedder.php:39
#: public/widgets/bae-pdf-viewer-2.php:39
#: public/widgets/bae-powerpoint-embedder.php:39
#: public/widgets/bae-powerpoint-viewer.php:40
#: public/widgets/bae-word-viewer.php:40
msgid "Source options"
msgstr ""
#: public/widgets/bae-doc-embedder.php:48
#: public/widgets/bae-excel-embedder.php:46
#: public/widgets/bae-excel-viewer.php:49 public/widgets/bae-google-docs.php:49
#: public/widgets/bae-google-sheets.php:49
#: public/widgets/bae-google-slides.php:49
#: public/widgets/bae-pdf-embedder.php:49
#: public/widgets/bae-pdf-native-embedder.php:47
#: public/widgets/bae-pdf-viewer-2.php:47
#: public/widgets/bae-powerpoint-embedder.php:48
#: public/widgets/bae-powerpoint-viewer.php:49
#: public/widgets/bae-word-viewer.php:49
msgid "Source Type"
msgstr ""
#: public/widgets/bae-doc-embedder.php:50
#: public/widgets/bae-excel-embedder.php:48
#: public/widgets/bae-excel-viewer.php:51 public/widgets/bae-google-docs.php:51
#: public/widgets/bae-google-sheets.php:51
#: public/widgets/bae-google-slides.php:51
#: public/widgets/bae-pdf-embedder.php:51
#: public/widgets/bae-pdf-native-embedder.php:49
#: public/widgets/bae-pdf-viewer-2.php:49
#: public/widgets/bae-powerpoint-embedder.php:50
#: public/widgets/bae-powerpoint-viewer.php:51
#: public/widgets/bae-word-viewer.php:51
msgid "Link"
msgstr ""
#: public/widgets/bae-doc-embedder.php:51
#: public/widgets/bae-excel-embedder.php:49
#: public/widgets/bae-excel-viewer.php:52 public/widgets/bae-google-docs.php:52
#: public/widgets/bae-google-sheets.php:52
#: public/widgets/bae-google-slides.php:52
#: public/widgets/bae-pdf-embedder.php:52
#: public/widgets/bae-pdf-native-embedder.php:50
#: public/widgets/bae-pdf-viewer-2.php:50
#: public/widgets/bae-powerpoint-embedder.php:51
#: public/widgets/bae-powerpoint-viewer.php:52
#: public/widgets/bae-word-viewer.php:52
msgid "Upload"
msgstr ""
#: public/widgets/bae-doc-embedder.php:60
msgid "Upload Doc File"
msgstr ""
#: public/widgets/bae-doc-embedder.php:62
msgid "Upload a word file here."
msgstr ""
#: public/widgets/bae-doc-embedder.php:76
msgid "Doc URL"
msgstr ""
#: public/widgets/bae-doc-embedder.php:78 public/widgets/bae-google-docs.php:78
#: public/widgets/bae-word-viewer.php:78
msgid "Paste a word file link here."
msgstr ""
#: public/widgets/bae-doc-embedder.php:98
msgid "Doc Content Setting"
msgstr ""
#: public/widgets/bae-doc-embedder.php:104
#: public/widgets/bae-excel-embedder.php:98
#: public/widgets/bae-excel-viewer.php:134
#: public/widgets/bae-google-docs.php:133
#: public/widgets/bae-google-sheets.php:133
#: public/widgets/bae-google-slides.php:133
#: public/widgets/bae-pdf-embedder.php:94
#: public/widgets/bae-pdf-native-embedder.php:126
#: public/widgets/bae-pdf-viewer-2.php:119
#: public/widgets/bae-powerpoint-embedder.php:104
#: public/widgets/bae-powerpoint-viewer.php:133
#: public/widgets/bae-word-viewer.php:133
msgid "Width"
msgstr ""
#: public/widgets/bae-doc-embedder.php:132
#: public/widgets/bae-excel-embedder.php:125
#: public/widgets/bae-excel-viewer.php:105
#: public/widgets/bae-google-docs.php:105
#: public/widgets/bae-google-sheets.php:105
#: public/widgets/bae-google-slides.php:105
#: public/widgets/bae-pdf-embedder.php:122
#: public/widgets/bae-pdf-native-embedder.php:99
#: public/widgets/bae-pdf-viewer-2.php:91
#: public/widgets/bae-powerpoint-embedder.php:132
#: public/widgets/bae-powerpoint-viewer.php:105
#: public/widgets/bae-word-viewer.php:105
msgid "Height"
msgstr ""
#: public/widgets/bae-doc-embedder.php:159
#: public/widgets/bae-excel-embedder.php:152
#: public/widgets/bae-excel-viewer.php:162
#: public/widgets/bae-google-docs.php:161
#: public/widgets/bae-google-sheets.php:161
#: public/widgets/bae-google-slides.php:161
#: public/widgets/bae-pdf-embedder.php:150
#: public/widgets/bae-pdf-native-embedder.php:154
#: public/widgets/bae-pdf-viewer-2.php:146
#: public/widgets/bae-powerpoint-embedder.php:160
#: public/widgets/bae-powerpoint-viewer.php:162
#: public/widgets/bae-word-viewer.php:161
msgid "Alignment"
msgstr ""
#: public/widgets/bae-doc-embedder.php:164
#: public/widgets/bae-excel-embedder.php:157
#: public/widgets/bae-excel-viewer.php:167
#: public/widgets/bae-google-docs.php:166
#: public/widgets/bae-google-sheets.php:166
#: public/widgets/bae-google-slides.php:166
#: public/widgets/bae-pdf-embedder.php:155
#: public/widgets/bae-pdf-native-embedder.php:159
#: public/widgets/bae-pdf-viewer-2.php:151
#: public/widgets/bae-powerpoint-embedder.php:165
#: public/widgets/bae-powerpoint-viewer.php:167
#: public/widgets/bae-word-viewer.php:166
msgid "Left"
msgstr ""
#: public/widgets/bae-doc-embedder.php:168
#: public/widgets/bae-excel-embedder.php:161
#: public/widgets/bae-excel-viewer.php:171
#: public/widgets/bae-google-docs.php:170
#: public/widgets/bae-google-sheets.php:170
#: public/widgets/bae-google-slides.php:170
#: public/widgets/bae-pdf-embedder.php:159
#: public/widgets/bae-pdf-native-embedder.php:163
#: public/widgets/bae-pdf-viewer-2.php:155
#: public/widgets/bae-powerpoint-embedder.php:169
#: public/widgets/bae-powerpoint-viewer.php:171
#: public/widgets/bae-word-viewer.php:170
msgid "Center"
msgstr ""
#: public/widgets/bae-doc-embedder.php:172
#: public/widgets/bae-excel-embedder.php:165
#: public/widgets/bae-excel-viewer.php:175
#: public/widgets/bae-google-docs.php:174
#: public/widgets/bae-google-sheets.php:174
#: public/widgets/bae-google-slides.php:174
#: public/widgets/bae-pdf-embedder.php:163
#: public/widgets/bae-pdf-native-embedder.php:167
#: public/widgets/bae-pdf-viewer-2.php:159
#: public/widgets/bae-powerpoint-embedder.php:173
#: public/widgets/bae-powerpoint-viewer.php:175
#: public/widgets/bae-word-viewer.php:174
msgid "Right"
msgstr ""
#: public/widgets/bae-doc-embedder.php:198
#: public/widgets/bae-pdf-embedder.php:189
#: public/widgets/bae-pdf-native-embedder.php:264
#: public/widgets/bae-pdf-viewer-2.php:324
msgid "Paste the pdf file link from setting widget."
msgstr ""
#: public/widgets/bae-excel-embedder.php:17
msgid "Excel Embedder"
msgstr ""
#: public/widgets/bae-excel-embedder.php:32
msgid "Excel Content"
msgstr ""
#: public/widgets/bae-excel-embedder.php:57
#: public/widgets/bae-excel-viewer.php:61
msgid "Upload Excel File"
msgstr ""
#: public/widgets/bae-excel-embedder.php:71
#: public/widgets/bae-excel-viewer.php:76
msgid "Excel URL"
msgstr ""
#: public/widgets/bae-excel-embedder.php:73
#: public/widgets/bae-excel-viewer.php:78
#: public/widgets/bae-google-sheets.php:78
msgid "Paste an excel file link here."
msgstr ""
#: public/widgets/bae-excel-embedder.php:92
msgid "Excel Content Setting"
msgstr ""
#: public/widgets/bae-excel-embedder.php:191
#: public/widgets/bae-excel-viewer.php:271
#: public/widgets/bae-google-sheets.php:238
msgid "Paste the excel file link from setting widget."
msgstr ""
#: public/widgets/bae-excel-viewer.php:17
msgid "Excel Viewer (MS Office)"
msgstr ""
#: public/widgets/bae-excel-viewer.php:33
msgid "Excel Viewer Content"
msgstr ""
#: public/widgets/bae-excel-viewer.php:98
msgid "Excel Viewer Setting"
msgstr ""
#: public/widgets/bae-excel-viewer.php:190
#: public/widgets/bae-google-docs.php:189
#: public/widgets/bae-google-sheets.php:189
#: public/widgets/bae-google-slides.php:189
#: public/widgets/bae-pdf-native-embedder.php:182
#: public/widgets/bae-pdf-viewer-2.php:173
#: public/widgets/bae-powerpoint-viewer.php:190
#: public/widgets/bae-word-viewer.php:189
msgid "Show File Name On top"
msgstr ""
#: public/widgets/bae-excel-viewer.php:192
#: public/widgets/bae-excel-viewer.php:219
#: public/widgets/bae-google-docs.php:191
#: public/widgets/bae-google-sheets.php:191
#: public/widgets/bae-google-slides.php:191
#: public/widgets/bae-pdf-native-embedder.php:184
#: public/widgets/bae-pdf-native-embedder.php:211
#: public/widgets/bae-pdf-viewer-2.php:175
#: public/widgets/bae-pdf-viewer-2.php:200
#: public/widgets/bae-pdf-viewer-2.php:226
#: public/widgets/bae-pdf-viewer-2.php:252
#: public/widgets/bae-pdf-viewer-2.php:266
#: public/widgets/bae-powerpoint-viewer.php:192
#: public/widgets/bae-powerpoint-viewer.php:219
#: public/widgets/bae-word-viewer.php:191
#: public/widgets/bae-word-viewer.php:218
msgid "On"
msgstr ""
#: public/widgets/bae-excel-viewer.php:193
#: public/widgets/bae-excel-viewer.php:220
#: public/widgets/bae-google-docs.php:192
#: public/widgets/bae-google-sheets.php:192
#: public/widgets/bae-google-slides.php:192
#: public/widgets/bae-pdf-native-embedder.php:185
#: public/widgets/bae-pdf-native-embedder.php:212
#: public/widgets/bae-pdf-viewer-2.php:176
#: public/widgets/bae-pdf-viewer-2.php:201
#: public/widgets/bae-pdf-viewer-2.php:227
#: public/widgets/bae-pdf-viewer-2.php:253
#: public/widgets/bae-pdf-viewer-2.php:267
#: public/widgets/bae-powerpoint-viewer.php:193
#: public/widgets/bae-powerpoint-viewer.php:220
#: public/widgets/bae-word-viewer.php:192
#: public/widgets/bae-word-viewer.php:219
msgid "Off"
msgstr ""
#: public/widgets/bae-excel-viewer.php:196
#: public/widgets/bae-google-docs.php:195
#: public/widgets/bae-google-sheets.php:195
#: public/widgets/bae-google-slides.php:195
#: public/widgets/bae-pdf-native-embedder.php:188
#: public/widgets/bae-pdf-viewer-2.php:179
#: public/widgets/bae-powerpoint-viewer.php:196
#: public/widgets/bae-word-viewer.php:195
msgid "On, if you want to show the file name in the top of the viewer."
msgstr ""
#: public/widgets/bae-excel-viewer.php:203
#: public/widgets/bae-google-docs.php:202
#: public/widgets/bae-google-sheets.php:202
#: public/widgets/bae-google-slides.php:202
#: public/widgets/bae-pdf-native-embedder.php:195
#: public/widgets/bae-pdf-viewer-2.php:185
#: public/widgets/bae-powerpoint-viewer.php:203
#: public/widgets/bae-word-viewer.php:202
msgid "File Name"
msgstr ""
#: public/widgets/bae-excel-viewer.php:206
#: public/widgets/bae-google-docs.php:205
#: public/widgets/bae-google-sheets.php:205
#: public/widgets/bae-google-slides.php:205
#: public/widgets/bae-pdf-native-embedder.php:198
#: public/widgets/bae-pdf-viewer-2.php:188
#: public/widgets/bae-powerpoint-viewer.php:206
#: public/widgets/bae-word-viewer.php:205
msgid "Write Here File Name"
msgstr ""
#: public/widgets/bae-excel-viewer.php:207
msgid "Excel Test File"
msgstr ""
#: public/widgets/bae-excel-viewer.php:217
#: public/widgets/bae-pdf-native-embedder.php:209
#: public/widgets/bae-pdf-viewer-2.php:198
#: public/widgets/bae-powerpoint-viewer.php:217
#: public/widgets/bae-word-viewer.php:216
msgid "Show Download button on top"
msgstr ""
#: public/widgets/bae-excel-viewer.php:224
#: public/widgets/bae-pdf-native-embedder.php:216
#: public/widgets/bae-pdf-viewer-2.php:205
#: public/widgets/bae-powerpoint-viewer.php:224
#: public/widgets/bae-word-viewer.php:223
msgid "On, if you want to show \"Download\" Button in the top of the viewer."
msgstr ""
#: public/widgets/bae-excel-viewer.php:231
#: public/widgets/bae-pdf-native-embedder.php:223
#: public/widgets/bae-pdf-viewer-2.php:211
#: public/widgets/bae-pdf-viewer-2.php:237
#: public/widgets/bae-powerpoint-viewer.php:231
#: public/widgets/bae-word-viewer.php:230
msgid "Button Text"
msgstr ""
#: public/widgets/bae-excel-viewer.php:234
#: public/widgets/bae-pdf-native-embedder.php:226
#: public/widgets/bae-pdf-viewer-2.php:214
#: public/widgets/bae-powerpoint-viewer.php:234
#: public/widgets/bae-word-viewer.php:233
msgid "Write Here Download Button Name"
msgstr ""
#: public/widgets/bae-excel-viewer.php:235
msgid "Download Excel"
msgstr ""
#: public/widgets/bae-google-docs.php:17
msgid "Google Docs"
msgstr ""
#: public/widgets/bae-google-docs.php:33
msgid "Google Docs Content"
msgstr ""
#: public/widgets/bae-google-docs.php:61
#: public/widgets/bae-google-sheets.php:61
#: public/widgets/bae-google-slides.php:61
#: public/widgets/bae-word-viewer.php:61
msgid "Upload Word File"
msgstr ""
#: public/widgets/bae-google-docs.php:76
#: public/widgets/bae-google-sheets.php:76
#: public/widgets/bae-google-slides.php:76
msgid "Google docs URL"
msgstr ""
#: public/widgets/bae-google-docs.php:98
msgid "Google Docs Setting"
msgstr ""
#: public/widgets/bae-google-docs.php:206
msgid "Docs Test File"
msgstr ""
#: public/widgets/bae-google-docs.php:238
#: public/widgets/bae-word-viewer.php:271
msgid "Paste the word file link from setting widget."
msgstr ""
#: public/widgets/bae-google-sheets.php:17
msgid "Google Sheets"
msgstr ""
#: public/widgets/bae-google-sheets.php:33
msgid "Google Sheets Content"
msgstr ""
#: public/widgets/bae-google-sheets.php:98
msgid "Google Sheets Setting"
msgstr ""
#: public/widgets/bae-google-sheets.php:206
msgid "Sheets Test File"
msgstr ""
#: public/widgets/bae-google-slides.php:17
msgid "Google Slides"
msgstr ""
#: public/widgets/bae-google-slides.php:33
msgid "Google Slides Content"
msgstr ""
#: public/widgets/bae-google-slides.php:78
#: public/widgets/bae-powerpoint-embedder.php:77
#: public/widgets/bae-powerpoint-viewer.php:78
msgid "Paste a powerpoint file link here."
msgstr ""
#: public/widgets/bae-google-slides.php:98
msgid "Google Slides Setting"
msgstr ""
#: public/widgets/bae-google-slides.php:206
msgid "Slides Test File"
msgstr ""
#: public/widgets/bae-google-slides.php:236
#: public/widgets/bae-powerpoint-embedder.php:199
#: public/widgets/bae-powerpoint-viewer.php:271
msgid "Paste the powerpoint file link from setting widget."
msgstr ""
#: public/widgets/bae-pdf-embedder.php:17
msgid "PDF Embedder"
msgstr ""
#: public/widgets/bae-pdf-embedder.php:33
#: public/widgets/bae-pdf-native-embedder.php:33
#: public/widgets/bae-pdf-viewer-2.php:33
msgid "PDF Content"
msgstr ""
#: public/widgets/bae-pdf-embedder.php:61
#: public/widgets/bae-pdf-native-embedder.php:58
#: public/widgets/bae-pdf-viewer-2.php:58
msgid "Upload PDF File"
msgstr ""
#: public/widgets/bae-pdf-embedder.php:63
msgid "Upload a pdf file here."
msgstr ""
#: public/widgets/bae-pdf-embedder.php:74
#: public/widgets/bae-pdf-native-embedder.php:72
#: public/widgets/bae-pdf-viewer-2.php:72
msgid "PDF URL"
msgstr ""
#: public/widgets/bae-pdf-embedder.php:76
#: public/widgets/bae-pdf-native-embedder.php:74
#: public/widgets/bae-pdf-viewer-2.php:74
msgid "Paste a pdf file link here."
msgstr ""
#: public/widgets/bae-pdf-embedder.php:88
msgid "PDF Content Setting"
msgstr ""
#: public/widgets/bae-pdf-native-embedder.php:17
msgid "PDF Native embedder"
msgstr ""
#: public/widgets/bae-pdf-native-embedder.php:93
#: public/widgets/bae-pdf-viewer-2.php:85
msgid "PDF Viewer Setting"
msgstr ""
#: public/widgets/bae-pdf-native-embedder.php:199
#: public/widgets/bae-pdf-viewer-2.php:189
msgid "PDF Test File"
msgstr ""
#: public/widgets/bae-pdf-native-embedder.php:227
#: public/widgets/bae-pdf-viewer-2.php:215
msgid "Download PDF"
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:17
msgid "PDF Viewer 2"
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:224
msgid "View Full Screen"
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:231
msgid "On, if you want to show off \"View Full Screen\" Button in the top of the viewer."
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:240
msgid "Write Here Full Screen Button Name"
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:241
msgid "Full Screen PDF"
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:250
msgid "Thumbnails Toggle Menu"
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:257
msgid "On, to enable Thumbnails Toogle Menu in the viewer."
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:264
msgid "Jump to page"
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:271
msgid "On, Enter the page number that will be shown in the viewer."
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:277
msgid "Page No."
msgstr ""
#: public/widgets/bae-pdf-viewer-2.php:280
msgid "1"
msgstr ""
#: public/widgets/bae-powerpoint-embedder.php:17
msgid "PowerPoint Embedder"
msgstr ""
#: public/widgets/bae-powerpoint-embedder.php:32
msgid "PowerPoint Content"
msgstr ""
#: public/widgets/bae-powerpoint-embedder.php:60
#: public/widgets/bae-powerpoint-viewer.php:61
msgid "Upload PowerPoint File"
msgstr ""
#: public/widgets/bae-powerpoint-embedder.php:75
#: public/widgets/bae-powerpoint-viewer.php:76
msgid "PowerPoint URL"
msgstr ""
#: public/widgets/bae-powerpoint-embedder.php:97
msgid "PowerPoint Content Setting"
msgstr ""
#: public/widgets/bae-powerpoint-viewer.php:17
msgid "PowerPoint Viewer (MS Office)"
msgstr ""
#: public/widgets/bae-powerpoint-viewer.php:33
msgid "PowerPoint Viewer Content"
msgstr ""
#: public/widgets/bae-powerpoint-viewer.php:98
msgid "PowerPoint Viewer Setting"
msgstr ""
#: public/widgets/bae-powerpoint-viewer.php:207
msgid "PowerPoint Test File"
msgstr ""
#: public/widgets/bae-powerpoint-viewer.php:235
msgid "Download PowerPoint File"
msgstr ""
#: public/widgets/bae-word-viewer.php:17
msgid "Word Viewer (MS Office)"
msgstr ""
#: public/widgets/bae-word-viewer.php:33
msgid "Word Viewer Content"
msgstr ""
#: public/widgets/bae-word-viewer.php:76
msgid "Word URL"
msgstr ""
#: public/widgets/bae-word-viewer.php:98
msgid "Word Viewer Setting"
msgstr ""
#: public/widgets/bae-word-viewer.php:206
msgid "Word Test File"
msgstr ""
#: public/widgets/bae-word-viewer.php:234
msgid "Download Word File"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Document Embedder Addons for Elementor"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://bplugins.com"
msgstr ""
#. Description of the plugin/theme
msgid "You can easily Embed pdf, docs, xlsx, pptx files in wordress post, page, widget area and theme template file."
msgstr ""
#. Author of the plugin/theme
msgid "bPlugins LLC"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://bplugins.com"
msgstr ""

View File

@@ -1,821 +0,0 @@
# 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 "&#8659; top to bottom"
msgstr ""
#: inc/csf/fields/background/background.php:116
msgid "&#8658; left to right"
msgstr ""
#: inc/csf/fields/background/background.php:117
msgid "&#8664; corner top to right"
msgstr ""
#: inc/csf/fields/background/background.php:118
msgid "&#8665; 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 ""

View File

@@ -1,954 +0,0 @@
# 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"

View File

@@ -1,2 +0,0 @@
v1.0.0
- Initial Release

View File

@@ -1,129 +0,0 @@
# Copyright (C) 2021 Navanath Bhosale
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Easy Theme Plugin Switcher 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/easy-theme-plugin-switcher\n"
"POT-Creation-Date: 2021-07-24 12:55:05+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"
#: classes/class-easy-theme-plugin-switcher-config.php:171
msgid "Activate"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:172
msgid "Deactivate"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:173
msgid "Activate All"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:174
msgid "Deactivate All"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:175
msgid "Activate Selected"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:176
msgid "Deactivate Selected"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:177
msgid "Activating"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:178
msgid "Deactivating"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:179
msgid "Failed"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:197
#: classes/class-easy-theme-plugin-switcher-config.php:240
#: classes/class-easy-theme-plugin-switcher-config.php:283
#: classes/class-easy-theme-plugin-switcher-config.php:326
#: classes/class-easy-theme-plugin-switcher-config.php:380
#: classes/class-easy-theme-plugin-switcher-config.php:423
#: classes/class-easy-theme-plugin-switcher-config.php:479
msgid "WordPress Nonce not validated."
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:204
msgid "No theme specified"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:225
msgid "Theme Successfully Activated"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:247
#: classes/class-easy-theme-plugin-switcher-config.php:290
msgid "No plugin specified"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:268
msgid "Plugin Successfully Activated"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:311
msgid "Plugin Successfully Deactivated"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:333
#: classes/class-easy-theme-plugin-switcher-config.php:387
#: classes/class-easy-theme-plugin-switcher-config.php:430
#: classes/class-easy-theme-plugin-switcher-config.php:486
msgid "No plugins specified"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:365
#: classes/class-easy-theme-plugin-switcher-config.php:464
msgid "Plugins Successfully Activated"
msgstr ""
#: classes/class-easy-theme-plugin-switcher-config.php:408
#: classes/class-easy-theme-plugin-switcher-config.php:518
msgid "Plugins Successfully Deactivated"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Easy Theme Plugin Switcher"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/easy-theme-plugin-switcher/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Switch your WP themes, plugins with one click. The plugin will reduce your "
"several clicks to one click for theme switching & plugins activations / "
"deactivations."
msgstr ""
#. Author of the plugin/theme
msgid "Navanath Bhosale"
msgstr ""

View File

@@ -1,295 +0,0 @@
# 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 ""

View File

@@ -1,473 +0,0 @@
# Copyright (C) 2021 Rouergue Creation
# This file is distributed under the GNU General Public License v3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Editor Custom Color Palette 1.2\n"
"Report-Msgid-Bugs-To: ntickets\n"
"POT-Creation-Date: 2021-06-25 13:16+0200\n"
"PO-Revision-Date: 2021-07-14 22:27+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 3.0\n"
"X-Poedit-SourceCharset: UTF-8\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Language: fr\n"
# Traduction editor-custom-color-palette.php
# #########################################################
#: editor-custom-color-palette.php:786 inc/eccp-multiple-settings.php:1130
#: inc/eccp-multiple-settings.php:1122
msgid "primary color"
msgstr "couleur primaire"
#: editor-custom-color-palette.php:791 inc/eccp-multiple-settings.php:1188
#: inc/eccp-multiple-settings.php:1177
msgid "secondary color"
msgstr "couleur secondaire"
#: editor-custom-color-palette.php:796 inc/eccp-multiple-settings.php:1241
#: inc/eccp-multiple-settings.php:1230
msgid "accent color"
msgstr "couleur accent"
#: editor-custom-color-palette.php:801 inc/eccp-multiple-settings.php:1294
#: inc/eccp-multiple-settings.php:1283
msgid "title color"
msgstr "couleur du titre"
#: editor-custom-color-palette.php:806 inc/eccp-multiple-settings.php:1347
#: inc/eccp-multiple-settings.php:1336
msgid "text color"
msgstr "couleur du texte"
#: editor-custom-color-palette.php:811 inc/eccp-multiple-settings.php:1400
#: inc/eccp-multiple-settings.php:1389
msgid "light off-white"
msgstr "blanc cassé clair"
#: editor-custom-color-palette.php:816 inc/eccp-multiple-settings.php:1453
#: inc/eccp-multiple-settings.php:1442
msgid "dark off-white"
msgstr "blanc cassé fonçé"
#: editor-custom-color-palette.php:821 inc/eccp-multiple-settings.php:1506
#: inc/eccp-multiple-settings.php:1495
msgid "white"
msgstr "blanc"
#: editor-custom-color-palette.php:826 inc/eccp-multiple-settings.php:1559
#: inc/eccp-multiple-settings.php:1548
msgid "green"
msgstr "vert"
#: editor-custom-color-palette.php:831 inc/eccp-multiple-settings.php:1613
#: inc/eccp-multiple-settings.php:1602
msgid "light green"
msgstr "vert pâle"
#: editor-custom-color-palette.php:836 inc/eccp-multiple-settings.php:1666
#: inc/eccp-multiple-settings.php:1655
msgid "red"
msgstr "rouge"
#: editor-custom-color-palette.php:841 inc/eccp-multiple-settings.php:1719
#: inc/eccp-multiple-settings.php:1708
msgid "light yellow"
msgstr "jaune pâle"
#: editor-custom-color-palette.php:905
msgid "Small"
msgstr "Petite"
#: editor-custom-color-palette.php:912
msgid "Regular"
msgstr "Normale"
#: editor-custom-color-palette.php:919
msgid "Large"
msgstr "Large"
#: editor-custom-color-palette.php:926
msgid "Huge"
msgstr "Énorme"
# Traduction eccp-admin-menu.php
# #########################################################
#: eccp-admin-menu.php:32 eccp-admin-menu.php:64
msgid "Editor Custom Color Palette General Settings"
msgstr "Réglages Généraux Palette de Couleurs Personnalisée de l'Éditeur"
#: eccp-admin-menu.php:33
msgid "ECCP Settings"
msgstr "ECCP Réglages"
#: eccp-admin-menu.php:75
msgid "Table of content"
msgstr "Table des matières"
#: eccp-admin-menu.php:77 inc/eccp-multiple-settings.php:117
msgid "Default settings"
msgstr "Paramètres par défaut"
#: eccp-admin-menu.php:79 inc/eccp-multiple-settings.php:159
msgid "EDITOR COLOR PALETTE GUTENBERG"
msgstr "PALETTE DE COULEURS EDITEUR GUTENBERG"
#: eccp-admin-menu.php:81 inc/eccp-multiple-settings.php:692
msgid "EDITOR TEXT SIZES"
msgstr "TAILLES DE TEXTE DE L'ÉDITEUR"
#: eccp-admin-menu.php:83 inc/eccp-multiple-settings.php:769
msgid "CUSTOMIZING GUTENBERG EDITOR"
msgstr "PERSONNALISATION DE L'ÉDITEUR GUTENBERG"
#: eccp-admin-menu.php:94
msgid "Save Settings"
msgstr "Enregistrer les paramètres"
# Traduction eccp-multiple-settings.php
# #################################################################
#: inc/eccp-multiple-settings.php:126
msgid "initialize the plugin with default settings"
msgstr "initialiser le plugin avec les paramètres par défaut"
#: inc/eccp-multiple-settings.php:135
msgid "delete data during uninstallation?"
msgstr "supprimer les données lors de la désinstallation?"
#: eccp-admin-menu.php:81 inc/eccp-multiple-settings.php:169
#: inc/eccp-multiple-settings.php:905
msgid "customizing color palette"
msgstr "personnalisation de la palette de couleurs"
#: inc/eccp-multiple-settings.php:175 inc/eccp-multiple-settings.php:668
#: inc/eccp-multiple-settings.php:681 inc/eccp-multiple-settings.php:707
#: inc/eccp-multiple-settings.php:759 inc/eccp-multiple-settings.php:783
#: inc/eccp-multiple-settings.php:796 inc/eccp-multiple-settings.php:809
#: inc/eccp-multiple-settings.php:823
msgid "activate"
msgstr "activer"
#: inc/eccp-multiple-settings.php:182
msgid "number of colors in the palette"
msgstr "nombre de couleurs dans la palette"
#: inc/eccp-multiple-settings.php:188
msgid "7"
msgstr "7"
#: inc/eccp-multiple-settings.php:189
msgid "8"
msgstr "8"
#: inc/eccp-multiple-settings.php:190
msgid "9"
msgstr "9"
#: inc/eccp-multiple-settings.php:191
msgid "10"
msgstr "10"
#: inc/eccp-multiple-settings.php:192
msgid "11"
msgstr "11"
#: inc/eccp-multiple-settings.php:193
msgid "12"
msgstr "12"
#: inc/eccp-multiple-settings.php:205
msgid "color 1"
msgstr "couleur 1"
#: inc/eccp-multiple-settings.php:243
msgid "color 2"
msgstr "couleur 2"
#: inc/eccp-multiple-settings.php:214 inc/eccp-multiple-settings.php:252
#: inc/eccp-multiple-settings.php:291 inc/eccp-multiple-settings.php:329
#: inc/eccp-multiple-settings.php:367 inc/eccp-multiple-settings.php:405
#: inc/eccp-multiple-settings.php:443 inc/eccp-multiple-settings.php:481
#: inc/eccp-multiple-settings.php:519 inc/eccp-multiple-settings.php:557
#: inc/eccp-multiple-settings.php:595 inc/eccp-multiple-settings.php:633
msgid "opacity: 0 to 100"
msgstr "opacité: 0 à 100"
#: inc/eccp-multiple-settings.php:223 inc/eccp-multiple-settings.php:261
#: inc/eccp-multiple-settings.php:300 inc/eccp-multiple-settings.php:338
#: inc/eccp-multiple-settings.php:376 inc/eccp-multiple-settings.php:414
#: inc/eccp-multiple-settings.php:452 inc/eccp-multiple-settings.php:490
#: inc/eccp-multiple-settings.php:528 inc/eccp-multiple-settings.php:566
#: inc/eccp-multiple-settings.php:604 inc/eccp-multiple-settings.php:642
msgid "name"
msgstr "nom"
#: inc/eccp-multiple-settings.php:232 inc/eccp-multiple-settings.php:270
#: inc/eccp-multiple-settings.php:309 inc/eccp-multiple-settings.php:347
#: inc/eccp-multiple-settings.php:385 inc/eccp-multiple-settings.php:423
#: inc/eccp-multiple-settings.php:461 inc/eccp-multiple-settings.php:499
#: inc/eccp-multiple-settings.php:537 inc/eccp-multiple-settings.php:575
#: inc/eccp-multiple-settings.php:613 inc/eccp-multiple-settings.php:651
msgid "slug"
msgstr "slug"
#: inc/eccp-multiple-settings.php:282
msgid "color 3"
msgstr "couleur 3"
#: inc/eccp-multiple-settings.php:320
msgid "color 4"
msgstr "couleur 4"
#: inc/eccp-multiple-settings.php:358
msgid "color 5"
msgstr "couleur 5"
#: inc/eccp-multiple-settings.php:396
msgid "color 6"
msgstr "couleur 6"
#: inc/eccp-multiple-settings.php:434
msgid "color 7"
msgstr "couleur 7"
#: inc/eccp-multiple-settings.php:472
msgid "color 8"
msgstr "couleur 8"
#: inc/eccp-multiple-settings.php:510
msgid "color 9"
msgstr "couleur 9"
#: inc/eccp-multiple-settings.php:586
msgid "color 11"
msgstr "couleur 11"
#: inc/eccp-multiple-settings.php:624
msgid "color 12"
msgstr "couleur 12"
#: inc/eccp-multiple-settings.php:662
msgid "disabling custom colors"
msgstr "désactiver les couleurs personnalisées"
#: inc/eccp-multiple-settings.php:675
msgid "disabling custom gradients"
msgstr "désactiver les dégradés personnalisés"
#: inc/eccp-multiple-settings.php:701
msgid "activate editor text sizes setting"
msgstr "activer le réglage des tailles de texte de l'éditeur"
#: inc/eccp-multiple-settings.php:716
msgid "font size: small in pixel"
msgstr "taille de la police: petite en pixel"
#: inc/eccp-multiple-settings.php:725
msgid "font size: normal in pixel"
msgstr "taille de la police: normale en pixel"
#: inc/eccp-multiple-settings.php:734
msgid "font size: large in pixel"
msgstr "taille de la police: large en pixel"
#: inc/eccp-multiple-settings.php:743
msgid "font size: huge in pixel"
msgstr "taille de la police: énorme en pixel"
#: eccp-admin-menu.php:86 inc/eccp-multiple-settings.php:753
#: inc/eccp-multiple-settings.php:1835
msgid "Disable the custom font size"
msgstr "Désactiver la taille de police personnalisée"
#: eccp-admin-menu.php:91 inc/eccp-multiple-settings.php:777
#: inc/eccp-multiple-settings.php:948
msgid "disable fullscreen mode of Gutenberg editor"
msgstr "désactiver le mode plein écran de l'éditeur Gutenberg"
#: eccp-admin-menu.php:93 inc/eccp-multiple-settings.php:790
#: inc/eccp-multiple-settings.php:1873
msgid "activate the default style sheet of Gutenberg blocks on Front End"
msgstr "activer la feuille de style par défaut des blocs Gutenberg sur Front End"
#: inc/eccp-multiple-settings.php:803
msgid "align wide option for the block editor"
msgstr "option alignement large pour l'éditeur de blocs"
#: eccp-admin-menu.php:97 inc/eccp-multiple-settings.php:817
#: inc/eccp-multiple-settings.php:1906
msgid "responsive embeds(for example integration vidéos YouTube)"
msgstr "embeds responsive(par exemple intégration de vidéos YouTube)"
#: eccp-admin-menu.php:103 inc/eccp-multiple-settings.php:836
msgid "ADDONS REUSABLE BLOCKS"
msgstr "ADDONS BLOCS RÉUTILISABLES"
#: eccp-admin-menu.php:105 inc/eccp-multiple-settings.php:976
msgid "Introduction"
msgstr "Introduction"
#: inc/eccp-multiple-settings.php:977
msgid "More blocks for Gutenberg editor"
msgstr "Plus de blocs pour l'éditeur Gutenberg"
#: inc/eccp-multiple-settings.php:979
msgid "In this section you can download reusable blocks in json format."
msgstr "Dans cette section vous pouvez télécharger des blocs réutilisables au format json."
#: inc/eccp-multiple-settings.php:981
msgid "You must first install the extension:"
msgstr "Vous devez au préalable installer l'extension:"
#: inc/eccp-multiple-settings.php:983
msgid "After install Settings menu/Kadence Blocks:"
msgstr "Après installation menu Réglages/Kadence Blocks:"
#: inc/eccp-multiple-settings.php:985
msgid "Choose whether or not to enable the option: Match the width of the editor to the width of your sites."
msgstr "Choisisez d'activer ou non l'option: Faites correspondre la largeur de l'éditeur à la largeur de vos sites."
#: eccp-admin-menu.php:108 inc/eccp-multiple-settings.php:998
msgid "Manage reusable blocks"
msgstr "Gérer les blocs réutilisables"
#: inc/eccp-multiple-settings.php:1004
msgid "• Access to the menu for reusable block management is done directly from the Gutenberg editor."
msgstr "• L'accès au menu pour la gestion des blocs réutilisables se fait directement a partir de l'editeur Gutenberg."
#: inc/eccp-multiple-settings.php:1006
msgid "• Click on Import from JSON and select the JSON file and after refresh the screen key F5."
msgstr "• Cliquez sur Importer depuis le JSON et sélectionnez le fichier JSON,après rafraichissez l'ecran touche F5."
#: inc/eccp-multiple-settings.php:1008
msgid "• Now in the Gutenberg editor click on the + icon to add a block from the reusable blocks tab."
msgstr "• Maintenant a partir de l'editeur Gutenberg cliquer sur l'icone + pour ajouter un bloc depuis l'onglet blocs réutilisables."
#: eccp-admin-menu.php:110 inc/eccp-multiple-settings.php:1014
msgid "Download advice block"
msgstr "Télécharger le bloc conseil"
#: eccp-admin-menu.php:112 inc/eccp-multiple-settings.php:1028
msgid "Download information block"
msgstr "Télécharger le bloc information"
#: eccp-admin-menu.php:114 inc/eccp-multiple-settings.php:1040
msgid "Download warning block"
msgstr "Télécharger le bloc attention"
#: eccp-admin-menu.php:116 inc/eccp-multiple-settings.php:1052
msgid "Download alert block"
msgstr "Télécharger le bloc alerte"
#: inc/eccp-multiple-settings.php:885
msgid "Customize the color palette"
msgstr "Personnaliser la palette de couleurs"
#: inc/eccp-multiple-settings.php:887
msgid "You can customize a palette of twelve colors."
msgstr "Vous pouvez personnaliser une palette de douze couleurs."
#: inc/eccp-multiple-settings.php:889
msgid "The color is defined in hexadecimal,the opacity allows to apply an RGBA color."
msgstr "La couleur est définie en hexadécimal,l'opacité permet d'appliquer une couleur RGBA."
#: inc/eccp-multiple-settings.php:891
msgid "Choose a simple name for the color, max 25 characters alphanumeric."
msgstr "Choisissez un nom simple pour la couleur, max 25 caractères alphanumérique."
#: inc/eccp-multiple-settings.php:893
msgid "The slug is automatically created from the name of the color and allows the style to be applied in the front end."
msgstr "Le slug est automatiquement créé à partir du nom de la couleur et permet d'appliquer le style sur le front-end."
#: inc/eccp-multiple-settings.php:895
msgid "two options allow:"
msgstr "deux options permettent :"
#: inc/eccp-multiple-settings.php:897
msgid "• Disabling custom colors"
msgstr "• Désactivation des couleurs personnalisées(Custom color)"
#: inc/eccp-multiple-settings.php:899
msgid "• Disabling custom gradients"
msgstr "• Désactivation des dégradés personnalisés(Gradient)"
#: inc/eccp-multiple-settings.php:914
msgid "Customize the text sizes proposed in the paragraph"
msgstr "Personnaliser les tailles de texte proposées dans le paragraphe"
#: inc/eccp-multiple-settings.php:916
msgid "When you add a paragraph, an option allows you to choose the size of the text: small,regular,large,huge."
msgstr "Lorsque vous ajoutez un paragraphe, une option vous permet de choisir la taille du texte : petite, normale, large, énorme."
#: inc/eccp-multiple-settings.php:918
msgid "The style is then applied to the paragraph, both in the editor and on the Front End."
msgstr "Le style est ensuite appliqué au paragraphe, à la fois dans l'éditeur et sur le Front End."
#: inc/eccp-multiple-settings.php:920
msgid "In order to better control this option, you will be able to choose the corresponding sizes."
msgstr "Afin de mieux maîtriser cette option,vous pouvez choisir les tailles correspondantes."
#: inc/eccp-multiple-settings.php:922
msgid "Added option:"
msgstr "Ajout de l'option :"
#: inc/eccp-multiple-settings.php:924
msgid "• Disable custom font size"
msgstr "• Désactiver la taille de police personnalisée"
#: eccp-admin-menu.php:88 inc/eccp-multiple-settings.php:932
msgid "Customize the text sizes"
msgstr "Personnaliser les tailles de texte"
#: inc/eccp-multiple-settings.php:938
msgid "Customize Gutenberg editor"
msgstr "Personnaliser l'éditeur Gutenberg"
#: eccp-admin-menu.php:95 inc/eccp-multiple-settings.php:940
#: inc/eccp-multiple-settings.php:1888
msgid "align wide option for the block editor:"
msgstr "option d'alignement large pour l'éditeur de blocs :"
#: inc/eccp-multiple-settings.php:942
msgid "Some blocks such as the image block have the possibility to define a wide or full alignment."
msgstr "Certains blocs comme le bloc image ont la possibilité de définir un alignement large ou pleine largeur."
#: inc/eccp-multiple-settings.php:944
msgid "Not all themes take these styles into account."
msgstr "Tous les thèmes ne prennent pas en compte ces styles."
#: inc/eccp-multiple-settings.php:995 inc/eccp-multiple-settings.php:998
#: inc/eccp-multiple-settings.php:1018 inc/eccp-multiple-settings.php:1021
msgid "no"
msgstr "non"
#: inc/eccp-multiple-settings.php:1009 inc/eccp-multiple-settings.php:1032
msgid "yes"
msgstr "oui"
#: inc/eccp-multiple-settings.php:1070
msgid "Choose an option"
msgstr "Sélectionner une option"
#: inc/eccp-multiple-settings.php:1082
msgid "According to your choice for the number of color."
msgstr "Selon votre choix pour le nombre de couleur."
#: inc/eccp-multiple-settings.php:1084
msgid "Choice of 7 colors: enter colors 1 to 7 below"
msgstr "Choix de 7 couleurs : entrez les couleurs 1 à 7 ci-dessous"
#: inc/eccp-multiple-settings.php:1086
msgid "Choice of 8 colors: enter colors 1 to 8 below"
msgstr "Choix de 8 couleurs : entrez les couleurs 1 à 8 ci-dessous"
#: inc/eccp-multiple-settings.php:1088
msgid "etc ..."
msgstr "etc ..."
#: eccp-admin-menu.php:81 inc/eccp-multiple-settings.php:1733
msgid "Disabling custom colors & gradients"
msgstr "Désactiver les couleurs et dégradés personnalisés"

View File

@@ -1,968 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: eID-Login 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/eid-login-"
"wordpress\n"
"POT-Creation-Date: 2021-08-04T10:30:03+02:00\n"
"PO-Revision-Date: 2021-08-04 10:30+0200\n"
"Last-Translator: \n"
"Language-Team: \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.2\n"
"X-Domain: eidlogin\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Plugin Name of the plugin
msgid "eID-Login"
msgstr "eID-Login"
#. Plugin URI of the plugin
msgid "https://eid.services/eidlogin/wordpress"
msgstr "https://eid.services/eidlogin/wordpress"
#. Description of the plugin
msgid ""
"The eID-Login plugin allows to use the German eID-card and similar "
"electronic identity documents for <strong>secure and privacy-friendly login</"
"strong> to WordPress. For this purpose, a so-called eID-Client, such as the "
"AusweisApp2 or the Open eCard App and eID-Service are required. In the "
"default configuration a suitable eID-Service is provided without any "
"additional costs."
msgstr ""
"Mit dem eID-Login Plugin kann die Online-Ausweisfunktion (u.a. vom "
"Personalausweis) für eine <strong>sichere und datenschutzfreundliche "
"Anmeldung</strong> an WordPress verwendet werden. Hierfür wird auf dem "
"System des Benutzers ein so genannter eID-Client, wie z.B. die AusweisApp2 "
"oder die Open eCard App, und ein eID-Service benötigt. In der "
"Standardkonfiguration steht ein geeigneter eID-Service kostenfrei zur "
"Verfügung."
#. Author of the plugin
msgid "ecsec GmbH"
msgstr "ecsec GmbH"
#. Author URI of the plugin
msgid "https://www.ecsec.de"
msgstr "https://www.ecsec.de"
#: admin/class-eidlogin-admin.php:199
msgid "Settings"
msgstr "Einstellungen"
#: admin/class-eidlogin-admin.php:211
msgid "Settings eID-Login"
msgstr "Einstellungen eID-Login"
#: admin/class-eidlogin-rest.php:159
msgid "The activation checkbox is missing."
msgstr "Die Aktivierungs-Checkbox fehlt."
#: admin/class-eidlogin-rest.php:163
msgid "The EntityID of the Service Provider is missing."
msgstr "Die EntityID des Service Providers fehlt."
#: admin/class-eidlogin-rest.php:167
msgid "The enforce encryption parameter is missing."
msgstr "Der Parameter zur erzwungenen Verschlüsselung fehlt."
#: admin/class-eidlogin-rest.php:171
msgid "The EntityID of the Identity Provider is missing."
msgstr "Die EntityID des Identity Providers fehlt."
#: admin/class-eidlogin-rest.php:175
msgid "Invalid Single Sign-On URL of the Identity Provider."
msgstr "Ungültige Identity Provider Single Sign-On URL."
#: admin/class-eidlogin-rest.php:179
msgid "The Signature Certificate of the Identity Provider is missing."
msgstr "Das Signatur-Zertifikat des Identity Providers fehlt."
#: admin/class-eidlogin-rest.php:183
msgid "The Encryption Certificate of the Identity Provider is missing."
msgstr "Das Verschlüsselungszertifikat des Identity Providers fehlt."
#: admin/class-eidlogin-rest.php:187
msgid "The AuthnRequestExtension XML element is no valid XML."
msgstr "Das AuthnRequestExtension XML-Element ist kein valides XML."
#: admin/class-eidlogin-rest.php:191
msgid "The value of the confirmation dialog is missing."
msgstr "Der Wert aus dem Bestätigungsdialog fehlt."
#: admin/class-eidlogin-rest.php:319
msgid "Settings have been saved."
msgstr "Die Einstellungen wurden gespeichert."
#: admin/class-eidlogin-rest.php:327
msgid "Settings have been reset."
msgstr "Die Einstellungen wurden zurückgesetzt."
#: admin/class-eidlogin-rest.php:413
msgid "Certificate Rollover has been prepared."
msgstr "Zertifikatswechsel erfolgreich vorbereitet."
#: admin/class-eidlogin-rest.php:441
msgid "Certificate Rollover has been executed."
msgstr "Zertifikatswechsel erfolgreich durchgeführt."
#: db/class-eidlogin-user.php:107
msgid "Cannot save eID for the current user."
msgstr "Die eID konnte für den aktuellen Benutzer nicht gespeichert werden."
#. Translators: %s: the type of the certificate (signature or encryption)
#: includes/class-eidlogin-certificates.php:262
msgid "The %s of the Identity Provider could not be read."
msgstr "Das %s des Identity Providers konnte nicht gelesen werden."
#. Translators: %1$s The type of the certificate (signature or encryption) and %2$s the minimal valid key length
#: includes/class-eidlogin-certificates.php:285
msgid ""
"The %1$s of the Identity Provider has an insufficient public key length. The "
"minimal valid key length is %2$s."
msgstr ""
"Das %1$s des Identity Providers beinhaltet einen öffentlichen Schlüssel "
"unzureichender Länge. Die minimal gültige Schlüssellänge ist %2$s."
#: includes/class-eidlogin-helper.php:126
msgid "Signature Certificate"
msgstr "Signaturzertifikat"
#: includes/class-eidlogin-helper.php:141
msgid "Encryption Certificate"
msgstr "Verschlüsselungszertifikat"
#: includes/class-eidlogin-i18n.php:45
msgid "Overview"
msgstr "Überblick"
#: includes/class-eidlogin-i18n.php:46
msgid "Select IdP"
msgstr "IdP wählen"
#: includes/class-eidlogin-i18n.php:47
msgid "Configure IdP"
msgstr "IdP konfigurieren"
#: includes/class-eidlogin-i18n.php:48
msgid "Connect eID"
msgstr "eID verknüpfen"
#: includes/class-eidlogin-i18n.php:49
msgid "Help"
msgstr "Hilfe"
#: includes/class-eidlogin-i18n.php:50
msgid "Close"
msgstr "Schließen"
#: includes/class-eidlogin-i18n.php:51
msgid "Back"
msgstr "Zurück"
#: includes/class-eidlogin-i18n.php:52
msgid "Next"
msgstr "Weiter"
#: includes/class-eidlogin-i18n.php:55
msgid "What is the eID-Login plugin?"
msgstr "Was ist das eID-Login Plugin?"
#: includes/class-eidlogin-i18n.php:56
msgid ""
"The eID-Login plugin enables users to login to WordPress using an <b>eID-"
"Card</b>, i.e. the <a href=\"https://www.personalausweisportal.de/Webs/PA/EN/"
"citizens/electronic-identification/electronic-identification-node.html\" "
"target=\"_blank\">eID function</a> of the German Identity Card. For the "
"connection of an eID to their WordPress account and the eID based login, "
"users need an <b>eID-Client</b>, this means an application like AusweisApp2 "
"or the Open e-Card App."
msgstr ""
"Das eID-Login Plugin ermöglicht Nutzern die Anmeldung an WordPress mit einer "
"<b>eID-Karte</b> z.B. der <a href=\"https://www.personalausweisportal.de/"
"Webs/PA/DE/buergerinnen-und-buerger/online-ausweisen/online-ausweisen-node."
"html\" target=\"_blank\">Online-Ausweisfunktion</a> des Personalausweises. "
"Für die Verknüpfung der eID mit dem Nutzerkonto bei WordPress, sowie für die "
"Anmeldung mittels eID benötigen die Nutzer einen <b>eID-Client</b>, d.h. "
"eine Anwendung wie z.B. die AusweisApp2 oder die Open e-Card App."
#: includes/class-eidlogin-i18n.php:57
msgid ""
"By using the German eID card (or another eID) and the associated PIN code "
"the eID-Login provides a secure alternative to the login using username and "
"password."
msgstr ""
"Durch die Verwendung der Online-Ausweisfunktion des Personalausweises (bzw. "
"einer anderen eID) und der zugehörigen selbstgewählten PIN stellt der eID-"
"Login eine sicherere Alternative zur Anmeldung mit Benutzername und Passwort "
"dar."
#: includes/class-eidlogin-i18n.php:58
msgid ""
"<b>Important!</b> When using the eID-Login plugin in it`s default "
"configuration, no personal data from the eID card will be read. Only the <a "
"href=\"https://www.personalausweisportal.de/SharedDocs/faqs/Webs/PA/DE/"
"Haeufige-Fragen/9_pseudonymfunktikon/pseudonymfunktion-liste.html\" target="
"\"_blank\">pseudonym function</a> of the eID is being used. If any other "
"data is being read, the user will be informed about it."
msgstr ""
"<b>Wichtig!</b> Bei der Verwendung des eID-Logins werden in der "
"Standardkonfiguration keine persönlichen Daten aus dem Personalausweis "
"ausgelesen. Stattdessen wird die <a href=\"https://www.personalausweisportal."
"de/SharedDocs/faqs/Webs/PA/DE/Haeufige-Fragen/9_pseudonymfunktikon/"
"pseudonymfunktion-liste.html\" target=\"_blank\">Pseudonymfunktion</a> des "
"Ausweises verwendet. Werden davon abweichend weitere Daten ausgelesen, so "
"wird der Benutzer darüber informiert."
#: includes/class-eidlogin-i18n.php:59
msgid "Setup with SkIDentity as Identity Provider"
msgstr "Einrichtung mit SkIDentity als Identity Provider"
#: includes/class-eidlogin-i18n.php:60
msgid ""
"The easiest way to setup the eID-Login plugin is by using the <a href="
"\"https://skidentity.com/\" target=\"_blank\">SkIDentity Service</a> which "
"has been preconfigured for ease of use. For the default setup, which means "
"only using the pseudonym function, no costs incur. The only requirement is "
"the <a href=\"https://sp.skidentity.de/\" target=\"_blank\">registration</a> "
"at SkIDentity."
msgstr ""
"Die einfachste Art das eID-Login Plugin einzurichten ist die Verwendung des "
"<a href=\"https://skidentity.de/\" target=\"_blank\">SkIDentity Service</"
"a> , welcher bereits für die unkomplizierte Nutzung vorkonfiguriert ist. Für "
"die Standardkonfiguration, bei der die Pseudonymfunktion bei der Anmeldung "
"verwendet wird, fallen keine Kosten an. Einzige Voraussetzung ist die <a "
"href=\"https://sp.skidentity.de/\" target=\"_blank\">Registrierung</a> bei "
"SkIDentity."
#: includes/class-eidlogin-i18n.php:61
msgid "Setup with another Identity Provider"
msgstr "Einrichtung mit einem anderen Identity Provider"
#: includes/class-eidlogin-i18n.php:62
msgid ""
"For the eID-Login any Identity Provider using the SAML protocol for "
"communication with WordPress can be used. Beyond that any service providing "
"an eID-Server according to <a href=\"https://www.bsi.bund.de/DE/Themen/"
"Unternehmen-und-Organisationen/Standards-und-Zertifizierung/Technische-"
"Richtlinien/TR-nach-Thema-sortiert/tr03130/TR-03130_node.html\" target="
"\"_blank\">BSI TR-03130</a> (also based on SAML) can be used."
msgstr ""
"Es können für den eID-Login alle Identity Provider angebunden werden, welche "
"das SAML Protokoll nutzen, um mit WordPress zu kommunizieren. Darüber hinaus "
"ist die Nutzung von Diensten möglich, die einen eID-Server gemäß <a href="
"\"https://www.bsi.bund.de/DE/Themen/Unternehmen-und-Organisationen/Standards-"
"und-Zertifizierung/Technische-Richtlinien/TR-nach-Thema-sortiert/tr03130/"
"TR-03130_node.html\" target=\"_blank\">BSI TR-03130</a> zur Verfügung "
"stellen, welcher auch auf SAML basiert."
#: includes/class-eidlogin-i18n.php:63
msgid "Technical background information"
msgstr "Technischer Hintergrund"
#: includes/class-eidlogin-i18n.php:64
msgid ""
"The eID-Login plugin uses the SAML protocol to let users login into "
"WordPress via an external service (Identity Provider) using an eID."
msgstr ""
"Das eID-Login Plugin nutzt das SAML Protokoll, damit sich Benutzer Ihrer "
"WordPress-Instanz über einen externen Dienst (Identity Provider) unter "
"Nutzung der Online-Ausweisfunktion anmelden können."
#: includes/class-eidlogin-i18n.php:65
msgid "The SAML protocol defines two major and collaborating entities:"
msgstr "Das SAML Protokoll definiert die folgenden beiden Entitäten:"
#: includes/class-eidlogin-i18n.php:66
msgid ""
"<b>Service Provider (SP)</b>: An entity which provides any kind of service "
"over the web. In the scope of the eID-Login plugin this is your WordPress "
"instance, which contains a SAML Service Provider component."
msgstr ""
"<b>Service Provider (SP)</b>: Eine Entität, welche einen Dienst über das Web "
"bereitstellt. Im Rahmen des eID-Login Plugins ist es Ihre WordPress-Instanz, "
"welche eine SAML Service Provider Komponente enthält."
#: includes/class-eidlogin-i18n.php:67
msgid ""
"<b>Identity Provider (IdP)</b>: An entity which authenticates the User and "
"returns a corresponding assertion to the Service Provider. In the scope of "
"the eID-Login plugin this can be any standard compliant SAML Identity "
"Provider which supports eID-based authentication, for example the <a href="
"\"https://skidentity.com/\" target=\"_blank\">SkIDentity Service</a>."
msgstr ""
"<b>Identity Provider (IdP)</b>: Eine Entität, welche den Benutzer "
"authentifiziert und eine entsprechende Bestätigung (Assertion) an den "
"Service Provider zurück gibt. Im Rahmen des eID-Login Plugins kann dies "
"jeder zum SAML-Standard kompatible Identity Provider sein, welcher eID-"
"basierte Authentisierung unterstützt, wie zum Beispiel der <a href=\"https://"
"skidentity.de/\" target=\"_blank\">SkIDentity Service</a>."
#: includes/class-eidlogin-i18n.php:68
msgid "The eID-Login procedure comprises the following steps:"
msgstr "Der eID-Login Prozess besteht aus folgenden Schritten:"
#: includes/class-eidlogin-i18n.php:69
msgid "The User initiates the login procedure at the Service Provider."
msgstr "Der Benutzer initiert den Anmeldevorgang am Service Provider."
#: includes/class-eidlogin-i18n.php:70
msgid ""
"The Service Provider creates a SAML authentication request (<AuthnRequest>) "
"and sends it together with the User via redirect to the Identity Provider."
msgstr ""
"Der Service Provider erstellt eine SAML Authentisierungsanfrage "
"(<AuthnRequest>) und sendet diese zusammen mit dem Benutzer über einen "
"Redirect an den Identity Provider."
#: includes/class-eidlogin-i18n.php:71
msgid ""
"The Identity Provider authenticates the User using her eID via an eID-Client."
msgstr ""
"Der Identity Provider authentifiziert den Benutzer über einen eID-Client "
"unter Verwendung der eID."
#: includes/class-eidlogin-i18n.php:72
msgid ""
"The Identity Provider returns the result of the authentication procedure to "
"the Service Provider (<Response>)."
msgstr ""
"Der Identity Provider gibt das Ergebnis der Authentifizierung an den Service "
"Provider zurück (<Response>)."
#: includes/class-eidlogin-i18n.php:73
msgid ""
"The Service Provider validates the provided response and logs in the User in "
"case of success."
msgstr ""
"Der Service Provider validiert das erhaltene Ergebnis und meldet im "
"Erfolgsfall den Benutzer an."
#: includes/class-eidlogin-i18n.php:76
msgid ""
"The eID-Login plugin offers an alternative way of login for the registered "
"users of your WordPress instance, using their electronic identity (<b>eID</"
"b>). For example the German eID can then be used for a secure login."
msgstr ""
"Das eID-Login Plugin ermöglicht eine alternative Anmeldung für registrierte "
"Benutzer Ihrer WordPress-Instanz mittels einer elektronischen Identität "
"(<b>eID</b>). Benutzer können sich dann z.B. mit der Online-Ausweisfunktion "
"ihres Personalausweises auf sichere Weise anmelden."
#: includes/class-eidlogin-i18n.php:77
msgid "Setup of the eID-Login plugin consists of three steps:"
msgstr "Die Einrichtung des eID-Login Plugins erfolgt in drei Schritten:"
#: includes/class-eidlogin-i18n.php:78 includes/class-eidlogin-i18n.php:88
msgid "Select Identity Provider"
msgstr "Identity Provider wählen"
#: includes/class-eidlogin-i18n.php:79
msgid ""
"For the usage of the eID-Login plugin a service which makes the eID "
"accessible is needed. This service is called <b>Identity Provider</b> or in "
"short <b>IdP</b>. You can choose to use the preconfigured <a target=\"_blank"
"\" href=\"https://skidentity.com\">SkIDentity</a> service or select another "
"service."
msgstr ""
"Für die Nutzung des eID-Login Plugins wird ein Dienst benötigt, der die eID "
"zugänglich macht. Dieser wird als <b>Identity Provider</b> oder kurz <b>IdP</"
"b> bezeichnet. Sie haben die Möglichkeit den <a target=\"_blank\" href="
"\"https://skidentity.de\">SkIDentity</a> Dienst mit Voreinstellungen zu "
"nutzen oder einen anderen Dienst zu wählen."
#: includes/class-eidlogin-i18n.php:80
msgid "Configuration at the Identity Provider"
msgstr "Konfiguration am Identity Provider"
#: includes/class-eidlogin-i18n.php:81
msgid ""
"At the Identity Provider your WordPress instance, which serves as <b>Service "
"Provider</b>, must be registered. The process of registration depends on the "
"respective Identity Provider. The information needed for registration is "
"provided in step 2."
msgstr ""
"Beim Identity Provider muss Ihre WordPress-Instanz, die als <b>Service "
"Provider</b> dient, eingetragen werden. Das exakte Vorgehen ist vom "
"jeweiligen Anbieter abhängig. Die benötigten Informationen werden Ihnen in "
"Schritt 2 bereitgestellt."
#: includes/class-eidlogin-i18n.php:82
msgid ""
"In order to use a German eID (\"Personalausweis\") or another eID for the "
"login at WordPress, the eID must be connected to an user account."
msgstr ""
"Um sich künftig mit dem Personalausweis oder einer anderen eID bei WordPress "
"anmelden zu können, muss diese noch mit dem Nutzerkonto verknüpft werden."
#: includes/class-eidlogin-i18n.php:83
msgid ""
"Please click on the (?) icon for help regarding the setup or more "
"information."
msgstr ""
"Klicken Sie auf das (?) Icon für Hilfe bei der Einrichtung oder für weitere "
"Informationen."
#: includes/class-eidlogin-i18n.php:84
msgid "Continue with SkIDentity"
msgstr "Weiter mit SkIDentity"
#: includes/class-eidlogin-i18n.php:85
msgid "Continue with another IdP"
msgstr "Weiter mit anderem IdP"
#: includes/class-eidlogin-i18n.php:89
msgid "Select an Identity Provider. It must support the SAML protocol."
msgstr ""
"Wählen Sie einen Identity Provider. Dieser muss das SAML-Protokoll "
"unterstützen."
#: includes/class-eidlogin-i18n.php:90
msgid ""
"Insert the Identity Providers Metadata URL in the respective form field and "
"assign an Entity ID, which must be used for the configuration of the "
"Identity Provider in the next step."
msgstr ""
"Tragen Sie dessen Metadaten URL in das entsprechende Feld ein und bestimmen "
"Sie die EntityID, die Sie im nächsten Schritt bei Ihrem Identity Provider "
"eintragen müssen."
#: includes/class-eidlogin-i18n.php:91
msgid "Identity Provider Metadata URL"
msgstr "Identity Provider Metadaten URL"
#: includes/class-eidlogin-i18n.php:92
msgid ""
"When inserting the Metadata URL, the values in the advanced settings will be "
"updated. Alternatively the advanced settings can be inserted by hand."
msgstr ""
"Durch das Eintragen der Metadaten URL werden die Werte in den "
"fortgeschrittenen Einstellungen aktualisiert. Alternativ können Sie die "
"fortgeschrittenen Einstellungen von Hand anpassen."
#: includes/class-eidlogin-i18n.php:93
msgid "Service Provider EntityID"
msgstr "Service Provider EntityID"
#: includes/class-eidlogin-i18n.php:94
msgid "Usually the domain of your WordPress instance is used."
msgstr "Üblicherweise wird die Domain Ihrer WordPress-Instanz genutzt."
#: includes/class-eidlogin-i18n.php:95 includes/class-eidlogin-i18n.php:132
msgid ""
"Enforce encryption of SAML assertions (Check only if the selected Identity "
"Provider supports this feature!)"
msgstr ""
"Verschlüsselung von Authentifizierungsanworten erzwingen (Aktivieren Sie "
"diese Option nur, wenn dies vom Identity Provider unterstützt wird!)"
#: includes/class-eidlogin-i18n.php:96
msgid "Edit Advanced Settings"
msgstr "Fortgeschrittene Einstellungen bearbeiten"
#: includes/class-eidlogin-i18n.php:99 admin/js/eidlogin-admin.js:67
msgid "Advanced Settings"
msgstr "Fortgeschrittene Einstellungen"
#: includes/class-eidlogin-i18n.php:100 includes/class-eidlogin-i18n.php:136
msgid ""
"URL of the Identity Provider to which the SAML authentication request will "
"be sent."
msgstr ""
"URL des Identity Provider zu welcher die SAML Authentisierungsanfrage "
"gesendet wird."
#: includes/class-eidlogin-i18n.php:101
msgid "Signature Certificate of the Identity Provider"
msgstr "Signatur-Zertifikat des Identity Provider"
#: includes/class-eidlogin-i18n.php:102
msgid "Certificate to validate the signature of the authentication response."
msgstr ""
"Zertifikat um die Signatur der Authentifizierungsantwort zu validieren."
#: includes/class-eidlogin-i18n.php:103
msgid "Encryption Certificate of the Identity Provider"
msgstr "Verschlüsselungszertifikat des Identity Provider"
#: includes/class-eidlogin-i18n.php:104
msgid ""
"Certificate to encrypt the authentication request. Omitting the element "
"means that the SAML requests are not encrypted."
msgstr ""
"Zertifikat um die Authentisierungsanfrage zu verschlüsseln. Falls kein Wert "
"eingetragen ist, so werden Anfragen nicht verschlüsselt."
#: includes/class-eidlogin-i18n.php:105
msgid "AuthnRequestExtension XML element"
msgstr "AuthnRequestExtension XML Element"
#: includes/class-eidlogin-i18n.php:106
msgid ""
"For a connection according to <a href=\"https://www.bsi.bund.de/SharedDocs/"
"Downloads/DE/BSI/Publikationen/TechnischeRichtlinien/TR03130/TR-03130_TR-eID-"
"Server_Part1.pdf?__blob=publicationFile&v=1\" target=\"_blank\">BSI "
"TR-03130</a>, the corresponding <AuthnRequestExtension> XML element must be "
"inserted here."
msgstr ""
"Um eine Verbindung gemäß <a href=\"https://www.bsi.bund.de/SharedDocs/"
"Downloads/DE/BSI/Publikationen/TechnischeRichtlinien/TR03130/TR-03130_TR-eID-"
"Server_Part1.pdf?__blob=publicationFile&v=1\" target=\"_blank\">BSI "
"TR-03130</a> zu nutzen, muss das entsprechende <AuthnRequestExtension> XML "
"Element hier eingetragen werden."
#: includes/class-eidlogin-i18n.php:109
msgid ""
"Now go to the selected Identity Provider and use the following data to "
"register the Service Provider there:"
msgstr ""
"Gehen Sie jetzt zum ausgewählten Identity Provider und nutzen Sie die "
"folgenden Daten, um den Service Provider dort einzutragen:"
#: includes/class-eidlogin-i18n.php:110
msgid ""
"You have selected SkIDentity. Click the button to the right to go to "
"SkIDentity."
msgstr ""
"Sie haben SkIDentity ausgewählt. Klicken Sie den Button rechts um zu "
"SkIDentity zu gelangen."
#: includes/class-eidlogin-i18n.php:111
msgid "Open SkIDentity"
msgstr "SkIDentity öffnen"
#: includes/class-eidlogin-i18n.php:112
msgid "The metadata as provided by the Service Provider at the URL"
msgstr "Die Service Provider Metadaten, auch bereitgestellt unter"
#: includes/class-eidlogin-i18n.php:115
msgid ""
"To use the eID-Login, the eID must be connected to the user account. For "
"this you need an eID-Card, like the German eID, a suitable cardreader and an "
"active eID-Client (for example <a href=\"https://www.openecard.org/en/"
"download/pc/\" target=\"_blank\">Open eCard-App</a> or <a href=\"https://www."
"ausweisapp.bund.de/ausweisapp2/\" target=\"_blank\">AusweisApp2</a>). After "
"establishing the connection the eID-Login can be used with the button on the "
"login page."
msgstr ""
"Um den eID-Login nutzen zu können, muss die eID mit dem Konto verknüpft "
"werden. Dafür benötigt man eine eID-Karte, z.B. einen Personalausweis, einen "
"geeigneten Kartenleser und einen gestarteten eID-Client (z.B. <a href="
"\"https://www.openecard.org/en/download/pc/\" target=\"_blank\">Open eCard-"
"App</a> oder <a href=\"https://www.ausweisapp.bund.de/ausweisapp2/\" target="
"\"_blank\">AusweisApp2</a>). Nach der Verknüpfung kann der eID-Login mit dem "
"entsprechenden Button auf der Anmeldeseite verwendet werden."
#: includes/class-eidlogin-i18n.php:116
msgid ""
"You can connect your account with an eID now. This step is optional and can "
"be done and reverted any time later in your personal settings under the "
"security section."
msgstr ""
"Sie können Ihr Konto nun mit Ihrer eID verknüpfen. Dieser Schritt ist "
"optional und kann jederzeit später im Bereich 'Sicherheit' der persönlichen "
"'Einstellungen' erfolgen und rückgängig gemacht werden."
#: includes/class-eidlogin-i18n.php:117
msgid ""
"<b>Please note</b>: After connecting the eID or finishing the wizard, this "
"page will show a form for direct access to the eID-Login settings. To use "
"the wizard again, reset the settings of the eID-Login plugin."
msgstr ""
"<b>Bitte beachten Sie</b>: Nach dem Erstellen der Verknüpfung oder dem "
"Abschließen der Konfiguration wird auf dieser Seite ein Formular für den "
"direkten Zugriff auf die eID-Login Konfiguration angezeigt. Um den Wizard "
"erneut zu nutzen, setzen Sie die Einstellungen des eID-Login Plugins zurück."
#: includes/class-eidlogin-i18n.php:118 saml/class-eidlogin-saml.php:726
msgid "Create connection to eID"
msgstr "Verknüpfung zu eID erstellen"
#: includes/class-eidlogin-i18n.php:119
msgid "Finish wizard"
msgstr "Konfiguration abschließen"
#: includes/class-eidlogin-i18n.php:122
msgid ""
"If the eID-Login is activated, the eID-Login button is shown and users can "
"edit eID connections."
msgstr ""
"Ist der eID-Login aktiviert, so wird der eID-Login Button angezeigt und "
"Benutzer können Ihre eID-Verknüpfung editieren."
#: includes/class-eidlogin-i18n.php:123
msgid "eID-Login is activated"
msgstr "eID-Login ist aktiviert"
#: includes/class-eidlogin-i18n.php:124
msgid ""
"Please Note: Required values in the following form are labeled with an *."
msgstr "Bitte beachten Sie: Pflichtfelder sind mit einem * markiert."
#: includes/class-eidlogin-i18n.php:126
msgid "Service Provider Settings"
msgstr "Service Provider Einstellungen"
#: includes/class-eidlogin-i18n.php:127
msgid ""
"EntityID of the Service Provider as configured at the Identity Provider."
msgstr ""
"EntityID des Service Provider, wie beim Identity Provider konfiguriert."
#: includes/class-eidlogin-i18n.php:128
msgid ""
"Assertion Consumer URL is determined by the domain of your Service Provider "
"and cannot be changed. Use this value to configure the Service Provider at "
"the Identity Provider."
msgstr ""
"Die Assertion Consumer URL ist bestimmt durch die Domain des Service "
"Providers und kann nicht geändert werden. Nutzen Sie diesen Wert, um den "
"Service Provider beim Identity Provider zu konfigurieren."
#: includes/class-eidlogin-i18n.php:129
msgid ""
"SAML Metadata URL is determined by the domain of your Service Provider and "
"cannot be changed. Use this value to configure the Service Provider at the "
"Identity Provider."
msgstr ""
"Die SAML Metadaten URL ist bestimmt durch die Domain des Service Providers "
"und kann nicht geändert werden. Nutzen Sie diesen Wert, um den Service "
"Provider beim Identity Provider zu konfigurieren."
#: includes/class-eidlogin-i18n.php:130
msgid "SAML Metadata URL"
msgstr "SAML Metadaten URL"
#: includes/class-eidlogin-i18n.php:131
msgid "Encrypted assertions"
msgstr "Verschlüsselte Authentifizierungsantworten"
#: includes/class-eidlogin-i18n.php:134
msgid "Identity Provider Settings"
msgstr "Identity Provider Einstellungen"
#: includes/class-eidlogin-i18n.php:135
msgid "EntityID of the Identity Provider"
msgstr "EntityID des Identity Provider"
#: includes/class-eidlogin-i18n.php:138
msgid "Save Changes"
msgstr "Änderungen speichern"
#: includes/class-eidlogin-i18n.php:139
msgid "Reset Settings"
msgstr "Einstellungen zurücksetzen"
#: includes/class-eidlogin-i18n.php:142
msgid "SAML Certificate Rollover"
msgstr "SAML Zertifikatswechsel"
#. Translators: %s: the remaining days
#: includes/class-eidlogin-i18n.php:144
msgid ""
"The active certificates expire in %s days. For a regular certificate "
"rollover no action is required. The rollover will be done automatically. But "
"you always have the option to do a manual rollover, if needed."
msgstr ""
"Die aktuellen Zertifikate laufen in %s Tagen ab. Für einen regulären "
"Zertifikatswechsel ist kein Handeln erforderlich. Der Wechsel auf ein neues "
"Zertifikat erfolgt automatisch. Sie haben aber jeder Zeit auch die "
"Möglichkeit bei Bedarf einen manuellen Zertifikatswechsel durchzuführen."
#: includes/class-eidlogin-i18n.php:146
msgid "Current certificates"
msgstr "Aktuelle Zertifikate"
#: includes/class-eidlogin-i18n.php:147
msgid "The currently active certificate ends with:"
msgstr "Das aktuell verwendete Zertifikat endet mit:"
#: includes/class-eidlogin-i18n.php:148
msgid "The newly prepared certificate, which is not yet active, ends with:"
msgstr ""
"Das vorbereitetet Zertifikat, welches noch nicht aktiviert ist, endet mit:"
#: includes/class-eidlogin-i18n.php:149
msgid "Signature"
msgstr "Signatur"
#: includes/class-eidlogin-i18n.php:150
msgid "Encryption"
msgstr "Verschlüsselung"
#: includes/class-eidlogin-i18n.php:151 admin/js/eidlogin-admin.js:616
#: admin/js/eidlogin-admin.js:617
msgid "No new certificate prepared yet."
msgstr "Noch kein neues Zertifikat vorbereitet."
#: includes/class-eidlogin-i18n.php:153
msgid "Manual Certificate Rollover"
msgstr "Manueller Zertifikatswechsel"
#: includes/class-eidlogin-i18n.php:154
msgid "Certificate Rollover Preparation"
msgstr "Vorbereitung des Zertifikatswechsels"
#: includes/class-eidlogin-i18n.php:155
msgid ""
"In a first step new certificates will be created, which will be in the state "
"<i>prepared</i> but not activated."
msgstr ""
"In einem ersten Schritt werden neue Zertifikate erzeugt, welche den Status "
"<i>vorbereitet</i> haben, aber noch nicht aktiviert sind."
#: includes/class-eidlogin-i18n.php:156
msgid ""
"After some time the Identity Provider should have noticed the presence of "
"the new certificates or you must explicitly inform the Identity Provider "
"about them. After this has happened the rollover can be executed."
msgstr ""
"Nach einiger Zeit sollte der Identity Provider die neuen Zertifikate erkannt "
"und eingelesen haben, oder Sie müssen diese dort explizit konfigurieren. "
"Danach kann der Zertifikatswechsel durchgeführt werden."
#: includes/class-eidlogin-i18n.php:157
msgid "Prepare Certificate Rollover"
msgstr "Zertifikatswechsel vorbereiten"
#: includes/class-eidlogin-i18n.php:159
msgid "Activation of prepared certificates"
msgstr "Aktivierung der vorbereiteten Zertifikate"
#: includes/class-eidlogin-i18n.php:160
msgid ""
"The activation of the new certificates will happen automatically after some "
"time, but can also be done by clicking the button below."
msgstr ""
"Die Aktivierung der vorbereiteten Zertifikate erfolgt nach einiger Zeit "
"automatisch, kann aber auch durch Klick auf den untenstehenden Button sofort "
"ausgeführt werden."
#: includes/class-eidlogin-i18n.php:161
msgid ""
"CAUTION: Only do this step manually, if you have made sure that the prepared "
"certificates have been successfully configured at the Identity Provider or "
"there are other important reasons to change the certificates immediately."
msgstr ""
"ACHTUNG: Führen Sie diesen Schritt nur dann durch, wenn Sie sicher sind, "
"dass die vorbereiteten Zertifikate erfolgreich beim Identity Provider "
"konfiguriert wurden oder es andere wichtige Gründe für einen sofortigen "
"Zertifikatswechsel gibt."
#: includes/class-eidlogin-i18n.php:162
msgid "Activate prepared certificates"
msgstr "Vorbereitete Zertifikate aktivieren"
#: includes/class-eidlogin-i18n.php:163
msgid "The button is only active if the rollover has been prepared already!"
msgstr ""
"Dieser Knopf ist nur aktiv, wenn ein Zertifikatswechsel bereits vorbereitet "
"wurde!"
#: includes/class-eidlogin-i18n.php:166
msgid "Change status"
msgstr "Status ändern"
#: includes/class-eidlogin-i18n.php:167
msgid "Disable password"
msgstr "Passwort deaktivieren"
#: includes/class-eidlogin-i18n.php:168
msgid ""
"Disable password based login. This will be unset if you use the password "
"recovery."
msgstr ""
"Anmelden mit Passwort deaktivieren. Diese Option wird zurückgesetzt, falls "
"Sie Ihr Passwort zurücksetzen."
#: includes/class-eidlogin-i18n.php:169
msgid ""
"After the deletion you will not be able to access your account via eID-"
"Login. Are you sure?"
msgstr ""
"Nach dem Löschen können Sie sich nicht mehr über eID-Login an Ihrem Konto "
"anmelden. Sind Sie sicher?"
#: saml/class-eidlogin-saml.php:323
msgid "Error while validating the SAML Response."
msgstr "Validierung der SAML Response fehlgeschlagen."
#: saml/class-eidlogin-saml.php:498
msgid "Creation of eID connection aborted"
msgstr "Erstellung der eID-Verknüpfung abgebrochen"
#: saml/class-eidlogin-saml.php:512
msgid ""
"Creation of eID connection failed! Please ensure the used eID-Card is valid."
msgstr ""
"Erstellung der eID-Verknüpfung fehlgeschlagen! Bitte stellen Sie sicher, "
"dass die genutzte eID-Karte gültig ist."
#: saml/class-eidlogin-saml.php:596
msgid "The eID is already connected to another account."
msgstr "Diese eID ist schon mit einem anderen Konto verknüpft."
#: saml/class-eidlogin-saml.php:642
msgid ""
"The SAML plugin is not configured properly. Please contact your "
"administrator."
msgstr ""
"Die Konfiguration des SAML Plugins ist fehlerhaft. Bitte wenden Sie sich an "
"den Administrator."
#: saml/class-eidlogin-saml.php:645
msgid "Login with eID failed! Please ensure the used eID-Card is valid."
msgstr ""
"Login mit eID ist fehlgeschlagen! Bitte stellen Sie sicher, dass die "
"genutzte eID-Karte gültig ist."
#: saml/class-eidlogin-saml.php:648
msgid "eID-Login is not yet set up for your account."
msgstr "eID-Login wurde für Ihr Konto noch nicht eingerichtet."
#: saml/class-eidlogin-saml.php:651
msgid "Log in with eID aborted."
msgstr "Anmelden mit eID abgebrochen."
#: saml/class-eidlogin-saml.php:654
msgid "An unknown error occurred."
msgstr "Ein unbekannter Fehler ist aufgetreten."
#: saml/class-eidlogin-saml.php:676
msgid "The eID-Login is not activated! Please contact the administrator!"
msgstr ""
"Der eID-Login ist nicht aktiviert! Bitte wenden Sie sich an den "
"Administrator!"
#: saml/class-eidlogin-saml.php:682 saml/class-eidlogin-saml.php:740
msgid "Status"
msgstr "Status"
#: saml/class-eidlogin-saml.php:719
msgid ""
"Your account is currently connected to your eID. By default you can use "
"Username and Password or eID to login. Activate the following option, to "
"prevent the login by username and password and enhance the security of your "
"account."
msgstr ""
"Ihr Konto ist derzeit mit Ihrer eID verknüpft. In der Grundeinstellung "
"können Sie sich sowohl mit Nutzername und Passwort als auch mit Ihrer eID an "
"ihrem Benutzerkonto anmelden. Aktivieren Sie die nachfolgende Option, um die "
"Anmeldung mit Nutzername und Passwort zu verhindern und so die Sicherheit "
"Ihres Kontos zu erhöhen."
#: saml/class-eidlogin-saml.php:721
msgid "Delete connection to eID"
msgstr "eID-Verknüpfung löschen"
#: saml/class-eidlogin-saml.php:724
msgid ""
"Your account is currently not connected to your eID. Create a connection to "
"use your German eID (\"Personalausweis\") or another eID for the login to "
"WordPress. More information can be found in the <a href=\"https://eid."
"services/eidlogin/wordpress/userdocs?lang=en\" target=\"_blank\">FAQ</a>."
msgstr ""
"Ihr Konto ist derzeit nicht mit Ihrer eID verknüpft. Erstellen Sie eine "
"Verknüpfung, um sich künftig auf sichere Weise mit ihrem Personalausweis "
"oder einer anderen eID bei WordPress anzumelden. Weitere Informationen "
"finden Sie in den <a href=\"https://eid.services/eidlogin/wordpress/userdocs?"
"lang=en\" target=\"_blank\">FAQ</a>."
#: saml/class-eidlogin-saml.php:882
msgid ""
"You can use your eID (for example your German identity card) to login to "
"WordPress. Connect your eID to your account in the settings now."
msgstr ""
"Sie können Ihre eID (z.B. Ihren Personalausweis) für das Anmelden bei "
"WordPress nutzen. Verknüpfen Sie jetzt in den Einstellungen Ihr Konto mit "
"Ihrer eID."
#: saml/class-eidlogin-saml.php:883
msgid "Go to Settings"
msgstr "Zu den Einstellungen"
#: saml/class-eidlogin-saml.php:908
msgid "Login with username and password is disabled. Please use the eID-Login."
msgstr ""
"Login mit Benutzername und Passwort ist deaktiviert. Bitte verwenden Sie den "
"eID-Login."
#: admin/js/eidlogin-admin.js:68
msgid "Hide Advanced Settings"
msgstr "Fortgeschrittene Einstellungen verbergen"
#: admin/js/eidlogin-admin.js:69
msgid "Show Service Provider Metadata"
msgstr "Service Provider Metadaten anzeigen"
#: admin/js/eidlogin-admin.js:70
msgid "Hide Service Provider Metadata"
msgstr "Service Provider Metadaten verbergen"
#: admin/js/eidlogin-admin.js:374
msgid ""
"Please confirm that the Service Provider has been registered at the Identity "
"Provider. Pressing the \"Next\" button will activate the eID-Login."
msgstr ""
"Bitte stellen Sie sicher, dass Sie den Service Provider beim Identity "
"Provider eingetragen haben. Die eID-Login App wird mit dem Klick auf \"Weiter"
"\" aktiviert."
#: admin/js/eidlogin-admin.js:420
msgid "Service Provider metadata could not be fetched"
msgstr "Service Provider Metadaten konnten nicht geladen werden"
#: admin/js/eidlogin-admin.js:474
msgid ""
"Changing the Identity Provider Settings will very likely make existing eID "
"connections not work anymore, as they are bound to a specific Identity "
"Provider! You maybe should make a backup of the settings before saving! Are "
"you sure you want to save now?"
msgstr ""
"Änderungen an den Identity Provider Einstellungen führen mit hoher "
"Wahrscheinlichkeit dazu, dass bestehende eID-Verknüpfungen nicht mehr "
"genutzt werden können, da sie jeweils an einen bestimmten Identity Provider "
"gebunden sind! Sie sollten ein Backup Ihrer Einstellungen machen, bevor Sie "
"speichern! Sind Sie sicher, dass Sie jetzt speichern möchten?"
#: admin/js/eidlogin-admin.js:480
msgid "Should all existing eID connections be deleted?"
msgstr "Sollen alle bestehenden eID-Verknüpfungen gelöscht werden?"
#: admin/js/eidlogin-admin.js:502
msgid ""
"Reset of settings will also delete eID connections of all accounts. After "
"this no account will be able to use the eID-Login anymore and all users must "
"create a new eID connection! Are you sure?"
msgstr ""
"Das Zurücksetzen der Einstellungen wird auch die eID-Verknüpfungen aller "
"Konten löschen. Danach wird kein Konto mehr über eID-Login zugänglich sein "
"und jeder Benutzer muss eine neue eID-Verknüpfung erstellen. Sind Sie sicher?"
#: admin/js/eidlogin-admin.js:549
msgid ""
"This will create new certificates which will be propagated in the Service "
"Provider SAML Metadata. Are you sure?"
msgstr ""
"Dies wird neue Zertifikate erzeugen und über die Service Provider SAML "
"Metadaten veröffentlichen. Sind Sie sicher?"
#: admin/js/eidlogin-admin.js:555
msgid ""
"This will replace the already prepared certificates and replace them with a "
"new ones which will be propagated in the Service Provider SAML Metadata. Are "
"you sure?"
msgstr ""
"Dies wird die schon vorbereiteten Zertifikate aus den Service Provider SAML "
"Metadaten entfernen und Sie durch neue Zertifikate ersetzen. Sind Sie sicher?"
#: admin/js/eidlogin-admin.js:603
msgid ""
"This will remove the currently used certificates from the Service Provider "
"SAML Metadata and activate the prepared certificates. Are you sure?"
msgstr ""
"Dies wird die derzeit genutzten Zertifikate aus den Service Provider SAML "
"Metadaten entfernen und die vorbereiteten Zertifikate aktivieren. Sind Sie "
"sicher?"

View File

@@ -1,46 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Astaoundify
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: elementify-visual-widgets 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-06-07 18:15+0530\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: includes/elementor-elements/features.php:41
msgid "About Company Features"
msgstr ""
#: includes/elementor-elements/features.php:85
msgid "Company Features"
msgstr ""
#: includes/elementor-elements/features.php:94
msgid "Title"
msgstr ""
#: includes/elementor-elements/features.php:97
msgid "Enter the title"
msgstr ""
#: includes/elementor-elements/features.php:103
msgid "Description"
msgstr ""
#: includes/elementor-elements/features.php:106
msgid "Enter the description"
msgstr ""
#: includes/elementor-elements/features.php:113
msgid "Company Tabs"
msgstr ""

View File

@@ -1,100 +0,0 @@
# 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 ""

View File

@@ -1,57 +0,0 @@
# 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 ""

View File

@@ -1,188 +0,0 @@
# 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 ""

View File

@@ -1,760 +0,0 @@
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 ""

View File

@@ -1,308 +0,0 @@
# 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 ""

View File

@@ -1,6 +0,0 @@
Changelog
==========
#### v1.0.0 - June 01, 2021
First release of the FFSystems for Wordpress plugin.

View File

@@ -1,43 +0,0 @@
== Changelog ==
= 1.0.6 =
*Release Date - 24 August 2021*
* Fixed: Some minor bugs, security issues
* Changed: Revise code for PHP warnings
= 1.0.5 =
*Release Date - 20 August 2021*
* Fixed: Some minor bugs, security issues
= 1.0.4 =
*Release Date - 19 August 2021*
* Fixed: Some minor bugs, security issues
* Changed: Update Stable Tag
= 1.0.3 =
*Release Date - 18 August 2021*
* Fixed: Some minor bugs, security issues
* Changed: Update source code by WordPress review
= 1.0.2 =
*Release Date - 17 August 2021*
* Fixed: Color picker not working
* Fixed: Link color setting not working
* Added: Extra CSS for login page
* Fixed: Update include directory
* Changed: Improve preview image upload
* Added: Background image for login page
* Added: Auto convert email text to a link
= 1.0.1 =
* Fixed: default option with Hide WordPress branding option
= 1.0.0 =
*Release Date - 15 August 2021*
* The very first version

View File

@@ -1,55 +0,0 @@
# Copyright (C) 2021 Dinesh Yadav
# This file is distributed under the same license as the Filter WC Orders plugin.
msgid ""
msgstr ""
"Project-Id-Version: Filter WC Orders 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/filter-wc-orders\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-07-25T19:43:03+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: filter-wc-orders\n"
#. Plugin Name of the plugin
msgid "Filter WC Orders"
msgstr ""
#. Plugin URI of the plugin
msgid "https://dineshinaublog.wordpress.com/filter-wc-orders/"
msgstr ""
#. Description of the plugin
msgid "It helps in sorting woocommerce orders based on a payment gateway."
msgstr ""
#. Author of the plugin
msgid "Dinesh Yadav"
msgstr ""
#. Author URI of the plugin
msgid "https://dineshinaublog.wordpress.com"
msgstr ""
#: admin/class-dkfwco-admin.php:66
msgid "No filter"
msgstr ""
#: admin/class-dkfwco-admin.php:68
msgid "By Payment Method"
msgstr ""
#: admin/class-dkfwco-admin.php:75
msgid "By User Types"
msgstr ""
#: admin/class-dkfwco-admin.php:76
msgid "Guest Users"
msgstr ""
#: admin/class-dkfwco-admin.php:77
msgid "Logged in Users"
msgstr ""

View File

@@ -1,8 +0,0 @@
# Change Log
All notable changes to this project will be documented in this file.
Follow latest changes on project website (finpose.com/changelog)
## [1.0.0] - 2019-12-11
### Added:
- Initial Release

View File

@@ -1,40 +0,0 @@
{
"name": "fluid-checkout",
"version": "1.2.2",
"description": "Provides a fluid checkout experience for any WooCommerce store. Ask for shipping information before billing in a linear and multi-step checkout, add options for gift message and packaging and add a coupon code field at the checkout page that does not distract your customers. Similar to the Shopify checkout, and even better.",
"main": "fluid-checkout.php",
"scripts": {
"version": "gulp build && git add -A",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {},
"author": "Fluidweb.co",
"license": "GPL-3.0",
"copyright": "Copyright (c) 2021, Fluidweb OÜ",
"homepage": "https://fluidcheckout.com",
"devDependencies": {
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"load-json-file": "^6.2.0",
"uglify-js": "^3.8.0"
},
"dependencies": {
"collapsible-block": "^1.1.6",
"flyout-block": "^1.1.2",
"mailcheck": "^1.1.1",
"require-bundle-js": "^1.0.0",
"require-polyfills": "^1.0.0",
"sticky-states": "^1.0.6"
}
}

View File

@@ -1,28 +0,0 @@
{
"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"
}
}

View File

@@ -1,52 +0,0 @@
# Changelog
# 1.3.1 / 2021-08-27
- Reworked as full featured plugin.
- Added an options page for easy configuration.
- New logo, courtesy of [Nicolás Franz](https://nicolasfranz.com). Many thanks, pal!
# 1.2.0 / 2021-08-13
- Converted to a plugin.
- Added ability to access plugins management, but don't allow install or upload new plugins. Also Fuerte-WP will auto-protect itself from deactivation.
- Added ability to restrict access to Permalinks configuration.
- Added ability to use custom site logo (from Customizer) as WP login logo.
# 1.1.3 / 2021-04-22
- Added ability to disable the old XML-RPC API.
- Now it hides ACF cog inside ACF meta fields UI, and prevent opening ACF custom post type (acf-field-group), to avoid non super admins to access ACF editing UI. So, non super-admin users can't access ACF Custom Fields UI, even if they put the URL directly into the address bar.
# 1.1.2 / 2021-04-16
- Added missing support to disable update emails for plugins and themes.
## 1.1.1 / 2021-04-09
- Added support to control several WP's automatic emails.
- Added support to disable WP admin bar for specific roles.
## 1.1.0 / 2021-04-07
- Fuerte-WP configuration file now lives outside wp-config.php file, into his own wp-config-fuerte.php file. This to make it easier to deploy it to several WP installations, without the need to edit the wp-config.php file in all of them. Check the readme on how to install it.
- Added option to enable or disable strong passwords enforcing.
- Added support to prevent use of weak passwords.
- Added support for remove_menu_page.
- Added ability to disable WordPress's new Application Passwords feature.
## 1.0.1 / 2020-10-29
- Now using a proper Class.
- Added option to change WP sender email address.
- Added configuration to remove custom submenu items (remove_submenu_page).
- Force user creation and editing to use WP default strong password suggestion, for non super users.
- Prevent admin accounts creation or edition, for non super users.
- Customizable not allowed error message.
## 1.0.0 / 2020-10-27
- Initial release.
- Enable and force auto updates for WP core.
- Enable and force auto updates for plugins.
- Enable and force auto updates for themes.
- Enable and force auto updates for translations.
- Disables email triggered when WP auto updates.
- Change [WP recovery email](https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/) so WP crashes will go to a different email than the Administration Email Address in WP General Settings.
- Disables WP theme and plugin editor for non super users.
- Remove items from WP menu for non super users.
- Restrict editing or deleting super users.
- Disable ACF Custom Fields editor access for non super users.
- Restrict access to some pages inside wp-admin, like plugins or theme uploads, for non super users. Restricted pages can be extended vía configuration.

View File

@@ -1,413 +0,0 @@
# Copyright (C) 2021 Garanti BBVA Sanal POS Başvurusu & WooCommerce Entegrasyonu
# This file is distributed under the same license as the Garanti BBVA Sanal POS Başvurusu & WooCommerce Entegrasyonu package.
msgid ""
msgstr ""
"Project-Id-Version: Garanti BBVA Sanal POS Başvurusu & WooCommerce "
"Entegrasyonu 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/garanti-bbva-wp-"
"plugin\n"
"POT-Creation-Date: 2021-08-16 11:27+0300\n"
"PO-Revision-Date: 2021-08-16 11:27+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.1\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: Gl_Garanti_Pos.php:43
msgid "Response could not parse!"
msgstr "Sunucu yanıtı anlaşılamadı!"
#: Gl_Garanti_Pos.php:44
msgid "Status could not detect!"
msgstr "Durum bilgisi anlaşılamadı."
#: Gl_Garanti_Pos.php:45
msgid "An error has occurred: %s"
msgstr "Bir hata oluştu: %s"
#: Gl_Garanti_Pos.php:93 Gl_Garanti_Pos.php:147
msgid "Response status not detected!"
msgstr "Yanıt durumu algılanmadı!"
#: Gl_Garanti_Pos.php:109 Gl_Garanti_Pos.php:163
msgid "Not allowed HTTP method!"
msgstr "İzin verilmeyen HTTP yöntemi!"
#: Gl_Garanti_Pos.php:189
msgid "No response from service!"
msgstr "Servisten cevap yok!"
#: Gl_Garanti_Pos.php:207 Gl_Garanti_Pos.php:208
msgid "Garanti BBVA Application"
msgstr "Garanti BBVA Başvuru"
#: views/content.php:19
msgid "Entering Application Information"
msgstr "Başvuru Bilgilerinin Girilmesi"
#: views/content.php:22
msgid "Becoming a Garanti BBVA Customer"
msgstr "Garanti BBVA Müşterisi Olunması"
#: views/content.php:25
msgid "Approval of Application by Garanti BBVA "
msgstr "Başvurunun Garanti BBVA Tarafından Onaylanması "
#: views/content.php:28
msgid "Forwarding Installation Request to Gri"
msgstr "Kurulum Talebinin Griye İletilmesi"
#: views/content.php:45
msgid "Free Integration & Installation"
msgstr "Ücretsiz Entegrasyon & Kurulum"
#: views/content.php:46
msgid ""
"Make your virtual pos application here, get the integration plugin for free."
msgstr ""
"Sanal pos başvurunuzu buradan gerçekleştirin, entegrasyon eklentisine "
"ücretsiz sahip olun."
#: views/content.php:49
msgid "Special Working Conditions"
msgstr "Özel Çalışma Koşulları"
#: views/content.php:50
msgid ""
"Opportunity to pay the next day with <span class=\"bg-garanti text-white p-1 "
"rounded\">1.59%</span> commission special for applications made through the "
"plugin."
msgstr ""
"Eklenti içerisinden yapılan başvurulara özel <span class=\"bg-garanti text-"
"white p-1 rounded\">%1.59</span> komisyon ile ertesi gün ödeme fırsatı."
#: views/content.php:53
msgid "Bonus Merchant Privileges"
msgstr "Bonus Üye İş Yeri Ayrıcalıkları"
#: views/content.php:54
msgid ""
"You can appeal to 15.000.000+ Bonus holders and receive virtual pos service "
"with special offers and conditions."
msgstr ""
"15.000.000+ Bonusluya hitap eder, özel kampanya ve koşullarla sanal pos "
"hizmeti alırsınız."
#: views/content.php:79
msgid "Application and Activation Steps"
msgstr "Başvuru ve Aktivasyon Adımları"
#: views/header.php:21
msgid "Welcome to Garanti BBVA Virtual POS privileges!"
msgstr "Garanti BBVA Sanal POS ayrıcalıklarına hoşgeldiniz!"
#: views/modals/forward-buy-commercial-module.php:13
msgid ""
"The campaign only covers new virtual POS applications made through "
"<strong>this form</strong>."
msgstr ""
"Kampanya sadece <strong>bu form</strong> üzerinden yapılan yeni sanal POS "
"başvurularını kapsamaktadır."
#: views/modals/forward-buy-commercial-module.php:16
msgid ""
"You can purchase <strong>Garanti BBVA Virtual POS Module</strong> now to use "
"your existing Garanti BBVA virtual POS on your WooCommerce website."
msgstr ""
"Mevcut Garanti BBVA sanal POS'unuzu WooCommerce web sitenizde kullanmak için "
"<strong>Garanti BBVA Sanal Pos Modülü</strong>'nü hemen satın alabilirsiniz."
#: views/modals/forward-buy-commercial-module.php:30 views/step-3.php:41
msgid "Cancel"
msgstr "Vazgeç"
#: views/modals/forward-buy-commercial-module.php:34
msgid "Buy"
msgstr "SATIN AL"
#: views/modals/forward-garanti-customer.php:14
msgid "You must be a Garanti BBVA customer to apply for virtual pos."
msgstr "Sanal pos başvurusu için Garanti BBVA müşterisi olmalısınız."
#: views/modals/forward-garanti-customer.php:23
msgid "FOR PERSONAL COMPANIES"
msgstr "ŞAHIS FİRMALARI İÇİN"
#: views/modals/forward-garanti-customer.php:28
msgid ""
"By downloading the Garanti BBVA mobile application, you can instantly become "
"a Garanti BBVA customer without going to the branch, and continue your "
"virtual pos application here."
msgstr ""
"Garanti BBVA mobil uygulamasını indirerek şubeye gitmeden anında Garanti "
"BBVA müşterisi olabilir, buradan sanal pos başvurusuna devam edebilirsiniz."
#: views/modals/forward-garanti-customer.php:52
msgid "FOR LIMITED / JOINT STOCK COMPANIES"
msgstr "LİMİTED/ANONİM ŞİRKETLER İÇİN"
#: views/modals/forward-garanti-customer.php:56
msgid ""
"You can become a Garanti BBVA customer by going to the nearest branch.<br/"
"><strong>IMPORTANT:</strong> For free integration and special commission "
"rate, you must continue your virtual pos application here after opening an "
"account at the branch."
msgstr ""
"Size en yakın şubeye giderek Garanti BBVA müşterisi olabilirsiniz.<br/> "
"<strong>ÖNEMLİ:</strong> Ücretsiz entegrasyon ve özel komisyon oranı için "
"şubeden hesap açılışı yaptıktan sonra sanal pos başvurunuza buradan devam "
"etmelisiniz."
#: views/modals/forward-garanti-customer.php:60
msgid "Branches"
msgstr "Şubeler"
#: views/modals/forward-garanti-customer.php:70
msgid "I became a Garanti BBVA customer, continue the virtual pos application."
msgstr "Garanti BBVA müşterisi oldum, sanal pos başvurusuna devam et."
#: views/sidebar.php:11
msgid ""
"Create your application here to take advantage of the free integration "
"opportunity and special working conditions."
msgstr ""
"Ücretsiz entegrasyon fırsatı ve özel çalışma koşullarından faydalanmak için "
"buradan başvurunuzu oluşturun."
#: views/sidebar.php:17
msgid "Campaign Conditions"
msgstr "Kampanya Koşulları"
#: views/sidebar.php:20
msgid ""
"The merchant must have made the Garanti BBVA virtual pos application through "
"Gri, not through the branch or other channels."
msgstr ""
"Üye iş yeri, Garanti BBVA sanal pos başvurusunu şube veya diğer kanallar "
"üzerinden değil Gri aracılığıyla yapmış olmalıdır."
#: views/sidebar.php:22
msgid ""
"After Garanti BBVA approves the merchant's application, free license, "
"initial installation service, free technical support for the first 90 days "
"and free access to updates for 1 year will be offered."
msgstr ""
"Garanti BBVA, üye iş yerinin başvurusunu onayladıktan sonra ücretsiz lisans, "
"ilk kurulum hizmeti, ilk 90 gün ücretsiz teknik destek ve 1 yıl "
"güncellemelere ücretsiz erişim seçeneği sunulacaktır."
#: views/sidebar.php:24
msgid ""
"For free license identification, the installation must be done by the Gray "
"Installation Team and the installation must be confirmed with the test shot."
msgstr ""
"Ücretsiz lisans tanımlaması için kurulumun Gri Kurulum Ekibi tarafından "
"yapılması ve test çekimi ile kurulumun teyit edilmesi gerekmektedir."
#: views/sidebar.php:26
msgid ""
"3 months free GarantiPay integration will be given to businesses that meet "
"the conditions."
msgstr ""
"Koşulları sağlayan iş yerlerine 3 ay ücretsiz GarantiPay entegrasyonu hediye "
"edilecektir."
#: views/sidebar.php:28
msgid ""
"After 3 months, you can purchase a GarantiPay license or deactivate "
"GarantiPay with a 50% discount, depending on your workplace preference."
msgstr ""
"3 ay sonra iş yeri tercihine göre %50 indirimle GarantiPay lisansı satın "
"alabilir veya GarantiPayi devre dışı bırakabilir."
#: views/sidebar.php:35
msgid "Call us for detailed information and inquiries."
msgstr "Detaylı bilgi ve merak ettikleriniz için bizi arayın."
#: views/sidebar.php:48
msgid "CANCEL THE APPLICATION"
msgstr "BAŞVURUYU İPTAL ET"
#: views/step-1.php:14
msgid "Name Surname"
msgstr "Ad Soyad"
#: views/step-1.php:18
msgid "Your Name Surname"
msgstr "Adınız Soyadınız"
#: views/step-1.php:26
msgid "Citizenship Number"
msgstr "T.C. Kimlik Numarası"
#: views/step-1.php:40
msgid "Phone Number"
msgstr "Telefon Numarası"
#: views/step-1.php:53
msgid "Email Address"
msgstr "E-posta Adresi"
#: views/step-1.php:56
msgid "mail@example.com"
msgstr "mail@ornek.com"
#: views/step-1.php:65 views/step-1.php:69
msgid "Your Message"
msgstr "Mesajınız"
#: views/step-1.php:77
msgid ""
"I have read the relevant <a target=\"_blank\" href=\"https://garantibbvapos."
"com.tr/kisisel-verilerin-korunmasi\">\"Information\"</a> carried out in "
"accordance with the Law on the Protection of Personal Data."
msgstr ""
"Kişisel Verilerin Korunması Kanunu uyarınca gerçekleştirilen ilgili <a "
"target=\"_blank\" href=\"https://garantibbvapos.com.tr/kisisel-verilerin-"
"korunmasi\">“Bilgilendirme”</a> yi okudum."
#: views/step-1.php:81
msgid ""
"I have read the <a target=\"_blank\" href=\"https://www.gri.net/kullanim-"
"sozlesmesi\">gri.net agreement</a>, I accept it."
msgstr ""
"<a target=\"_blank\" href=\"https://www.gri.net/kullanim-sozlesmesi\">“gri."
"net kullanım sözleşmesi”</a>ni okudum, kabul ediyorum."
#: views/step-1.php:93
msgid "Submit"
msgstr "Gönder"
#: views/step-1.php:104
msgid "Your application information has been saved."
msgstr "Başvuru bilgileriniz kaydedildi."
#: views/step-1.php:105
msgid "You are being guided for other stages. Please wait."
msgstr "Diğer aşamalar için yönlendiriliyorsunuz. Lütfen bekleyiniz."
#: views/step-1.php:109
msgid "An error occurred while applying!"
msgstr "Başvuru sırasında bir hata oluştu!"
#: views/step-2.php:10
msgid "Are you a Garanti BBVA customer?"
msgstr "Garanti BBVA müşterisi misiniz?"
#: views/step-2.php:13 views/step-2.php:28
msgid "NO"
msgstr "HAYIR"
#: views/step-2.php:17 views/step-2.php:32
msgid "YES"
msgstr "EVET"
#: views/step-2.php:25
msgid "Do you have an active Garanti BBVA virtual pos?"
msgstr "Aktif bir Garanti BBVA sanal posunuz bulunuyor mu?"
#: views/step-2.php:44
msgid "GO ON"
msgstr "DEVAM ET"
#: views/step-3.php:10
msgid "Your application is being evaluated by the bank."
msgstr "Başvurunuz banka tarafından değerlendiriliyor."
#: views/step-3.php:12
msgid ""
"When the application is approved, you can report the situation by visiting "
"the page again."
msgstr ""
"Başvuru onaylandığında sayfayı tekrar ziyaret ederek durumu "
"bildirebilirsiniz."
#: views/step-3.php:16
msgid "My Application Has Been Approved, Continue For Integration"
msgstr "Başvurum Onaylandı, Entegrasyon İçin Devam Et"
#: views/step-3.php:26
msgid ""
"Please provide the requested information for the Gri Installation Team to "
"perform the virtual pos integration on your website."
msgstr ""
"Gri Kurulum Ekibinin sanal pos entegrasyonunu web sitenizde "
"gerçekleştirmesi için lütfen istenen bilgileri iletiniz."
#: views/step-3.php:31
msgid "Merchant No"
msgstr "Üye İşyeri Numarası"
#: views/step-3.php:35
msgid "Terminal No"
msgstr "Terminal Numarası"
#: views/step-3.php:44
msgid "Create Installation Request"
msgstr "Kurulum Talebi Oluştur"
#: views/step-4.php:10
msgid ""
"Your installation request has been forwarded to <a target=\"_blank\" href="
"\"%s\"><strong>Gri</strong></a>!"
msgstr ""
"Kurulum talebiniz <a target=\"_blank\" href=\"%s\"><strong>Gri</strong></"
"a>'ye iletildi!"
#: views/step-4.php:12
msgid ""
"The installation team will process your request as soon as possible. You can "
"follow the process from your gri.net customer account."
msgstr ""
"Kurulum ekibi, talebinizi en kısa sürede işleme alacaktır. Süreci gri.net "
"müşteri hesabınızdan takip edebilirsiniz."
#: views/step-4.php:13
msgid ""
"When the installation is complete, you will receive SMS and e-mail "
"notifications."
msgstr ""
"Kurulum tamamlandığında, tarafınıza SMS ve e-posta bildirimleri ulaşacaktır."
#: views/step-4.php:14
msgid ""
"You can delete this plugin that you used for the virtual pos application "
"process from the <strong>Wordpress > Plugins</strong> page."
msgstr ""
"Sanal pos başvuru süreci için kullandığınız bu eklentiyi <strong>Wordpress > "
"Eklentiler</strong> sayfasından silebilirsiniz."
#: views/step-4.php:19
msgid "Check Installation Status"
msgstr "Kurulum Durumunu Kontrol Et"
#. Plugin Name of the plugin/theme
msgid "Garanti BBVA Virtual POS Application & WooCommerce Integration"
msgstr "Garanti BBVA Sanal POS Başvurusu & WooCommerce Entegrasyonu"
#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/garanti-bbva-vpos-application/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Make your Garanti BBVA virtual POS application now and get the WooCommerce "
"integration plugin for free!"
msgstr ""
"Garanti BBVA sanal POS başvunuzu hemen yapın ve WooCommerce entegrasyon "
"eklentisine ücretsiz sahip olun!"
#. Author of the plugin/theme
msgid "grilabs"
msgstr "grilabs"
#. Author URI of the plugin/theme
msgid "https://www.gri.net"
msgstr "https://www.gri.net"
#~ msgid "grilabs - Garanti"
#~ msgstr "grilabs - Garanti"

View File

@@ -1,188 +0,0 @@
# Copyright (C) 2021 Gelato
# This file is distributed under the same license as the Gelato Integration for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Gelato Integration for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gelato\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-07-26T14:20:25+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: gelato-integration-for-woocommerce\n"
#. Plugin Name of the plugin
msgid "Gelato Integration for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://"
msgstr ""
#. Description of the plugin
msgid "This plugin helps to connect your WooCommerce store with Gelato."
msgstr ""
#. Author of the plugin
msgid "Gelato"
msgstr ""
#. Author URI of the plugin
msgid "https://gelato.com"
msgstr ""
#: includes/GelatoMain.php:23
msgid "Dashboard"
msgstr ""
#: includes/GelatoShipping.php:87
msgid "Enable"
msgstr ""
#: includes/GelatoShipping.php:89
msgid "Enable Gelato shipping method."
msgstr ""
#: includes/GelatoShipping.php:93
msgid "Enable Gelato live shipping methods."
msgstr ""
#: includes/GelatoShipping.php:95
msgid "Use live shipping methods instead of flat rates."
msgstr ""
#: includes/GelatoShipping.php:99
msgid "Title"
msgstr ""
#: includes/GelatoShipping.php:101
msgid "Title to be display on site."
msgstr ""
#: includes/GelatoShipping.php:102
msgid "Gelato Shipping"
msgstr ""
#: includes/GelatoShipping.php:105
msgid "Disable Woocommerce rates"
msgstr ""
#: includes/GelatoShipping.php:107
msgid "Disable standard Woocommerce rates for products fulfilled by Gelato"
msgstr ""
#: includes/Pages/GelatoPage.php:17
msgid "Home"
msgstr ""
#: includes/Pages/GelatoPage.php:22
#: templates/status.php:27
msgid "Status"
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:16
msgid "WordPress Permalinks"
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:17
msgid "Ensure that your permalinks are NOT set to \"plain\" in Settings > Permalinks. Any other setting than \"plain\" is ok."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:21
msgid "WooCommerce Webhooks"
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:22
msgid "Gelato requires webhooks in WooCommerce to be set up to capture your orders, product updates etc in close to real-time."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:26
msgid "WooCommerce Gelato API keys are set and valid."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:27
msgid "For the integration to work Gelato needs access to your WooCommerce API - otherwise we can't keep your store updated with products."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:31
msgid "Check connection with Gelato."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:32
msgid "We check that connection between Gelato and WooCommerce accessible via API."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:36
msgid "Write permissions"
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:37
msgid "To be able to push mockups to your store the upload directory needs to be writable. If you need help with this contact your hosting provider."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:41
msgid "PHP memory limit"
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:42
msgid "Set PHP allocated memory limit to at least 128mb. Contact your hosting provider if you need help with this."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:46
msgid "PHP script time limit"
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:47
msgid "Set PHP script execution time limit to at least 30 seconds. This is required to add products with many variants. Contact your hosting provider if you need help with this."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:51
msgid "Check SSL"
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:52
msgid "We are checking is everything is ok with SSL."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:56
msgid "Check site redirection."
msgstr ""
#: includes/StatusChecker/GelatoStatusChecker.php:57
msgid "There are might be some issues if your site is configured with redirection to another URL. Usually this happens with incorrect http to https redirects or yourdomain.com to www.yourdomain.com. Please check your settings."
msgstr ""
#: templates/status.php:3
msgid "Please copy the information below and send it to support. Thank you!"
msgstr ""
#: templates/status.php:6
msgid "Copy"
msgstr ""
#: templates/status.php:25
msgid "Name"
msgstr ""
#: templates/status.php:26
msgid "Description"
msgstr ""
#: templates/status.php:39
msgid "OK"
msgstr ""
#: templates/status.php:41
msgid "WARNING"
msgstr ""
#: templates/status.php:43
msgid "FAIL"
msgstr ""
#: templates/status.php:45
msgid "SKIPPED"
msgstr ""

View File

@@ -1,105 +0,0 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: GfDesigns - 1.0\n"
"POT-Creation-Date: 2021-08-16 12:00+0200\n"
"PO-Revision-Date: 2020-04-09 14:41+0200\n"
"Last-Translator: \n"
"Language-Team: \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 3.0\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
#: class-gfdesigns.php:50 class-gfdesigns.php:85
msgid "Designs"
msgstr ""
#: class-gfdesigns.php:88
msgid "Activate"
msgstr ""
#: class-gfdesigns.php:95 class-gfdesigns.php:111
msgid "Layouts"
msgstr ""
#: class-gfdesigns.php:98
msgid "Tooltip Layouts"
msgstr ""
#: class-gfdesigns.php:101 class-gfdesigns.php:104
msgid "Show layout in dark mode"
msgstr ""
#: class-gfdesigns.php:120 class-gfdesigns.php:203
msgid "Basic"
msgstr ""
#: class-gfdesigns.php:125 class-gfdesigns.php:208
msgid "Rounded"
msgstr ""
#: class-gfdesigns.php:130
msgid "Shadows"
msgstr ""
#: class-gfdesigns.php:148
msgid "Colors"
msgstr ""
#: class-gfdesigns.php:151
msgid "Tooltip Colors style"
msgstr ""
#: class-gfdesigns.php:154
msgid "Main color"
msgstr ""
#: class-gfdesigns.php:161
msgid "Main text color"
msgstr ""
#: class-gfdesigns.php:178
msgid "Checkboxes & RadioButtons"
msgstr ""
#: class-gfdesigns.php:181
msgid "Tooltip Checkboxes & RadioButtons styles"
msgstr ""
#: class-gfdesigns.php:184 class-gfdesigns.php:187
msgid "Show Checkboxes & RadioButtons inline"
msgstr ""
#: class-gfdesigns.php:194
msgid "Checkboxes style"
msgstr ""
#: class-gfdesigns.php:198
msgid "Default"
msgstr ""
#: class-gfdesigns.php:213
msgid "Switch"
msgstr ""
#: class-gfdesigns.php:236 class-gfdesigns.php:242
msgid "Columns"
msgstr ""
#: class-gfdesigns.php:239
msgid "Tooltip Columns style"
msgstr ""
#: class-gfdesigns.php:407
msgid "Activate design for this form"
msgstr ""
#: class-gfdesigns.php:606
msgid "Show this field in one column"
msgstr ""

View File

@@ -1,13 +0,0 @@
{
"name": "gif-search-and-embed",
"version": "1.0.0",
"scripts": {
"start": "wp-scripts start --mode development",
"build": "wp-scripts build --mode production"
},
"devDependencies": {
"@wordpress/api-fetch": "^3.23.1",
"@wordpress/blocks": "^6.25.2",
"@wordpress/scripts": "^4.1.0"
}
}

Some files were not shown because too many files have changed in this diff Show More