Compare commits
66 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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/
|
||||
|
||||
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}}
|
||||
34
.github/workflows/ruby.yml
vendored
Normal file
34
.github/workflows/ruby.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
name: Ruby
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
- name: Cache gems
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-gem-${{ hashFiles('**/wpscan.gemspec') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gem-
|
||||
- name: Build and test
|
||||
run: |
|
||||
gem install bundler
|
||||
bundle config force_ruby_platform true
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
- name: test
|
||||
run: |
|
||||
bundle exec rspec
|
||||
- name: rubocop
|
||||
run: |
|
||||
bundle exec rubocop
|
||||
5
.rspec
5
.rspec
@@ -1,3 +1,2 @@
|
||||
--color
|
||||
--fail-fast
|
||||
--require spec_helper
|
||||
--require spec_helper
|
||||
--color
|
||||
@@ -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:
|
||||
|
||||
@@ -5,9 +5,7 @@ rvm:
|
||||
- 2.4.9
|
||||
- 2.5.7
|
||||
- 2.6.5
|
||||
before_install:
|
||||
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
||||
- gem update --system
|
||||
- 2.7.0
|
||||
script:
|
||||
- bundle exec rubocop
|
||||
- bundle exec rspec
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 -%>
|
||||
},
|
||||
@@ -21,6 +21,7 @@ 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))
|
||||
|
||||
@@ -69,6 +70,7 @@ module WPScan
|
||||
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
|
||||
'CF-Connecting-IP' => nil, # Removes in case user provided one for the target
|
||||
'User-Agent' => Browser.instance.default_user_agent,
|
||||
'Authorization' => "Token token=#{token}"
|
||||
}
|
||||
|
||||
@@ -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 ||=
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.7.5'
|
||||
VERSION = '3.7.8'
|
||||
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
|
||||
|
||||
29044
spec/fixtures/db/dynamic_finders.yml
vendored
29044
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
2961
spec/fixtures/dynamic_finders/expected.yml
vendored
2961
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 ""
|
||||
|
||||
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,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"
|
||||
}
|
||||
}
|
||||
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,137 @@ 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]-->
|
||||
|
||||
|
||||
|
||||
|
||||
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 ""
|
||||
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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
@@ -0,0 +1,112 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DH New Mark Ver 0.9.5\n"
|
||||
"POT-Creation-Date: 2011-04-26 22:22+0900\n"
|
||||
"PO-Revision-Date: 2011-07-08 17:30+0900\n"
|
||||
"Last-Translator: mkoba <kobayashi@dreamhive.co.jp>\n"
|
||||
"Language-Team: DREAMHIVE <wordpress@dreamhive.co.jp>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;gettext;gettext_noop\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Japanese\n"
|
||||
"X-Poedit-Country: JAPAN\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
|
||||
msgid "DH New Mark settings"
|
||||
msgstr "DH New Mark 設定"
|
||||
|
||||
msgid "New posts in the loop to display the mark."
|
||||
msgstr "投稿記事ループ中にNewマークを表示させる。"
|
||||
|
||||
msgid "Please enter a display period in the numbers."
|
||||
msgstr "表示期間は半角数字で入力してください。"
|
||||
|
||||
msgid "Please enter the number displayed in the numbers."
|
||||
msgstr "表示件数は半角数字で入力してください。"
|
||||
|
||||
msgid "e.g. "
|
||||
msgstr "例:"
|
||||
|
||||
msgid "how to use"
|
||||
msgstr "使い方"
|
||||
|
||||
msgid "Please embed code below and beside the part that repeats the title of an article in the theme editor."
|
||||
msgstr "テーマ編集で記事を繰り返し表示している部分のタイトルの脇などに以下のコード埋め込んでください。"
|
||||
|
||||
msgid "When you deactivated plugins, all settings will be lost."
|
||||
msgstr "プラグインの停止を行うと設定値は全て削除されます。"
|
||||
|
||||
msgid "To disable the \"0\" Please specify."
|
||||
msgstr "無効したい場合は「0」を指定してください。"
|
||||
|
||||
msgid "New Mark Display Conditions"
|
||||
msgstr "Newマークの表示条件"
|
||||
|
||||
msgid "Display period"
|
||||
msgstr "表示期間"
|
||||
|
||||
msgid "Display count"
|
||||
msgstr "表示件数"
|
||||
|
||||
msgid "days"
|
||||
msgstr "日間"
|
||||
|
||||
msgid "posts"
|
||||
msgstr "件"
|
||||
|
||||
msgid "Period or Count, Display if it meets either condition."
|
||||
msgstr "表示期間/表示件数のいずれかの条件を満たせばNewマークは表示されます。"
|
||||
|
||||
msgid "New Mark Select"
|
||||
msgstr "Newマークの選択"
|
||||
|
||||
msgid "Installed images"
|
||||
msgstr "画像を利用する"
|
||||
|
||||
msgid "If you want to use the original image, \"Original tag\" Please select."
|
||||
msgstr "独自のNewマーク等を使いたい場合は、「タグを挿入する」を利用してください。"
|
||||
|
||||
msgid "PHP tags available"
|
||||
msgstr "PHPタグも可"
|
||||
|
||||
msgid "Original tag"
|
||||
msgstr "タグを挿入する"
|
||||
|
||||
msgid "Red"
|
||||
msgstr "赤色"
|
||||
|
||||
msgid "Orange"
|
||||
msgstr "橙色"
|
||||
|
||||
msgid "Pink"
|
||||
msgstr "桃色"
|
||||
|
||||
msgid "Green"
|
||||
msgstr "緑色"
|
||||
|
||||
msgid "Lime"
|
||||
msgstr "黄緑色"
|
||||
|
||||
msgid "Indigo"
|
||||
msgstr "藍色"
|
||||
|
||||
msgid "Sky"
|
||||
msgstr "水色"
|
||||
|
||||
msgid "Brown"
|
||||
msgstr "茶色"
|
||||
|
||||
msgid "White"
|
||||
msgstr "白色"
|
||||
|
||||
msgid "Black"
|
||||
msgstr "黒色"
|
||||
|
||||
msgid "Preview"
|
||||
msgstr "プレビュー"
|
||||
|
||||
msgid "New Mark Icons, <a href=\"http://sozai.7gates.net/en/\" target=\"_blank\">sozai.7gates.net</a> to provide."
|
||||
msgstr "<a href=\"http://sozai.7gates.net/\" target=\"_blank\">無料素材倶楽部</a>様のご提供アイコンです。"
|
||||
|
||||
@@ -0,0 +1,155 @@
|
||||
# Copyright (C) 2006-2011 Scott Reilly
|
||||
# This file is distributed under the same license as the Disable Directory Listings package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Disable Directory Listings 2.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/disable-directory-listings\n"
|
||||
"POT-Creation-Date: 2011-07-29 02:58:00+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"
|
||||
|
||||
#: c2c-plugin.php:77
|
||||
msgid "Invalid file specified for C2C_Plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:304
|
||||
msgid "Settings reset."
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:315 c2c-plugin.php:323
|
||||
msgid "A value is required for: \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:332
|
||||
msgid "Expected integer value for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:442
|
||||
msgid "More information about %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:443
|
||||
msgid "Click for more help on this plugin"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:444
|
||||
msgid " (especially check out the \"Other Notes\" tab, if present)"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:535
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:769
|
||||
msgid "See the \"Help\" link to the top-right of the page for more help."
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:790
|
||||
msgid "A plugin by coffee2code"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:801
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:802
|
||||
msgid "Reset Settings"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:808
|
||||
msgid "Scott Reilly, aka coffee2code"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:809
|
||||
msgid "This plugin brought to you by %s."
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:810
|
||||
msgid "Please consider a donation"
|
||||
msgstr ""
|
||||
|
||||
#: c2c-plugin.php:811
|
||||
msgid "Did you find this plugin useful?"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# disable-directory-listings.pot (Disable Directory Listings 2.0) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: disable-directory-listings.php:110 disable-directory-listings.php:111
|
||||
#: disable-directory-listings.php:222
|
||||
msgid "Disable Directory Listings"
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:114
|
||||
msgid "Disable listing for all directories?"
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:115
|
||||
msgid ""
|
||||
"If set, this does not necessarily obviate the setting below; if this option "
|
||||
"is set and a given directory is not explicitly listed below, the web server "
|
||||
"will still acknowledge that the directory exists (though it won't list its "
|
||||
"contents) and the visitor will NOT see a themed 404 error page nor will a "
|
||||
"Page with the same name as the directory be shown instead."
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:118
|
||||
msgid "Disable listing for these directories"
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:120
|
||||
msgid ""
|
||||
"List only one directory per line, leading and trailing forward slashes are "
|
||||
"not necessary"
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:186
|
||||
msgid ""
|
||||
"<strong>NOTE:</strong> Your .htaccess file is not currently writable. Please "
|
||||
"manually update your .htaccess file in order to gain directory listing "
|
||||
"protection (via <a href=\"%s\" title=\"Settings - Permalinks\">here</a>)"
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:206
|
||||
msgid "Rewrite rules have also been regenerated."
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:208
|
||||
msgid "Go to %s to see how to manually update your rewrite rules."
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:227
|
||||
msgid ""
|
||||
"<strong>NOTE:</strong> Your .htaccess file is not currently writable so any "
|
||||
"updates you make to the settings on this page will require you to manually "
|
||||
"update your .htaccess file in order to regenerate the rewrite rules. After "
|
||||
"saving your changes, go to the %s admin page to learn more and obtain the "
|
||||
"necessary rewrite rules."
|
||||
msgstr ""
|
||||
|
||||
#: disable-directory-listings.php:229
|
||||
msgid ""
|
||||
"If you have not regenerated your rewrite rules since activating the plugin "
|
||||
"you must do so! You must also do so when deactivating this plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://coffee2code.com/wp-plugins/disable-directory-listings"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Prevent virtual directory listing services from listing the contents of "
|
||||
"directories, and/or show a page in place of a directory's listing."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Scott Reilly"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://coffee2code.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,95 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Disable Title v0.9\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-04-03 21:10+0100\n"
|
||||
"PO-Revision-Date: 2013-12-05 08:10:47+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.5\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/disable-title\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#: class-disable-title.php:147
|
||||
#: class-disable-title.php:148
|
||||
#: class-disable-title.php:160
|
||||
#@ disable_title
|
||||
msgid "Title settings"
|
||||
msgstr "Titel ausblenden"
|
||||
|
||||
#: class-disable-title.php:180
|
||||
#@ disable_title
|
||||
msgid "Disable title on homepage"
|
||||
msgstr "Titel auf Startseite ausblenden"
|
||||
|
||||
#: class-disable-title.php:182
|
||||
#@ disable_title
|
||||
msgid "Disable title on page/post"
|
||||
msgstr "Titel auf Detailseite ausblenden"
|
||||
|
||||
#: class-disable-title.php:184
|
||||
#@ disable_title
|
||||
msgid "Disable title on category page"
|
||||
msgstr "Titel auf Kategorieseite ausblenden"
|
||||
|
||||
#: class-disable-title.php:186
|
||||
#@ disable_title
|
||||
msgid "Disable title on archive page"
|
||||
msgstr "Titel auf Archivseite ausblenden"
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: disable-title.php:0
|
||||
#@ disable_title
|
||||
msgid "Disable Title"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#: disable-title.php:0
|
||||
#@ disable_title
|
||||
msgid "http://www.staude.net/wordpress/plugins/DisableTitle"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: disable-title.php:0
|
||||
#@ disable_title
|
||||
msgid "Disable the title per page/post"
|
||||
msgstr "Mit diesem Plugin kann man bei jeder Seite und jedem Artikel festlegen ob der Titel auf der Startseite, auf Kategorie, Archiv oder Detailseiten unterdrückt werden soll."
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: disable-title.php:0
|
||||
#@ disable_title
|
||||
msgid "Frank Staude"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: disable-title.php:0
|
||||
#@ disable_title
|
||||
msgid "http://www.staude.net/"
|
||||
msgstr ""
|
||||
|
||||
#: class-disable-title.php:188
|
||||
#@ disable_title
|
||||
msgid "Disable title on menu"
|
||||
msgstr "Titel im Menü unterdrücken"
|
||||
|
||||
#: class-disable-title.php:190
|
||||
#@ disable_title
|
||||
msgid "Disable title on widgets"
|
||||
msgstr "Titel in Widgets unterdrücken"
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: disable-title.php:0
|
||||
#@ disable_title
|
||||
msgid "0.9"
|
||||
msgstr ""
|
||||
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/docollipics-faustball-de/change_log/changelog.txt
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/docollipics-faustball-de/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.2.3 =
|
||||
* Update auf HTML Purifier 4.12.0
|
||||
|
||||
= 1.2.2 =
|
||||
* Kleine Verbesserungen f<>r wordpress.com
|
||||
|
||||
= 1.2.1 =
|
||||
* Code<64>nderung f<>r wordpress.com
|
||||
* Tippfehler in Einstellungsseite korrigiert
|
||||
* Kleine grafische Anpassungen der Einstellungsseite
|
||||
|
||||
= 1.2.0 =
|
||||
* Namens<6E>nderung um bei wordpress.com akzeptiert zu werden
|
||||
* Konfigurierbares Timeout f<>r Abfrage von faustball.de eingef<65>gt
|
||||
* verbesserte Fehlermeldungen
|
||||
|
||||
= 1.1.0 =
|
||||
* HTML Cleanup <20>ber HTMLPurifier
|
||||
* Einstellungen zu eigenen Spalten<65>berschriften
|
||||
|
||||
= 1.0.0 =
|
||||
* Erste Version
|
||||
170
spec/fixtures/dynamic_finders/plugin_version/dodebug/translation_file/lang/dodebug.pot
vendored
Normal file
170
spec/fixtures/dynamic_finders/plugin_version/dodebug/translation_file/lang/dodebug.pot
vendored
Normal file
@@ -0,0 +1,170 @@
|
||||
# Copyright (C) 2020 DoDebug
|
||||
# This file is distributed under the same license as the DoDebug package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DoDebug 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dodebug\n"
|
||||
"POT-Creation-Date: 2020-01-22 20:55:35+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 <LL@li.org>\n"
|
||||
|
||||
#: src/admin.cls.php:65
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:111
|
||||
msgid "Folder does not exist: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:118
|
||||
msgid "Can not create folder: %1$s. Error: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:124
|
||||
msgid "Folder is not writable: %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:130 src/f.cls.php:134
|
||||
msgid "File %s is not writable."
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:141
|
||||
msgid "Failed to write to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/lang.cls.php:37
|
||||
msgid "Test."
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:216
|
||||
msgid "just now"
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:216
|
||||
msgid "right now"
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:218
|
||||
msgid " %s ago"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:32
|
||||
msgid "DoDebug Settings"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:44
|
||||
msgid "Debug"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:46 tpl/settings.tpl.php:104
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:48
|
||||
msgid "Turn this on to start logging."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:51
|
||||
msgid "Advanced Level"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:53
|
||||
msgid "Advanced level is for the usuage of function %s."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:56
|
||||
msgid "Log Cookies"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:61
|
||||
msgid "Log Filesize Limit"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:66
|
||||
msgid "Specify the maximum size of the log file."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:72
|
||||
msgid "URI Includes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:79
|
||||
msgid ""
|
||||
"Only log listed pages. The URLs will be compared to the REQUEST_URI server "
|
||||
"variable."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:80 tpl/settings.tpl.php:95 tpl/settings.tpl.php:121
|
||||
#: tpl/settings.tpl.php:136
|
||||
msgid "One per line."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:87
|
||||
msgid "URI Excludes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:94
|
||||
msgid ""
|
||||
"Prevent any log of listed pages. The URLs will be compared to the "
|
||||
"REQUEST_URI server variable."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:102
|
||||
msgid "Log Filters"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:106
|
||||
msgid "Log all WordPress filter hooks."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:107
|
||||
msgid "Enabling this option will cause log file size to grow quickly."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:113
|
||||
msgid "Filter Excludes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:120
|
||||
msgid "Listed filters will not be logged."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:128
|
||||
msgid "Filter Partial Excludes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:135
|
||||
msgid "Filters containing these strings will not be logged."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:143
|
||||
msgid "Admin IPs"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:150
|
||||
msgid "Only log the requests from these IPs."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:151
|
||||
msgid "Your IP is %s."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:166
|
||||
msgid "APIs"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "DoDebug"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Just a debug tool for theme/plugin developers."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WPDO"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,59 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: dynamic-coupons-with-zendesk-for-woocommerce-v1.0.0\n"
|
||||
"POT-Creation-Date: 2019-12-04 15:19+0530\n"
|
||||
"PO-Revision-Date: 2019-12-04 15:19+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;esc_html;esc_html__;esc_html_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: Library/class-mwb-zencoupon-manager.php:194
|
||||
#: Library/class-mwb-zencoupon-manager.php:210
|
||||
msgid "No coupons found"
|
||||
msgstr ""
|
||||
|
||||
#: Library/class-mwb-zencoupon-manager.php:204
|
||||
#: Library/class-mwb-zencoupon-manager.php:272
|
||||
msgid "Wrong Store URL"
|
||||
msgstr ""
|
||||
|
||||
#: zendesk-dynamic-coupons.php:139
|
||||
msgid "Mail Sent Successfully."
|
||||
msgstr ""
|
||||
|
||||
#: zendesk-dynamic-coupons.php:140
|
||||
msgid "Mail not sent"
|
||||
msgstr ""
|
||||
|
||||
#: zendesk-dynamic-coupons.php:141
|
||||
msgid "Mail already sent"
|
||||
msgstr ""
|
||||
|
||||
#: zendesk-dynamic-coupons.php:160
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Support the %1$1s%2$2s%3$3s plugin development by sending us tracking "
|
||||
"data( we just want your Email Address and Name that too only once )."
|
||||
msgstr ""
|
||||
|
||||
#: zendesk-dynamic-coupons.php:165
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your %1$1s%4$4s%3$3s key is %1$1s%2$2s%3$3s. Enter this key while installing "
|
||||
"the app."
|
||||
msgstr ""
|
||||
|
||||
#: zendesk-dynamic-coupons.php:183
|
||||
msgid ""
|
||||
"Woocommerce is not activated, please activate woocommerce first to install "
|
||||
"and use zendesk woocommerce plugin."
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/e-commerce-mailcheck/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/e-commerce-mailcheck/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "e-Commerce-Mailcheck",
|
||||
"version": "1.0.5",
|
||||
"description": "Adds mailcheck support for WP e-Commerce, WooCommerce, Shopp or Easy Digital Downloads to help you get your customer's details right - first time.",
|
||||
"main": "wp-cart-mailcheck.php",
|
||||
"devDependencies": {
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-contrib-cssmin": "^0.12.2",
|
||||
"grunt-contrib-uglify": "^0.8.0",
|
||||
"grunt-contrib-watch": "^0.6.1"
|
||||
},
|
||||
"scripts": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@github.com:leewillis77/e-commerce-mailcheck.git"
|
||||
},
|
||||
"author": "Lee Willis",
|
||||
"bugs": {
|
||||
"url": "https://github.com/leewillis77/e-commerce-mailcheck/issues"
|
||||
},
|
||||
"homepage": "https://github.com/leewillis77/e-commerce-mailcheck",
|
||||
"license": "GPLv2"
|
||||
}
|
||||
@@ -0,0 +1,736 @@
|
||||
# Copyright (C) 2020 EASY FlipBook
|
||||
# This file is distributed under the same license as the EASY FlipBook package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: EASY FlipBook 2.1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-flipbook-i-widget\n"
|
||||
"POT-Creation-Date: 2020-01-05 14:44:48+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: inc/dictionary.php:26
|
||||
msgid "auto"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:27 inc/dictionary.php:154
|
||||
msgid "Sorry something went wrong with the server please try again"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:28 inc/dictionary.php:151
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:29
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:30
|
||||
msgid "Book properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:31
|
||||
msgid "Sheet properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:32
|
||||
msgid "Cover properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:33
|
||||
msgid "Page properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:34
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:35
|
||||
msgid "PDF file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:36
|
||||
msgid "Images, HTMLs files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:37
|
||||
msgid "interactive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:38
|
||||
msgid "Page number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:39
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:40
|
||||
msgid "CSS Layer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:41
|
||||
msgid "CSS"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:42
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:43
|
||||
msgid "Java Script"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:44 inc/dictionary.php:86
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:45
|
||||
msgid "Select files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:46
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:47
|
||||
msgid "Add image pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:48
|
||||
msgid "Add HTML pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:49
|
||||
msgid "Add PDF page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:50
|
||||
msgid "Remove all pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:51
|
||||
msgid "items per page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:52
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:53
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:54
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:55
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:56
|
||||
msgid "PDF page number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:57
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:58
|
||||
msgid "Change image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:59
|
||||
msgid "Auto thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:60
|
||||
msgid "book height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:61
|
||||
msgid "book width"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:62
|
||||
msgid "gravity constant"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:63
|
||||
msgid "amount of rendered cached pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:64
|
||||
msgid "render loaded hidden pages in the background"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:65
|
||||
msgid "render pages while they are flipping, it can slow down animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:66
|
||||
msgid "amount of loaded by user pages that are used for predicting user behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:67
|
||||
msgid "quantity of predicted pages for automatic loading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:68
|
||||
msgid "initial flipping velocity, it should be enough to overcome the gravity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:69
|
||||
msgid "max corner (flexible part of the sheet) deviation from the whole sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:70
|
||||
msgid "sheet flexibility"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:71
|
||||
msgid "part of the sheet that can be flexed, should be in range (0, 1)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:72
|
||||
msgid "speed of changing bending angle of the flexible corner"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:73
|
||||
msgid "curvature of open sheet, 0 is for flat sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:74
|
||||
msgid "width texture resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:75
|
||||
msgid "height texture resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:76
|
||||
msgid "sheet color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:77
|
||||
msgid "sheet thickness"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:78
|
||||
msgid "sheet weight"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:79
|
||||
msgid "cover height is more on 2*padding and cover width more on 1*padding than page ones, so you can set different sizes for typical pages and cover like for real book"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:80
|
||||
msgid "binder texture"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:81
|
||||
msgid "Deep linking URL parameter name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:82
|
||||
msgid "items pre page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:83
|
||||
msgid "EASY FlipBook"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:84
|
||||
msgid "View mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:85
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:87
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:88
|
||||
msgid "Thumbnail and Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:89
|
||||
msgid "Lightbox activation link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:90
|
||||
msgid "Fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:91
|
||||
msgid "Select skin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:92
|
||||
msgid "EASY FlipBook container CSS classes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:93
|
||||
msgid "Lightbox theme"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:94
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:95
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:96
|
||||
msgid "default value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:97
|
||||
msgid "minimum value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:98
|
||||
msgid "maximum value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:99
|
||||
msgid "amount of zoom levels"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:100
|
||||
msgid "amount of lighting levels"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:101
|
||||
msgid "pan step for comands cmdPanLeft, cmdPanRight, cmdPanUp, cmdPanDown"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:102
|
||||
msgid "zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:103
|
||||
msgid "zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:104
|
||||
msgid "set default zoom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:105
|
||||
msgid "show bookmarks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:106
|
||||
msgid "turn 10 pages backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:107
|
||||
msgid "turn a page backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:108
|
||||
msgid "turn a page forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:109
|
||||
msgid "turn 10 pages forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:110
|
||||
msgid "download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:111
|
||||
msgid "print"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:112
|
||||
msgid "toggle fulscreen mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:113
|
||||
msgid "show/hide the settings toolbar button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:114
|
||||
msgid "toggle the smart pan mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:115
|
||||
msgid "toggle single page mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:116
|
||||
msgid "toggle sound effects"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:117
|
||||
msgid "toggle statistics monitor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:118
|
||||
msgid "increase lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:119
|
||||
msgid "reduce lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:120
|
||||
msgid "move pan to the left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:121
|
||||
msgid "move pan to the right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:122
|
||||
msgid "move pan to the up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:123
|
||||
msgid "move pan to the down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:124
|
||||
msgid "rotate the book by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:125
|
||||
msgid "zoom by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:126
|
||||
msgid "pan by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:127
|
||||
msgid "zoom by means mouse wheel operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:128
|
||||
msgid "rotate the book by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:129
|
||||
msgid "zoom by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:130
|
||||
msgid "pan by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:131
|
||||
msgid "Ctrl, Shift, Alt, or their combination like Ctrl+Shift"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:132
|
||||
msgid "modificator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:133
|
||||
msgid "keyboard key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:134
|
||||
msgid "key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:135
|
||||
msgid "mouse button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:136
|
||||
msgid "button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:137
|
||||
msgid "amount of touches"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:138
|
||||
msgid "touches"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:139
|
||||
msgid "event that activates the action"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:140
|
||||
msgid "event"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:141
|
||||
msgid "is action enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:142
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:143
|
||||
msgid "is active by default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:144
|
||||
msgid "active"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:145
|
||||
msgid "is active for mobile devices by default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:146
|
||||
msgid "activeForMobile"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:147
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:148
|
||||
msgid "Lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:149
|
||||
msgid "Pan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:150 inc/settings.php:7
|
||||
msgid "EASY FlipBook - Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:152
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:153
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:155
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:156
|
||||
msgid "One"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:157
|
||||
msgid "Two"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:158
|
||||
msgid "Three"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:159
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:160
|
||||
msgid "Middle"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:161
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:162
|
||||
msgid "Mouse button down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:163
|
||||
msgid "Mouse move"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:164
|
||||
msgid "Mouse button up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:165
|
||||
msgid "Click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:166
|
||||
msgid "Double click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:167
|
||||
msgid "Touch start"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:168
|
||||
msgid "Touch move"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:169
|
||||
msgid "Touch end"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:170
|
||||
msgid "Key down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:171
|
||||
msgid "Key press"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:172
|
||||
msgid "Key up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:173
|
||||
msgid "rtl is a right-to-left, top-to-bottom script, writing starts from the right of the page and continues to the left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:174
|
||||
msgid "Please wait... the Application is Loading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:175
|
||||
msgid "PDF is Loading:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:176
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:177
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:178
|
||||
msgid "Table of contents"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:179
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:180
|
||||
msgid "Bookmarks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:181
|
||||
msgid "Thumbnails"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:182
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:183
|
||||
msgid "Zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:184
|
||||
msgid "Zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:185
|
||||
msgid "Fit view"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:186
|
||||
msgid "10 pages backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:187
|
||||
msgid "10 pages forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:188
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:189
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:190
|
||||
msgid "Full screen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:191 inc/settings.php:8
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:192
|
||||
msgid "Smart pan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:193
|
||||
msgid "Single page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:194
|
||||
msgid "Sounds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:195
|
||||
msgid "Stats"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:196
|
||||
msgid "Increase lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:197
|
||||
msgid "Reduce lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:198
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:12
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post.php:7 inc/templates.php:87
|
||||
msgid "EASY FlipBook"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post.php:9
|
||||
msgid "All Books"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode-generator.php:7 inc/shortcode-generator.php:23
|
||||
msgid "EASY FlipBook - Shortcode Generator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode-generator.php:8
|
||||
msgid "Shortcode Generator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/taxonomy.php:7
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "EASY FlipBook"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://fb.inogst.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Interactive realistic EASY FlipBook I Widget WordPress Plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "inogst.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://inogst.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,46 @@
|
||||
# Translation of the WordPress plugin Edit Parent Comment ID 0.3-trunk by Sergey Biryukov.
|
||||
# Copyright (C) 2010 Sergey Biryukov
|
||||
# This file is distributed under the same license as the Edit Parent Comment ID package.
|
||||
# Sergey Biryukov <sergeybiryukov.ru@gmail.com>, 2010.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Edit Parent Comment ID 0.3\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/edit-parent-comment-id\n"
|
||||
"POT-Creation-Date: 2012-02-04 22:26:58+00:00\n"
|
||||
"PO-Revision-Date: 2012-02-05 02:41+0400\n"
|
||||
"Last-Translator: Sergey Biryukov <sergeybiryukov.ru@gmail.com>\n"
|
||||
"Language-Team: Sergey Biryukov <sergeybiryukov.ru@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-Language: Russian\n"
|
||||
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: edit-parent-comment-id.php:13
|
||||
msgid "Parent Comment ID"
|
||||
msgstr "ID родительского комментария"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Edit Parent Comment ID"
|
||||
msgstr "Edit Parent Comment ID"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://uplift.ru/projects/"
|
||||
msgstr "http://uplift.ru/projects/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Adds parent comment ID meta box to a comment editing page. Use to make existing comments threaded."
|
||||
msgstr "Позволяет изменить ID родительского комментария на странице редактирования."
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sergey Biryukov"
|
||||
msgstr "Сергей Бирюков"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://sergeybiryukov.ru/"
|
||||
msgstr "http://sergeybiryukov.ru/"
|
||||
993
spec/fixtures/dynamic_finders/plugin_version/elementor-pro/change_log/changelog.txt
vendored
Normal file
993
spec/fixtures/dynamic_finders/plugin_version/elementor-pro/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,993 @@
|
||||
# Elementor Pro - by Elementor.com
|
||||
|
||||
#### 2.5.8 - 2019-05-28
|
||||
* Tweak: Removed `auto-confirm` control from MailPoet to support new version of MailPoet
|
||||
* Fix: Multiple Custom Fonts not rendered in the editor
|
||||
* Fix: Products `sale` query - handle exclude by manual selection.
|
||||
* Fix: Product Categories grid row & column style
|
||||
* Fix: Form integration AJAX cache override
|
||||
* Fix: Removed redundant CSS on Canvas & Header-Footer page templates
|
||||
|
||||
|
||||
#### 2.5.8 - 2019-05-06
|
||||
* Fix: Popup entrance animation not working in frontend
|
||||
* Fix: Popup Exit Intent trigger activated multiple times
|
||||
|
||||
#### 2.5.7 - 2019-05-05
|
||||
* Fix: Embedded video keeps playing after a Popup is closed ([#7875](https://github.com/elementor/elementor/issues/7875))
|
||||
* Fix: Maximum call stack size exceeded error in Safari ([#7824](https://github.com/elementor/elementor/issues/7824))
|
||||
* Fix: Entrance animations not appearing on Popup reopen ([#7395](https://github.com/elementor/elementor/issues/7395))
|
||||
* Fix: WC variations select style glitch in several themes ([#8008](https://github.com/elementor/elementor/issues/8008))
|
||||
* Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases
|
||||
|
||||
#### 2.5.6 - 2019-04-29
|
||||
* Tweak: Removed `Shortcode` dynamic from Image, Gallery and Media control
|
||||
* Fix: Popup not inheriting entrance animation in responsive mode ([#7809](https://github.com/elementor/elementor/issues/7809))
|
||||
* Fix: Terms autocomplete retrieves wrong results in Query Control
|
||||
* Fix: Query Control Related by author glitches in edge cases
|
||||
* Fix: Query Control using terms for Products widget
|
||||
* Fix: Posts cards style glitch in small screens
|
||||
* Fix: Display conditions delete icon missing in small screens
|
||||
* Fix: Avoid rendering Menu Cart widget in WordPress native editor
|
||||
|
||||
#### 2.5.5 - 2019-04-08
|
||||
* Tweak: Allow text selection inside a Popup
|
||||
* Fix: Added backwards compatibility for `tax_query` in Query Control ([#7751](https://github.com/elementor/elementor/issues/7751))
|
||||
* Fix: Missing arguments for `widget_title` filter ([#7745](https://github.com/elementor/elementor/issues/7745))
|
||||
|
||||
#### 2.5.4 - 2019-04-03
|
||||
* Fix: Move Query from using `term_id` to `term_taxonomy_id` ([#7653](https://github.com/elementor/elementor/issues/7653))
|
||||
* Fix: Offset manipulation hook removal in Query control
|
||||
* Fix: Missing form field `ID` in some edge cases ([#7711](https://github.com/elementor/elementor/issues/7711), [#7660](https://github.com/elementor/elementor/issues/7660))
|
||||
|
||||
#### 2.5.3 - 2019-03-31
|
||||
* Tweak: Updated Google Calendar dynamic tag URL ([#7673](https://github.com/elementor/elementor/issues/7673))
|
||||
* Fix: Missing form field names ([#7651](https://github.com/elementor/elementor/issues/7651))
|
||||
* Fix: PHP 5.4 backward compatibility in Query Control ([#7633](https://github.com/elementor/elementor/issues/7633))
|
||||
* Fix: `products_deprecated` Query Control module compatibility ([#7654](https://github.com/elementor/elementor/issues/7654))
|
||||
* Fix: Changed query method from `term_id` to `term_taxonomy_id` ([#7653](https://github.com/elementor/elementor/issues/7653))
|
||||
|
||||
#### 2.5.2 - 2019-03-27
|
||||
* Fix: Overwrite parent widget type in Global Widget ([#7632](https://github.com/elementor/elementor/issues/7632))
|
||||
* Fix: Avoid Duplicates option not working in Query Control ([#7635](https://github.com/elementor/elementor/issues/7635))
|
||||
* Fix: Manual Selection option not working in Query Control ([#7634](https://github.com/elementor/elementor/issues/7634))
|
||||
* Fix: Incorrect condition caused handlers issues inside popup
|
||||
|
||||
#### 2.5.1 - 2019-03-26
|
||||
* Fix: Query Control invalid call to deprecated action ([#7619](https://github.com/elementor/elementor/issues/7619))
|
||||
* Tweak: Renamed action hook from `elementor_pro/{$widget_name}/query/{$query_id}` to `elementor/query/{$query_id}`
|
||||
* Tweak: Renamed filter hook from `elementor_pro/query_control/get_query_args/current_query` to `elementor/query/get_query_args/current_query`
|
||||
|
||||
#### 2.5.0 - 2019-03-26
|
||||
* New: Introducing Motion Effects including Scrolling & Mouse effects ([#72](https://github.com/elementor/elementor/issues/72))
|
||||
* New: Introducing Related Posts for Query Control ([#7306](https://github.com/elementor/elementor/issues/7306), [#7490](https://github.com/elementor/elementor/issues/7490))
|
||||
* New: Introducing Date query for Query Control
|
||||
* New: Introducing Sticky Posts support for Query Control ([#2501](https://github.com/elementor/elementor/issues/2501))
|
||||
* Tweak: Added option to open a Popup by a custom selector ([#6871](https://github.com/elementor/elementor/issues/6871), [#6876](https://github.com/elementor/elementor/issues/6876), [#7258](https://github.com/elementor/elementor/issues/7258))
|
||||
* Tweak: Option to count when Popup is closed in "Show up to X times" Advanced Rule
|
||||
* Tweak: Added full border radius control options inside Popup
|
||||
* Tweak: Changed exit intent icon in Popups
|
||||
* Tweak: Show only one popup in its own preview
|
||||
* Tweak: Added responsive support to Popup entrance animation control
|
||||
* Tweak: Conditions - Singular `All Pages` string changed to `Pages`
|
||||
* Tweak: Added form field shortcode support for Drip tags ([#7000](https://github.com/elementor/elementor/issues/7000))
|
||||
* Tweak: Added dynamic capabilities to Price List widget ([#7258](https://github.com/elementor/elementor/issues/7258))
|
||||
* Tweak: Added Dynamic capabilities to Custom Attributes ([#6779](https://github.com/elementor/elementor/issues/6779))
|
||||
* Tweak: Added dynamic capabilities to Flip Box widget ([#6986](https://github.com/elementor/elementor/issues/6986))
|
||||
* Tweak: Decrease `z-index` for Nav Menu ([#6869](https://github.com/elementor/elementor/issues/6869))
|
||||
* Tweak: Changed "Scrolling Effects" section label to "Motion Effects"
|
||||
* Tweak: Use filter `get_meta_viewport` for header templates ([#7043](https://github.com/elementor/elementor/issues/7043))
|
||||
* Tweak: use filterable `Util::get_public_post_types()` in Theme Builder ([#7172](https://github.com/elementor/elementor/issues/7172))
|
||||
* Tweak: Added Cloudflare rocket-loader support ([#7443](https://github.com/elementor/elementor/issues/7443))
|
||||
* Tweak: Added responsive support to WC Products Columns & Rows Gap controls ([#6913](https://github.com/elementor/elementor/issues/6913))
|
||||
* Tweak: WC Menu cart "View Cart" & "Checkout" buttons styling
|
||||
* Fix: Custom ID reset to default when dragging repeater
|
||||
* Fix: Conflict between archive-products widget and WC customizer
|
||||
* Fix: Add to Cart widget `spacing` and `space-between`
|
||||
* Fix: Library view when creating a new Header or Footer
|
||||
* Fix: Post types labels missing on Add New Template modal
|
||||
|
||||
#### 2.4.8 - 2019-03-11
|
||||
* Fix: Missing query section in Products widget
|
||||
* Fix: Missing Taxonomy controls in Products widget in edge cases
|
||||
|
||||
#### 2.4.7 - 2019-03-06
|
||||
* Fix: Compatibility Global Widget with Elementor v2.5.0+
|
||||
|
||||
#### 2.4.6 - 2019-03-04
|
||||
* Fix: Pods gallery dynamic when empty ([#7127](https://github.com/elementor/elementor/issues/7127))
|
||||
* Fix: Duplicate call for conditions screen issue
|
||||
* Fix: Compatibility with Elementor v2.5.0
|
||||
|
||||
#### 2.4.5 - 2019-02-18
|
||||
* Fix: Image size issue in Testimonial Carousel ([#7058](https://github.com/elementor/elementor/issues/7058))
|
||||
* Fix: MailChimp groups not saved in a form integration ([#7083](https://github.com/elementor/elementor/issues/7083))
|
||||
* Fix: Show popup preview only on it's own preview
|
||||
* Fix: Elementor dashboard templates URL corrupted links in edge cases
|
||||
|
||||
#### 2.4.4 - 2019-02-11
|
||||
* Tweak: Added ACF Date Time Picker field support ([#6690](https://github.com/elementor/elementor/issues/6690))
|
||||
* Tweak: Changed the term of `All Posts` condition to `Posts`
|
||||
* Fix: Added `<IfModule>` to avoid 500 error when `mod-headers` is missing ([#7034](https://github.com/elementor/elementor/issues/7034))
|
||||
* Fix: Include post CSS deletion in Global Widget update ([#6856](https://github.com/elementor/elementor/issues/6856))
|
||||
* Fix: `Textarea` default value in Forms Widget ([#6934](https://github.com/elementor/elementor/issues/6934))
|
||||
* Fix: MailPoet latest version caused fatal error ([#6996](https://github.com/elementor/elementor/issues/6996))
|
||||
* Fix: Fatal Error caused by calling MailPoet deleted method
|
||||
* Notice: MailPoet `Auto Confirm` option will now default to "On"
|
||||
|
||||
#### 2.4.3 - 2019-01-30
|
||||
* Fix: Custom Add to Cart widget responsive alignment settings
|
||||
* Fix: Links in Post Info widget
|
||||
* Fix: WooCommerce `View Cart` string translate
|
||||
* Fix: Wrapper classes for header/footer templates ([#6884](https://github.com/elementor/elementor/issues/6884))
|
||||
|
||||
#### 2.4.2 - 2019-01-25
|
||||
* Tweak: Added pixel units to Close Button position control in Popups
|
||||
* Fix: Exclude error in WC Products widget
|
||||
|
||||
#### 2.4.1 - 2019-01-24
|
||||
* Tweak: Added CSS classes control to Popup ([#6826](https://github.com/elementor/elementor/issues/6826))
|
||||
* Tweak: Added responsive image size to Testimonial Carousel widget
|
||||
* Fix: PHP warning when Toolset Date dynamic is empty ([#6842](https://github.com/elementor/elementor/issues/6842))
|
||||
* Fix: Support of exclude-ids in WC Products widget
|
||||
* Fix: Popup close button not clickable
|
||||
* Fix: Alignment justify issue of Add to Cart widget ([#6749](https://github.com/elementor/elementor/issues/6749))
|
||||
* Fix: Bad anchors breaks the page JS
|
||||
* Fix: Popup overlay shown when turned off
|
||||
|
||||
#### 2.4.0 - 2019-01-21
|
||||
* New: Introducing Popup Builder ([#628](https://github.com/elementor/elementor/issues/628))
|
||||
* New: Added `Popup` Dynamic Tag
|
||||
* New: Added `Popup` forms action after submit
|
||||
* New: Added User Info dynamic tag ([#6322](https://github.com/elementor/elementor/issues/6322))
|
||||
* Tweak: Added dynamic capabilities for "Nothing Found" message
|
||||
* Tweak: Added `elementor_pro/theme_builder/archive/escape_nothing_found_message` Filter to avoid HTML escaping in "Nothing Found" message ([#6053](https://github.com/elementor/elementor/issues/6053))
|
||||
* Tweak: Added `add_doc_to_location` method to Allow insertion of a document to a location
|
||||
* Fix: `z-index` issue with CTA widget ([#6486](https://github.com/elementor/elementor/issues/6486))
|
||||
* Fix: Hide the Post Content widget and show it only in a Single document
|
||||
* Fix: `selector` replacement in Custom CSS
|
||||
* Fix: Apply `the_content` on the real content only
|
||||
* Fix: CSS for WC products selector ([#6559](https://github.com/elementor/elementor/issues/6559))
|
||||
* Fix: Odnoklassniki share URL ([#6638](https://github.com/elementor/elementor/issues/6638))
|
||||
* Fix: Custom link new tab in Post Info widget ([#5766](https://github.com/elementor/elementor/issues/5766))
|
||||
* Fix: `nofollow` link in Flip Box & CTA widgets
|
||||
* Fix: Post Terms in Post Info widget
|
||||
* Fix: Added screen reader to some icons & buttons for better accessibility ([#5386](https://github.com/elementor/elementor/issues/5386))
|
||||
* Fix: Accessibility labels in Reviews widget ([#6630](https://github.com/elementor/elementor/issues/6630))
|
||||
* Fix: Link to cart page not working when WooCommerce Subscriptions is active
|
||||
* Fix: MailChimp Selected list not showing on reloading in Form widget
|
||||
* Fix: Sub-menu arrow position in Nav Menu widget
|
||||
* Fix: Conflict with WP Security Audit Log plugin ([#6648](https://github.com/elementor/elementor/issues/6648))
|
||||
|
||||
#### 2.3.1 - 2018-12-19
|
||||
* Fix: Template widget search functionality ([#6473](https://github.com/elementor/elementor/issues/6473))
|
||||
* Fix: Apply `the_content` filter to post content in theme builder
|
||||
|
||||
#### 2.3.0 - 2018-12-17
|
||||
* New: Introducing Discord Integration for Forms ([#4218](https://github.com/elementor/elementor/issues/4218))
|
||||
* New: Introducing Slack Integration for Forms
|
||||
* New: Introducing MailerLite Integration for Forms ([#4462](https://github.com/elementor/elementor/issues/4462))
|
||||
* New: Activate Elementor Pro plugin by connecting to Elementor account
|
||||
* Tweak: Added `elementor_pro/utils/get_public_post_types` filter hook ([#5900](https://github.com/elementor/elementor/issues/5900))
|
||||
* Tweak: Added `loop_start` & `the_content` hooks for Post Content ([#6173](https://github.com/elementor/elementor/issues/6173))
|
||||
* Tweak: Removed Custom Attributes from Page Settings
|
||||
* Tweak: Always add the Custom CSS control to the Advanced tab
|
||||
* Fix: In sub Term condition false positive in edge cases
|
||||
* Fix: ToolSet Dynamic Image fallback
|
||||
* Fix: Style glitch with the dropdown color in Nav Menu widget
|
||||
* Fix: Style glitch in the Conditions screen in Safari browser
|
||||
* Fix: Ribbon in the CTA widget obscures drop down menu ([#6080](https://github.com/elementor/elementor/issues/6080))
|
||||
* Fix: The color of label won't change color in Widget login
|
||||
|
||||
#### 2.2.5 - 2018-12-11
|
||||
* New: Add Style Tab & Custom CSS for Header & Footer Templates.
|
||||
* Tweak: Added a better identifier for subpages ([#6362](https://github.com/elementor/elementor/issues/6362))
|
||||
* Tweak: Removed Custom Attributes from page settings
|
||||
* Fix: Yahoo event URL date issue ([#6354](https://github.com/elementor/elementor/issues/6354))
|
||||
* Fix: Allow timezone settings in Google event URL ([#6354](https://github.com/elementor/elementor/issues/6354))
|
||||
* Fix: Avoid `z-index` changes by `nanocss` in build process
|
||||
* Fix: Added missing WC upsells products CSS
|
||||
* Fix: Nav Menu dropdown losing color on hover
|
||||
* Fix: WC Product Add-ons CSS compatibility
|
||||
|
||||
#### 2.2.4 - 2018-12-04
|
||||
* Fix: Global widget not saving changes ([#6340](https://github.com/elementor/elementor/issues/6340))
|
||||
* Fix: Dynamic tags support in Blockquote widget ([#6334](https://github.com/elementor/elementor/issues/6334))
|
||||
* Fix: Forms Redirect URL action when using form field values with spaces
|
||||
|
||||
#### 2.2.3 - 2018-11-29
|
||||
* Fix: Missing "Edit Template" in Template widget ([#6271](https://github.com/elementor/elementor/issues/6271))
|
||||
* Fix: Follow menu anchors with UTF8 characters in Nav Menu
|
||||
* Fix: Show only supported templates in Template widget
|
||||
* Fix: Revert conflicting fix for a default order for WC archive
|
||||
|
||||
#### 2.2.2 - 2018-11-28
|
||||
* Fix: Lightbox dynamic tag crashes the editor
|
||||
|
||||
#### 2.2.1 - 2018-11-28
|
||||
* New: Added `ACF File` Dynamic tag to support text controls.
|
||||
* Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget ([#6223](https://github.com/elementor/elementor/issues/6223))
|
||||
* Tweak: Added Actions group for Lightbox and Contact URL tags
|
||||
* Tweak: Added filter `elementor_pro/dynamic_tags/shortcode/should_escape` to avoid escaping in Shortcode dynamic tag
|
||||
* Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists
|
||||
* Tweak: Added front-end max file size validation for upload fields
|
||||
* Tweak: Added `by-author` per Post-Type condition for theme builder
|
||||
* Fix: Template widget panel not showing the selected template ([#6271](https://github.com/elementor/elementor/issues/6271))
|
||||
* Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag
|
||||
* Fix: Add post classes only for the Single template
|
||||
* Fix: Set document type as not editable for unsupported document like Global widget
|
||||
* Fix: Avoid duplicate query for current WC product query
|
||||
* Fix: Product Archive showing oldest products instead of latest
|
||||
* Fix: CSS reset in Posts widget using cards skin
|
||||
|
||||
#### 2.2.0 - 2018-11-19
|
||||
* New: Introducing Custom Attributes ([#290](https://github.com/elementor/elementor/issues/290), [#3990](https://github.com/elementor/elementor/issues/3990))
|
||||
* New: Added evergreen option for Countdown widget ([#4459](https://github.com/elementor/elementor/issues/4459))
|
||||
* New: Added expire actions option for Countdown widget ([#5242](https://github.com/elementor/elementor/issues/5242))
|
||||
* New: Introducing Reviews widget ([#3854](https://github.com/elementor/elementor/issues/3854))
|
||||
* New: Introducing Sitemap widget ([#5594](https://github.com/elementor/elementor/issues/5594))
|
||||
* New: Added Request Parameter dynamic tag ([#4934](https://github.com/elementor/elementor/issues/4934))
|
||||
* New: Added Shortcode dynamic tag
|
||||
* New: Added Image and Video Lightbox dynamic tag
|
||||
* New: Added Contact URL dynamic tag
|
||||
* New: Added Featured Image Data dynamic tag
|
||||
* New: Added default value to each field in the Form widget ([#4268](https://github.com/elementor/elementor/issues/4268))
|
||||
* New: Added "Any Child Of" condition to template conditions ([#5321](https://github.com/elementor/elementor/issues/5321))
|
||||
* New: Added "In Child" condition to template conditions ([#5587](https://github.com/elementor/elementor/issues/5587))
|
||||
* Tweak: Added Form Redirect URL with form values ([#2564](https://github.com/elementor/elementor/issues/2564))
|
||||
* Tweak: Added default post classes to template wrapper ([#5959](https://github.com/elementor/elementor/issues/5959))
|
||||
* Tweak: Better labels for terms in Query control ([#6092](https://github.com/elementor/elementor/issues/6092))
|
||||
* Tweak: Renamed "Child Of" templates condition to "Direct Child Of"
|
||||
* Tweak: Added `elementor/theme/get_location_templates/condition_sub_id` filter hook to allow template condition translations
|
||||
* Tweak: Load the Template Library widget via Ajax for better performance
|
||||
* Tweak: Added 404 page title for Page Title dynamic tag
|
||||
* Fix: Menu Cart Toggle has # URL link ([#6141](https://github.com/elementor/elementor/issues/6141))
|
||||
* Fix: Alignment issue in Nav Menu widget ([#5790](https://github.com/elementor/elementor/issues/5790))
|
||||
* Fix: Avoid potential security risk in forms
|
||||
* Fix: Template By Author condition conflicts with 404 page
|
||||
* Fix: Restored WC Product Content widget in Single Product template
|
||||
* Fix: Theme Builder Preview URLs for date archives and 404 pages
|
||||
* Fix: Highlight active menu anchor items only when scrolled into view
|
||||
* Fix: Carousel Pagination Progress style to support new Swiper version
|
||||
|
||||
#### 2.1.13 - 2018-11-12
|
||||
* Tweak: Added compatibility for new brand Finder in v2.3.0
|
||||
* Fix: Settings conflict when there are multiple carousels in the page
|
||||
|
||||
#### 2.1.12 - 2018-11-05
|
||||
* Tweak: Added compatibility for the upcoming release of Elementor v2.3
|
||||
* Tweak: Better performance for Template Library widget
|
||||
* Fix: Fatal error if a taxonomy used in a dynamic field is removed ([#6029](https://github.com/elementor/elementor/issues/6029))
|
||||
* Fix: Date Time dynamic tag now respect site language ([#6001](https://github.com/elementor/elementor/issues/6001))
|
||||
* Fix: Custom CSS printed twice in the front-end
|
||||
* Fix: ACF Image field PHP warning ([#6051](https://github.com/elementor/elementor/issues/6051))
|
||||
|
||||
#### 2.1.11 - 2018-10-22
|
||||
* New: Added ACF local fields compatibility
|
||||
* Tweak: Re-brand TypeKit by Adobe Fonts integration
|
||||
* Fix: Exclude `is_embed` from Singular condition ([#5915](https://github.com/elementor/elementor/issues/5915))
|
||||
* Fix: Avoid conflict with Ad Blockers and Share Buttons
|
||||
* Fix: Current date time dynamic tag now shows local time
|
||||
* Fix: Avoid conflict with 3rd party plugins that filter the permalink
|
||||
* Fix: Avoid PHP warning when no groups are selected for MailChimp integration
|
||||
* Fix: Avoid PHP warning if checkbox field is empty for ACF
|
||||
* Fix: Respect password protected for a WC single product template
|
||||
* Fix: Respect `order` settings for WC archive also without pagination
|
||||
|
||||
#### 2.1.10 - 2018-10-09
|
||||
* Tweak: Added responsive alignment control for Share Buttons widget ([#5821](https://github.com/elementor/elementor/issues/5821))
|
||||
* Tweak: Added link control to Animated Headline widget
|
||||
* Fix: Mobile nav menu jump on RTL ([#5711](https://github.com/elementor/elementor/issues/5711))
|
||||
* Fix: Responsive alignment control in Add to Cart widget ([#5830](https://github.com/elementor/elementor/issues/5830))
|
||||
* Fix: Added IE compatibility for Animated Headline widget
|
||||
* Fix: Post Content widget is now shown only on `Single` templates
|
||||
* Fix: Query Control Pagination with offset
|
||||
|
||||
#### 2.1.9 - 2018-09-17
|
||||
* Tweak: Added Centered Slides option for Slideshow carousel
|
||||
* Fix: Allow only public CPT for Manual Selection in Query Control ([#5091](https://github.com/elementor/elementor/issues/5091))
|
||||
* Fix: ACF Gallery option support ([#5344](https://github.com/elementor/elementor/issues/5344))
|
||||
* Fix: Page scrolling on resize when sticky is active ([#5740](https://github.com/elementor/elementor/issues/5740))
|
||||
* Fix: Edit custom name for Global Widget in the Navigator ([#5689](https://github.com/elementor/elementor/issues/5689))
|
||||
* Fix: Coverflow transition effect in Carousel
|
||||
* Fix: Weird mobile behavior with Cube effect in Carousel
|
||||
* Fix: Show the first thumbnail in the Slideshow carousel correctly
|
||||
|
||||
#### 2.1.8 - 2018-09-12
|
||||
* Tweak: Added styling options for WC Additional Information widget
|
||||
* Tweak: Added styling options for 'View Cart' link in Products widget
|
||||
* Fix: 3rd party plugin support for WC single product template ([#5338](https://github.com/elementor/elementor/issues/5338))
|
||||
* Fix: Layout of Related Product widget with WC native style
|
||||
|
||||
#### 2.1.7 - 2018-09-03
|
||||
* New: WC Archive Description widget
|
||||
* Tweak: Added blend mode to Slides widget background overlay ([#5555](https://github.com/elementor/elementor/issues/5555))
|
||||
* Tweak: Added 'Current Subcategories' option to Product Categories widget
|
||||
* Fix: Added default vertical alignment in Author Box widget ([#5589](https://github.com/elementor/elementor/issues/5589))
|
||||
* Tweak: Added more blend mode options for CTA widget
|
||||
* Tweak: Improved plugin updater method based on WordPress version
|
||||
* Fix: Improved IE compatibility for Posts and Portfolio widgets
|
||||
* Fix: Added default gap for products pagination
|
||||
* Fix: Post thumbnail flickering in Safari browser
|
||||
* Fix: Close mobile nav menu on click only in full-width mode
|
||||
* Fix: Added trailing slash to pagination links in Posts widget
|
||||
|
||||
#### 2.1.6 - 2018-08-28
|
||||
* New: WC Product Category Image widget and Dynamic tag ([#5117](https://github.com/elementor/elementor/issues/5117))
|
||||
* Tweak: Allow HTML in Excerpt widget ([#5491](https://github.com/elementor/elementor/issues/5491))
|
||||
* Tweak: Added compatibility for the upcoming release of Elementor v2.2
|
||||
* Tweak: Deprecated Follow option in the Facebook Button widget
|
||||
* Fix: Posts widget grid in Safari & IE11 (Depended on Elementor v2.2)
|
||||
* Fix: Posts widget CSS when using cards skin in masonry mode
|
||||
* Fix: ACF Image & ACF URL option support ([#5344](https://github.com/elementor/elementor/issues/5344))
|
||||
* Fix: WC product gallery links in RTL
|
||||
* Fix: Dynamic tags in Call To Action widget
|
||||
|
||||
#### 2.1.5 - 2018-08-21
|
||||
* Tweak: Added compatibility for the upcoming release of Elementor v2.2
|
||||
* Fix: Posts Widget layout theme compatibility
|
||||
* Fix: Added compatibility for WooCommerce native style
|
||||
|
||||
#### 2.1.4 - 2018-08-19
|
||||
* Fix: Layout issue compatibility with themes caused by v2.1 ([#5442](https://github.com/elementor/elementor/issues/5442))
|
||||
* Fix: Dynamic setting in Pricing Table widget ([#5460](https://github.com/elementor/elementor/issues/5460))
|
||||
* Fix: Hide Target URL control if is not necessary in Blockquote widget
|
||||
* Fix: Selector specificity for WooCommerce Products widget
|
||||
* Fix: WooCommerce conflicts in the editor in edge cases
|
||||
|
||||
#### 2.1.3 - 2018-08-15
|
||||
* Fix: Thumbnails in the Posts widget jumping ([#5350](https://github.com/elementor/elementor/issues/5350))
|
||||
* Fix: Responsive grid in the Share Buttons widget ([#5375](https://github.com/elementor/elementor/issues/5375))
|
||||
* Fix: Added missing `setup_postdata` for Product Data Tabs widget
|
||||
* Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue ([#5399](https://github.com/elementor/elementor/issues/5399))
|
||||
* Fix: Allowed types in the Upload File field are now case-insensitive ([#5254](https://github.com/elementor/elementor/issues/5254))
|
||||
* Fix: Carousel behavior when using a single slide
|
||||
|
||||
#### 2.1.2 - 2018-08-12
|
||||
* Fix: Error when ACF Pro is not installed ([#5367](https://github.com/elementor/elementor/issues/5367))
|
||||
* Fix: Edge cases in Inspector where document is a boolean
|
||||
* Fix: Edge cases for incorrect file fields in PODS
|
||||
|
||||
#### 2.1.1 - 2018-08-09
|
||||
* Fix: Highlighted text in Animated Headline widget ([#5345](https://github.com/elementor/elementor/issues/5345))
|
||||
* Fix: Flip Box effect issues
|
||||
* Fix: ACF Options page fields support ([#5329](https://github.com/elementor/elementor/issues/5329))
|
||||
* Fix: Import Pro templates in edge cases
|
||||
|
||||
#### 2.1.0 - 2018-08-07
|
||||
* New: Introducing WooCommerce Builder ([#1690](https://github.com/elementor/elementor/issues/1690))
|
||||
* New: Introducing 12 new dynamic tags & widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title & Archive
|
||||
* New: Introducing Cart Menu widget ([#4220](https://github.com/elementor/elementor/issues/4220), [#4600](https://github.com/elementor/elementor/issues/4600))
|
||||
* New: Added integration with Toolset ([#2949](https://github.com/elementor/elementor/issues/2949))
|
||||
* New: Added integration with Pods ([#4129](https://github.com/elementor/elementor/issues/4129))
|
||||
* New: Added stick to bottom in scrolling effects ([#4799](https://github.com/elementor/elementor/issues/4799))
|
||||
* New: Added Scrolling Effect to Widgets under advanced tab
|
||||
* New: Introducing Internal URL Dynamic Tag
|
||||
* Tweak: Added a Last Updated Date in the Post Info widget ([#4597](https://github.com/elementor/elementor/issues/4597))
|
||||
* Tweak: Added Redirect after Logout option for Login widget ([#4447](https://github.com/elementor/elementor/issues/4447))
|
||||
* Tweak: Avoid repeating posts when using more than one in the Posts widget ([#1878](https://github.com/elementor/elementor/issues/1878))
|
||||
* Tweak: Add Custom Query hook for Query control ([More Info](https://developers.elementor.com/custom-query-filter/)) ([#1748](https://github.com/elementor/elementor/issues/1748))
|
||||
* Tweak: Added form-message style ([#1180](https://github.com/elementor/elementor/issues/1180))
|
||||
* Tweak: Added dynamic tag for button on the Price Table widget ([#4242](https://github.com/elementor/elementor/issues/4242))
|
||||
* Tweak: Added dynamic tag for Call to action widget ([#4767](https://github.com/elementor/elementor/issues/4767))
|
||||
* Tweak: Added Dynamic Tags support for Google Map field ([#4602](https://github.com/elementor/elementor/issues/4602))
|
||||
* Tweak: Added an support for `label|value` in options field ([#4594](https://github.com/elementor/elementor/issues/4594))
|
||||
* Tweak: Added `by-author` condition for theme builder ([#4681](https://github.com/elementor/elementor/issues/4681))
|
||||
* Tweak: Added Activate/Deactivate license key via WP-CLI command ([#4149](https://github.com/elementor/elementor/issues/4149))
|
||||
* Tweak: Added `is_scroll` trigger to scrolling effect ([#4340](https://github.com/elementor/elementor/issues/4340))
|
||||
* Tweak: Added In Same Term support for Post Navigation widget ([#4177](https://github.com/elementor/elementor/issues/4177))
|
||||
* Tweak: Added responsive control for Slides To Scroll control in all carousel widgets ([#3697](https://github.com/elementor/elementor/issues/3697))
|
||||
* Tweak: Added style options for Posts widget ([#1335](https://github.com/elementor/elementor/issues/1335))
|
||||
* Tweak: Added button CSS ID for Forms widget
|
||||
* Tweak: Added pixel units to Post-Info divider height control
|
||||
* Tweak: Rewrite sticky library to handle with stretch section, auto scroller & more bugs
|
||||
* Tweak: Re-organize the panel categories per document type
|
||||
* Tweak: Added ACF support for `options-page` fields
|
||||
* Tweak: Added dynamic tag for Animated headlines
|
||||
* Tweak: Added dynamic tag for BlockQuote widget
|
||||
* Fix: Elementor Full Width template in GeneratePress theme ([#4817](https://github.com/elementor/elementor/issues/4817))
|
||||
* Fix: Checkbox fields can accidentally be set to required ([#4324](https://github.com/elementor/elementor/issues/4324))
|
||||
* Fix: Initial slide in Carousel widget
|
||||
* Fix: Stay on current slide while editing in Carousel widget
|
||||
* Fix: Default slides per device in Carousel widget
|
||||
* Deprecated: Woo Products, Woo Elements & Single elements widgets
|
||||
|
||||
#### 2.0.18 - 2018-07-27
|
||||
* Fix: Global widget error on saving page
|
||||
|
||||
#### 2.0.17 - 2018-07-26
|
||||
* Fix: Sub menu indicator direction in Nav Menu widget
|
||||
* Fix: Change the title and icon for Global Widget when is moving
|
||||
* Fix: CSS wrapper selector for Page Document
|
||||
|
||||
#### 2.0.16 - 2018-07-16
|
||||
* Tweak: CSS Filter Control module is now included in Elementor
|
||||
* Fix: Border gap in Portfolio widget when item gap set as `0` ([#5077](https://github.com/elementor/elementor/issues/5077))
|
||||
* Fix: Restore current query after get Global Widget data
|
||||
* Fix: Add action item in History on unlink Global widget
|
||||
|
||||
#### 2.0.15 - 2018-07-10
|
||||
* Fix: Dropdown menu items collapsing when activated ([#4996](https://github.com/elementor/elementor/issues/4996))
|
||||
* Fix: GMT offset in Countdown widget ([#4997](https://github.com/elementor/elementor/issues/4997))
|
||||
|
||||
#### 2.0.14 - 2018-07-08
|
||||
* Tweak: Added set method to form record for developers ([#4983](https://github.com/elementor/elementor/issues/4983))
|
||||
* Fix: Autoplay option for Carousels
|
||||
* Fix: Close mobile menu on item click in the Nav Menu widget
|
||||
|
||||
#### 2.0.13 - 2018-07-03
|
||||
* Tweak: Added compatibility for Elementor v2.1
|
||||
|
||||
#### 2.0.12 - 2018-07-02
|
||||
* Fix: Global widget PHP notices
|
||||
* Fix: Slides widget active slide lost focus when clicking Editor tabs
|
||||
* Fix: Form select field send all selected values on multiple selection
|
||||
* Fix: Validate time field only if it's not empty
|
||||
* Fix: ConvertKit API not saving name field
|
||||
|
||||
#### 2.0.11 - 2018-06-12
|
||||
* Fix: Theme Builder `author` archive condition ([#4593](https://github.com/elementor/elementor/issues/4593))
|
||||
* Fix: Respect password protected posts in Post Content widget
|
||||
* Fix: Custom Fonts redirect to post edit screen in edge cases.
|
||||
|
||||
#### 2.0.10 - 2018-06-05
|
||||
* Tweak: Added `elementor/theme/get_location_templates/template_id` filter hook for multi-language plugins
|
||||
* Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)
|
||||
* Fix: Fields shortcode missing after removing a field in Form widget
|
||||
* Deprecated: `get_theme_templates_by_location` is replaced by `get_location_templates`
|
||||
|
||||
#### 2.0.9 - 2018-05-28
|
||||
* Fix: Compatibility for PHP version 5.4
|
||||
|
||||
#### 2.0.8 - 2018-05-28
|
||||
* Tweak: Added Active state for Nav Menu dropdown
|
||||
* Tweak: Added style for "Nothing Found" Message for Archive Posts widget
|
||||
* Tweak: Removed caption control in Site Logo widget
|
||||
* Tweak: Added option to position currency symbol before/after In Price Table widget
|
||||
* Fix: Query control manual selection does not show more than 10 items ([#4479](https://github.com/elementor/elementor/issues/4479))
|
||||
* Fix: Styling glitch with terms list in Post Info widget ([#4342](https://github.com/elementor/elementor/issues/4342))
|
||||
* Fix: Sub terms missing in Query control in edge cases ([#4527](https://github.com/elementor/elementor/issues/4527))
|
||||
* Fix: Avoid rendering a template if it's not published
|
||||
* Fix: 404 Page style not working
|
||||
* Fix: Price Table button with hover animation not working in editor
|
||||
* Fix: Styling conflict in Call to Action widget
|
||||
* Fix: Global Widget tab translation
|
||||
* Fix: Adding parent wrapper class to Site Title widget
|
||||
|
||||
#### 2.0.7 - 2018-05-16
|
||||
* Fix: Content not found on section when single is set to "All Singular"
|
||||
* Fix: Open 404 template library for 404 page
|
||||
* Tweak: Added CSS prefix for dev files
|
||||
* Tweak: Removed product post type from display conditions
|
||||
|
||||
#### 2.0.6 - 2018-05-15
|
||||
* Tweak: Set type on create new single template
|
||||
* Tweak: Always show the conditions dialog in the Draft status
|
||||
* Tweak: Added document type `widget`
|
||||
* Tweak: Added Post Custom Field tag to URL category
|
||||
* Fix: When ACF Field Groups are Empty ([#4428](https://github.com/elementor/elementor/issues/4428))
|
||||
* Fix: Links inside carousel in edge cases
|
||||
* Fix: Responsive issue in My Templates area
|
||||
* Fix: Image alignment for post content with text alignment
|
||||
* Fix: Post Content widget when preview post is missing
|
||||
* Fix: Global Widget tab translation
|
||||
* Fix: Style settings for Post / Archive Title widgets
|
||||
|
||||
#### 2.0.5 - 2018-05-08
|
||||
* Fix: Creating a CPT with name like document-type breaks the editor ([#4203](https://github.com/elementor/elementor/issues/4203))
|
||||
* Fix: Added support for new version of reCAPTCHA
|
||||
* Fix: Added fallback for controls after `post_status`
|
||||
* Fix: Required field in forms widget
|
||||
* Fix: Media Carousel in the Coverflow skin
|
||||
* Fix: 404 Page show wrong template in edge cases
|
||||
* Fix: Save the default menu in the Nav Menu widget
|
||||
|
||||
#### 2.0.4 - 2018-05-02
|
||||
* Tweak: Added parent's class for extended widgets
|
||||
* Tweak: Set entire-site as default to avoid conflict with save without conditions
|
||||
* Tweak: Initialize global model when it's needed
|
||||
* Tweak: Removed some duplicate strings
|
||||
* Tweak: Query control now includes empty terms
|
||||
* Tweak: Design polish for conditions dialog
|
||||
* Tweak: Decreasing `minimumInputLength` to 1 of select2
|
||||
* Fix: Editor not loading for single templates in edge cases
|
||||
* Fix: Select2 in Safari takes it's time to get the original select width ([#4310](https://github.com/elementor/elementor/issues/4310))
|
||||
* Fix: Slides per view not working for some effects
|
||||
* Fix: New slides not showing in the editor
|
||||
* Fix: Editor for section without a defined location, defaults to content area
|
||||
|
||||
#### 2.0.3 - 2018-04-24
|
||||
* Tweak: Optimize CSS for Post Info widget ([#4214](https://github.com/elementor/elementor/issues/4214), [#4216](https://github.com/elementor/elementor/issues/4216), [#4225](https://github.com/elementor/elementor/issues/4225))
|
||||
* Fix: Double render on frontend view in core locations
|
||||
* Fix: Masonry not working in edge cases
|
||||
* Fix: Added default setting for Author Info tag
|
||||
|
||||
#### 2.0.2 - 2018-04-18
|
||||
* Fix: Regenerate conditions to include all templates
|
||||
|
||||
#### 2.0.1 - 2018-04-17
|
||||
* Tweak: Added div wrapper for Nothing Found massage ([#4136](https://github.com/elementor/elementor/issues/4136))
|
||||
* Tweak: Show empty categories in Query Control & Display Conditions ([#4127](https://github.com/elementor/elementor/issues/4127))
|
||||
* Tweak: Added Divider control for Post Info widget
|
||||
* Fix: Update admin links in Yoast Breadcrumbs widget
|
||||
* Fix: Sticky element conflict with clearfix CSS
|
||||
* Fix: Compatibility for PHP version 5.4.32 & 5.5.16 and below
|
||||
* Fix: Avoid running `wp_head` hooks twice
|
||||
|
||||
#### 2.0.0 - 2018-04-16
|
||||
* New: Introducing Theme Builder - [Release Post](https://elementor.com/introducing-theme-builder/) ([#417](https://github.com/elementor/elementor/issues/417))
|
||||
* New: Introducing Locations API to inject custom location templates
|
||||
* New: Introducing Display Conditions for all dynamic templates
|
||||
* New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design
|
||||
* New: Introducing Role manager to allow "Content Only mode" ([#483](https://github.com/elementor/elementor/issues/483), [#653](https://github.com/elementor/elementor/issues/653), [#885](https://github.com/elementor/elementor/issues/885))
|
||||
* New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo & Site Name ([#543](https://github.com/elementor/elementor/issues/543))
|
||||
* New: Introducing Developers area with guides and API documentation - [Release Post](https://elementor.com/introducing-elementor-developer-api/) ([#451](https://github.com/elementor/elementor/issues/451))
|
||||
* New: Introducing [Elementor Hello Theme](https://github.com/elementor/elementor-hello-theme) - A demonstration theme for developers
|
||||
* New: Added new type of templates: Header, Footer, Single and Archive ([#2761](https://github.com/elementor/elementor/issues/2761), [#2623](https://github.com/elementor/elementor/issues/2623), [#2109](https://github.com/elementor/elementor/issues/2109), [#2061](https://github.com/elementor/elementor/issues/2061), [#2439](https://github.com/elementor/elementor/issues/2439))
|
||||
* New: Design 404 page with Single template ([#1558](https://github.com/elementor/elementor/issues/1558))
|
||||
* New: Design Search Results with Archive template ([#3196](https://github.com/elementor/elementor/issues/3196), [#2590](https://github.com/elementor/elementor/issues/2590))
|
||||
* New: Added Scrolling Effect for sections including *Sticky Element* per device ([#2412](https://github.com/elementor/elementor/issues/2412))
|
||||
* New: Integration with Custom Fields ([#2054](https://github.com/elementor/elementor/issues/2054))
|
||||
* New: Partial support for Toolset integration ([#2949](https://github.com/elementor/elementor/issues/2949))
|
||||
* New: Partial support for Pods integration ([#2169](https://github.com/elementor/elementor/issues/2169))
|
||||
* New: Partial support for ACF integration ([#2041](https://github.com/elementor/elementor/issues/2041), [#2059](https://github.com/elementor/elementor/issues/2059))
|
||||
* Tweak: Add custom fields support for ActiveCampaign ([#3531](https://github.com/elementor/elementor/issues/3531))
|
||||
* Tweak: Allow brackets in Forms Tel field
|
||||
* Tweak: Added currency format control for Price Table widget
|
||||
* Tweak: Reduced API request for some servers
|
||||
* Fix: Dropdown `border-radius` in Nav Menu widget
|
||||
* Fix: Price List widget layout breaks in edge cases
|
||||
* Note: This version requires Elementor v2.0.6
|
||||
|
||||
#### 1.15.6 - 2018-03-28
|
||||
* Fix: Removed duplicate Custom CSS section ([#3938](https://github.com/elementor/elementor/issues/3938))
|
||||
* Fix: `box-shadow` issue with cards skin ([#3940](https://github.com/elementor/elementor/issues/3940))
|
||||
|
||||
#### 1.15.5 - 2018-03-27
|
||||
* Fix: Added global widget compatibility for Elementor v2.0
|
||||
* Fix: Reduced API request for some servers
|
||||
|
||||
#### 1.15.4 - 2018-03-26
|
||||
* Tweak: Allow brackets in phone field
|
||||
* Tweak: Added compatibility with Yoast 7.0.+
|
||||
* Tweak: Added compatibility for the future release of Elementor v2.0
|
||||
* Fix: Support for multiple carousel setting in editor
|
||||
* Fix: `on_export` issue in forms widget ([#3890](https://github.com/elementor/elementor/issues/3890))
|
||||
|
||||
#### 1.15.3 - 2018-03-07
|
||||
* Tweak: Added unique class to field group div ([#3595](https://github.com/elementor/elementor/issues/3595))
|
||||
* Fix: Screen Options missing when Pro is active ([#3622](https://github.com/elementor/elementor/issues/3622))
|
||||
* Fix: Allow label styling even when `show labels` is set hide ([#3544](https://github.com/elementor/elementor/issues/3544))
|
||||
* Fix: Typography control not working in edge cases
|
||||
* Fix: Safari compatibility for Search widget
|
||||
|
||||
#### 1.15.2 - 2018-02-27
|
||||
* Fix: Only add support mine-type if needed ([#3543](https://github.com/elementor/elementor/issues/3543))
|
||||
* Fix: Better support for Old Typekit kits
|
||||
|
||||
#### 1.15.1 - 2018-02-21
|
||||
* Tweak: Custom font title placeholder is not `enter font family`
|
||||
* Tweak: Custom font title set as required
|
||||
* Fix: Custom font, `font-face` enqueued only once if used in global ([#3513](https://github.com/elementor/elementor/issues/3513))
|
||||
* Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.
|
||||
|
||||
#### 1.15.0 - 2018-02-19
|
||||
* New: Added custom fonts manager for self hosted fonts ([#852](https://github.com/elementor/elementor/issues/852))
|
||||
* New: Integration with Adobe TypeKit fonts ([#631](https://github.com/elementor/elementor/issues/631))
|
||||
* Tweak: Clear menu from Nav Menu widget on template export
|
||||
* Tweak: Allow zero for GetResponse integration as `day of cycle`
|
||||
|
||||
#### 1.14.2 - 2018-02-13
|
||||
* Fix: Global widget content that got affected by previous update
|
||||
|
||||
#### 1.14.1 - 2018-02-13
|
||||
* Tweak: Added `none` option to content animation in CTA widget
|
||||
* Tweak: Added `form_id` to ActiveCampaign integration ([#3422](https://github.com/elementor/elementor/issues/3422))
|
||||
* Fix: Page crashed when Global widget not found.
|
||||
|
||||
#### 1.14.0 - 2018-02-12
|
||||
* New: Added Call to Action widget
|
||||
* Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded
|
||||
* Tweak: Added compatibility for the future release of Elementor v2.0
|
||||
* Fix: Allow zero (0) to be accepted as a field value
|
||||
* Fix: Login form when custom login URL is set
|
||||
* Fix: Added Day of cycle control to GetResponse integration
|
||||
|
||||
#### 1.13.2 - 2018-01-23
|
||||
* Tweak: Added placeholder to Password field
|
||||
* Tweak: Removed `subscriber_already_exists_message` control to prevent potential data leakage
|
||||
* Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet
|
||||
* Fix: Changed `imagesLoaded()` to Vanilla JS to avoid compatibility issues with some themes
|
||||
* Fix: Only validate Tel field if not empty
|
||||
* Fix: Stop slider while editing
|
||||
|
||||
#### 1.13.1 - 2018-01-16
|
||||
* Fix: Added compatibility with old PHP versions
|
||||
|
||||
#### 1.13.0 - 2018-01-16
|
||||
* New: Added File Upload field for Forms widget ([#1482](https://github.com/elementor/elementor/issues/1482), [#2974](https://github.com/elementor/elementor/issues/2974))
|
||||
* New: Added Acceptance field for Forms widget ([#1693](https://github.com/elementor/elementor/issues/1693), [#2974](https://github.com/elementor/elementor/issues/2974))
|
||||
* New: Added Date field for Forms widget ([#1868](https://github.com/elementor/elementor/issues/1868))
|
||||
* New: Added Time field for Forms widget
|
||||
* New: Added Password field for Forms widget ([#2164](https://github.com/elementor/elementor/issues/2164))
|
||||
* New: Added HTML field for Forms widget ([#1500](https://github.com/elementor/elementor/issues/1500))
|
||||
* Tweak: Added characters validation for Tel field
|
||||
* Tweak: Added min & max validation for Number field
|
||||
* Tweak: Added multiple selection for Select field
|
||||
* Tweak: Added donReach integration for Share Buttons widget
|
||||
|
||||
#### 1.12.3 - 2018-01-09
|
||||
* Fix: Render element plain content instead of parsed content when not needed in global widget
|
||||
* Fix: Apply `url-encoding` to "Tweet" button text in Blockquote widget to prevent unexpected corruption of the tweet text
|
||||
* Fix: Removed My Account link from dashboard widget
|
||||
|
||||
#### 1.12.2 - 2018-01-03
|
||||
* Tweak: Added animation none for Nav Menu widget ([#2964](https://github.com/elementor/elementor/issues/2964))
|
||||
* Fix: Active license button style
|
||||
|
||||
#### 1.12.1 - 2018-01-02
|
||||
* Tweak: Removed theme-element widgets from plain content
|
||||
* Tweak: Set all theme-element widgets to extend same widget Base
|
||||
* Tweak: Removed credit URL in forms meta data
|
||||
* Tweak: Added compatibility for the future release of Elementor v1.9
|
||||
* Fix: Validate Get response Error as real error
|
||||
* Fix: Removed responsive height control from Facebook Page widget
|
||||
|
||||
#### 1.12.0 - 2017-12-20
|
||||
* New: Added Drip integration to Forms
|
||||
* New: Added ActiveCampaign integration to Forms
|
||||
* New: Added ConverKit integration to Forms
|
||||
* New: Added GetResponse integration to Forms
|
||||
* New: Added form `id`, `name` attributes to handle integration with auto collectors like HubSpot
|
||||
* New: Added Global API key for MailChimp to improve the workflow
|
||||
* Tweak: Better error handling and message display for Forms
|
||||
* Fix: PHP notice Undefined variable `$cc_header` ([#2934](https://github.com/elementor/elementor/issues/2934))
|
||||
|
||||
#### 1.11.0 - 2017-12-11
|
||||
* New: Added a native Comments widget ([#543](https://github.com/elementor/elementor/issues/543))
|
||||
* New: Added an Author Box widget
|
||||
* New: Added a Post Navigation widget
|
||||
* New: Added a Yoast Breadcrumbs widget ([#2749](https://github.com/elementor/elementor/issues/2749))
|
||||
* Tweak: Added a close button to search widget under Full Screen skin ([#2762](https://github.com/elementor/elementor/issues/2762))
|
||||
* Fix: Allow currency symbol to appear even if price isn't numeric
|
||||
* Fix: Edge cases when the nav menu is empty in a stretched section
|
||||
* Fix: Added fallback when you remove the `space-between` on Swiper carousel
|
||||
|
||||
#### 1.10.2 - 2017-12-03
|
||||
* Fix: Missing save widget icon ([#2878](https://github.com/elementor/elementor/issues/2878))
|
||||
* Fix: Global widgets not saving edits ([#2874](https://github.com/elementor/elementor/issues/2874))
|
||||
* Fix: Removed `white-space: nowrap;` property from vertical menu in Nav Menu widget ([#2815](https://github.com/elementor/elementor/issues/2815))
|
||||
|
||||
#### 1.10.1 - 2017-11-30
|
||||
* Tweak: Added default value for search form
|
||||
* Tweak: Order template list A-Z in the library widget
|
||||
* Tweak: get_users/authors query is now done using AJAX only, for better performance in Query Control ([#2865](https://github.com/elementor/elementor/issues/2865))
|
||||
* Fix: When adding `.00` it is not displayed on the front
|
||||
* Fix: Make sure space between is numeric for carousel control
|
||||
* Fix: Added space for radio & checkbox fields in form widget
|
||||
|
||||
#### 1.10.0 - 2017-11-15
|
||||
* New: Added native Search form widget ([#2576](https://github.com/elementor/elementor/issues/2576))
|
||||
* Tweak: Added Slides To Scroll & Loop controls to Media Carousel and Testimonials widgets
|
||||
* Tweak: Added Inline editing to Blockquote widget
|
||||
* Fix: Animated Headline color bug ([#2516](https://github.com/elementor/elementor/issues/2516))
|
||||
* Fix: Animated Headline with Rotating skin
|
||||
* Fix: RTL fix for Animated Headline widget in 'typing' and 'clip' animations
|
||||
* Fix: Empty menu cause jQuery to crash in Menu widget ([#2662](https://github.com/elementor/elementor/issues/2662))
|
||||
* Fix: Custom CSS gone after reloading the editor
|
||||
|
||||
#### 1.9.5 - 2017-10-27
|
||||
* Fix: Broken Global widget with JS ([#2639](https://github.com/elementor/elementor/issues/2639))
|
||||
|
||||
#### 1.9.4 - 2017-10-24
|
||||
* Tweak: Improved UI for notices and license page
|
||||
* Fix: Update system conflict with other EDD plugins
|
||||
* Fix: WooCommerce frontend hooks on Elementor editor ([#2577](https://github.com/elementor/elementor/issues/2577))
|
||||
* Fix: Removed default border left in Nav Menu dropdown CSS ([#2496](https://github.com/elementor/elementor/issues/2496))
|
||||
* Fix: Increased submenu max-width ([#2558](https://github.com/elementor/elementor/issues/2558))
|
||||
* Fix: Save global templates without their defaults
|
||||
* Fix: Horizontal scrolling issue with posts grid
|
||||
|
||||
#### 1.9.3 - 2017-10-03
|
||||
* Fix: Condition slide style that got affected by previous update
|
||||
|
||||
#### 1.9.2 - 2017-10-02
|
||||
* New: Added integration with MailPoet 3 for Forms actions
|
||||
* Fix: Removed height control from Testimonial carousel in mobile editing mode
|
||||
* Fix: Removed bottom padding when there's no pagination in Testimonial carousel
|
||||
* Fix: Added condition for slides style section in skin bubble mode
|
||||
* Fix: Slides per view control for mobile editing in Testimonial carousel
|
||||
* Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows
|
||||
|
||||
#### 1.9.1 - 2017-09-28
|
||||
* Fix: Slides per view for slideshow carousel
|
||||
* Fix: Final polish for the new Testimonial Carousel widget
|
||||
* Fix: Don't play video if slide type is not video
|
||||
* Fix: Removed slides style section condition ([#2497](https://github.com/elementor/elementor/issues/2497))
|
||||
* Fix: Set cursor as pointer for slideshow thumbnails
|
||||
|
||||
#### 1.9.0 - 2017-09-26
|
||||
* New: Added Media Carousel widget ([#216](https://github.com/elementor/elementor/issues/216), [#347](https://github.com/elementor/elementor/issues/347), [#2209](https://github.com/elementor/elementor/issues/2209))
|
||||
* New: Added Testimonial Carousel widget ([#715](https://github.com/elementor/elementor/issues/715))
|
||||
|
||||
#### 1.8.3 - 2017-09-24
|
||||
* Fix: Added compatibility for WordPress 4.8.2 & 4.7.6
|
||||
* Fix: Remove slashes from Form sent data
|
||||
|
||||
#### 1.8.2 - 2017-09-19
|
||||
* Tweak: Added target URL for the tweet message in Blockquote widget
|
||||
* Tweak: Render the slide height before the slider is finished loading
|
||||
* Fix: Space between words for Animated Headline widget
|
||||
* Fix: RTL compatibility for Animated Headline widget
|
||||
* Fix: Italic font style for Animated Headline widget
|
||||
* Fix: Excluded Menu widget from the WP Editor text rendering
|
||||
|
||||
#### 1.8.1 - 2017-09-18
|
||||
* Fix: WCAG Compatible "required" field attribute for W3C validation ([#2391](https://github.com/elementor/elementor/issues/2391))
|
||||
* Fix: Print the main menu only when is necessary in Menu widget
|
||||
* Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load ([#2381](https://github.com/elementor/elementor/issues/2381))
|
||||
|
||||
#### 1.8.0 - 2017-09-12
|
||||
* New: Added Nav Menu widget ([#1406](https://github.com/elementor/elementor/issues/1406))
|
||||
* Fix: Field ID for checkbox control in Form widget ([#2279](https://github.com/elementor/elementor/issues/2279))
|
||||
* Fix: Style for Blockquote widget included
|
||||
|
||||
#### 1.7.2 - 2017-09-07
|
||||
* Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins
|
||||
* Fix: Responsive Embed Facebook post widget for Safari iOS ([#2340](https://github.com/elementor/elementor/issues/2340))
|
||||
|
||||
#### 1.7.1 - 2017-09-05
|
||||
* Fix: Facebook SDK version
|
||||
|
||||
#### 1.7.0 - 2017-09-05
|
||||
* New: Added Facebook Button widget for Like, Recommend, Share and Follow
|
||||
* New: Added Facebook Embed widget for Post, Video and Comment
|
||||
* New: Added Facebook Comments widget
|
||||
* New: Added Facebook Page widget (Previously known as Like Box)
|
||||
* New: Added Blockquote widget with Tweet button
|
||||
* Tweak: Added Facebook SDK integration for all Facebook widgets
|
||||
* Fix: Animated headline rotating with long words
|
||||
|
||||
#### 1.6.1 - 2017-08-28
|
||||
* Fix: Animated Headline marker gets in front of neighboring spans even when "Bring to Front" is not set
|
||||
* Fix: Stroke animation in Animated Headline for MS Edge browser
|
||||
* Fix: Animated headline with more than 1-word per rotation
|
||||
* Fix: Animated Headline in two lines
|
||||
* Fix: Some errors in Global widget
|
||||
|
||||
#### 1.6.0 - 2017-08-22
|
||||
* New: Added Animated Headline widget
|
||||
* New: Added Hidden field for Forms widget ([#2038](https://github.com/elementor/elementor/issues/2038))
|
||||
* Tweak: Added notice to update Elementor to v1.6.5 or higher
|
||||
* Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts
|
||||
|
||||
#### 1.5.9 - 2017-08-16
|
||||
* Tweak: Added compatibility for the future release of Elementor v1.7
|
||||
* Fix: Portfolio compatibility for GeneratePress theme
|
||||
* Fix: Portfolio filter compatibility for RTL
|
||||
* Fix: Pagination apply for all posts widget in the page
|
||||
* Fix: Global form widget with MailChimp integration not saving
|
||||
|
||||
#### 1.5.8 - 2017-07-25
|
||||
* Tweak: Added compatibility for the future release of Elementor v1.6
|
||||
* Fix: Improved backward compatibility for query control rename
|
||||
|
||||
#### 1.5.7 - 2017-07-24
|
||||
* Tweak: Moved JS render of reCAPTCHA to a separate file
|
||||
* Tweak: Display the label in the reCAPTCHA field for better experience
|
||||
* Tweak: Rename `panel-posts-control` to `query-control` and added fallback support
|
||||
* Tweak: Added compatibility for the future release of Elementor with history feature
|
||||
* Fix: reCAPTCHA preview on the editor
|
||||
* Fix: Manual selection (query control) has stopped working after saving ([#2000](https://github.com/elementor/elementor/issues/2000))
|
||||
* Fix: Added condition for icon size control in Share Buttons widget
|
||||
|
||||
#### 1.5.6 - 2017-07-12
|
||||
* Fix: Query Control correction for taxonomies ([#1963](https://github.com/elementor/elementor/issues/1963))
|
||||
* Fix: Custom CSS override scheme color in the editor
|
||||
* Fix: Added order by Menu Order for Query Control in WC widget
|
||||
* Fix: Glitch with Flip Box background overlay
|
||||
|
||||
#### 1.5.5 - 2017-07-03
|
||||
* Tweak: Moved reCAPTCHA render to handler & load only if a form is exist
|
||||
* Fix: MailChimp integration: Default number of items returned by API increased to 999
|
||||
* Fix: MailChimp integration: Refresh the groups list if API is changed
|
||||
* Fix: Sorted items in filter bar by A-Z
|
||||
* Fix: Editor glitch with Elementor v1.5 ([#1927](https://github.com/elementor/elementor/issues/1927))
|
||||
|
||||
#### 1.5.4 - 2017-06-22
|
||||
* Tweak: Improved compatibility for Elementor v1.5
|
||||
* Fix: URL default for Add To Cart widget
|
||||
* Fix: Allowed `date` and `birthday` fields as text for MailChimp integration
|
||||
|
||||
#### 1.5.3 - 2017-06-19
|
||||
* Tweak: Make flip-box height responsive control
|
||||
* Fix: Facebook share count now gets retrieved by Elementor ([#1829](https://github.com/elementor/elementor/issues/1829))
|
||||
* Fix: Global form widget with MailChimp integration not saving
|
||||
|
||||
#### 1.5.2 - 2017-06-13
|
||||
* Fix: Custom CSS panel location compatibility for the old versions
|
||||
|
||||
#### 1.5.1 - 2017-06-12
|
||||
* Fix: MailChimp update existing user registration
|
||||
* Fix: Global widget with JS in the editor mode
|
||||
* Fix: Label section condition in Login widget
|
||||
* Fix: Changes to unlinked global widget do not appear in the editor
|
||||
|
||||
#### 1.5.0 - 2017-05-23
|
||||
* New: Added Cards, a new skin for Posts widget
|
||||
* New: Added Exclude option to post query control group
|
||||
* Tweak: Added `post_class()` for each post in the loop
|
||||
* Tweak: Added `.elementor-posts-masonry` class when Masonry layout is enabled
|
||||
* Tweak: Added compatibility for the next release of Elementor v1.5.0
|
||||
* Tweak: CSS `autoprefixer` now supports last 5 versions of browsers
|
||||
* Tweak: Added `imageLoaded` library for Posts & Portfolio widgets
|
||||
|
||||
#### 1.4.4 - 2017-05-18
|
||||
* Fix: Force Mailchimp API to return all lists and not just 10 ([#1683](https://github.com/elementor/elementor/issues/1683))
|
||||
* Fix: Added `.elementor-form` class to Login form to fix style glitch
|
||||
|
||||
#### 1.4.3 - 2017-05-14
|
||||
* Tweak: Added Redirect After Login option to Login widget
|
||||
* Tweak: Stay in the current page after logout in Login widget
|
||||
* Tweak: Preparation for Elementor settings tabs in future version
|
||||
* Fix: Pinterest in Share Buttons widget now sharing the URL alone
|
||||
* Fix: Bug with `active` class in portfolio filter item
|
||||
* Fix: Higher specific list-style-type `none` for filter items to override some theme style
|
||||
|
||||
#### 1.4.2 - 2017-05-06
|
||||
* Fix: Temporary patch for form field shortcode in some servers
|
||||
|
||||
#### 1.4.1 - 2017-05-03
|
||||
* Fix: Bug with custom success message in form widget
|
||||
* Fix: Bug with meta data in email action
|
||||
|
||||
#### 1.4.0 - 2017-05-03
|
||||
* New: Forms: integration with MailChimp
|
||||
* New: Forms: integration with MailPoet
|
||||
* New: Forms: Added Email 2 action for email confirmation
|
||||
* New: Forms: Added shortcodes for fields
|
||||
* New: Forms: Added custom ID for fields
|
||||
* New: Forms: Added option to edit email HTML template ([#1180](https://github.com/elementor/elementor/issues/1180))
|
||||
* New: Added Login widget
|
||||
* Tweak: Move `send_html` control to `email_content_type`
|
||||
* Fix: Email still sent even if validation failed in form widget
|
||||
|
||||
#### 1.3.2 - 2017-05-01
|
||||
* New: Added action `elementor_pro/init` for better integration with Elementor Pro
|
||||
* Fix: Posts without featured image in Posts widget ([#1234](https://github.com/elementor/elementor/issues/1234), [#1382](https://github.com/elementor/elementor/issues/1382))
|
||||
* Fix: reCAPTCHA & Honeypot fields with new method
|
||||
* Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser
|
||||
* Fix: Border radius glitch on hover in Share Buttons
|
||||
|
||||
#### 1.3.1 - 2017-04-25
|
||||
* Fix: Conflict update with revision history module
|
||||
|
||||
#### 1.3.0 - 2017-04-25
|
||||
* New: Added Share Buttons widget ([Topic](https://wordpress.org/support/topic/social-sharing-buttons-is-it-possible/))
|
||||
* New: Added Custom CSS for Page Settings
|
||||
* New: Added Masonry layout for Portfolio widget
|
||||
* New: Added Cc & Bcc options to email action ([#1181](https://github.com/elementor/elementor/issues/1181))
|
||||
* New: Introduced `ElementorPro\Modules\Forms\Classes\Action_Base` class for better 3rd party integration for forms
|
||||
* Tweak: Debugger module now also shows errors from Pro
|
||||
* Tweak: Added options for Elementor Library
|
||||
* Tweak: New base posts module for optimized performance
|
||||
* Tweak: Adjusting Posts / Portfolio to the new structure
|
||||
* Fix: Export for posts / portfolio
|
||||
* Fix: Duplicate repeater field with switcher control ([#1442](https://github.com/elementor/elementor/issues/1442))
|
||||
* Fix: Post per Page in the query control
|
||||
* Fix: Metadata does not come through on form emails ([#1566](https://github.com/elementor/elementor/issues/1566))
|
||||
|
||||
#### 1.2.6 - 2017-04-19
|
||||
* Fix: Added compatibility with WooCommerce 3.0 - Products & Add to Cart widgets
|
||||
|
||||
#### 1.2.5 - 2017-04-18
|
||||
* Fix: Offset query for posts widgets (Posts, Portfolio and Products)
|
||||
|
||||
#### 1.2.4 - 2017-03-21
|
||||
* Tweak: Added Indian Rupee sign to Price Table widget
|
||||
* Fix: Portfolio grid for IE11
|
||||
* Fix: Link target blank in Price List widget
|
||||
* Fix: Active item for filter bar in Portfolio widget
|
||||
|
||||
#### 1.2.3 - 2017-03-06
|
||||
* Tweak: Fully compatible with Elementor v1.3.0
|
||||
* Tweak: Added trigger for after form submission in Forms widget
|
||||
* Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms
|
||||
* Fix: Portfolio filter syntax in Non-Latin languages
|
||||
* Fix: Added `no-repeat` property for slide with `background-size:contain`
|
||||
* Fix: Condition control & Import value in Posts widgets
|
||||
* Fix: Offset and Pagination in WordPress ([More Info](https://codex.wordpress.org/Making_Custom_Queries_using_Offset_and_Pagination))
|
||||
* Fix: Submit handler bubbling for custom events in Forms widget
|
||||
|
||||
#### 1.2.2 - 2017-02-23
|
||||
* Tweak: Change name from Side A/B to Front and Back in Flip Box widget
|
||||
* Fix: Error when saving third party widgets in the global widget
|
||||
* Fix: Image position "none" remains visible in editor preview (Posts)
|
||||
* Fix: Hide the pagination when there are no links
|
||||
|
||||
#### 1.2.1 - 2017-02-21
|
||||
* Fix: Firefox Flip Box 3D compatibility
|
||||
|
||||
#### 1.2.0 - 2017-02-21
|
||||
* New: Added Flip Box widget
|
||||
* New: Added Ken Burns effect for slides
|
||||
* New: Added Masonry layout for Posts widget
|
||||
* New: Added Pagination option for Posts widget
|
||||
* Tweak: Added background size contain to slides
|
||||
* Tweak: Improve Query control by preload items
|
||||
* Fix: Text color for Checkbox and Radio fields
|
||||
|
||||
#### 1.1.2 - 2017-02-05
|
||||
* Tweak: Added `aria-required` for better accessibility in forms widget
|
||||
* Fix: Conflict Call to `undefined` method in Posts & Portfolio widgets ([#1271](https://github.com/elementor/elementor/issues/1271), [#1266](https://github.com/elementor/elementor/issues/1266))
|
||||
* Fix: Submit button HTML after error sending
|
||||
* Fix: Success message for `skip_email` function
|
||||
* Notice: Elementor 1.2.0 or later now required
|
||||
|
||||
#### 1.1.1 - 2017-01-24
|
||||
* Fix: Can't save global widgets when `WP_DEBUG` is `true`
|
||||
* Fix: Undefined variable in WC widgets
|
||||
* Fix: Removed duplicate strings
|
||||
|
||||
#### 1.1.0 - 2017-01-24
|
||||
* New: Price Table widget ([#102](https://github.com/elementor/elementor/issues/102))
|
||||
* New: WooCommerce Add to Cart widget
|
||||
* New: WooCommerce Categories widget
|
||||
* New: WooCommerce Elements widget
|
||||
* New: Honeypot field for Forms widgets
|
||||
* Tweak: Added inline options for taxonomies & authors if is less than 15 items
|
||||
* Tweak: Added Required Mark for fields in Forms widget
|
||||
* Fix: CSS selectors priority in Slides widget
|
||||
* Fix: CSS bug in Price List widget
|
||||
* Fix: Update all Post CSS files that includes specific Global Widget
|
||||
|
||||
#### 1.0.9 - 2017-01-18
|
||||
* Fix: Auto complete bug in query controls
|
||||
* Fix: Render template with escaping slashes
|
||||
* Fix: Reply-to field in Forms widget
|
||||
|
||||
#### 1.0.8 - 2017-01-11
|
||||
* Tweak: Code adjustments for Elementor API
|
||||
* Fix: Removed go pro link from plugins page in admin
|
||||
|
||||
#### 1.0.7 - 2017-01-05
|
||||
* Tweak: Added filter by featured / sale for WC Products widget
|
||||
* Tweak: Added author control in Portfolio widget
|
||||
* Tweak: Code adjustments for Elementor API
|
||||
* Fix: Added support for empty image ratio
|
||||
* Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself
|
||||
|
||||
#### 1.0.6 - 2017-01-01
|
||||
* Tweak: Added Auto-updates for local translation files
|
||||
* Fix: Custom CSS for Global widgets
|
||||
* Fix: Remove `nonce` field (Fix some cache plugins)
|
||||
|
||||
#### 1.0.5 - 2016-12-27
|
||||
* Fix: Slide element bug fix - 'Link apply on' logic
|
||||
* Fix: Removed unique wrapper for Custom CSS in order to allow media queries ([#1086](https://github.com/elementor/elementor/issues/1086))
|
||||
|
||||
#### 1.0.4 - 2016-12-21
|
||||
* Tweak: Mobile Editing for fields in the form widget
|
||||
* Tweak: Mobile Editing for posts
|
||||
* Tweak: Allow send form as HTML
|
||||
* Tweak: Improved auto upgrades for Multisite installation
|
||||
* Tweak: Improve editor rendering experience for Portfolio widget
|
||||
* Fix: Posts widget check if image exist
|
||||
* Fix: Changed the clone method for global widget ([#1042](https://github.com/elementor/elementor/issues/1042))
|
||||
* Fix: Bug slides in RTL (removed direction control)
|
||||
* Fix: Slides with no height jumps when changing slides
|
||||
|
||||
#### 1.0.3 - 2016-12-13
|
||||
* Fix: Added escape placeholder for HTML Entities in form widget
|
||||
* Fix: Countdown widget RTL bug
|
||||
* Fix: Remove redundant #elementor selector for control style
|
||||
* Fix: Added prefixing with '0' for one digit number in Countdown widget
|
||||
|
||||
#### 1.0.2 - 2016-12-12
|
||||
* Fix: Page layout collapses when inserting reCAPTCHA field in Form
|
||||
|
||||
#### 1.0.1 - 2016-12-12
|
||||
* Fix: WordPress widgets disappear from Editor when Elementor Pro active
|
||||
|
||||
#### 1.0.0 - 2016-12-12
|
||||
* Initial release
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/elementpress/change_log/changelog.txt
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/elementpress/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
01/01/2020
|
||||
version 0.3
|
||||
[Fix] Fix some bugs on sections adding.
|
||||
|
||||
31/12/2019
|
||||
version 0.2
|
||||
[Update] Added template compatability with different themes.
|
||||
|
||||
30/12/2019
|
||||
version 0.1
|
||||
[New] Added Admin control section for elementor.
|
||||
|
||||
34
spec/fixtures/dynamic_finders/plugin_version/elfsight-blocks/composer_file/package.json
vendored
Normal file
34
spec/fixtures/dynamic_finders/plugin_version/elfsight-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "elfsight-embed-wp-block",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"dev": "webpack --mode=development --watch",
|
||||
"production": "webpack --mode=production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org/elfsight/embed-wp-block.git"
|
||||
},
|
||||
"author": "Elfsight <info@elfsight.com>",
|
||||
"license": "GPL",
|
||||
"homepage": "",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.7.2",
|
||||
"@babel/polyfill": "^7.7.0",
|
||||
"@babel/preset-env": "^7.7.1",
|
||||
"@babel/preset-react": "^7.7.0",
|
||||
"babel-loader": "^8.0.6",
|
||||
"css-loader": "^0.28.9",
|
||||
"style-loader": "^0.19.0",
|
||||
"stylus": "^0.54.7",
|
||||
"stylus-loader": "^3.0.1",
|
||||
"svg-url-loader": "^3.0.2",
|
||||
"webpack": "^4.41.2",
|
||||
"webpack-cli": "^3.3.10",
|
||||
"webpack-dev-server": "^3.8.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@elfsight/embed-sdk": "^0.1.9"
|
||||
}
|
||||
}
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/embed-salesvu/change_log/changelog.txt
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/embed-salesvu/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Docs: Add installation instructions and changelog to README
|
||||
* Docs: Added Parameters and HTTPS warning to README
|
||||
* Cleanup: Remove unsupported `allowtransparency` tag from parameters
|
||||
* Bugfix: Allow both ID & Classes in same_height_as
|
||||
* Improvements: Increase default height to 800px
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial Release
|
||||
@@ -0,0 +1,95 @@
|
||||
# Copyright (c) 2019 PluginEver. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ever Blocks 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/pluginever/ever-blocks/issues\n"
|
||||
"Last-Translator: support@pluginever.com\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-12-13T18:09:47+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: ever-blocks\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/class-everblocks-register-blocks.php:97
|
||||
msgid "Ever Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.pluginever.com/plugins/ever-blocks/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Ever Blocks is a professional page building blocks for the WordPress Gutenberg block editor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "pluginever"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://pluginever.com"
|
||||
msgstr ""
|
||||
|
||||
#: ever-blocks.php:78
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: ever-blocks.php:88
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/edit.js:41
|
||||
msgid "Alert Title…"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/edit.js:50
|
||||
msgid "Alert message content..."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:36
|
||||
msgid "Alert"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:37
|
||||
msgid "Add a notice block."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:41
|
||||
msgid "ever blocks"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:42
|
||||
msgid "notice"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:43
|
||||
msgid "message"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:48
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:53
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:57
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:61
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:66
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/alert/index.js:67
|
||||
msgid "Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,235 @@
|
||||
# Copyright (C) 2019 Nexty Platform
|
||||
# This file is distributed under the same license as the WooCommerce Ezdefi Payment Gateway plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Ezdefi Payment Gateway 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-gateway-ezdefi\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: 2019-12-25T02:26:50+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: woocommerce-gateway-ezdefi\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WooCommerce Ezdefi Payment Gateway"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://ezdefi.io/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Ezdefi Gateway integration for Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nexty Platform"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://nexty.io/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-ezdefi-admin-notices.php:49
|
||||
msgid "Ezdefi is almost ready. To get started, <a href=\"%s\">set your gateway api url</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-ezdefi-admin-notices.php:53
|
||||
msgid "Ezdefi is almost ready. To get started, <a href=\"%s\">set your gateway api key</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-ezdefi-admin-notices.php:62
|
||||
msgid "Ezdefi is almost ready. To get started, <a href=\"%s\">set accepted currency</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-ezdefi-exception-page.php:23
|
||||
msgid "ezDeFi Exception Management"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-ezdefi-exception-page.php:23
|
||||
msgid "ezDeFi Exception"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:11
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:12
|
||||
msgid "Enable ezDeFi"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:18
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:25
|
||||
#: includes/admin/ezdefi-settings.php:60
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:32
|
||||
msgid "Gateway API Url"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:39
|
||||
msgid "Gateway API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:45
|
||||
msgid "Payment Method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:51
|
||||
msgid "Acceptable price variation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ezdefi-settings.php:58
|
||||
msgid "Accepted Currency"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-page-ezdefi-exception.php:63
|
||||
msgid "Received Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-page-ezdefi-exception.php:64
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-page-ezdefi-exception.php:65
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-page-ezdefi-exception.php:66
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:68
|
||||
msgid "Can not get currency"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:83
|
||||
#: includes/class-wc-ezdefi-ajax.php:106
|
||||
#: includes/class-wc-ezdefi-ajax.php:131
|
||||
#: includes/class-wc-ezdefi-ajax.php:133
|
||||
#: includes/class-wc-ezdefi-ajax.php:219
|
||||
msgid "Can not create payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:186
|
||||
#: includes/class-wc-ezdefi-ajax.php:198
|
||||
#: includes/class-wc-ezdefi-ajax.php:286
|
||||
msgid "Can not get payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:301
|
||||
msgid "You have"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:301
|
||||
msgid "to scan this QR Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:309
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:316
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:324
|
||||
msgid "You have to pay exact amount so that your order can be handle property."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ezdefi-ajax.php:327
|
||||
msgid "If you have difficulty for sending exact amount, try to use"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:62
|
||||
msgid "ezDeFi"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:63
|
||||
msgid "Using BTC, ETH or any kinds of cryptocurrency. Handle by ezDeFi"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:181
|
||||
#: includes/class-wc-gateway-ezdefi.php:680
|
||||
msgid "Pay with any crypto wallet"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:182
|
||||
msgid "This method will adjust payment amount of each order by an acceptable number to help payment gateway identifying the uniqueness of that order."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:186
|
||||
#: includes/class-wc-gateway-ezdefi.php:683
|
||||
msgid "Pay with ezDeFi wallet"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:187
|
||||
msgid "This method is more powerful when amount uniqueness above method reaches allowable limit. Users just need to install ezDeFi wallet then import their private key to pay using qrCode."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:242
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:243
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:244
|
||||
msgid "Expiration (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:245
|
||||
msgid "Wallet Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:246
|
||||
msgid "Block Confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:247
|
||||
msgid "Decimal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:269
|
||||
#: includes/class-wc-gateway-ezdefi.php:410
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:271
|
||||
#: includes/class-wc-gateway-ezdefi.php:412
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:281
|
||||
#: includes/class-wc-gateway-ezdefi.php:420
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:466
|
||||
msgid "Add Currency"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:565
|
||||
msgid "Please select currency"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:582
|
||||
msgid "Awaiting ezdefi payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:680
|
||||
msgid "Any crypto wallet"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-ezdefi.php:683
|
||||
msgid "ezDeFi wallet"
|
||||
msgstr ""
|
||||
8853
spec/fixtures/dynamic_finders/plugin_version/fancify-core/translation_file/languages/Fancify_Core.pot
vendored
Normal file
8853
spec/fixtures/dynamic_finders/plugin_version/fancify-core/translation_file/languages/Fancify_Core.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,157 @@
|
||||
# Copyright (C) 2019 Krystian Szastok (SEO Consultant)
|
||||
# This file is distributed under the same license as the FAQ Schema For Pages And Posts plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FAQ Schema For Pages And Posts 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/faq-schema-for-pages-and-posts\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: 2019-11-25T14:49:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wp-faq-schema\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/class-option-page.php:41
|
||||
msgid "FAQ Schema For Pages And Posts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://krystianszastok.co.uk/wp-faq-schema-plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "To get started with FAQ Schema go to one of your pages or posts and at the bottom you'll find new fields for adding FAQ Schema. Simply save the page to see them come through in the code in the HEAD."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Krystian Szastok (SEO Consultant)"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://krystianszastok.co.uk/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: icon
|
||||
#: includes/class-metabox.php:42
|
||||
msgid "FAQ Schema For Pages And Posts %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: icon
|
||||
#: includes/class-metabox.php:42
|
||||
msgid "To save just update your page, this text saves automatically on page update."
|
||||
msgstr ""
|
||||
|
||||
#. translators: index
|
||||
#: includes/class-metabox.php:77
|
||||
#: includes/class-metabox.php:96
|
||||
msgid "Question #%s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-metabox.php:80
|
||||
msgid "Are you sure you want to delete this question and answer?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-metabox.php:84
|
||||
#: includes/class-metabox.php:108
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-metabox.php:88
|
||||
#: includes/class-metabox.php:112
|
||||
msgid "Answer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-metabox.php:97
|
||||
msgid "Add Another Question"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-metabox.php:104
|
||||
msgid "Are you sure? You want to delete this."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:55
|
||||
msgid "FAQ Schema For Pages And Posts Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:63
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:66
|
||||
msgid "Export as .csv"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:72
|
||||
#: includes/class-option-page.php:76
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:83
|
||||
msgid "How to make FAQ display on the front end:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:84
|
||||
msgid "Add the shortcode inside of the page or post content to display the FAQ. The shortcode tag is <code>wp-faq-schema</code>. It will take <code>title</code> and <code>accordion</code> attributes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:85
|
||||
msgid "Example below:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:86
|
||||
msgid "This code will only show FAQs of that page or post."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:87
|
||||
msgid "This code will show FAQs with \"Car FAQs\" title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:88
|
||||
msgid "This code will show FAQs as accordion."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:89
|
||||
msgid "This code will show FAQs as accordion with \"Car FAQs\" title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:91
|
||||
msgid "How the plugin works step by step:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:93
|
||||
msgid "Just to insert JSON-LD in a given page, go to that page/post and you’ll find new fields at the bottom the editor in the WP backend."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:94
|
||||
msgid "If you’d like to also display your Questions and Answers via a FAQ, use the shortcode. Title defines the heading above the FAQs. If you’d like to use an accordion, add accordion=1 as in the example. Remove that part not to use an accordion and just show all FAQs open (ie. [wp-faq-schema title=\"Car FAQs\" accordion=1] )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:95
|
||||
msgid "If you’d like to mass edit, use the Export section to export all of the pages and posts with their ids - and then edit the file and import it back. Note: For multiple FAQs for same post add more row at CSV file with same ID and title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:112
|
||||
#: includes/class-option-page.php:168
|
||||
msgid "Unauthorized access!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:146
|
||||
msgid "Unable to export as .csv file!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:174
|
||||
msgid "Empty csv file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-option-page.php:200
|
||||
msgid "All FAQs has been imported. Enjoy!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-plugin.php:44
|
||||
#: includes/class-plugin.php:57
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,51 @@
|
||||
# Copyright (C) 2019 innect feeCOMPASS
|
||||
# This file is distributed under the same license as the feeCOMPASS rankings plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: feeCOMPASS rankings 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/feecompass-rankings\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: 2019-11-14T20:22:56+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: feecompass-rankings\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "feeCOMPASS rankings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://demo-blog.feecompass.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin allows to include an intelligent product ranking into your blog. Ranking is inserted via a simple shortcode [ feecompass ]"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "innect feeCOMPASS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://feecompass.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/menu/Page.class.php:30
|
||||
msgid "API Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/menu/Page.class.php:37
|
||||
msgid "Blog identifier"
|
||||
msgstr ""
|
||||
|
||||
#: inc/menu/Page.class.php:45
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/menu/Page.class.php:75
|
||||
msgid "Admin page feeCOMPASS"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user