Compare commits
101 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
90b61d035e | ||
|
|
05c21fb0a8 | ||
|
|
28cdf8e649 | ||
|
|
d1f2781929 | ||
|
|
6b57da0d8a | ||
|
|
b38f94ef39 | ||
|
|
06e3c76ac6 | ||
|
|
885bf041c4 | ||
|
|
ffe8574c51 | ||
|
|
910d34c721 | ||
|
|
5fec3a97c5 | ||
|
|
37f7dddac7 | ||
|
|
05d912e658 | ||
|
|
4bd87b2953 | ||
|
|
a4c843e51e | ||
|
|
7f9295ad54 | ||
|
|
0ab3d16be9 | ||
|
|
93f2e18811 | ||
|
|
ccd7324590 | ||
|
|
7323e8aa08 | ||
|
|
035830d7bc | ||
|
|
eaaefe2cf5 | ||
|
|
9499caf7b8 | ||
|
|
a677cf87cd | ||
|
|
2fc872ae6f | ||
|
|
27d4d14303 | ||
|
|
434f8819a2 | ||
|
|
97ad2dc158 | ||
|
|
8c1b8b5fda | ||
|
|
e179b7ae66 | ||
|
|
3af18b4fcb | ||
|
|
f4ddff64e9 | ||
|
|
0f587c4292 | ||
|
|
cc7f284d93 | ||
|
|
ebe6c50e15 | ||
|
|
19a4671e59 | ||
|
|
e505afe9df | ||
|
|
2632c6ed86 | ||
|
|
2f5ad3a338 | ||
|
|
7ea45a5f9b | ||
|
|
9d06ffe83a | ||
|
|
11394eaa9f | ||
|
|
8353161451 | ||
|
|
cbc52b977f | ||
|
|
e0b47d7501 | ||
|
|
d92152a557 | ||
|
|
2cc243ac13 | ||
|
|
e735a68102 | ||
|
|
d50ee2217e | ||
|
|
e78d948f82 | ||
|
|
dd10991f93 | ||
|
|
99963c9b24 | ||
|
|
9acac36b85 | ||
|
|
460f10b4ad | ||
|
|
48f5e7c4ab | ||
|
|
866504c2ab | ||
|
|
ec6417feed | ||
|
|
b02f65888c | ||
|
|
9db97d0730 | ||
|
|
36a35279f2 | ||
|
|
d9f3c682d0 | ||
|
|
42dee6cfa9 | ||
|
|
d41e73727a | ||
|
|
9b2755020d | ||
|
|
91388a787a | ||
|
|
2690ab324f | ||
|
|
84993f7bd6 | ||
|
|
5b5cac925c | ||
|
|
854ad45d84 | ||
|
|
7078943b90 | ||
|
|
d59a4799f5 | ||
|
|
cac9d4cc71 | ||
|
|
8aff900d4a | ||
|
|
3c99593599 | ||
|
|
d14bc739c8 | ||
|
|
6060fc7a69 | ||
|
|
d79163fcb5 | ||
|
|
145cae912b | ||
|
|
058eac160f | ||
|
|
f38cac8d8a | ||
|
|
2e19a423fc | ||
|
|
52e3e25741 | ||
|
|
1201ecbfd3 | ||
|
|
75de6316d2 | ||
|
|
4dbef70bd2 | ||
|
|
a0b5fb1107 | ||
|
|
14800f1f6c | ||
|
|
78231becd9 | ||
|
|
da180e1e20 | ||
|
|
c48be5e980 | ||
|
|
98a71d3af6 | ||
|
|
111693ce9e | ||
|
|
d926520b29 | ||
|
|
1a6e359d02 | ||
|
|
46d7ce0a65 | ||
|
|
fd63bfd5fa | ||
|
|
0778d7e5f6 | ||
|
|
9cb53bbf43 | ||
|
|
a98e37918b | ||
|
|
1d18514ab5 | ||
|
|
75d6a16298 |
7
.codeclimate.yml
Normal file
7
.codeclimate.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
version: "2"
|
||||
# https://docs.codeclimate.com/docs/default-analysis-configuration#sample-codeclimateyml
|
||||
checks:
|
||||
method-complexity:
|
||||
enabled: true
|
||||
config:
|
||||
threshold: 15
|
||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -9,14 +9,14 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7]
|
||||
ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v2.4.0
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
|
||||
56
.github/workflows/docker.yml
vendored
Normal file
56
.github/workflows/docker.yml
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
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.4.0
|
||||
|
||||
- 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 QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
id: buildx
|
||||
with:
|
||||
install: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1.13.0
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
tags: wpscanteam/wpscan:${{ env.DOCKER_TAG }}
|
||||
4
.github/workflows/gempush.yml
vendored
4
.github/workflows/gempush.yml
vendored
@@ -10,9 +10,9 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: actions/checkout@v2.4.0
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ Lint/MissingSuper:
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Metrics/AbcSize:
|
||||
Max: 25
|
||||
Max: 27
|
||||
Metrics/BlockLength:
|
||||
Exclude:
|
||||
- 'spec/**/*'
|
||||
|
||||
@@ -1 +1 @@
|
||||
2.7.2
|
||||
3.0.2
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM ruby:2.7.2-alpine AS builder
|
||||
FROM ruby:3.0.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:2.7.2-alpine
|
||||
FROM ruby:3.0.2-alpine
|
||||
LABEL maintainer="WPScan Team <contact@wpscan.com>"
|
||||
LABEL org.opencontainers.image.source https://github.com/wpscanteam/wpscan
|
||||
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
|
||||
<p align="center">
|
||||
<a href="https://badge.fury.io/rb/wpscan" target="_blank"><img src="https://badge.fury.io/rb/wpscan.svg"></a>
|
||||
<a href="https://hub.docker.com/r/wpscanteam/wpscan/" target="_blank"><img src="https://img.shields.io/docker/pulls/wpscanteam/wpscan.svg"></a>
|
||||
<a href="https://github.com/wpscanteam/wpscan/actions?query=workflow%3ABuild" target="_blank"><img src="https://github.com/wpscanteam/wpscan/workflows/Build/badge.svg"></a>
|
||||
<a href="https://codeclimate.com/github/wpscanteam/wpscan" target="_blank"><img src="https://codeclimate.com/github/wpscanteam/wpscan/badges/gpa.svg"></a>
|
||||
</p>
|
||||
|
||||
@@ -39,18 +39,57 @@ module WPScan
|
||||
#
|
||||
# @return [ Hash ]
|
||||
def potential_urls(opts = {})
|
||||
urls = {}
|
||||
domain_name = (PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
urls = {}
|
||||
index = 0
|
||||
|
||||
File.open(opts[:list]).each_with_index do |path, index|
|
||||
path.gsub!('{domain_name}', domain_name)
|
||||
File.open(opts[:list]).each do |path|
|
||||
path.chomp!
|
||||
|
||||
urls[target.url(path.chomp)] = index
|
||||
if path.include?('{domain_name}')
|
||||
urls[target.url(path.gsub('{domain_name}', domain_name))] = index
|
||||
|
||||
if domain_name != domain_name_with_sub
|
||||
urls[target.url(path.gsub('{domain_name}', domain_name_with_sub))] = index + 1
|
||||
|
||||
index += 1
|
||||
end
|
||||
else
|
||||
urls[target.url(path)] = index
|
||||
end
|
||||
|
||||
index += 1
|
||||
end
|
||||
|
||||
urls
|
||||
end
|
||||
|
||||
def domain_name
|
||||
@domain_name ||= if Resolv::AddressRegex.match?(target.uri.host)
|
||||
target.uri.host
|
||||
else
|
||||
(PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
end
|
||||
end
|
||||
|
||||
def domain_name_with_sub
|
||||
@domain_name_with_sub ||=
|
||||
if Resolv::AddressRegex.match?(target.uri.host)
|
||||
target.uri.host
|
||||
else
|
||||
parsed = PublicSuffix.parse(target.uri.host)
|
||||
|
||||
if parsed.subdomain
|
||||
parsed.subdomain.gsub(".#{parsed.tld}", '')
|
||||
elsif parsed.domain
|
||||
parsed.domain.gsub(".#{parsed.tld}", '')
|
||||
else
|
||||
target.uri.host
|
||||
end
|
||||
end
|
||||
rescue PublicSuffix::DomainNotAllowed
|
||||
@domain_name_with_sub = target.uri.host
|
||||
end
|
||||
|
||||
def create_progress_bar(opts = {})
|
||||
super(opts.merge(title: ' Checking DB Exports -'))
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -59,13 +59,13 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The best version number detected from the changelog section
|
||||
def from_changelog_section(body)
|
||||
extracted_versions = body.scan(%r{=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[ \ta-z0-9().\-/]*=+}i)
|
||||
extracted_versions = body.scan(/^=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[^=]*=+$/i)
|
||||
|
||||
return if extracted_versions.nil? || extracted_versions.empty?
|
||||
|
||||
extracted_versions.flatten!
|
||||
# must contain at least one number
|
||||
extracted_versions = extracted_versions.select { |x| x =~ /[0-9]+/ }
|
||||
extracted_versions = extracted_versions.grep(/[0-9]+/)
|
||||
|
||||
sorted = extracted_versions.sort do |x, y|
|
||||
Gem::Version.new(x) <=> Gem::Version.new(y)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -162,7 +162,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Typhoeus::Response ]
|
||||
def head_and_get(path, codes = [200], params = {})
|
||||
final_path = +@path_from_blog
|
||||
final_path = @path_from_blog.dup # @path_from_blog is set in the plugin/theme
|
||||
final_path << path unless path.nil?
|
||||
|
||||
blog.head_and_get(final_path, codes, params)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<% if @version -%>
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.capitalize %>, released on <%= @version.release_date %>).
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.tr('-', '_').humanize %>, released on <%= @version.release_date %>).
|
||||
<%= render('@finding', item: @version) -%>
|
||||
<% else -%>
|
||||
<%= notice_icon %> The WordPress version could not be detected.
|
||||
|
||||
@@ -13,6 +13,7 @@ require 'uri'
|
||||
require 'time'
|
||||
require 'readline'
|
||||
require 'securerandom'
|
||||
require 'resolv'
|
||||
# Monkey Patches/Fixes/Override
|
||||
require 'wpscan/typhoeus/response' # Adds a from_vuln_api? method
|
||||
# Custom Libs
|
||||
|
||||
@@ -11,7 +11,11 @@ module WPScan
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.all_df_data
|
||||
@all_df_data ||= YAML.safe_load(File.read(df_file), [Regexp])
|
||||
@all_df_data ||= if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('4.0.0')
|
||||
YAML.safe_load(File.read(df_file), permitted_classes: [Regexp])
|
||||
else
|
||||
YAML.safe_load(File.read(df_file), [Regexp])
|
||||
end
|
||||
end
|
||||
|
||||
# @return [ Array<Symbol> ]
|
||||
|
||||
@@ -24,7 +24,13 @@ module WPScan
|
||||
|
||||
FileUtils.mkdir_p(repo_directory.to_s) unless Dir.exist?(repo_directory.to_s)
|
||||
|
||||
raise "#{repo_directory} is not writable" unless repo_directory.writable?
|
||||
# When --no-update is passed, return to avoid raising an error if the directory is not writable
|
||||
# Mainly there for Homebrew: https://github.com/wpscanteam/wpscan/pull/1455
|
||||
return if ParsedCli.update == false
|
||||
|
||||
unless repo_directory.writable?
|
||||
raise "#{repo_directory} is not writable (uid: #{Process.uid}, gid: #{Process.gid})"
|
||||
end
|
||||
|
||||
delete_old_files
|
||||
end
|
||||
@@ -129,7 +135,7 @@ module WPScan
|
||||
res = Typhoeus.get(file_url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
File.open(file_path, 'wb') { |f| f.write(res.body) }
|
||||
File.binwrite(file_path, res.body)
|
||||
|
||||
local_file_checksum(filename)
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -56,7 +56,9 @@ module WPScan
|
||||
|
||||
homepage_result = find(target.homepage_res, opts)
|
||||
|
||||
return homepage_result unless homepage_result.nil? || homepage_result.is_a?(Array) && homepage_result&.empty?
|
||||
unless homepage_result.nil? || (homepage_result.is_a?(Array) && homepage_result&.empty?)
|
||||
return homepage_result
|
||||
end
|
||||
|
||||
find(target.error_404_res, opts)
|
||||
end
|
||||
|
||||
@@ -125,14 +125,14 @@ module WPScan
|
||||
return @uri.to_s unless path
|
||||
|
||||
if %r{wp-content/plugins}i.match?(path)
|
||||
path = +path.gsub('wp-content/plugins', plugins_dir)
|
||||
new_path = path.gsub('wp-content/plugins', plugins_dir)
|
||||
elsif /wp-content/i.match?(path)
|
||||
path = +path.gsub('wp-content', content_dir)
|
||||
new_path = path.gsub('wp-content', content_dir)
|
||||
elsif path[0] != '/' && sub_dir
|
||||
path = "#{sub_dir}/#{path}"
|
||||
new_path = "#{sub_dir}/#{path}"
|
||||
end
|
||||
|
||||
super(path)
|
||||
super(new_path || path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.17'
|
||||
VERSION = '3.8.21'
|
||||
end
|
||||
|
||||
@@ -12,7 +12,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
end
|
||||
|
||||
it 'replaces {domain_name} by its value' do
|
||||
it 'replaces {domain_name} by its values' do
|
||||
expect(finder.potential_urls(opts).keys).to eql %w[
|
||||
http://ex.lo/aa/ex.sql
|
||||
http://ex.lo/aa/wordpress.sql
|
||||
@@ -27,8 +27,8 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context "when #{sub_domain} sub-domain" do
|
||||
let(:url) { "https://#{sub_domain}.domain.tld" }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql"
|
||||
it 'replaces {domain_name} by its correct values' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql", "#{url}/#{sub_domain}.domain.sql"
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -44,16 +44,22 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when multi-level tlds and sub-domain' do
|
||||
let(:url) { 'https://dev.something.com.tr' }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include 'https://dev.something.com.tr/something.sql'
|
||||
it 'replaces {domain_name} by its correct values' do
|
||||
expect(finder.potential_urls(opts).keys).to include(
|
||||
'https://dev.something.com.tr/something.sql',
|
||||
'https://dev.something.com.tr/dev.something.sql'
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when some weird stuff' do
|
||||
let(:url) { 'https://098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.com' }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain-test.sql"
|
||||
it 'replaces {domain_name} by its correct values' do
|
||||
expect(finder.potential_urls(opts).keys).to include(
|
||||
"#{url}/domain-test.sql",
|
||||
"#{url}/098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.sql"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -64,6 +70,14 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/dc-2.sql"
|
||||
end
|
||||
end
|
||||
|
||||
context 'when an IP address' do
|
||||
let(:url) { 'http://192.168.1.12' }
|
||||
|
||||
it 'replaces {domain_name} by the IP address' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/192.168.1.12.sql"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -108,7 +108,8 @@ describe WPScan::Finders::PluginVersion::Readme do
|
||||
'advanced-most-recent-posts-mod' => '1.6.5.2',
|
||||
'a-lead-capture-contact-form-and-tab-button-by-awebvoicecom' => '3.1',
|
||||
'backup-scheduler' => '1.5.9',
|
||||
'release_date_slash' => '1.0.4'
|
||||
'release_date_slash' => '1.0.4',
|
||||
'cool_tag_cloud' => '2.27'
|
||||
}.each do |file, version_number|
|
||||
context "whith #{file}.txt" do
|
||||
it 'returns the expected version' do
|
||||
|
||||
13375
spec/fixtures/db/dynamic_finders.yml
vendored
13375
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
5665
spec/fixtures/dynamic_finders/expected.yml
vendored
5665
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
||||
= 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
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "a-note-above",
|
||||
"version": "1.0.1",
|
||||
"description": "A way to keep notes on your dashboard.",
|
||||
"author": "Josh Brown <joshbrown101@gmail.com>",
|
||||
"license": "GPLv2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "webpack --watch --progress --hide-modules",
|
||||
"dev-build": "webpack -d --mode development",
|
||||
"build": "webpack -p --mode production"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.21.1",
|
||||
"vue": "^2.6.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.13",
|
||||
"@babel/preset-env": "latest",
|
||||
"babel-loader": "^8.2.2",
|
||||
"browser-sync": "^2.26.14",
|
||||
"browser-sync-webpack-plugin": "^2.3.0",
|
||||
"css-loader": "^3.6.0",
|
||||
"file-loader": "^4.3.0",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"html-webpack-template": "^6.2.0",
|
||||
"less": "^3.13.1",
|
||||
"less-loader": "^5.0.0",
|
||||
"mini-css-extract-plugin": "^0.8.2",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
||||
"terser-webpack-plugin": "^4.2.3",
|
||||
"url-loader": "^2.3.0",
|
||||
"vue-loader": "^15.9.6",
|
||||
"vue-template-compiler": "^2.6.12",
|
||||
"webpack": "^4.46.0",
|
||||
"webpack-cli": "^3.3.12"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
# 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 ""
|
||||
@@ -0,0 +1,41 @@
|
||||
# Copyright (C) 2021 Acowebs
|
||||
# This file is distributed under the same license as the Aco Variation Swatches for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aco Variation Swatches for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aco-woo-variation-swatches-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-01T11:51:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: aco-variation-swatches-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "Aco Variation Swatches for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-backend.php:130
|
||||
#: includes/class-acovsw-backend.php:137
|
||||
msgid "Variation Swatches"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-backend.php:132
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acovsw-options.php:113
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/action-scheduler/change_log/changelog.txt
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/action-scheduler/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 3.2.0 - 2021-06-03 =
|
||||
* Fix - Add "no ordering" option to as_next_scheduled_action().
|
||||
* Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634.
|
||||
* Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634.
|
||||
* Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas).
|
||||
* Fix - Fix unit tests infrastructure and adapt tests to PHP 8.
|
||||
* Fix - Identify in-use data store.
|
||||
* Fix - Improve test_migration_is_scheduled.
|
||||
* Fix - PHP notice on list table.
|
||||
* Fix - Speed up clean up and batch selects.
|
||||
* Fix - Update pending dependencies.
|
||||
* Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array().
|
||||
* Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility.
|
||||
* Fix - add is_initialized() to docs.
|
||||
* Fix - fix file permissions.
|
||||
* Fix - fixes #664 by replacing __ with esc_html__.
|
||||
|
||||
= 3.1.6 - 2020-05-12 =
|
||||
* Change log starts.
|
||||
@@ -0,0 +1,337 @@
|
||||
# Copyright (C) 2021 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log for Gravity Forms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log for Gravity Forms 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-gravity-forms\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-27T11:24:00+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-gravity-forms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log for Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension for Gravity Forms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP White Security"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpwhitesecurity.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:39
|
||||
msgid "Keep a log when website visitors submits a form (by default the plugin only keeps a log when logged in users submit a form)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:52
|
||||
msgid "Forms in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:53
|
||||
msgid "Confirmations in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:54
|
||||
msgid "Notifications in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:55
|
||||
msgid "Entries in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:56
|
||||
msgid "Fields in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:57
|
||||
msgid "Settings in Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:68
|
||||
msgid "Starred"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:69
|
||||
msgid "Unstarred"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:70
|
||||
msgid "Read"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:71
|
||||
msgid "Unread"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:72
|
||||
msgid "Submitted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:4
|
||||
msgid "Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:5
|
||||
msgid "Monitor Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:10
|
||||
msgid "A form was created, modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:11
|
||||
msgid "The Form called %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:14
|
||||
#: wp-security-audit-log/custom-alerts.php:30
|
||||
#: wp-security-audit-log/custom-alerts.php:45
|
||||
#: wp-security-audit-log/custom-alerts.php:60
|
||||
#: wp-security-audit-log/custom-alerts.php:93
|
||||
#: wp-security-audit-log/custom-alerts.php:108
|
||||
#: wp-security-audit-log/custom-alerts.php:129
|
||||
#: wp-security-audit-log/custom-alerts.php:144
|
||||
#: wp-security-audit-log/custom-alerts.php:162
|
||||
#: wp-security-audit-log/custom-alerts.php:177
|
||||
#: wp-security-audit-log/custom-alerts.php:196
|
||||
#: wp-security-audit-log/custom-alerts.php:211
|
||||
#: wp-security-audit-log/custom-alerts.php:243
|
||||
#: wp-security-audit-log/custom-alerts.php:258
|
||||
msgid "Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:17
|
||||
#: wp-security-audit-log/custom-alerts.php:33
|
||||
#: wp-security-audit-log/custom-alerts.php:63
|
||||
#: wp-security-audit-log/custom-alerts.php:96
|
||||
#: wp-security-audit-log/custom-alerts.php:132
|
||||
#: wp-security-audit-log/custom-alerts.php:147
|
||||
#: wp-security-audit-log/custom-alerts.php:165
|
||||
#: wp-security-audit-log/custom-alerts.php:180
|
||||
msgid "View form in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:26
|
||||
msgid "A form was moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:27
|
||||
msgid "Moved the form to trash."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:29
|
||||
#: wp-security-audit-log/custom-alerts.php:195
|
||||
#: wp-security-audit-log/custom-alerts.php:226
|
||||
#: wp-security-audit-log/custom-alerts.php:242
|
||||
#: wp-security-audit-log/custom-alerts.php:257
|
||||
msgid "Form name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:42
|
||||
msgid "A form was permanently deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:43
|
||||
msgid "Permanently deleted the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:55
|
||||
msgid "A form setting was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:56
|
||||
msgid "The setting %setting_name% in form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:58
|
||||
#: wp-security-audit-log/custom-alerts.php:276
|
||||
msgid "Previous value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:59
|
||||
#: wp-security-audit-log/custom-alerts.php:277
|
||||
msgid "New value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:72
|
||||
msgid "A form was duplicated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:73
|
||||
msgid "Duplicated the form %original_form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:75
|
||||
msgid "New form name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:76
|
||||
msgid "Source form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:77
|
||||
msgid "New form ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:80
|
||||
msgid "View new duplicated form in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:89
|
||||
msgid "A field was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:90
|
||||
msgid "The Field called %field_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:92
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:105
|
||||
msgid "A form was submitted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:106
|
||||
msgid "Submitted the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:109
|
||||
msgid "Submission email"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:112
|
||||
#: wp-security-audit-log/custom-alerts.php:199
|
||||
#: wp-security-audit-log/custom-alerts.php:214
|
||||
#: wp-security-audit-log/custom-alerts.php:230
|
||||
#: wp-security-audit-log/custom-alerts.php:261
|
||||
msgid "View entry"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:124
|
||||
msgid "A confirmation was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:125
|
||||
msgid "The Confirmation called %confirmation_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:127
|
||||
msgid "Confirmation type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:128
|
||||
msgid "Confirmation message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:141
|
||||
msgid "A confirmation was activated or deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:142
|
||||
msgid "The confirmation %confirmation_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:159
|
||||
msgid "A notification was created, modified or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:160
|
||||
msgid "The Notification called %notification_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:174
|
||||
msgid "A notification was activated or deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:175
|
||||
msgid "Changed the status of the Notification called %notification_name% in the form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:192
|
||||
msgid "An entry was starred or unstarred"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:193
|
||||
msgid "Entry title: %entry_title%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:208
|
||||
msgid "An entry was marked as read or unread"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:209
|
||||
msgid "The entry called %entry_title% from form %form_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:223
|
||||
msgid "An entry was moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:224
|
||||
msgid "Deleted the entry %event_desc%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:227
|
||||
msgid "Form ID "
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:239
|
||||
msgid "An entry was permanently deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:240
|
||||
msgid "Permanently deleted the entry %entry_title%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:253
|
||||
msgid "An entry note was created or deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:254
|
||||
msgid "The entry note %entry_note%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:256
|
||||
msgid "Entry title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:273
|
||||
msgid "A plugin setting was changed."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:274
|
||||
msgid "Changed the plugin setting %setting_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:972
|
||||
msgid "moved to trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1010
|
||||
msgid "restored"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1081
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_Gravity_Forms.php:1221
|
||||
msgid "Not provided"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,204 @@
|
||||
# Copyright (C) 2021 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log Extension for TablePress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log Extension for TablePress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-tablepress\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-10-11T13:50:49+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-tablepress\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log Extension for TablePress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension for TablePress"
|
||||
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:15
|
||||
#: wp-security-audit-log/custom-alerts.php:4
|
||||
msgid "TablePress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:26
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:5
|
||||
msgid "Monitor TablePress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:10
|
||||
msgid "A table was created"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:11
|
||||
msgid "Added the new table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:14
|
||||
#: wp-security-audit-log/custom-alerts.php:32
|
||||
#: wp-security-audit-log/custom-alerts.php:63
|
||||
#: wp-security-audit-log/custom-alerts.php:98
|
||||
#: wp-security-audit-log/custom-alerts.php:118
|
||||
#: wp-security-audit-log/custom-alerts.php:136
|
||||
#: wp-security-audit-log/custom-alerts.php:154
|
||||
msgid "Table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:15
|
||||
#: wp-security-audit-log/custom-alerts.php:99
|
||||
msgid "Number of rows"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:16
|
||||
#: wp-security-audit-log/custom-alerts.php:100
|
||||
msgid "Number of columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:19
|
||||
#: wp-security-audit-log/custom-alerts.php:50
|
||||
#: wp-security-audit-log/custom-alerts.php:66
|
||||
#: wp-security-audit-log/custom-alerts.php:84
|
||||
#: wp-security-audit-log/custom-alerts.php:105
|
||||
#: wp-security-audit-log/custom-alerts.php:123
|
||||
#: wp-security-audit-log/custom-alerts.php:141
|
||||
#: wp-security-audit-log/custom-alerts.php:157
|
||||
msgid "View in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:28
|
||||
msgid "A table was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:29
|
||||
msgid "Deleted the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:42
|
||||
msgid "A table was duplicated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:43
|
||||
msgid "Created a copy of the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:46
|
||||
msgid "New table name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:47
|
||||
#: wp-security-audit-log/custom-alerts.php:81
|
||||
msgid "New table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:59
|
||||
msgid "A table was imported"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:60
|
||||
msgid "Imported the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:76
|
||||
msgid "A table ID was changed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:77
|
||||
msgid "Changed the ID of the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:80
|
||||
msgid "Previous table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:94
|
||||
msgid "A table was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:95
|
||||
msgid "Made changes to the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:101
|
||||
msgid "Previous number of rows"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:102
|
||||
msgid "Previous number of columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:114
|
||||
msgid "A table row was added or removed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:115
|
||||
msgid "A row was added or removed from the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:119
|
||||
msgid "Previous row count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:120
|
||||
msgid "New row count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:132
|
||||
msgid "A table column was added or removed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:133
|
||||
msgid "A column was added or removed from the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:137
|
||||
msgid "Previous column count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:138
|
||||
msgid "New column count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:150
|
||||
msgid "A table option was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:151
|
||||
msgid "Changed the status of the table option %option_name% in %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:224
|
||||
msgid "The last row of the table is the table footer."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:226
|
||||
msgid "The first row of the table is the table header."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:228
|
||||
msgid "The background colors of consecutive rows shall alternate."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:230
|
||||
msgid "Highlight a row while the mouse cursor hovers above it by changing its background color."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,34 @@
|
||||
# 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 ""
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "advanced-image-comparison-for-elementor",
|
||||
"version": "1.0.0",
|
||||
"description": "Advanced Testimonial Carousel for Elementor WordPress Plugin",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"laravel-mix": "^6.0.13",
|
||||
"node-sass": "^5.0.0",
|
||||
"postcss": "^8.2.6",
|
||||
"resolve-url-loader": "^3.1.2",
|
||||
"sass": "^1.32.8",
|
||||
"sass-loader": "^10.1.1"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"development": "mix",
|
||||
"watch": "mix watch",
|
||||
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||
"hot": "mix watch --hot",
|
||||
"production": "mix --production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ruhel241/advanced-testimonial-carousel.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ruhel241/advanced-testimonial-carousel/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ruhel241/advanced-testimonial-carousel#readme"
|
||||
}
|
||||
9
spec/fixtures/dynamic_finders/plugin_version/afi-to-integrations/change_log/changelog.txt
vendored
Normal file
9
spec/fixtures/dynamic_finders/plugin_version/afi-to-integrations/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
== Archived Changelog Entries ==
|
||||
|
||||
This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
|
||||
For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/plugin_name/trunk/readme.txt).
|
||||
|
||||
= 1.0.0 =
|
||||
*Release Date - 19 May 2021*
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,495 @@
|
||||
# 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 ""
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2020 RedNao
|
||||
# This file is distributed under the same license as the Easy Pricing Forms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Pricing Forms 1.2.13\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-calculation-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: 2020-04-25T13:05:42+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: rednaoeasycalculationforms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Easy Pricing Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://smartforms.rednao.com/getit"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Order Forms, Quotes, Even Registration and more. If you need to calculate a price in your form this is the best builder for you."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "RedNao"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://rednao.com"
|
||||
msgstr ""
|
||||
50
spec/fixtures/dynamic_finders/plugin_version/all-in-one-music-player/composer_file/package.json
vendored
Normal file
50
spec/fixtures/dynamic_finders/plugin_version/all-in-one-music-player/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
# 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 ""
|
||||
@@ -0,0 +1,353 @@
|
||||
# Copyright (C) 2021 Ali Ali
|
||||
# This file is distributed under the same license as the Alpha Google Map For Elementor plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Alpha Google Map For Elementor 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-06-03T11:57:48+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: alpha-google-map-for-elementor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: include/alpha-map.php:122
|
||||
#: include/alpha-map.php:138
|
||||
msgid "Alpha Google Map For Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Premium Google Map features for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ali Ali"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/Ali-A-Ali"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-map.php:99
|
||||
msgid "%1$sAlpha Google Map For Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be active. Please activate Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-map.php:100
|
||||
msgid "Activate Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-map.php:107
|
||||
msgid "%1$sAlpha Google Map For Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be installed and activated. Please install Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-map.php:108
|
||||
msgid "Install Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#: include/alpha-map.php:121
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-map.php:123
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Required PHP version
|
||||
#: include/alpha-map.php:137
|
||||
msgid "\"%1$s\" requires PHP version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:28
|
||||
msgid "Alpha Google Map"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:44
|
||||
msgid "API"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:51
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:53
|
||||
msgid "Enter your Google API Key"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:60
|
||||
msgid "Location Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:63
|
||||
msgid "Enter your location latitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:72
|
||||
msgid "Location Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:75
|
||||
msgid "Enter your location longitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:86
|
||||
msgid "Markers"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:93
|
||||
msgid "Max Width"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:95
|
||||
msgid "Set the Maximum width for markers description box"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:104
|
||||
msgid "Custom Icon"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:116
|
||||
msgid "Icon On Active Pin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:129
|
||||
#: include/Alpha_Google_Map.php:714
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:148
|
||||
msgid "Pin Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:158
|
||||
msgid "Pin Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:168
|
||||
#: include/Alpha_Google_Map.php:363
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:178
|
||||
#: include/Alpha_Google_Map.php:447
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:188
|
||||
#: include/Alpha_Google_Map.php:531
|
||||
msgid "Time Table"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:198
|
||||
msgid "Pin Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:208
|
||||
msgid "Map Pins"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:213
|
||||
msgid "Alpha Google Maps"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:214
|
||||
msgid "Add an optional description to your map pin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:215
|
||||
msgid "Add a time table for the location pin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:227
|
||||
msgid "Controls"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:234
|
||||
msgid "Map Type"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:237
|
||||
msgid "Road Map"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:238
|
||||
msgid "Satellite"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:239
|
||||
msgid "Terrain"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:240
|
||||
msgid "Hybrid"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:249
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:269
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:286
|
||||
msgid "Disable Map Drag"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:294
|
||||
msgid "Map Type Controls"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:302
|
||||
msgid "Zoom Controls"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:310
|
||||
msgid "Street View Control"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:318
|
||||
msgid "Fullscreen Control"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:326
|
||||
msgid "Scroll Wheel Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:334
|
||||
msgid "Info Container Always Opened"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:342
|
||||
msgid "Info Container Opened when Hovered"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:350
|
||||
msgid "Info Container Closed when Mouse Out"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:371
|
||||
#: include/Alpha_Google_Map.php:455
|
||||
#: include/Alpha_Google_Map.php:539
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:395
|
||||
#: include/Alpha_Google_Map.php:479
|
||||
#: include/Alpha_Google_Map.php:563
|
||||
#: include/Alpha_Google_Map.php:652
|
||||
#: include/Alpha_Google_Map.php:834
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:407
|
||||
#: include/Alpha_Google_Map.php:491
|
||||
#: include/Alpha_Google_Map.php:575
|
||||
#: include/Alpha_Google_Map.php:664
|
||||
#: include/Alpha_Google_Map.php:846
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:419
|
||||
#: include/Alpha_Google_Map.php:503
|
||||
#: include/Alpha_Google_Map.php:587
|
||||
#: include/Alpha_Google_Map.php:751
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:423
|
||||
#: include/Alpha_Google_Map.php:507
|
||||
#: include/Alpha_Google_Map.php:591
|
||||
#: include/Alpha_Google_Map.php:755
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:427
|
||||
#: include/Alpha_Google_Map.php:511
|
||||
#: include/Alpha_Google_Map.php:595
|
||||
#: include/Alpha_Google_Map.php:759
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:431
|
||||
#: include/Alpha_Google_Map.php:515
|
||||
#: include/Alpha_Google_Map.php:599
|
||||
#: include/Alpha_Google_Map.php:763
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:615
|
||||
msgid "Map"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:631
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:643
|
||||
msgid "Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:679
|
||||
#: include/Alpha_Google_Map.php:686
|
||||
#: include/Alpha_Google_Map.php:793
|
||||
msgid "Map Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:691
|
||||
msgid "Enter your title"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:692
|
||||
msgid "Add Your Title Text Here"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:699
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:718
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:719
|
||||
msgid "Small"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:720
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:721
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:722
|
||||
msgid "XL"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:723
|
||||
msgid "XXL"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:731
|
||||
msgid "HTML Tag"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:767
|
||||
msgid "Justified"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:781
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: include/Alpha_Google_Map.php:801
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,6 @@
|
||||
*** WP Davies Alpha Insights ***
|
||||
|
||||
= 2020.10.2 - version 1.0.0 =
|
||||
* Initial release
|
||||
|
||||
// Fix, Tweak, Feature, Update, Add, Remove
|
||||
@@ -0,0 +1,281 @@
|
||||
# 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 ""
|
||||
@@ -0,0 +1,222 @@
|
||||
# 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 ""
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "fragment-amzn",
|
||||
"version": "1.0.1",
|
||||
"description": "Amazonの商品を検索してブロックに追加します。",
|
||||
"author": "fragment.co.jp",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^7.0.2",
|
||||
"@wordpress/blocks": "^11.1.0",
|
||||
"@wordpress/i18n": "^4.2.2",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^8.2.2",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-preset-env": "^1.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.5"
|
||||
}
|
||||
}
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with minor modifications,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0] - 8th Dec 2021
|
||||
Initial plugin release.
|
||||
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/api-cache-pro/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/api-cache-pro/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -0,0 +1,254 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Logo Slide 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-logo-slide\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-10-21T10:44:52+05:45\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-logo-slide\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:75
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:76
|
||||
msgid "Ascendoor Logo Slide"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple logo slide with CSS transition effects."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. PHP Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:33
|
||||
msgid "Ascendoor Logo Slide plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. WordPress Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:48
|
||||
msgid "Ascendoor Logo Slide plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/build/index.js:1
|
||||
#: admin/resources/src/components/Loading/index.js:6
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:18
|
||||
#: admin/resources/src/components/Header/Info.js:136
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:26
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:40
|
||||
#: admin/resources/src/components/Header/Info.js:118
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:48
|
||||
msgid "Tablet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:62
|
||||
#: admin/resources/src/components/Header/Info.js:100
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:70
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:24
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:49
|
||||
msgid "Close info content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:62
|
||||
msgid "You have some inactive columns. Please use the guide below for the recommended setup."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:68
|
||||
msgid "Total Added Logos:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:80
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:99
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:83
|
||||
msgid "Min. No. of Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:89
|
||||
msgid "Inactive Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:167
|
||||
msgid "Duplicate logos to fill the inactive columns."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:19
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:21
|
||||
msgid "Select Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:101
|
||||
msgid "Add Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:61
|
||||
msgid "Logo Alt Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:74
|
||||
msgid "Logo Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:87
|
||||
msgid "Logo Link To"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:102
|
||||
msgid "Link Open In"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:63
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:87
|
||||
msgid "Close Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:109
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:144
|
||||
msgid "Manage Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:92
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:115
|
||||
msgid "Column Gap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:49
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:55
|
||||
msgid "Slide Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:71
|
||||
msgid "Slide Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:74
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:104
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:107
|
||||
msgid "Pause on Hover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:40
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:51
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:160
|
||||
msgid "Select Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:162
|
||||
msgid "Select Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:304
|
||||
msgid "Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:311
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:390
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:181
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:469
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:260
|
||||
msgid "Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:481
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:495
|
||||
msgid "Background Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:516
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:535
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:582
|
||||
msgid "Update Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:564
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:599
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:610
|
||||
msgid "Background Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:658
|
||||
msgid "Background Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:686
|
||||
msgid "Background Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:718
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:145
|
||||
msgid "Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:152
|
||||
msgid "Height (in PX)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:163
|
||||
msgid "Hint: 0 = Auto. The frontend logo container and the current backend preview container might not be the same. Set height based on frontend view."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,186 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Metadata Manager 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-metadata-manager\n"
|
||||
"Last-Translator: Ascendoor <info@ascendoor.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-27T14:44:34+05:45\n"
|
||||
"PO-Revision-Date: 2021-10-27 00:00+05:45\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-metadata-manager\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ascendoor Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "View and manage posts, terms, users and comments metadata."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:109
|
||||
msgid "Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:110
|
||||
msgid "Invalid Request!!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:111
|
||||
msgid "This meta data seems to be private. Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:112
|
||||
msgid "Reload page?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:113
|
||||
msgid "This meta data seems to be private. Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:114
|
||||
msgid "Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:83
|
||||
msgid "Comment Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:112
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:124
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:133
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:122
|
||||
msgid "Meta Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:115
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:127
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:136
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:125
|
||||
msgid "Meta Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:118
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:130
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:139
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:128
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:104
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:156
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:168
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:166
|
||||
msgid "Meta data list is empty."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:165
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:186
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:175
|
||||
msgid "Meta data not found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:198
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:210
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:218
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:207
|
||||
msgid "You are not allowed to delete this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:230
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:242
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:250
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:239
|
||||
msgid "You are not allowed to update this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:95
|
||||
msgid "Post Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:78
|
||||
msgid "Disable Metadata Manager for Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:109
|
||||
msgid "Disable Metadata Manager for Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:138
|
||||
msgid "Disable Metadata Manager for Users or Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:145
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:157
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:187
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:287
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:100
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:107
|
||||
msgid "Term Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:90
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:97
|
||||
msgid "User Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:41
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:73
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:48
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:80
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:59
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:91
|
||||
msgid "While updating, meta value will be sanitized and filtered with %1$s (if meta value contains HTML tags) or %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:107
|
||||
msgid "Delete meta key and value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:118
|
||||
msgid "Edit meta value"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - PHP Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:34
|
||||
msgid "Ascendoor Metadata Manager plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - WordPress Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:49
|
||||
msgid "Ascendoor Metadata Manager plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,345 @@
|
||||
# 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 ""
|
||||
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
# Atlas Content Modeler Changelog
|
||||
|
||||
## 0.8.0 - 2021-10-13
|
||||
|
||||
### Added
|
||||
- Share models between sites using the new Export and Import models feature. Visit Content Modeler → Tools to get started.
|
||||
- Added "author" support to custom post types. This unlocks new functionality such as assigning specific users to a post, and querying posts by author in WPGraphQL.
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the model icon could not be changed when editing an existing model.
|
||||
- Fixed bug in the Number field where you could not define a Step value without also defining a Max value.
|
||||
- Improved duplicate field slug detection to ensure forward and reverse slugs for the Relationship field are unique in WPGraphQL.
|
||||
|
||||
### Changed
|
||||
- The `@wordpress/i18n` package is no longer bundled in the plugin's scripts, relying on the version that ships with WordPress instead.
|
||||
|
||||
## 0.7.0 - 2021-10-04
|
||||
|
||||
### Added
|
||||
- Relationship Field: one-to-one and one-to-many relationships were renamed to many-to-one and many-to-many to accurately reflect their function.
|
||||
- Relationship Field: fields can now optionally include reverse references.
|
||||
- Relationship Field: added [Beta] flag as the feature takes shape.
|
||||
- Chore: set "Requires at least" to WordPress version 5.7
|
||||
- Chore: set "Requires PHP" to version 7.2
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the app prompted about "Unsaved changes" when no changes had been made.
|
||||
|
||||
## 0.6.0 - 2021-09-09
|
||||
|
||||
### Added
|
||||
- Create one-to-one and one-to-many relationships between model entries with the new Relationship field.
|
||||
- A plugin icon will appear on the plugin update page during future updates.
|
||||
|
||||
### Fixed
|
||||
- Improved modal scroll behavior and positioning.
|
||||
|
||||
## 0.5.0 - 2021-08-12
|
||||
|
||||
### Added
|
||||
- You can now add custom Taxonomies and assign them to your models. Visit Atlas Content Modeler → Taxonomies to get started.
|
||||
- Models and Taxonomies submenu items now appear in the admin sidebar below Atlas Content Modeler.
|
||||
|
||||
### Changed
|
||||
- Refactored PHP tests.
|
||||
|
||||
## 0.4.2 - 2021-08-04
|
||||
|
||||
### Added
|
||||
- Ability to choose an icon when creating or editing a model.
|
||||
- Option to restrict file types for the media field.
|
||||
- Generate WordPress changelog from the Markdown changelog so that changes are visible from the WordPress changes modal.
|
||||
- Plugin developer improvements: GitHub Pull Request template; Code Climate configuration; Makefile for test environments.
|
||||
|
||||
### Changed
|
||||
- Change “API Identifier” field title on model entry forms to “Model ID” with a new description to better reflect its use.
|
||||
- Continuous Integration: the generated plugin zip is now tested and verified before deploying.
|
||||
|
||||
### Fixed
|
||||
- Improve query generation for “Open in GraphiQL” to include lowercase model names and models with the same plural and singular name.
|
||||
- Improve sanitization of model slugs. Includes safe migration of existing model slugs.
|
||||
- Prevent a PHP warning during title filtering if post info can not be found.
|
||||
- Improve number field validation.
|
||||
|
||||
## 0.4.1 - 2021-06-24
|
||||
### Added
|
||||
- Generate POT language file for translations.
|
||||
|
||||
### Changed
|
||||
- Use `include` in place of `require` so that missing or corrupt files do not take WordPress down.
|
||||
|
||||
### Removed
|
||||
- Removed the Multiple Choice field for now while we add support for custom choice API IDs.
|
||||
|
||||
## 0.4.0 - 2021-06-22
|
||||
- First public release. There may be breaking changes until 1.0.0.
|
||||
|
||||
### Added
|
||||
- New Multiple Choice field (beta) to create radio and checklist groups.
|
||||
- New “Send Feedback” button to share your experience with us.
|
||||
- New model option for “Private” or “Public” API visibility.
|
||||
- The Text field now includes an optional character minimum and maximum count in Advanced Settings.
|
||||
- The Number field now includes an optional minimum, maximum and step value in Advanced Settings.
|
||||
- Prompt to complete edits to an open field when attempting to open another field.
|
||||
- Added LICENSE, CONTRIBUTING and CHANGELOG files.
|
||||
|
||||
### Changed
|
||||
- REST responses now show Atlas Content Modeler fields under an `acm_fields` property.
|
||||
- REST responses now display detailed information about media fields.
|
||||
- Changed “Text Length” to “Input Type” in the Text field. Text length is now determined in Advanced Settings. Input type lets developers choose an input or textarea field.
|
||||
- Increased the clickable area on dropdown menu items in the developer app.
|
||||
- Adjusted styling in the publisher app.
|
||||
- Refactored default value handling to improve field load times.
|
||||
- Internal REST routes now include an `atlas` prefix.
|
||||
- The README now includes a getting started guide.
|
||||
|
||||
### Fixed
|
||||
- Pressing return in the publisher app will now submit the form, instead of clearing fields.
|
||||
- Corrected an issue preventing fields from appearing in REST responses.
|
||||
- Prevented custom fields from showing in REST when `show_in_rest` is false.
|
||||
- Strings in the publisher and developer interfaces are now translatable.
|
||||
- Fixed Jest tests and add to Continuous Integration workflow.
|
||||
- Improved admin URL handling for WordPress sites hosted in a subfolder.
|
||||
- Improved plugin update error messages to include the name of the plugin reporting them.
|
||||
- Prevented a styling issue with the Content Modeler admin menu item.
|
||||
|
||||
## 0.3.0 - 2021-06-01
|
||||
### Added
|
||||
- Developers can now mark fields as required.
|
||||
- Publishers will see inline errors prompting them to fill required fields.
|
||||
|
||||
### Changed
|
||||
- Rebranded to Atlas Content Modeler.
|
||||
- Changed data storage format.
|
||||
- Changed model data option name from wpe_content_model_post_types to atlas_content_modeler_post_types.
|
||||
- Updated admin sidebar icons for settings and entries.
|
||||
- Improved Rich Text fields, including adding media support.
|
||||
- Open fields now close when another field is created or opened.
|
||||
- Media fields now have a WPGraphQL type of MediaItem instead of String to enable complete queries for media information.
|
||||
|
||||
### Fixed
|
||||
- Improved model and field list appearance at mobile screen widths.
|
||||
- Improved client-side field validation for publishers.
|
||||
- Hid duplicate page title on new entry screens.
|
||||
- Corrected headers when editing entries.
|
||||
- Protected meta fields to prevent them appearing in the Custom Fields meta box.
|
||||
|
||||
### Removed
|
||||
- Repeater fields have been removed.
|
||||
- Screen options have been removed from entry pages for content model post types.
|
||||
- Post thumbnail support has been removed for content model post types.
|
||||
|
||||
## 0.2.0 - 2021-05-07
|
||||
### Added
|
||||
- Publishers can now enter model entries via a form.
|
||||
- Developers have the option to set a field as the title field.
|
||||
- The plugin now checks for updates.
|
||||
- Model and field options now close on blur or when the escape key is pressed.
|
||||
- Model options include “Open in GraphiQL” if the WPGraphQL plugin is active.
|
||||
- Improved developer tooling for linting, including pre-commit hooks.
|
||||
|
||||
### Changed
|
||||
- The media field is restricted to single file uploads for now.
|
||||
|
||||
### Removed
|
||||
- Unused “Created on” column from the model table.
|
||||
|
||||
## 0.1.0
|
||||
- Initial version.
|
||||
File diff suppressed because it is too large
Load Diff
272
spec/fixtures/dynamic_finders/plugin_version/autodate/translation_file/languages/default.pot
vendored
Normal file
272
spec/fixtures/dynamic_finders/plugin_version/autodate/translation_file/languages/default.pot
vendored
Normal file
@@ -0,0 +1,272 @@
|
||||
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 ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1.0.1
|
||||
* Initial release
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/bankval/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/bankval/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
== 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
|
||||
@@ -0,0 +1,146 @@
|
||||
# Copyright (C) 2021 Valice
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Banner Alerts 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/banner-alerts\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-28T21:27:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: banner-alerts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Admin/AdminPages.php:42
|
||||
msgid "Banner Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.banneralertsplugin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Provides an easy interface for creating and displaying alerts or notices as a banner on a website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Valice"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.valice.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:55
|
||||
msgid "Display title?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:58
|
||||
#: src/Admin/AdminPages.php:77
|
||||
#: src/Admin/AdminPages.php:92
|
||||
#: src/Admin/AdminPages.php:149
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:62
|
||||
#: src/Admin/AdminPages.php:81
|
||||
#: src/Admin/AdminPages.php:96
|
||||
#: src/Admin/AdminPages.php:153
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:66
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:70
|
||||
msgid "Display the title of alert in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:74
|
||||
msgid "Display read more link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:85
|
||||
msgid "Display read more link in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:89
|
||||
msgid "Display dismiss link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:100
|
||||
msgid "Allow alerts to be dismissed?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:104
|
||||
msgid "Display content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:107
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:111
|
||||
msgid "Full Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:115
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:119
|
||||
msgid "Choose the display setting for the alert message in the banner alert popup"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:123
|
||||
msgid "Open/Close Speed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:126
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:130
|
||||
msgid "Faster"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:134
|
||||
msgid "Slower"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:138
|
||||
msgid "Immediate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:142
|
||||
msgid "Choose the speed in which the alert is opened and closed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:146
|
||||
msgid "Use Slider"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:157
|
||||
msgid "Display alerts in a slider when multiple alerts are active?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:161
|
||||
msgid "Display styles"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:118
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:119
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:131
|
||||
msgid "A valid unix timestamp is required."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "wordpress-invoices-plugin",
|
||||
"version": "1.0.0",
|
||||
"description": "Beautiful and easy invoices for Wordpress",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"clone": "git clone https://github.com/mokuappio/serverless-invoices.git",
|
||||
"pull": "cd serverless-invoices && git pull",
|
||||
"config": "copy vue.config.js serverless-invoices\\vue.config.js && copy app.config.js serverless-invoices\\src\\config\\app.config.js",
|
||||
"build": "npm run config && cd serverless-invoices && npm i && npm run build",
|
||||
"prepare-release": "mv serverless-invoices/node_modules ../node_modules_temp && cp -r . ../bci",
|
||||
"clean-release": "rm -rf ../bci/.idea && rm -rf ../bci/.git && rm -rf ../bci/serverless-invoices/.git && mv ../node_modules_temp serverless-invoices/node_modules",
|
||||
"compress-release": "mv ../bci beautiful-custom-invoices && tar -a -c -f beautiful-custom-invoices.zip beautiful-custom-invoices && rm -rf beautiful-custom-invoices",
|
||||
"release": "npm run prepare-release && npm run clean-release && npm run compress-release"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org/elevateou/wordpress-invoices-plugin.git"
|
||||
},
|
||||
"author": "Elevate OU",
|
||||
"license": "ISC",
|
||||
"homepage": "https://bitbucket.org/elevateou/wordpress-invoices-plugin#readme"
|
||||
}
|
||||
47002
spec/fixtures/dynamic_finders/plugin_version/beautiful-image-card/composer_file/package-lock.json
generated
vendored
Normal file
47002
spec/fixtures/dynamic_finders/plugin_version/beautiful-image-card/composer_file/package-lock.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
## [1.0.1] - 2021-09-29
|
||||
|
||||
- Fix fa-icon block type
|
||||
|
||||
## [1.0.0] - 2021-09-29
|
||||
|
||||
- First release
|
||||
@@ -0,0 +1,167 @@
|
||||
# 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 ""
|
||||
@@ -0,0 +1,43 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR BeTheme
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BeThemesMe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-09 11:42+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:42
|
||||
#: includes/elementor-elements/features.php:87
|
||||
msgid "Our Process"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:96
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:99
|
||||
msgid "Enter the title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:105
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:108
|
||||
msgid "Enter the description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:115
|
||||
msgid "Process Tabs"
|
||||
msgstr ""
|
||||
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "buddypress-birthdays",
|
||||
"version": "1.6.0",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays",
|
||||
"license": "GPL-2.0+",
|
||||
"description": "buddypress-birthdays",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-wp-i18n": "^1.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays"
|
||||
},
|
||||
"dependencies": {
|
||||
"load-grunt-tasks": "^3.5.2",
|
||||
"npm": "^8.1.4"
|
||||
}
|
||||
}
|
||||
83
spec/fixtures/dynamic_finders/plugin_version/bitform/translation_file/languages/bitform.pot
vendored
Normal file
83
spec/fixtures/dynamic_finders/plugin_version/bitform/translation_file/languages/bitform.pot
vendored
Normal file
@@ -0,0 +1,83 @@
|
||||
# Copyright (C) 2021 BitForm
|
||||
# This file is distributed under the same license as the BitForm plugin.
|
||||
"Project-Id-Version: BitForm 1.0.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: bitform\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "BitForm"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:18
|
||||
msgid "Display a BitForm"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:43
|
||||
msgid "Form:"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:45
|
||||
msgid "Select a form"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:53
|
||||
msgid "Width:"
|
||||
msgstr ""
|
||||
|
||||
#: Common/Widget.php:59
|
||||
msgid "Height:"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryController.php:66
|
||||
#: Controller/EntryController.php:99
|
||||
#: Controller/PublicController.php:42
|
||||
#: Controller/PublicController.php:55
|
||||
msgid "Data submit failed"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:30
|
||||
#: Controller/EntryValidator.php:50
|
||||
#: Controller/FileController.php:91
|
||||
#: Controller/FormController.php:97
|
||||
#: Controller/FormController.php:118
|
||||
#: Controller/PublicController.php:76
|
||||
msgid "Invalid form"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:60
|
||||
#: Controller/EntryValidator.php:77
|
||||
#: Controller/EntryValidator.php:86
|
||||
#: Controller/EntryValidator.php:96
|
||||
msgid "Form is closed"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:111
|
||||
msgid "Token is required"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:117
|
||||
msgid "Secret is required"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:128
|
||||
msgid "Google server is unreachable"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/EntryValidator.php:132
|
||||
msgid "ReCaptcha verification failed. Please submit again, or refresh the page and try again"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/FileController.php:99
|
||||
#: Controller/PublicController.php:63
|
||||
msgid "Invalid file type"
|
||||
msgstr ""
|
||||
|
||||
#: Controller/FormController.php:92
|
||||
#: Controller/FormController.php:113
|
||||
msgid "Invalid scope"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "ctc-gallery",
|
||||
"version": "1.0.0",
|
||||
"description": "CTC Gallery WordPress plugin",
|
||||
"main": "js-masonry.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ujw0l/masonry-gallery.git"
|
||||
},
|
||||
"keywords": [
|
||||
"Masonry",
|
||||
"gallery",
|
||||
"Wordpress-plugin",
|
||||
"gutenberg-block"
|
||||
],
|
||||
"author": "UjW0L",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ujw0l/masonry-gallery/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ujw0l/masonry-gallery#readme",
|
||||
"dependencies": {
|
||||
"js-overlay": "^1.0.9",
|
||||
"js-masonry": "^1.1.0"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 02-12-2021 =
|
||||
* Initial release
|
||||
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5
spec/fixtures/dynamic_finders/plugin_version/blocks-for-wp-editor/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/blocks-for-wp-editor/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 - 2021-06-17 =
|
||||
* Initial Release
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "pricing-block",
|
||||
"version": "1.0.0",
|
||||
"description": "Pricing Block",
|
||||
"author": "Bluebox Digital",
|
||||
"main": "build/index.js",
|
||||
"devDependencies": {
|
||||
"@wordpress/block-editor": "^5.3.3",
|
||||
"@wordpress/blocks": "^8.0.3",
|
||||
"@wordpress/components": "^13.0.3",
|
||||
"@wordpress/eslint-plugin": "^9.0.4",
|
||||
"@wordpress/i18n": "^3.20.0",
|
||||
"@wordpress/prettier-config": "^1.0.3",
|
||||
"@wordpress/scripts": "^9.0.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.4.1",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"eslint-plugin-react": "^7.23.2",
|
||||
"prettier": "^2.2.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
@@ -0,0 +1,204 @@
|
||||
# Copyright (c) 2021 Zabir Anik. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Boostimer - Product Availability Countdown And Scheduler For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/xaviranik/boostimer/issues\n"
|
||||
"Last-Translator: zabiranik.me@gmail.com\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-11-27T16:21:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: boostimer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Boostimer - Product Availability Countdown And Scheduler For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "From sale to stock, Store-wise availability management in a breeze."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Zabir Anik"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://zabiranik.com"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "View Boostimer documentation"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Visit Boostimer forums"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Community support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menu.php:32
|
||||
#: includes/Admin/Menu.php:33
|
||||
msgid "Boostimer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:52
|
||||
msgid "Show sale timer?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:55
|
||||
msgid "Show sale countdown timer if sale price and schedules are set"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:77
|
||||
#: src/pages/Settings.js:63
|
||||
msgid "Settings have been updated successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:121
|
||||
msgid "Sale timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:127
|
||||
msgid "Sale timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:135
|
||||
msgid "Is sale timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:144
|
||||
msgid "Stock timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:150
|
||||
msgid "Stock timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:158
|
||||
msgid "Is stock timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/SaleTimer.php:22
|
||||
#: src/pages/Settings.js:153
|
||||
msgid "Sale ends in:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/StockTimer.php:22
|
||||
#: src/pages/Settings.js:170
|
||||
msgid "Expected restock in:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:20
|
||||
msgid "Show restock timer?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:23
|
||||
msgid "Show restock countdown timer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:31
|
||||
msgid "Stock available after"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:35
|
||||
msgid "Sets probable restock date"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:34
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:38
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:42
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:46
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/notice.php:24
|
||||
msgid "Boostimer is inactive"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:33
|
||||
msgid "%1$sLooks like, WooCommerce is not installed.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sinstall WooCommerce »%6$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:42
|
||||
msgid "%1$sLooks like, WooCommerce is deactivated.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sactivate WooCommerce%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Sidebar.js:41
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Home.js:11
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:58
|
||||
msgid "Saving settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:68
|
||||
msgid "Settings could not be saved. Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:107
|
||||
msgid "Show Countdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:114
|
||||
msgid "Show Sale Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:115
|
||||
msgid "Enable this to show countdown timer for sale duration on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:129
|
||||
msgid "Show Stock Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:130
|
||||
msgid "Enable this to show countdown timer for next available stock on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:141
|
||||
msgid "Timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:148
|
||||
msgid "Sale Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:149
|
||||
msgid "This text will show on the sale timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:165
|
||||
msgid "Stock Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:166
|
||||
msgid "This text will show on the stock timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:189
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,13 @@
|
||||
/**1.0.2 - 2021.11.29 **/
|
||||
- Fixed: Fixed bundle price with tax include/exclude
|
||||
|
||||
/**1.0.1 - 2021.11.25 **/
|
||||
- Updated: Compatible with WooCommerce 5.7.1
|
||||
- Updated: Update support file
|
||||
- Updated: Add language default template
|
||||
- Updated: Add product type prefix when searching the product on bundle product setting
|
||||
- Updated: Prevent image resize on bundle view
|
||||
- Updated: Slider for select product popup
|
||||
|
||||
/**1.0 - 2021.11 **/
|
||||
- The first released
|
||||
@@ -0,0 +1,217 @@
|
||||
# Copyright (C) 2021 <a href="https://braft.pl">BRAFT</a>
|
||||
# This file is distributed under the same license as the BRAFT Woo Shipping Packer plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BRAFT Woo Shipping Packer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/braft-woo-shipping-packer\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-05-18T14:46:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: braft-woo-shipping-packer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BRAFT Woo Shipping Packer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://braft.pl"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Woocommerce addon to calculate shipping container and costs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "<a href=\"https://braft.pl\">BRAFT</a>"
|
||||
msgstr ""
|
||||
|
||||
#: braft-woo-shipping-packer.php:48
|
||||
msgid "Packer"
|
||||
msgstr ""
|
||||
|
||||
#: braft-woo-shipping-packer.php:78
|
||||
msgid "Box type: "
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:4
|
||||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:10
|
||||
msgid "Language codes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:12
|
||||
msgid "example JSON: [{\"lang_code\":\"pl_PL\",\"lang_title\":\"Polski\"},{\"lang_code\":\"en_US\",\"lang_title\":\"English\"}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:22
|
||||
#: inc/braftwsp-settings.php:28
|
||||
msgid "Packages parameters"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:30
|
||||
msgid ""
|
||||
"example JSON: [{\"name\":\"My package\",\r\n"
|
||||
" \"parameters\":\"outer width,outer length,outer height,empty weight,inner width,inner length,inner height,max weight\",\r\n"
|
||||
" \"box_price_pl_PL\":\"the price\", \"box_price_en_US\":\"the price\"}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:41
|
||||
#: inc/braftwsp-settings.php:47
|
||||
msgid "Shipping thresholds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:49
|
||||
msgid ""
|
||||
"example JSON: [{\"name\":\"InPost\",\r\n"
|
||||
" \"parameters\":[{\"name\":\"A\", \"max_dimensions\":\"outer width,outer length,outer depth\", \"max_weight\":\"grams\",\r\n"
|
||||
" \"price_pl_PL\":\"the price\", \"price_en_US\":\"the price\"}]}]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:60
|
||||
msgid "Backup"
|
||||
msgstr ""
|
||||
|
||||
#: inc/braftwsp-settings.php:66
|
||||
msgid "Backup JSON"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:37
|
||||
msgid "Add language"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:101
|
||||
msgid "Box name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:103
|
||||
msgid "Outer width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:105
|
||||
msgid " Outer length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:107
|
||||
msgid " Outer height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:109
|
||||
msgid " Box weight: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:111
|
||||
msgid "Inner width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:113
|
||||
msgid " Inner length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:115
|
||||
msgid " Inner height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:117
|
||||
msgid " Max weigth: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:120
|
||||
msgid "Box price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:143
|
||||
msgid "Add box"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:255
|
||||
msgid "Rate name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:266
|
||||
#: js/braftwsp-settings.js:426
|
||||
msgid "Threshold name: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:268
|
||||
#: js/braftwsp-settings.js:428
|
||||
msgid "Max width: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:270
|
||||
#: js/braftwsp-settings.js:430
|
||||
msgid " Max length: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:272
|
||||
#: js/braftwsp-settings.js:432
|
||||
msgid " Max height: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:274
|
||||
#: js/braftwsp-settings.js:434
|
||||
msgid " Max weight: "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:277
|
||||
msgid "Price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:282
|
||||
msgid "Add threshold"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:302
|
||||
msgid "Add shipping rate"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:439
|
||||
msgid "price : "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:484
|
||||
msgid "outer dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:487
|
||||
msgid "inner dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:490
|
||||
msgid "box weight"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:491
|
||||
#: js/braftwsp-settings.js:509
|
||||
msgid "max weight"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:493
|
||||
msgid "box price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:506
|
||||
msgid "max dimensions "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:511
|
||||
msgid "price "
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:525
|
||||
msgid " Backup to JSON file"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:526
|
||||
msgid " Restore from JSON file"
|
||||
msgstr ""
|
||||
|
||||
#: js/braftwsp-settings.js:527
|
||||
msgid " Create TXT file"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "brandnestor",
|
||||
"version": "1.1.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"scripts": {
|
||||
"build": "gulp",
|
||||
"watch": "gulp watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/icons": "^6.0.1",
|
||||
"@wordpress/scripts": "^18.1.0",
|
||||
"cssnano": "^5.0.8",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-postcss": "^9.0.1",
|
||||
"gulp-sass": "^5.0.0",
|
||||
"sass": "^1.42.1",
|
||||
"webpack": "^5.59.0",
|
||||
"webpack-stream": "^7.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,705 @@
|
||||
# Copyright (C) 2021 Nikos Papadakis
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BrandNestor 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brandnestor\n"
|
||||
"Last-Translator: Nikos Papadakis <nikos@papadakis.xyz>\n"
|
||||
"Language-Team: WebNestors <info@webnestors.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"PO-Revision-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"X-Generator: WP-CLI 2.5.1-alpha-70ffdce\n"
|
||||
"X-Domain: brandnestor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BrandNestor"
|
||||
msgstr "BrandNestor"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Customize the WordPress dashboard, login/register pages, and more."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου του WordPress, τις σελίδες σύνδεσης/εγγραφής, και πολλά άλλα."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nikos Papadakis"
|
||||
msgstr "Νίκος Παπαδάκης"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://gitlab.com/nikopap/brandnestor"
|
||||
msgstr "https://gitlab.com/nikopap/brandnestor"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:115
|
||||
msgid "General"
|
||||
msgstr "Γενικά"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:116
|
||||
msgid "General options."
|
||||
msgstr "Γενικές επιλογές."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:122
|
||||
#: src/Admin/Settings/Settings.php:244
|
||||
msgid "Dashboard"
|
||||
msgstr "Πίνακας Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:123
|
||||
msgid "Customize the Dashboard page with your own Welcome Panel. You can choose to create it with standard HTML, or using an Elementor Template page."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου με το δικό σας Welcome Panel. Επιλέξτε να το δημιουργήσετε με HTML, ή με ένα Template του Elementor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:129
|
||||
msgid "Admin Menus"
|
||||
msgstr "Μενού Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:130
|
||||
msgid "Hide admin menu items for user roles and for users."
|
||||
msgstr "Κρύψτε στοιχεία του μενού ανά ρόλο χρήστη ή ανά χρήστη."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:136
|
||||
msgid "Admin Bar"
|
||||
msgstr "Μπάρα Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:137
|
||||
msgid "Options for the admin bar on top of the page."
|
||||
msgstr "Επιλογές για την μπάρα διαχειριστικού στο πάνω μέρος της σελίδας."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:143
|
||||
msgid "Authentication"
|
||||
msgstr "Αυθεντικοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:144
|
||||
msgid "Enable custom login & registration pages for your users or clients. BrandNestor registers new Elementor Login and Registration Widgets that allow authentication execution to exist on the frontend by skipping using the wp-login.php page"
|
||||
msgstr "Ενεργοποιήστε δικές σας σελίδες εισόδου και εγγραφής για τους χρήστες ή του πελάτες. Το BrandNestor ενεργοποιεί νέα Widgets του Elementor που επιτρέπουν την πιστοποίηση να γίνεται στο frontend παραλείποντας το wp-login.php."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:169
|
||||
msgid "Are you sure you want to reset the plugin? This will permanently delete all of the plugin data!"
|
||||
msgstr "Σίγουρα θέλετε να επαναφέρετε το πρόσθετο; Η ενέργεια θα διαγράψει τα δεδομένα του πρόσθετου μόνιμα!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:170
|
||||
msgid "An error occured during the request. See the developer console for details."
|
||||
msgstr "Υπήρξε λάθος κατά τη διάρκεια της άιτησης. Δείτε την κονσόλα προγραμματιστή για περισσότερες λεπτομέρειες."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:171
|
||||
msgid "Rule deleted"
|
||||
msgstr "Ο κανόνας διαγράφηκε"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:172
|
||||
msgid "Settings saved!"
|
||||
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:180
|
||||
msgid "Brand Name"
|
||||
msgstr "Όνομα Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:181
|
||||
msgid "Your Brand name. Will be used to replace any WordPress mentions in admin pages."
|
||||
msgstr "Το Όνομα της Εταιρείας σας. Θα χρησιμοποιηθεί για να αντικαταστήσει το WordPress στις σελίδες Admin."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:190
|
||||
msgid "Footer Text"
|
||||
msgstr "Κείμενο footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:191
|
||||
msgid "Text to display on the WordPress admin footer."
|
||||
msgstr "Κείμενο για εμφάνιση στο Footer του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:200
|
||||
msgid "Footer Image"
|
||||
msgstr "Εικόνα footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:201
|
||||
msgid "Image to display next to the footer text."
|
||||
msgstr "Εικόνα για εμφάνιση δίπλα στο κείμενο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:210
|
||||
msgid "Footer URL"
|
||||
msgstr "Footer URL"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:211
|
||||
msgid "The link URL for the footer text."
|
||||
msgstr "Ο σύνδεσμος για το κείμενο του footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:220
|
||||
msgid "Hide Dashboard Contextual Help"
|
||||
msgstr "Απόκρυψη βοήθειας του πίνακα ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:221
|
||||
msgid "Hide the WordPress dashboard contextual help box that is on the top of admin pages."
|
||||
msgstr "Κρύψτε την βοήθεια του πίνακα ελέγχου που βρίσκεται στην κορυφή του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:223
|
||||
#: src/Admin/Settings/Settings.php:234
|
||||
#: src/Admin/Settings/Settings.php:259
|
||||
#: src/Widgets/Login.php:98
|
||||
#: src/Widgets/Login.php:110
|
||||
#: src/Widgets/Register.php:88
|
||||
#: src/Widgets/Register.php:111
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:231
|
||||
msgid "Hide WordPress Version"
|
||||
msgstr "Απόκρυψη αριθμού έκδοσης WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:232
|
||||
msgid "Hide the WordPress version number that is displayed on the footer."
|
||||
msgstr "Απόκρυψη του αριθμού έκδοσης του WordPress που εμφανίζεται στο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:247
|
||||
#: src/Admin/Settings/Settings.php:334
|
||||
#: src/Admin/Settings/Settings.php:346
|
||||
msgid "Enable"
|
||||
msgstr "Ενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:255
|
||||
msgid "Hide Widgets"
|
||||
msgstr "Απόκρυψη Widget"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:256
|
||||
msgid "Hide all Dashboard widgets."
|
||||
msgstr "Απόκρυψη όλων των Widget του Πίνακα Ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:267
|
||||
msgid "Welcome Panel Type"
|
||||
msgstr "Τύπος Πίνακα Καλωσορίσματος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:268
|
||||
msgid "Choose between writing as HTML or an Elementor template as the type of the Dashboard Welcome Panel."
|
||||
msgstr "Επιλέξτε μεταξύ του HTML ή ενός Template του Elementor ως τύπο πίνακα καλωσορίσματος."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:287
|
||||
msgid "Elementor Template"
|
||||
msgstr "Template Elementor"
|
||||
|
||||
#. translators: %s Elementor library URL link
|
||||
#: src/Admin/Settings/Settings.php:290
|
||||
msgid "Choose a custom Welcome Panel from an Elementor Template page. <a href=\"%s\">Create one from here.</a>"
|
||||
msgstr "Επιλέξτε ένα δικό σας πίνακα Welcome από τα Templates του Elementor. <a href=\"%s\">Δημιουργία νέου από εδώ.</a>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:303
|
||||
msgid "Dashboard HTML"
|
||||
msgstr "HTML Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:304
|
||||
msgid "Insert custom HTML that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο HTML που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:314
|
||||
msgid "Dashboard CSS"
|
||||
msgstr "CSS Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:315
|
||||
msgid "Insert custom CSS styling that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο CSS που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:359
|
||||
msgid "Hide admin menus for:"
|
||||
msgstr "Απόκρυψη μενού διαχειριστή για:"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:363
|
||||
msgid "Role"
|
||||
msgstr "Ρόλος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:364
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:392
|
||||
msgid "Guest"
|
||||
msgstr "Επισκέπτης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:399
|
||||
msgid "Branding Logo"
|
||||
msgstr "Λογότυπο Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:400
|
||||
msgid "Image logo to display on the Dashboard Admin Bar."
|
||||
msgstr "Εικόνα λογότυπου για εμφάνιση στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:409
|
||||
msgid "Branding Logo URL"
|
||||
msgstr "URL Λογότυπου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:410
|
||||
msgid "Link URL for the Branding Logo on the Dashboard Admin Bar."
|
||||
msgstr "Σύνδεσομς URL για το λογότυπο στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:419
|
||||
msgid "Bar Menu Visibility"
|
||||
msgstr "Ορατότητα Μπάρας Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:420
|
||||
msgid "With this, you can change the Admin Bar menu visibility for logged in or logged out users on the frontend."
|
||||
msgstr "Με αυτό, μπορείτε να αλλάξετε την ορατότητα της μπάρας διαχειριστή για συνδεδεμένους ή αποσυνδεδεμένους χρήστες στο frontend."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:441
|
||||
msgid "Login Page"
|
||||
msgstr "Σελίδα Εισόδου"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:444
|
||||
msgid "Enable a custom Login Page for WordPress. Login URLs and redirects will point to this page. To add a login form to a page use the <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εισόδου για το WordPress. Τα URLs εισόδου θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εισόδου σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:457
|
||||
msgid "Register Page"
|
||||
msgstr "Σελίδα Εγγραφής"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:460
|
||||
msgid "Enable a custom Register Page for WordPress. Register URLs and redirects will point to this page. To add a register form to a page use the <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εγγραφής για το WordPress. Τα URL για εγγραφή θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εγγραφής σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:473
|
||||
msgid "Redirect URL On Login"
|
||||
msgstr "URL ανακατεύθυνσης σύνδεσης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:474
|
||||
msgid "URL to redirect to on successful user login. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή σύνδεση χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:483
|
||||
msgid "Redirect URL On Registration"
|
||||
msgstr "URL ανακατεύθυνσης εγγραφής"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:484
|
||||
msgid "URL to redirect to on successful user registration. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή εγγραφή χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:493
|
||||
msgid "WordPress Login Page Logo"
|
||||
msgstr "Λογότυπο σελίδας σύνδεσης του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:494
|
||||
msgid "Replace the default WordPress login page logo with your own <strong>(84x84 pixels).</strong> Useful if there are plugins that rely on the default WP login form, such as Two Factor."
|
||||
msgstr "Αντικαθιστά το λογότυπο του WordPress στην σελίδα σύνδεσης με το δικό σας <strong>(84x84 pixel).</strong> Χρήσιμο αν υπάρχουν πρόσθετα που βασίζονται στην προεπιλεγμένη σελίδα σύνδεσης, όπως το Two Factor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:503
|
||||
msgid "Disable Default WordPress Login Page"
|
||||
msgstr "Απενεργοποίηση Προεπιλεγμένης Σελίδας Εισόδου του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:504
|
||||
msgid "Disable the default WordPress login & register page. <span style=\"color:red\">WARNING: Make sure that your custom login and register pages work correctly, otherwise <strong>nobody</strong> will be able to sign in!</span>"
|
||||
msgstr "Απενεργοποίηση των προεπιλεγμένων σελίδων εισόδου και εγγραφής του WordPress. <span style=\"color:red\">ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Σιγουρευτείτε ότι οι δικές σας σελίδες εισόδου και εγγραφής δουλεύουν σωστά, διαφορετικά <strong>κανένας</strong> δεν θα μπορεί να κάνει είσοδο!</span>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:506
|
||||
#: src/Admin/Settings/Settings.php:517
|
||||
msgid "Disable"
|
||||
msgstr "Απενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:514
|
||||
msgid "Disable /wp-admin/ Page Redirect"
|
||||
msgstr "Απενεργοποίηση Ανακατεύθυνσης /wp-admin/"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:515
|
||||
msgid "Disables /wp-admin/ to login page redirection for non-logged in users to proactively hide your login and registration pages as a security feature."
|
||||
msgstr "Απενεργοποιεί το /wp-admin/ στην σελίδα εισόδου για χρήστες που δεν έχουν κάνει είσοδο ώστε να κρύψει την σελίδα εισόδου και εγγραφής."
|
||||
|
||||
#: src/Admin/Settings/SettingsImageField.php:26
|
||||
msgid "Upload Image"
|
||||
msgstr "Μεταφόρτωση εικόνας"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:53
|
||||
msgid "Add New"
|
||||
msgstr "Προσθήκεη νέου"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:67
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: src/Admin/Settings/SettingsSelectField.php:44
|
||||
msgid "-- None Selected --"
|
||||
msgstr "-- Κανένα Επιλεγμένο --"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:59
|
||||
msgid "View Documentation"
|
||||
msgstr "Προβολή εγχειριδίου"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:72
|
||||
msgid "Save Changes"
|
||||
msgstr "Αποθήκευση αλλαγών"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:80
|
||||
msgid "Upload"
|
||||
msgstr "Μεταφόρτωση"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:84
|
||||
msgid "Import Settings"
|
||||
msgstr "Εισαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:87
|
||||
msgid "Export Settings"
|
||||
msgstr "Εξαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:90
|
||||
msgid "Reset Plugin"
|
||||
msgstr "Επαναφορά προσθέτου"
|
||||
|
||||
#: src/Core/AjaxHandler.php:43
|
||||
#: src/Core/AjaxHandler.php:60
|
||||
#: src/Core/AjaxHandler.php:72
|
||||
#: src/Core/AjaxHandler.php:103
|
||||
#: src/Core/AjaxHandler.php:130
|
||||
#: src/Core/AjaxHandler.php:154
|
||||
msgid "Current user does not have the required capability"
|
||||
msgstr "Ο χρήστης δεν έχει τα απαιτούμενα δικαιώματα"
|
||||
|
||||
#: src/Core/RequestHandler.php:57
|
||||
msgid "<strong>Error:</strong> Incorrect username/email or password."
|
||||
msgstr "<strong>Λάθος:</strong> Εσφαλμένο όνομα χρήστη/email ή κωδικός."
|
||||
|
||||
#: src/Core/RequestHandler.php:299
|
||||
msgid "Import error: The uploaded file type is not allowed."
|
||||
msgstr "Σφάλμα εισαγωγής: Ο τύπος αρχείου φόρτωσης δεν επιτρέπεται."
|
||||
|
||||
#: src/Core/RequestHandler.php:314
|
||||
msgid "Settings successfully imported. It is recommended to manually check that all image URLs are pointing to your site, and that all page reference their correct IDs."
|
||||
msgstr "Οι ρυθμίσεις εισάχθηκαν με επιτυχία. Συνιστάται ο χειροκίνητος έλεγχος οτι οι επιλογές με URL αντιστοιχούν για την ιστοσελίδα σας, και ότι όλες αναφορές σελιδών είναι σωστές."
|
||||
|
||||
#: src/Core/RequestHandler.php:316
|
||||
msgid "Import error: The upload file is invalid."
|
||||
msgstr "Σφάλμα εισαγωγής: Το αρχείο φόρτωσης δεν είναι έγκυρο."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:45
|
||||
#: src/Front/Models/RegisterModel.php:40
|
||||
#: src/Widgets/Base_Form.php:479
|
||||
#: src/Widgets/Base_Form.php:480
|
||||
msgid "Submit"
|
||||
msgstr "Υποβολή"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:46
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
#: assets/js/src/blocks/login/block.js:33
|
||||
#: assets/js/build/blocks/blocks.js:119
|
||||
msgid "Get New Password"
|
||||
msgstr "Ζητήστε νέο συνθηματικό"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:62
|
||||
msgid "You are now logged out."
|
||||
msgstr "Έχετε αποσυνδεθεί."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:66
|
||||
msgid "User registration is currently disabled."
|
||||
msgstr "Η εγγραφή χρηστών έχει απενεργοποιηθεί προς το παρόν."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:70
|
||||
msgid "Your password has been reset. You can now log in with the form below."
|
||||
msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί. Μπορείτε τώρα να συνδεθείτε με την παρακάτω φόρμα."
|
||||
|
||||
#. translators: %s login page URL
|
||||
#: src/Front/Models/LoginModel.php:75
|
||||
msgid "Registration complete. Please check your email, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Η εγγραφή σας ολοκληρώθηκε. Παρακαλώ δείτε το email σας και στην συνέχεια επισκεφτείτε την <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#. translators: %s register page URL
|
||||
#: src/Front/Models/LoginModel.php:80
|
||||
msgid "Check your email for the confirmation link, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Ελέγξτε το email σας για τον σύνδεσμο επιβεβαίωσης και στη συνέχεια επισκεφτείτε τη <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:84
|
||||
msgid "Your password reset link has expired. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης έχει λήξει. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:88
|
||||
msgid "Your password reset link appears to be invalid. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης φαίνεται να μην είναι έγκυρος. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Widgets/Base_Form.php:32
|
||||
msgid "Style"
|
||||
msgstr "Στιλ"
|
||||
|
||||
#: src/Widgets/Base_Form.php:40
|
||||
msgid "Form Label Typography"
|
||||
msgstr "Τυπογραφία ετικέτας εισόδου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:49
|
||||
msgid "Text Typography"
|
||||
msgstr "Τυπογραφία κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:58
|
||||
#: src/Widgets/Base_Form.php:92
|
||||
#: src/Widgets/Base_Form.php:359
|
||||
msgid "Text Color"
|
||||
msgstr "Χρώμα κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:76
|
||||
msgid "Inputs"
|
||||
msgstr "Εισόδοι"
|
||||
|
||||
#: src/Widgets/Base_Form.php:104
|
||||
#: src/Widgets/Base_Form.php:370
|
||||
msgid "Background Color"
|
||||
msgstr "Χρώμα Φόντου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:155
|
||||
#: src/Widgets/Base_Form.php:469
|
||||
msgid "Button"
|
||||
msgstr "Κουμπί"
|
||||
|
||||
#: src/Widgets/Base_Form.php:343
|
||||
msgid "Message Box"
|
||||
msgstr "Κουτί μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:351
|
||||
msgid "Message Styling"
|
||||
msgstr "Στυλ μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:389
|
||||
msgid "Error Message Styling"
|
||||
msgstr "Στυλ μηνύματος σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:397
|
||||
msgid "Error Text Color"
|
||||
msgstr "Χρώμα κειμένου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:408
|
||||
msgid "Error Background Color"
|
||||
msgstr "Χρώμα φόντου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:477
|
||||
msgid "Button Label"
|
||||
msgstr "Κείμενου κουμπιού"
|
||||
|
||||
#: src/Widgets/Base_Form.php:487
|
||||
msgid "Alignment"
|
||||
msgstr "Ευθυγράμμιση"
|
||||
|
||||
#: src/Widgets/Base_Form.php:491
|
||||
msgid "Left"
|
||||
msgstr "Αριστερά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:495
|
||||
msgid "Center"
|
||||
msgstr "Κέντρο"
|
||||
|
||||
#: src/Widgets/Base_Form.php:499
|
||||
msgid "Right"
|
||||
msgstr "Δεξιά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:503
|
||||
msgid "Justified"
|
||||
msgstr "Justified"
|
||||
|
||||
#: src/Widgets/Base_Form.php:513
|
||||
msgid "Button Icon"
|
||||
msgstr "Εικονίδιο κουμπιού"
|
||||
|
||||
#: src/Widgets/Login.php:57
|
||||
#: src/Widgets/Register.php:57
|
||||
#: assets/js/build/blocks/blocks.js:283
|
||||
#: assets/js/build/blocks/blocks.js:523
|
||||
#: assets/js/src/blocks/login/edit.js:49
|
||||
#: assets/js/src/blocks/register/edit.js:48
|
||||
#: assets/js/build/blocks/blocks.js:194
|
||||
#: assets/js/build/blocks/blocks.js:404
|
||||
msgid "Content"
|
||||
msgstr "Περιεχόμενο"
|
||||
|
||||
#: src/Widgets/Login.php:65
|
||||
msgid "Login Label"
|
||||
msgstr "Ετικέτα ψευδώνυμου"
|
||||
|
||||
#: src/Widgets/Login.php:75
|
||||
msgid "Password Label"
|
||||
msgstr "Ετικέτα συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:85
|
||||
msgid "Remember Me Label"
|
||||
msgstr "Ετικέτα «να με θυμάσαι»"
|
||||
|
||||
#: src/Widgets/Login.php:95
|
||||
#: assets/js/build/blocks/blocks.js:285
|
||||
#: assets/js/src/blocks/login/edit.js:51
|
||||
#: assets/js/build/blocks/blocks.js:196
|
||||
msgid "Show Lost Password"
|
||||
msgstr "Εμφάνιση φόρμας υπενθύμισης συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:97
|
||||
#: src/Widgets/Login.php:109
|
||||
#: src/Widgets/Register.php:87
|
||||
#: src/Widgets/Register.php:110
|
||||
msgid "Show"
|
||||
msgstr "Εμφάνιση"
|
||||
|
||||
#: src/Widgets/Login.php:107
|
||||
#: assets/js/build/blocks/blocks.js:292
|
||||
#: assets/js/src/blocks/login/edit.js:61
|
||||
#: assets/js/build/blocks/blocks.js:206
|
||||
msgid "Show Register URL"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: src/Widgets/Login.php:119
|
||||
msgid "New Password Button Label"
|
||||
msgstr "Ετικέτα κουμπιού νέου συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:135
|
||||
#: src/Widgets/Register.php:137
|
||||
#: assets/js/build/blocks/blocks.js:334
|
||||
#: assets/js/build/blocks/blocks.js:568
|
||||
#: assets/js/src/blocks/login/edit.js:96
|
||||
#: assets/js/src/blocks/register/edit.js:89
|
||||
#: assets/js/build/blocks/blocks.js:241
|
||||
#: assets/js/build/blocks/blocks.js:445
|
||||
msgid "Sample message."
|
||||
msgstr "Δείγμα μηνύματος"
|
||||
|
||||
#: src/Widgets/Login.php:136
|
||||
#: src/Widgets/Register.php:138
|
||||
msgid "Sample <strong>error</strong> message."
|
||||
msgstr "Δείγμα μηνύματος <strong>σφάλματος</strong>."
|
||||
|
||||
#: src/Widgets/Register.php:65
|
||||
msgid "Username Label"
|
||||
msgstr "Ετικέτα ψευδόνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:75
|
||||
msgid "Email Label"
|
||||
msgstr "Ετικέτα Email"
|
||||
|
||||
#: src/Widgets/Register.php:85
|
||||
#: assets/js/build/blocks/blocks.js:525
|
||||
#: assets/js/src/blocks/register/edit.js:50
|
||||
#: assets/js/build/blocks/blocks.js:406
|
||||
msgid "Show First Name Input"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:97
|
||||
msgid "First Name Label"
|
||||
msgstr "Ετικέτα Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:108
|
||||
#: assets/js/build/blocks/blocks.js:532
|
||||
#: assets/js/src/blocks/register/edit.js:60
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
msgid "Show Last Name Input"
|
||||
msgstr "Εμφάνιση Επώνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:120
|
||||
msgid "Last Name Label"
|
||||
msgstr "Ετικέτα Επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:175
|
||||
#: assets/js/src/blocks/login/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:92
|
||||
msgid "BrandNestor Login"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:176
|
||||
#: assets/js/src/blocks/login/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:93
|
||||
msgid "A custom Login widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget σύνδεσης για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:201
|
||||
msgid "Showing lost password link"
|
||||
msgstr "Εμφάνιση συνδέσμου χαμένου συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:57
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
msgid "Toggle to show lost password link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος χαμένου κωδικού πρόσβασης"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:211
|
||||
msgid "Showing register link"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:67
|
||||
#: assets/js/build/blocks/blocks.js:212
|
||||
msgid "Toggle to show register link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:299
|
||||
#: assets/js/src/blocks/login/edit.js:71
|
||||
#: assets/js/build/blocks/blocks.js:216
|
||||
msgid "New Password Button Text"
|
||||
msgstr "Κείμενο κουμπιού Νέου Συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
#: assets/js/build/blocks/blocks.js:538
|
||||
#: assets/js/src/blocks/login/edit.js:76
|
||||
#: assets/js/src/blocks/register/edit.js:70
|
||||
#: assets/js/build/blocks/blocks.js:221
|
||||
#: assets/js/build/blocks/blocks.js:426
|
||||
msgid "Button Alignment"
|
||||
msgstr "Ευθυγράμμιση κουμπιού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:336
|
||||
#: assets/js/build/blocks/blocks.js:570
|
||||
#: assets/js/src/blocks/login/edit.js:97
|
||||
#: assets/js/src/blocks/register/edit.js:90
|
||||
#: assets/js/build/blocks/blocks.js:242
|
||||
#: assets/js/build/blocks/blocks.js:446
|
||||
msgid "Sample error message."
|
||||
msgstr "Δείγμα μηνύματος σφάλματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:346
|
||||
#: assets/js/build/blocks/blocks.js:580
|
||||
#: assets/js/src/blocks/login/edit.js:105
|
||||
#: assets/js/src/blocks/register/edit.js:98
|
||||
#: assets/js/build/blocks/blocks.js:250
|
||||
#: assets/js/build/blocks/blocks.js:454
|
||||
msgid "Add a username label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος χρήστη…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:358
|
||||
#: assets/js/src/blocks/login/edit.js:114
|
||||
#: assets/js/build/blocks/blocks.js:259
|
||||
msgid "Add a password label…"
|
||||
msgstr "Προσθέστε ετικέτα συνθηματικού…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:415
|
||||
#: assets/js/src/blocks/register/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:303
|
||||
msgid "BrandNestor Register"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
#: assets/js/src/blocks/register/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
msgid "A custom Register widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget εγγραφής για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:55
|
||||
#: assets/js/src/blocks/register/edit.js:65
|
||||
#: assets/js/build/blocks/blocks.js:411
|
||||
#: assets/js/build/blocks/blocks.js:421
|
||||
msgid "Showing a first name input field"
|
||||
msgstr "Εμφάνιση πεδίου εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/src/blocks/register/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:412
|
||||
msgid "Toggle to show the first name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:422
|
||||
msgid "Toggle to show the last name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:592
|
||||
#: assets/js/src/blocks/register/edit.js:107
|
||||
#: assets/js/build/blocks/blocks.js:463
|
||||
msgid "Add an email label…"
|
||||
msgstr "Προσθέστε ετικέτα email…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:604
|
||||
#: assets/js/src/blocks/register/edit.js:117
|
||||
#: assets/js/build/blocks/blocks.js:473
|
||||
msgid "Add a first name label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:616
|
||||
#: assets/js/src/blocks/register/edit.js:128
|
||||
#: assets/js/build/blocks/blocks.js:484
|
||||
msgid "Add a last name label…"
|
||||
msgstr "Προσθέστε ετικέτα επώνυμου…"
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "BTCPayWall",
|
||||
"version": "1.0.0",
|
||||
"description": "BTCPayWall is a WordPress plugin for publishers to charge for paid content. With the help of WordPress BTCPayWall plugin you can offer previews of your blog posts and accept bitcoin payment for a single post (pay-per-post) via Lightning Network.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^17.0.0"
|
||||
}
|
||||
}
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/bulk-plugin-toggle/change_log/CHANGELOG.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/bulk-plugin-toggle/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# 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.
|
||||
@@ -0,0 +1,2 @@
|
||||
/** 1.0.0 - 2021.07.23 **/
|
||||
~ The first released.
|
||||
@@ -0,0 +1,339 @@
|
||||
# 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 ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/candescent/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/candescent/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,370 @@
|
||||
# Copyright (C) 2021 Casso Team
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Casso - Automatically confirm bank transfer payments 2.0."
|
||||
"0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/casso-wordpress-"
|
||||
"plugin\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tiếng Việt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-06-08T08:18:22+00:00\n"
|
||||
"PO-Revision-Date: 2021-07-23 07:29+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: casso-wordpress-plugin\n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Loco-Version: 2.5.2; wp-5.7.2"
|
||||
|
||||
#: inc/banks/class-casso-base.php:735
|
||||
msgid ""
|
||||
" <div class='power_by'>Automatic transaction checking by Casso Robot</div>"
|
||||
msgstr ""
|
||||
" <div class='power_by'>Tra soát giao dịch tự động bởi Casso Robot</div>"
|
||||
|
||||
#: inc/class-casso-admin-page.php:268
|
||||
msgid "Acceptance difference"
|
||||
msgstr "Chênh lệch chấp nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:404 inc/banks/class-casso-momo.php:152
|
||||
msgid "Account number"
|
||||
msgstr "Số tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:213
|
||||
msgid "Account on/off"
|
||||
msgstr "Bật/tắt tài khoản"
|
||||
|
||||
#: wc-gateway-casso.php:322
|
||||
msgid "Active"
|
||||
msgstr "Đang hoạt động"
|
||||
|
||||
#: inc/banks/class-casso-base.php:281 inc/banks/class-casso-base.php:424
|
||||
#: inc/banks/class-casso-momo.php:91 inc/banks/class-casso-momo.php:172
|
||||
msgid "Amount"
|
||||
msgstr "Số tiền"
|
||||
|
||||
#: inc/class-casso-admin-page.php:163
|
||||
msgid "Authorization code"
|
||||
msgstr "Mã xác nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:412 inc/banks/class-casso-momo.php:160
|
||||
msgid "Bank"
|
||||
msgstr "Ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-base.php:333 inc/banks/class-casso-momo.php:123
|
||||
msgid "Bank transfer QR code"
|
||||
msgstr "Mã QR chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:186
|
||||
msgid "Bussiness name"
|
||||
msgstr "Tên doanh nghiệp"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Casso - Tự động xác nhận thanh toán chuyển khoản ngân hàng"
|
||||
msgstr ""
|
||||
|
||||
#: wc-gateway-casso.php:437
|
||||
msgid ""
|
||||
"Casso announces received <b>%s</b> VND, content <B>%s</B> has been moved to "
|
||||
"<b>Account number %s</b>"
|
||||
msgstr ""
|
||||
"Casso thông báo nhận <b>%s</b> VND, nội dung <B>%s</B> chuyển vào <b>STK "
|
||||
"%s</b>"
|
||||
|
||||
#: wc-gateway-casso.php:263
|
||||
msgid ""
|
||||
"Casso is not running because WooCommerce is not active. Please activate both "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
"Casso không chạy vì WooCommerce không hoạt động. Vui lòng kích hoạt cả hai "
|
||||
"plugin."
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Casso plugin developed to connect Vietnamese banks with Wordpress. Help "
|
||||
"automatically confirm the order has been paid by wire transfer in Vietnam."
|
||||
msgstr ""
|
||||
"Plugin Casso phát triển để kết nối các ngân hàng Việt Nam vào Wordpress. "
|
||||
"Giúp tự động xác nhận các đơn hàng được thanh toán bằng hình thức chuyển "
|
||||
"khoản ngân hàng Việt Nam."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Casso Team"
|
||||
msgstr "Casso Team"
|
||||
|
||||
#: inc/class-casso-admin-page.php:155
|
||||
msgid "Click here to show manual configuration"
|
||||
msgstr "Click vào đây hiện thị cấu hình thủ công"
|
||||
|
||||
#: inc/class-casso-admin-page.php:178
|
||||
msgid "Connection Information"
|
||||
msgstr "Thông tin kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:285 inc/banks/class-casso-base.php:436
|
||||
#: inc/banks/class-casso-momo.php:95 inc/banks/class-casso-momo.php:184
|
||||
msgid "Content"
|
||||
msgstr "Nội dung"
|
||||
|
||||
#: inc/class-casso-admin-page.php:369 inc/class-casso-admin-page.php:394
|
||||
msgid "Default"
|
||||
msgstr "Mặc định"
|
||||
|
||||
#: inc/class-casso-admin-page.php:147
|
||||
msgid "Enable QR code display mode VietQR"
|
||||
msgstr "Bật chế độ hiển thị mã VietQR"
|
||||
|
||||
#: inc/class-casso-admin-page.php:129
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Mở/Đóng"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://casso.vn/"
|
||||
msgstr "https://casso.vn/"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
msgstr "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
|
||||
#: inc/banks/class-casso-base.php:307 inc/banks/class-casso-base.php:620
|
||||
msgid "I have already paid"
|
||||
msgstr "Tôi đã thanh toán"
|
||||
|
||||
#: wc-gateway-casso.php:320
|
||||
msgid "Inactive"
|
||||
msgstr "Ngưng hoạt động"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Link Casso"
|
||||
msgstr "Liên kết Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:188
|
||||
msgid "List of bank accounts"
|
||||
msgstr "Danh sách tài khoản ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:32
|
||||
msgid "Make payment by bank transfer via Momo."
|
||||
msgstr "Thanh toán bằng chuyển khoản qua Momo."
|
||||
|
||||
#: inc/banks/class-casso-acb.php:32 inc/banks/class-casso-agribank.php:30
|
||||
#: inc/banks/class-casso-bidv.php:31 inc/banks/class-casso-mbbank.php:31
|
||||
#: inc/banks/class-casso-ocb.php:31 inc/banks/class-casso-techcombank.php:30
|
||||
#: inc/banks/class-casso-timoplus.php:33 inc/banks/class-casso-tpbank.php:31
|
||||
#: inc/banks/class-casso-vietcombank.php:32
|
||||
#: inc/banks/class-casso-vietinbank.php:31 inc/banks/class-casso-vpbank.php:31
|
||||
msgid "Make payment by bank transfer."
|
||||
msgstr "Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. "
|
||||
|
||||
#: inc/banks/class-casso-momo.php:25
|
||||
msgid ""
|
||||
"Make payment by money transfer via momo. The system automatically confirms "
|
||||
"the order payment after the transfer is completed"
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/class-casso-admin-page.php:254
|
||||
msgid ""
|
||||
"Maximum 15 characters, no spaces and no special characters. If contained, it "
|
||||
"will be deleted"
|
||||
msgstr ""
|
||||
"Tối đa 15 kí tự, không chứa khoảng trắng và kí tự đặc biệt. Nếu chứa sẽ bị "
|
||||
"xóa"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:20
|
||||
msgid "Momo Wallet"
|
||||
msgstr "Ví Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:184
|
||||
msgid "No banks found"
|
||||
msgstr "Không tìm thấy tài khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:181 inc/class-casso-admin-page.php:337
|
||||
msgid "No connection"
|
||||
msgstr "Chưa kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:459
|
||||
msgid ""
|
||||
"No matching transfers were found. The system is still checking the "
|
||||
"transaction"
|
||||
msgstr ""
|
||||
"Không tìm thấy giao dịch nào phù hợp. Hệ thống vẫn đang kiểm tra. Có thể tốn "
|
||||
"1 khoảng thời gian "
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "or"
|
||||
msgstr "hoặc"
|
||||
|
||||
#: wc-gateway-casso.php:460
|
||||
msgid "Order has been overpaid"
|
||||
msgstr "Đơn hàng đã thanh toán dư"
|
||||
|
||||
#: wc-gateway-casso.php:324
|
||||
msgid "Out of money"
|
||||
msgstr "Hết tiền"
|
||||
|
||||
#: wc-gateway-casso.php:140 wc-gateway-casso.php:145 wc-gateway-casso.php:171
|
||||
msgid "Paid"
|
||||
msgstr "Đã thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:25 inc/banks/class-casso-agribank.php:23
|
||||
#: inc/banks/class-casso-bidv.php:24 inc/banks/class-casso-mbbank.php:24
|
||||
#: inc/banks/class-casso-ocb.php:24 inc/banks/class-casso-techcombank.php:23
|
||||
#: inc/banks/class-casso-timoplus.php:26 inc/banks/class-casso-tpbank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:24 inc/banks/class-casso-vpbank.php:24
|
||||
msgid ""
|
||||
"Payment by bank transfer. The system automatically confirms the paid order "
|
||||
"after the transfer is completed."
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:26 inc/banks/class-casso-momo.php:31
|
||||
msgid "Payment Momo"
|
||||
msgstr "Thanh toán Momo"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:24 inc/banks/class-casso-acb.php:26
|
||||
#: inc/banks/class-casso-acb.php:31 inc/banks/class-casso-agribank.php:22
|
||||
#: inc/banks/class-casso-agribank.php:24 inc/banks/class-casso-agribank.php:29
|
||||
#: inc/banks/class-casso-bidv.php:23 inc/banks/class-casso-bidv.php:25
|
||||
#: inc/banks/class-casso-bidv.php:30 inc/banks/class-casso-mbbank.php:23
|
||||
#: inc/banks/class-casso-mbbank.php:25 inc/banks/class-casso-mbbank.php:30
|
||||
#: inc/banks/class-casso-ocb.php:23 inc/banks/class-casso-ocb.php:25
|
||||
#: inc/banks/class-casso-ocb.php:30 inc/banks/class-casso-techcombank.php:22
|
||||
#: inc/banks/class-casso-techcombank.php:24
|
||||
#: inc/banks/class-casso-techcombank.php:29
|
||||
#: inc/banks/class-casso-timoplus.php:25 inc/banks/class-casso-timoplus.php:27
|
||||
#: inc/banks/class-casso-timoplus.php:32 inc/banks/class-casso-tpbank.php:23
|
||||
#: inc/banks/class-casso-tpbank.php:25 inc/banks/class-casso-tpbank.php:30
|
||||
#: inc/banks/class-casso-vietcombank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:26
|
||||
#: inc/banks/class-casso-vietcombank.php:31
|
||||
#: inc/banks/class-casso-vietinbank.php:23
|
||||
#: inc/banks/class-casso-vietinbank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:30 inc/banks/class-casso-vpbank.php:23
|
||||
#: inc/banks/class-casso-vpbank.php:25 inc/banks/class-casso-vpbank.php:30
|
||||
msgid "Payment via bank %s"
|
||||
msgstr "Thanh toán ngân hàng %s"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:108
|
||||
msgid "Phone number"
|
||||
msgstr "Số điện thoại"
|
||||
|
||||
#: inc/banks/class-casso-base.php:385 inc/banks/class-casso-momo.php:133
|
||||
msgid ""
|
||||
"Please transfer the correct content <b style='font-size: 20px;'>%s</b> for "
|
||||
"we can confirm the payment"
|
||||
msgstr ""
|
||||
"Vui lòng chuyển đúng nội dung <b style = 'font-size: 20px;'>% s </b> để "
|
||||
"chúng tôi xác nhận thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-base.php:367
|
||||
msgid "SAVE IMAGE QR"
|
||||
msgstr "LƯU ẢNH QR"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:24
|
||||
msgid "Scan code Momo"
|
||||
msgstr "Quét mã Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:203
|
||||
msgid "Security Key"
|
||||
msgstr "Key bảo mật"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Set up a link with Casso"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "Set up automatic Casso link"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: wc-gateway-casso.php:331
|
||||
msgid "Settings"
|
||||
msgstr "Thiết lập"
|
||||
|
||||
#: inc/class-casso-admin-page.php:182 inc/class-casso-admin-page.php:338
|
||||
msgid "Show details"
|
||||
msgstr "Hiển thị chi tiết"
|
||||
|
||||
#: inc/class-casso-admin-page.php:334
|
||||
msgid "Show less"
|
||||
msgstr "Thu gọn"
|
||||
|
||||
#: inc/class-casso-admin-page.php:274
|
||||
msgid "Status after full payment or balance:"
|
||||
msgstr "Trạng thái sau khi thanh toán đủ hoặc dư:"
|
||||
|
||||
#: inc/class-casso-admin-page.php:289
|
||||
msgid "Status if payment is missing:"
|
||||
msgstr "Trạng thái nếu thanh toán bị thiếu:"
|
||||
|
||||
#: wc-gateway-casso.php:443
|
||||
msgid "The order is underpaid so it is not completed"
|
||||
msgstr "Đơn hàng bị thanh toán thiếu nên chưa hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-base.php:368
|
||||
msgid "Then open the banking App and scan the transfer QR"
|
||||
msgstr " Sau đó mở App ngân hàng quét QR chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:433
|
||||
msgid "Transaction is too old, not processed"
|
||||
msgstr "Giao dịch quá cũ, không xử lý"
|
||||
|
||||
#: inc/class-casso-admin-page.php:251
|
||||
msgid "Transaction prefix"
|
||||
msgstr "Tiền tố giao dịch"
|
||||
|
||||
#: inc/banks/class-casso-base.php:90
|
||||
msgid "Transfer"
|
||||
msgstr "Chuyển khoản"
|
||||
|
||||
#: inc/banks/class-casso-base.php:97
|
||||
msgid ""
|
||||
"Transfer money to our account<b> %s</b>. The order will be confirmed "
|
||||
"immediately after the transfer"
|
||||
msgstr ""
|
||||
"Chuyển khoản vào tài khoản <b>%s</b> của chúng tôi. Đơn hàng sẽ được xác "
|
||||
"nhận ngay sau khi chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:323
|
||||
msgid "Trial"
|
||||
msgstr "Dùng thử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:137
|
||||
msgid "Turn on bank transfer"
|
||||
msgstr "Bật chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:258 inc/class-casso-admin-page.php:262
|
||||
msgid "Turn on Case Sensitivity"
|
||||
msgstr "Bật Phân biệt chữ hoa / chữ thường"
|
||||
|
||||
#: wc-gateway-casso.php:148 wc-gateway-casso.php:153 wc-gateway-casso.php:172
|
||||
msgid "Underpaid"
|
||||
msgstr "Thanh toán thiếu"
|
||||
|
||||
#: inc/class-casso-admin-page.php:229
|
||||
msgid "Updating account name"
|
||||
msgstr "Đang cập nhật tên tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:187
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:142
|
||||
msgid "VietQR"
|
||||
msgstr ""
|
||||
|
||||
#: inc/banks/class-casso-momo.php:107
|
||||
msgid "Wallet"
|
||||
msgstr "Ví điện tử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:204 inc/class-casso-admin-page.php:245
|
||||
msgid "Webhook URL"
|
||||
msgstr "Webhook URL"
|
||||
|
||||
#: inc/banks/class-casso-base.php:312 inc/banks/class-casso-base.php:615
|
||||
msgid "You paid"
|
||||
msgstr "Bạn đã thanh toán thành công"
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2021.10.15**/
|
||||
- Updated: Update support file
|
||||
|
||||
/**1.0.0 - 2021.10.14**/
|
||||
~ The first released
|
||||
33
spec/fixtures/dynamic_finders/plugin_version/centrobill-payment-gateway/change_log/changelog.txt
vendored
Normal file
33
spec/fixtures/dynamic_finders/plugin_version/centrobill-payment-gateway/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
*** 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
|
||||
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2022 Arshid
|
||||
# This file is distributed under the same license as the CF7 Signature plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CF7 Signature 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-signature\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: 2022-01-01T02:00:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cf7-signature\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "CF7 Signature"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://ciphercoin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Signature input field for contact form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Arshid"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:92
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:105
|
||||
msgid "sign"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:113
|
||||
msgid "Generate a form-tag for a date input field. For more details, see %s."
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:115
|
||||
msgid "https://contactform7.com/date-field/"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:115
|
||||
msgid "Date field"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:125
|
||||
#: cf7-signature.php:128
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:129
|
||||
msgid "Required field"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:135
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:141
|
||||
msgid "Id attribute"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:146
|
||||
msgid "Class attribute"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:158
|
||||
msgid "Insert Tag"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:163
|
||||
msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,28 @@
|
||||
# CF Online Test Pot
|
||||
# Copyright 2021 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CF Online Test v1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-10 17:09+0500\n"
|
||||
"PO-Revision-Date: 2021-04-10 17:36+0500\n"
|
||||
"Language-Team: CodeFootsteps <codefootsteps@gmail.com>\n"
|
||||
"Report-Msgid-Bugs-To: CodeFootsteps <codefootsteps@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: es\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: cfonlinetest.php:158
|
||||
#, php-format
|
||||
msgid "Online Tests"
|
||||
msgstr "Pruebas en línea"
|
||||
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2021 linqiuyu191
|
||||
# This file is distributed under the same license as the Change Payments Account plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Change Payments Account 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/change-payments-account\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-27T08:42:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: change-payments-account\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/Options/Options.php:15
|
||||
msgid "Change Payments Account"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Change woocommerce-payments account"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "linqiuyu191"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:16
|
||||
msgid "Change Account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:17
|
||||
msgid "Start the account loop (will automatically skip the wrong account)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:19
|
||||
msgid "Loop interval"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:21
|
||||
msgid "Hourly"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:22
|
||||
msgid "Twice daily"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:23
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:24
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:33
|
||||
msgid "Current account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:34
|
||||
msgid "unset"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:37
|
||||
msgid "Connect new account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:39
|
||||
msgid "Delete accounts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Options/Options.php:40
|
||||
msgid "Select the account that you want to delete (Orders receiving Payments with a selected account will not be refundable through Woocommerce Payments!)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Tokens/TokensManager.php:196
|
||||
msgid "Invalid account!"
|
||||
msgstr ""
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/charts-blocks/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/charts-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "charts-block",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"check-engines": "wp-scripts check-engines",
|
||||
"check-licenses": "wp-scripts check-licenses",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"lint:md:docs": "wp-scripts lint-md-docs",
|
||||
"lint:md:js": "wp-scripts lint-md-js",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start",
|
||||
"test:e2e": "wp-scripts test-e2e",
|
||||
"test:unit": "wp-scripts test-unit-js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.0",
|
||||
"uuid": "^8.3.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
/*1.0.0.0 - 2021.*/
|
||||
- Release version 1.0.0
|
||||
@@ -0,0 +1,740 @@
|
||||
# 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 "MS Pゴシック, ヒラギノ角ゴ"
|
||||
msgstr "MS P Gothic, Hiragino Kaku Gothic Pro"
|
||||
|
||||
msgid "Noto Sans JP(WEBフォント)"
|
||||
msgstr "Noto Sans JP (web font)"
|
||||
|
||||
msgid "Noto Serif JP(WEBフォント)"
|
||||
msgstr "Noto Serif JP (web font)"
|
||||
|
||||
msgid "Mplus 1p(WEBフォント)"
|
||||
msgstr "Mplus 1p (web font)"
|
||||
|
||||
msgid "Rounded Mplus 1c(WEBフォント)"
|
||||
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."
|
||||
|
||||
407
spec/fixtures/dynamic_finders/plugin_version/code-generator/translation_file/lang/generate-wp.pot
vendored
Normal file
407
spec/fixtures/dynamic_finders/plugin_version/code-generator/translation_file/lang/generate-wp.pot
vendored
Normal file
@@ -0,0 +1,407 @@
|
||||
# Copyright (C) 2014 Generate WP
|
||||
# This file is distributed under the same license as the Generate WP package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Generate WP 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/WordPress-Plugin-Template\n"
|
||||
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:52
|
||||
#: includes/post-types/class-generate-wp-post_type.php:42
|
||||
msgctxt "post type general name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:53
|
||||
#: includes/post-types/class-generate-wp-post_type.php:43
|
||||
msgctxt "post type singular name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:55
|
||||
#: includes/post-types/class-generate-wp-post_type.php:45
|
||||
msgid "Add New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:55
|
||||
#: classes/post-types/class-generate-wp-post_type.php:56
|
||||
#: classes/post-types/class-generate-wp-post_type.php:57
|
||||
#: classes/post-types/class-generate-wp-post_type.php:59
|
||||
#: includes/post-types/class-generate-wp-post_type.php:45
|
||||
#: includes/post-types/class-generate-wp-post_type.php:46
|
||||
#: includes/post-types/class-generate-wp-post_type.php:47
|
||||
#: includes/post-types/class-generate-wp-post_type.php:49
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:56
|
||||
#: includes/post-types/class-generate-wp-post_type.php:46
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:57
|
||||
#: includes/post-types/class-generate-wp-post_type.php:47
|
||||
msgid "New %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:58
|
||||
#: includes/post-types/class-generate-wp-post_type.php:48
|
||||
msgid "All %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:58
|
||||
#: classes/post-types/class-generate-wp-post_type.php:60
|
||||
#: classes/post-types/class-generate-wp-post_type.php:61
|
||||
#: classes/post-types/class-generate-wp-post_type.php:62
|
||||
#: includes/post-types/class-generate-wp-post_type.php:48
|
||||
#: includes/post-types/class-generate-wp-post_type.php:50
|
||||
#: includes/post-types/class-generate-wp-post_type.php:51
|
||||
#: includes/post-types/class-generate-wp-post_type.php:52
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:59
|
||||
#: includes/post-types/class-generate-wp-post_type.php:49
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:60
|
||||
#: includes/post-types/class-generate-wp-post_type.php:50
|
||||
msgid "Search %a"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:61
|
||||
#: includes/post-types/class-generate-wp-post_type.php:51
|
||||
msgid "No %s Found"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:62
|
||||
#: includes/post-types/class-generate-wp-post_type.php:52
|
||||
msgid "No %s Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:64
|
||||
#: includes/post-types/class-generate-wp-post_type.php:54
|
||||
msgid "*Posts"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:95
|
||||
#: classes/post-types/class-generate-wp-post_type.php:105
|
||||
#: includes/post-types/class-generate-wp-post_type.php:85
|
||||
#: includes/post-types/class-generate-wp-post_type.php:95
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:96
|
||||
#: includes/post-types/class-generate-wp-post_type.php:86
|
||||
msgid "Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:97
|
||||
#: includes/post-types/class-generate-wp-post_type.php:87
|
||||
msgid "Search Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:98
|
||||
#: includes/post-types/class-generate-wp-post_type.php:88
|
||||
msgid "All Terms"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:99
|
||||
#: includes/post-types/class-generate-wp-post_type.php:89
|
||||
msgid "Parent Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:100
|
||||
#: includes/post-types/class-generate-wp-post_type.php:90
|
||||
msgid "Parent Term:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:101
|
||||
#: includes/post-types/class-generate-wp-post_type.php:91
|
||||
msgid "Edit Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:102
|
||||
#: includes/post-types/class-generate-wp-post_type.php:92
|
||||
msgid "Update Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:103
|
||||
#: includes/post-types/class-generate-wp-post_type.php:93
|
||||
msgid "Add New Term"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:104
|
||||
#: includes/post-types/class-generate-wp-post_type.php:94
|
||||
msgid "New Term Name"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:125
|
||||
#: includes/post-types/class-generate-wp-post_type.php:115
|
||||
msgid "Custom Field"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:180
|
||||
#: includes/post-types/class-generate-wp-post_type.php:170
|
||||
msgid "Post updated. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:181
|
||||
#: includes/post-types/class-generate-wp-post_type.php:171
|
||||
msgid "Custom field updated."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:182
|
||||
#: includes/post-types/class-generate-wp-post_type.php:172
|
||||
msgid "Custom field deleted."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:183
|
||||
#: includes/post-types/class-generate-wp-post_type.php:173
|
||||
msgid "Post updated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: date and time of the revision
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:185
|
||||
#: includes/post-types/class-generate-wp-post_type.php:175
|
||||
msgid "Post restored to revision from %s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:186
|
||||
#: includes/post-types/class-generate-wp-post_type.php:176
|
||||
msgid "Post published. %sView post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:187
|
||||
#: includes/post-types/class-generate-wp-post_type.php:177
|
||||
msgid "Post saved."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:188
|
||||
#: includes/post-types/class-generate-wp-post_type.php:178
|
||||
msgid "Post submitted. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:189
|
||||
#: includes/post-types/class-generate-wp-post_type.php:179
|
||||
msgid "Post scheduled for: %1$s. %2$sPreview post%3$s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:189
|
||||
#: includes/post-types/class-generate-wp-post_type.php:179
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:190
|
||||
#: includes/post-types/class-generate-wp-post_type.php:180
|
||||
msgid "Post draft updated. %sPreview post%s."
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:201
|
||||
#: includes/post-types/class-generate-wp-post_type.php:191
|
||||
msgid "Post Details"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:295
|
||||
#: includes/post-types/class-generate-wp-post_type.php:285
|
||||
msgid "Enter the post title here"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:308
|
||||
#: includes/post-types/class-generate-wp-post_type.php:298
|
||||
msgid "Custom field:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/post-types/class-generate-wp-post_type.php:309
|
||||
#: includes/post-types/class-generate-wp-post_type.php:299
|
||||
msgid "Description of this custom field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:70
|
||||
#: includes/class-generate-wp-settings.php:405
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:99
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:111
|
||||
msgid "Standard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:112
|
||||
msgid "These are fairly standard form input fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:116
|
||||
msgid "Some Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:117
|
||||
msgid "This is a standard text field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:120
|
||||
#: includes/class-generate-wp-settings.php:128
|
||||
#: includes/class-generate-wp-settings.php:136
|
||||
msgid "Placeholder text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:124
|
||||
msgid "A Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:125
|
||||
msgid "This is a standard password field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:132
|
||||
msgid "Some Secret Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:133
|
||||
msgid "This is a secret text field - any data saved here will not be displayed after the page has reloaded, but it will be saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:140
|
||||
msgid "A Text Block"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:141
|
||||
msgid "This is a standard text area."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:144
|
||||
msgid "Placeholder text for this textarea"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:148
|
||||
msgid "An Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:149
|
||||
msgid "A standard checkbox - if you save this option as checked then it will store the option as 'on', otherwise it will be an empty string."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:155
|
||||
msgid "A Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:156
|
||||
msgid "A standard select box."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:163
|
||||
msgid "Some Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:164
|
||||
msgid "A standard set of radio buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:171
|
||||
msgid "Some Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:172
|
||||
msgid "You can select multiple items and they will be stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:181
|
||||
msgid "Extra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:182
|
||||
msgid "These are some extra input fields that maybe aren't as common as the others."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:186
|
||||
msgid "A Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:187
|
||||
msgid "This is a standard number field - if this field contains anything other than numbers then the form will not be submitted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:190
|
||||
msgid "42"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:194
|
||||
msgid "Pick a colour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:195
|
||||
msgid "This uses WordPress' built-in colour picker - the option is stored as the colour's hex code."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:201
|
||||
msgid "An Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:202
|
||||
msgid "This will upload an image to your media library and store the attachment ID in the option field. Once you have uploaded an imge the thumbnail will display above these buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:209
|
||||
msgid "A Multi-Select Box"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:210
|
||||
msgid "A standard multi-select box - the saved data is stored as an array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Upload an image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Use image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:354
|
||||
msgid "Upload new image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:355
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:410
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:427
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-generate-wp-settings.php:458
|
||||
#: includes/class-generate-wp-settings.php:467
|
||||
#: includes/class-generate-wp.php:207
|
||||
#: includes/class-generate-wp.php:216
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Generate WP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Hugh Lashbrooke"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.hughlashbrooke.com/"
|
||||
msgstr ""
|
||||
@@ -167,9 +167,6 @@ 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 -->
|
||||
|
||||
|
||||
@@ -1231,5 +1228,16 @@ 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 -->
|
||||
|
||||
|
||||
<!-- gofer-seo -->
|
||||
<!-- Gofer SEO - 1.0.1 -->
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2021.12.22 **/
|
||||
- Fixed: Attributes hide/show
|
||||
|
||||
/**1.0.0 - 2021.12 **/
|
||||
- The first released
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "copysmithai",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"publish": "webpack --env production",
|
||||
"staging": "webpack --env staging",
|
||||
"start": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.15.0",
|
||||
"@babel/preset-env": "^7.15.0",
|
||||
"acorn": "^8.4.1",
|
||||
"babel-loader": "^8.2.2",
|
||||
"webpack": "^5.50.0",
|
||||
"webpack-cli": "^4.8.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/preset-react": "^7.14.5",
|
||||
"@copysmith/api": "0.0.74-5",
|
||||
"@emotion/react": "^11.4.1",
|
||||
"@emotion/styled": "^11.3.0",
|
||||
"@material-ui/core": "^4.12.3",
|
||||
"@material-ui/icons": "^4.11.2",
|
||||
"@mui/material": "^5.0.0",
|
||||
"axios": "^0.21.1",
|
||||
"dotenv": "^10.0.0",
|
||||
"formik": "^2.2.9",
|
||||
"luxon": "^2.0.2",
|
||||
"prop-types": "^15.7.2",
|
||||
"react": "^17.0.2",
|
||||
"react-dnd": "^14.0.3",
|
||||
"react-dnd-html5-backend": "^14.0.1",
|
||||
"react-dom": "^17.0.2",
|
||||
"react-query": "^3.19.6",
|
||||
"react-tag-input": "^6.7.3",
|
||||
"yup": "^0.32.11"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/crucial-real-estate/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/crucial-real-estate/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - September 22 2021 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,217 @@
|
||||
# Copyright (C) 2021 Cultivate
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cultivate for WooCommerce 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cultivate-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-09-29T14:45:59+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: cultivate-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:62
|
||||
msgid "Cultivate for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.wecultivate.us/install/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Cultivate integration for WooCommerce stores."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:45
|
||||
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:49
|
||||
#: includes/admin/views/html-admin-authorize-complete-page.php:6
|
||||
#: includes/admin/views/html-admin-options-page.php:88
|
||||
msgid "Cultivate"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.wecultivate.us/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:25
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:36
|
||||
msgid "Authorize Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:30
|
||||
msgid "Made in USA"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:31
|
||||
msgid "Made in USA products are listed on Cultivate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:12
|
||||
msgid "Origin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:14
|
||||
msgid "By default, products you add to Cultivate are assumed to be Made in USA with imported materials - change here if this product is Fully Made in USA"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:19
|
||||
msgid "Made in USA with imported materials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:20
|
||||
msgid "Fully made in USA"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-authorize-complete-page.php:8
|
||||
#: includes/admin/views/html-admin-options-page.php:122
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s replaced with link start, %2$s replaced with link end HTML tags
|
||||
#: includes/admin/views/html-admin-options-page.php:100
|
||||
msgid "%1$s Sign In to Cultivate %2$s to connect your WooCommerce store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:107
|
||||
#: includes/class-wc-cultivate.php:106
|
||||
msgid "WooCommerce for Cultivate requires that you set up pretty permalinks. Default permalinks will not work, because they are not supported by the WooCommerce REST API."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:132
|
||||
msgid "Accept Terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:140
|
||||
msgid "Pay It Forward"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:143
|
||||
msgid "Pay It Forward is enabled for your store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:147
|
||||
msgid "Pay It Forward for your store is awaiting approval by Cultivate."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s replaced with link start, %2$s replaced with link end HTML tags
|
||||
#: includes/admin/views/html-admin-options-page.php:154
|
||||
msgid "You can enable %1$s Pay It Forward %2$s for your store to promote your store in Google search results for our extension users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:163
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:166
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:177
|
||||
msgid "Site Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:183
|
||||
msgid "Contact Details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:186
|
||||
msgid "Please enter the details of someone Cultivate can contact about your shop."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:195
|
||||
msgid "Contact Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:209
|
||||
msgid "Organization Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:222
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:234
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:248
|
||||
msgid "Site Details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:251
|
||||
msgid "Customize your site listing in Cultivate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:257
|
||||
msgid "Is your business:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:264
|
||||
msgid "Woman-owned or operated?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:271
|
||||
msgid "We use this to highlight your products in our results as being from a business wholly woman-owned or operated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:279
|
||||
msgid "BIPOC-owned or operated?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:286
|
||||
msgid "We use this to highlight your products in our results as being from a business wholly BIPOC-owned or operated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:301
|
||||
msgid "Headquarters Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:307
|
||||
msgid "-- Please select --"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:315
|
||||
msgid "We use this to filter our results when people search within a specific state"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:323
|
||||
msgid "Shop Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:330
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:351
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:89
|
||||
#: includes/class-wc-cultivate.php:103
|
||||
msgid "Cultivate for WooCommerce is installed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:91
|
||||
msgid "Please sign in to Cultivate to connect your store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:92
|
||||
msgid "Your store name, URL and timezone will be sent to our servers."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:95
|
||||
msgid "Sign In to Cultivate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:109
|
||||
msgid "Open permalinks settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,805 @@
|
||||
# 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 ""
|
||||
@@ -0,0 +1,231 @@
|
||||
# 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 ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/dev-studio/change_log/changelog.txt
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/dev-studio/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
= 2.0.0 =
|
||||
* Update - New UI
|
||||
* Update - Plugin built on vanilla JS instead of using jQuery
|
||||
* Update - Data collection time improvement
|
||||
* Update - Optimized scripts and styles
|
||||
* Update - Wordpress support up to latest version
|
||||
* Update - WooCommerce support up to latest version
|
||||
* Add - Storage instance options (uploads directory or custom directory or Redis)
|
||||
* Add - Storage statistics
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user