Compare commits
88 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4379313f12 | ||
|
|
3901949f36 | ||
|
|
a3d8593fed | ||
|
|
7c5baeb9c7 | ||
|
|
c692db5f85 | ||
|
|
9130196ffc | ||
|
|
dad4a65118 | ||
|
|
4c34c2feb7 | ||
|
|
23522f7775 | ||
|
|
82c61398ba | ||
|
|
02871050a6 | ||
|
|
7d3b1fea6b | ||
|
|
24917fa2a6 | ||
|
|
de3d8e4a23 | ||
|
|
1502845d65 | ||
|
|
af3f10f74e | ||
|
|
c100372b31 | ||
|
|
72d699b39a | ||
|
|
7d2b8a2a8b | ||
|
|
8729c68e22 | ||
|
|
e2d48bedd9 | ||
|
|
6b241ce9b3 | ||
|
|
1b68bdb36c | ||
|
|
fb82538441 | ||
|
|
2709d0869a | ||
|
|
343f87bbe7 | ||
|
|
ecbfc6004c | ||
|
|
c57eecc81b | ||
|
|
7ea14dc03f | ||
|
|
4340d27258 | ||
|
|
e911be8f14 | ||
|
|
a4c650cdff | ||
|
|
31a58f8a8f | ||
|
|
ba4f15f111 | ||
|
|
206a913eb9 | ||
|
|
21ba490073 | ||
|
|
2a29e2ed95 | ||
|
|
9517d14fd3 | ||
|
|
3deaa896df | ||
|
|
c117007dc0 | ||
|
|
50baa238b9 | ||
|
|
0e2d771660 | ||
|
|
32b4670755 | ||
|
|
4a032d5e12 | ||
|
|
5887fede15 | ||
|
|
ad4eeb9f81 | ||
|
|
a62c16d7cc | ||
|
|
e766e7392a | ||
|
|
025c9c24ca | ||
|
|
ab052add27 | ||
|
|
15cb99977b | ||
|
|
82d5af926f | ||
|
|
76f73f3dc8 | ||
|
|
575b22320e | ||
|
|
d20c07dc85 | ||
|
|
f89071b87a | ||
|
|
8b4e90f285 | ||
|
|
9c4f57c786 | ||
|
|
902ec24b77 | ||
|
|
7eba77fa63 | ||
|
|
0753bbf7b3 | ||
|
|
6b2333614a | ||
|
|
80b7f458f5 | ||
|
|
dbd8e59cf4 | ||
|
|
9948230ea0 | ||
|
|
e2c858ac69 | ||
|
|
bac8b613e6 | ||
|
|
abbae15c6f | ||
|
|
1548e8bfc1 | ||
|
|
dc8cf3fc34 | ||
|
|
c3cd815567 | ||
|
|
ce543b9384 | ||
|
|
9755c8cf42 | ||
|
|
434a210fb5 | ||
|
|
587602665a | ||
|
|
bfec63df41 | ||
|
|
3b150df1af | ||
|
|
f24ecf0537 | ||
|
|
9ddecbcc0a | ||
|
|
947bb8d3d5 | ||
|
|
30cbf87b35 | ||
|
|
69c3aab35a | ||
|
|
bdeb3547f1 | ||
|
|
99e04b9669 | ||
|
|
680d2fb7eb | ||
|
|
8814eda018 | ||
|
|
7e72ba2885 | ||
|
|
b4d7a8490b |
@@ -14,3 +14,4 @@ Dockerfile
|
||||
*.orig
|
||||
bin/wpscan-*
|
||||
.wpscan/
|
||||
.github/
|
||||
|
||||
49
.github/workflows/build.yml
vendored
Normal file
49
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
name: Build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.4, 2.5, 2.6, 2.7]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
- name: Restore GEM cache
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-${{ matrix.ruby }}-gem-${{ hashFiles('**/wpscan.gemspec') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-${{ matrix.ruby }}-gem-
|
||||
|
||||
- name: Install GEMs
|
||||
run: |
|
||||
gem install bundler
|
||||
bundle config force_ruby_platform true
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
|
||||
- name: rubocop
|
||||
run: |
|
||||
bundle exec rubocop
|
||||
|
||||
- name: rspec
|
||||
run: |
|
||||
bundle exec rspec
|
||||
|
||||
- name: Coveralls
|
||||
uses: coverallsapp/github-action@master
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
40
.github/workflows/gempush.yml
vendored
Normal file
40
.github/workflows/gempush.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
name: Ruby Gem
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build + Publish
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
|
||||
#- name: Publish to GPR
|
||||
# run: |
|
||||
# mkdir -p $HOME/.gem
|
||||
# touch $HOME/.gem/credentials
|
||||
# chmod 0600 $HOME/.gem/credentials
|
||||
# printf -- "---\n:github: Bearer ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
||||
# gem build *.gemspec
|
||||
# gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
|
||||
# env:
|
||||
# GEM_HOST_API_KEY: ${{secrets.GITHUB_TOKEN}}
|
||||
# OWNER: wpscanteam
|
||||
|
||||
- name: Publish to RubyGems
|
||||
run: |
|
||||
mkdir -p $HOME/.gem
|
||||
touch $HOME/.gem/credentials
|
||||
chmod 0600 $HOME/.gem/credentials
|
||||
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
||||
gem build *.gemspec
|
||||
gem push *.gem
|
||||
env:
|
||||
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
||||
@@ -4,6 +4,8 @@ AllCops:
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
Layout/LineLength:
|
||||
Max: 120
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Metrics/AbcSize:
|
||||
@@ -17,8 +19,6 @@ Metrics/ClassLength:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 8
|
||||
Metrics/LineLength:
|
||||
Max: 120
|
||||
Metrics/MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
|
||||
14
.simplecov
14
.simplecov
@@ -1,4 +1,18 @@
|
||||
|
||||
if ENV['GITHUB_ACTION']
|
||||
require 'simplecov-lcov'
|
||||
|
||||
SimpleCov::Formatter::LcovFormatter.config do |c|
|
||||
c.single_report_path = 'coverage/lcov.info'
|
||||
c.report_with_single_file = true
|
||||
end
|
||||
|
||||
SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter
|
||||
end
|
||||
|
||||
SimpleCov.start do
|
||||
enable_coverage :branch # Only supported for Ruby >= 2.5
|
||||
|
||||
add_filter '/spec/'
|
||||
add_filter 'helper'
|
||||
end
|
||||
16
.travis.yml
16
.travis.yml
@@ -1,16 +0,0 @@
|
||||
language: ruby
|
||||
sudo: false
|
||||
cache: bundler
|
||||
rvm:
|
||||
- 2.4.9
|
||||
- 2.5.7
|
||||
- 2.6.5
|
||||
before_install:
|
||||
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
||||
- gem update --system
|
||||
script:
|
||||
- bundle exec rubocop
|
||||
- bundle exec rspec
|
||||
notifications:
|
||||
email:
|
||||
- team@wpscan.org
|
||||
@@ -15,7 +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://travis-ci.org/wpscanteam/wpscan" target="_blank"><img src="https://travis-ci.org/wpscanteam/wpscan.svg?branch=master"></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>
|
||||
|
||||
|
||||
@@ -18,9 +18,7 @@ module WPScan
|
||||
target.content_dir = ParsedCli.wp_content_dir if ParsedCli.wp_content_dir
|
||||
target.plugins_dir = ParsedCli.wp_plugins_dir if ParsedCli.wp_plugins_dir
|
||||
|
||||
return if target.content_dir
|
||||
|
||||
raise Error::WpContentDirNotDetected
|
||||
raise Error::WpContentDirNotDetected unless target.content_dir
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
def passive(_opts = {})
|
||||
pattern = %r{#{target.content_dir}/mu\-plugins/}i
|
||||
|
||||
target.in_scope_uris(target.homepage_res) do |uri|
|
||||
target.in_scope_uris(target.homepage_res, '(//@href|//@src)[contains(., "mu-plugins")]') do |uri|
|
||||
next unless uri.path&.match?(pattern)
|
||||
|
||||
url = target.url('wp-content/mu-plugins/')
|
||||
|
||||
@@ -20,7 +20,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def passive_from_css_href(res, opts)
|
||||
target.in_scope_uris(res, '//style/@src|//link/@href') do |uri|
|
||||
target.in_scope_uris(res, '//link/@href[contains(., "style.css")]') do |uri|
|
||||
next unless uri.path =~ %r{/themes/([^\/]+)/style.css\z}i
|
||||
|
||||
return create_theme(Regexp.last_match[1], uri.to_s, opts)
|
||||
|
||||
@@ -19,8 +19,12 @@ module WPScan
|
||||
def aggressive(opts = {})
|
||||
found = []
|
||||
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: true)) do |_res, slug|
|
||||
found << Model::Plugin.new(slug, target, opts.merge(found_by: found_by, confidence: 80))
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: true)) do |res, slug|
|
||||
finding_opts = opts.merge(found_by: found_by,
|
||||
confidence: 80,
|
||||
interesting_entries: ["#{res.effective_url}, status: #{res.code}"])
|
||||
|
||||
found << Model::Plugin.new(slug, target, finding_opts)
|
||||
|
||||
raise Error::PluginsThresholdReached if opts[:threshold].positive? && found.size >= opts[:threshold]
|
||||
end
|
||||
|
||||
@@ -19,8 +19,12 @@ module WPScan
|
||||
def aggressive(opts = {})
|
||||
found = []
|
||||
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: true)) do |_res, slug|
|
||||
found << Model::Theme.new(slug, target, opts.merge(found_by: found_by, confidence: 80))
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: true)) do |res, slug|
|
||||
finding_opts = opts.merge(found_by: found_by,
|
||||
confidence: 80,
|
||||
interesting_entries: ["#{res.effective_url}, status: #{res.code}"])
|
||||
|
||||
found << Model::Theme.new(slug, target, finding_opts)
|
||||
|
||||
raise Error::ThemesThresholdReached if opts[:threshold].positive? && found.size >= opts[:threshold]
|
||||
end
|
||||
|
||||
@@ -71,11 +71,13 @@ module WPScan
|
||||
return username, 'Display Name', 50 if username
|
||||
end
|
||||
|
||||
# @param [ String ] url
|
||||
# @param [ String, Addressable::URI ] uri
|
||||
#
|
||||
# @return [ String, nil ]
|
||||
def username_from_author_url(url)
|
||||
url[%r{/author/([^/\b]+)/?}i, 1]
|
||||
def username_from_author_url(uri)
|
||||
uri = Addressable::URI.parse(uri) unless uri.is_a?(Addressable::URI)
|
||||
|
||||
uri.path[%r{/author/([^/\b]+)/?}i, 1]
|
||||
end
|
||||
|
||||
# @param [ Typhoeus::Response ] res
|
||||
@@ -83,12 +85,12 @@ module WPScan
|
||||
# @return [ String, nil ] The username found
|
||||
def username_from_response(res)
|
||||
# Permalink enabled
|
||||
target.in_scope_uris(res, '//link/@href|//a/@href') do |uri|
|
||||
username = username_from_author_url(uri.to_s)
|
||||
target.in_scope_uris(res, '//@href[contains(., "author/")]') do |uri|
|
||||
username = username_from_author_url(uri)
|
||||
return username if username
|
||||
end
|
||||
|
||||
# No permalink
|
||||
# No permalink, TODO Maybe use xpath to extract the classes ?
|
||||
res.body[/<body class="archive author author-([^\s]+)[ "]/i, 1]
|
||||
end
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ module WPScan
|
||||
def potential_usernames(res)
|
||||
usernames = []
|
||||
|
||||
target.in_scope_uris(res, '//a/@href') do |uri, node|
|
||||
target.in_scope_uris(res, '//a/@href[contains(., "author")]') do |uri, node|
|
||||
if uri.path =~ %r{/author/([^/\b]+)/?\z}i
|
||||
usernames << [Regexp.last_match[1], 'Author Pattern', 100]
|
||||
elsif /author=[0-9]+/.match?(uri.query)
|
||||
|
||||
@@ -8,11 +8,15 @@ module WPScan
|
||||
# @param [ String ] type plugins / themes
|
||||
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
|
||||
#
|
||||
# @return [Array<String> ] The plugins/themes detected in the href, src attributes of the homepage
|
||||
# @return [ Array<String> ] The plugins/themes detected in the href, src attributes of the page
|
||||
def items_from_links(type, uniq = true)
|
||||
found = []
|
||||
xpath = format(
|
||||
'(//@href|//@src|//@data-src)[contains(., "%s")]',
|
||||
type == 'plugins' ? target.plugins_dir : target.content_dir
|
||||
)
|
||||
|
||||
target.in_scope_uris(page_res) do |uri|
|
||||
target.in_scope_uris(page_res, xpath) do |uri|
|
||||
next unless uri.to_s =~ item_attribute_pattern(type)
|
||||
|
||||
slug = Regexp.last_match[1]&.strip
|
||||
|
||||
@@ -28,7 +28,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def passive_urls_xpath
|
||||
'//a[contains(@href, "rdf")]/@href'
|
||||
'//a[contains(@href, "/rdf")]/@href'
|
||||
end
|
||||
|
||||
def aggressive_urls(_opts = {})
|
||||
|
||||
@@ -23,7 +23,7 @@ module WPScan
|
||||
# @option opts [ Hash ] :version_detection The options to use when looking for the version
|
||||
# @option opts [ String ] :url The URL of the item
|
||||
def initialize(slug, blog, opts = {})
|
||||
@slug = URI.decode(slug)
|
||||
@slug = Addressable::URI.unencode(slug)
|
||||
@blog = blog
|
||||
@uri = Addressable::URI.parse(opts[:url]) if opts[:url]
|
||||
|
||||
@@ -83,11 +83,6 @@ module WPScan
|
||||
end
|
||||
end
|
||||
|
||||
# URI.encode is preferered over Addressable::URI.encode as it will encode
|
||||
# leading # character:
|
||||
# URI.encode('#t#') => %23t%23
|
||||
# Addressable::URI.encode('#t#') => #t%23
|
||||
#
|
||||
# @param [ String ] path Optional path to merge with the uri
|
||||
#
|
||||
# @return [ String ]
|
||||
@@ -95,7 +90,7 @@ module WPScan
|
||||
return unless @uri
|
||||
return @uri.to_s unless path
|
||||
|
||||
@uri.join(URI.encode(path)).to_s
|
||||
@uri.join(Addressable::URI.encode(path)).to_s
|
||||
end
|
||||
|
||||
# @return [ Boolean ]
|
||||
@@ -166,7 +161,7 @@ module WPScan
|
||||
# @return [ Typhoeus::Response ]
|
||||
def head_and_get(path, codes = [200], params = {})
|
||||
final_path = +@path_from_blog
|
||||
final_path << URI.encode(path) unless path.nil?
|
||||
final_path << path unless path.nil?
|
||||
|
||||
blog.head_and_get(final_path, codes, params)
|
||||
end
|
||||
|
||||
@@ -9,6 +9,6 @@ _______________________________________________________________
|
||||
WordPress Security Scanner by the WPScan Team
|
||||
Version <%= WPScan::VERSION %>
|
||||
<%= ' ' * ((63 - WPScan::DB::Sponsor.text.length)/2) + WPScan::DB::Sponsor.text %>
|
||||
@_WPScan_, @ethicalhack3r, @erwan_lr, @_FireFart_
|
||||
@_WPScan_, @ethicalhack3r, @erwan_lr, @firefart
|
||||
_______________________________________________________________
|
||||
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up
|
||||
<% end -%>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"@_WPScan_",
|
||||
"@ethicalhack3r",
|
||||
"@erwan_lr",
|
||||
"@_FireFart_"
|
||||
"@firefart"
|
||||
],
|
||||
"sponsor": <%= WPScan::DB::Sponsor.text.to_json %>
|
||||
},
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up."
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -67,13 +67,13 @@ module WPScan
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
@request_params ||= {
|
||||
@request_params ||= Browser.instance.default_connect_request_params.merge(
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
cache_ttl: 0,
|
||||
headers: { 'User-Agent' => Browser.instance.default_user_agent, 'Referer' => nil }
|
||||
}
|
||||
headers: { 'User-Agent' => Browser.instance.default_user_agent }
|
||||
)
|
||||
end
|
||||
|
||||
# @return [ String ] The raw file URL associated with the given filename
|
||||
@@ -85,7 +85,7 @@ module WPScan
|
||||
def remote_file_checksum(filename)
|
||||
url = "#{remote_file_url(filename)}.sha512"
|
||||
|
||||
res = Browser.get(url, request_params)
|
||||
res = Typhoeus.get(url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
res.body.chomp
|
||||
@@ -126,7 +126,7 @@ module WPScan
|
||||
file_path = local_file_path(filename)
|
||||
file_url = remote_file_url(filename)
|
||||
|
||||
res = Browser.get(file_url, request_params)
|
||||
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) }
|
||||
|
||||
@@ -21,8 +21,10 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def self.get(path, params = {})
|
||||
return {} unless token
|
||||
return {} if path.end_with?('/latest') # Remove this when api/v4 is up
|
||||
|
||||
res = Browser.get(uri.join(path), params.merge(request_params))
|
||||
# Typhoeus.get is used rather than Browser.get to avoid merging irrelevant params from the CLI
|
||||
res = Typhoeus.get(uri.join(path), default_request_params.merge(params))
|
||||
|
||||
return {} if res.code == 404 # This is for API inconsistencies when dots in path
|
||||
return JSON.parse(res.body) if NON_ERROR_CODES.include?(res.code)
|
||||
@@ -64,15 +66,14 @@ module WPScan
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.request_params
|
||||
{
|
||||
# @note Those params can not be overriden by CLI options
|
||||
def self.default_request_params
|
||||
Browser.instance.default_connect_request_params.merge(
|
||||
headers: {
|
||||
'Host' => uri.host, # Reset in case user provided a --vhost for the target
|
||||
'Referer' => nil, # Removes referer set by the cmsscanner to the target url
|
||||
'User-Agent' => Browser.instance.default_user_agent,
|
||||
'Authorization' => "Token token=#{token}"
|
||||
}
|
||||
}
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -37,6 +37,8 @@ module WPScan
|
||||
end
|
||||
end
|
||||
|
||||
# This one has been disabled from the DF.yml as it was causing FPs when a plugin had numerous
|
||||
# files matching a known WP version.
|
||||
class WpItemQueryParameter < QueryParameter
|
||||
def xpath
|
||||
@xpath ||=
|
||||
|
||||
@@ -32,8 +32,12 @@ module WPScan
|
||||
|
||||
if %i[mixed aggressive].include?(detection_mode)
|
||||
%w[wp-admin/install.php wp-login.php].each do |path|
|
||||
return true if in_scope_uris(Browser.get_and_follow_location(url(path))).any? do |uri|
|
||||
WORDPRESS_PATTERN.match?(uri.path)
|
||||
res = Browser.get_and_follow_location(url(path))
|
||||
|
||||
next unless res.code == 200
|
||||
|
||||
in_scope_uris(res, '//link/@href|//script/@src') do |uri|
|
||||
return true if WORDPRESS_PATTERN.match?(uri.path)
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -44,7 +48,7 @@ module WPScan
|
||||
# @param [ Typhoeus::Response ] response
|
||||
# @return [ Boolean ]
|
||||
def wordpress_from_meta_comments_or_scripts?(response)
|
||||
in_scope_uris(response) do |uri|
|
||||
in_scope_uris(response, '//link/@href|//script/@src|//img/@src') do |uri|
|
||||
return true if WORDPRESS_PATTERN.match?(uri.path) || WP_JSON_OEMBED_PATTERN.match?(uri.path)
|
||||
end
|
||||
|
||||
@@ -100,8 +104,9 @@ module WPScan
|
||||
|
||||
unless content_dir
|
||||
pattern = %r{https?://s\d\.wp\.com#{WORDPRESS_PATTERN}}i.freeze
|
||||
xpath = '(//@href|//@src)[contains(., "wp.com")]'
|
||||
|
||||
uris_from_page(homepage_res) do |uri|
|
||||
uris_from_page(homepage_res, xpath) do |uri|
|
||||
return true if uri.to_s.match?(pattern)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -71,7 +71,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String ]
|
||||
def plugin_url(slug)
|
||||
plugins_uri.join("#{URI.encode(slug)}/").to_s
|
||||
plugins_uri.join("#{Addressable::URI.encode(slug)}/").to_s
|
||||
end
|
||||
|
||||
# @return [ String ]
|
||||
@@ -93,7 +93,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String ]
|
||||
def theme_url(slug)
|
||||
themes_uri.join("#{URI.encode(slug)}/").to_s
|
||||
themes_uri.join("#{Addressable::URI.encode(slug)}/").to_s
|
||||
end
|
||||
|
||||
# @return [ String, False ] String of the sub_dir found, false otherwise
|
||||
@@ -105,9 +105,10 @@ module WPScan
|
||||
|
||||
# url_pattern is from CMSScanner::Target
|
||||
pattern = %r{#{url_pattern}(.+?)/(?:xmlrpc\.php|wp\-includes/)}i
|
||||
xpath = '(//@src|//@href|//@data-src)[contains(., "xmlrpc.php") or contains(., "wp-includes/")]'
|
||||
|
||||
[homepage_res, error_404_res].each do |page_res|
|
||||
in_scope_uris(page_res) do |uri|
|
||||
in_scope_uris(page_res, xpath) do |uri|
|
||||
return @sub_dir = Regexp.last_match[1] if uri.to_s.match(pattern)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.7.5'
|
||||
VERSION = '3.7.9'
|
||||
end
|
||||
|
||||
@@ -6,8 +6,55 @@ describe WPScan::Finders::InterestingFindings::MuPlugins do
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'mu_plugins') }
|
||||
|
||||
before do
|
||||
expect(target).to receive(:content_dir).at_least(1).and_return('wp-content')
|
||||
end
|
||||
|
||||
describe '#passive' do
|
||||
xit
|
||||
before { stub_request(:get, url).to_return(body: body) }
|
||||
|
||||
context 'when no uris' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:passive) { should be nil }
|
||||
end
|
||||
|
||||
context 'when a large amount of unrelated uris' do
|
||||
let(:body) do
|
||||
Array.new(250) { |i| "<a href='#{url}#{i}.html'>Some Link</a><img src='#{url}img-#{i}.png'/>" }.join("\n")
|
||||
end
|
||||
|
||||
it 'should not take a while to process the page' do
|
||||
time_start = Time.now
|
||||
result = finder.passive
|
||||
time_end = Time.now
|
||||
|
||||
expect(result).to be nil
|
||||
expect(time_end - time_start).to be < 1
|
||||
end
|
||||
end
|
||||
|
||||
context 'when uris' do
|
||||
let(:body) { File.read(fixtures.join(fixture)) }
|
||||
|
||||
context 'when none matching' do
|
||||
let(:fixture) { 'no_match.html' }
|
||||
|
||||
its(:passive) { should be nil }
|
||||
end
|
||||
|
||||
context 'when matching via href' do
|
||||
let(:fixture) { 'match_href.html' }
|
||||
|
||||
its(:passive) { should be_a WPScan::Model::MuPlugins }
|
||||
end
|
||||
|
||||
context 'when matching from src' do
|
||||
let(:fixture) { 'match_src.html' }
|
||||
|
||||
its(:passive) { should be_a WPScan::Model::MuPlugins }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
|
||||
@@ -19,7 +19,7 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#potential_username' do
|
||||
describe '#username_from_response' do
|
||||
[
|
||||
'4.1.1', '4.1.1-permalink',
|
||||
'3.0', '3.0-permalink',
|
||||
@@ -32,6 +32,19 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
expect(finder.username_from_response(res)).to eql 'admin'
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a lot of unrelated links' do
|
||||
it 'should not take a while to process the page' do
|
||||
body = Array.new(300) { |i| "<a href='#{url}#{i}.html'>Some Link</a>" }.join("\n")
|
||||
body << '<a href="https://wp.lab/author/test/">Link</a>'
|
||||
|
||||
time_start = Time.now
|
||||
expect(finder.username_from_response(Typhoeus::Response.new(body: body))).to eql 'test'
|
||||
time_end = Time.now
|
||||
|
||||
expect(time_end - time_start).to be < 1
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#display_name_from_body' do
|
||||
|
||||
@@ -16,12 +16,31 @@ describe WPScan::Finders::Users::AuthorPosts do
|
||||
|
||||
results = finder.potential_usernames(res)
|
||||
|
||||
expect(results).to eql([
|
||||
['admin', 'Author Pattern', 100],
|
||||
['admin display_name', 'Display Name', 30],
|
||||
['editor', 'Author Pattern', 100],
|
||||
['editor', 'Display Name', 30]
|
||||
])
|
||||
expect(results).to eql [
|
||||
['admin', 'Author Pattern', 100],
|
||||
['admin display_name', 'Display Name', 30],
|
||||
['editor', 'Author Pattern', 100],
|
||||
['editor', 'Display Name', 30]
|
||||
]
|
||||
end
|
||||
|
||||
context 'when a lot of unrelated uris' do
|
||||
it 'should not take a while to process the page' do
|
||||
body = Array.new(300) { |i| "<a href='#{url}#{i}.html'>Some Link</a>" }.join("\n")
|
||||
body << "<a href='#{url}author/admin/'>Other Link</a>"
|
||||
body << "<a href='#{url}?author=2'>user display name</a>"
|
||||
|
||||
time_start = Time.now
|
||||
results = finder.potential_usernames(Typhoeus::Response.new(body: body))
|
||||
time_end = Time.now
|
||||
|
||||
expect(results).to eql [
|
||||
['admin', 'Author Pattern', 100],
|
||||
['user display name', 'Display Name', 30]
|
||||
]
|
||||
|
||||
expect(time_end - time_start).to be < 1
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -46,7 +46,7 @@ describe WPScan::Model::WpItem do
|
||||
end
|
||||
|
||||
it 'encodes the path' do
|
||||
expect(wp_item.url('#t#')).to eql "#{item_url}%23t%23"
|
||||
expect(wp_item.url('#t#')).to eql "#{item_url}#t%23"
|
||||
expect(wp_item.url('t .txt')).to eql "#{item_url}t%20.txt"
|
||||
end
|
||||
end
|
||||
|
||||
30259
spec/fixtures/db/dynamic_finders.yml
vendored
30259
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
3492
spec/fixtures/dynamic_finders/expected.yml
vendored
3492
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,94 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Woo Pelecard v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2014-07-07 07:09+0200\n"
|
||||
"PO-Revision-Date: 2014-07-07 07:09+0200\n"
|
||||
"Last-Translator: Tzvi Rabinovitch <tzvi.ra@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: he_IL\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-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:18
|
||||
msgid "Settings saved."
|
||||
msgstr "שמרתי את ההגדרות."
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:23
|
||||
msgid "10Bit EasyCard PayButtons Settings"
|
||||
msgstr "כפתורי תשלום איזיקארד"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:37
|
||||
msgid "Client ID"
|
||||
msgstr "מזהה לקוח"
|
||||
|
||||
# @ TenBit_woo_pelecard
|
||||
#: ../10bit-easycard-paybuttons-options.php:45
|
||||
msgid "Password"
|
||||
msgstr "סיסמה"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:53
|
||||
msgid "Maximum Payments"
|
||||
msgstr "מספר תשלמים מקסימלי"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:64
|
||||
msgid "Save Changes"
|
||||
msgstr "שמור שינויים"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:70
|
||||
msgid "Usage :"
|
||||
msgstr "שימוש"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:72
|
||||
msgid "Add the folloing short code inside a post or a page :"
|
||||
msgstr "הוסיפו את השורטקוד הבא לדף או לעמוד באתר"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:76
|
||||
msgid "value : The amount to pay"
|
||||
msgstr "value : הסכום לתשלום"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:78
|
||||
msgid "item_name : the name of the sold item"
|
||||
msgstr "item_name : שם המוצר למכירה"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:80
|
||||
msgid "button_class : CSS class for styling"
|
||||
msgstr "button_class : קלאס CSS לעיצוב"
|
||||
|
||||
#: ../10bit-easycard-paybuttons-options.php:82
|
||||
msgid "button_text : Text to show on the button"
|
||||
msgstr "button_text : הטקסט שיופיע על הכפתור"
|
||||
|
||||
#: ../10bit-paybuttons-easycard.php:29
|
||||
msgid "EasyCard Pay Buttons"
|
||||
msgstr "כפתורי תשלום איזיקארד"
|
||||
|
||||
# @ TenBit_woo_pelecard
|
||||
#~ msgid "License Key"
|
||||
#~ msgstr "מפתח"
|
||||
|
||||
#~ msgid "Valid"
|
||||
#~ msgstr "תקין"
|
||||
|
||||
#~ msgid "Invalid"
|
||||
#~ msgstr "לא תקין"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Leave blank for not sending a copy"
|
||||
#~ msgstr "השאר ריק במידה ואינך מעוניים בהעתק"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "10Bit iCount Settings"
|
||||
#~ msgstr "הגדרות icount"
|
||||
|
||||
#~ msgid "Easycard"
|
||||
#~ msgstr "איזיקארד"
|
||||
@@ -0,0 +1,132 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Woo Pelecard v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2014-07-09 01:31+0200\n"
|
||||
"PO-Revision-Date: 2014-07-09 01:32+0200\n"
|
||||
"Last-Translator: Tzvi Rabinovitch <tzvi.ra@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: he_IL\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-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
# @ TenBit_woo_pelecard
|
||||
#: ../10bit-paybuttons-pelecard.php:28
|
||||
msgid "pelecard Pay Buttons"
|
||||
msgstr "כפתורי תשלום פלאכארד"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:68
|
||||
msgid "Settings saved."
|
||||
msgstr "שמרתי את ההגדרות."
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:73
|
||||
msgid "10Bit pelecard PayButtons Settings"
|
||||
msgstr "כפתורי תשלום פלאכארד"
|
||||
|
||||
# @ TenBit_woo_pelecard
|
||||
#: ../10bit-pelecard-paybuttons-options.php:87
|
||||
msgid "Terminal Number"
|
||||
msgstr "מספר מסוף סליקה"
|
||||
|
||||
# @ TenBit_woo_pelecard
|
||||
#: ../10bit-pelecard-paybuttons-options.php:95
|
||||
msgid "Username"
|
||||
msgstr "שם משתמש"
|
||||
|
||||
# @ TenBit_woo_pelecard
|
||||
#: ../10bit-pelecard-paybuttons-options.php:103
|
||||
msgid "Password"
|
||||
msgstr "סיסמה"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:111
|
||||
msgid "Maximum Payments"
|
||||
msgstr "מספר תשלמים מקסימלי"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:119
|
||||
msgid "Currency"
|
||||
msgstr "מטבע"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:123
|
||||
msgid "ILS"
|
||||
msgstr "ש\"ח"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:124
|
||||
msgid "USD"
|
||||
msgstr "דולר"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:130
|
||||
msgid "Success ( thank you ) page URL"
|
||||
msgstr "כתובת הצלחה ( דף תודה )"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:138
|
||||
msgid "Error page URL"
|
||||
msgstr "כתובת כשלון"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:146
|
||||
msgid "Path to custom logo"
|
||||
msgstr "קישור ללוגו "
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:154
|
||||
msgid "Path to small custom logo"
|
||||
msgstr "קישור ללוגו קטן "
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:162
|
||||
msgid "Hide PCI DSS logo"
|
||||
msgstr "הסתר את הלוגו של PCI DSS"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:170
|
||||
msgid "Hide Pelecard logo"
|
||||
msgstr "הסתר את לוגו פלאכארד"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:178
|
||||
msgid "Path To custom Style sheet(CSS)"
|
||||
msgstr "כתובת כשלון"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:183
|
||||
msgid "must be a secured URL ( HTTPS )"
|
||||
msgstr "חייב להיות מכתובת מאובטחת (HTTPS )"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:189
|
||||
msgid "Background color"
|
||||
msgstr "צבע רקע"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:195
|
||||
msgid "Use hexadecimal color without the #"
|
||||
msgstr "ערך הקסדצימלי ללא #"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:217
|
||||
msgid "Save Changes"
|
||||
msgstr "שמור שינויים"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:223
|
||||
msgid "Usage :"
|
||||
msgstr "שימוש"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:225
|
||||
msgid "Add the following short code inside a post or a page :"
|
||||
msgstr "הוסיפו את השורטקוד הבא לדף או לעמוד באתר"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:229
|
||||
msgid "value : The amount to pay"
|
||||
msgstr "value : הסכום לתשלום"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:231
|
||||
msgid "item_name : the name of the sold item"
|
||||
msgstr "item_name : שם המוצר למכירה"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:233
|
||||
msgid "button_class : CSS class for styling"
|
||||
msgstr "button_class : קלאס CSS לעיצוב"
|
||||
|
||||
#: ../10bit-pelecard-paybuttons-options.php:235
|
||||
msgid "button_text : Text to show on the button"
|
||||
msgstr "button_text : הטקסט שיופיע על הכפתור"
|
||||
@@ -0,0 +1,24 @@
|
||||
# Italian translation for ab-human-time
|
||||
# Copyright (C) 2014 AB Human Time
|
||||
# This file is distributed under the same license as the AB Human Time package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AB Human Time 0.1\n"
|
||||
"POT-Creation-Date: 2014-02-26 20:13+0100\n"
|
||||
"PO-Revision-Date: 2014-02-26 21:25+0100\n"
|
||||
"Last-Translator: endrix.develop <endrix.develop@gmail.com>\n"
|
||||
"Language-Team: <endrix.develop@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.6.4\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: it_IT\n"
|
||||
|
||||
#: ../ab-human-time.php:21
|
||||
msgid "Published "
|
||||
msgstr "Pubblicato "
|
||||
|
||||
#: ../ab-human-time.php:23
|
||||
msgid " ago"
|
||||
msgstr " fa"
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,112 @@
|
||||
# Copyright (C) 2016 Kailey Lampert
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Kailey Lampert <trepmal@gmail.com>, 2016.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1.7\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-08 17:48-0700\n"
|
||||
"PO-Revision-Date: 2016-09-08 17:48-0700\n"
|
||||
"Last-Translator: Kailey Lampert <trepmal@gmail.com>\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"
|
||||
|
||||
#: active-plugins.php:62
|
||||
msgid "Acitve Plugins is for multisite use only."
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:72 active-plugins.php:83
|
||||
msgid "Active Plugins Across Network"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:72
|
||||
msgid "Active Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:86
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\">Network-Activated Plugins</a>"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:87
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\">MU Plugins</a>"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:90
|
||||
#, php-format
|
||||
msgid "List does not include: %s"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:146
|
||||
msgid ""
|
||||
"Totals <span class=\"description\">each active plugin and how many users</"
|
||||
"span>"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:176 active-plugins.php:213
|
||||
#, php-format
|
||||
msgid "v%s"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:180 active-plugins.php:214
|
||||
#, php-format
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:182
|
||||
#, php-format
|
||||
msgid "%s (Uninstalled)"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:187
|
||||
#, php-format
|
||||
msgid " (tagged: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:197
|
||||
msgid "Select all"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:198
|
||||
msgid "Deselect all"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:199
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:209
|
||||
msgid "Plugins with zero (0) users:"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:217
|
||||
msgid "none"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:224
|
||||
msgid "Show sites with no active plugins"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:235
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:236
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:237
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:238
|
||||
msgid "Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: active-plugins.php:249
|
||||
msgid "(network-activated)"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,428 @@
|
||||
# Copyright (C) 2012
|
||||
# This file is distributed under the same license as the package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Category Column\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-category-column\n"
|
||||
"POT-Creation-Date: 2016-02-17 11:35+0200\n"
|
||||
"PO-Revision-Date: 2016-02-17 11:36+0200\n"
|
||||
"Last-Translator: Stefan Crämer <translate@atelier-fuenf.de>\n"
|
||||
"Language-Team: Waldemar Stoffel <stoffel@atelier-fuenf.de>\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: advanced-cc.php:112
|
||||
msgid "FAQ"
|
||||
msgstr "FAQ"
|
||||
|
||||
#: advanced-cc.php:113
|
||||
msgid "Donate"
|
||||
msgstr "Donar"
|
||||
|
||||
#: advanced-cc.php:123 class-lib/A5_OptionPageClass.php:31
|
||||
#: class-lib/ACC_AdminClass.php:35
|
||||
msgid "Settings"
|
||||
msgstr "Ajustes"
|
||||
|
||||
#: class-lib/A5_ImageClass.php:48
|
||||
msgid "Permalink to"
|
||||
msgstr "enlace permanente a"
|
||||
|
||||
#: class-lib/A5_OptionPageClass.php:145
|
||||
msgid "Click to toggle"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_OptionPageClass.php:382
|
||||
msgid "Not set"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:37
|
||||
msgid "Homepage"
|
||||
msgstr "Página de Inicio"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:38
|
||||
msgid "Frontpage (e.g. a static page as homepage)"
|
||||
msgstr ""
|
||||
"Página Inicial (por ejemplo, una página estática como página de inicio)"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:39
|
||||
msgid ""Page" pages"
|
||||
msgstr ""Pagína" páginas"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:40
|
||||
msgid "Category pages"
|
||||
msgstr "Categoría de páginas"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:41
|
||||
msgid "Single post pages"
|
||||
msgstr "Páginas de post simples"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:42
|
||||
msgid "Archive pages"
|
||||
msgstr "Páginas de Archivo"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:43
|
||||
#, fuzzy
|
||||
msgid "Post type archives"
|
||||
msgstr "Páginas de post simples"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:44
|
||||
msgid "Tag pages"
|
||||
msgstr "Páginas de Etiquetas"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:45
|
||||
msgid "Attachments"
|
||||
msgstr "Adjuntos"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:46
|
||||
msgid "Custom Taxonomy pages (only available, if having a plugin)"
|
||||
msgstr ""
|
||||
"Páginas de Taxonomía Personalizada (sólo está disponible si tiene un plugin)"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:47
|
||||
msgid "Author pages"
|
||||
msgstr "Páginas del autor"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:48
|
||||
msgid "Search Results"
|
||||
msgstr "Buscar Resultados"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:49
|
||||
msgid ""Not Found""
|
||||
msgstr ""No Encontrado""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:52
|
||||
#, fuzzy
|
||||
msgid "Login Page (only available, if having a plugin)"
|
||||
msgstr ""
|
||||
"Páginas de Taxonomía Personalizada (sólo está disponible si tiene un plugin)"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:54
|
||||
msgid "Check all"
|
||||
msgstr "Seleccionar todo"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:56
|
||||
msgid ""
|
||||
"Check, where you want to show the widget. By default, it is showing on the "
|
||||
"homepage and the category pages:"
|
||||
msgstr ""
|
||||
"Seleccione, dónde desea mostrar el widget. Por defecto, se muestra en la "
|
||||
"página principal y en las páginas de la categoría:"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:92
|
||||
msgid "Under image"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:92
|
||||
msgid "Left of image"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:92
|
||||
msgid "Right of image"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:92
|
||||
msgid "Don't show excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:94
|
||||
msgid ""
|
||||
"Choose, whether or not to display the excerpt and whether it comes under the "
|
||||
"thumbnail or next to it."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:104
|
||||
msgid "Weight of the Post Title:"
|
||||
msgstr "Peso del título del Post:"
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:108
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:108
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:108
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:108
|
||||
msgid "Justify"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:110
|
||||
msgid "How do you want to align the Post Title?"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:121
|
||||
msgid ""
|
||||
"Check to have an additional 'read more' link at the end of the "
|
||||
"excerpt."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:122
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Write here some text for the 'read more' link. By default, it is %s:"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/A5_WidgetClass.php:123
|
||||
msgid ""
|
||||
"If you want to style the 'read more' link, you can enter a class "
|
||||
"here."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:63
|
||||
msgid ""
|
||||
"http://wasistlos.waldemarstoffel.com/plugins-fur-wordpress/advanced-category-"
|
||||
"column-plugin"
|
||||
msgstr ""
|
||||
"http://wasistlos.waldemarstoffel.com/plugins-fur-wordpress/advanced-category-"
|
||||
"column-plugin"
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:63
|
||||
msgid "Plugin Support"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:65
|
||||
msgid ""
|
||||
"Style the links of the widget. If you leave this empty, your theme will "
|
||||
"style the hyperlinks."
|
||||
msgstr ""
|
||||
"El estilo de los enlaces del widget. Si deja el campo vacío, el tema será el "
|
||||
"mismo estilo de los hipervínculos."
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:67
|
||||
msgid "Just input something like,"
|
||||
msgstr "Sólo algo de entrada como,"
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:71
|
||||
msgid "to get fat, blue, underlined links."
|
||||
msgstr "Los enlaces serán, azul subrayado."
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:73
|
||||
msgid ""
|
||||
"You most probably have to use "!important" at the end of each line, "
|
||||
"to make it work."
|
||||
msgstr ""
|
||||
"Lo más probable es usar "!important" al final de cada línea, para "
|
||||
"hacer que funcione."
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:86
|
||||
msgid "Debug Info"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:105
|
||||
msgid "Styling of the links"
|
||||
msgstr "Estilo de los enlaces"
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:107
|
||||
msgid "Link style:"
|
||||
msgstr "Estílo enlace:"
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:109
|
||||
msgid "Hover style:"
|
||||
msgstr "Estilo hover:"
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:111
|
||||
msgid "Widget container:"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:111
|
||||
msgid ""
|
||||
"You can enter your own style for the widgets here. This will overwrite the "
|
||||
"styles of your theme."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:111
|
||||
msgid ""
|
||||
"If you leave this empty, you can still style every instance of the widget "
|
||||
"individually."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:113
|
||||
#, fuzzy
|
||||
msgid "Compress Style Sheet:"
|
||||
msgstr "Estílo enlace:"
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:113
|
||||
msgid "Click here to compress the style sheet."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:115
|
||||
msgid "Debug:"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:115
|
||||
msgid ""
|
||||
"If you can't reach the dynamical style sheet, you'll have to display "
|
||||
"the styles inline. By clicking here you can do so."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:119
|
||||
msgid "entries"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:119
|
||||
msgid "entry"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:121
|
||||
#, php-format
|
||||
msgid "Empty cache (%d %s):"
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:121
|
||||
msgid "You can empty the plugin's cache here, if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:129
|
||||
msgid "Just put some css code here."
|
||||
msgstr "Sólo hay que poner algo de código CSS aquí."
|
||||
|
||||
#: class-lib/ACC_AdminClass.php:189
|
||||
msgid "Cache emptied."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:18
|
||||
msgid ""
|
||||
"Configure the output and looks of the widget. Then display thumbnails and "
|
||||
"excerpts of posts in your sidebars and define, on what kind of pages they "
|
||||
"will show."
|
||||
msgstr ""
|
||||
"Configure la salida y la apariencia del widget. Entonces se mostrarán las "
|
||||
"miniaturas y extractos de los mensajes en las barras laterales y se definirá "
|
||||
"en qué tipo de páginas se mostrarán."
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:108
|
||||
msgid "Title:"
|
||||
msgstr "Título:"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:109
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To exclude certain categories or to show just a special category, simply "
|
||||
"write their ID's separated by comma (e.g. %s-5, 2, 4%s will show "
|
||||
"categories 2 and 4 and will exclude category 5):"
|
||||
msgstr ""
|
||||
"Para excluir ciertas categorías o para mostrar sólo una categoría especial, "
|
||||
"basta con escribir su ID separado por coma (por ejemplo,%s-5, 2, 4%s "
|
||||
"mostrará las categorías 2 y 4, y se excluye la categoría 5):"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:110
|
||||
msgid "Check to show the categories in which the post is filed."
|
||||
msgstr "Seleccione para mostrar las categorías en que se presenta el mensaje."
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:111
|
||||
msgid ""
|
||||
"Give some text that you want in front of the post's categtories (i.e "
|
||||
"'filed under':"
|
||||
msgstr ""
|
||||
"De algún texto que usted quiere al frente de la categoría de mensajes (ej. "
|
||||
"'llenado debajo':"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:112
|
||||
msgid "How many posts will be displayed in the sidebar:"
|
||||
msgstr "Cuántos post se mostrarán en la barra lateral:"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:113
|
||||
msgid "Offset (how many posts are spared out in the beginning):"
|
||||
msgstr "Offset (cuántos post están a salvo en el inicio):"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:114
|
||||
msgid "Check to have the offset only on your homepage."
|
||||
msgstr ""
|
||||
"Verificación para que el desplazamiento sólo sea en la página principal."
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:115
|
||||
msgid "Width of the thumbnail (in px):"
|
||||
msgstr "Ancho de las miniaturas (en px)"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:116
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If wanting a border around the image, write the style here. %s would make it "
|
||||
"a black border, 1px wide."
|
||||
msgstr ""
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:118
|
||||
msgid "In case there is no excerpt defined, how many sentences are displayed:"
|
||||
msgstr ""
|
||||
"En caso de que no haya extracto definido, como cuantas frases se muestran:"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:119
|
||||
msgid "Check to display words instead of sentences."
|
||||
msgstr "Seleccione para mostrar palabras en lugar de oraciones."
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:120
|
||||
msgid "Check to have each sentense in a new line."
|
||||
msgstr "Seleccione para tener cada sentencia en una línea nueva."
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:122
|
||||
msgid ""
|
||||
"Check to return the excerpt unfiltered (might avoid interferences with other "
|
||||
"plugins)."
|
||||
msgstr ""
|
||||
"Seleccione para retornar el extracto sin filtrar (puede evitar "
|
||||
"interferencias con otros plugins)."
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:123
|
||||
msgid ""
|
||||
"If you want a line between the posts, this is the height in px (if not "
|
||||
"wanting a line, leave emtpy):"
|
||||
msgstr ""
|
||||
"Si usted quiere una línea entre los posts, esta es la altura en píxeles (si "
|
||||
"no quisiera una línea, deje en blanco)"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:124
|
||||
msgid "The color of the line (e.g. #cccccc):"
|
||||
msgstr "El color de la línea (e.g. #cccccc):"
|
||||
|
||||
#: class-lib/ACC_WidgetClass.php:126
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"Here you can finally style the widget. Simply type something like%sto get "
|
||||
"just a gray outline and a padding of 10 px. If you leave that section empty, "
|
||||
"your theme will style the widget."
|
||||
msgstr ""
|
||||
"Aquí usted puede finalmente ver el estilo del widget. Simplemente escriba "
|
||||
"algo como%1$s%2$sborder-left: 1px dashed;%2$sborder-color: #000000;%3$s"
|
||||
"%2$spara obtener una línea de puntos negro de la izquierda. Si deja la "
|
||||
"sección vacía, su tema le dará estilo al widget."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Advanced Category Column does, what the Category Column Plugin does; "
|
||||
#~ "it creates a widget, which you can drag to your sidebar and it will show "
|
||||
#~ "excerpts of the posts of other categories than showed in the center-"
|
||||
#~ "column. It just has more options than the the Category Column Plugin. It "
|
||||
#~ "is tested with WP up to version 3.5 and it might work with versions down "
|
||||
#~ "to 2.9, but will never be explicitly supported for those. The 'Advanced' "
|
||||
#~ "means, that you have a couple of more options than in the 'Category "
|
||||
#~ "Column Plugin'."
|
||||
#~ msgstr ""
|
||||
#~ "La Columna Categoría Avanzada hace, lo que hace el Plugin de Columna de "
|
||||
#~ "Categoría, se crea un widget, que se puede arrastrar a la barra lateral y "
|
||||
#~ "se mostrarán extractos de los mensajes de otras categorías que se "
|
||||
#~ "mostraron en la columna del centro. Simplemente tiene más opciones que el "
|
||||
#~ "Plugin de Columna de Categoría. Se probó con WP hasta la versión 3.5 y "
|
||||
#~ "que podría funcionar con las versiones hasta la 2.9, pero nunca se probó "
|
||||
#~ "explícitamente en aquellos. Los menús 'Avanzados' significan, que tiene "
|
||||
#~ "un par de opciones más que el 'Plugin de Columna de Categoría'."
|
||||
|
||||
#~ msgid "Waldemar Stoffel"
|
||||
#~ msgstr "Waldemar Stoffel"
|
||||
|
||||
#~ msgid "http://www.waldemarstoffel.com"
|
||||
#~ msgstr "http://www.waldemarstoffel.com"
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2013 Allow Javascript in Text Widgets
|
||||
# This file is distributed under the same license as the Allow Javascript in Text Widgets package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Allow Javascript in Text Widgets 0.3\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/allow-javascript-in-text-"
|
||||
"widgets\n"
|
||||
"POT-Creation-Date: 2013-12-17 09:48:40+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: allow-javascript-in-text-widgets.php:20
|
||||
msgid "Arbitrary text or HTML"
|
||||
msgstr ""
|
||||
|
||||
#: allow-javascript-in-text-widgets.php:22
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: allow-javascript-in-text-widgets.php:49
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: allow-javascript-in-text-widgets.php:54
|
||||
msgid "Automatically add paragraphs"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Allow Javascript in Text Widgets"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://philipjohn.co.uk/#pj-better-multisite-text-widget"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Replaces the default text widget with one that allows Javascript so you can "
|
||||
"do basic things like add Google Ads to your sidebar without using other "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Philip John"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://philipjohn.co.uk"
|
||||
msgstr ""
|
||||
10
spec/fixtures/dynamic_finders/plugin_version/anycomment-analytics/change_log/CHANGELOG.md
vendored
Normal file
10
spec/fixtures/dynamic_finders/plugin_version/anycomment-analytics/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## 0.2 - 30.03.2019
|
||||
|
||||
- Added option to control where generic report would be sent and to define interval of such email
|
||||
- Added generic report with multiple summary information send directly to email
|
||||
|
||||
## 0.1 – 11.02.2019
|
||||
|
||||
First release.
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/apcu-manager/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/apcu-manager/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
All notable changes to **APCu Manager** are documented in this *changelog*.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **APCu Manager** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.0] - 2020-01-09
|
||||
### Initial release
|
||||
@@ -0,0 +1,81 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Archive Disabler 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/chrisguitarguy/Archive-Disabler/issues\n"
|
||||
"POT-Creation-Date: 2012-03-11 15:35-0600\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>"
|
||||
"Language: \n"
|
||||
|
||||
#: inc/options.php:67
|
||||
msgid "Archive Disabler Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:72
|
||||
msgid "Date Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:73
|
||||
msgid "Author Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:74
|
||||
msgid "Taxonomy Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:77
|
||||
msgid "Post Type Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:79
|
||||
msgid "Disabled archives should..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:92
|
||||
msgid "Choose which archives you would like to disable."
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:107
|
||||
msgid "Disable Date Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:121
|
||||
msgid "Disable Author Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:154
|
||||
msgid "Redirect to the home page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:155
|
||||
msgid "Throw a 404 Not Found Error"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:210
|
||||
msgid "Archive Disabler"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:225
|
||||
msgid "Archive Disabler allows you to \"disable\" the various WordPress archive pages. To do so, check the archives you wish to have disabled below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:231
|
||||
msgid "Depending on your options, the disabled archives will redirect to the home page or simply 404. Redirecting archives, especially if they were previously enabled, is recommended."
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:237
|
||||
#, php-format
|
||||
msgid "Learn more about the author of Archive Disabler, %s. Problems? Report bugs here: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:256
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options.php:333
|
||||
#, php-format
|
||||
msgid "Disable %s Archives"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,57 @@
|
||||
# Copyright (C) 2010 Assign Missing Categories
|
||||
# This file is distributed under the same license as the Assign Missing Categories package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Assign Missing Categories 1.2\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/assign-missing-categories\n"
|
||||
"POT-Creation-Date: 2011-07-29 20:58:37+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: assign-missing-categories.php:54
|
||||
msgid "Categories assigned."
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# plugin.pot (Assign Missing Categories 1.2) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: assign-missing-categories.php:60 assign-missing-categories.php:84
|
||||
msgid "Assign Missing Categories"
|
||||
msgstr ""
|
||||
|
||||
#: assign-missing-categories.php:66
|
||||
msgid "Assign the default category »"
|
||||
msgstr ""
|
||||
|
||||
#: assign-missing-categories.php:92
|
||||
msgid "Post %d has no categories assigned."
|
||||
msgstr ""
|
||||
|
||||
#: assign-missing-categories.php:94
|
||||
msgid " Assigned default category.<br />"
|
||||
msgstr ""
|
||||
|
||||
#: assign-missing-categories.php:96
|
||||
msgid "Post %d has a category assigned.<br />"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://sillybean.net/code/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Assigns categories to posts incorrectly stripped of all categories (showing "
|
||||
"unlinked \"Uncategorized\" under Posts)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Stephanie Leary"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://sillybean.net/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,479 @@
|
||||
# Copyright (C) 2020 Mewz
|
||||
# This file is distributed under the same license as the Attribute Stock for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Attribute Stock for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/attribute-stock-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: 2020-01-07T12:52:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: attribute-stock-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Attribute Stock for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/attribute-stock-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Take control of your product stock with flexible attribute-based stock. Easily track product addons, parts, ingredients, combos, and much more!"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Mewz"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mewz.dev/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/AttributeList.php:45
|
||||
#: src/Actions/Admin/AttributeTermList.php:62
|
||||
msgid "Edit stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/AttributeList.php:51
|
||||
#: src/Actions/Admin/AttributeTermList.php:76
|
||||
msgid "List stock items"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/AttributeTermList.php:31
|
||||
#: src/Actions/Admin/AttributeTermList.php:34
|
||||
#: src/Actions/Admin/StockList.php:29
|
||||
#: src/Components/StockReport.php:16
|
||||
#: templates/admin/attributes/edit-associated.php:25
|
||||
msgid "Stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/AttributeTermList.php:62
|
||||
msgid "Edit attribute-level stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:17
|
||||
#: src/Actions/Admin/PluginSupport.php:54
|
||||
#: src/Actions/Admin/PluginSupport.php:56
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:20
|
||||
msgid "Unlock PRO"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:41
|
||||
#: src/Actions/Admin/PluginSupport.php:43
|
||||
msgid "Help & Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:44
|
||||
msgid "Need assistance setting up your attribute stock? Found a bug and want to report it? Just feel like chatting? Get in touch!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:46
|
||||
msgid "Priority support"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:47
|
||||
msgid "Community forum"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:57
|
||||
msgid "Want to learn more about Attribute Stock for WooCommerce? Check out the official online documentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:59
|
||||
msgid "Online documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:66
|
||||
#: src/Actions/Admin/PluginSupport.php:68
|
||||
msgid "Manage License"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:69
|
||||
msgid "View your PRO license, migrate a license, update payment information or cancel your subscription."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/PluginSupport.php:71
|
||||
msgid "Member dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/ReportStock.php:22
|
||||
msgid "Attribute Stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/ReportStockPro.php:19
|
||||
#: src/Actions/Admin/StockList.php:28
|
||||
#: templates/admin/attributes/edit-associated.php:24
|
||||
#: templates/admin/stock/panel-inventory.php:7
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/ReportStockPro.php:21
|
||||
#: src/Actions/Admin/StockList.php:27
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/ReportStockPro.php:34
|
||||
msgid "Edit attribute stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:26
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:30
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:73
|
||||
msgid "%d attribute stock enabled."
|
||||
msgid_plural "%d attribute stocks enabled."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:75
|
||||
msgid "%d attribute stock disabled."
|
||||
msgid_plural "%d attribute stocks disabled."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:81
|
||||
msgid "No disabled attribute stocks to enable."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:83
|
||||
msgid "No enabled attribute stocks to disable."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:93
|
||||
msgid "%d attribute stock updated."
|
||||
msgid_plural "%d attribute stocks updated."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:94
|
||||
msgid "%d attribute stock not updated, somebody is editing it."
|
||||
msgid_plural "%d attribute stocks not updated, somebody is editing them."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:95
|
||||
msgid "%d attribute stock permanently deleted."
|
||||
msgid_plural "%d attribute stocks permanently deleted."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:96
|
||||
msgid "%d attribute stock moved to the Trash."
|
||||
msgid_plural "%d attribute stocks moved to the Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Actions/Admin/StockBulkActions.php:97
|
||||
msgid "%d attribute stock restored from the Trash."
|
||||
msgid_plural "%d attribute stocks restored from the Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:45
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:46
|
||||
msgid "Stock details"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:64
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:65
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:66
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:122
|
||||
#: src/Actions/Admin/StockEdit.php:125
|
||||
#: src/Actions/Admin/StockEdit.php:127
|
||||
#: src/Actions/Admin/StockEdit.php:135
|
||||
msgid "Attribute stock updated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:123
|
||||
msgid "Attribute stock field updated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:124
|
||||
msgid "Attribute stock field deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:126
|
||||
msgid "Revision restored."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:128
|
||||
msgid "Attribute stock saved."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:129
|
||||
msgid "Attribute stock submitted."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: date
|
||||
#: src/Actions/Admin/StockEdit.php:132
|
||||
msgid "Attribute stock scheduled for: %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:151
|
||||
#: src/Actions/Admin/StockEdit.php:177
|
||||
msgid "Back to attribute stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:155
|
||||
msgid "Back to \"%s\" attribute term"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:157
|
||||
msgid "Back to attribute term"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:162
|
||||
msgid "Back to \"%s\" attribute terms"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:164
|
||||
msgid "Back to attribute terms"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:169
|
||||
msgid "Back to \"%s\" attribute"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockEdit.php:171
|
||||
msgid "Back to attribute"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockList.php:30
|
||||
#: templates/admin/stock/panel-inventory.php:29
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockList.php:31
|
||||
#: templates/admin/stock/metabox-status.php:21
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockList.php:105
|
||||
#: src/Actions/Admin/StockListFilters.php:22
|
||||
#: templates/admin/attributes/edit-associated.php:39
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockListActions.php:40
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockListActions.php:91
|
||||
msgid "Sorry, this attribute stock item does not exist. Perhaps it was deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockListActions.php:95
|
||||
msgid "Sorry, you are not allowed to do that."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockListFilters.php:21
|
||||
#: templates/admin/stock/metabox-status.php:10
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/Admin/StockListFilters.php:112
|
||||
msgid "\"Any\""
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/StockNotifications.php:45
|
||||
msgid "Attribute out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/StockNotifications.php:46
|
||||
#: src/Actions/StockNotificationsPro.php:18
|
||||
msgid "%s is out of stock."
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/StockNotifications.php:62
|
||||
msgid "Attribute low in stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Actions/StockNotifications.php:63
|
||||
#: src/Actions/StockNotificationsPro.php:27
|
||||
msgid "%s is low in stock. There is %d left."
|
||||
msgid_plural "%s is low in stock. There are %d left."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Components/StockReport.php:15
|
||||
#: templates/admin/attributes/edit-associated.php:23
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/StockReport.php:90
|
||||
msgid "No low in stock attributes found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/StockReport.php:94
|
||||
msgid "No out of stock attributes found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Components/StockReport.php:98
|
||||
msgid "No most stocked attributes found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Loader.php:34
|
||||
#: src/Plugin/LoaderPro.php:32
|
||||
msgid "WooCommerce attribute stock items."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Loader.php:36
|
||||
#: src/Plugin/LoaderPro.php:34
|
||||
msgctxt "post type general name"
|
||||
msgid "Attribute Stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Loader.php:37
|
||||
#: src/Plugin/LoaderPro.php:35
|
||||
msgctxt "post type singular name"
|
||||
msgid "Attribute Stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Loader.php:38
|
||||
#: src/Plugin/LoaderPro.php:36
|
||||
msgctxt "mewz_attribute_stock"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/attributes/add-fields.php:13
|
||||
#: templates/admin/attributes/edit-associated.php:60
|
||||
#: templates/admin/attributes/edit-fields.php:26
|
||||
msgid "Unlock Pro"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/attributes/add-fields.php:18
|
||||
#: templates/admin/attributes/edit-fields.php:32
|
||||
msgid "Enable stock management at the attribute level."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/attributes/add-fields.php:20
|
||||
#: templates/admin/attributes/edit-fields.php:34
|
||||
msgid "Enable stock management at the attribute term level."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/attributes/add-fields.php:33
|
||||
#: templates/admin/attributes/edit-fields.php:51
|
||||
msgid "Current stock quantity of this attribute."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/attributes/add-fields.php:35
|
||||
#: templates/admin/attributes/edit-fields.php:53
|
||||
msgid "Current stock quantity of this attribute term."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/attributes/edit-associated.php:16
|
||||
msgid "Associated stock"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/attributes/edit-fields.php:24
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/metabox-status.php:34
|
||||
msgid "Update Stock"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/metabox-status.php:34
|
||||
msgid "Create Stock"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-inventory.php:10
|
||||
msgid "Unique identifier for stock keeping. Optional."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-inventory.php:16
|
||||
msgid "Stock quantity"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-inventory.php:23
|
||||
msgid "Current stock quantity of this attribute stock item."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-inventory.php:33
|
||||
msgid "Internal notes about this attribute stock item."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-settings.php:14
|
||||
msgid "All product types"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-settings.php:15
|
||||
msgid "Product type(s) to match against. All other product types will be ignored by this attribute stock. Leave blank to match all valid product types."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-settings.php:29
|
||||
msgid "When stock reaches this amount or less, you will be notified by email (if enabled)."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-settings.php:38
|
||||
msgid "Limits available stock quantity of associated products."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock/panel-settings.php:38
|
||||
msgid "Learn more"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Add match"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Drag to re-order"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Remove match set"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Attribute..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Any %s"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Term..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Remove attribute"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Add attribute"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Quantity multiplier"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/admin/stock-edit.js:12
|
||||
msgid "Set how much stock is reduced when a matching product is purchased. Decimal values are also allowed."
|
||||
msgstr ""
|
||||
302
spec/fixtures/dynamic_finders/plugin_version/author-images/translation_file/lang/author-images.pot
vendored
Normal file
302
spec/fixtures/dynamic_finders/plugin_version/author-images/translation_file/lang/author-images.pot
vendored
Normal file
@@ -0,0 +1,302 @@
|
||||
# Translation of the WordPress plugin Author Image(s) v3.6 by Scott Reilly.
|
||||
# Copyright (C) 2011 Scott Reilly
|
||||
# This file is distributed under the same license as the Author Image(s) plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Author Image(s) 3.6\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/author-images\n"
|
||||
"POT-Creation-Date: 2012-01-04 05:55:04+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: author-images.php:125 author-images.php:126
|
||||
msgid "Author Images"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:130
|
||||
msgid "Show author name as well?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:131
|
||||
msgid ""
|
||||
"Should the author's name be shown in addition to the author's image? By "
|
||||
"default this is their configured display name."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:133
|
||||
msgid "Force use of author's full name when displaying name?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:134
|
||||
msgid ""
|
||||
"If showing the user's name, force display of their full name instead of "
|
||||
"their configured display name (which may be a nickname or first name)? "
|
||||
"<em>NOTE: \"Show author name as well?\" must be checked for this to take "
|
||||
"effect.)</em>"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:136
|
||||
msgid "Show author name if no image is found?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:137
|
||||
msgid "Should the author's name be shown if the author's image can't be found?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:140
|
||||
msgid "Image linking"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:141
|
||||
msgid ""
|
||||
"How should the author's image be linked?<br />posts : link to the archive of "
|
||||
"the author's posts<br />site : link to the author's website (if defined for "
|
||||
"the author)<br />none : don't link the author image"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:143
|
||||
msgid "Image width"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:144
|
||||
msgid ""
|
||||
"Specify this to force the browser to scale the width of the image to this "
|
||||
"size. If blank, then the image's original width will be left intact (or "
|
||||
"scaled in proportion to a specified height)."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:146
|
||||
msgid "Image height"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:147
|
||||
msgid ""
|
||||
"Specify this to force the browser to scale the height of the image to this "
|
||||
"size. If blank, then the image's original height will be left intact (or "
|
||||
"scaled in proportion to a specified width)."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:149
|
||||
msgid "Supported image extensions"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:150
|
||||
msgid ""
|
||||
"Space-separated list of possible image extensions for image. More efficient "
|
||||
"if you only include extensions you'll actually use."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:152
|
||||
msgid "Image directory"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:153
|
||||
msgid ""
|
||||
"Directory, relative to the wp-content/ directory of your site, containing "
|
||||
"the author images."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:155
|
||||
msgid "Use Gravatar image if possible?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:156
|
||||
msgid ""
|
||||
"If the plugin is unable to find an image for the author, should it try to "
|
||||
"find a Gravatar for the author?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:158
|
||||
msgid "Blank image"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:159
|
||||
msgid ""
|
||||
"Image to use if absolutely no author-specific image could be found. This is "
|
||||
"the final fallback."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:161
|
||||
msgid "Custom field name for overriding author image"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:162
|
||||
msgid ""
|
||||
"If this custom field is specified for a post, its value will be given "
|
||||
"preference as the potential author image, should the image file exist."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.php:275
|
||||
msgid "Template Functions"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# author-images.pot (Author Image(s) 3.6) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: author-images.widget.php:33
|
||||
msgid "Author Image(s)"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:34
|
||||
msgid "Display image (if present) and/or name for all authors on the blog."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:43
|
||||
msgid "Authors"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:44
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:46
|
||||
msgid "Exclude admin?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:47
|
||||
msgid "Prevent admin accounts from being listed?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:49
|
||||
msgid "Ignore authors who have't published a post?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:50
|
||||
msgid "Omits showing image for authors who have not published a post."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:52
|
||||
msgid "Show user's name?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:53
|
||||
msgid ""
|
||||
"Also show the user's name? By default this is their configured display name."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:55
|
||||
msgid "Show user's full name?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:56
|
||||
msgid ""
|
||||
"If showing the user's name, force display of their full name instead of "
|
||||
"their configured display name (which may be a nickname or first name)? "
|
||||
"<em>NOTE: \"Show user's name?\" must be checked for this to take effect.)</"
|
||||
"em>"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:58
|
||||
msgid "Show user's name if no image is found?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:59
|
||||
msgid ""
|
||||
"Should the author's name be shown if the author doesn't have an image? If "
|
||||
"not checked, then authors without an image are omitted from the listing."
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:61
|
||||
msgid "Use Gravatar?"
|
||||
msgstr ""
|
||||
|
||||
#: author-images.widget.php:62
|
||||
msgid "Ask Gravatar for author image if no local image is found?"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:76
|
||||
msgid "Invalid file specified for C2C_Plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:296
|
||||
msgid "See the \"Help\" link to the top-right of the page for more help."
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:329
|
||||
msgid "Settings reset."
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:340 c2c-plugin.php:348
|
||||
msgid "A value is required for: \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:357
|
||||
msgid "Expected integer value for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:469
|
||||
msgid "More information about %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:470
|
||||
msgid "Click for more help on this plugin"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:471
|
||||
msgid " (especially check out the \"Other Notes\" tab, if present)"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:585
|
||||
msgid "More Help"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:597
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:609
|
||||
msgid "Donation for coffee2code plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:610
|
||||
msgid "Coffee fuels my coding."
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:848
|
||||
msgid "A plugin by coffee2code"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:857
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:858
|
||||
msgid "Reset Settings"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:864
|
||||
msgid "Scott Reilly, aka coffee2code"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:865
|
||||
msgid "This plugin brought to you by %s."
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:866
|
||||
msgid "Please consider a donation"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:867
|
||||
msgid "Did you find this plugin useful?"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://coffee2code.com/wp-plugins/author-images/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Display image (if present) and/or name for the author of a post, or for all "
|
||||
"authors on the blog."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Scott Reilly"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://coffee2code.com/"
|
||||
msgstr ""
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/autotags/translation_file/AutoTags.pot
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/autotags/translation_file/AutoTags.pot
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# AutoTags POT file.
|
||||
# Copyright (C) 2009 blog.jaric.tw
|
||||
# This file is distributed under the GPL license.
|
||||
"Project-Id-Version: AutoTags 1.0\n"
|
||||
"Report-Msgid-Bugs-To: jarickuo@gmail.com\n"
|
||||
"POT-Creation-Date: 2009-07-16 18:00+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Jaric <jarickuo@gmail.com>\n"
|
||||
"Language-Team: Jaric <jarickuo@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: wp-content/plugins/autotags/autoTags.php:24
|
||||
msgid "Fetch tags"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/autotags/autoTags.php:25
|
||||
msgid "Fetching tags..."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/autotags/autoTags.php:26
|
||||
msgid "powered by"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,113 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AvatarPlus v0.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2013-02-24 09:53:02+0000\n"
|
||||
"Last-Translator: verantwortlicher <neun12@gmail.com>\n"
|
||||
"Language-Team: \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-Generator: CSL v1.x\n"
|
||||
"X-Poedit-Language: German\n"
|
||||
"X-Poedit-Country: GERMANY\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: avatarplus.php:0
|
||||
#@ avatarplus
|
||||
msgid "AvatarPlus"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: avatarplus.php:0
|
||||
#@ avatarplus
|
||||
msgid "http://yoda.neun12.de"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: avatarplus.php:0
|
||||
#@ avatarplus
|
||||
msgid "Replacing the standard avatar in comments with a Google+, Facebook or Twitter avatar if a user enter a profile url"
|
||||
msgstr "Ersetzt den Standard-Avatar im Kommentarbereich mit einem Google+, Facebook oder Twitter Profilbild falls der Benutzer eine Profil-URL angibt"
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: avatarplus.php:0
|
||||
#@ avatarplus
|
||||
msgid "Ralf Albert"
|
||||
msgstr ""
|
||||
|
||||
#: avatarplus/backend/backend.php:147
|
||||
#@ avatarplus
|
||||
msgid "AvatarPlus settings"
|
||||
msgstr "AvatarPlus Einstellungen"
|
||||
|
||||
#: avatarplus/backend/backend.php:148
|
||||
#@ avatarplus
|
||||
msgid "Google+ settings"
|
||||
msgstr "Google+ Einstellungen"
|
||||
|
||||
#: avatarplus/backend/backend.php:154
|
||||
#@ avatarplus
|
||||
msgid "Extra field"
|
||||
msgstr "Zusatzfeld"
|
||||
|
||||
#: avatarplus/backend/backend.php:155
|
||||
#@ avatarplus
|
||||
msgid "Cache"
|
||||
msgstr "Cache"
|
||||
|
||||
#: avatarplus/backend/backend.php:156
|
||||
#@ avatarplus
|
||||
msgid "Google+ API key"
|
||||
msgstr "Google+ API Schlüssel"
|
||||
|
||||
#: avatarplus/backend/backend.php:294
|
||||
#@ avatarplus
|
||||
msgid "Save Changes"
|
||||
msgstr "Änderungen übernehmen"
|
||||
|
||||
#: avatarplus/backend/backend.php:328
|
||||
#@ avatarplus
|
||||
msgid "Use extra field in comment form"
|
||||
msgstr "Benutze ein zusätzliches Feld im Kommentarbereich"
|
||||
|
||||
#: avatarplus/backend/backend.php:355
|
||||
#@ avatarplus
|
||||
msgid "Day(s)"
|
||||
msgstr "Tag(e)"
|
||||
|
||||
#: avatarplus/backend/backend.php:356
|
||||
#@ avatarplus
|
||||
msgid "Week(s)"
|
||||
msgstr "Woche(n)"
|
||||
|
||||
#: avatarplus/backend/backend.php:357
|
||||
#@ avatarplus
|
||||
msgid "Month(s)"
|
||||
msgstr "Monat(e)"
|
||||
|
||||
#: avatarplus/backend/backend.php:358
|
||||
#@ avatarplus
|
||||
msgid "Year(s)"
|
||||
msgstr "Jahr(e)"
|
||||
|
||||
#: avatarplus/backend/backend.php:375
|
||||
#@ avatarplus
|
||||
msgid "Your WordPress Cronjobs are disabled. The cache won't be deleted!"
|
||||
msgstr "Deine WordPress Cronjobs sind deaktiviert. Der Cache wird nicht automatisch gelöscht!"
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: avatarplus.php:0
|
||||
#@ avatarplus
|
||||
msgid "0.4"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,143 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AyeCode Connect 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-02-22 09:23+0000\n"
|
||||
"PO-Revision-Date: 2020-02-22 09:23+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: AyeCode Ltd <contact@ayecode.io>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;__ngettext:1,2;__ngettext_noop:1,2;_c;_e;_ex:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;_nc:4c,1,2;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;gettext;"
|
||||
"gettext_noop\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: ayecode-connect.php:75
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-remote-actions.php:411
|
||||
msgid "Download source not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:201
|
||||
msgid "Plugin and theme update notifications must be enabled first"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:261
|
||||
msgid "Something went wrong, try refreshing the page and trying again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:262
|
||||
msgid "Are you sure you with to disconnect your site?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:300
|
||||
msgid ""
|
||||
"One click addon installs, live documentation search, support right from your "
|
||||
"WordPress Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:308
|
||||
#, php-format
|
||||
msgid "You are connected to AyeCode Connect as user: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:315
|
||||
msgid "Plugin and theme update notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:318
|
||||
#: includes/class-ayecode-connect-settings.php:336
|
||||
#: includes/class-ayecode-connect-settings.php:361
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:333
|
||||
msgid "One click addon installs, no more licence keys"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:366
|
||||
msgid "Disconnect site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:373
|
||||
msgid ""
|
||||
"By clicking the <b>Connect Site</b> button, you agree to our <a "
|
||||
"href='https://ayecode.io/terms-and-conditions/' target='_blank' class='text-"
|
||||
"muted' ><u>Terms of Service</u></a> and to share details with AyeCode Ltd"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:376
|
||||
msgid "Connect Site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:384
|
||||
msgid ""
|
||||
"It looks like you might be running on localhost, AyeCode Connect will only "
|
||||
"work on a live website."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:395
|
||||
msgid "AycCode Ltd are the creators of:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:298
|
||||
msgid "Invalid Registration Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:302
|
||||
msgid "Invalid Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:559
|
||||
#, php-format
|
||||
msgid "Domain `%1$s` just failed is_usable_domain check as it is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:589
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Domain `%1$s` just failed is_usable_domain check as it is in the forbidden "
|
||||
"array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:604
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Domain `%1$s` just failed is_usable_domain check as it uses an invalid top "
|
||||
"level domain."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:696
|
||||
#: includes/class-ayecode-connect.php:712
|
||||
#: includes/class-ayecode-connect.php:931
|
||||
msgid "Missing Authorization Header."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:718
|
||||
#: includes/class-ayecode-connect.php:937
|
||||
#: includes/class-ayecode-connect.php:943
|
||||
msgid "Invalid Authorization Header."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:725
|
||||
msgid "Missing blog token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:730
|
||||
#: includes/class-ayecode-connect.php:951
|
||||
msgid "You are not authorized to do that."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:1002
|
||||
msgid "Specify an action"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,74 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Backend Startpage Customizer v0.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-11-12 20:05+0100\n"
|
||||
"PO-Revision-Date: 2014-10-06 20:54:51+0000\n"
|
||||
"Last-Translator: Frank Staude <frank@staude.net>\n"
|
||||
"Language-Team: frank@staude.net <frank@staude.net>\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-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-Language: \n"
|
||||
"X-Poedit-Country: \n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: /Users/staude/Projekte/Wordpress Plugins/wp-content/plugins/backend-startpage-customizer\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#: class-backend-startpage-customizer.php:84
|
||||
#@ backend-startpage-customizer
|
||||
msgid "Startpage"
|
||||
msgstr "Startseite"
|
||||
|
||||
#: class-backend-startpage-customizer.php:106
|
||||
#@ backend-startpage-customizer
|
||||
msgid "Select your backend startpage."
|
||||
msgstr "Wählen Sie die Startseite"
|
||||
|
||||
#: class-backend-startpage-customizer.php:137
|
||||
#@ backend-startpage-customizer
|
||||
msgctxt "Userlist Columntitle"
|
||||
msgid "Startpage"
|
||||
msgstr "Startseite"
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: backend-startpage-customizer.php:0
|
||||
#@ backend-startpage-customizer
|
||||
msgid "Backend Startpage Customizer"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#: backend-startpage-customizer.php:0
|
||||
#@ backend-startpage-customizer
|
||||
msgid "http://www.staude.net/wordpress/plugins/BackendStartpageCustomizer"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: backend-startpage-customizer.php:0
|
||||
#@ backend-startpage-customizer
|
||||
msgid "Redirect the user after login to a predetermined site in the backend."
|
||||
msgstr "Erlaubt für jeden Benutzer festzulegen auf welcher Seite im WordPress Backend er nach der Anmeldung startet."
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: backend-startpage-customizer.php:0
|
||||
#@ backend-startpage-customizer
|
||||
msgid "Frank Staude"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: backend-startpage-customizer.php:0
|
||||
#@ backend-startpage-customizer
|
||||
msgid "http://www.staude.net/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: backend-startpage-customizer.php:0
|
||||
#@ backend-startpage-customizer
|
||||
msgid "0.5"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,232 @@
|
||||
# Copyright (C) 2013 bbPress Digest
|
||||
# This file is distributed under the same license as the bbPress Digest package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: bbPress Digest 2.1\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress-digest\n"
|
||||
"POT-Creation-Date: 2013-12-15 16:55:45+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: bbpress-digest.php:153
|
||||
msgctxt "plugin actions link"
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bbpress-digest.php:154
|
||||
msgid "Donate"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:49
|
||||
msgctxt "settings section title"
|
||||
msgid "bbPress Digest Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:75
|
||||
msgid "Show one-click subscription"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:82
|
||||
msgid "Show weekly digest option"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:104
|
||||
msgid "bbPress Digest settings for enabling features"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:122
|
||||
msgid "Allow users to include forum in a digest from a single forum page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:140
|
||||
msgid ""
|
||||
"Allow users to chose do they want to receive digest once weekly instead of "
|
||||
"once daily"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:71 inc/wp-profile.php:43
|
||||
msgid "bbPress Digest Emails"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:76 inc/wp-profile.php:51
|
||||
msgctxt "checkbox label"
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:77 inc/wp-profile.php:52
|
||||
msgid ""
|
||||
"Check if you want to receive daily digest with active forum topics for that "
|
||||
"day."
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:85 inc/wp-profile.php:64
|
||||
msgctxt "radio button label"
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:86 inc/wp-profile.php:65
|
||||
msgctxt "radio button label"
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:87 inc/wp-profile.php:66
|
||||
msgid "Choose should you receive digest once daily or once weekly."
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:105 inc/wp-profile.php:84
|
||||
msgid "Choose on which day of a week you want to receive a digest."
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:113 inc/wp-profile.php:96
|
||||
msgid "Digests should be sent at this time:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:120 inc/wp-profile.php:103
|
||||
msgid ""
|
||||
"Select the hour of the day when you want to receive digest emails. Current "
|
||||
"time is <code>%1$s</code>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:120 inc/wp-profile.php:103
|
||||
msgctxt "current time date format"
|
||||
msgid "Y-m-d G:i:s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:125 inc/wp-profile.php:112
|
||||
msgctxt "radio button label"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:126 inc/wp-profile.php:113
|
||||
msgid "Only forums I choose"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:127 inc/wp-profile.php:114
|
||||
msgid ""
|
||||
"Choose should digest include topics from all forums or only from selected "
|
||||
"forums."
|
||||
msgstr ""
|
||||
|
||||
#: inc/bbp-profile.php:137 inc/wp-profile.php:124
|
||||
msgid "Choose forums which you want to be included in a digest."
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:161
|
||||
msgid "Active topics for week ending %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:161
|
||||
msgctxt "week span email title date format"
|
||||
msgid "d. F Y."
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:164
|
||||
msgid ""
|
||||
"This topics have been active in the last 7 days:\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:178
|
||||
msgid "Active topics for %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:178
|
||||
msgctxt "one day span email title date format"
|
||||
msgid "d. F Y."
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:180
|
||||
msgctxt "1. Yesterday 2. Today"
|
||||
msgid "Active topics for %1$s / %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:180
|
||||
msgctxt "two day span yesterday email title date format"
|
||||
msgid "d. F Y."
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:180
|
||||
msgctxt "one day span today email title date format"
|
||||
msgid "d. F Y."
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:184
|
||||
msgid ""
|
||||
"This topics have been active in the last 24 hours:\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
#: inc/event.php:188
|
||||
msgctxt "1. Topic title 2. Topic URL"
|
||||
msgid "%1$s: %2$s\r\n"
|
||||
msgstr ""
|
||||
|
||||
#: inc/forums-list.php:229
|
||||
msgid "No topics available"
|
||||
msgstr ""
|
||||
|
||||
#: inc/forums-list.php:234
|
||||
msgid "No forums available"
|
||||
msgstr ""
|
||||
|
||||
#: inc/forums-list.php:239
|
||||
msgid "None available"
|
||||
msgstr ""
|
||||
|
||||
#: inc/one-click-handle.php:152 inc/one-click-template.php:54
|
||||
msgid "The request was unsuccessful. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/one-click-template.php:147
|
||||
msgid ""
|
||||
"<a href=\"%1$s\" class=\"%2$s\">Include topics from this forum to the digest "
|
||||
"emails</a> (<a href=\"%3$s\">edit settings</a>)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/one-click-template.php:148
|
||||
msgid ""
|
||||
"Topics from this forum are included in digest emails (<a href=\"%1$s\" class="
|
||||
"\"%2$s\">remove </a> | <a href=\"%3$s\">edit settings</a>)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-profile.php:48
|
||||
msgctxt "settings field label"
|
||||
msgid "Digest emails"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-profile.php:60
|
||||
msgid "Daily or weekly"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-profile.php:93
|
||||
msgid "Digest time"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-profile.php:108
|
||||
msgctxt "settings field label"
|
||||
msgid "Forums"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "bbPress Digest"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://blog.milandinic.com/wordpress/plugins/bbpress-digest/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Send digests with forum's active topics."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Milan Dinić"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://blog.milandinic.com/"
|
||||
msgstr ""
|
||||
62
spec/fixtures/dynamic_finders/plugin_version/bbredirector/translation_file/languages/default.pot
vendored
Normal file
62
spec/fixtures/dynamic_finders/plugin_version/bbredirector/translation_file/languages/default.pot
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Bjorn Wijers <burobjorn at burobjorn dot nl>
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: bbRedirector 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbRedirector\n"
|
||||
"POT-Creation-Date: 2009-11-24 17:34+0100\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: bbRedirector.php:260
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bbRedirector.php:301
|
||||
msgid ""
|
||||
"Whoops! There was a problem with the data you posted. Please go back and try "
|
||||
"again."
|
||||
msgstr ""
|
||||
|
||||
#: bbRedirector.php:320
|
||||
msgid "Allow default redirection:"
|
||||
msgstr ""
|
||||
|
||||
#: bbRedirector.php:325
|
||||
msgid "Default redirect url:"
|
||||
msgstr ""
|
||||
|
||||
#: bbRedirector.php:331
|
||||
msgid "Default HTTP status code :"
|
||||
msgstr ""
|
||||
|
||||
#: bbRedirector.php:337
|
||||
msgid "Metakey name (used to retrieve per-page redirect url):"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of an extension
|
||||
msgid "bbRedirector"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# en.pot (bbRedirector 1.0) #-#-#-#-#
|
||||
#. Plugin URI of an extension
|
||||
#. #-#-#-#-# en.pot (bbRedirector 1.0) #-#-#-#-#
|
||||
#. Author URI of an extension
|
||||
msgid "http://www.burobjorn.nl"
|
||||
msgstr ""
|
||||
|
||||
#. Description of an extension
|
||||
msgid "bbRedirector makes it easy to redirect a page to another location."
|
||||
msgstr ""
|
||||
|
||||
#. Author of an extension
|
||||
msgid "Bjorn Wijers <burobjorn at burobjorn dot nl>"
|
||||
msgstr ""
|
||||
33
spec/fixtures/dynamic_finders/plugin_version/bdthemes-prime-slider-lite/change_log/changelog.txt
vendored
Normal file
33
spec/fixtures/dynamic_finders/plugin_version/bdthemes-prime-slider-lite/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
## 1.1.0 [16th November 2019]
|
||||
|
||||
### Added
|
||||
|
||||
- WooCommerce Base Slider added
|
||||
- Brand new dashboard added
|
||||
- Upgrade option added in dashboard
|
||||
|
||||
|
||||
### Fixed
|
||||
|
||||
- Image responsive issue fixed
|
||||
- Widget on/off issue fixed
|
||||
- Button link empty error fixed
|
||||
- Video thumb condition fixed for slice skin
|
||||
- Video background responsive issue fixed for meteor skin
|
||||
|
||||
## 1.0.1 [4rd November 2019]
|
||||
|
||||
### Added
|
||||
|
||||
- Added Woocommerce Widget
|
||||
|
||||
### Fixed
|
||||
|
||||
- General widget meteor skin thumbnav video height issue
|
||||
- Isolate widget locate skin scroll down & dotnav number issue
|
||||
- Isolate widget slice skin video play button with thumbnav image show hide
|
||||
- Isolate widget slice skin social icon below background remove
|
||||
- Isolate widget slice skin excerpt height issue
|
||||
|
||||
## 1.0.0
|
||||
- Initial Release
|
||||
86
spec/fixtures/dynamic_finders/plugin_version/beastiepress/translation_file/beastiepress-en_US.po
vendored
Normal file
86
spec/fixtures/dynamic_finders/plugin_version/beastiepress/translation_file/beastiepress-en_US.po
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
# Translation of the WordPress plugin BeastiePress 1.0 by Nicole Reid.
|
||||
# Copyright (C) 2010 Nicole Reid
|
||||
# This file is distributed under the same license as the BeastiePress package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BeastiePress 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/beastiepress\n"
|
||||
"POT-Creation-Date: 2010-10-25 00:05-0400\n"
|
||||
"PO-Revision-Date: 2010-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=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: beastiepress.php:128
|
||||
msgid "BeastiePress requires at least WordPress 2.8."
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:191
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:198
|
||||
msgid "BeastiePress Settings"
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:205 beastiepress.php:208
|
||||
msgid "Port Linking"
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:212 beastiepress.php:255 beastiepress.php:280
|
||||
#: beastiepress.php:305
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:230
|
||||
#, php-format
|
||||
msgid "Use the %s Ports index."
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:240 beastiepress.php:265 beastiepress.php:290
|
||||
#: beastiepress.php:315
|
||||
#, php-format
|
||||
msgid "Match the %s tag."
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:248 beastiepress.php:251
|
||||
msgid "Problem Report Linking"
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:273 beastiepress.php:276
|
||||
msgid "File Tagging"
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:298 beastiepress.php:301
|
||||
msgid "Manual Page Linking"
|
||||
msgstr ""
|
||||
|
||||
#: beastiepress.php:328
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "BeastiePress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://cooltrainer.org/software/beastiepress/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Adds some FreeBSD-specific shortcodes to WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Nicole Reid"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://cooltrainer.org"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
# Changelog
|
||||
All notable changes to the plugin will be documented in this file.
|
||||
|
||||
## 1.0.0 - 2019-10-10
|
||||
### Initial release
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"title": "Best Restaurant Menu by PriceListo",
|
||||
"name": "best-restaurant-menu",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "best-restaurant-menu.php",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org/MahmoudBasiony/best-restaurant-menu.git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"menu",
|
||||
"restaurant",
|
||||
"food",
|
||||
"services"
|
||||
],
|
||||
"author": "PriceListo",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"homepage": "https://bitbucket.org/MahmoudBasiony/best-restaurant-menu#readme.md",
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-preset-env": "^1.6.1",
|
||||
"cleave.js": "^1.5.0",
|
||||
"del": "^3.0.0",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-babel": "^7.0.1",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-jshint": "^2.1.0",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-sass": "^4.0.1",
|
||||
"gulp-uglify": "^3.0.0",
|
||||
"gulp-uglifycss": "^1.0.9",
|
||||
"gulp-util": "^3.0.8",
|
||||
"gulp-wp-pot": "^2.2.0",
|
||||
"jshint": "^2.9.5"
|
||||
},
|
||||
"dependencies": {
|
||||
"font-awesome": "^4.7.0",
|
||||
"select2": "^4.0.10",
|
||||
"sweetalert2": "^8.17.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.1 - 27/12/2019 =
|
||||
|
||||
* Tracking code fix
|
||||
|
||||
= 1.0.0 - 14/11/2019 =
|
||||
|
||||
* Initial release
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/better-file-editor/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/better-file-editor/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "better-file-editor",
|
||||
"title": "Better File Editor",
|
||||
"description": "Adds line numbers, syntax highlighting, code folding, and lots more to the theme and plugin editors in the admin panel.",
|
||||
"version": "2.3.1",
|
||||
"homepage": "https://wordpress.org/plugins/better-file-editor/",
|
||||
"author": {
|
||||
"name": "Bryan Petty",
|
||||
"email": "bryan@ibaku.net",
|
||||
"url": "https://profiles.wordpress.org/bpetty/"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.5",
|
||||
"grunt-contrib-clean": "~0.6.0",
|
||||
"grunt-contrib-cssmin": "~0.14.0",
|
||||
"grunt-contrib-jshint": "~0.11.3",
|
||||
"grunt-contrib-nodeunit": "~0.4.1",
|
||||
"grunt-contrib-uglify": "~0.9.2",
|
||||
"grunt-contrib-watch": "~0.6.1",
|
||||
"grunt-sass": "~1.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
{
|
||||
"name": "wp-job-manager-blocks-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"main": "Gruntfile.js",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "node scripts/start.js",
|
||||
"build": "node scripts/build.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"autoprefixer": "^7.2.4",
|
||||
"babel-core": "^6.25.0",
|
||||
"babel-eslint": "^8.2.1",
|
||||
"babel-loader": "^7.1.1",
|
||||
"babel-preset-cgb": "^1.7.0",
|
||||
"cgb-dev-utils": "^1.6.0",
|
||||
"chalk": "^2.3.0",
|
||||
"classnames": "^2.2.6",
|
||||
"cross-env": "^5.0.1",
|
||||
"cross-spawn": "^5.1.0",
|
||||
"eslint": "^4.15.0",
|
||||
"eslint-config-wordpress": "^2.0.0",
|
||||
"eslint-plugin-jest": "^21.6.1",
|
||||
"eslint-plugin-jsx-a11y": "^6.0.3",
|
||||
"eslint-plugin-react": "^7.5.1",
|
||||
"eslint-plugin-wordpress": "^0.1.0",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"filesize": "^3.5.11",
|
||||
"fs-extra": "^5.0.0",
|
||||
"gzip-size": "^4.1.0",
|
||||
"inquirer": "^5.0.0",
|
||||
"mem": "^6.0.0",
|
||||
"node-sass": "^4.7.2",
|
||||
"ora": "^1.3.0",
|
||||
"postcss-loader": "^2.0.10",
|
||||
"raw-loader": "^0.5.1",
|
||||
"resolve-pkg": "^1.0.0",
|
||||
"sass-loader": "^6.0.6",
|
||||
"shelljs": "^0.8.0",
|
||||
"style-loader": "^0.23.1",
|
||||
"update-notifier": "^2.3.0",
|
||||
"webpack": "^3.1.0"
|
||||
},
|
||||
"babel": {
|
||||
"presets": [
|
||||
[
|
||||
"env",
|
||||
{
|
||||
"modules": false,
|
||||
"targets": {
|
||||
"browsers": [
|
||||
"last 2 Chrome versions",
|
||||
"last 2 Firefox versions",
|
||||
"last 2 Safari versions",
|
||||
"last 2 iOS versions",
|
||||
"last 1 Android version",
|
||||
"last 1 ChromeAndroid version",
|
||||
"ie 11"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"plugins": [
|
||||
[
|
||||
"transform-object-rest-spread"
|
||||
],
|
||||
[
|
||||
"transform-object-rest-spread",
|
||||
{
|
||||
"useBuiltIns": true
|
||||
}
|
||||
],
|
||||
[
|
||||
"transform-react-jsx",
|
||||
{
|
||||
"pragma": "wp.element.createElement"
|
||||
}
|
||||
],
|
||||
[
|
||||
"transform-runtime",
|
||||
{
|
||||
"helpers": false,
|
||||
"polyfill": false,
|
||||
"regenerator": true
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-wp-i18n": "^1.0.3",
|
||||
"grunt-wp-readme-to-markdown": "^1.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,83 @@
|
||||
# Copyright (C) 2019 Bengal Studio
|
||||
# This file is distributed under the GPL2+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blocks for WP Job Manager 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/wp-job-manager-blocks\n"
|
||||
"POT-Creation-Date: 2019-11-13 03:47:30+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-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"
|
||||
|
||||
#: blocks-for-wp-job-manager.php:36 blocks-for-wp-job-manager.php:54
|
||||
#. translators: 1: composer command. 2: plugin directory
|
||||
msgid ""
|
||||
"Your installation of the Blocks for WP Job Manager plugin is incomplete. "
|
||||
"Please run %1$s within the %2$s directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:172
|
||||
#. translators: URL of WP Job Manager plugin
|
||||
msgid ""
|
||||
"The Blocks for WP Job Manager plugin requires <a href=\"%s\">WP Job "
|
||||
"Manager</a> 1.30.0 or greater to be installed and active."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:178
|
||||
#. translators: 1: URL of WordPress.org, 2: URL of WP Job Manager plugin
|
||||
msgid ""
|
||||
"The Blocks for WP Job Manager plugin requires both <a "
|
||||
"href=\"%1$s\">WordPress</a> 5.2 or greater and <a href=\"%2$s\">WP Job "
|
||||
"Manager</a> 1.30.0 or greater to be installed and active."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:190
|
||||
msgid ""
|
||||
"You have installed a development version of Blocks for WP Job Manager which "
|
||||
"requires files to be built. From the plugin directory, run <code>npm "
|
||||
"install</code> to install dependencies, <code>npm run build</code> to build "
|
||||
"the files."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:193
|
||||
#. translators: 1: URL of GitHub Repository build page
|
||||
msgid ""
|
||||
"Or you can download a pre-built version of the plugin by visiting <a "
|
||||
"href=\"%1$s\">the releases page in the repository</a>."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Blocks for WP Job Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://bengal-studio.com/plugins/wp-job-manager-blocks/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "A collection of Gutenberg Blocks for WP Job Manager job board plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Bengal Studio"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://bengal-studio.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,45 @@
|
||||
# Copyright (C) 2020 Maksim Kuzmin
|
||||
# This file is distributed under the same license as the Bible Online Popup plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bible Online Popup 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bible-online-popup\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-02-07T09:28:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: BOP\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Bible Online Popup"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Popup Bible's verses with Bible Online"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Maksim Kuzmin"
|
||||
msgstr ""
|
||||
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default translation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update your preferences here."
|
||||
msgstr ""
|
||||
|
||||
msgid "Make a Bible Popup from selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bible Online Popup Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Make a link to BibleOnline.ru from Bible's reference"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,58 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Stronger Admin Bar v1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2014-05-18 16:21:49+0000\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: CSL v1.x\n"
|
||||
"X-Poedit-Language: \n"
|
||||
"X-Poedit-Country: \n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: \n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "Stronger Admin Bar"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "http://wordpress.org/plugins/stronger-admin-bar"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "Adds more space to the adnin bar from top and bottom to make it more useful."
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "silver530"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "http://profiles.wordpress.org/silver530"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "1.0"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "easy-attachments-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.21.0",
|
||||
"color": "^3.1.2",
|
||||
"querystring": "^0.2.0",
|
||||
"react-fetch-progressbar": "^1.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
# Translation of the WordPress plugin Blogware Importer 0.2 by wordpressdotorg.
|
||||
# Copyright (C) 2010 wordpressdotorg
|
||||
# This file is distributed under the same license as the Blogware Importer package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blogware Importer 0.2\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/blogware-importer\n"
|
||||
"POT-Creation-Date: 2010-06-01 13:26+0300\n"
|
||||
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\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"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
|
||||
#: blogware-importer.php:39
|
||||
msgid "Import Blogware"
|
||||
msgstr ""
|
||||
|
||||
#: blogware-importer.php:48
|
||||
msgid ""
|
||||
"Howdy! This importer allows you to extract posts from Blogware XML export "
|
||||
"file into your site. Pick a Blogware file to upload and click Import."
|
||||
msgstr ""
|
||||
|
||||
#: blogware-importer.php:115
|
||||
#, php-format
|
||||
msgid "Post <em>%s</em> already exists."
|
||||
msgstr ""
|
||||
|
||||
#: blogware-importer.php:117
|
||||
#, php-format
|
||||
msgid "Importing post <em>%s</em>..."
|
||||
msgstr ""
|
||||
|
||||
#: blogware-importer.php:124
|
||||
msgid "Couldn’t get post ID"
|
||||
msgstr ""
|
||||
|
||||
#: blogware-importer.php:170
|
||||
#, php-format
|
||||
msgid "%s comment"
|
||||
msgid_plural "%s comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blogware-importer.php:193
|
||||
#, php-format
|
||||
msgid "All done. <a href=\"%s\">Have fun!</a>"
|
||||
msgstr ""
|
||||
|
||||
#: blogware-importer.php:226
|
||||
msgid "Blogware"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# blogware-importer.pot (Blogware Importer 0.2) #-#-#-#-#
|
||||
#. Description of the plugin/theme
|
||||
#: blogware-importer.php:226
|
||||
msgid "Import posts from Blogware."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Blogware Importer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://wordpress.org/extend/plugins/blogware-importer/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "wordpressdotorg"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://wordpress.org/"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
3
spec/fixtures/dynamic_finders/plugin_version/booster-for-elementor/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/booster-for-elementor/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
== Changelog ==
|
||||
= 1.0 =
|
||||
. Initial release
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,125 @@
|
||||
# Copyright (C) 2019 The BuddyPress Community
|
||||
# This file is distributed under the same license as the BP Beta Tester plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BP Beta Tester 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/buddypress/bp-beta-tester/issues\n"
|
||||
"Last-Translator: imath <imath@chat.wordpress.org>\n"
|
||||
"Language-Team: ENGLISH\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-11-29T04:00:00+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: bp-beta-tester\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BP Beta Tester"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/buddypress/bp-beta-tester"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A plugin to switch between stable, beta or RC versions of BuddyPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "The BuddyPress Community"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://buddypress.org"
|
||||
msgstr ""
|
||||
|
||||
#. translators: the %s placeholder is for the BuddyPress release tag.
|
||||
#: inc/functions.php:256
|
||||
msgid "Install %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: the %s placeholder is for the BuddyPress release tag.
|
||||
#: inc/functions.php:276
|
||||
msgid "Upgrade to %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:327
|
||||
#: inc/functions.php:499
|
||||
#: inc/functions.php:520
|
||||
msgid "Beta Test BuddyPress"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:332
|
||||
msgid "Main actions"
|
||||
msgstr ""
|
||||
|
||||
#. translators: the %s placeholder is for the BuddyPress release tag.
|
||||
#: inc/functions.php:344
|
||||
msgid "Downgrade to %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s is the current user display name and %2$s is a heart dashicon.
|
||||
#: inc/functions.php:367
|
||||
msgid "Thank you so much %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:374
|
||||
msgid "Thanks for contributing to BuddyPress: beta testing the plugin is very important to make sure it behaves the right way for you and for the community."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:375
|
||||
msgid "Although the BuddyPress Core Development Team is regularly testing it, it's very challenging to test every possible configuration of WordPress and BuddyPress."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the link to the WP Core Contributor handbook page about installing WordPress locally.
|
||||
#: inc/functions.php:380
|
||||
msgid "Please make sure to avoid using this plugin on a production site: beta testing is always safer when it's done on a %s of your site or on a testing site."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:381
|
||||
msgid "local copy"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s is the link to the BuddyPress account on Twitter and %2$s is the link to the BuddyPress blog.
|
||||
#: inc/functions.php:391
|
||||
msgid "There is no pre-releases to test currently. Please consider following BuddyPress %1$s or checking %2$s regularly to be informed of the next pre-releases."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:392
|
||||
msgid "on Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:393
|
||||
msgid "our blog"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:398
|
||||
msgid "Have you found a bug or a possible improvement?"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s is the link to the BuddyPress Trac and %2$s is the link to the BuddyPress Support forums.
|
||||
#: inc/functions.php:403
|
||||
msgid "Please let us know about it opening a new ticket on our %1$s or posting a new topic in our %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:404
|
||||
msgid "Development Tracker"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:405
|
||||
msgid "support forums"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:409
|
||||
msgid "One of the Core Developers/Support forum moderators will review your feedback and we'll do our best to fix it before the stable version is made available to the public."
|
||||
msgstr ""
|
||||
|
||||
#. translators: the %s placeholder is for the BuddyPress release tag.
|
||||
#: inc/functions.php:480
|
||||
msgid "The BuddyPress version %s is not available on WordPress.org."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:498
|
||||
msgid "BuddyPress Beta Tester"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,20 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BuddyPress Edit User Profiles v1.3.1\n"
|
||||
"POT-Creation-Date: 2016-12-15 13:55-0500\n"
|
||||
"PO-Revision-Date: 2016-12-15 13:55-0500\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Sean Newby <sean@seannewby.ca>\n"
|
||||
"Language: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../bp-edit-user-profiles.php:51
|
||||
msgid "Edit BuddyPress Profile"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,86 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bulk Plugin Installation v1.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-01-12 13:59-0700\n"
|
||||
"PO-Revision-Date: 2013-01-14 13:36:08+0000\n"
|
||||
"Last-Translator: Bee Estudio Web\n"
|
||||
"Language-Team: Bee Estudio Web\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-Language: \n"
|
||||
"X-Poedit-Country: \n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#: bulk-plugin-installation.php:56
|
||||
#@ bulk-plugin-installation
|
||||
msgid "Install plugins from URL/name"
|
||||
msgstr "Instalar plugins desde URL o por nombre"
|
||||
|
||||
#: bulk-plugin-installation.php:57
|
||||
#@ bulk-plugin-installation
|
||||
msgid "Type the plugin names, the WordPress plugin page URLs, or the direct URLs to the zip files, one on each line."
|
||||
msgstr "Escriba el nombre de los plugins, la URL del plugin en Wordpress, o directamente la URL del archivo ZIP. Un plugin por línea."
|
||||
|
||||
#: bulk-plugin-installation.php:61
|
||||
#@ bulk-plugin-installation
|
||||
msgid "Install now"
|
||||
msgstr "Instalar ahora"
|
||||
|
||||
#: bulk-plugin-installation.php:75
|
||||
#@ bulk-plugin-installation
|
||||
msgid "You are not logged in."
|
||||
msgstr "Usted no está logueado."
|
||||
|
||||
#: bulk-plugin-installation.php:77
|
||||
#@ bulk-plugin-installation
|
||||
msgid "You do not have the necessary administrative rights to be able to install plugins."
|
||||
msgstr "Usted no tiene los derechos administrativos necesarios para instalar plugins."
|
||||
|
||||
#: bulk-plugin-installation.php:89
|
||||
#@ bulk-plugin-installation
|
||||
msgid "No data supplied."
|
||||
msgstr "No se suministró información."
|
||||
|
||||
#: bulk-plugin-installation.php:146
|
||||
#: bulk-plugin-installation.php:155
|
||||
#@ bulk-plugin-installation
|
||||
msgid "Couldn't install plugin, perhaps you misspelled the name?"
|
||||
msgstr "No se pudo instalar el plugin, ¿tal vez escribiste mal el nombre?"
|
||||
|
||||
#: bulk-plugin-installation.php:152
|
||||
#: bulk-plugin-installation.php:168
|
||||
#: bulk-plugin-installation.php:177
|
||||
#, php-format
|
||||
#@ bulk-plugin-installation
|
||||
msgid "Installing plugin: %s"
|
||||
msgstr "Instalando plugin: %s"
|
||||
|
||||
#: bulk-plugin-installation.php:185
|
||||
#@ bulk-plugin-installation
|
||||
msgid "No valid data supplied."
|
||||
msgstr "No se suministró información válida."
|
||||
|
||||
#: bulk-plugin-installation.php:249
|
||||
#@ bulk-plugin-installation
|
||||
msgid "No plugin specified"
|
||||
msgstr "No se especificó el plugin"
|
||||
|
||||
#: bulk-plugin-installation.php:264
|
||||
#@ bulk-plugin-installation
|
||||
msgid "Installation failed"
|
||||
msgstr "Falló la instalación"
|
||||
|
||||
#: bulk-plugin-installation.php:266
|
||||
#, php-format
|
||||
#@ bulk-plugin-installation
|
||||
msgid "Successfully installed the plugin <strong>%s </strong>."
|
||||
msgstr "El plugin <strong>%s </strong> se instaló satisfactoriamente."
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
# Copyright (C) 2013 MELONIQ.NET
|
||||
# This file is distributed under the same license as the BulkPress - Export package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BulkPress - Export 0.1\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulkpress-export\n"
|
||||
"POT-Creation-Date: 2013-03-27 16:17+0100\n"
|
||||
"PO-Revision-Date: 2013-03-27 16:18+0100\n"
|
||||
"Last-Translator: MELONIQ.NET\n"
|
||||
"Language-Team: MELONIQ.NET\n"
|
||||
"Language: English\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-Generator: Poedit 1.5.5\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
"_nx_noop:1,2,3c\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../admin-page.php:4
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:11 ../bulkpress-export.php:46
|
||||
msgid "BulkPress - Export"
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:12
|
||||
msgid ""
|
||||
"When you click the button below, it will create an formatted file for you to "
|
||||
"save to your computer."
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:13
|
||||
msgid ""
|
||||
"Once you've saved the download file, you can use the BulkPress plugin in "
|
||||
"another WordPress installation to import the content from this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:20
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:27
|
||||
msgid "Select the taxonomy which you would like to export."
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:31
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:33
|
||||
msgid "Names"
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:34
|
||||
msgid "Slugs"
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:35
|
||||
msgid "Choose what to export."
|
||||
msgstr ""
|
||||
|
||||
#: ../admin-page.php:42
|
||||
msgid "Download Export File"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,240 @@
|
||||
# Translation of the WordPress plugin Business Block Widget 1.4 by grandslambert.
|
||||
# Copyright (C) 2011 grandslambert
|
||||
# This file is distributed under the same license as the Business Block Widget package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Business Block Widget 1.4\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-block-widget\n"
|
||||
"POT-Creation-Date: 2011-02-10 20:15-0600\n"
|
||||
"PO-Revision-Date: 2011-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=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: business-block-widget.php:50
|
||||
msgid "Add a widget with business contact information. By GrandSlambert."
|
||||
msgstr ""
|
||||
|
||||
#: business-block-widget.php:99
|
||||
msgid " Settings"
|
||||
msgstr ""
|
||||
|
||||
#: business-block-widget.php:118
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:19
|
||||
msgid "Credits"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:23
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Thank you for trying the %1$s plugin - I hope you find it useful. For the "
|
||||
"latest updates on this plugin, vist the %2$s. If you have problems with this "
|
||||
"plugin, please use our %3$s or read the %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:25
|
||||
msgid "official site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:26
|
||||
msgid "Support Forum"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:27
|
||||
msgid "Documentation Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:32
|
||||
#, php-format
|
||||
msgid "This plugin is © %1$s by %2$s and is released under the %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:35
|
||||
msgid "GNU General Public License"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:42
|
||||
msgid "Donate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:45
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you find this plugin useful, please consider supporting this and our "
|
||||
"other great %1$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:45
|
||||
msgid "plugins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/footer.php:46
|
||||
msgid "Donate a few bucks!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:20 includes/options-panel.php:25
|
||||
msgid "Default Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:29
|
||||
msgid "Link Name to URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:33
|
||||
msgid "Default Link Target"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:35
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:36
|
||||
msgid "New Window"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:37
|
||||
msgid "Top Window"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:41
|
||||
msgid "Default Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:48
|
||||
msgid "Web Link Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:52
|
||||
msgid "Email Link Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:64
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:72
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:74
|
||||
msgid ""
|
||||
"This page sets the defaults for each widget. Each of these settings can be "
|
||||
"overridden when you add a business block to the sidebar."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:75
|
||||
msgid "You are using"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:79
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:81
|
||||
#, php-format
|
||||
msgid ""
|
||||
"After setting the defaults, you can add widgets on the %1$s screen. Each of "
|
||||
"the defaults to the left can be overridden for each individual instance. "
|
||||
"Information for each business is stored with the widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:82
|
||||
msgid "Appearance » Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:88
|
||||
msgid "Recent Contributors"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-panel.php:91
|
||||
msgid ""
|
||||
"GrandSlambert would like to thank these wonderful contributors to this "
|
||||
"plugin!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:21
|
||||
msgid "Widget Title:<br /><small>Leave blank to use Business Name</small>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:27
|
||||
msgid "Link Name To URL:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:33
|
||||
msgid "Display Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:40
|
||||
msgid "Business Information"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:43
|
||||
msgid "Business Name:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:49
|
||||
msgid "Business Address:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:56
|
||||
msgid "City:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:62
|
||||
msgid "State:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:68
|
||||
msgid "Postal Code:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:72
|
||||
msgid "Telephone Numbers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:92
|
||||
msgid "Web Information"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:96
|
||||
msgid "Business Web Site:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:102
|
||||
msgid "Link Target:<br /><small>Affects all links in the widget.</small>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widget-form.php:112
|
||||
msgid ""
|
||||
"Contact Page:<br /><small>Can be a web page URL or an email address preceded "
|
||||
"by mailto:</small"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Business Block Widget"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://businessblockwidget.grandslambert.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Create widgets to display business contact information"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "grandslambert"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://grandslambert.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,172 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cache Images\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/cache-images\n"
|
||||
"POT-Creation-Date: 2010-12-03 21:08+0000\n"
|
||||
"PO-Revision-Date: 2012-02-09 16:54+0330\n"
|
||||
"Last-Translator: Amir GraphX <amirgraphx@gmail.com>\n"
|
||||
"Language-Team: Persian WP <info@PersianWP.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Persian\n"
|
||||
"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
|
||||
|
||||
#: cache-images.php:46
|
||||
msgid "Settings"
|
||||
msgstr "تنظیمات"
|
||||
|
||||
#: cache-images.php:47
|
||||
msgid "Scanning"
|
||||
msgstr "بررسی کردن"
|
||||
|
||||
#: cache-images.php:86
|
||||
msgid "Cache Remote Images"
|
||||
msgstr "ذخیره تصاویر"
|
||||
|
||||
#: cache-images.php:94
|
||||
msgid "Remote Image Caching"
|
||||
msgstr "ذخیره سازی تصاویر از راه دور"
|
||||
|
||||
#: cache-images.php:95
|
||||
msgid "Here’s how this works:"
|
||||
msgstr "شیوه ی کار افزونه:"
|
||||
|
||||
#: cache-images.php:97
|
||||
msgid "Click the button below and we’ll scan all of your posts for remote images"
|
||||
msgstr "بر روی دکمه زیر کلیک کنید تا تمام مطالب شما بررسی شود"
|
||||
|
||||
#: cache-images.php:97
|
||||
#: cache-images.php:315
|
||||
msgid "Button <strong>Scan</strong> will search only for images that are hotlinked (ie. used like in example <code><img src=\"http://example.com/picture.jpg\" /></code>), while button <strong>Scan (including linked)</strong> will search for images that are only linked from this site (ie. ised like in example <code><a href=\"http://example.com/picture.jpg\">example</a></code>). Use second button with caution!"
|
||||
msgstr "دکمه <strong>بررسی </strong> فقط تصاویری که درون پست ها نمایش داده می شود جستجو خواهد کرد (به عنوان مثال <code><img src=\"http://example.com/picture.jpg\" /></code>), در صورتی که دکمه <strong>بررسی (شامل دارای پیوند)</strong> تصاویری که لینک شده از این سایت هستند جستجو خواهد کرد (به عنوان مثال <code><a href=\"http://example.com/picture.jpg\">example</a></code>). از دکمه دوم با احتیاط استفاده کنید!"
|
||||
|
||||
#: cache-images.php:98
|
||||
msgid "Then you’ll be presented with a list of domains. For each domain, press button Cache from this domain"
|
||||
msgstr "سپس شما لیست دامنه ها را مشاهده خواهید کرد. برای هر دامنه بر روی ذخیره از این دامنه کلیک کنید"
|
||||
|
||||
#: cache-images.php:99
|
||||
msgid "The images will be copied to your upload directory, the links in your posts will be updated to the new location, and images will be added to your media library, associated to first post from where they are found."
|
||||
msgstr "تصاویر درون پوشه آپلود شما ذخیره خواهد شد ، پیوند های درون مطالب شما با پیوند جدید جایگزین شده و تصاویر درون رسانه شما بر اساس اولین مطلب از دامنه ای که پیدا شده اضافه خواهد شد."
|
||||
|
||||
#: cache-images.php:107
|
||||
msgid "Tip:"
|
||||
msgstr "نکته:"
|
||||
|
||||
#: cache-images.php:108
|
||||
msgid "You can install plugin WP Smush.it to reduce image file sizes and improve performance using the Smush.it API."
|
||||
msgstr "شما می توانید افزونه WP Smush.it را برای کاهش اندازه تصاویر نصب کرده و عملکرد خود را بهبود ببخشید."
|
||||
|
||||
#: cache-images.php:109
|
||||
#, php-format
|
||||
msgid " (<a href='%s'>read more about WP Smush.it</a>)"
|
||||
msgstr " (<a href='%s'>درباره WP Smush.it بیشتر بخوانید</a>)"
|
||||
|
||||
#: cache-images.php:110
|
||||
#, php-format
|
||||
msgid "<a href='%s' class='thickbox'>Install WP Smush.it</a>"
|
||||
msgstr "<a href='%s' class='thickbox'>WP Smush.it را نصب کنید</a>"
|
||||
|
||||
#: cache-images.php:123
|
||||
#: cache-images.php:159
|
||||
#: cache-images.php:392
|
||||
#: cache-images.php:412
|
||||
#: cache-images.php:428
|
||||
msgid "No posts with images were found."
|
||||
msgstr "هیچ مطلب تصویر داری پیدا نشد."
|
||||
|
||||
#: cache-images.php:129
|
||||
#: cache-images.php:165
|
||||
msgid "We found some results. Choose the domains from where you want to grab images from by clicking on a button \"Cache from this domain\" next to it."
|
||||
msgstr "تعدادی تصویر پیدا شد. دامنه ای که می خواهید تصاویرش ذخیره شود را با کلیک بر روی \"ذخیره از این دامنه\" انتخاب کنید."
|
||||
|
||||
#: cache-images.php:129
|
||||
#: cache-images.php:165
|
||||
msgid "<strong>Note</strong>: you <strong>must not close</strong> this page while caching is performed. You can close it when you see message \"Done caching from...\" and yellow bar is removed"
|
||||
msgstr "<strong>توجه</strong>:این صفحه را تا زمانی که عملیات ذخیره سازی تمام نشده است <strong> نباید ببندید </strong>.زمانی می توانید ببندید که پیغام \"ذخیره سازی انجام شد از...\" را مشاهده کرده و نوار زرد رنگ حذف شده باشد."
|
||||
|
||||
#: cache-images.php:135
|
||||
#: cache-images.php:171
|
||||
#, php-format
|
||||
msgid "results: %1$s"
|
||||
msgstr "نتایج: %1$s"
|
||||
|
||||
#: cache-images.php:135
|
||||
#: cache-images.php:171
|
||||
msgid "Cache from this domain"
|
||||
msgstr "ذخیره از این دامنه"
|
||||
|
||||
#: cache-images.php:143
|
||||
#: cache-images.php:179
|
||||
#: cache-images.php:244
|
||||
#: cache-images.php:296
|
||||
#, php-format
|
||||
msgid "Error %1$s"
|
||||
msgstr "خطا %1$s"
|
||||
|
||||
#: cache-images.php:201
|
||||
#: cache-images.php:253
|
||||
msgid "Reading posts..."
|
||||
msgstr "در حال خواندن مطالب..."
|
||||
|
||||
#: cache-images.php:216
|
||||
#: cache-images.php:268
|
||||
#, php-format
|
||||
msgid "Done caching from %1$s"
|
||||
msgstr "ذخیره سازی از %1$s انجام شد"
|
||||
|
||||
#: cache-images.php:222
|
||||
#: cache-images.php:274
|
||||
#, php-format
|
||||
msgid "Caching %1$s of %2$s"
|
||||
msgstr "ذخیره سازی %1$s از %2$s"
|
||||
|
||||
#: cache-images.php:313
|
||||
msgid "Scan »"
|
||||
msgstr "بررسی »"
|
||||
|
||||
#: cache-images.php:314
|
||||
msgid "Scan (including linked) »"
|
||||
msgstr "بررسی (شامل دارای پیوند) »"
|
||||
|
||||
#: cache-images.php:314
|
||||
msgid "what is difference?"
|
||||
msgstr "تفاوتشان چیست؟"
|
||||
|
||||
#: cache-images.php:322
|
||||
#, php-format
|
||||
msgid "Last cached picture: %1$s"
|
||||
msgstr "آخرین تصویر ذخیره شده: %1$s"
|
||||
|
||||
#. #-#-#-#-# plugin.pot (Cache Images 3.1) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: cache-images.php:550
|
||||
msgid "Cache Images"
|
||||
msgstr "ذخیره تصاویر"
|
||||
|
||||
#: cache-images.php:551
|
||||
msgid "Automatic caching"
|
||||
msgstr "ذخیره سازی خودکار"
|
||||
|
||||
#: cache-images.php:566
|
||||
msgid "Automatically cache images on post’s saving"
|
||||
msgstr "هنگام انتشار مطلب به صورت خودکار تصاویر را ذخیره کن"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://wordpress.org/extend/plugins/cache-images/"
|
||||
msgstr "http://wordpress.org/extend/plugins/cache-images/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Goes through your posts and gives you the option to cache all hotlinked images from a domain locally in your upload folder"
|
||||
msgstr "مطالب شما را بررسی کرده و به شما این امکان را میدهد تا تصاویری که از سایت های دیگر وجود دارد بر روی پوشه ی آپلود خود ذخیره کنید"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Matt Mullenweg"
|
||||
msgstr "مت مولنوگ"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://ma.tt/"
|
||||
msgstr "http://ma.tt/"
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
# Copyright (C) 2019 Calculated fields for ACF
|
||||
# This file is distributed under the same license as the Calculated fields for ACF package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Calculated fields for ACF 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/calculated-fields-"
|
||||
"for-acf\n"
|
||||
"POT-Creation-Date: 2019-12-05 17:12:43+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: calculated-fields-for-acf.php:43
|
||||
msgid "Formula"
|
||||
msgstr ""
|
||||
|
||||
#: calculated-fields-for-acf.php:44
|
||||
msgid "Simple math expression. Refer to other fields using their field name"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Calculated fields for ACF"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.wundermatics.com/product/calculated-fields-for-acf"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Simple field math for Advanced Custom Fields"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Wundermatics"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wundermatics.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,161 @@
|
||||
# Copyright (C) 2020 WPplugins.Tech
|
||||
# This file is distributed under the same license as the Category Tag Tidy plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Category Tag Tidy 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/category-tag-"
|
||||
"tidy\n"
|
||||
"POT-Creation-Date: 2020-01-02T03:27:50+01:00\n"
|
||||
"PO-Revision-Date: 2020-01-02 13:33+1100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Domain: category-tag-tidy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-category-tag-tidy-admin.php:84
|
||||
#: admin/class-category-tag-tidy-admin.php:85
|
||||
#: admin/class-category-tag-tidy-admin.php:99
|
||||
#: admin/class-category-tag-tidy-admin.php:100
|
||||
#: admin/class-category-tag-tidy-admin.php:117
|
||||
msgid "Category Tag Tidy"
|
||||
msgstr "Category Tag Tidy"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/wpplugins-tech/category-tag-tidy"
|
||||
msgstr "https://github.com/wpplugins-tech/category-tag-tidy"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Allows easy deletion of unused categories and tags - maintains existing "
|
||||
"category structure."
|
||||
msgstr ""
|
||||
"Allows easy deletion of unused categories and tags - maintains existing "
|
||||
"category structure."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPplugins.Tech"
|
||||
msgstr "WPplugins.Tech"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpplugins.tech"
|
||||
msgstr "http://www.wpplugins.tech"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:150
|
||||
msgid "Category and Tag Tidy"
|
||||
msgstr "Category and Tag Tidy"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:153
|
||||
msgid "Clear all unused Tags or Categories for all Blogs on this Network"
|
||||
msgstr "Clear all unused Tags or Categories for all Blogs on this Network"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:154
|
||||
msgid "across ALL blogs on this network"
|
||||
msgstr "across ALL blogs on this network"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:156
|
||||
msgid "Clear all unused Tags or Categories from blog"
|
||||
msgstr "Clear all unused Tags or Categories from blog"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:169
|
||||
msgid "Select Taxonomies to Tidy"
|
||||
msgstr "Select Taxonomies to Tidy"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:173
|
||||
msgid "Categories"
|
||||
msgstr "Categories"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:177
|
||||
msgid "Post Tags"
|
||||
msgstr "Post Tags"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:180
|
||||
#| msgid ""
|
||||
#| "How it works: In order to maintain your categories structure - unused "
|
||||
#| "parent categories will not be deleted if they have a child category which "
|
||||
#| "is in use."
|
||||
msgid ""
|
||||
"How it works: In order to maintain your categories structure - unused parent "
|
||||
"categories will not be deleted if they have a child category still in use."
|
||||
msgstr ""
|
||||
"How it works: In order to maintain your categories structure - unused parent "
|
||||
"categories will not be deleted if they have a child category still in use."
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:181
|
||||
msgid "Tags are not hierarchical so all non-used tags will be deleted."
|
||||
msgstr "Tags are not hierarchical so all non-used tags will be deleted."
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:182
|
||||
msgid ""
|
||||
"Categories or Tags linked with content in the trash will not be deleted."
|
||||
msgstr ""
|
||||
"Categories or Tags linked with content in the trash will not be deleted."
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:183
|
||||
msgid "Note: you will be asked to confirm on the next screen"
|
||||
msgstr "Note: you will be asked to confirm on the next screen"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:187
|
||||
msgid "Run Tag Tidy"
|
||||
msgstr "Run Tag Tidy"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:201
|
||||
msgid "This process will clear all unused <b>tags</b> and <b>categories</b>"
|
||||
msgstr "This process will clear all unused <b>tags</b> and <b>categories</b>"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:203
|
||||
msgid "This process will clear all unused <b>tags</b>"
|
||||
msgstr "This process will clear all unused <b>tags</b>"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:205
|
||||
msgid "This process will clear all unused <b>categories</b>"
|
||||
msgstr "This process will clear all unused <b>categories</b>"
|
||||
|
||||
#. translators: %s is replaced with the back link
|
||||
#: admin/class-category-tag-tidy-admin.php:213
|
||||
msgid "Please go <a href=\"%s\">back</a> and select a taxonomy"
|
||||
msgstr "Please go <a href=\"%s\">back</a> and select a taxonomy"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:221
|
||||
msgid "Are you sure you wish to proceed?"
|
||||
msgstr "Are you sure you wish to proceed?"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:222
|
||||
msgid "<b>Note:</b> This action is <i>not</i> reversible"
|
||||
msgstr "<b>Note:</b> This action is <i>not</i> reversible"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:227
|
||||
msgid "Let's Do it!"
|
||||
msgstr "Let's Do it!"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:254
|
||||
msgid "Processing post categories: "
|
||||
msgstr "Processing post categories: "
|
||||
|
||||
#. translators: %d is replaced with the number 1 (for one term deleted)
|
||||
#: admin/class-category-tag-tidy-admin.php:258
|
||||
#: admin/class-category-tag-tidy-admin.php:270
|
||||
msgid "%d term deleted"
|
||||
msgstr "%d term deleted"
|
||||
|
||||
#. translators: %d is replaced with number of deleted terms
|
||||
#: admin/class-category-tag-tidy-admin.php:261
|
||||
#: admin/class-category-tag-tidy-admin.php:272
|
||||
msgid "%d terms deleted"
|
||||
msgstr "%d terms deleted"
|
||||
|
||||
#: admin/class-category-tag-tidy-admin.php:267
|
||||
msgid "Processing post tags: "
|
||||
msgstr "Processing post tags: "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This is a short description of what the plugin does. It's displayed in "
|
||||
#~ "the WordPress admin area."
|
||||
#~ msgstr ""
|
||||
#~ "This is a short description of what the plugin does. It's displayed in "
|
||||
#~ "the WordPress admin area."
|
||||
@@ -0,0 +1,89 @@
|
||||
# Copyright (C) 2010 Change Password and E-mail
|
||||
# This file is distributed under the same license as the Change Password and E-mail package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Change Password and E-mail 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/change-password-e-mail\n"
|
||||
"POT-Creation-Date: 2011-04-15 23:15:01+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: change-password-e-mail.php:32 change-password-e-mail.php:116
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:33 change-password-e-mail.php:150
|
||||
msgid "Change E-mail"
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:55
|
||||
msgid "Password updated."
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:87
|
||||
msgid "E-mail Address updated."
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:128
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:130
|
||||
msgid ""
|
||||
"If you would like to change the password type a new one. Otherwise leave "
|
||||
"this blank."
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:132
|
||||
msgid "Type your new password again."
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:134
|
||||
msgid "Strength indicator"
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:135
|
||||
msgid ""
|
||||
"Hint: The password should be at least seven characters long. To make it "
|
||||
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
||||
"$ % ^ & )."
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:141
|
||||
msgid "Update Password"
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:161
|
||||
msgid "E-mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: change-password-e-mail.php:168
|
||||
msgid "Update E-mail Address"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Change Password and E-mail"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://scottkclark.com/wordpress/change-password-e-mail/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Creates Change Password and Change E-mail pages under Users to circumvent "
|
||||
"default user profile editor for simple implementations on sites which don't "
|
||||
"need full user options. Best used in conjunction with Adminimize."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Scott Kingsley Clark"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://scottkclark.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,619 @@
|
||||
# German Clean Options Language File - de_DE
|
||||
# Copyright (C) 2007, 2008, 2009, 2010, Mittineague
|
||||
# This file is distributed under the same license as the Clean Options package.
|
||||
# Mittineague <http://www.mittineague.com>, 2007, 2008, 2009, 2010.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Clean Options 1.3.2\n"
|
||||
"Report-Msgid-Bugs-To: <http://www.mittineague.com/blog/2009/04/ping-watcher-translations/>\n"
|
||||
"POT-Creation-Date: 2010-03-01 22:21+0000\n"
|
||||
"PO-Revision-Date: 2010-04-15 22:28+0100\n"
|
||||
"Last-Translator: Thomas Knapp <quitzlipochtli@gmail.com>\n"
|
||||
"Language-Team: Thomas Knapp <quitzlipochtli@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-Language: German\n"
|
||||
"X-Poedit-Country: AUSTRIA\n"
|
||||
|
||||
# "Tools" should be the same as the core's admin menu
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:173
|
||||
msgid "Tools"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
# "get_option" and "get_settings" are code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:382
|
||||
msgid "Listed Options are those that are found in the wp_options table but are not referenced by \"get_option\" or \"get_settings\" by any of the PHP files located within your blog directory. If you have deactivated plugins and/or non-used themes in your directory, the associated options will not be considered orphaned until the files are removed."
|
||||
msgstr "Die aufgelisteten Optionen sind jene, die in der wp_options Tabelle eingetragen sind, aber mittels \"get_option\" oder \"get_settings\" keiner PHP-Datei im Verzeichnes deines Blogs zugeordnet werden können. Wenn du ein Plugin oder Theme deaktiviert hast, werden die dazugehörigen Optionen nicht als verwaist betrachtet, bis du die Dateien gelöscht hast."
|
||||
|
||||
# "rss_hash" and wp_options are code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:386
|
||||
msgid "Most likely there are an extreme number of \"rss_hash\" rows in the wp_options table."
|
||||
msgstr "Wahrscheinlich gibt es sehr viele \"rss_hash\" Zeilen in der Tabelle wp_options"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:387
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:514
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:526
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1296
|
||||
msgid "WARNING"
|
||||
msgstr "ACHTUNG"
|
||||
|
||||
# %s = the "Delete ALL 'rss' Options" button's text
|
||||
# "rss_hash" is code and should NOT be transslated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:387
|
||||
#, php-format
|
||||
msgid "To avoid excessive memory use, using \"%s\" does not attempt to list all of the \"rss_hash\" options, nor will you be able to review the contents."
|
||||
msgstr "Um zu großen Speicherverbrauch zu vermeiden, wird \"%s\" nicht versuchen, alle \"rss_hash\" Optionen anzuzeigen, noch wirst du den Inhalt überprüfen können."
|
||||
|
||||
# 'rss' is code and should NOT be transslated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:387
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:388
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:389
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1596
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1686
|
||||
msgid "Delete ALL 'rss' Options"
|
||||
msgstr "ALLE 'rss' Optionen löschen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:388
|
||||
#, php-format
|
||||
msgid "\"%s\" attempts to provide some measure against the deletion of current \"rss_hash\" options by not deleting any \"rss_hash\" rows with an option_id newer than (the last row id - %d ). Because plugins and themes also add rows to the wp_options table, depending on your recent installation history, this may remove <strong>ALL</strong> of the \"rss_hash\" options, both older AND <strong>CURRENT</strong> ones, no questions asked."
|
||||
msgstr "\"%s\" versucht die Entfernung aktueller \"rss_hash\" Optionen zu vermeiden, indem keine \"rss_hash\" Zeien gelöscht werden, deren option_id jünger als (the last row id - %d) ist. Da Plugins und Themes aber ebenfalls Zeilen in die wp_options Tabelle einfügen, können abhängig davon was du wann installiert hast, ALLE \"rss_hash\" Optionen (alte und aktuelle) gelöscht werden, ohne das nochmals nachgefragt wird!"
|
||||
|
||||
# %1$s = the "Delete ALL 'rss' Options" button's text
|
||||
# %2$s = the "Find Orphaned Options" button's text
|
||||
# "rss_hash" is code and should NOT be transslated
|
||||
# "break" should be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:389
|
||||
#, php-format
|
||||
msgid "Although removing current \"rss_hash\" rows should not \"break\" your WordPress blog (they should be entered again next time the feed is cached), please <strong>BACKUP</strong> your database <strong>BEFORE</strong> doing this.<br />After using \"%1$s\", you should \"%2$s\" to clean the wp_options table further."
|
||||
msgstr "Auch wenn das Löschen aktueller \"rss_hash\" Zeilen dein WordPress Blog nicht \"zerstören\" sollte (sie sollten wieder eingetragen werden, wenn der Feed das nächste Mal gecached wird), mach bitte ein <strong>BACKUP</strong> deiner Datenbank, bevor du etwas löscht. Nachdem du \"%1$s\" verwendet hast, kannst du mit \"%2$s\" deine wp_options Tabelle weiter säubern."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:389
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1610
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1659
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1700
|
||||
msgid "Find Orphaned Options"
|
||||
msgstr "Suche verwaiste Optionen"
|
||||
|
||||
# "Find" refers to the operation that occurs when the "Find Orphaned Options" button is clicked
|
||||
# "Find" should be translated to the same as the button text's Find: msgid "Find Orphaned Options"
|
||||
# "rss_hash" is code and should NOT be transslated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:390
|
||||
msgid "It is <strong>highly recommended</strong> that you Limit the \"Find\" to only a selected number of the most recent \"rss_hash\" options Instead and repeat the process until the number becomes manageable."
|
||||
msgstr "Ist ist <strong>sehr empfehlenswert</strong> die Zahl der zu suchenden \"rss_hash\" Optionen zu beschränken, und den Vorgang solange zu wiederholen, bis die Zahl managebar ist. "
|
||||
|
||||
# "rss_hash" is code and should NOT be transslated
|
||||
# "Find" refers to the operation that occurs when the "Find Orphaned Options" button is clicked
|
||||
# "Find" should be translated to the same as the button text's Find: msgid "Find Orphaned Options"
|
||||
# If plural of "Find" - "Finds" is a problem, please ensure users will understand what it refers to
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:392
|
||||
msgid "The lower the number of \"rss_hash\" option pairs you \"Find\", the less likely it is that you will experience problems with memory during the \"Find\". However, depending on the number of feed rows that are current, the \"Find\" may not include any older ones that can be deleted.<br />The higher the number of \"rss_hash\" pairs you \"Find\", the more likely it is that older ones that can be deleted will be included. But there is a greater chance of having memory problems during the \"Find\".<br />It is suggested that you start off with a lower \"Find\", and increase the number gradually, if you wish to, on subsequent \"Finds\". If you get a memory error, use a lower number.<br />Again said, it is recommended that you scan the results on the review page of anything you select prior to it's deletion, to ensure that you really want to remove it."
|
||||
msgstr "Je weniger \"rss_hash\" Optionenpaare du findest, umso geringer ist die Wahrscheinlich Speicherprobleme während der Suche zu bekommen. Je nach Anzahl der aktuellen Zeilen, könnten aber auch gar keine veralteten, die gelöscht werden können, angezeigt werden. Umgekehrt ist die Wahrscheinlichkeit veraltete Paare zu finden, die gelöscht werden können, höher, je mehr Paare gesucht werden. Das führt aber wie gesagt zu einem höheren Risiko Probleme mit der Speicherauslastung zu bekommen. <br />Deshalb ist es empfehlenswert, mit einer niedrigen Anzahl zu beginnen, und diese langsam zu steigern. Bei Problemen mit dem Speicher, musst du einen geringere Anzahl verwenden. <br />Nochmals der Hinweis darauf, dass du dir die Ergebnisse genau ansehen solltest, um sicher zu gehen, dass wirklich nichts gelöscht wird, was nicht gelöscht werden sollte."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:394
|
||||
msgid "Low Memory usage"
|
||||
msgstr "Niedriger Speicherverbrauch"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:395
|
||||
msgid "Moderate Memory usage"
|
||||
msgstr "Mittlerer Speicherverbrauch"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:396
|
||||
msgid "High Memory usage"
|
||||
msgstr "Hoher Speicherverbrauch"
|
||||
|
||||
# "Find" refers to the operation that occurs when the "Find Orphaned Options" button is clicked
|
||||
# "Find" should be translated to the same as the button text's Find: msgid "Find Orphaned Options"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:397
|
||||
msgid "Find"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:398
|
||||
msgid "10 pairs"
|
||||
msgstr "10 Paare"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:399
|
||||
msgid "25 pairs"
|
||||
msgstr "25 Paare"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:400
|
||||
msgid "50 pairs"
|
||||
msgstr "50 Paare"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:401
|
||||
msgid "75 pairs"
|
||||
msgstr "75 Paare"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:402
|
||||
msgid "100 pairs"
|
||||
msgstr "100 Paare"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:403
|
||||
msgid "125 pairs"
|
||||
msgstr "125 Paare"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:404
|
||||
msgid "150 pairs"
|
||||
msgstr "150 Paare"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:405
|
||||
msgid "175 pairs"
|
||||
msgstr "175 Paare"
|
||||
|
||||
# "Find" refers to the operation that occurs when the "Find Orphaned Options" button is clicked
|
||||
# "Find" should be translated to the same as the button text's Find: msgid "Find Orphaned Options"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:451
|
||||
msgid "Don't show the Known WordPress Core options for this \"Find\""
|
||||
msgstr "Bei dieser Suche die bekannten WordPress Core Optionen nicht anzeigen"
|
||||
|
||||
# "Alternate Syntax" and "Warning" refer to message headers
|
||||
# "Find" refers to the operation that occurs when the "Find Orphaned Options" button is clicked
|
||||
# "Find" should be translated to the same as the button text's Find: msgid "Find Orphaned Options"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:454
|
||||
msgid "Don't show the Alternate Syntax Warnings for this \"Find\""
|
||||
msgstr "Bei dieser Suche keine alternative Syntax anzeigen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:577
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:631
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1396
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1733
|
||||
msgid "File System Error"
|
||||
msgstr "Dateisystemfehler"
|
||||
|
||||
# %s = value of $current_dir variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:577
|
||||
#, php-format
|
||||
msgid "Could not open folder %s"
|
||||
msgstr "Der Ordner %s konnte nicht geöffnet werden"
|
||||
|
||||
# %s = value of $found_file variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:631
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1396
|
||||
#, php-format
|
||||
msgid "Could not open file %s"
|
||||
msgstr "Die Datei %s konnte nicht geöffnet werden"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:672
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:682
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1716
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1717
|
||||
msgid "Alternate Syntax"
|
||||
msgstr "Alternative Syntax"
|
||||
|
||||
# %1$s = value of $found_file variable
|
||||
# %2$s = value of $alt_syntax_match variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:672
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:682
|
||||
#, php-format
|
||||
msgid " %1$s has an option line with %2$s"
|
||||
msgstr "%1$s hat eine Optionszeile mit %2$s"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:726
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1112
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1132
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1145
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1498
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1721
|
||||
msgid "Database Error"
|
||||
msgstr "Datenbankfehler"
|
||||
|
||||
# %s = value of $yes_query variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:726
|
||||
#, php-format
|
||||
msgid "%s (the Orphaned Options query) did not return an array."
|
||||
msgstr "%s (Abfrage verwaister Optionen) brachte kein Ergebnis."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:736
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1156
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1728
|
||||
msgid "Empty Name"
|
||||
msgstr "Leerer Name"
|
||||
|
||||
# %s = value of $yes_opt_val variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:736
|
||||
#, php-format
|
||||
msgid "There is an autoload yes Option with No Name with the value: %s"
|
||||
msgstr "Es gibt eine autoload yes Option mit No Name mit dem Wert: %s"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:749
|
||||
msgid "To double-check options in the Orphaned Options list:"
|
||||
msgstr "Einträge in der Liste der verwaisten Optionen genau prüfen:"
|
||||
|
||||
# "Warning" refers to message header
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:751
|
||||
msgid "Look at the file names in any Warning messages."
|
||||
msgstr "Achte auf die Dateinamen in möglichen Warnhinweisen."
|
||||
|
||||
# "Alternate Syntax" and "Warning" refer to message headers
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:752
|
||||
msgid "Look at the text in any Alternate Syntax Warning messages."
|
||||
msgstr "Achte auf den Text in alle Warnhinweisen zu alternativer Syntax."
|
||||
|
||||
# %s = link to >wp-admin/options.php<
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:753
|
||||
#, php-format
|
||||
msgid "Some information may be available at your %s page."
|
||||
msgstr "Zusätzliche Informationen findest du möglicherweise auf deiner %s Seite"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:754
|
||||
msgid "Try a Google search for the option_name."
|
||||
msgstr "Mit Google nach option_name suchen."
|
||||
|
||||
# msgid "Search files in the wp-content folder by:" OBSOLETE
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:755
|
||||
msgid "Search files by:"
|
||||
msgstr "Dateien "
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:757
|
||||
msgid "entering either a single string eg."
|
||||
msgstr "gib einen einzelnen String ein, z.B."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:758
|
||||
msgid "all_or_portion_of_option_name"
|
||||
msgstr "all_or_portion_of_option_name"
|
||||
|
||||
# %s = hard-coded "*AND*"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:759
|
||||
#, php-format
|
||||
msgid "2 strings separated by %s (in uppercase, enclosed with asterisks) eg."
|
||||
msgstr "2 Strings gentrennt durch %s (in Großbuchstaben, von Sternchen) z.B."
|
||||
|
||||
# %s = hard-coded "*AND*"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:760
|
||||
#, php-format
|
||||
msgid "prefix %s other_words"
|
||||
msgstr "Prefix %s other_words"
|
||||
|
||||
# %s = hard-coded "*AND*"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:761
|
||||
#, php-format
|
||||
msgid "or a maximum of 3 strings separated by %s eg."
|
||||
msgstr "oder maximal 3 Strings getrennt durch %s z.B."
|
||||
|
||||
# %1$s, %2$s = hard-coded "*AND*"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:762
|
||||
#, php-format
|
||||
msgid "prefix%1$sword%2$sother_word"
|
||||
msgstr "Prefix%1$sword%2$sother_word"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:763
|
||||
msgid "Note: all spaces are removed, search is case sensitive."
|
||||
msgstr "Hinweis: Alle Leerzeichen werden entfernt, die Suche ist schreibungsabhängig (case sensitive). "
|
||||
|
||||
# the "View Selected Options Information" button's text
|
||||
# should be translated to the same as: msgid "View Selected Options Information"
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:765
|
||||
msgid "Carefully Review information on the \"View Selected Options Information\" page <i>before</i> deleting the option."
|
||||
msgstr "Lies die Informationen auf der \"View Selected Options Information\" Seite vorm Löschen genau durch."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:768
|
||||
msgid "Possibly Orphaned Options"
|
||||
msgstr "Möglicherweise verwaiste Optionen"
|
||||
|
||||
# "fit" should be translated
|
||||
# "get_option" and "get_settings" are code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:768
|
||||
msgid "The following Options appear to be orphans. When shown, non-selectable Options are known to have been created from files present during upgrade or backup, or are legitimate options that do not \"fit\" the search for get_option or get_settings. If you wish to remove them by other means, do so at your own risk."
|
||||
msgstr "Diese Optionen scheinen verwaist zu sein. Optionen die nicht ausgewählt werden können, wurden entweder bei einem Upgrade oder Backup erzeugt, oder sind gültige Optionen, die aber nicht zur Suche nach get_option oder get_settings \"passen\". Wenn du sie auf andere Art und Weise entfernen willst, sei dir des Risikos bewusst. "
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:961
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1018
|
||||
msgid "No Orphaned Options were found"
|
||||
msgstr "Keine verwaisten Optionen gefunden"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:988
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1000
|
||||
msgid "known WordPress Core option"
|
||||
msgstr "bekannte WordPress Core Option"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1007
|
||||
msgid "Google it"
|
||||
msgstr "Danach googlen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1021
|
||||
msgid "Only WordPress Core Options were found"
|
||||
msgstr "Nur WordPress Core Optionen wurden gefunden"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1026
|
||||
msgid "To look for option_name(s):"
|
||||
msgstr "Nach option_name(s) suchen:"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1027
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1035
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1357
|
||||
msgid "Enter Search String here"
|
||||
msgstr "Suchbegriff eingeben"
|
||||
|
||||
# msgid "Search wp-content folder" OBSOLETE
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1044
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
# %s = value of $ts_query variable
|
||||
# "rss_" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1112
|
||||
#, php-format
|
||||
msgid "%s (the \"rss_\" timestamp Options query) did not return an array"
|
||||
msgstr "%s (die \"rss_\" timestamp Options Abfrage) bekam keine Antwort"
|
||||
|
||||
# %s = value of $non_ts_query variable
|
||||
# "rss_" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1132
|
||||
#, php-format
|
||||
msgid "%s (the \"rss_\" non-timestamp Options query) did not return an array"
|
||||
msgstr "%s (die \"rss_\" non-timestamp Options Abfrage) bekam keine Antwort"
|
||||
|
||||
# %s = value of $no_query variable
|
||||
# "rss_" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1145
|
||||
#, php-format
|
||||
msgid "%s (the \"rss_\" Options query) did not return an array"
|
||||
msgstr "%s (die \"rss_\" Options Abfrage) bekam keine Antwort"
|
||||
|
||||
# %s = value of $no_opt_val variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1156
|
||||
#, php-format
|
||||
msgid "There is an autoload not equal to yes Option with No Name with the value: %s"
|
||||
msgstr "Es gibt eine autoload (nicht yes) Option mit No Name mit dem Wert: %s"
|
||||
|
||||
# "rss_" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1216
|
||||
msgid "The \"rss_\" options are obsolete as of WordPress version 2.8 All are selectable and it should be safe to remove any that remain."
|
||||
msgstr "Die \"rss_\" Optionen sind mit WordPress 2.8 obsolte geworden. Alle sind auswählbar und es sollte kein Problem sein, sie zu löschen."
|
||||
|
||||
# RSS is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1218
|
||||
msgid "RSS Options"
|
||||
msgstr "RSS Optionen"
|
||||
|
||||
# %1$s, %2$s = the select option's "days old" text
|
||||
# RSS is code and should NOT be translated
|
||||
# "rss_" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1218
|
||||
#, php-format
|
||||
msgid "The following contains \"RSS\" Options added to the wp_options table from the blog's dashboard page and other files that parse RSS feeds and cache the results.<br />In each pair, the upper option is the cached feed and the lower is the option's timestamp.<br />Those listed may include options that are <strong>Currently Active</strong>.<br />When shown, \"rss_\" option pairs with dates newer or the same as the date of 14'th newest \"rss_\" option pair (the ones that are more likely to be current) have no checkbox but begin with \"-\" and end with \"<em># %1$s</em>\" in italics.<br />The older \"rss_\" options can be selected and end with \"<strong># %2$s</strong>\" in bold."
|
||||
msgstr "Im Folgenden siehst du \"RSS\"\" Optionen die der wp_options Tabelle vom Dashboard des Blogs hinzugefügt wurden, sowie andere Dateien die RSS Feeds abfragen und im Cache speichern.<br /> Bei jedem Paar ist die obere Option der Feed der im Cache gespeichert wurde, und darunter den Zeiteintrag der Option.<br />Unter den aufgelisteten Optionen können sich solche befinden, die im <strong>im Moment aktiv sind</strong>.<br /> Wenn Paare angezeigt wird, die von jüngerem Datum sind als das 14-neuste \"rss_\" Options-Paar (die wahrscheinlicher aktuell sind) so haben diese keine Checkbox sondern beginnen mit einem \"-\" und enden mit \"<em>#%1$s</em>\" in kursiver Schrift. <br />Die älteren \"rss_\" Optionen können ausgewählt werden und enden mit <strong>#%2$s</strong>\" und sind fett geschrieben."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1218
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1242
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1253
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1268
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1277
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1306
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1312
|
||||
msgid "days old"
|
||||
msgstr "Tage alt"
|
||||
|
||||
# "rss_" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1225
|
||||
msgid "There were No \"rss_\" Options found"
|
||||
msgstr "Keine \"rss_\" Optionen gefunden."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1296
|
||||
msgid "The following options were not paired correctly. Be certain to check their information carefully before you remove them."
|
||||
msgstr "The following options were not paired correctly. Bitte überprüf die Angaben genau, bevor du sie löscht."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1318
|
||||
msgid "ALERT"
|
||||
msgstr "ACHTUNG"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1318
|
||||
msgid "Age Unknown"
|
||||
msgstr "Alter unbekannt"
|
||||
|
||||
# "_ts" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1318
|
||||
msgid "check the age of the corresponding \"_ts\" option."
|
||||
msgstr "Überprüfe das Alter der entsprechenden \"_ts\" Option."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1338
|
||||
msgid "Select all"
|
||||
msgstr "Alle auswählen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1338
|
||||
msgid "Deselect all"
|
||||
msgstr "Nichts auswählen"
|
||||
|
||||
# "all" and "plugin" should be translated
|
||||
# "rss_" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1338
|
||||
msgid "\"all\" means BOTH \"plugin\" AND \"rss_\" options."
|
||||
msgstr "\"Alles\" bedeutet \"Plugin\" UND \"rss_\" Optionen."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1343
|
||||
msgid "View Selected Options Information"
|
||||
msgstr "Informationen über ausgewählte Optionen anzeigen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1437
|
||||
msgid "was found in:"
|
||||
msgstr "wurde gefunden in:"
|
||||
|
||||
# %s = value of $probe_string variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1448
|
||||
#, php-format
|
||||
msgid "No files were found containing %s"
|
||||
msgstr "Es wurden keine Dateien gefunden, die %s enthalten."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1453
|
||||
msgid "No Search string was entered."
|
||||
msgstr "Es wurde kein Suchbegriff eingegeben."
|
||||
|
||||
# %s = link to >first screen<
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1456
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1543
|
||||
#, php-format
|
||||
msgid "Return to the %s"
|
||||
msgstr "Zurück zu %s"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1456
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1543
|
||||
msgid "first screen"
|
||||
msgstr "Anfangsbildschrim"
|
||||
|
||||
# 10th and 20th are abbreviations for tenth and twentieth, if numeric is a problem, please substitute
|
||||
# option_value is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1472
|
||||
msgid "*Note* spaces have been added after every 10th character of the option_name and every 20th character of the option_value to preserve page layout.<br />Not all options have values and/or descriptions."
|
||||
msgstr "Hinweis: Leerzeichen wurden nach jedem 10ten Buschtaben im option_name und jemden 20sten Buchstaben im option_value eingefügt, um das Seitenlayout zu erhalten. <br />Nicht alle Optionen haben Werte und/oder Beschreibungen."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1473
|
||||
msgid "Please review this information very carefully and only remove Options that you know for certain have been orphaned or deprecated."
|
||||
msgstr "Bitte lies diese Informationen sehr genau durch, und entferne nur Optionen, von denen du weißt dass sie verwaist sind."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1474
|
||||
msgid "It is strongly suggested that you BACKUP your database before removing any options."
|
||||
msgstr "Es ist sehr empfehlenswert, ein BACKUP deiner Datenbank anzulegen, bevor du etwas löschst. "
|
||||
|
||||
# %s = value of $prune_query variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1498
|
||||
#, php-format
|
||||
msgid "%s (the review information query) did not return an array"
|
||||
msgstr "%s (Informationsabfrage zur Überprüfung) brachte kein Ergebnis"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1534
|
||||
msgid "Yes, Remove ALL of these options from the wp_options table."
|
||||
msgstr "ALLE diese Optionen aus der wp_options Tabelle löschen."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1535
|
||||
msgid "No, Don't remove them, return to the first screen."
|
||||
msgstr "Nein, Nichts löschen, sondern zurück zum Anfang."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1536
|
||||
msgid "Submit"
|
||||
msgstr "Abschicken"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1541
|
||||
msgid "No Orphaned Options where selected."
|
||||
msgstr "Keine verwaisten Optionen wurden ausgewählt"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1563
|
||||
msgid "Removed Options"
|
||||
msgstr "Optionen entfernen"
|
||||
|
||||
# %s = value of $opt_tbl_len variable
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1584
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1651
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1675
|
||||
#, php-format
|
||||
msgid "The Options table currently has %s found rows."
|
||||
msgstr "Die Optionentabelle hat %s gefundene Zeilen."
|
||||
|
||||
# %d = value of $rows_deleted variable
|
||||
# "rss_hash" is code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1643
|
||||
#, php-format
|
||||
msgid "Removed %d \"rss_hash\" Options"
|
||||
msgstr "%d \"rss_hash\" Optionen entfernt"
|
||||
|
||||
# "rss_hash" and wp_options are code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1658
|
||||
msgid "Every \"rss_hash\" option in the wp_options table will be shown, including current ones."
|
||||
msgstr "Alle \"rss_hash\" Optionen in der wp_options Tabell werden angezeigt, auch aktuelle."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1710
|
||||
msgid "Warning Messages"
|
||||
msgstr "Warnhinweise"
|
||||
|
||||
# "Warning" refers to message header
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1711
|
||||
msgid "A Warning message, means that something has happened and options that should not be deleted might be available for deletion, or options that could be safely deleted might not be available for deletion. In any case, if you see a Warning message, use extra-special care and thought before deleting any options."
|
||||
msgstr "Ein Warnhinweis bedeutet dass etwas nicht passt, und Optionen die nicht gelöscht werden sollten, gelöscht werden können. oder dass Optionen die gefahrlost gelöscht werden könnten, nicht löschbar sind. Jedenfalls sei SEHR VORSICHTIG wenn du einen Warnhinweis siehst. "
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1716
|
||||
msgid "has an option line with"
|
||||
msgstr "hat eine Optionenzeile mit"
|
||||
|
||||
# %s = link to >http://www.mittineague.com/blog/2009/03/alternate-syntax/<
|
||||
# get_option, option_name, wp_options, are code and should NOT be translated
|
||||
# "the whatever plugin has alternate syntax but is OK" and "ignore" should be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1717
|
||||
#, php-format
|
||||
msgid "The plugin searches PHP files for instances of get_option('option_name as a string') to match against values found in the wp_options table. Some files however use syntax such as get_option($variable) or get_option('prefix_' . $variable). These option names will not match those found in the wp_option table, and they may be present in the list of Orphaned Options when in fact they are not really orphaned. In many cases, knowing the file, and the prefix if used, should help in identification of options that are not really orphaned.<br />*Note, if you get this warning with a plugin file (from the <u><i>WordPress.com Plugin Directory only</i></u>, please) and you know it's not a potential problem (eg. some WordPress core files, the WordPress.com Stats plugin, and this plugin have alternate syntax in them BUT <u><i>there are no options associated with them listed</i></u>), please visit the blog and leave a comment something like \"the whatever plugin has alternate syntax but is OK\" and I can add it to the \"ignore\" list for future version releases if it is safe to do so. Many Thanks. %s"
|
||||
msgstr "Das Plugin durchsucht PHP Dateien mittels get_option nach Werten die zu Einträgen in der wp_options Tabelle gehören. Allerdings findet sich in einigen Dateien eine andere Syntax wie get_option($variable) oder get_option('prefix_'.$variable). Deren Namen werden in der wp_options Tabelle nicht gefunden werden, so dass die entsprechenden Einträge möglicherweise als verwaist angezeigt werden, obwohl sie es gar nicht sind. In vielen Fällen hiflt es, Datei und Präfix zu kennen, um die Einträge die nicht wirklich verwaist sind, zu erkennen<br />*Wenn du diesen Warnhinweis bei einem Plugin (bitte immer nur vom <u><i>WordPress Plugin Directory</i></u>) bekommst, und weit, dass es kein Problem gibt (z.B. verwenden einige WordPress Core Dateien, das WordPress.com Statistik Plugin und dieses Plugin selbst eine alternative Syntax, ABER <u><i>es werden keine dazu gehörenden Einträge aufgelistet</i></u>, hinterlass bitte auf meinem Blog einen Kommentar (Plugin YX hat eine alternative Syntax, aber ist OK) damit ich es bei beim nächsten Release auf die \"Ignore\" Liste setzten kann. Danke im Voraus. %s"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1721
|
||||
msgid "query did not return an array"
|
||||
msgstr "Abfrage gab keine Datenreihe aus. "
|
||||
|
||||
# wp_options and "rss_hash" are code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1722
|
||||
msgid "The plugin queries the wp_options table. It expects an array with at least 1 row. This error message may be the result of fact. i.e. There actually are no wp_option rows with autoload=yes (next to impossible), or there actually are no \"rss_hash\" rows. Or it could be an actual database problem (eg. connection failure, memory failure). If you get this error message you should look for a WPDB error message as well for more detailed information. An error with either the autoload=yes query (core/plugin/theme options), or the autoload!=yes query (rss_hash options) means that none of the corresponding rows will be available for review or deletion until the database problem is resolved."
|
||||
msgstr "Dieses Plugin fragt die wp_options Tabelle ab. Es erwartet eine Antwort mit mindestens einer Zeile. Das könnte der Grund für diese Fehlermeldung sein. Vielleicht gibt es keine wp_option Zeilen mit dem Wert autoload=yes (extrem unwahrscheinlich) oder es gibt keine \"rss_hash\" Reihen. Oder es könnte tatsächlich ein Problem mit der Datenbank geben (z.B. ein Verbindungsfehler). Du solltest schauen, ob du WPDB Fehlermeldungen bekommst, oder versuchen weitere Informationen zu sammeln. Fehler mit der autoload=yes Abfrage (core/plugin/theme/options) oder der autoload!=yes Abfrage (rss_hash Optionen) bedeuten, dass keine der entsprechenen Reihen für eine Überprüfung oder Entfernung verfügbar sein wird, bis das Problem gelöst ist."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1723
|
||||
msgid "WordPress database error"
|
||||
msgstr "WordPress Datenbankfehler"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1724
|
||||
msgid "These are the error messages as returned by WordPress."
|
||||
msgstr "Fehlermeldungen von WordPress"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1728
|
||||
msgid "Option with No Name with the value"
|
||||
msgstr "Optionen ohne Namen mit dem Wert"
|
||||
|
||||
# "no name" should be translated
|
||||
# option_name and option_value are code and should NOT be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1729
|
||||
msgid "Perhaps some plugins/themes add options that have no name? Or the name becomes removed from the row somehow? Because this plugin finds options based on their names, these \"no name\" options will not be included in the list, and thus can not be selected for review or deletion. If the row has no option_name but has an option_value, it will be shown to help you identify the source of the problem. At present, if you wish to remove such rows you must do so by other means."
|
||||
msgstr "Möglicherweise erstellen Plugins/Themes Optionen, die keinen Namen haben? Oder der Name ist irgendwie entfernt worden? Da dieses Plugin Optionen nach ihrem Namen sucht, werden diese \"namenlosen\" Optionen nicht in der Liste angezeigt, und können daher nicht zur Überprüfung oder Entfernung ausgewählt werden. Wenn die Zeile keinen option_name sondern einen option_value hat, wird sie angezeigt um dir dabei zu helfen, das Problem zu finden. Wenn du diese Zeilen löschen möchtest, musst du im Moment einen anderen Weg wählen."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1733
|
||||
msgid "Could not open folder/file"
|
||||
msgstr "Datei/Ordner konnte nicht geöffnet werden"
|
||||
|
||||
# "read" and "world" should be translated to what's used as in permissions - i.e. 0777, drwxrwxrwx etc.
|
||||
# "orphaned options" should be translated
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1734
|
||||
msgid "The plugin failed to open a folder/file. This is most often because of inadequate permissions settings. i.e. The \"read\" permission setting. They do not need to be \"world\" readable, but scripts must be able to. Options that are in files that can not be read may appear in the \"orphaned options\" list when in fact they are not orphaned. In many cases, knowing the folder/file should help in identification of options that are not really orphaned."
|
||||
msgstr "Das Plugin konnten eine(n) Ordner/Datei nicht öffnen. Das geschieht meist wegen unpassender Zugriffsrechte, z.B. den Leserechten. Zumindest Skripte müssen Leserecht haben. Optionen die zu Dateien gehören, die nicht gelesen werden können, werden vielleicht als verwaist angezeigt, obwohl sie das gar nicht sind. Meist hilft es, den Ordner oder die Datei zu kennen, um herauszufinden, ob Optionen wirklich verwaist sind oder nicht."
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1738
|
||||
msgid "Further Information"
|
||||
msgstr "Weitere Informationen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1739
|
||||
msgid "WANTED - Bug Reports"
|
||||
msgstr "GESUCHT - Fehlermeldungen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1740
|
||||
msgid "WANTED - Translations"
|
||||
msgstr "GESUCHT - Übersetzungen"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1741
|
||||
msgid "If you have any questions, problems, comments, or suggestions, please let me know."
|
||||
msgstr "Wenn es Fragen, Probleme, Vorschläge, etc. gibt, bitte lass es mich wissen."
|
||||
|
||||
# %s = link to >http://www.mittineague.com/blog/2009/06/clean-options-translations/<
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1742
|
||||
#, php-format
|
||||
msgid "If you would like to provide a translation, please leave a comment at %s"
|
||||
msgstr "Wenn du eine Übersetzung beisteuern möchtes, hinterlass bitte einen Kommentar be %s"
|
||||
|
||||
# %s = link to >http://www.mittineague.com/dev/co.php<
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1744
|
||||
#, php-format
|
||||
msgid "For more information, the latest version, etc. please visit the plugin's page %s"
|
||||
msgstr "Um mehr Informationen, die aktuellste Version, etc. zu bekommen, schau bitte auf die Pluginsite %s"
|
||||
|
||||
# %s = link to >http://www.mittineague.com/forums/viewtopic.php?t=101<
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1746
|
||||
#, php-format
|
||||
msgid "Questions? For support, please visit the forum %s"
|
||||
msgstr "Fragen? Für Hilfe besuch bitte das Forum %s"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1747
|
||||
msgid "registration required to post"
|
||||
msgstr "Registrier dich, um hier posten zu können"
|
||||
|
||||
# %s = link to >http://www.mittineague.com/blog/2008/11/clean-options-plugin-release-candidate/<
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1748
|
||||
#, php-format
|
||||
msgid "For comments / suggestions, please visit the blog %s"
|
||||
msgstr "Fürh Anmerkungen und Empfehlungen besuch bitte das Blog %s"
|
||||
|
||||
#: c:\progra~1\gnuwin32\test\cleanoptions.php:1749
|
||||
msgid "Translation Acknowledgements"
|
||||
msgstr "Liste der ÜbersetzerInnen"
|
||||
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/clear-opcache/change_log/changelog.txt
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/clear-opcache/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
Version 0.5
|
||||
|
||||
* Added error notice that displays upon plugin activation if OPcache isn't enabled
|
||||
* Fixed bug where error would display if opcache_get_status function didn't exist
|
||||
|
||||
Version 0.4
|
||||
|
||||
* Added notice that displays upon plugin activation
|
||||
|
||||
Version 0.3
|
||||
|
||||
* Added OPcache page in Settings menu showing OPcache details
|
||||
* Added popup saying OPcache was cleared or if OPcache is disabled
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/codepen-embed-block/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/codepen-embed-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "codepen-embed-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.22.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
#Colissimo WooCommerce Changelog
|
||||
|
||||
## 1.1
|
||||
|
||||
### Fonctionnalités
|
||||
|
||||
- Prise en charge de étiquettes au format ZPL et DPL :
|
||||
- Possibilité de générer les étiquettes de livraison au format ZPL ou DPL
|
||||
- Possibilité d'imprimer les étiquettes de livraison au format ZPL ou DPL directement sur une imprimante thermique via USB ou Ethernet.
|
||||
|
||||
- Impression en masse des étiquettes de livraisons de plusieurs commandes depuis le listing des commandes Colissimo
|
||||
|
||||
- Il est désormais possible de trier les commandes du listing Colissimo selon :
|
||||
- Le nom du client
|
||||
- L'adresse de livraison
|
||||
- Le pays de livraison
|
||||
- La méthode de livraison
|
||||
- Le statut de la livraison
|
||||
- Le numéro de bordereau
|
||||
|
||||
- Il est désormais possible de filtrer les commandes du listing Colissimo selon :
|
||||
- Le pays de livraison
|
||||
- La méthode de livraison
|
||||
- Le statut de livraison
|
||||
- Les étiquettes générées ("Aller", "Retour", "Aller et Retour" et "Étiquette non générée")
|
||||
|
||||
- Le nombre de commandes affichées par page sur le listing Colissimo est paramétrable via l'option de WordPress "Options de l'écran"
|
||||
|
||||
### Améliorations
|
||||
|
||||
- Ajout de la référence de la commande sur l'étiquette de livraison
|
||||
|
||||
- Les prix des méthodes de livraisons se basent désormais sur le prix TTC
|
||||
|
||||
- Lors de l'impression d'une étiquette de livraison, la facture n'est plus présente
|
||||
|
||||
### Correctifs
|
||||
|
||||
- Résolution d'un problème qui pouvait se poser au moment de la sauvegarde des prix des méthodes de livraison, s'il y avait la présence de nombres décimaux
|
||||
|
||||
- Résolution d'un problème qui faisait que le prix de la commande pris en compte pour le calcul du prix de la méthode de livraison n'incluait pas les réductions liées à des coupons
|
||||
|
||||
- Résolution d'un problème qui pouvait rendre l'ouverture de la pop-up de choix du point relais impossible pour le client
|
||||
|
||||
- Résolution de la prise en charge du multisite
|
||||
|
||||
- Résolution d'un problème qui pouvait rendre le lien de suivi non-fonctionnel
|
||||
|
||||
- Résolution d'un problème qui pouvait empêcher la sélection d'un point relais si un autre avait été choisi précedemment
|
||||
|
||||
- Résolution d'un problème qui pouvait empêcher la génération du formulaire CN23
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/columnify/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/columnify/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "columnify-wordpress",
|
||||
"version": "0.0.1",
|
||||
"description": "Creates columns with widgets quickly and painless",
|
||||
"main": "Gruntfile.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/markotom/columnify-wordpress.git"
|
||||
},
|
||||
"author": "Marco Godínez <markotom@gmail.com>",
|
||||
"license": "GPLv2 or later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/markotom/columnify-wordpress/issues"
|
||||
},
|
||||
"homepage": "https://github.com/markotom/columnify-wordpress",
|
||||
"devDependencies": {
|
||||
"grunt-wp-readme-to-markdown": "^0.8.0",
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-release": "^0.7.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Comment Count Admin (by URL) v1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2014-07-18 16:59:07+0000\n"
|
||||
"Last-Translator: demo <j.teriete@interiete.net>\n"
|
||||
"Language-Team: \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-Generator: CSL v1.x\n"
|
||||
"X-Poedit-Language: German\n"
|
||||
"X-Poedit-Country: GERMANY\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: comment-count-admin.php:0
|
||||
#@ comment-count-admin
|
||||
msgid "Comment Count Admin (by URL)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#: comment-count-admin.php:0
|
||||
#@ comment-count-admin
|
||||
msgid "http://wordpress.org/plugins/comment-count-admin/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: comment-count-admin.php:0
|
||||
#@ comment-count-admin
|
||||
msgid "Jan Teriete"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: comment-count-admin.php:0
|
||||
#@ comment-count-admin
|
||||
msgid "http://cms.interiete.net/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: comment-count-admin.php:0
|
||||
#@ comment-count-admin
|
||||
msgid "1.5"
|
||||
msgstr ""
|
||||
|
||||
#: comment-count-admin.php:30
|
||||
#@ comment-count-admin
|
||||
msgid "N/A"
|
||||
msgstr "n. a."
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: comment-count-admin.php:0
|
||||
#@ comment-count-admin
|
||||
msgid "Displays a count of each comment authors total number of comments next to their name on the admin pages."
|
||||
msgstr "Zeigt die Kommentar-Anzahl direkt neben dem Namen jedes Kommentar-Autors im Adminbereich an."
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Comment Privileges By Post v1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-22 12:05+0100\n"
|
||||
"PO-Revision-Date: \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"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: /var/www/berriart.2/wp-content/plugins/comment-privileges-by-post\n"
|
||||
|
||||
#: /var/www/berriart.2/wp-content/plugins/comment-privileges-by-post/comment-privileges-by-post.php:52
|
||||
msgid "Comments privileges"
|
||||
msgstr ""
|
||||
|
||||
#: /var/www/berriart.2/wp-content/plugins/comment-privileges-by-post/comment-privileges-by-post.php:68
|
||||
msgid "Allow users to comment without login"
|
||||
msgstr ""
|
||||
|
||||
#: /var/www/berriart.2/wp-content/plugins/comment-privileges-by-post/comment-privileges-by-post.php:74
|
||||
msgid "Users must be registered and logged in to comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1042,3 +1042,141 @@ s0.parentNode.insertBefore(s1,s0);
|
||||
<!-- social and search optimization by WPSSO Core v6.8.0 - https://wpsso.com/ -->
|
||||
|
||||
|
||||
<!-- add-browser-search -->
|
||||
<!-- Start Of Script Generated By WP-ABS 1.24 -->
|
||||
<!-- End Of Script Generated By WP-ABS 1.24 -->
|
||||
|
||||
|
||||
<!-- dreamgrow-scroll-triggered-box -->
|
||||
<!-- ===== START Dreamgrow Scroll Triggered Box 2.3 ===== -->
|
||||
<!-- ===== END OF Dreamgrow Scroll Triggered Box 2.3 ===== -->
|
||||
|
||||
|
||||
<!-- australian-internet-blackout -->
|
||||
<!-- Australian Internet Blackout 1.0 -->
|
||||
|
||||
|
||||
<!-- delicious-bookmark-this -->
|
||||
<!-- Added by "del.icio.us - Bookmark this!", a WordPress Plugin of Arne Brachhold, v1.2 -->
|
||||
|
||||
|
||||
<!-- facebook-ogg-meta-tags -->
|
||||
<!--
|
||||
social-meta-tags | 1.8 Plugin URI: https://wordpress.org/plugins/facebook-ogg-meta-tags/
|
||||
-->
|
||||
|
||||
|
||||
<!-- geocoder-wordpress-plugin-google-maps-geolocator-workshop -->
|
||||
<!--
|
||||
-------------------------------------------------------------------------------------------------------------------------
|
||||
GOOGLE MAPS GEOCODER TOOL.
|
||||
|
||||
This is a very simple tool that is meant to be a "workshop" for address lookups, using the Google JavaScript Geocode API.
|
||||
|
||||
It has two boxes:
|
||||
|
||||
Address Entry Form
|
||||
This form is on the left, and contains a bunch of text input fields.
|
||||
You enter the address into these fields, and the string below them shows how the address is being "built."
|
||||
When you submit the form, a Google Geocode is done, using the "built" address. You can also enter a long/lat pair,
|
||||
and do a reverse geocode.
|
||||
|
||||
Geocode Response Display
|
||||
This is on the right side, and displays the result of the lookup. It displays them as simple <div> elements.
|
||||
Between the two forms is a column of links that allows you to copy data from the response to the corresponding
|
||||
text input in the Entry form.
|
||||
You will also have a link in the response form that allows you to go to Google Maps to observe the location there.
|
||||
If there are more than one places that correspond to the given data, they are displayed, one at a time, and links
|
||||
are provided to help you select which one is displayed.
|
||||
-------------------------------------------------------------------------------------------------------------------------
|
||||
Version: 1.2.3
|
||||
|
||||
RELEASE NOTES:
|
||||
- April 30, 2010 -1.2.3 Release
|
||||
- Added scroll wheel zoom to the map.
|
||||
|
||||
- March 26, 2010 -1.2.2 Release
|
||||
- The accuracy bar fix was not sufficient. It needed more.
|
||||
|
||||
- March 11, 2010 -1.2.1 Release
|
||||
- Fixed a CSS bug in the accuracy bar.
|
||||
|
||||
- February 11, 2010 -1.2 Release
|
||||
- Added access to the W3C Gelocator options ("Where Am I Now?")
|
||||
|
||||
- February 6, 2010 -1.1.9 Release
|
||||
- Worked on optimizing and improving the appearance of the accuracy bar.
|
||||
|
||||
- February 5, 2010 -1.1.8 Release
|
||||
- Fixed a CSS bug in that bar.
|
||||
|
||||
- February 5, 2010 -1.1.7 Release
|
||||
- Added accuracy bar indicator to search results.
|
||||
|
||||
- February 4, 2010 -1.1.6 Release
|
||||
- Added block delimiters ("##START_" and "##END_") to allow parsing by the WordPress Plugin.
|
||||
|
||||
- February 1, 2010 -1.1.5 Release
|
||||
- Changed the IDs, so this can be more easily inserted into other pages or CMS.
|
||||
|
||||
- February 1, 2010 -1.1.4 Release
|
||||
- Expanded the label fields, as the text would overflow when increased by one step.
|
||||
|
||||
- January 31, 2010 -1.1.3 Release
|
||||
- Moved the items around, in order to separate the regular lookup from the reverse lookup.
|
||||
- Added the ability to hide the long/lat information (which also hides the map).
|
||||
|
||||
- January 31, 2010 -1.1.2 Release
|
||||
- Hide the multiple placemark nav field if there is only one placemark.
|
||||
- Added a "Transfer All" link to the transfer column.
|
||||
- Fixed the styling for the address display field It was a wee bit too wide.
|
||||
|
||||
- January 29, 2010 -1.1.1 Release
|
||||
- Made some fixes to make TotalValidator happy.
|
||||
- Tweaked the colors to mesh with the marker colors better.
|
||||
- Added links in the debug string, so you can select placemarks from the dump.
|
||||
|
||||
- January 29, 2010 -1.1 Release
|
||||
- Added an interactive map.
|
||||
|
||||
- January 28, 2010 - 1.0.3 Release
|
||||
- Fixed a couple of issues with Chrome.
|
||||
- Added an initializer function, and now allow the debug info to be hidden as a choice.
|
||||
|
||||
- January 28, 2010 - 1.0.2 Release
|
||||
- Added a "focus tracker." This enhances usability by allowing a quick, natural response to hitting the "enter" key.
|
||||
|
||||
- January 27, 2010 - 1.0.1 Release
|
||||
- Moved the debug display into the main wrapper.
|
||||
- The debug info is now shown or hidden by a checkbox.
|
||||
- Segregated the display of the debug info slightly to enhance readability.
|
||||
- Improved the code comments.
|
||||
|
||||
- January 27, 2010 - 1.0 Release
|
||||
- Initial release.
|
||||
-->
|
||||
|
||||
|
||||
<!-- image-space-media -->
|
||||
<!-- Image Space Media plugin v. 1.1.0 (Begin) -->
|
||||
|
||||
|
||||
<!-- joemobi -->
|
||||
<!-- JoeMobi (http://joemobi.com) v:2.10 -->
|
||||
|
||||
|
||||
<!-- linkable-title-html-and-php-widget -->
|
||||
<!-- This website uses Linkable Title Html And Php Widget v1.2.6 Wordpress plugin developed by PepLamb (PepLamb.com) -->
|
||||
|
||||
|
||||
<!-- age-okay -->
|
||||
<!--[if lt IE 10]>
|
||||
<link rel='stylesheet' id='age_okay_ie9_css-css' href='http://wp.local/wp-content/plugins/age-okay/public/css/age-okay-public-ie9-min.css?ver=1.0.0-F' media='all' />
|
||||
<![endif]-->
|
||||
|
||||
|
||||
<!-- google-analytics-dashboard-for-wp -->
|
||||
<!-- This site uses the Google Analytics by ExactMetrics plugin v6.0.1 - Using Analytics tracking - https://www.exactmetrics.com/ -->
|
||||
|
||||
|
||||
|
||||
|
||||
193
spec/fixtures/dynamic_finders/plugin_version/commentmailer/translation_file/commentmailer.pot
vendored
Normal file
193
spec/fixtures/dynamic_finders/plugin_version/commentmailer/translation_file/commentmailer.pot
vendored
Normal file
@@ -0,0 +1,193 @@
|
||||
# Commentmailer pot file.
|
||||
# Copyright (C) 2007 Huda Toriq
|
||||
# This file is distributed under the same license as the Commentmailer plugin package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.1\n"
|
||||
"Report-Msgid-Bugs-To: hudatoriq@gmail.com\n"
|
||||
"POT-Creation-Date: 2007-11-27 18:25+0700\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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: commentmailer.php:49
|
||||
msgid "Please specify a valid email address!"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:52
|
||||
msgid "Successfully updating your options"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:54
|
||||
msgid "There is something wrong when we are updating your options"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:57
|
||||
msgid "You don’t have anything to update"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:82
|
||||
msgid "Also send this reply via e-mail to the following commenters:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:84
|
||||
msgid "-- None --"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:103
|
||||
msgid "E-mail language:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:117
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:146 commentmailer.php:252
|
||||
msgid "Re: Blog comment"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:157
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This e-mail is generated and sent to you because a blog author wants to "
|
||||
"inform you that he/she has replied your comment on %s"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:158
|
||||
msgid "You can always view your comment and its reply on the following URLs:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:159
|
||||
msgid "Your comment:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:160
|
||||
msgid "Response to your comment:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:161
|
||||
msgid ""
|
||||
"You can continue the discussion by writing another comment in the same post."
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:164
|
||||
#, php-format
|
||||
msgid "On %s you wrote:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:164
|
||||
msgid "F j, Y"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:185 commentmailer.php:233
|
||||
msgid "Comment Mailer"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:235 commentmailer.php:286
|
||||
msgid "Update Options »"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:237
|
||||
msgid "E-mail Settings"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:240
|
||||
msgid "Sender e-mail:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:242
|
||||
msgid "If empty, your email address in your user profile will be used instead"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:245
|
||||
msgid "Sender name:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:247
|
||||
msgid ""
|
||||
"If the above e-mail address is empty, your display name in your user profile "
|
||||
"will be used instead"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:250
|
||||
msgid "Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:252
|
||||
#, php-format
|
||||
msgid "If empty, '%s' will be used instead"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:255
|
||||
msgid "E-mail composition:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:257
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Plain text only. Each linebreak counts. Use these tags to help you construct "
|
||||
"your e-mail message: %s"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:260
|
||||
msgid "E-mail signature:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:262
|
||||
msgid "Plain text only"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:267
|
||||
msgid "Menu Settings"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:270
|
||||
msgid "Automatically insert a list menu:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:272
|
||||
msgid "yes (default)"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:273
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:274
|
||||
msgid ""
|
||||
"If you select 'yes', it will insert a multiple selection list on "
|
||||
"<code>comment_form</code> hook. Make sure your theme has the hook."
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:278
|
||||
msgid "Sort commenters:"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:280
|
||||
msgid "descending (default)"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:281
|
||||
msgid "ascending"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:290
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:292
|
||||
msgid ""
|
||||
"If you want to remove this plugin, simply click this button. It will "
|
||||
"deactivate the plugin and remove all related settings, leaving no pain in "
|
||||
"the database."
|
||||
msgstr ""
|
||||
|
||||
#: commentmailer.php:296
|
||||
msgid "Attention! It can not be undone."
|
||||
msgstr ""
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/compactrss/translation_file/compactrss.pot
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/compactrss/translation_file/compactrss.pot
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CompactRSS 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2008-11-14 17:25+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Arno Moonen <arnom@itavero.nl>\n"
|
||||
"Language-Team: Arno Moonen <arnom@itavero.nl>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: compactrss.php:57
|
||||
msgid "Read more"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:60
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:63
|
||||
msgid "Hide all content after"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:66
|
||||
#: compactrss.php:72
|
||||
#: compactrss.php:78
|
||||
msgid "On"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:68
|
||||
#: compactrss.php:74
|
||||
#: compactrss.php:80
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:69
|
||||
msgid "Hide all content between"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:75
|
||||
msgid "Include a permalink if the post was altered"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:80
|
||||
msgid "Text for the permalink"
|
||||
msgstr ""
|
||||
|
||||
#: compactrss.php:82
|
||||
msgid "Submit changes"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,77 @@
|
||||
# Copyright (C) 2020 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Composite Products - Conditional Images for WooCommerce "
|
||||
"1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://woocommerce.com/my-account/create-a-ticket/\n"
|
||||
"POT-Creation-Date: 2020-02-12 06:19:29+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-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"
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:115
|
||||
msgid ""
|
||||
"<strong>Composite Products – Conditional Images</strong> requires "
|
||||
"WooCommerce Composite Products <strong>%s</strong> or higher."
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:198
|
||||
msgid "Choose an Image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:199
|
||||
msgid "Save Image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:298
|
||||
msgid "Overlay Image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:301
|
||||
msgid ""
|
||||
"Enable this option to conditionally overlay an image over the main "
|
||||
"Composite Product image. When using this feature, product image zooming "
|
||||
"will be disabled."
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:306
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:310
|
||||
msgid "Choose an image to overlay over the main Composite Product image."
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:311
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Composite Products - Conditional Images for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://docs.woocommerce.com/document/composite-products/composite-products-"
|
||||
"extensions/#cp-ci"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Free mini-extension for WooCommerce Composite Products that allows you to "
|
||||
"create dynamic, multi-layer Composite Product images that respond to option "
|
||||
"changes."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.gr/"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/convatic/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/convatic/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "convatic-wp",
|
||||
"version": "0.1.0",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.2",
|
||||
"grunt-contrib-concat": "0.1.3",
|
||||
"grunt-contrib-watch": "0.5.3",
|
||||
"grunt-contrib-uglify": "0.2.0",
|
||||
"grunt-contrib-sass": "~0.6.0",
|
||||
"grunt-contrib-cssmin": "~0.7.0",
|
||||
"grunt-contrib-jshint": "~0.8.0"
|
||||
}
|
||||
}
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/cookie-jar/change_log/CHANGELOG.md
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/cookie-jar/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## Releases
|
||||
|
||||
### 2.0.1 - 2020-02-12
|
||||
- Fixing wpdb issue
|
||||
|
||||
### 2.0.0
|
||||
- Added options to select an image and the position of the cookie div on the front end ( bottom left or bottom right )
|
||||
|
||||
### 1.1.0
|
||||
- Added back-end settings to select Cookie Policy page from the list of all existing pages
|
||||
|
||||
### 1.0.0
|
||||
- Initial release
|
||||
@@ -0,0 +1,318 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CPTM v0.9\n"
|
||||
"POT-Creation-Date: 2013-09-26 09:29+0900\n"
|
||||
"PO-Revision-Date: 2013-09-26 09:30+0900\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.5\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../cptm-admin.php:14
|
||||
msgid "Item added."
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:15
|
||||
msgid "Item deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:16
|
||||
msgid "Item updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:17
|
||||
msgid "Item not added."
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:18
|
||||
msgid "Item not updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:19
|
||||
msgid "Error in deleting…"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:52
|
||||
msgid "が未入力です。"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:57
|
||||
msgid "は半角英数字で入力してください。"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:127
|
||||
msgid "新規カスタム投稿を追加"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:135
|
||||
msgid "カスタム投稿を編集"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:136
|
||||
msgid "新規登録"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:148 ../cptm-admin.php:264
|
||||
msgid "title"
|
||||
msgstr "タイトル"
|
||||
|
||||
#: ../cptm-admin.php:149 ../cptm-admin.php:264
|
||||
msgid "editor"
|
||||
msgstr "エディタ"
|
||||
|
||||
#: ../cptm-admin.php:150
|
||||
msgid "author"
|
||||
msgstr "作成者"
|
||||
|
||||
#: ../cptm-admin.php:151
|
||||
msgid "thumbnail"
|
||||
msgstr "サムネイル"
|
||||
|
||||
#: ../cptm-admin.php:152
|
||||
msgid "excerpt"
|
||||
msgstr "抜粋"
|
||||
|
||||
#: ../cptm-admin.php:153
|
||||
msgid "custom-fields"
|
||||
msgstr "カスタムフィールド"
|
||||
|
||||
#: ../cptm-admin.php:157
|
||||
msgid "投稿の下"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:158
|
||||
msgid "メディアの下"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:159
|
||||
msgid "ページの下"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:163
|
||||
msgid "指定しない"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:164
|
||||
msgid "連絡帳"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:165
|
||||
msgid "時計"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:166
|
||||
msgid "カレンダー"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:167
|
||||
msgid "ノート"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:168
|
||||
msgid "メモ帳"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:176 ../custom-post-type-manager.php:43
|
||||
msgid "カスタム投稿設定"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:187 ../cptm-admin.php:233
|
||||
msgid "name"
|
||||
msgstr "表示名"
|
||||
|
||||
#: ../cptm-admin.php:188 ../cptm-admin.php:245
|
||||
msgid "post_type"
|
||||
msgstr "投稿タイプ"
|
||||
|
||||
#: ../cptm-admin.php:189
|
||||
msgid "stop_flag"
|
||||
msgstr "状態"
|
||||
|
||||
#: ../cptm-admin.php:211
|
||||
msgid "edit"
|
||||
msgstr "編集"
|
||||
|
||||
#: ../cptm-admin.php:211
|
||||
msgid "delete"
|
||||
msgstr "削除"
|
||||
|
||||
#: ../cptm-admin.php:214
|
||||
msgid "active"
|
||||
msgstr "稼働"
|
||||
|
||||
#: ../cptm-admin.php:214
|
||||
msgid "deactive"
|
||||
msgstr "停止"
|
||||
|
||||
#: ../cptm-admin.php:235
|
||||
msgid "登録画面等に表示されます。"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:239
|
||||
msgid "menu"
|
||||
msgstr "メニュー"
|
||||
|
||||
#: ../cptm-admin.php:241
|
||||
msgid "管理画面のメニューに表示されます。"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:247
|
||||
msgid "半角英数字で入力してください。"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:251
|
||||
msgid "supports"
|
||||
msgstr "サポート機能"
|
||||
|
||||
#: ../cptm-admin.php:263
|
||||
msgid "使用する機能を選択してください。(複数選択可)"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:269
|
||||
msgid "menu_position"
|
||||
msgstr "メニュー位置"
|
||||
|
||||
#: ../cptm-admin.php:281
|
||||
msgid "管理画面のメニュー表示位置です。"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:285
|
||||
msgid "menu_icon"
|
||||
msgstr "メニューアイコン"
|
||||
|
||||
#: ../cptm-admin.php:297
|
||||
msgid "管理画面のメニューに使用するアイコンです。"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:302
|
||||
msgid "カテゴリーを使用する"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:304
|
||||
msgid "タグを使用する"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:306
|
||||
msgid "このカスタム投稿タイプを一時停止にする"
|
||||
msgstr ""
|
||||
|
||||
#: ../cptm-admin.php:309
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
#: ../custom-post-type-manager.php:75
|
||||
#, php-format
|
||||
msgid "%s一覧"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:76
|
||||
msgid "新規追加"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:77
|
||||
#, php-format
|
||||
msgid "%sを追加"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:78
|
||||
#, php-format
|
||||
msgid "%sを編集"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:79
|
||||
#, php-format
|
||||
msgid "新しい%s"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:80
|
||||
#, php-format
|
||||
msgid "%sを表示"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:81
|
||||
#, php-format
|
||||
msgid "%sを探す"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:82
|
||||
#, php-format
|
||||
msgid "%sはありません"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:83
|
||||
#, php-format
|
||||
msgid "ゴミ箱に%sはありません"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:105
|
||||
msgid "Category"
|
||||
msgstr "カテゴリー"
|
||||
|
||||
#: ../custom-post-type-manager.php:116
|
||||
msgid "Tag"
|
||||
msgstr "タグ"
|
||||
|
||||
#: ../custom-post-type-manager.php:135
|
||||
#, php-format
|
||||
msgid "%sを更新しました <a href=\"%s\">記事を見る</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:136
|
||||
msgid "カスタムフィールドを更新しました"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:137
|
||||
msgid "カスタムフィールドを削除しました"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:138
|
||||
#, php-format
|
||||
msgid "%s更新"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:139
|
||||
#, php-format
|
||||
msgid "%s 前に%sを保存しました"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:140
|
||||
#, php-format
|
||||
msgid "%sが公開されました <a href=\"%s\">記事を見る</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:141
|
||||
#, php-format
|
||||
msgid "%s記事を保存"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:142
|
||||
#, php-format
|
||||
msgid "%s記事を送信 <a target=\"_blank\" href=\"%s\">プレビュー</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:143
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$sを予約投稿しました: <strong>%2$s</strong>. <a target=\"_blank\" href="
|
||||
"\"%3$s\">プレビュー</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:143
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: ../custom-post-type-manager.php:144
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%sの下書きを更新しました <a target=\"_blank\" href=\"%s\">プレビュー</a>"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid " <a href=\""
|
||||
#~ msgstr " <a href=\""
|
||||
@@ -0,0 +1,87 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: custom-registration-link 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-12-22 15:37+0800\n"
|
||||
"PO-Revision-Date: 2011-12-22 16:14+0800\n"
|
||||
"Last-Translator: Gabriel Hautclocq <gabriel@gabsoftware.com>\n"
|
||||
"Language-Team: GabSoftware <gabriel@gabsoftware.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-Language: French\n"
|
||||
"X-Poedit-Country: FRANCE\n"
|
||||
"X-Poedit-SearchPath-0: e:\\tmp\\custom-registration-link\n"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:145
|
||||
msgid "Custom Registration Link options"
|
||||
msgstr "Options de Custom Registration Link"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:146
|
||||
msgid "Custom Registration Link"
|
||||
msgstr "Custom Registration Link"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:159
|
||||
msgid "Configure"
|
||||
msgstr "Configurer"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:174
|
||||
msgid "You don't have sufficient privileges to display this page"
|
||||
msgstr "Vous n'avez pas les privilèges requis pour afficher cette page"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:181
|
||||
msgid "Custom Registration Link configuration"
|
||||
msgstr "Configuration de Custom Registration Link"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:193
|
||||
msgid "Save Changes"
|
||||
msgstr "Enregistrer"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:212
|
||||
msgid "General"
|
||||
msgstr "Général"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:215
|
||||
#, php-format
|
||||
msgid "New action (default: %s)"
|
||||
msgstr "Nouvelle action (par défaut : %s)"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:221
|
||||
msgid "General options for Custom Registration Link"
|
||||
msgstr "Options générales de Custom Registration Link"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:332
|
||||
msgid "Registration Form"
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:332
|
||||
msgid "Register For This Site"
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:337
|
||||
msgid "Username"
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:341
|
||||
msgid "E-mail"
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:345
|
||||
msgid "A password will be e-mailed to you."
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:352
|
||||
msgid "Log in"
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:353
|
||||
msgid "Password Lost and Found"
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
#: e:\tmp\custom-registration-link/custom-registration-link.php:353
|
||||
msgid "Lost your password?"
|
||||
msgstr "DO NOT TRANSLATE"
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright (C) 2012 Custom Smilies Directory
|
||||
# This file is distributed under the same license as the Custom Smilies Directory package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Smilies Directory 1.2\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-smilies-directory\n"
|
||||
"POT-Creation-Date: 2012-02-05 18:50:23+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: custom-smilies-directory.php:108
|
||||
msgid "Custom Smilies Directory needs your attenttion:"
|
||||
msgstr ""
|
||||
|
||||
#: custom-smilies-directory.php:110
|
||||
msgid ""
|
||||
"<code>/smilies/</code> directory not found in the current theme. You have to "
|
||||
"upload your new smilies to your theme directory for them to work!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Custom Smilies Directory"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://plugins.josepardilla.com/custom-smilies-directory/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Light plugin that tells WordPress to load Smilies from your theme's "
|
||||
"directory. This allows you to use custom Smilies without loosing them when "
|
||||
"you update WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "José Pardilla"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://josepardilla.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,69 @@
|
||||
# French translations for PACKAGE package.
|
||||
# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# fred <EMAIL@ADDRESS>, 2009.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-08-28 16:08+0200\n"
|
||||
"PO-Revision-Date: 2009-08-28 16:09+0200\n"
|
||||
"Last-Translator: Fredpointzero <fredpointzero@gmail.com>\n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CP1252\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: admin_menu.php:9 customToolbox.php:58 customToolbox.php:59
|
||||
msgid "Custom Toolbox"
|
||||
msgstr "Boite a outils"
|
||||
|
||||
#: admin_menu.php:15
|
||||
msgid "Add comment count to your posts"
|
||||
msgstr "Ajouter les numeros des commentaires a vos articles"
|
||||
|
||||
#: admin_menu.php:18
|
||||
msgid "Add comment count"
|
||||
msgstr "Ajouter les numeros des commentaires"
|
||||
|
||||
#: admin_menu.php:29
|
||||
msgid "Select where you want to add the post number"
|
||||
msgstr "Choisissez l'endroit ou vous voulez voir le numero des commentaires"
|
||||
|
||||
#: admin_menu.php:32
|
||||
msgid "Post count template"
|
||||
msgstr "Format pour l'affichage du numero du commentaire"
|
||||
|
||||
#: admin_menu.php:37
|
||||
msgid "Template of the post number"
|
||||
msgstr "Format pour l'affichage du numero du commentaire"
|
||||
|
||||
#: admin_menu.php:38
|
||||
msgid "display the number of the post"
|
||||
msgstr "affiche le numero du commentaire"
|
||||
|
||||
#: admin_menu.php:39
|
||||
msgid "display the rest"
|
||||
msgstr "affiche le reste"
|
||||
|
||||
#: admin_menu.php:40
|
||||
msgid "Default"
|
||||
msgstr "Valeur par defaut"
|
||||
|
||||
#: admin_menu.php:47
|
||||
msgid "Save Changes"
|
||||
msgstr "Enregistrer les modifications"
|
||||
|
||||
#: customToolbox.php:117
|
||||
msgid "None"
|
||||
msgstr "Aucun"
|
||||
|
||||
#: customToolbox.php:118
|
||||
msgid "Author"
|
||||
msgstr "Auteur"
|
||||
|
||||
#: customToolbox.php:119
|
||||
msgid "Text"
|
||||
msgstr "Texte"
|
||||
@@ -0,0 +1,58 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Stronger Admin Bar v1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2014-05-18 16:21:28+0000\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: CSL v1.x\n"
|
||||
"X-Poedit-Language: \n"
|
||||
"X-Poedit-Country: \n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: \n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "Stronger Admin Bar"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "http://wordpress.org/plugins/stronger-admin-bar"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "Adds more space to the adnin bar from top and bottom to make it more useful."
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "silver530"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "http://profiles.wordpress.org/silver530"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: stronger-admin-bar.php:0
|
||||
#@ stronger_admin_bar
|
||||
msgid "1.0"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,91 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DeMomentSomTres Woocommerce Free Shipping Message v0.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2014-09-23 09:10:11+0000\n"
|
||||
"Last-Translator: Marc Queralt <dms3@demomentsomtres.com>\n"
|
||||
"Language-Team: \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-Generator: CSL v1.x\n"
|
||||
"X-Poedit-Language: Catalan\n"
|
||||
"X-Poedit-Country: SPAIN\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: \n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:29
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "The DeMomentSomTres WooCommerce Minimum Purchase plugin requires the free DeMomentSomTres Tools plugin."
|
||||
msgstr "L'extensió DeMomentSomTres WooCommerce Minimum Purchase necessita de l'extensió gratuïta DeMomentSomTres Tools."
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:31
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Download it here"
|
||||
msgstr "Descarreguu-la aquí"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:41
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "The DeMomentSomTres WooCommerce Minimum Purchase plugin requires WooCommerce."
|
||||
msgstr "L'extensió DeMomentSomTres WooCommerce Minimum Purchase plugin necessita WooCommerce."
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:157
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:194
|
||||
#, php-format
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Your purchase is below the minimum purchase of %s€ needed to get free shipping"
|
||||
msgstr "La comanda mínima és de 10 €!"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:88
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:97
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "DeMomentSomTres Minimum Purchase Message"
|
||||
msgstr "DeMomentSomTres missatge de compra mínima"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:102
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Save Changes"
|
||||
msgstr "Desar canvis"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:106
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Options"
|
||||
msgstr "Opcions"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:118
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Main parameters"
|
||||
msgstr "Paràmetres principals"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:120
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Minimum order total to get free shipping"
|
||||
msgstr "Valor mínim de la comanda per mostrar el missatge"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:121
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Message to show if minimum order is not reached"
|
||||
msgstr "Missatge que es mostrarà si el preu mínim no s'assoleix"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:136
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Main parameters to control messages"
|
||||
msgstr "Paràmetres principals per controlar els missatges"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:149
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "If order total is below this amount, the message will be shown."
|
||||
msgstr "Si el valor de la comanda està per sota d'aquest valor, es mostrarà el missatge"
|
||||
|
||||
#: demomentsomtres-WC-minimum-purchase-message.php:162
|
||||
#, php-format
|
||||
#@ DeMomentSomTres-WC-minPurchaseMessage
|
||||
msgid "Message should include %s in order to show the minimum amount inside it."
|
||||
msgstr "El missatge ha d'incloure %s per tal de mostrar el valor mínim de la comanda."
|
||||
|
||||
@@ -0,0 +1,403 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DeMomentSomTres Woocommerce Free Shipping Message v0.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: Wed Jul 29 2015 17:00:26 GMT+0200 (CEST)\n"
|
||||
"PO-Revision-Date: Wed Jul 29 2015 17:06:30 GMT+0200 (CEST)\n"
|
||||
"Last-Translator: DeMomentSomTres <dms3@demomentsomtres.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: Catalan\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Generator: Loco - https://localise.biz/\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
||||
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
||||
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
||||
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
||||
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
||||
"X-Loco-Target-Locale: ca_ES"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:92
|
||||
msgid "Some plugins are missing!"
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:94
|
||||
msgid "This are the required plugins"
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:96 ../lib/class-tgm-plugin-
|
||||
#: activation.php:161
|
||||
msgid "Install Required Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:97 ../lib/class-tgm-plugin-
|
||||
#: activation.php:162
|
||||
msgid "Install Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:98 ../lib/class-tgm-plugin-
|
||||
#: activation.php:163
|
||||
#, php-format
|
||||
msgid "Installing Plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:99
|
||||
msgid "Something went wrong with the plugin API."
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:100 ../lib/class-tgm-plugin-
|
||||
#: activation.php:165
|
||||
#, php-format
|
||||
msgid "This theme requires the following plugin: %1$s."
|
||||
msgid_plural "This theme requires the following plugins: %1$s."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:101 ../lib/class-tgm-plugin-
|
||||
#: activation.php:166
|
||||
#, php-format
|
||||
msgid "This theme recommends the following plugin: %1$s."
|
||||
msgid_plural "This theme recommends the following plugins: %1$s."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:102 ../lib/class-tgm-plugin-
|
||||
#: activation.php:167
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Sorry, but you do not have the correct permissions to install the %s plugin. "
|
||||
"Contact the administrator of this site for help on getting the plugin "
|
||||
"installed."
|
||||
msgid_plural ""
|
||||
"Sorry, but you do not have the correct permissions to install the %s plugins."
|
||||
" Contact the administrator of this site for help on getting the plugins "
|
||||
"installed."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:103 ../lib/class-tgm-plugin-
|
||||
#: activation.php:168
|
||||
#, php-format
|
||||
msgid "The following required plugin is currently inactive: %1$s."
|
||||
msgid_plural "The following required plugins are currently inactive: %1$s."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:104 ../lib/class-tgm-plugin-
|
||||
#: activation.php:169
|
||||
#, php-format
|
||||
msgid "The following recommended plugin is currently inactive: %1$s."
|
||||
msgid_plural "The following recommended plugins are currently inactive: %1$s."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:105 ../lib/class-tgm-plugin-
|
||||
#: activation.php:170
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Sorry, but you do not have the correct permissions to activate the %s plugin."
|
||||
" Contact the administrator of this site for help on getting the plugin "
|
||||
"activated."
|
||||
msgid_plural ""
|
||||
"Sorry, but you do not have the correct permissions to activate the %s "
|
||||
"plugins. Contact the administrator of this site for help on getting the "
|
||||
"plugins activated."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:106 ../lib/class-tgm-plugin-
|
||||
#: activation.php:171
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The following plugin needs to be updated to its latest version to ensure "
|
||||
"maximum compatibility with this theme: %1$s."
|
||||
msgid_plural ""
|
||||
"The following plugins need to be updated to their latest version to ensure "
|
||||
"maximum compatibility with this theme: %1$s."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:107 ../lib/class-tgm-plugin-
|
||||
#: activation.php:172
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Sorry, but you do not have the correct permissions to update the %s plugin. "
|
||||
"Contact the administrator of this site for help on getting the plugin "
|
||||
"updated."
|
||||
msgid_plural ""
|
||||
"Sorry, but you do not have the correct permissions to update the %s plugins. "
|
||||
"Contact the administrator of this site for help on getting the plugins "
|
||||
"updated."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:108 ../lib/class-tgm-plugin-
|
||||
#: activation.php:173
|
||||
msgid "Begin installing plugin"
|
||||
msgid_plural "Begin installing plugins"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:109 ../lib/class-tgm-plugin-
|
||||
#: activation.php:174
|
||||
msgid "Begin activating plugin"
|
||||
msgid_plural "Begin activating plugins"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:110 ../lib/class-tgm-plugin-
|
||||
#: activation.php:175
|
||||
msgid "Return to Required Plugins Installer"
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:111 ../lib/class-tgm-plugin-
|
||||
#: activation.php:177 ../lib/class-tgm-plugin-activation.php:1956
|
||||
msgid "Plugin activated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:112
|
||||
#, php-format
|
||||
msgid "All plugins installed and activated successfully. %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:123 ../demomentsomtres-WC-
|
||||
#: minimum-purchase-message.php:124
|
||||
msgid "DeMomentSomTres Minimum Purchase Message"
|
||||
msgstr "DeMomentSomTres missatge de compra mínima"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:125
|
||||
msgid "Sets a message if total sale is below a certain amount"
|
||||
msgstr ""
|
||||
"Mostra un missatge si la compra total es troba per sota d'un determinat "
|
||||
"llindar"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:129
|
||||
msgid "Configuration"
|
||||
msgstr "Configuració"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:133 ../demomentsomtres-WC-
|
||||
#: minimum-purchase-message.php:159
|
||||
msgid "Minimum order total to get free shipping"
|
||||
msgstr "Valor mínim de la comanda per mostrar el missatge"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:136
|
||||
msgid "If order total is below this amount, the message will be shown."
|
||||
msgstr ""
|
||||
"Si el valor de la comanda està per sota d'aquest valor, es mostrarà el "
|
||||
"missatge"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:139 ../demomentsomtres-WC-
|
||||
#: minimum-purchase-message.php:167
|
||||
msgid "Message to show if minimum order is not reached"
|
||||
msgstr "Missatge que es mostrarà si el preu mínim no s'assoleix"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:141
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your purchase is below the minimum purchase of %s€ needed to get free "
|
||||
"shipping"
|
||||
msgstr "La comanda mínima és de 10 €!"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:142
|
||||
#, php-format
|
||||
msgid "Message should include %s in order to show the minimum amount inside it."
|
||||
msgstr "El missatge ha d'incloure %s per tal de mostrar el valor mínim de la comanda."
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:148
|
||||
msgid "Save settings"
|
||||
msgstr "Desa els canvis"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:153
|
||||
msgid "Earlier versions"
|
||||
msgstr "Versions anteriors"
|
||||
|
||||
#: ../demomentsomtres-WC-minimum-purchase-message.php:155
|
||||
msgid "Configuration in earlier versions of this plugin"
|
||||
msgstr "Configuració en versions anteriors del component"
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:164
|
||||
msgid "Something went wrong."
|
||||
msgstr "Alguna cosa no ha anat bé"
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:176
|
||||
msgid "Return to the dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:178 ../lib/class-tgm-plugin-activation.
|
||||
#: php:1644
|
||||
msgid "The following plugin was activated successfully:"
|
||||
msgid_plural "The following plugins were activated successfully:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:179
|
||||
#, php-format
|
||||
msgid "All plugins installed and activated successfully. %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:180
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:532 ../lib/class-tgm-plugin-activation.
|
||||
#: php:532 ../lib/class-tgm-plugin-activation.php:2173 ../lib/class-tgm-plugin-
|
||||
#: activation.php:2173
|
||||
msgid "Return to the Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1167 ../lib/class-tgm-plugin-activation.
|
||||
#: php:1348
|
||||
msgid "Private Repository"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1170 ../lib/class-tgm-plugin-activation.
|
||||
#: php:1351
|
||||
msgid "Pre-Packaged"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1175
|
||||
msgid "WordPress Repository"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1178
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1178
|
||||
msgid "Recommended"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1181
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1183
|
||||
msgid "Installed But Not Activated"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1288 ../lib/class-tgm-plugin-activation.
|
||||
#: php:1288 ../lib/class-tgm-plugin-activation.php:1409
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1312 ../lib/class-tgm-plugin-activation.
|
||||
#: php:1312 ../lib/class-tgm-plugin-activation.php:1410
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1372
|
||||
#, php-format
|
||||
msgid ""
|
||||
"No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
|
||||
"Dashboard\">Return to the Dashboard</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1388
|
||||
msgid "Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1389
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1390
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1391
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1939
|
||||
msgid "Install package not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1940
|
||||
#, php-format
|
||||
msgid "Downloading install package from <span class=\"code\">%s</span>…"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1941
|
||||
msgid "Unpacking the package…"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1942
|
||||
msgid "Installing the plugin…"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1943
|
||||
msgid "Plugin install failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1944
|
||||
msgid "Plugin installed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:1955
|
||||
msgid "Plugin activation failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2069
|
||||
msgid ""
|
||||
"The installation and activation process is starting. This process may take a "
|
||||
"while on some hosts, so please be patient."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2070
|
||||
#, php-format
|
||||
msgid "%1$s installed and activated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2070 ../lib/class-tgm-plugin-activation.
|
||||
#: php:2079
|
||||
msgid "Show Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2070 ../lib/class-tgm-plugin-activation.
|
||||
#: php:2079
|
||||
msgid "Hide Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2071
|
||||
msgid "All installations and activations have been completed."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2072
|
||||
#, php-format
|
||||
msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2076
|
||||
msgid ""
|
||||
"The installation process is starting. This process may take a while on some "
|
||||
"hosts, so please be patient."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2077
|
||||
#, php-format
|
||||
msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2078
|
||||
#, php-format
|
||||
msgid "The installation of %1$s failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2079
|
||||
#, php-format
|
||||
msgid "%1$s installed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2080
|
||||
msgid "All installations have been completed."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/class-tgm-plugin-activation.php:2081
|
||||
#, php-format
|
||||
msgid "Installing Plugin %1$s (%2$d/%3$d)"
|
||||
msgstr ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/device-detector/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/device-detector/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
All notable changes to **Device Detector** are documented in this *changelog*.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Device Detector** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.0] - 2020-01-22
|
||||
### Initial release
|
||||
@@ -0,0 +1,43 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Dirk Helbert
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: dh-widget-dashqa 1.0\n"
|
||||
"Report-Msgid-Bugs-To: info@dirk-helbert.de\n"
|
||||
"POT-Creation-Date: 2014-07-06 01:23+0200\n"
|
||||
"PO-Revision-Date: 2014-07-06 13:29+0100\n"
|
||||
"Last-Translator: Dirk Helbert <info@dirk-helbert.de>\n"
|
||||
"Language-Team: Dirk Helbert <info@dirk-helbert.de>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.6.6\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: de_DE\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
msgid ""
|
||||
"A small widget to access content like pages and articles quickly from the "
|
||||
"dashboard."
|
||||
msgstr "Ein kleines Widget für den schnellen Zugriff auf Seiten und Beiträge über das Dashboard."
|
||||
|
||||
#: ../dh-widget-dashqa.php:36
|
||||
msgid "DH Dashboard Quick Content Access Widget"
|
||||
msgstr "DH Dashboard Quick Content Access Widget"
|
||||
|
||||
#: ../dh-widget-dashqa.php:115
|
||||
msgid "Page"
|
||||
msgstr "Seite"
|
||||
|
||||
#: ../dh-widget-dashqa.php:115
|
||||
msgid "Post"
|
||||
msgstr "Beitrag"
|
||||
|
||||
#: ../widget.php:9
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user