Compare commits

...

14 Commits

Author SHA1 Message Date
erwanlr
2e48968fd3 Bumps version 2019-09-25 16:00:24 +01:00
erwanlr
9a0c4a5c8f Fixes #1399 2019-09-25 10:02:15 +01:00
Erwan
9a011f0007 Merge pull request #1397 from noplanman/fix_registration_link
Fix broken registration / signup link.
2019-09-25 10:52:06 +02:00
Armando Lüscher
3f907a706f Fix broken registration / signup link. 2019-09-24 23:19:47 +02:00
erwanlr
9446141716 Adds DFs 2019-09-21 10:20:59 +01:00
erwanlr
1994826af8 Bumps version 2019-09-16 13:14:27 +01:00
erwanlr
ab950d6ffc Do not cache login requests - Fixes #1395 2019-09-16 10:37:43 +01:00
erwanlr
b77e611a90 Adds DFs 2019-09-14 10:35:22 +01:00
erwanlr
86f0284894 Updates help to reflect enumeration of popular plugins and themes 2019-09-13 18:10:33 +01:00
erwanlr
9bbe014dfe Merge branch 'master' of github.com:wpscanteam/wpscan 2019-09-13 17:23:19 +01:00
erwanlr
ad92c95500 Fixes crash when API returns HTML data rather than JSON in edge cases 2019-09-13 17:22:26 +01:00
Erwan
d360190382 Adds section for username enumeration in the Readme 2019-09-13 11:31:32 +02:00
ethicalhack3r
1737c8a7f6 Update readme 2019-09-13 11:02:12 +02:00
ethicalhack3r
cde262fd66 Add wpvulndb api info to readme 2019-09-13 10:49:05 +02:00
31 changed files with 5436 additions and 24 deletions

View File

@@ -77,13 +77,19 @@ docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u1-1
# Usage
```wpscan --url blog.tld``` This will scan the blog using default options with a good compromise between speed and accuracy. For example, the plugins will be checked passively but their version with a mixed detection mode (passively + aggressively). Potential config backup files will also be checked, along with other interesting findings. If a more stealthy approach is required, then ```wpscan --stealthy --url blog.tld``` can be used.
```wpscan --url blog.tld``` This will scan the blog using default options with a good compromise between speed and accuracy. For example, the plugins will be checked passively but their version with a mixed detection mode (passively + aggressively). Potential config backup files will also be checked, along with other interesting findings.
If a more stealthy approach is required, then ```wpscan --stealthy --url blog.tld``` can be used.
As a result, when using the ```--enumerate``` option, don't forget to set the ```--plugins-detection``` accordingly, as its default is 'passive'.
For more options, open a terminal and type ```wpscan --help``` (if you built wpscan from the source, you should type the command outside of the git repo)
The DB is located at ~/.wpscan/db
## Vulnerability Database
The WPScan CLI tool uses the [WPVulnDB API](https://wpvulndb.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPVulnDB](https://wpvulndb.com/users/sign_up). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPVulnDB](https://wpvulndb.com/).
## Load CLI options from file/s
WPScan can load all options (including the --url) from configuration files, the following locations are checked (order: first to last):
@@ -124,7 +130,7 @@ cli_options:
api_token: YOUR_API_TOKEN
```
Enumerating usernames
## Enumerating usernames
```shell
wpscan --url https://target.tld/ --enumerate u

View File

@@ -18,10 +18,10 @@ module WPScan
choices: {
vp: OptBoolean.new(['--vulnerable-plugins']),
ap: OptBoolean.new(['--all-plugins']),
p: OptBoolean.new(['--plugins']),
p: OptBoolean.new(['--popular-plugins']),
vt: OptBoolean.new(['--vulnerable-themes']),
at: OptBoolean.new(['--all-themes']),
t: OptBoolean.new(['--themes']),
t: OptBoolean.new(['--popular-themes']),
tt: OptBoolean.new(['--timthumbs']),
cb: OptBoolean.new(['--config-backups']),
dbe: OptBoolean.new(['--db-exports']),
@@ -69,7 +69,7 @@ module WPScan
OptInteger.new(
['--plugins-threshold THRESHOLD',
'Raise an error when the number of detected plugins via known locations reaches the threshold. ' \
'Set to 0 to ignore the threshold.'], default: 100
'Set to 0 to ignore the threshold.'], default: 100, advanced: true
)
]
end
@@ -98,7 +98,7 @@ module WPScan
OptInteger.new(
['--themes-threshold THRESHOLD',
'Raise an error when the number of detected themes via known locations reaches the threshold. ' \
'Set to 0 to ignore the threshold.'], default: 20
'Set to 0 to ignore the threshold.'], default: 20, advanced: true
)
]
end

View File

@@ -56,7 +56,7 @@ module WPScan
#
# @return [ Boolean ] Wether or not to enumerate the plugins
def enum_plugins?(opts)
opts[:plugins] || opts[:all_plugins] || opts[:vulnerable_plugins]
opts[:popular_plugins] || opts[:all_plugins] || opts[:vulnerable_plugins]
end
def enum_plugins
@@ -92,7 +92,7 @@ module WPScan
if opts[:enumerate][:all_plugins]
DB::Plugins.all_slugs
elsif opts[:enumerate][:plugins]
elsif opts[:enumerate][:popular_plugins]
DB::Plugins.popular_slugs
else
DB::Plugins.vulnerable_slugs
@@ -103,7 +103,7 @@ module WPScan
#
# @return [ Boolean ] Wether or not to enumerate the themes
def enum_themes?(opts)
opts[:themes] || opts[:all_themes] || opts[:vulnerable_themes]
opts[:popular_themes] || opts[:all_themes] || opts[:vulnerable_themes]
end
def enum_themes
@@ -139,7 +139,7 @@ module WPScan
if opts[:enumerate][:all_themes]
DB::Themes.all_slugs
elsif opts[:enumerate][:themes]
elsif opts[:enumerate][:popular_themes]
DB::Themes.popular_slugs
else
DB::Themes.vulnerable_slugs

View File

@@ -8,7 +8,7 @@ module WPScan
include CMSScanner::Finders::Finder::BreadthFirstDictionaryAttack
def login_request(username, password)
target.method_call('wp.getUsersBlogs', [username, password])
target.method_call('wp.getUsersBlogs', [username, password], cache_ttl: 0)
end
def valid_credentials?(response)

View File

@@ -19,7 +19,7 @@ module WPScan
end
end
target.multi_call(methods).run
target.multi_call(methods, cache_ttl: 0).run
end
# @param [ Array<Model::User> ] users

View File

@@ -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/register.
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up.
<% end -%>

View File

@@ -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/register."
"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 -%>
},

View File

@@ -4,7 +4,7 @@ module WPScan
module DB
# WPVulnDB API
class VulnApi
NON_ERROR_CODES = [200, 401, 404].freeze
NON_ERROR_CODES = [200, 401].freeze
class << self
attr_accessor :token
@@ -24,6 +24,7 @@ module WPScan
res = Browser.get(uri.join(path), params.merge(request_params))
return {} if res.code == 404 # This is for API inconsistencies when dots in path
return JSON.parse(res.body) if NON_ERROR_CODES.include?(res.code)
raise Error::HTTP, res

View File

@@ -109,6 +109,7 @@ module WPScan
Browser.instance.forge_request(
login_url,
method: :post,
cache_ttl: 0,
body: { log: username, pwd: password }
)
end

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.7.0'
VERSION = '3.7.2'
end

File diff suppressed because it is too large Load Diff

View File

@@ -390,6 +390,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/abcsubmit//assets/css/admin.css?ver=1.1.0
confidence: 10
about-author-box:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/about-author-box/css/about-author-box.css?ver=1.0.0
confidence: 10
above-the-fold-optimization:
StyleComment:
number: 2.9.2
@@ -1444,6 +1451,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/advanced-random-posts-widget/languages/advanced-random-posts-widget.pot,
Match: ''d-Version: Advanced Random Posts Widget 2.2.0'''
advanced-sermons:
QueryParameter:
number: '1.8'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8
confidence: 10
advanced-spoiler:
QueryParameter:
number: 2.02
@@ -1503,6 +1517,13 @@ plugins:
found_by: Meta Tag (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''advthemeeditor/1.0'''
advanced-xprofile-fields-for-buddypress:
TranslationFile:
number: 1.0.4
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/advanced-xprofile-fields-for-buddypress/languages/advanced-xprofile-fields-for-buddypress.pot,
Match: ''"1.0.4'''
adventure-bucket-list:
QueryParameter:
number: 1.0.0
@@ -2907,6 +2928,19 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/audioigniter/player/build/style.css?ver=1.4.1
- http://wp.lab/wp-content/plugins/audioigniter/player/build/app.js?ver=1.4.1
aurora-heatmap:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/aurora-heatmap/js/reporter.js?ver=1.0.0
confidence: 10
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/aurora-heatmap/languages/aurora-heatmap-ja.po,
Match: ''"Project-Id-Version: Aurora Heatmap v1.0.0'''
ausmed-document-button:
QueryParameter:
number: 1.0.0
@@ -3133,6 +3167,16 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/avaibook/languages/avaibook-pt_PT.po, Match:
''"Project-Id-Version: AvaiBook 1.0.0'''
availability-calendar:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/availability-calendar/public/css/styles.css?ver=1.0
- http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac.css?ver=1.0
- http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac-theme.css?ver=1.0
- http://wp.lab/wp-content/plugins/availability-calendar/public/js/owac.js?ver=1.0
confidence: 40
avangpress:
ChangeLog:
number: 1.0.1
@@ -3500,6 +3544,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/ba-event/languages/ba-event.pot, Match:
''Project-Id-Version: BA Event 1.0.0'''
ba-plus-before-after-image-slider-free:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ba-plus-before-after-image-slider-free/css/ba-plus.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ba-plus-before-after-image-slider-free/js/ba-plus.min.js?ver=1.0.0
confidence: 20
baap-mobile-version:
MetaTag:
number: 2.0
@@ -5787,6 +5839,13 @@ plugins:
- http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/modernizr.custom.26633.js?ver=1.0.3
- http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/jquery.gridrotator.js?ver=1.0.3
- http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/frontend.js?ver=1.0.3
bwl-advanced-faq-manager-lite:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/bwl-advanced-faq-manager-lite/css/faq-style.css?ver=1.0.0
confidence: 10
bwp-external-links:
QueryParameter:
number: 1.1.3
@@ -6079,6 +6138,14 @@ plugins:
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/carbon-fields/package.json, Match: ''1.6.0'''
card-for-bilibili:
QueryParameter:
number: '1.3'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/card-for-bilibili/card-for-bilibili.css?v=1.3&ver=1.3
- http://wp.lab/wp-content/plugins/card-for-bilibili/card-for-bilibili.js?v=1.3&ver=1.3
confidence: 20
cardealerpress:
HeaderPattern:
number: 4.9.1712.01
@@ -6223,6 +6290,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/category-post-slider/css/cps-style.css?ver=1.1
- http://wp.lab/wp-content/plugins/category-post-slider/js/jquery.cpsslider.js?ver=1.1
catenis-blocks:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/catenis-blocks/languages/catenis-blocks.pot,
Match: ''"Project-Id-Version: Catenis Blocks 1.0.0'''
cb-contact-form:
QueryParameter:
number: '1.1'
@@ -7390,6 +7464,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cmb2/CHANGELOG.md, Match: ''## [2.3.0 -
2017-12-20]'''
cn-custom-tabs:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/cn-custom-tabs/public/css/cn-custom-woo-tabs-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/cn-custom-tabs/public/js/cn-custom-woo-tabs-public.js?ver=1.0.0
confidence: 20
cnhk-slideshow:
QueryParameter:
number: 3.1.1
@@ -7871,6 +7953,16 @@ plugins:
confidence: 10
interesting_entries:
- http://wp.lab/wp-content/plugins/conditional-lightbox/slimbox-2.04/js/slimbox2.js?ver=1.0
conditional-popup-creator:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/css/jBox.all.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/css/main.css?ver=1.0
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/jBox.all.min.js?ver=1.0
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0
confidence: 40
conekta-payment-gateway:
ChangeLog:
number: 3.0.5
@@ -8141,6 +8233,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/contestfriend/contestfriend.pot, Match:
''Id-Version: contestfriend for WordPress 1.0'''
continue-shopping-anywhere-for-woocommerce:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/css/continue-shopping-anywhere-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/js/continue-shopping-anywhere-public.js?ver=1.0.0
confidence: 20
contributer:
QueryParameter:
number: '1.0'
@@ -10491,6 +10591,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/easy-social-sharing/languages/easy-social-sharing.pot,
Match: ''Project-Id-Version: Easy Social Sharing 1.3.0'''
easy-static-maps:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/easy-static-maps/lang/easy-static-maps-it_IT.po,
Match: ''"Project-Id-Version: Easy Static Maps 1.0'''
easy-support-videos:
TranslationFile:
number: 1.0.4
@@ -13372,6 +13479,14 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/freelancer-sharing-icons/public/css/freelancer_share_icons-public.css?ver=1.0.0
confidence: 10
frequency:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/frequency/public/css/frequency-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/frequency/public/js/frequency-public.js?ver=1.0.0
confidence: 20
fresh-podcaster:
QueryParameter:
number: 1.0.0
@@ -13414,6 +13529,13 @@ plugins:
- http://wp.lab/wp-content/plugins/front-end-pm/assets/css/style.css?ver=7.1
- http://wp.lab/wp-content/plugins/front-end-pm/assets/css/common-style.css?ver=7.1
confidence: 20
frontend-analytics:
TranslationFile:
number: 1.0.5
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/frontend-analytics/languages/frontend-analytics-en_US.po,
Match: ''t-Id-Version: Frontend Google Analytics 1.0.5'''
frontend-dashboard:
QueryParameter:
number: 1.2.1
@@ -13498,6 +13620,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/full-width-responsive-slider-wp/languages/full-width-responsive-slider-wp.pot,
Match: ''ersion: Full Width Responsive Slider Wp 1.1'''
fullscreen-ajax-loader:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/fullscreen-ajax-loader/assets/css/fs-ajax-loader.css?ver=1.0
confidence: 10
fullscreen-galleria:
QueryParameter:
number: 1.6.4
@@ -13796,6 +13925,13 @@ plugins:
- http://wp.lab/wp-content/plugins/generate-thumbnail/public/css/generate-thumbnail-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/generate-thumbnail/public/js/generate-thumbnail-public.js?ver=1.0.0
confidence: 20
generous-world:
ChangeLog:
number: 1.0.1
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/generous-world/changelog.txt, Match: ''##
1.0.1 - 2019-09-20'''
genesis-js-no-js:
ChangeLog:
number: 3.2.1
@@ -18833,6 +18969,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/link2wiki/editor_plugin.js, Match: ''version :
"1.0"'''
linkbuildr:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/linkbuildr/languages/linkbuildr.pot, Match:
''"Project-Id-Version: Linkbuildr 1.0'''
linker:
TranslationFile:
number: 1.2.0
@@ -18840,6 +18983,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/linker/language/linker.pot, Match: ''"Project-Id-Version:
Linker 1.2.0'''
linkgreen-product-import:
QueryParameter:
number: 1.0.5
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/linkgreen-product-import/public/css/linkgreen-product-import-public.css?ver=1.0.5
- http://wp.lab/wp-content/plugins/linkgreen-product-import/public/js/linkgreen-product-import-public.js?ver=1.0.5
confidence: 20
linkpaper:
QueryParameter:
number: 1.0.0
@@ -20859,6 +21010,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/meteor-slides/css/meteor-slides.css, Match:
''Stylesheet for the Meteor Slides 1.5.6 slideshow'''
metomic-for-cookies:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/metomic-for-cookies/public/css/metomic-public.css?ver=1.0.0
confidence: 10
metro-share-social-fonts:
QueryParameter:
number: 0.2.1
@@ -22932,6 +23090,10 @@ plugins:
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/loving-memorials-frontend.js?ver=1.0.1
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/payment.js?ver=1.0.1
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/datatables.min.js?ver=1.0.1
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/loving-memorials-public.min.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/bootstrap.min.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/loving-memorials-public.min.js?ver=1.0.1
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/loving-memorials-frontend.min.js?ver=1.0.1
confidence: 100
object-sync-for-salesforce:
ChangeLog:
@@ -23229,6 +23391,12 @@ plugins:
- http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/opalestate.js?ver=1.0
- http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/country-select.js?ver=1.0
confidence: 30
ChangeLog:
number: 1.0.4
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/opal-estate-pro/changelog.txt, Match: ''=
1.0.4'''
open-badge-factory:
TranslationFile:
number: 1.4.7.5
@@ -23505,6 +23673,12 @@ plugins:
- http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/css/ot-vertical-menu.css?ver=1.1.0
- http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/js/ot-vertical-menu.js?ver=1.1.0
confidence: 20
otm-accessibly:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/otm-accessibly/package.json, Match: ''1.0.0'''
otter-blocks:
ChangeLog:
number: 1.1.5
@@ -23872,6 +24046,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/password-confirm-action/languages/password-confirm-action.pot,
Match: ''ect-Id-Version: password-confirm-action 0.2.0'''
password-protect-page:
QueryParameter:
number: 1.2.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.css?ver=1.2.1
- http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.bundle.js?ver=1.2.1
confidence: 20
password-protected:
ChangeLog:
number: '2.1'
@@ -28345,6 +28527,14 @@ plugins:
- http://wp.lab/wp-content/plugins/sassy-social-share/public/css/sassy-social-share-public.css?ver=3.1.5
- http://wp.lab/wp-content/plugins/sassy-social-share/admin/css/sassy-social-share-svg.css?ver=3.1.5
- http://wp.lab/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.1.5
save-as-image-by-pdfcrowd:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-public.js?ver=1.0.0
confidence: 20
save-as-pdf-by-pdfcrowd:
QueryParameter:
number: 1.0.0
@@ -29023,6 +29213,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/seo-tag-cloud/lang/seo-tag-cloud.pot, Match:
''roject-Id-Version: SEO Tag Cloud Widget 1.8.2'''
seo-toolkit:
TranslationFile:
number: 1.0.1
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/seo-toolkit/languages/seo-toolkit.pot, Match:
''"Project-Id-Version: SEO Toolkit 1.0.1'''
seo-wordpress:
ComposerFile:
number: 4.0.9
@@ -29481,6 +29678,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/show-external-links/public/css/show-external-links-public.css?ver=1.0.1
confidence: 10
show-hide-content-for-fusion-builder:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/show-hide-content-for-fusion-builder/languages/show-hide-content-for-fusion-builder.pot,
Match: ''n: Show Hide Content for Fusion Builder 1.0.0'''
show-me-the-admin:
QueryParameter:
number: 1.2.1
@@ -31120,6 +31324,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/social-mentions/css/front-end.css?ver=1.0.3
confidence: 10
social-menu:
QueryParameter:
number: 0.1.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/social-menu/style.css?ver=0.1.0
confidence: 10
social-nation-itsme-login:
QueryParameter:
number: 1.0.8
@@ -32497,6 +32708,13 @@ plugins:
swift-performance-lite:
Comment:
found_by: Comment (Passive Detection)
swiftninjapro-better-scroll-bar:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/swiftninjapro-better-scroll-bar/assets/style.css?ver=1.0
confidence: 10
swim-it-up-tabela-de-recordes:
QueryParameter:
number: 1.0.0
@@ -32915,6 +33133,18 @@ plugins:
- http://wp.lab/wp-content/plugins/teachpress/js/frontend.js?ver=6.2.1
- http://wp.lab/wp-content/plugins/teachpress/styles/teachpress_front.css?ver=6.2.1
confidence: 20
team-master:
QueryParameter:
number: 1.0.3
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/team-master/public/css/team-master-public.css?ver=1.0.3
- http://wp.lab/wp-content/plugins/team-master/public/css/bootstrap.min.css?ver=1.0.3
- http://wp.lab/wp-content/plugins/team-master/public/css/font-awesome.min.css?ver=1.0.3
- http://wp.lab/wp-content/plugins/team-master/public/js/popper.min.js?ver=1.0.3
- http://wp.lab/wp-content/plugins/team-master/public/js/bootstrap.min.js?ver=1.0.3
- http://wp.lab/wp-content/plugins/team-master/public/js/team-master-public.js?ver=1.0.3
confidence: 60
team-members-block:
ComposerFile:
number: 1.0.0
@@ -33563,6 +33793,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/timelines/langs/tl-pt_BR.po, Match: ''"Project-Id-Version:
Timelines 1.0'''
timezone-conversion-widget:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/css/select2.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/js/select2.min.js?ver=1.0
confidence: 20
timezonecalculator:
MetaTag:
number: '3.37'
@@ -34405,6 +34643,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/ufhealth-require-image-alt-tags/languages/ufhealth-require-image-alt-tags.pot,
Match: ''rsion: UF Health Require Image Alt Tags 1.1.5'''
uhrzeit:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/uhrzeit/public/css/uhrzeit-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/uhrzeit/public/js/uhrzeit-public.js?ver=1.0.0
confidence: 20
uix-page-builder:
QueryParameter:
number: 1.4.9
@@ -35005,6 +35251,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/unique-hover-slider-plus/CHANGELOG.md, Match:
''## 1.1.2'''
unitizr:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/unitizr/lib/unitizr-public-style.css?ver=1.0.2
confidence: 10
units:
QueryParameter:
number: 1.0.2
@@ -35656,6 +35909,13 @@ plugins:
- http://wp.lab/wp-content/plugins/vessel/css/vessel.css?ver=0.7.1
- http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1
confidence: 20
viabill-woocommerce:
ChangeLog:
number: 1.0.3
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/viabill-woocommerce/changelog.txt, Match:
''= 1.0.3'''
viavi-wp-timeline:
TranslationFile:
number: '1.0'
@@ -35772,6 +36032,19 @@ plugins:
- http://wp.lab/wp-content/plugins/vies-validator/public/css/vies-validator-public.css?ver=1.0.4
- http://wp.lab/wp-content/plugins/vies-validator/public/js/vies-validator-public.js?ver=1.0.4
confidence: 20
vikappointments:
ChangeLog:
number: '1.1'
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/vikappointments/changelog.md, Match: ''##
1.1'''
vikbooking:
ChangeLog:
number: 1.2.7
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/vikbooking/changelog.md, Match: ''## 1.2.7'''
vikoder-posts-block:
TranslationFile:
number: 1.1.0
@@ -37736,6 +38009,15 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-customer-coupons/CHANGELOG.txt, Match:
''version 1.0.0'''
woo-delivery:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/woo-delivery/public/css/flatpickr.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/woo-delivery/public/css/coderockz-woo-delivery-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/woo-delivery/public/js/flatpickr.min.js?ver=1.0.0
confidence: 30
woo-delivery-scheduler:
QueryParameter:
number: 1.0.0
@@ -40845,6 +41127,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-featured-entries/locale/jh-featured-es_ES.po,
Match: ''"Project-Id-Version: jh-featured v1.0'''
wp-featured-news-custom-posts-listing-elements:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-featured-news-custom-posts-listing-elements/modules/js/theme.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-featured-news-custom-posts-listing-elements/modules/js/popper.min.js?ver=1.0.0
confidence: 20
wp-feed-post-thumbnail:
ComposerFile:
number: 2.1.0
@@ -43034,6 +43324,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-soavis/languages/wp-soavis.pot, Match:
''"Project-Id-Version: WP_SoaVis 1.2.0'''
wp-social-connect:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-social-connect/assets/css/wpsoccon-frontend.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-social-connect/assets/js/wpsoccon-frontend.js?ver=1.0.0
confidence: 20
wp-social-invitations:
QueryParameter:
number: 2.1.1
@@ -44288,6 +44586,13 @@ plugins:
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wphindi/changelog.md, Match: ''## [1.0.4]'''
wphobby-pdf-invoices-for-woocommerce:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wphobby-pdf-invoices-for-woocommerce/languages/wphobby-woo-pdf-invoice.pot,
Match: ''-Version: WooCommerce PDF Invoice Maker 1.0.0'''
wphobby-woocommerce-mini-cart:
TranslationFile:
number: 1.0.0
@@ -44382,6 +44687,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wpm-email/languages/wpm-email-it_IT.po,
Match: ''"Project-Id-Version: WPM-Email 1.0.0'''
wpmarathi:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wpmarathi//assets/css/wpmarathi-frontend.css?ver=1.0.0
confidence: 10
wpmbytplayer:
QueryParameter:
number: 3.1.7
@@ -45568,6 +45880,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/zigaform-form-builder-lite/change_log.txt,
Match: ''Version 3.9.8.5'''
zim-airtime:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/zim-airtime/public/css/techzim-airtime-public201909070020.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/zim-airtime/public/js/techzim-airtime-public201909111050.js?ver=1.0.0
confidence: 20
ziyarat-ashura:
QueryParameter:
number: 1.0.0

View File

@@ -0,0 +1,171 @@
# Copyright (C) 2019 SuitePlugins
# This file is distributed under the GPLv2 or later (license.txt).
msgid ""
msgstr ""
"Project-Id-Version: SuitePlugins - Advanced XProfile Fields for BuddyPress "
"1.0.4\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/advanced-xprofile-fields-for-"
"buddypress\n"
"POT-Creation-Date: 2019-09-08 03:48:34+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"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: admin/template/metabox.php:31
msgid "Labels"
msgstr ""
#: admin/template/metabox.php:32
msgid "Validation"
msgstr ""
#: admin/template/metabox.php:34
msgid "Advanced Options"
msgstr ""
#: admin/template/tab-advanced.php:6
msgid "Hide on registration"
msgstr ""
#: admin/template/tab-advanced.php:9
msgid "Hide field on registration page"
msgstr ""
#: admin/template/tab-advanced.php:15
msgid "Non editable"
msgstr ""
#: admin/template/tab-advanced.php:18
msgid "Stop profile field from being updated"
msgstr ""
#: admin/template/tab-advanced.php:24
msgid "Show in Admin Column"
msgstr ""
#: admin/template/tab-advanced.php:27
msgid "Display a column on admin user listing page"
msgstr ""
#: admin/template/tab-labels.php:6
msgid "Registration"
msgstr ""
#: admin/template/tab-labels.php:12
msgid "Label on registration page"
msgstr ""
#: admin/template/tab-labels.php:19
msgid "Self Profile"
msgstr ""
#: admin/template/tab-labels.php:25
msgid "Label while viewing your profile"
msgstr ""
#: admin/template/tab-labels.php:32
msgid "User's Profile"
msgstr ""
#: admin/template/tab-labels.php:38
msgid "Label while viewing another member's page"
msgstr ""
#: admin/template/tab-labels.php:45
msgid "Edit Profile"
msgstr ""
#: admin/template/tab-labels.php:51
msgid "Label on edit profile page"
msgstr ""
#: admin/template/tab-labels.php:58
msgid "Admin Column"
msgstr ""
#: admin/template/tab-labels.php:64
msgid "Admin column title "
msgstr ""
#: admin/template/tab-validation.php:5
msgid "Character Limit"
msgstr ""
#: admin/template/tab-validation.php:9
msgid "Set the maximum amount of characters for this field."
msgstr ""
#: admin/template/tab-validation.php:15
msgid "Minimum Characters"
msgstr ""
#: admin/template/tab-validation.php:19
msgid "Set the minimum amount of characters for this field."
msgstr ""
#: admin/template/tab-validation.php:25
msgid "Text Format"
msgstr ""
#: admin/template/tab-validation.php:28
msgid "-Select Format-"
msgstr ""
#: admin/template/tab-validation.php:30
msgid "Alphanumeric"
msgstr ""
#: admin/template/tab-validation.php:33
msgid "Alpha"
msgstr ""
#: admin/template/tab-validation.php:36
msgid "Email"
msgstr ""
#: admin/template/tab-validation.php:39
msgid "URL"
msgstr ""
#: admin/template/tab-validation.php:43
msgid "Choose the text format for an input field."
msgstr ""
#: sp-advanced-xprofile.php:242
msgid "Please enter only letters"
msgstr ""
#: sp-advanced-xprofile.php:246
msgid "Letters, numbers, and underscores only"
msgstr ""
#: sp-advanced-xprofile.php:268
msgid "Please specify a valid state"
msgstr ""
#: sp-advanced-xprofile.php:272
msgid "The specified US ZIP Code is invalid"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "SuitePlugins - Advanced XProfile Fields for BuddyPress"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://suiteplugins.com"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Enhance your BuddyPress profile fields with Advanced XProfile Fields for "
"BuddyPress. Manage fields labels, validation and show fields in admin."
msgstr ""
#. Author of the plugin/theme
msgid "SuitePlugins"
msgstr ""

View File

@@ -0,0 +1,553 @@
# Blank WordPress Pot
# Copyright 2014 ...
# This file is distributed under the GNU General Public License v3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Aurora Heatmap v1.0.0\n"
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
"POT-Creation-Date: 2019-09-20 16:15+0900\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: R3098 <info@seous.info>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
"X-Poedit-Basepath: ..\n"
"X-Generator: Poedit 2.2.3\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: freemius\n"
#: aurora-heatmap.php:34 class-aurora-heatmap-basic.php:212
#: class-aurora-heatmap-basic.php:213 class-aurora-heatmap-basic.php:311
#: class-aurora-heatmap-basic.php:446
msgid "Aurora Heatmap"
msgstr "Aurora Heatmap"
#: aurora-heatmap.php:35
msgid ""
"Beautiful like an aurora! A simple WordPress heatmap that can be completed "
"with just a plugin."
msgstr ""
"オーロラのように美しい、プラグインだけで完結するシンプルな WordPress 用ヒート"
"マップです。"
#: class-aurora-heatmap-basic.php:91
msgid "Fail to activate. Another version of Aurora Heatmap is already active."
msgstr ""
"有効化に失敗しました。他のバージョンの Aurora Heatmap が既に有効化されていま"
"す。"
#: class-aurora-heatmap-basic.php:227
#: premium/class-aurora-heatmap-standard.php:59
msgid "Settings"
msgstr "設定"
#: class-aurora-heatmap-basic.php:232
msgid "Premium Version Information"
msgstr "有料版のご案内"
#: class-aurora-heatmap-basic.php:237 class-aurora-heatmap-basic.php:252
#: premium/class-aurora-heatmap-standard.php:69
#: premium/class-aurora-heatmap-standard.php:84
msgid "Click"
msgstr "クリック"
#: class-aurora-heatmap-basic.php:242 class-aurora-heatmap-basic.php:257
#: premium/class-aurora-heatmap-standard.php:74
#: premium/class-aurora-heatmap-standard.php:89
msgid "Breakaway"
msgstr "離脱"
#: class-aurora-heatmap-basic.php:247 class-aurora-heatmap-basic.php:262
#: premium/class-aurora-heatmap-standard.php:79
#: premium/class-aurora-heatmap-standard.php:94
msgid "Attention"
msgstr "熟読"
#: class-aurora-heatmap-basic.php:269
#: premium/class-aurora-heatmap-standard.php:64
msgid "Help"
msgstr "ヘルプ"
#: class-aurora-heatmap-basic.php:328
msgid "Updated options."
msgstr "設定を更新しました。"
#: class-aurora-heatmap-basic.php:332
msgid "Deleted heatmap data."
msgstr "ヒートマップデータは削除されました。"
#: class-aurora-heatmap-basic.php:415
msgid "PC"
msgstr "パソコン"
#: class-aurora-heatmap-basic.php:421
msgid "Mobile"
msgstr "モバイル"
#: class-aurora-heatmap-basic.php:511
msgid "<b>Aurora Heatmap</b> has a premium version with extended features."
msgstr "<b>Aurora Heatmap</b> は機能を拡張した有料版を用意しています。"
#: class-aurora-heatmap-basic.php:512
msgid "If you like this plugin, please consider upgrading!"
msgstr ""
"本プラグインを気に入っていただけましたら、ぜひ、アップグレードを検討くださ"
"い!"
#: class-aurora-heatmap-basic.php:515
msgid "Features comparison"
msgstr "機能比較"
#: class-aurora-heatmap-basic.php:520
msgid "Free Version"
msgstr "無料版"
#: class-aurora-heatmap-basic.php:521
msgid "Premium Version"
msgstr "有料版"
#: class-aurora-heatmap-basic.php:524
msgid "Free Plan"
msgstr "フリープラン"
#: class-aurora-heatmap-basic.php:525
msgid "Standard Plan"
msgstr "<span class=\"ib\">スタンダード</span><span class=\"ib\">プラン</span>"
#: class-aurora-heatmap-basic.php:531
msgid "Priority Email Support"
msgstr "メールサポート"
#: class-aurora-heatmap-basic.php:532
msgid "Click Heatmap"
msgstr "クリックヒートマップ"
#: class-aurora-heatmap-basic.php:533
msgid "Breakaway Heatmap"
msgstr "離脱ヒートマップ"
#: class-aurora-heatmap-basic.php:534
msgid "Attention Heatmap"
msgstr "熟読ヒートマップ"
#: class-aurora-heatmap-basic.php:535
msgid "URL Organization"
msgstr "URL 最適化"
#: class-aurora-heatmap-basic.php:536
msgid "Extended Retension Period (6 months)"
msgstr "データ保存期間の延長6か月"
#: class-aurora-heatmap-basic.php:537
msgid "Update to the Latest Version"
msgstr "最新版への更新"
#: class-aurora-heatmap-basic.php:550
msgid "<b>*</b> The free plan is a premium version with no license or expired."
msgstr "※ フリープランはライセンス未契約またはライセンス失効の有料版です。"
#: class-aurora-heatmap-basic.php:561
msgid "Migrate data to the premium version"
msgstr "有料版へのデータ移行"
#: class-aurora-heatmap-basic.php:563
msgid ""
"<a href=\"https://market.seous.info/aurora-heatmap/premium\">Get the "
"installer</a> of the premium version plugin."
msgstr ""
"有料版プラグインの <a href=\"https://market.seous.info/aurora-heatmap/premium"
"\">インストーラを入手</a>。"
#: class-aurora-heatmap-basic.php:564
msgid "<b>Stop</b> the free version plugin."
msgstr "無料版プラグインを <b>停止</b>。"
#: class-aurora-heatmap-basic.php:565
msgid "<b>Install</b> / <b>activate</b> the installer."
msgstr "インストーラの <b>インストール</b>・<b>有効化</b>。"
#: class-aurora-heatmap-basic.php:566
msgid ""
"<b>User registration</b> / <b>license agreement</b> / <b>update plugin</b>."
msgstr "<b>ユーザー登録</b>・<b>ライセンス契約</b>・<b>プラグインの更新</b>。"
#: class-aurora-heatmap-basic.php:567
msgid "<b>Delete</b> the free version plugin."
msgstr "無料版プラグインの <b>削除</b>。"
#: class-aurora-heatmap-basic.php:577
#: premium/class-aurora-heatmap-standard.php:128
msgid "1 month"
msgstr "1か月"
#: class-aurora-heatmap-basic.php:578
#: premium/class-aurora-heatmap-standard.php:129
msgid "3 months"
msgstr "3か月"
#: class-aurora-heatmap-basic.php:579
#: premium/class-aurora-heatmap-standard.php:130
msgid "6 months"
msgstr "6か月"
#: class-aurora-heatmap-basic.php:583
#: premium/class-aurora-heatmap-standard.php:134
msgid "High accuracy"
msgstr "高精度"
#: class-aurora-heatmap-basic.php:584
#: premium/class-aurora-heatmap-standard.php:135
msgid "Standard"
msgstr "標準"
#: class-aurora-heatmap-basic.php:588
#: premium/class-aurora-heatmap-standard.php:139
msgid "Show"
msgstr "表示する"
#: class-aurora-heatmap-basic.php:589
#: premium/class-aurora-heatmap-standard.php:140
msgid "Hide"
msgstr "表示しない"
#: class-aurora-heatmap-basic.php:593 class-aurora-heatmap-basic.php:598
#: premium/class-aurora-heatmap-standard.php:144
#: premium/class-aurora-heatmap-standard.php:149
msgid "Integrated"
msgstr "統合"
#: class-aurora-heatmap-basic.php:594 class-aurora-heatmap-basic.php:599
#: premium/class-aurora-heatmap-standard.php:145
#: premium/class-aurora-heatmap-standard.php:150
msgid "individual display"
msgstr "別表示"
#: class-aurora-heatmap-basic.php:615
#: premium/class-aurora-heatmap-standard.php:168
msgid "Data settings"
msgstr "データ設定"
#: class-aurora-heatmap-basic.php:619
#: premium/class-aurora-heatmap-standard.php:172
msgid "Retension period"
msgstr "保存期間"
#: class-aurora-heatmap-basic.php:627
#: premium/class-aurora-heatmap-standard.php:180
msgid "Are you sure you want to delete all the heatmap data?"
msgstr "ヒートマップデータをすべて削除してもよろしいですか?"
#: class-aurora-heatmap-basic.php:627
#: premium/class-aurora-heatmap-standard.php:180
msgid "Bulk data deletion"
msgstr "データ一括削除"
#: class-aurora-heatmap-basic.php:630
#: premium/class-aurora-heatmap-standard.php:183
msgid "Display settings"
msgstr "表示設定"
#: class-aurora-heatmap-basic.php:634
#: premium/class-aurora-heatmap-standard.php:187
msgid "Accuracy"
msgstr "精度"
#: class-aurora-heatmap-basic.php:638
#: premium/class-aurora-heatmap-standard.php:191
msgid ""
"<b>*</b> If the count amount is not enough, please check in standard mode."
msgstr "※ カウント量が十分でない場合は標準モードで確認してみてください。"
#: class-aurora-heatmap-basic.php:643
#: premium/class-aurora-heatmap-standard.php:196
msgid "Count bar"
msgstr "カウントバー"
#: class-aurora-heatmap-basic.php:651
#: premium/class-aurora-heatmap-standard.php:204
msgid "URL hash"
msgstr "URL ハッシュ"
#: class-aurora-heatmap-basic.php:655
#: premium/class-aurora-heatmap-standard.php:208
msgid "<code>#top</code> etc."
msgstr "<code>#top</code> など。"
#: class-aurora-heatmap-basic.php:661
#: premium/class-aurora-heatmap-standard.php:214
msgid "URL parameter"
msgstr "URL パラメータ"
#: class-aurora-heatmap-basic.php:665
#: premium/class-aurora-heatmap-standard.php:218
msgid "<code>?page=2</code>, <code>?utm_source=xxxx</code>, etc."
msgstr "<code>?page=2</code> や <code>?utm_source=xxxx</code> など。"
#: class-aurora-heatmap-basic.php:667
#: premium/class-aurora-heatmap-standard.php:220
msgid ""
"<b>*</b> If the default permalink is set <code>?p=123</code>, use it "
"individual display."
msgstr ""
"※ デフォルトパーマリンク設定 <code>?p=123</code> の場合は別表示で使用くださ"
"い。"
#: class-aurora-heatmap-basic.php:671
#: premium/class-aurora-heatmap-standard.php:224
msgid "Save"
msgstr "保存"
#: class-aurora-heatmap-list.php:71
msgctxt "List_Table"
msgid "Count"
msgstr "Count"
#: class-aurora-heatmap-list.php:72
msgctxt "List_Table"
msgid "URL"
msgstr "URL"
#: class-aurora-heatmap-list.php:73
msgctxt "List_Table"
msgid "Title"
msgstr "Title"
#: class-aurora-heatmap-list.php:74
msgctxt "List_Table"
msgid "Heatmap"
msgstr "Heatmap"
#: class-aurora-heatmap-list.php:87
msgctxt "List_Table"
msgid "Delete"
msgstr "削除"
#: class-aurora-heatmap-list.php:172
msgid "* Analysis results can only be viewed from a PC."
msgstr "※ 解析結果はパソコンからのみ閲覧できます。"
#: class-aurora-heatmap-list.php:196
msgctxt "Table_List"
msgid "Check"
msgstr "チェック"
#: premium/class-aurora-heatmap-free.php:55
msgctxt "Free Plan"
msgid ""
"Due to unlicensed or expired licenses, the premium version features, "
"including <b>premium version plugin updates</b>, are limited."
msgstr ""
"ライセンス未契約または失効のため <b>有料版プラグインの更新</b> を含む有料版の"
"機能が制限されています。"
#: premium/class-aurora-heatmap-free.php:56
#, php-format
msgctxt "Free Plan"
msgid ""
"To use the latest version, we recommend the <a href=\"%s\">lisense "
"agreement</a> or the <a href=\"%s\">free version</a>. See the <a href=\"%s"
"\">help</a> for details."
msgstr ""
"最新版をご利用いただくため、<a href=\"%s\">ライセンス契約</a> または <a href="
"\"%s\">無料版</a> をおすすめします。詳細は <a href=\"%s\">ヘルプ</a> をご覧く"
"ださい。"
#: premium/class-aurora-heatmap-free.php:70
msgctxt "Free Plan"
msgid "About the free plan"
msgstr "フリープランについて"
#: premium/class-aurora-heatmap-free.php:71
msgctxt "Free Plan"
msgid "The license has expired, but the free plan can still be used."
msgstr ""
"現在、ライセンス失効していますが、引き続き無料版としての機能をご利用いただけ"
"ます。"
#: premium/class-aurora-heatmap-free.php:72
msgctxt "Free Plan"
msgid ""
"However, it is not possible to update to the latest version of the premium "
"version, so we recommend that you replace the WordPress.org plugin directory "
"with the free version."
msgstr ""
"ただし、最新版への更新などは行えませんので、WordPress.org プラグインディレク"
"トリの無料版への入れ替えをお勧めします。"
#: premium/class-aurora-heatmap-free.php:73
msgctxt "Free Plan"
msgid "It is also possible to take over the current data."
msgstr "その際、既存データを引き継ぐことも可能です。"
#: premium/class-aurora-heatmap-free.php:75
msgctxt "Free Plan"
msgid "Migrate data to the free version"
msgstr "無料版へのデータ移行"
#: premium/class-aurora-heatmap-free.php:77
msgctxt "Free Plan"
msgid "<b>Stop</b> the premium version plugin."
msgstr "有料版プラグインの <b>停止</b>。"
#: premium/class-aurora-heatmap-free.php:78
msgctxt "Free Plan"
msgid ""
"<b>Install</b> / <b>activate</b> <a href=\"plugin-install.php?s=aurora-"
"heatmap&tab=search&type=term\">the free version</a> plugin."
msgstr ""
"<a href=\"plugin-install.php?s=aurora-heatmap&tab=search&type=term\">無料版プ"
"ラグイン</a> の <b>インストール</b>・<b>有効化</b>。"
#: premium/class-aurora-heatmap-free.php:79
msgctxt "Free Plan"
msgid "<b>Delete</b> the premium version plugin."
msgstr "有料版プラグインの <b>削除</b>。"
#: premium/class-aurora-heatmap-free.php:83
msgctxt "Free Plan"
msgid "If you can't receive authentication email"
msgstr "認証メールが受け取れない場合"
#: premium/class-aurora-heatmap-free.php:84
#, php-format
msgctxt "Free Plan"
msgid ""
"Change the email address of <a href=\"profile.php\">%s</a> and restart the "
"user registration with the following button."
msgstr ""
"<a href=\"profile.php\">%s</a> のメールアドレスを変更の上、次のボタンでユー"
"ザー登録をやり直してください。"
#: premium/class-aurora-heatmap-free.php:85
msgctxt "Free Plan"
msgid "Restart the user registration"
msgstr "ユーザー登録をやり直す"
#~ msgid "Information"
#~ msgstr "案内"
#~ msgid ""
#~ "<p>ライセンス未契約または失効のため <b>有料版プラグインの更新</b> を含む有"
#~ "料版の機能が制限されています。</p>"
#~ msgstr ""
#~ "<p>ライセンス未契約または失効のため <b>有料版プラグインの更新</b> を含む有"
#~ "料版の機能が制限されています。</p>"
#~ msgid ""
#~ "<p>最新版をご利用いただくため <a href=\"%s\">ライセンス契約</a> または <a "
#~ "href=\"%s\">無料版</a> をおすすめします。詳細は <a href=\"%s\">案内タブ</"
#~ "a> をご覧ください。</p>"
#~ msgstr ""
#~ "<p>最新版をご利用いただくため <a href=\"%s\">ライセンス契約</a> または <a "
#~ "href=\"%s\">無料版</a> をおすすめします。詳細は <a href=\"%s\">案内タブ</"
#~ "a> をご覧ください。</p>"
#~ msgid "Aurora Heatmap (Installer)"
#~ msgstr "Aurora Heatmap (インストーラ)"
#~ msgid "Important"
#~ msgstr "重要事項"
#~ msgid ""
#~ "Fail to activate. Another version of <strong>Aurora Heatmap</strong> is "
#~ "already active."
#~ msgstr ""
#~ "有効化に失敗しました。他のバージョンの <strong>Aurora Heatmap</strong> が"
#~ "既に有効化されています。"
#~ msgctxt "Installer"
#~ msgid "Aurora Heatmap (Installer)"
#~ msgstr "Aurora Heatmap (インストーラ)"
#~ msgctxt "Installer"
#~ msgid "Important"
#~ msgstr "重要事項"
#~ msgctxt "Installer"
#~ msgid ""
#~ "<strong>%s %s</strong> はライセンス契約後のプラグインの更新でご利用いただ"
#~ "けます。"
#~ msgstr ""
#~ "<strong>%s %s</strong> はライセンス契約後のプラグインの更新でご利用いただ"
#~ "けます。"
#~ msgctxt "Installer"
#~ msgid ""
#~ "このプラグインはライセンス契約とプラグイン本体の導入を容易にするためのイン"
#~ "ストーラです。"
#~ msgstr ""
#~ "このプラグインはライセンス契約とプラグイン本体の導入を容易にするためのイン"
#~ "ストーラです。"
#~ msgctxt "Installer"
#~ msgid ""
#~ "<strong>%s %s</strong> をご希望の方は、本インストーラを <b>停止</b>・<b>削"
#~ "除</b> して無料版をご利用ください。"
#~ msgstr ""
#~ "<strong>%s %s</strong> をご希望の方は、本インストーラを <b>停止</b>・<b>削"
#~ "除</b> して無料版をご利用ください。"
#~ msgctxt "Installer"
#~ msgid "本インストーラをダウンロード・インストール・有効化します。"
#~ msgstr "本インストーラをダウンロード・インストール・有効化します。"
#~ msgctxt "Installer"
#~ msgid "%s より有料版(スタンダードプラン)のライセンス契約を行います。"
#~ msgstr "%s より有料版(スタンダードプラン)のライセンス契約を行います。"
#~ msgctxt "Installer"
#~ msgid "スタンダードプランの <b>[ UPGRADE NOW ]</b> をクリックします。"
#~ msgstr "スタンダードプランの <b>[ UPGRADE NOW ]</b> をクリックします。"
#~ msgctxt "Installer"
#~ msgid "<b>[ Monthly ]</b> または <b>[ Annually ]</b> を選択します。"
#~ msgstr "<b>[ Monthly ]</b> または <b>[ Annually ]</b> を選択します。"
#~ msgctxt "Installer"
#~ msgid ""
#~ "クレジットカード または PayPal のお支払い方法を選択して、情報を入力しま"
#~ "す。"
#~ msgstr ""
#~ "クレジットカード または PayPal のお支払い方法を選択して、情報を入力しま"
#~ "す。"
#~ msgctxt "Installer"
#~ msgid "<b>[ Review Order ]</b> ボタンをクリックします。"
#~ msgstr "<b>[ Review Order ]</b> ボタンをクリックします。"
#~ msgctxt "Installer"
#~ msgid ""
#~ "確認画面が表示されますので <b>[ Pay &amp; Subscribe ]</b> ボタンをクリック"
#~ "して決済します。"
#~ msgstr ""
#~ "確認画面が表示されますので <b>[ Pay &amp; Subscribe ]</b> ボタンをクリック"
#~ "して決済します。"
#~ msgctxt "Installer"
#~ msgid ""
#~ "%s より <strong>%s</strong> を最新の <strong>%s %s</strong> に更新します。"
#~ msgstr ""
#~ "%s より <strong>%s</strong> を最新の <strong>%s %s</strong> に更新します。"
#~ msgid "Breakaway (Mobile)"
#~ msgstr "離脱 (Mobile)"
#~ msgid "Attention (Mobile)"
#~ msgstr "熟読 (Mobile)"
#~ msgid "perusal (PC)"
#~ msgstr "熟読 (PC)"
#~ msgid "perusal (Mobile)"
#~ msgstr "熟読 (Mobile)"
#~ msgid "Got invalid nonce."
#~ msgstr "不正な nonce です。"

View File

@@ -0,0 +1,951 @@
# Copyright (C) 2019 Blockchain of Things
# This file is distributed under the same license as the Catenis Blocks plugin.
msgid ""
msgstr ""
"Project-Id-Version: Catenis Blocks 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/CatenisBlocksWPPlugin\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-09-04T15:44:23-03:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: catenis-blocks\n"
#. Plugin Name of the plugin
msgid "Catenis Blocks"
msgstr ""
#. Description of the plugin
msgid "A set of Gutenberg blocks for interfacing with the Bitcoin blockchain via Catenis Enterprise services"
msgstr ""
#. Author of the plugin
msgid "Blockchain of Things"
msgstr ""
#. Author URI of the plugin
msgid "https://blockchainofthings.com"
msgstr ""
#: src/CatenisBlocks.php:33
msgid "Catenis"
msgstr ""
#: js/SaveMessageBlock.js:195
msgid "unnamed"
msgstr ""
#: js/StoreMessageBlockEditor.js:12
#: js/SendMessageBlockEditor.js:16
msgid "Write your message"
msgstr ""
#: js/StoreMessageBlockEditor.js:13
#: js/StoreMessageBlockEditor.js:22
msgid "Store Message"
msgstr ""
#: js/StoreMessageBlockEditor.js:14
msgid ""
"Message successfully stored.\n"
"Message Id: {!messageId}"
msgstr ""
#: js/StoreMessageBlockEditor.js:23
msgid "Store a text message onto the Bitcoin blockchain"
msgstr ""
#: js/StoreMessageBlockEditor.js:211
#: js/SendMessageBlockEditor.js:306
msgid "Message Box"
msgstr ""
#: js/StoreMessageBlockEditor.js:214
#: js/SendMessageBlockEditor.js:309
msgid "Number of Lines"
msgstr ""
#: js/StoreMessageBlockEditor.js:222
#: js/SaveMessageBlockEditor.js:165
#: js/SendFileBlockEditor.js:292
#: js/SendMessageBlockEditor.js:317
#: js/StoreFileBlockEditor.js:199
#: js/DisplayMessageBlockEditor.js:164
msgid "Display"
msgstr ""
#: js/StoreMessageBlockEditor.js:226
#: js/SaveMessageBlockEditor.js:169
#: js/SendFileBlockEditor.js:296
#: js/SendMessageBlockEditor.js:321
#: js/StoreFileBlockEditor.js:203
#: js/DisplayMessageBlockEditor.js:168
msgid "Show Spinner"
msgstr ""
#: js/StoreMessageBlockEditor.js:227
msgid "Show animated icon while storing message"
msgstr ""
#: js/StoreMessageBlockEditor.js:233
#: js/SaveMessageBlockEditor.js:238
#: js/MessageInputBlockEditor.js:93
#: js/SendFileBlockEditor.js:303
#: js/SendMessageBlockEditor.js:328
#: js/StoreFileBlockEditor.js:210
#: js/DisplayMessageBlockEditor.js:199
msgid "Advanced UI Settings"
msgstr ""
#: js/StoreMessageBlockEditor.js:240
#: js/SaveMessageBlockEditor.js:206
#: js/SendFileBlockEditor.js:310
#: js/SendMessageBlockEditor.js:335
#: js/StoreFileBlockEditor.js:217
#: js/DisplayMessageBlockEditor.js:204
msgid "Spinner Color"
msgstr ""
#: js/StoreMessageBlockEditor.js:260
#: js/SendMessageBlockEditor.js:365
msgid "Message Placeholder"
msgstr ""
#: js/StoreMessageBlockEditor.js:265
#: js/MessageInputBlockEditor.js:102
#: js/SendFileBlockEditor.js:345
#: js/SendMessageBlockEditor.js:370
#: js/StoreFileBlockEditor.js:242
msgid "Button Label"
msgstr ""
#: js/StoreMessageBlockEditor.js:270
#: js/SendFileBlockEditor.js:350
#: js/SendMessageBlockEditor.js:375
#: js/StoreFileBlockEditor.js:247
msgid "Success Message Template"
msgstr ""
#: js/StoreMessageBlockEditor.js:271
#: js/SendFileBlockEditor.js:351
#: js/SendMessageBlockEditor.js:376
#: js/StoreFileBlockEditor.js:248
msgid "Use the term {!messageId} as a placeholder for the returned message ID"
msgstr ""
#: js/StoreMessageBlockEditor.js:282
#: js/SendFileBlockEditor.js:362
#: js/SendMessageBlockEditor.js:387
#: js/StoreFileBlockEditor.js:259
msgid "Store Options"
msgstr ""
#: js/StoreMessageBlockEditor.js:286
#: js/SendFileBlockEditor.js:378
#: js/SendMessageBlockEditor.js:397
#: js/StoreFileBlockEditor.js:269
msgid "Encrypt"
msgstr ""
#: js/StoreMessageBlockEditor.js:287
#: js/SendMessageBlockEditor.js:398
msgid "Encrypt message before storing it"
msgstr ""
#: js/StoreMessageBlockEditor.js:287
#: js/SendMessageBlockEditor.js:398
msgid "Store message as it is"
msgstr ""
#: js/StoreMessageBlockEditor.js:292
#: js/SendMessageBlockEditor.js:403
msgid "Storage"
msgstr ""
#: js/StoreMessageBlockEditor.js:308
#: js/SendFileBlockEditor.js:385
#: js/SendMessageBlockEditor.js:419
#: js/StoreFileBlockEditor.js:276
msgid "Result"
msgstr ""
#: js/StoreMessageBlockEditor.js:312
#: js/SendFileBlockEditor.js:389
#: js/SendMessageBlockEditor.js:423
#: js/StoreFileBlockEditor.js:280
msgid "Success Panel ID"
msgstr ""
#: js/StoreMessageBlockEditor.js:313
#: js/StoreMessageBlockEditor.js:319
#: js/SendFileBlockEditor.js:390
#: js/SendFileBlockEditor.js:396
#: js/SendMessageBlockEditor.js:424
#: js/SendMessageBlockEditor.js:430
#: js/StoreFileBlockEditor.js:281
#: js/StoreFileBlockEditor.js:287
msgid "Enter ID of an HTML element on the page"
msgstr ""
#: js/StoreMessageBlockEditor.js:318
#: js/SendFileBlockEditor.js:395
#: js/SendMessageBlockEditor.js:429
#: js/StoreFileBlockEditor.js:286
msgid "Error Panel ID"
msgstr ""
#: js/StoreMessageBlockEditor.js:413
#: js/PermissionsBlockEditor.js:533
#: js/MessageInboxBlockEditor.js:935
#: js/SaveMessageBlockEditor.js:314
#: js/SendFileBlockEditor.js:534
#: js/SendMessageBlockEditor.js:559
#: js/StoreFileBlockEditor.js:390
#: js/MessageHistoryBlockEditor.js:1082
#: js/DisplayMessageBlockEditor.js:281
msgid "Catenis API client not loaded on page"
msgstr ""
#: js/PermissionsBlockEditor.js:25
msgid "Permissions"
msgstr ""
#: js/PermissionsBlockEditor.js:26
msgid "Manage Catenis permissions"
msgstr ""
#: js/PermissionsBlockEditor.js:155
msgid "Permission Selection"
msgstr ""
#: js/PermissionsBlockEditor.js:159
msgid "Permission Events"
msgstr ""
#: js/PermissionsBlockEditor.js:160
msgid "receive-notify-new-msg"
msgstr ""
#: js/PermissionsBlockEditor.js:166
msgid "receive-notify-msg-read"
msgstr ""
#: js/PermissionsBlockEditor.js:172
msgid "receive-msg"
msgstr ""
#: js/PermissionsBlockEditor.js:178
msgid "send-read-msg-confirm"
msgstr ""
#: js/PermissionsBlockEditor.js:184
msgid "disclose-main-props"
msgstr ""
#: js/PermissionsBlockEditor.js:190
msgid "disclose-identity-info"
msgstr ""
#: js/PermissionsBlockEditor.js:191
msgid "Select the permission rights to choose"
msgstr ""
#: js/PermissionsBlockEditor.js:197
msgid "Levels"
msgstr ""
#: js/PermissionsBlockEditor.js:198
#: js/PermissionsBlockEditor.js:309
#: js/PermissionsBlockEditor.js:428
msgid "System"
msgstr ""
#: js/PermissionsBlockEditor.js:204
#: js/PermissionsBlockEditor.js:318
#: js/PermissionsBlockEditor.js:437
msgid "Catenis Node"
msgstr ""
#: js/PermissionsBlockEditor.js:210
#: js/PermissionsBlockEditor.js:327
#: js/PermissionsBlockEditor.js:446
msgid "Client"
msgstr ""
#: js/PermissionsBlockEditor.js:216
#: js/PermissionsBlockEditor.js:336
#: js/PermissionsBlockEditor.js:455
msgid "Device"
msgstr ""
#: js/PermissionsBlockEditor.js:217
msgid "Select the levels to choose"
msgstr ""
#: js/PermissionsBlockEditor.js:242
#: js/PermissionsBlockEditor.js:379
msgid "Receive notification of new message from a device"
msgstr ""
#: js/PermissionsBlockEditor.js:251
#: js/PermissionsBlockEditor.js:388
msgid "Receive notification of message read by a device"
msgstr ""
#: js/PermissionsBlockEditor.js:260
#: js/PermissionsBlockEditor.js:397
msgid "Receive message from a device"
msgstr ""
#: js/PermissionsBlockEditor.js:269
#: js/PermissionsBlockEditor.js:406
msgid "Send read message confirmation to a device"
msgstr ""
#: js/PermissionsBlockEditor.js:278
msgid "Disclose device's main properties (name, product unique ID) to a device"
msgstr ""
#: js/PermissionsBlockEditor.js:287
msgid "Disclose device's basic identification information to a device"
msgstr ""
#: js/PermissionsBlockEditor.js:496
#: js/PermissionsBlock.js:616
msgid "allow"
msgstr ""
#: js/PermissionsBlockEditor.js:499
#: js/PermissionsBlock.js:617
msgid "deny"
msgstr ""
#: js/PermissionsBlockEditor.js:502
#: js/PermissionsBlock.js:618
msgid "none"
msgstr ""
#: js/MessageInboxBlockEditor.js:26
msgid "Message Inbox"
msgstr ""
#: js/MessageInboxBlockEditor.js:27
msgid "Display list with latest received messages"
msgstr ""
#: js/MessageInboxBlockEditor.js:347
#: js/MessageHistoryBlockEditor.js:374
msgid "Message Filtering"
msgstr ""
#: js/MessageInboxBlockEditor.js:350
#: js/MessageHistoryBlockEditor.js:392
msgid "Unread Only"
msgstr ""
#: js/MessageInboxBlockEditor.js:351
#: js/MessageHistoryBlockEditor.js:393
msgid "List only unread messages"
msgstr ""
#: js/MessageInboxBlockEditor.js:351
#: js/MessageHistoryBlockEditor.js:393
msgid "List all messages"
msgstr ""
#: js/MessageInboxBlockEditor.js:356
#: js/MessageHistoryBlockEditor.js:398
msgid "Period"
msgstr ""
#: js/MessageInboxBlockEditor.js:359
#: js/MessageHistoryBlockEditor.js:401
msgid "Today"
msgstr ""
#: js/MessageInboxBlockEditor.js:362
#: js/MessageHistoryBlockEditor.js:404
msgid "Last 7 days"
msgstr ""
#: js/MessageInboxBlockEditor.js:365
#: js/MessageHistoryBlockEditor.js:407
msgid "Last 30 days"
msgstr ""
#: js/MessageInboxBlockEditor.js:368
#: js/MessageHistoryBlockEditor.js:410
msgid "Current month"
msgstr ""
#: js/MessageInboxBlockEditor.js:371
#: js/MessageHistoryBlockEditor.js:413
msgid "Last 3 months"
msgstr ""
#: js/MessageInboxBlockEditor.js:374
#: js/MessageHistoryBlockEditor.js:416
msgid "Last 6 months"
msgstr ""
#: js/MessageInboxBlockEditor.js:377
#: js/MessageHistoryBlockEditor.js:419
msgid "Custom"
msgstr ""
#: js/MessageInboxBlockEditor.js:387
#: js/MessageInboxBlockEditor.js:411
#: js/MessageHistoryBlockEditor.js:429
#: js/MessageHistoryBlockEditor.js:453
msgid "Start Date"
msgstr ""
#: js/MessageInboxBlockEditor.js:430
#: js/MessageHistoryBlockEditor.js:512
msgid "Message List"
msgstr ""
#: js/MessageInboxBlockEditor.js:434
#: js/MessageHistoryBlockEditor.js:516
msgid "Messages Per Page"
msgstr ""
#: js/MessageInboxBlockEditor.js:439
#: js/MessageHistoryBlockEditor.js:521
msgid "Columns"
msgstr ""
#: js/MessageInboxBlockEditor.js:440
#: js/MessageInboxBlockEditor.js:552
#: js/MessageInboxBlockEditor.js:804
#: js/SaveMessageBlockEditor.js:176
#: js/MessageHistoryBlockEditor.js:522
#: js/MessageHistoryBlockEditor.js:640
#: js/MessageHistoryBlockEditor.js:923
msgid "Action"
msgstr ""
#: js/MessageInboxBlockEditor.js:446
#: js/MessageInboxBlockEditor.js:583
#: js/MessageInboxBlockEditor.js:830
#: js/SaveMessageBlockEditor.js:158
#: js/MessageInputBlockEditor.js:8
#: js/MessageHistoryBlockEditor.js:528
#: js/MessageHistoryBlockEditor.js:671
#: js/MessageHistoryBlockEditor.js:949
#: js/DisplayMessageBlockEditor.js:157
msgid "Message ID"
msgstr ""
#: js/MessageInboxBlockEditor.js:452
#: js/MessageInboxBlockEditor.js:616
#: js/MessageInboxBlockEditor.js:858
#: js/MessageHistoryBlockEditor.js:540
#: js/MessageHistoryBlockEditor.js:737
#: js/MessageHistoryBlockEditor.js:1005
msgid "Date"
msgstr ""
#: js/MessageInboxBlockEditor.js:458
#: js/MessageInboxBlockEditor.js:649
#: js/MessageInboxBlockEditor.js:886
msgid "From"
msgstr ""
#: js/MessageInboxBlockEditor.js:464
#: js/MessageInboxBlockEditor.js:682
#: js/MessageInboxBlockEditor.js:914
#: js/MessageHistoryBlockEditor.js:552
#: js/MessageHistoryBlockEditor.js:803
#: js/MessageHistoryBlockEditor.js:1061
msgid "Read"
msgstr ""
#: js/MessageInboxBlockEditor.js:465
#: js/MessageHistoryBlockEditor.js:553
msgid "Select the columns to be displayed"
msgstr ""
#: js/MessageInboxBlockEditor.js:472
#: js/MessageHistoryBlockEditor.js:560
msgid "Action Links"
msgstr ""
#: js/MessageInboxBlockEditor.js:494
msgid "Origin Device ID ('From' Column)"
msgstr ""
#: js/MessageInboxBlockEditor.js:495
#: js/MessageHistoryBlockEditor.js:583
msgid "Always show device ID"
msgstr ""
#: js/MessageInboxBlockEditor.js:495
#: js/MessageHistoryBlockEditor.js:583
msgid "Show product unique ID instead if present"
msgstr ""
#: js/MessageInboxBlockEditor.js:516
#: js/MessageHistoryBlockEditor.js:604
msgid "Display HTML Anchor"
msgstr ""
#: js/MessageInboxBlockEditor.js:517
#: js/MessageHistoryBlockEditor.js:605
msgid "Reference to block used to display the message contents"
msgstr ""
#: js/MessageInboxBlockEditor.js:526
#: js/MessageHistoryBlockEditor.js:614
msgid "Save HTML Anchor"
msgstr ""
#: js/MessageInboxBlockEditor.js:527
#: js/MessageHistoryBlockEditor.js:615
msgid "Reference to block used to save the message contents"
msgstr ""
#: js/MessageInboxBlockEditor.js:534
#: js/MessageHistoryBlockEditor.js:622
msgid "Action Target"
msgstr ""
#: js/MessageInboxBlockEditor.js:581
#: js/MessageInboxBlockEditor.js:614
#: js/MessageInboxBlockEditor.js:647
#: js/MessageInboxBlockEditor.js:680
#: js/MessageInboxBlockEditor.js:829
#: js/MessageInboxBlockEditor.js:857
#: js/MessageInboxBlockEditor.js:885
#: js/MessageInboxBlockEditor.js:913
#: js/MessageHistoryBlockEditor.js:669
#: js/MessageHistoryBlockEditor.js:702
#: js/MessageHistoryBlockEditor.js:735
#: js/MessageHistoryBlockEditor.js:768
#: js/MessageHistoryBlockEditor.js:801
#: js/MessageHistoryBlockEditor.js:948
#: js/MessageHistoryBlockEditor.js:976
#: js/MessageHistoryBlockEditor.js:1004
#: js/MessageHistoryBlockEditor.js:1032
#: js/MessageHistoryBlockEditor.js:1060
msgid "Sort by"
msgstr ""
#: js/MessageInboxBlockEditor.js:734
#: js/MessageHistoryBlockEditor.js:856
msgid "Reload"
msgstr ""
#: js/MessageInboxBlockEditor.js:742
msgid "New Message"
msgstr ""
#: js/MessageInboxBlockEditor.js:746
#: js/MessageHistoryBlockEditor.js:865
msgid "First page"
msgstr ""
#: js/MessageInboxBlockEditor.js:754
#: js/MessageHistoryBlockEditor.js:873
msgid "Previous page"
msgstr ""
#: js/MessageInboxBlockEditor.js:775
#: js/MessageHistoryBlockEditor.js:894
msgid "Next page"
msgstr ""
#: js/MessageInboxBlockEditor.js:783
#: js/MessageHistoryBlockEditor.js:902
msgid "Last page"
msgstr ""
#: js/SaveMessageBlockEditor.js:11
msgid "Save retrieved message"
msgstr ""
#: js/SaveMessageBlockEditor.js:18
msgid "Save Message"
msgstr ""
#: js/SaveMessageBlockEditor.js:19
msgid "Save message retrieved from the Bitcoin blockchain as a file"
msgstr ""
#: js/SaveMessageBlockEditor.js:155
#: js/DisplayMessageBlockEditor.js:154
msgid "Message"
msgstr ""
#: js/SaveMessageBlockEditor.js:159
#: js/DisplayMessageBlockEditor.js:158
msgid "ID of message to be retrieved"
msgstr ""
#: js/SaveMessageBlockEditor.js:170
#: js/DisplayMessageBlockEditor.js:169
msgid "Show animated icon while loading message"
msgstr ""
#: js/SaveMessageBlockEditor.js:180
msgid "Auto Save"
msgstr ""
#: js/SaveMessageBlockEditor.js:181
msgid "Automatically save message after it is retrieved"
msgstr ""
#: js/SaveMessageBlockEditor.js:181
msgid "Show link to save retrieved message"
msgstr ""
#: js/SaveMessageBlockEditor.js:194
msgid "Save Message Link"
msgstr ""
#: js/MessageInputBlockEditor.js:9
msgid "Submit"
msgstr ""
#: js/MessageInputBlockEditor.js:12
msgid "Message Input"
msgstr ""
#: js/MessageInputBlockEditor.js:13
msgid "Enter ID of message for display/saving"
msgstr ""
#: js/MessageInputBlockEditor.js:83
msgid "Target"
msgstr ""
#: js/MessageInputBlockEditor.js:86
msgid "HTML Anchor"
msgstr ""
#: js/MessageInputBlockEditor.js:87
msgid "Reference to block used to display/save the message contents"
msgstr ""
#: js/MessageInputBlockEditor.js:97
msgid "Message ID Placeholder"
msgstr ""
#: js/SendFileBlockEditor.js:11
#: js/SendMessageBlockEditor.js:14
msgid "Target device ID"
msgstr ""
#: js/SendFileBlockEditor.js:12
#: js/SendMessageBlockEditor.js:15
msgid "Target device prod unique ID"
msgstr ""
#: js/SendFileBlockEditor.js:13
#: js/StoreFileBlockEditor.js:11
msgid "Drop a file or click to select"
msgstr ""
#: js/SendFileBlockEditor.js:14
#: js/SendFileBlockEditor.js:24
msgid "Send File"
msgstr ""
#: js/SendFileBlockEditor.js:15
msgid ""
"File successfully sent.\n"
"Message Id: {!messageId}"
msgstr ""
#: js/SendFileBlockEditor.js:25
msgid "Store a file onto the Bitcoin blockchain addressing it to another Catenis virtual device"
msgstr ""
#: js/SendFileBlockEditor.js:264
#: js/SendMessageBlockEditor.js:278
msgid "Target Device"
msgstr ""
#: js/SendFileBlockEditor.js:267
#: js/SendMessageBlockEditor.js:281
msgid "Dynamic Target Device"
msgstr ""
#: js/SendFileBlockEditor.js:268
#: js/SendMessageBlockEditor.js:282
msgid "Select a different target device for each message"
msgstr ""
#: js/SendFileBlockEditor.js:268
#: js/SendMessageBlockEditor.js:282
msgid "Use a single predefined target device"
msgstr ""
#: js/SendFileBlockEditor.js:273
#: js/SendMessageBlockEditor.js:287
msgid "Use Product Unique ID"
msgstr ""
#: js/SendFileBlockEditor.js:274
#: js/SendMessageBlockEditor.js:288
msgid "Enter product unique ID for target device"
msgstr ""
#: js/SendFileBlockEditor.js:274
#: js/SendMessageBlockEditor.js:288
msgid "Enter Catenis device ID for target device"
msgstr ""
#: js/SendFileBlockEditor.js:282
#: js/SendMessageBlockEditor.js:296
msgid "Target Device Product Unique ID"
msgstr ""
#: js/SendFileBlockEditor.js:282
#: js/SendMessageBlockEditor.js:296
msgid "Target Device ID"
msgstr ""
#: js/SendFileBlockEditor.js:283
#: js/SendMessageBlockEditor.js:297
msgid "ID of Catenis virtual device to which the message is sent"
msgstr ""
#: js/SendFileBlockEditor.js:297
msgid "Show animated icon while sending file"
msgstr ""
#: js/SendFileBlockEditor.js:330
#: js/SendMessageBlockEditor.js:355
msgid "Target Device ID Placeholder"
msgstr ""
#: js/SendFileBlockEditor.js:335
#: js/SendMessageBlockEditor.js:360
msgid "Target Device Prod Unique ID Placeholder"
msgstr ""
#: js/SendFileBlockEditor.js:340
#: js/StoreFileBlockEditor.js:237
msgid "File Drop Box Message"
msgstr ""
#: js/SendFileBlockEditor.js:366
#: js/StoreFileBlockEditor.js:263
msgid "File Header"
msgstr ""
#: js/SendFileBlockEditor.js:367
#: js/StoreFileBlockEditor.js:264
msgid "Add header describing file properties"
msgstr ""
#: js/SendFileBlockEditor.js:367
#: js/StoreFileBlockEditor.js:264
msgid "Only the original file contents are stored"
msgstr ""
#: js/SendFileBlockEditor.js:372
#: js/SendMessageBlockEditor.js:391
msgid "Read Confirmation"
msgstr ""
#: js/SendFileBlockEditor.js:373
msgid "Send file with read confirmation"
msgstr ""
#: js/SendFileBlockEditor.js:373
#: js/SendMessageBlockEditor.js:392
msgid "No read confirmation requested"
msgstr ""
#: js/SendFileBlockEditor.js:379
#: js/StoreFileBlockEditor.js:270
msgid "Encrypt file contents before storing them"
msgstr ""
#: js/SendFileBlockEditor.js:379
#: js/StoreFileBlockEditor.js:270
msgid "Store file contents as they are"
msgstr ""
#: js/StoreMessageBlock.js:164
msgid "No message to be stored"
msgstr ""
#: js/MessageHistoryBlock.js:512
#: js/MessageInboxBlock.js:519
msgid "No messages"
msgstr ""
#: js/MessageHistoryBlock.js:908
#: js/MessageInboxBlock.js:908
msgid "true"
msgstr ""
#: js/MessageHistoryBlock.js:908
#: js/MessageInboxBlock.js:908
msgid "false"
msgstr ""
#: js/SendFileBlock.js:312
msgid "No file selected to be sent"
msgstr ""
#: js/SendFileBlock.js:321
#: js/SendMessageBlock.js:174
msgid "No target device product unique ID"
msgstr ""
#: js/SendFileBlock.js:321
#: js/SendMessageBlock.js:174
msgid "No target device ID"
msgstr ""
#: js/SendFileBlock.js:427
msgid "Empty file; nothing to send"
msgstr ""
#: js/SendFileBlock.js:444
#: js/StoreFileBlock.js:431
msgid "Error reading file: "
msgstr ""
#: js/SendFileBlock.js:449
#: js/StoreFileBlock.js:436
msgid "Reading of file has been aborted"
msgstr ""
#: js/StoreFileBlock.js:311
msgid "No file selected to be stored"
msgstr ""
#: js/StoreFileBlock.js:414
msgid "Empty file; nothing to store"
msgstr ""
#: js/SendMessageBlockEditor.js:17
#: js/SendMessageBlockEditor.js:27
msgid "Send Message"
msgstr ""
#: js/SendMessageBlockEditor.js:18
msgid ""
"Message successfully sent.\n"
"Message Id: {!messageId}"
msgstr ""
#: js/SendMessageBlockEditor.js:28
msgid "Store a text message onto the Bitcoin blockchain addressing it to another Catenis virtual device"
msgstr ""
#: js/SendMessageBlockEditor.js:322
msgid "Show animated icon while sending message"
msgstr ""
#: js/SendMessageBlockEditor.js:392
msgid "Send message with read confirmation"
msgstr ""
#: js/StoreFileBlockEditor.js:12
#: js/StoreFileBlockEditor.js:21
msgid "Store File"
msgstr ""
#: js/StoreFileBlockEditor.js:13
msgid ""
"File successfully stored.\n"
"Message Id: {!messageId}"
msgstr ""
#: js/StoreFileBlockEditor.js:22
msgid "Store a file onto the Bitcoin blockchain"
msgstr ""
#: js/StoreFileBlockEditor.js:204
msgid "Show animated icon while storing file"
msgstr ""
#: js/SendMessageBlock.js:165
msgid "No message to be sent"
msgstr ""
#: js/MessageHistoryBlockEditor.js:28
msgid "Message History"
msgstr ""
#: js/MessageHistoryBlockEditor.js:29
msgid "Display list with latest stored/sent messages"
msgstr ""
#: js/MessageHistoryBlockEditor.js:377
msgid "Message Type"
msgstr ""
#: js/MessageHistoryBlockEditor.js:466
#: js/MessageHistoryBlockEditor.js:490
msgid "End Date"
msgstr ""
#: js/MessageHistoryBlockEditor.js:534
#: js/MessageHistoryBlockEditor.js:704
#: js/MessageHistoryBlockEditor.js:977
msgid "Type"
msgstr ""
#: js/MessageHistoryBlockEditor.js:546
#: js/MessageHistoryBlockEditor.js:770
#: js/MessageHistoryBlockEditor.js:1033
msgid "To"
msgstr ""
#: js/MessageHistoryBlockEditor.js:582
msgid "Target Device ID ('To' Column)"
msgstr ""
#: js/DisplayMessageBlockEditor.js:19
msgid "Display Message"
msgstr ""
#: js/DisplayMessageBlockEditor.js:20
msgid "Display a text message retrieved from the Bitcoin blockchain"
msgstr ""
#: js/DisplayMessageBlockEditor.js:174
msgid "Strip File Header"
msgstr ""
#: js/DisplayMessageBlockEditor.js:175
msgid "Do not display file header if present"
msgstr ""
#: js/DisplayMessageBlockEditor.js:175
msgid "Display message as it is"
msgstr ""
#: js/DisplayMessageBlockEditor.js:180
msgid "Limit Message"
msgstr ""
#: js/DisplayMessageBlockEditor.js:181
msgid "Truncate message if it is too large"
msgstr ""
#: js/DisplayMessageBlockEditor.js:181
msgid "Always display the whole message"
msgstr ""
#: js/DisplayMessageBlockEditor.js:188
msgid "Max Message Length"
msgstr ""
#: js/DisplayMessageBlockEditor.js:189
msgid "Maximum number of characters that can be displayed"
msgstr ""
#: js/DisplayMessageBlockEditor.js:237
msgid "Sample retrieved message"
msgstr ""

View File

@@ -0,0 +1,423 @@
# Copyright (C) 2019 ReeverWeb - Andrea Carapellucci
# This file is distributed under the same license as the Easy Static Maps plugin.
msgid ""
msgstr ""
"Project-Id-Version: Easy Static Maps 1.0\n"
"Report-Msgid-Bugs-To: supporto@reeverweb.it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2019-06-05T01:34:32+02:00\n"
"PO-Revision-Date: 2019-08-28 21:20+0200\n"
"X-Generator: Poedit 2.2.3\n"
"X-Domain: easy-static-maps\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: it\n"
"Last-Translator: \n"
"Language-Team: \n"
#. Plugin Name of the plugin
#: easy-static-maps.php:48
msgid "Easy Static Maps"
msgstr ""
#. Description of the plugin
msgid "Easily adds STATIC MAPS to a WP website. Choose between different versions of Google / OpenStreetMap / Bing maps, set map parameters and map markers."
msgstr "Aggiunge facilmente mappe statiche ad un sito WP. Scegli tra diverse versioni di mappe di Google / OpenStreetMap / Bing, imposta i parametri e i marker della mappa."
#. Author of the plugin
msgid "ReeverWeb"
msgstr ""
#. Author URI of the plugin
msgid "https://reeverweb.it/"
msgstr ""
#: easy-static-maps.php:36
msgid "NOTICE"
msgstr "AVVISO"
#: easy-static-maps.php:37
msgid "Easy Static Maps has been successfully installed and activated. <strong>Easy Static Maps is now present on your WordPress menu. First go to the plugin settings page and follow the instructions to enter the API keys of the web map services you want to use"
msgstr "Easy Static Maps è stato installato e attivato con successo. <strong>Easy Static Maps è ora presente nel tuo menù di WordPress. Per prima cosa vai nella pagina dei settaggi del plugin e segui le istruzioni per inserire le chiavi API dei servizi di mappe web che vuoi usare"
#: easy-static-maps.php:49
msgid "Map"
msgstr "Mappa"
#: easy-static-maps.php:50
msgid "Add a map"
msgstr "Aggiungi una mappa"
#: easy-static-maps.php:51
msgid "Add a new map"
msgstr "Aggiungi una nuova mappa"
#: easy-static-maps.php:52
msgid "New map"
msgstr "Nuova mappa"
#: easy-static-maps.php:53
msgid "Edit map"
msgstr "Modifica la mappa"
#: easy-static-maps.php:54
msgid "Show map"
msgstr "Vedi mappa"
#: easy-static-maps.php:55
msgid "All maps"
msgstr "Tutte le mappe"
#: easy-static-maps.php:56
msgid "Search maps"
msgstr "Cerca le mappe"
#: easy-static-maps.php:57
msgid "No map found"
msgstr "Nessuna mappa trovata"
#: easy-static-maps.php:58
msgid "No map found in trash"
msgstr "Nessuna mappa trovata nel cestino"
#: easy-static-maps.php:76
msgid "Plugin license key"
msgstr "Chiave di licenza del plugin"
#: easy-static-maps.php:77
msgid "General settings"
msgstr "Impostazioni generali"
#: easy-static-maps.php:78
msgid "Google Maps API key"
msgstr "Chiave API di Google Maps"
#: easy-static-maps.php:79
msgid "OpenStreetMap - Mapquest API key"
msgstr "Chiave API di OpenStreetMap - Mapquest"
#: easy-static-maps.php:80
msgid "Bing Maps API key"
msgstr "Chiave API di Bing Maps"
#: easy-static-maps.php:84
msgid "The basic version does not require a license key. The basic version does not include custom marker icons, adding lines, paths, circles, colored areas and customizing the map background.<br>To purchase the Pro or Ultimate version"
msgstr "La versione basic non richiede una chiave di licenza. La versione basic non include le icone personalizzate per i marker, l'aggiunta di linee, percorsi, cerchi, aree colorate e la personalizzazione dello sfondo della mappa.<br>Per acquistare la versione Pro o Ultimate"
#: easy-static-maps.php:87
msgid "API keys (something similar to a user identification code) are now required by most web map services. Obtain API keys from the web map services you want to use and paste them in these fields to make your maps work"
msgstr "Le chiavi API (qualcosa di simile ad un codice di identificazione utente) sono ora richieste dalla maggior parte dei servizi di mappe web. Incollale in questi campi per far funzionare le tue mappe"
#: easy-static-maps.php:91
msgid "To get a Google Maps API key"
msgstr "Per ottenere una chiave API di Google Maps"
#: easy-static-maps.php:95
msgid "To get an OpenStreetMap - Mapquest API key"
msgstr "Per ottenere una chiave API di OpenStreetMap - Mapquest"
#: easy-static-maps.php:99
msgid "To get a Bing Maps API key"
msgstr "Per ottenere una chiave API di Bing Maps"
#: easy-static-maps.php:103
msgid "Easy Static Maps settings"
msgstr "Impostazioni di Easy Static Maps"
#: easy-static-maps.php:115
msgid "ESM settings"
msgstr "Impostazioni di ESM"
#: easy-static-maps.php:130
msgid "Use this place to center the map. You can indicate a precise street address or just a city or a village. Alternatively, enter the geographical coordinates (latitude and longitude) of the center of the map. Be careful: Bing Maps uses textual address of the map center to automatically set the zoom level (to be able to manually set the zoom level with Bing Maps, write only the latitude and longitude of the center of the map). <strong>To get the coordinates</strong> (latitude and longitude) from a street address you can consult a website like"
msgstr "Usa questo luogo come centro della mappa. Puoi indicare un indirizzo stradale preciso o solo una città o un paese. In alternativa inserisci le coordinate geografiche (latitudine e longitudine) del centro della mappa. Fai attenzione: Bing Maps utilizza l'indirizzo testuale del centro della mappa per settare automaticamente il livello di zoom (per settare manualmente il livello di zoom con Bing Maps inserisci solo la latitudine e longitudine del centro della mappa). <strong>Per ottenere le coordinate</strong> (latitudine e longitudine) da un indirizzo stradale puoi consultare un sito web come"
#: easy-static-maps.php:130 easy-static-maps.php:270
msgid "or open Google Maps in your browser and click on a point on the map to know its geographical coordinates"
msgstr "oppure puoi aprire Google Maps nel tuo browser e cliccare su un punto della mappa per conoscere le sue coordinate geografiche"
#: easy-static-maps.php:133
msgid "Center position"
msgstr "Posizione del centro della mappa"
#: easy-static-maps.php:136 easy-static-maps.php:305
msgid "Country"
msgstr "Paese"
#: easy-static-maps.php:140 easy-static-maps.php:309
msgid "State / Region"
msgstr "Stato / Regione"
#: easy-static-maps.php:143
msgid "For countries with federal government (such as USA or Germany) write in the second field the state (e.g. Florida). Otherwise, write the region"
msgstr "Per i paesi con governo federale (come gli USA o la Germania) scrivi nel secondo campo lo stato (ad es. Florida). Altrimenti scrivi la regione"
#: easy-static-maps.php:145 easy-static-maps.php:313
msgid "City / Village"
msgstr "Città / Borgo"
#: easy-static-maps.php:149 easy-static-maps.php:317
msgid "Street address"
msgstr "Indirizzo stradale"
#: easy-static-maps.php:154 easy-static-maps.php:322
msgid "OR"
msgstr "OPPURE"
#: easy-static-maps.php:159 easy-static-maps.php:327
msgid "Latitude"
msgstr "Latitudine"
#: easy-static-maps.php:163 easy-static-maps.php:332 easy-static-maps.php:409
msgid "E.g."
msgstr "Ad es."
#: easy-static-maps.php:163 easy-static-maps.php:331
msgid "Longitude"
msgstr "Longitudine"
#: easy-static-maps.php:183
msgid "Map service"
msgstr "Servizio di mappe"
#: easy-static-maps.php:191
msgid "Map type"
msgstr "Tipo di mappa"
#: easy-static-maps.php:193
msgid "Roadmap"
msgstr "Mappa stradale"
#: easy-static-maps.php:194
msgid "Satellite"
msgstr "Immagini satellitari"
#: easy-static-maps.php:195
msgid "Hybrid"
msgstr "Ibrida"
#: easy-static-maps.php:196
msgid "Physical (Google Maps only)"
msgstr "Mappa fisica (solo Google Maps)"
#: easy-static-maps.php:197
msgid "Light (OpenStreetMap - Mapquest and Bing Maps only)"
msgstr "Light (solo OpenStreetMap - Mapquest e Bing Maps)"
#: easy-static-maps.php:198
msgid "Dark (OpenStreetMap - Mapquest and Bing Maps only)"
msgstr "Dark (solo OpenStreetMap - Mapquest e Bing Maps)"
#: easy-static-maps.php:202
msgid "Map zoom level"
msgstr "Livello di zoom della mappa"
#: easy-static-maps.php:229
msgid "In Bing Maps the zoom level is only available if the latitude and longitude of the map center are specified"
msgstr "Per Bing Maps il livello di zoom è disponibile solo se sono specificati la latitudine e la longitudine del centro della mappa"
#: easy-static-maps.php:233
msgid "Map size"
msgstr "Dimensioni della mappa"
#: easy-static-maps.php:235
msgid "Width"
msgstr "Larghezza"
#: easy-static-maps.php:235
msgid "Height"
msgstr "Altezza"
#: easy-static-maps.php:235
msgid "Default size (in pixels) of the map"
msgstr "Dimensioni predefinite (in pixel) della mappa"
#: easy-static-maps.php:235
msgid "Google Maps max map size (not Premium Plan): 640x640"
msgstr "Dimensioni massime della mappa di Google Maps (tranne i piani premium): 640x640"
#: easy-static-maps.php:235
msgid "OpenStreetMap - Mapquest max map size: 1920x1920"
msgstr "Dimensioni massime della mappa di OpenStreetMap - Mapquest: 1920x1920"
#: easy-static-maps.php:235
msgid "Bing Maps max map size: 2000x1500"
msgstr "Dimensioni massime della mappa di Bing Maps: 2000x1500"
#: easy-static-maps.php:239
msgid "Image format"
msgstr "Formato dell'immagine"
#: easy-static-maps.php:241 easy-static-maps.php:345
msgid "Google Maps only"
msgstr "solo Google Maps"
#: easy-static-maps.php:242
msgid "high quality, larger file size"
msgstr "alta qualità, dimensioni del file più grande"
#: easy-static-maps.php:243
msgid "medium quality"
msgstr "media qualità"
#: easy-static-maps.php:244
msgid "compressed, smaller file size"
msgstr "compresso, dimensioni del file più piccole"
#: easy-static-maps.php:248
msgid "Image quality"
msgstr "Qualità dell'immagine"
#: easy-static-maps.php:250
msgid "Low quality (smaller file size)"
msgstr "Bassa qualità (dimensioni del file più piccole)"
#: easy-static-maps.php:251
msgid "High quality (larger file size)"
msgstr "Alta qualità (dimensione del file più grande)"
#: easy-static-maps.php:270
msgid "Optional. Markers (map pushpins) are useful to highlight the position of a specific place on the map. You can indicate a precise street address or just a city or a village. Alternatively, enter the geographical coordinates of the place where you want the marker to be placed. Be careful: Bing Maps only accepts latitude and longitude (any textual address will be ignored). <strong>To get the coordinates</strong> (latitude and longitude) from a street address you can consult a website like"
msgstr "Opzionale. I marker (puntine della mappa) sono utili per evidenziare la posizione di un luogo specifico sulla mappa. Puoi indicare un indirizzo preciso o solo una città o un villaggio. In alternativa inserisci le coordinate geografiche del luogo in cui desideri posizionare il marker. Fai attenzione: Bing Maps accetta solo latitudine e longitudine (qualsiasi indirizzo testuale verrà ignorato). <strong>Per ottenere le coordinate</strong> (latitudine e longitudine) da un indirizzo stradale puoi consultare un sito web come"
#: easy-static-maps.php:270
msgid "You can add <strong>custom marker icons</strong> (such as your business logo) to the map using the Pro and Ultimate version of this plugin"
msgstr "Puoi aggiungere nella mappa <strong>marker con icone personalizzate</strong> (come il logo della tua attività) utilizzando la versione Pro e Ultimate di questo plugin"
#: easy-static-maps.php:273
msgid "Number of map markers"
msgstr "Numero di marker"
#: easy-static-maps.php:295
msgid "Maximum number of markers that can be added"
msgstr "Massimo numero di marker che si possono aggiungere"
#: easy-static-maps.php:299 easy-static-maps.php:453
msgid "Map marker"
msgstr "Marker"
#: easy-static-maps.php:302
msgid "Marker position"
msgstr "Posizione del marker"
#: easy-static-maps.php:337
msgid "Default marker icon"
msgstr "Icona di default del marker"
#: easy-static-maps.php:340
msgid "Marker color"
msgstr "Colore del marker"
#: easy-static-maps.php:341
msgid "Google Maps and OpenStreetMap - Mapquest only"
msgstr "solo Google Maps e OpenStreetMap - Mapquest"
#: easy-static-maps.php:344
msgid "Marker size"
msgstr "Dimensioni del marker"
#: easy-static-maps.php:345
msgid "Tiny"
msgstr "Minuscolo"
#: easy-static-maps.php:346
msgid "Small"
msgstr "Piccolo"
#: easy-static-maps.php:347
msgid "Mid"
msgstr "Medio"
#: easy-static-maps.php:348
msgid "Normal"
msgstr "Normale"
#: easy-static-maps.php:351
msgid "Marker label"
msgstr "Etichetta del marker"
#: easy-static-maps.php:352
msgid "Optional. A single character to be shown inside the marker (only Bing Maps accepts up to 3 characters). Letters will be capitalized (not in Bing Maps)"
msgstr "Un singolo carattere da mostrare all'interno del marcatore (solo Bing Maps accetta fino a 3 caratteri). Le lettere saranno trasformate in maiuscolo (non in Bing Maps)"
#: easy-static-maps.php:369
msgid "Sometimes you have to wait a few seconds for elaboration. If you are not able to view the map preview, verify that you have correctly filled in the fields on this page or check your API keys on the settings page"
msgstr "A volte devi aspettare qualche secondo per l'elaborazione dell'anteprima. Se non riesci a visualizzare l'anteprima della mappa verifica di aver compilato correttamente i campi in questa pagina o controlla le chiavi API nella pagina delle impostazioni"
#: easy-static-maps.php:403 easy-static-maps.php:408
msgid "copy to clipboard"
msgstr "copia negli appunti"
#: easy-static-maps.php:404
msgid "Copy this shortcode and paste it into the WordPress editor of the post / page where you want the map to be displayed"
msgstr "Copia questo shortcode e incollalo nell'editor di WordPress del post/pagina in cui desideri visualizzare la mappa"
#: easy-static-maps.php:405
msgid "Manual use"
msgstr "Utilizzo manuale"
#: easy-static-maps.php:406
msgid "Generated map link"
msgstr "Link della mappa elaborato"
#: easy-static-maps.php:409
msgid "Inside a HTML document use this link as value for SRC attribute of IMG tag"
msgstr "All'interno di un documento HTML utilizza questo link come valore per l'attributo SRC del tag IMG"
#: easy-static-maps.php:410
msgid "Save the preview"
msgstr "Salva l'anteprima"
#: easy-static-maps.php:411
msgid "If you are not interested in having a constantly updated map (changes in the roads, borders, more recent satellite images, etc.) you can save on your computer the preview of the map on this page and upload the image file to the WordPress media library. Then use it in your posts as a normal image"
msgstr "Se non ti interessa avere una mappa costantemente aggiornata (cambiamenti nelle strade, confini, foto satellitari più recenti, ecc.) puoi salvare sul tuo computer l'anteprima della mappa su questa pagina e caricare il file immagine nella media library di WordPress. Poi puoi usarla nei tuoi post come una normale immagine"
#: easy-static-maps.php:416 easy-static-maps.php:421 easy-static-maps.php:426
#: easy-static-maps.php:431
msgid "This additional feature is available only in the <a href=\"https://reeverweb.it/easy-static-maps/\" target=\"_blank\">Pro and Ultimate version</a> of this plugin"
msgstr "Questa funzione aggiuntiva è disponibile solo per le <a href=\"https://reeverweb.it/easy-static-maps/\" target=\"_blank\">versioni Pro e Ultimate</a> di questo plugin"
#: easy-static-maps.php:437
msgid "Map center"
msgstr "Centro della mappa"
#: easy-static-maps.php:445
msgid "Map settings"
msgstr "Impostazioni della mappa"
#: easy-static-maps.php:453
msgid "Map markers"
msgstr "Marker della mappa"
#: easy-static-maps.php:461
msgid "Map preview"
msgstr "Anteprima mappa"
#: easy-static-maps.php:469
msgid "To use this map"
msgstr "Per utilizzare questa mappa"
#: easy-static-maps.php:477
msgid "Add a line / calculated route"
msgstr "Aggiungi una linea / percorso calcolato"
#: easy-static-maps.php:485
msgid "Add a colored area"
msgstr "Aggiungi un'area colorata"
#: easy-static-maps.php:493
msgid "Add a circle"
msgstr "Aggiungi un cerchio"
#: easy-static-maps.php:501
msgid "Custom map styles"
msgstr "Personalizza l'aspetto della mappa"
#: easy-static-maps-pro.php:412
msgid "Map link copied in clipboard. Paste it in a SRC attribute of an IMG tag"
msgstr "Link della mappa copiato negli appunti. Incollalo in un attributo SRC di un tag IMG"
#: easy-static-maps-pro.php:412
msgid "Shortcode copied in clipboard. Paste it into the WordPress editor of the post / page where you want the map to be displayed"
msgstr "Shortcode copiato negli appunti. Incollalo nell'editor di WordPress del post / della pagina in cui desideri visualizzare la mappa"

View File

@@ -0,0 +1,306 @@
msgid ""
msgstr ""
"Project-Id-Version: Frontend Google Analytics 1.0.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-13 20:15+0100\n"
"PO-Revision-Date: 2019-09-13 20:16+0100\n"
"Last-Translator: \n"
"Language-Team: AyeCode Ltd <contact@ayecode.io>\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;__ngettext:1,2;__ngettext_noop:1,2;_c;_e;_ex:1,2c;"
"_n:1,2;_n_noop:1,2;_nc:4c,1,2;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;esc_attr__;"
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;gettext;"
"gettext_noop\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 1.8.7.1\n"
"X-Poedit-SearchPath-0: .\n"
#: includes/admin/settings/class-frontend-analytics-settings.php:95
msgid "Google analytics Auth Code"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:96
msgid "You must save this setting before accounts will show."
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:113
msgid "Analytics Account"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:114
msgid "Select the account that you setup for this site."
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:122
msgid "Add tracking code to site?"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:123
msgid "This will automatically add the correct tracking code to your site"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:129
msgid "Anonymize user IP?"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:130
msgid ""
"In most cases this is not required, this is to comply with certain country "
"laws such as Germany."
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:138
msgid "Auto refresh active users every"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:139
msgid ""
"Time interval in seconds to auto refresh active users. The active users will "
"be auto refreshed after this time interval. Leave blank or use 0(zero) to "
"disable auto refresh. Default: 5"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:179
msgid "Select Account"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:182
msgid "Account re-authorization may be required"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:318
msgid "Deauthorize"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:319
msgid "Authorized"
msgstr ""
#: includes/admin/settings/class-frontend-analytics-settings.php:323
msgid "Get Auth Code"
msgstr ""
#: includes/class-frontend-analytics-ajax.php:127
msgid "Something went wrong"
msgstr ""
#: includes/functions.php:97 includes/functions.php:104
msgid "Please check Google Analytics Settings"
msgstr ""
#: includes/functions.php:134
msgid ""
"Not authorized, please click authorized in GD > Google analytic settings."
msgstr ""
#: includes/functions.php:152
msgid "Login failed"
msgstr ""
#: includes/functions.php:375
msgid "No results available"
msgstr ""
#: includes/functions.php:405
msgid "Jan"
msgstr ""
#: includes/functions.php:406
msgid "Feb"
msgstr ""
#: includes/functions.php:407
msgid "Mar"
msgstr ""
#: includes/functions.php:408
msgid "Apr"
msgstr ""
#: includes/functions.php:409
msgid "May"
msgstr ""
#: includes/functions.php:410
msgid "Jun"
msgstr ""
#: includes/functions.php:411
msgid "Jul"
msgstr ""
#: includes/functions.php:412
msgid "Aug"
msgstr ""
#: includes/functions.php:413
msgid "Sep"
msgstr ""
#: includes/functions.php:414
msgid "Oct"
msgstr ""
#: includes/functions.php:415
msgid "Nov"
msgstr ""
#: includes/functions.php:416
msgid "Dec"
msgstr ""
#: includes/functions.php:429
msgid "Last Year"
msgstr ""
#: includes/functions.php:435
msgid "This Year"
msgstr ""
#: includes/functions.php:484
msgid "Mon"
msgstr ""
#: includes/functions.php:485
msgid "Tue"
msgstr ""
#: includes/functions.php:486
msgid "Wed"
msgstr ""
#: includes/functions.php:487
msgid "Thu"
msgstr ""
#: includes/functions.php:488
msgid "Fri"
msgstr ""
#: includes/functions.php:489
msgid "Sat"
msgstr ""
#: includes/functions.php:490
msgid "Sun"
msgstr ""
#: includes/functions.php:507
msgid "This Week"
msgstr ""
#: includes/functions.php:515
msgid "Last Week"
msgstr ""
#: includes/functions.php:631
#: includes/widgets/class-frontend-analytics-widget-analytics.php:59
msgid "Show Google Analytics"
msgstr ""
#: includes/functions.php:633
msgid "Analytics"
msgstr ""
#: includes/functions.php:635
msgid "Refresh"
msgstr ""
#: includes/functions.php:635
msgid "Active Users:"
msgstr ""
#: includes/functions.php:640
msgid "Last Week vs This Week"
msgstr ""
#: includes/functions.php:641
msgid "This Year vs Last Year"
msgstr ""
#: includes/functions.php:642
msgid "Top Countries"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:33
msgid "Frontend Analytics Button Placeholder"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:40
msgid "Frontend Analytics"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:43
msgid "Show google analytics stats on your website front page."
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:48
msgid "Title:"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:49
msgid "The widget title:"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:56
msgid "Button text:"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:57
msgid "The text to use for the button to show the analytics:"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:65
msgid "Google Analytics visible to:"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:66
msgid "Google Analytics will be visible to selected users only."
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:69
msgid "Administrator"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:70
msgid "Author or profile owner."
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:71
msgid "Everyone logged in"
msgstr ""
#: includes/widgets/class-frontend-analytics-widget-analytics.php:72
msgid "Everyone"
msgstr ""
#: vendor/ayecode/wp-super-duper/wp-super-duper.php:140
msgid "Select shortcode"
msgstr ""
#: vendor/ayecode/wp-super-duper/wp-super-duper.php:159
msgid "Insert shortcode"
msgstr ""
#: vendor/ayecode/wp-super-duper/wp-super-duper.php:162
msgid "Copy shortcode"
msgstr ""
#: vendor/ayecode/wp-super-duper/wp-super-duper.php:361
#: vendor/ayecode/wp-super-duper/wp-super-duper.php:981
msgid "Advanced Settings"
msgstr ""
#: vendor/ayecode/wp-super-duper/wp-super-duper.php:1229
#, php-format
msgid "Placeholder for: %s"
msgstr ""
#: vendor/ayecode/wp-super-duper/wp-super-duper.php:1514
msgid "Placeholder for: "
msgstr ""

View File

@@ -0,0 +1,8 @@
# Changelog
All notable changes to the plugin will be documented in this file.
## 1.0.0 - 2019-08-24
### Initial release
## 1.0.1 - 2019-09-20
### Fixed typos and descriptions

View File

@@ -0,0 +1,424 @@
# Copyright (C) 2019 FTF.agency
# This file is distributed under the same license as the Linkbuildr plugin.
msgid ""
msgstr ""
"Project-Id-Version: Linkbuildr 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linkbuildr\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-08-19T18:27:35+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.3.0\n"
"X-Domain: linkbuildr\n"
#. Plugin Name of the plugin
#: classes/class-linkbuildr-settings.php:250
#: classes/class-linkbuildr-settings.php:254
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:250
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:254
#: dist/linkbuildr/views/admin-notice.php:3
#: views/admin-notice.php:3
msgid "Linkbuildr"
msgstr ""
#. Plugin URI of the plugin
msgid "https://ftf.agency/tools/linkbuildr/"
msgstr ""
#. Description of the plugin
msgid "Automated content promotion. Share your content with the people who care the most, automatically."
msgstr ""
#. Author of the plugin
msgid "FTF.agency"
msgstr ""
#. Author URI of the plugin
msgid "https://ftf.agency/"
msgstr ""
#: classes/class-linkbuildr-email-templates-table.php:110
#: classes/class-linkbuildr-site-contacts-table.php:117
#: dist/linkbuildr/classes/class-linkbuildr-email-templates-table.php:110
#: dist/linkbuildr/classes/class-linkbuildr-site-contacts-table.php:117
msgid "Edit"
msgstr ""
#: classes/class-linkbuildr-email-templates-table.php:111
#: classes/class-linkbuildr-site-contacts-table.php:118
#: dist/linkbuildr/classes/class-linkbuildr-email-templates-table.php:111
#: dist/linkbuildr/classes/class-linkbuildr-site-contacts-table.php:118
msgid "Delete"
msgstr ""
#: classes/class-linkbuildr-email-templates-table.php:142
#: dist/linkbuildr/classes/class-linkbuildr-email-templates-table.php:142
msgid "Template Name"
msgstr ""
#: classes/class-linkbuildr-email-templates-table.php:143
#: dist/linkbuildr/classes/class-linkbuildr-email-templates-table.php:143
msgid "Sender"
msgstr ""
#: classes/class-linkbuildr-email-templates-table.php:144
#: dist/linkbuildr/classes/class-linkbuildr-email-templates-table.php:144
msgid "Subject"
msgstr ""
#: classes/class-linkbuildr-email-templates-table.php:145
#: dist/linkbuildr/classes/class-linkbuildr-email-templates-table.php:145
msgid "Content"
msgstr ""
#: classes/class-linkbuildr-email-templates-table.php:146
#: dist/linkbuildr/classes/class-linkbuildr-email-templates-table.php:146
msgid "Tweet"
msgstr ""
#: classes/class-linkbuildr-settings.php:250
#: classes/class-linkbuildr-settings.php:251
#: classes/class-linkbuildr-settings.php:254
#: classes/class-linkbuildr-settings.php:255
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:250
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:251
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:254
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:255
msgid "Dashboard"
msgstr ""
#: classes/class-linkbuildr-settings.php:252
#: classes/class-linkbuildr-settings.php:256
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:252
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:256
#: dist/linkbuildr/views/linkbuildr-dashboard.php:8
#: dist/linkbuildr/views/site-contacts-list.php:6
#: views/linkbuildr-dashboard.php:8
#: views/site-contacts-list.php:6
msgid "Site Contacts"
msgstr ""
#: classes/class-linkbuildr-settings.php:258
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:258
msgid "New Site Contact"
msgstr ""
#: classes/class-linkbuildr-settings.php:259
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:259
#: dist/linkbuildr/views/email-templates-list.php:7
#: dist/linkbuildr/views/linkbuildr-dashboard.php:18
#: views/email-templates-list.php:7
#: views/linkbuildr-dashboard.php:18
msgid "Email Templates"
msgstr ""
#: classes/class-linkbuildr-settings.php:260
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:260
msgid "New Email Template"
msgstr ""
#. translators: %d: count of Site Contacts Deleted.
#: classes/class-linkbuildr-settings.php:295
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:295
msgid "Site Contacts deleted: %d"
msgstr ""
#. translators: %d: count of Email Templates Deleted.
#: classes/class-linkbuildr-settings.php:313
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:313
msgid "Email Templates deleted: %d"
msgstr ""
#. translators: %d: count of Site Contacts Deleted, %s add 's' if plural.
#: classes/class-linkbuildr-settings.php:372
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:372
msgid "%1$d Site Contact%2$s deleted."
msgstr ""
#. translators: %s: The Domain (aka - Name/Url) of the Site Contact saved.
#. translators: %s: The name of the Email Template saved.
#: classes/class-linkbuildr-settings.php:443
#: classes/class-linkbuildr-settings.php:686
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:443
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:686
msgid "%s was successfully saved"
msgstr ""
#: classes/class-linkbuildr-settings.php:445
#: classes/class-linkbuildr-settings.php:688
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:445
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:688
msgid "There was an error while saving item"
msgstr ""
#. translators: %s: The Domain (aka - Name/Url) of the Site Contact updated.
#. translators: %s: The name of the Email Template updated.
#: classes/class-linkbuildr-settings.php:451
#: classes/class-linkbuildr-settings.php:694
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:451
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:694
msgid "%s was successfully updated"
msgstr ""
#: classes/class-linkbuildr-settings.php:453
#: classes/class-linkbuildr-settings.php:696
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:453
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:696
msgid "There was an error while updating item"
msgstr ""
#: classes/class-linkbuildr-settings.php:487
#: classes/class-linkbuildr-settings.php:712
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:487
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:712
msgid "Item not found"
msgstr ""
#: classes/class-linkbuildr-settings.php:568
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:568
msgid "Domain is required"
msgstr ""
#: classes/class-linkbuildr-settings.php:571
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:571
msgid "Site Name is required"
msgstr ""
#: classes/class-linkbuildr-settings.php:574
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:574
msgid "First Name is required"
msgstr ""
#: classes/class-linkbuildr-settings.php:577
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:577
msgid "Email is required"
msgstr ""
#: classes/class-linkbuildr-settings.php:580
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:580
msgid "Message Template is required"
msgstr ""
#. translators: %d: count of Email Templates Deleted, %s add 's' if plural.
#: classes/class-linkbuildr-settings.php:626
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:626
msgid "%1$d Email Template%2$s deleted."
msgstr ""
#: classes/class-linkbuildr-settings.php:758
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:758
msgid "Template Name is required"
msgstr ""
#: classes/class-linkbuildr-settings.php:761
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:761
msgid "Subject is required"
msgstr ""
#: classes/class-linkbuildr-settings.php:764
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:764
msgid "Content is required"
msgstr ""
#: classes/class-linkbuildr-settings.php:767
#: dist/linkbuildr/classes/class-linkbuildr-settings.php:767
msgid "Tweet is required"
msgstr ""
#: classes/class-linkbuildr-site-contacts-table.php:149
#: dist/linkbuildr/classes/class-linkbuildr-site-contacts-table.php:149
#: dist/linkbuildr/views/site-contact-form-meta-box.php:14
#: views/site-contact-form-meta-box.php:14
msgid "Domain"
msgstr ""
#: classes/class-linkbuildr-site-contacts-table.php:150
#: dist/linkbuildr/classes/class-linkbuildr-site-contacts-table.php:150
#: dist/linkbuildr/views/site-contact-form-meta-box.php:26
#: views/site-contact-form-meta-box.php:26
msgid "Site Name"
msgstr ""
#: classes/class-linkbuildr-site-contacts-table.php:151
#: dist/linkbuildr/classes/class-linkbuildr-site-contacts-table.php:151
msgid "First Name"
msgstr ""
#: classes/class-linkbuildr-site-contacts-table.php:152
#: dist/linkbuildr/classes/class-linkbuildr-site-contacts-table.php:152
#: dist/linkbuildr/views/site-contact-form-meta-box.php:40
#: views/site-contact-form-meta-box.php:40
msgid "Email"
msgstr ""
#: classes/class-linkbuildr-site-contacts-table.php:153
#: dist/linkbuildr/classes/class-linkbuildr-site-contacts-table.php:153
msgid "Email Template"
msgstr ""
#. translators: %1$d: count of urls/domains needing contact info. %2$s: adds an 's' for plural if needed.
#: dist/linkbuildr/views/admin-notice.php:6
#: views/admin-notice.php:6
msgid "found %1$d website%2$s in your post that need contact details added:"
msgstr ""
#: dist/linkbuildr/views/admin-notice.php:8
#: views/admin-notice.php:8
msgid "Add Details"
msgstr ""
#: dist/linkbuildr/views/classic-editor-submit-misc-actions.php:5
#: views/classic-editor-submit-misc-actions.php:5
msgid "Click"
msgstr ""
#: dist/linkbuildr/views/classic-editor-submit-misc-actions.php:5
#: views/classic-editor-submit-misc-actions.php:5
msgid "Save Draft"
msgstr ""
#: dist/linkbuildr/views/classic-editor-submit-misc-actions.php:5
#: views/classic-editor-submit-misc-actions.php:5
msgid "above to find new links before publishing"
msgstr ""
#: dist/linkbuildr/views/classic-editor-submit-misc-actions.php:6
#: views/classic-editor-submit-misc-actions.php:6
msgid "Send Linkbuildr Emails on Publish"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:6
#: views/email-template-form-meta-box.php:6
msgid "Email Template Name"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:14
#: views/email-template-form-meta-box.php:14
msgid "Sender Email"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:15
#: views/email-template-form-meta-box.php:15
msgid "Optional: Defaults to Post Author if left blank"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:23
#: views/email-template-form-meta-box.php:23
msgid "Email Subject"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:31
#: dist/linkbuildr/views/site-contact-form-meta-box.php:52
#: views/email-template-form-meta-box.php:31
#: views/site-contact-form-meta-box.php:52
msgid "Message Template"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:32
#: dist/linkbuildr/views/email-template-form-meta-box.php:41
#: views/email-template-form-meta-box.php:32
#: views/email-template-form-meta-box.php:41
msgid "Shortcodes:[posturl], [contactname], [contactsitename], [author]"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:40
#: views/email-template-form-meta-box.php:40
msgid "Tweet Template"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:41
#: views/email-template-form-meta-box.php:41
msgid "Maximum of <strong>266 characters</strong> including shortcode values"
msgstr ""
#: dist/linkbuildr/views/email-template-form-meta-box.php:46
#: dist/linkbuildr/views/site-contact-form-meta-box.php:57
#: views/email-template-form-meta-box.php:46
#: views/site-contact-form-meta-box.php:57
msgid "Save"
msgstr ""
#. translators: %s: Edit or New before 'Email Template' depending on context.
#: dist/linkbuildr/views/email-template-form.php:8
#: views/email-template-form.php:8
msgid "%s Email Template"
msgstr ""
#: dist/linkbuildr/views/email-template-form.php:11
#: dist/linkbuildr/views/site-contact-form.php:13
#: views/email-template-form.php:11
#: views/site-contact-form.php:13
msgid "Return to List"
msgstr ""
#: dist/linkbuildr/views/email-templates-list.php:9
#: dist/linkbuildr/views/site-contacts-list.php:8
#: views/email-templates-list.php:9
#: views/site-contacts-list.php:8
msgid "Add new"
msgstr ""
#: dist/linkbuildr/views/requirements-error.php:2
#: views/requirements-error.php:2
msgid "error: Your environment doesn't meet all of the system requirements listed below."
msgstr ""
#. translators: %d: the version of PHP required.
#: dist/linkbuildr/views/requirements-error.php:9
#: views/requirements-error.php:9
msgid "PHP %d+"
msgstr ""
#. translators: %d: the version of PHP currently installed.
#. translators: %d: the version of WordPress currently in use.
#: dist/linkbuildr/views/requirements-error.php:15
#: dist/linkbuildr/views/requirements-error.php:30
#: views/requirements-error.php:15
#: views/requirements-error.php:30
msgid "(You're running version %d)"
msgstr ""
#. translators: %d: the version of WordPress required.
#: dist/linkbuildr/views/requirements-error.php:24
#: views/requirements-error.php:24
msgid "WordPress %d+"
msgstr ""
#: dist/linkbuildr/views/requirements-error.php:36
#: views/requirements-error.php:36
msgid "If you need to upgrade your version of PHP you can ask your hosting company for assistance, and if you need help upgrading WordPress you can refer to "
msgstr ""
#: dist/linkbuildr/views/requirements-error.php:36
#: views/requirements-error.php:36
msgid "the Codex"
msgstr ""
#: dist/linkbuildr/views/site-contact-form-meta-box.php:17
#: views/site-contact-form-meta-box.php:17
msgid "Use full root domain path including http://"
msgstr ""
#: dist/linkbuildr/views/site-contact-form-meta-box.php:32
#: views/site-contact-form-meta-box.php:32
msgid "Contact Name"
msgstr ""
#: dist/linkbuildr/views/site-contact-form.php:7
#: views/site-contact-form.php:7
msgid "New Site Contacts"
msgstr ""
#. translators: %s: Edit or New before 'Site Contact' depending on context.
#: dist/linkbuildr/views/site-contact-form.php:11
#: views/site-contact-form.php:11
msgid "%s Site Contact"
msgstr ""
#: dist/linkbuildr/views/site-contact-form.php:99
#: views/site-contact-form.php:99
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,6 @@
= 1.0.4 - 2019-09-20 =
* Fixes: Property setings.
* Added: Search form: Collapse advanced.
= 1.0.0 - 2019-09-03 =
* Release.

View File

@@ -0,0 +1,23 @@
{
"name": "wordpress-accessibility-plugin",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:start-jobs/wordpress-accessibility-plugin.git",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"devDependencies": {
"resolve": "^1.12.0",
"rollup": "^1.20.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"@babel/core": "^7.6.0"
},
"dependencies": {
"vanilla-picker": "^2.9.2"
}
}

View File

@@ -133,6 +133,10 @@
<link rel="stylesheet" id="admin_abcsubmit_css-css" href="http://wp.lab/wp-content/plugins/abcsubmit//assets/css/admin.css?ver=1.1.0" type="text/css" media="all">
<!-- about-author-box -->
<link rel="stylesheet" id="about-author-box-css-css" href="http://wp.lab/wp-content/plugins/about-author-box/css/about-author-box.css?ver=1.0.0" type="text/css" media="all">
<!-- academic-bloggers-toolkit -->
<link rel="stylesheet" id="abt-css-css" href="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/css/frontend.css?ver=4.11.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/js/frontend.js?ver=4.11.3"></script>
@@ -461,6 +465,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-product-wishlist-for-woo/public/js/advanced-product-wishlist-for-woocomerce-public.js?ver=1.0.0"></script>
<!-- advanced-sermons -->
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8" type="text/css" media="all">
<!-- advanced-spoiler -->
<link rel="stylesheet" id="adv-spoiler-css" href="http://wp.lab/wp-content/plugins/advanced-spoiler/css/advanced-spoiler.css?ver=2.02" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-spoiler/js/jquery-spoiler.js?ver=2.02"></script>
@@ -1019,6 +1027,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/audioigniter/player/build/app.js?ver=1.4.1"></script>
<!-- aurora-heatmap -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aurora-heatmap/js/reporter.js?ver=1.0.0"></script>
<!-- ausmed-document-button -->
<link rel="stylesheet" id="ausmed-document-button-css" href="http://wp.lab/wp-content/plugins/ausmed-document-button/public/css/ausmed-document-button-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ausmed-document-button/public/js/ausmed-document-button-public.js?ver=1.0.0"></script>
@@ -1090,6 +1102,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/autoship-cloud/js/schedule-options.js?ver=1.0.10"></script>
<!-- availability-calendar -->
<link rel="stylesheet" id="owac-styles-css" href="http://wp.lab/wp-content/plugins/availability-calendar/public/css/styles.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="owac-slider-css" href="http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="owac-theme-css" href="http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac-theme.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/availability-calendar/public/js/owac.js?ver=1.0"></script>
<!-- awasete-yomitai-for-wordpress -->
<link rel="stylesheet" id="awasete-yomitai-css" href="http://wp.lab/wp-content/plugins/awasete-yomitai-for-wordpress/awasete-yomitai.css?ver=1.1.1" type="text/css" media="all">
@@ -1227,6 +1246,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/b2i-investor-tools/js/export.js?ver=0.7.2"></script>
<!-- ba-plus-before-after-image-slider-free -->
<link rel="stylesheet" id="s201-bai-css" href="http://wp.lab/wp-content/plugins/ba-plus-before-after-image-slider-free/css/ba-plus.min.css?ver=1.0.0" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ba-plus-before-after-image-slider-free/js/ba-plus.min.js?ver=1.0.0"></script>
<!-- back-to-top-advanced -->
<link rel="stylesheet" id="back-to-top-advanced-style-css" href="http://wp.lab/wp-content/plugins/back-to-top-advanced/classes/../assets/style.css?ver=1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/back-to-top-advanced/classes/../assets/script.js?ver=1.1"></script>
@@ -2113,6 +2137,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/frontend.js?ver=1.0.3"></script>
<!-- bwl-advanced-faq-manager-lite -->
<link rel="stylesheet" id="bwl-advanced-faq-theme-css" href="http://wp.lab/wp-content/plugins/bwl-advanced-faq-manager-lite/css/faq-style.css?ver=1.0.0" type="text/css" media="all">
<!-- bwp-external-links -->
<link rel="stylesheet" id="bwp-ext-css" href="http://wp.lab/wp-content/plugins/bwp-external-links/css/bwp-external-links.css?ver=1.1.3" type="text/css" media="all">
@@ -2232,6 +2260,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/car-rental/js/owl.carousel.js?ver=1.0.6"></script>
<!-- card-for-bilibili -->
<link rel="stylesheet" id="card-for-bilibili-css-css" href="http://wp.lab/wp-content/plugins/card-for-bilibili/card-for-bilibili.css?v=1.3&ver=1.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/card-for-bilibili/card-for-bilibili.js?v=1.3&ver=1.3"></script>
<!-- cardojo-lite -->
<link rel="stylesheet" id="plugins-css" href="http://wp.lab/wp-content/plugins/cardojo-lite/assets/css/plugins.css?ver=1.0.2" type="text/css" media="all">
<link rel="stylesheet" id="cardojo_public_css-css" href="http://wp.lab/wp-content/plugins/cardojo-lite/assets/css/cardojo-public.css?ver=1.0.2" type="text/css" media="all">
@@ -2757,6 +2790,11 @@
<link rel="stylesheet" id="cm-idin-css" href="http://wp.lab/wp-content/plugins/cm-idin/css/style.min.css?ver=1.0.1" type="text/css" media="all">
<!-- cn-custom-tabs -->
<link rel="stylesheet" id="cn-custom-woo-tabs-css" href="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/css/cn-custom-woo-tabs-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/js/cn-custom-woo-tabs-public.js?ver=1.0.0"></script>
<!-- cnhk-slideshow -->
<link rel="stylesheet" id="cnhk-css-css" href="http://wp.lab/wp-content/plugins/cnhk-slideshow/public/assets/css/cnhk-slider.css?ver=3.1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cnhk-slideshow/lib/jssor/jssor.slider.mini.js?ver=3.1.1"></script>
@@ -2913,6 +2951,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-lightbox/slimbox-2.04/js/slimbox2.js?ver=1.0"></script>
<!-- conditional-popup-creator -->
<link rel="stylesheet" id="jBox-styles-css" href="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/css/jBox.all.min.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="popmodal-styles-css" href="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/css/main.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/jBox.all.min.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0"></script>
<!-- connect-daily-web-calendar -->
<link rel="stylesheet" id="cdaily-style-css" href="http://wp.lab/wp-content/plugins/connect-daily-web-calendar/cdaily.css?ver=1.3.8" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/connect-daily-web-calendar/cdaily-plugin.js?ver=1.3.8"></script>
@@ -3026,6 +3071,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/content-views-query-and-display-post-page/public/assets/js/cv.js?ver=1.9.9.5"></script>
<!-- continue-shopping-anywhere-for-woocommerce -->
<link rel="stylesheet" id="continue-shopping-anywhere-css" href="http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/css/continue-shopping-anywhere-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/js/continue-shopping-anywhere-public.js?ver=1.0.0"></script>
<!-- contributer -->
<link rel="stylesheet" id="contributer_login-css" href="http://wp.lab/wp-content/plugins/contributer//assets/css/main.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contributer//assets/js/login.js?ver=1.0"></script>
@@ -4773,6 +4823,11 @@
<link rel="stylesheet" id="freelancer_share_icons-css" href="http://wp.lab/wp-content/plugins/freelancer-sharing-icons/public/css/freelancer_share_icons-public.css?ver=1.0.0" type="text/css" media="all">
<!-- frequency -->
<link rel="stylesheet" id="frequency-css" href="http://wp.lab/wp-content/plugins/frequency/public/css/frequency-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/frequency/public/js/frequency-public.js?ver=1.0.0"></script>
<!-- fresh-podcaster -->
<link rel="stylesheet" id="fresh-podcaster-css" href="http://wp.lab/wp-content/plugins/fresh-podcaster/public/css/fresh-podcaster-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fresh-podcaster/public/js/fresh-podcaster-public.js?ver=1.0.0"></script>
@@ -4809,6 +4864,10 @@
<link rel="stylesheet" id="frontierpost-css" href="http://wp.lab/wp-content/plugins/frontier-post/frontier-post.css?ver=4.4.1" type="text/css" media="all">
<!-- fullscreen-ajax-loader -->
<link rel="stylesheet" id="fs-ajax-loader-css" href="http://wp.lab/wp-content/plugins/fullscreen-ajax-loader/assets/css/fs-ajax-loader.css?ver=1.0" type="text/css" media="all">
<!-- fullscreen-galleria -->
<link rel="stylesheet" id="galleria-fs-css" href="http://wp.lab/wp-content/plugins/fullscreen-galleria/galleria-fs-b.css?ver=1.6.4" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fullscreen-galleria/galleria-fs.js?ver=1.6.4"></script>
@@ -6813,6 +6872,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/link-widget-title/public/js/link-widget-title-public.js?ver=1.0.0"></script>
<!-- linkgreen-product-import -->
<link rel="stylesheet" id="linkgreen-product-import-css" href="http://wp.lab/wp-content/plugins/linkgreen-product-import/public/css/linkgreen-product-import-public.css?ver=1.0.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/linkgreen-product-import/public/js/linkgreen-product-import-public.js?ver=1.0.5"></script>
<!-- linkpaper -->
<link rel="stylesheet" id="linkpaper-style-css" href="http://wp.lab/wp-content/plugins/linkpaper/css/lp-style.css?ver=1.0.0" type="text/css" media="all">
@@ -7614,6 +7678,10 @@
<link rel="stylesheet" id="wp-igsp-public-css-css" href="http://wp.lab/wp-content/plugins/meta-slider-and-carousel-with-lightbox/assets/css/wp-igsp-public.css?ver=1.1.2" type="text/css" media="all">
<!-- metomic-for-cookies -->
<link rel="stylesheet" id="metomic-css" href="http://wp.lab/wp-content/plugins/metomic-for-cookies/public/css/metomic-public.css?ver=1.0.0" type="text/css" media="all">
<!-- metro-share-social-fonts -->
<link rel="stylesheet" id="metroshare-social-fonts-css" href="http://wp.lab/wp-content/plugins/metro-share-social-fonts/css/social.min.css?ver=0.2.1" type="text/css" media="all">
@@ -8413,6 +8481,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/loving-memorials-frontend.js?ver=1.0.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/payment.js?ver=1.0.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/datatables.min.js?ver=1.0.1"></script>
<link rel="stylesheet" id="loving-memorials-css" href="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/loving-memorials-public.min.css?ver=1.0.1" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/bootstrap.min.css?ver=1.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/loving-memorials-public.min.js?ver=1.0.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/loving-memorials-frontend.min.js?ver=1.0.1"></script>
<!-- oc-newsletter -->
@@ -8764,6 +8836,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/partner-manager/public/js/partner-manager-public.js?ver=1.0.0"></script>
<!-- password-protect-page -->
<link rel="stylesheet" id="ppw-cookie-css-css" href="http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.css?ver=1.2.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.bundle.js?ver=1.2.1"></script>
<!-- past-events-extension -->
<link rel="stylesheet" id="past-events-extension-css" href="http://wp.lab/wp-content/plugins/past-events-extension/public/css/past-events-extension-public.css?ver=1.0.1" type="text/css" media="all">
@@ -10466,6 +10543,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.1.5"></script>
<!-- save-as-image-by-pdfcrowd -->
<link rel="stylesheet" id="save-as-image-pdfcrowd-css" href="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-public.js?ver=1.0.0"></script>
<!-- save-as-pdf-by-pdfcrowd -->
<link rel="stylesheet" id="save-as-pdf-pdfcrowd-css" href="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/css/save-as-pdf-pdfcrowd-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-public.js?ver=1.0.0"></script>
@@ -11555,6 +11637,10 @@
<link rel="stylesheet" id="social-mentions-css" href="http://wp.lab/wp-content/plugins/social-mentions/css/front-end.css?ver=1.0.3" type="text/css" media="all">
<!-- social-menu -->
<link rel="stylesheet" id="social-menu-css" href="http://wp.lab/wp-content/plugins/social-menu/style.css?ver=0.1.0" type="text/css" media="all">
<!-- social-nation-itsme-login -->
<link rel="stylesheet" id="social-nation-itsme-login-css" href="http://wp.lab/wp-content/plugins/social-nation-itsme-login/assets/css/social-nation-itsme-login.css?ver=1.0.8" type="text/css" media="all">
@@ -12071,6 +12157,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swfput/evhh5v/front.min.js?ver=3.0.8"></script>
<!-- swiftninjapro-better-scroll-bar -->
<link rel="stylesheet" id="SwiftNinjaProBetterScrollBarStyle-css" href="http://wp.lab/wp-content/plugins/swiftninjapro-better-scroll-bar/assets/style.css?ver=1.0" type="text/css" media="all">
<!-- swim-it-up-tabela-de-recordes -->
<link rel="stylesheet" id="swimitup-recordes-css" href="http://wp.lab/wp-content/plugins/swim-it-up-tabela-de-recordes/public/css/swimitup-recordes-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swim-it-up-tabela-de-recordes/public/js/swimitup-recordes-public.js?ver=1.0.0"></script>
@@ -12245,6 +12335,15 @@
<link type="text/css" href="http://wp.lab/wp-content/plugins/teachpress/styles/teachpress_front.css?ver=6.2.1" rel="stylesheet">
<!-- team-master -->
<link rel="stylesheet" id="team-master-css" href="http://wp.lab/wp-content/plugins/team-master/public/css/team-master-public.css?ver=1.0.3" type="text/css" media="all">
<link rel="stylesheet" id="team-masterbootstrap-css-css" href="http://wp.lab/wp-content/plugins/team-master/public/css/bootstrap.min.css?ver=1.0.3" type="text/css" media="all">
<link rel="stylesheet" id="team-masterfont-awesome-css-css" href="http://wp.lab/wp-content/plugins/team-master/public/css/font-awesome.min.css?ver=1.0.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-master/public/js/popper.min.js?ver=1.0.3"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-master/public/js/bootstrap.min.js?ver=1.0.3"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-master/public/js/team-master-public.js?ver=1.0.3"></script>
<!-- team-ultimate -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-ultimate/public/js/team-ultimate-public.js?ver=1.0.0"></script>
@@ -12484,6 +12583,11 @@
<link rel="stylesheet" id="timeline-twitter-feed-frontend-css" href="http://wp.lab/wp-content/plugins/timeline-twitter-feed/res/css/timeline-twitter-feed-frontend.css?ver=1.3" type="text/css" media="all">
<!-- timezone-conversion-widget -->
<link rel="stylesheet" id="tzc-select2-css-css" href="http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/css/select2.min.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/js/select2.min.js?ver=1.0"></script>
<!-- tiny-bar -->
<link rel="stylesheet" id="hmtb_front_style-css" href="http://wp.lab/wp-content/plugins/tiny-bar/front/style/hmtb_style.css?ver=1.0" type="text/css" media="">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tiny-bar/front/js/hmtb_script.js?ver=1.0"></script>
@@ -12775,6 +12879,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ucat-next-story/assets/js/frontend.min.js?ver=1.1.1"></script>
<!-- uhrzeit -->
<link rel="stylesheet" id="uhrzeit-css" href="http://wp.lab/wp-content/plugins/uhrzeit/public/css/uhrzeit-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/uhrzeit/public/js/uhrzeit-public.js?ver=1.0.0"></script>
<!-- uix-page-builder -->
<link rel="stylesheet" id="uix-page-builder-css" href="http://wp.lab/wp-content/plugins/uix-page-builder/uixpb_templates/css/uix-page-builder.min.css?ver=1.4.9" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/uix-page-builder/uixpb_templates/js/uix-page-builder.min.js?ver=1.4.9"></script>
@@ -13088,6 +13197,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/unique-hover-slider-plus/assets/js/script.js?ver=1.1.2"></script>
<!-- unitizr -->
<link rel="stylesheet" id="unitizr-public-css" href="http://wp.lab/wp-content/plugins/unitizr/lib/unitizr-public-style.css?ver=1.0.2" type="text/css" media="">
<!-- units -->
<link rel="stylesheet" id="unit-switcher-css" href="http://wp.lab/wp-content/plugins/units/assets/css/unit-switcher.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/units/assets/js/unit-switcher.min.js?ver=1.0.2"></script>
@@ -14084,6 +14197,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-coupon-url/public/js/woo-coupon-url-public.js?ver=1.0.0"></script>
<!-- woo-delivery -->
<link rel="stylesheet" id="flatpickr_css-css" href="http://wp.lab/wp-content/plugins/woo-delivery/public/css/flatpickr.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="coderockz-woo-delivery-css" href="http://wp.lab/wp-content/plugins/woo-delivery/public/css/coderockz-woo-delivery-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-delivery/public/js/flatpickr.min.js?ver=1.0.0"></script>
<!-- woo-delivery-scheduler -->
<link rel="stylesheet" id="woocommerce-delivery-scheduler-css" href="http://wp.lab/wp-content/plugins/woo-delivery-scheduler/public/css/woocommerce-delivery-scheduler-public.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="pikaday-css" href="http://wp.lab/wp-content/plugins/woo-delivery-scheduler/public/css/pikaday.css?ver=1.0.0" type="text/css" media="all">
@@ -15004,6 +15123,11 @@
<link rel="stylesheet" id="wpfcas_slick_style-css" href="http://wp.lab/wp-content/plugins/wp-featured-content-and-slider/assets/css/slick.css?ver=1.2.7" type="text/css" media="all">
<!-- wp-featured-news-custom-posts-listing-elements -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-featured-news-custom-posts-listing-elements/modules/js/theme.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-featured-news-custom-posts-listing-elements/modules/js/popper.min.js?ver=1.0.0"></script>
<!-- wp-file-search -->
<link rel="stylesheet" id="wp-file-search-css" href="http://wp.lab/wp-content/plugins/wp-file-search/public/css/wp-file-search-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-file-search/public/js/wp-file-search-public.js?ver=1.0.0"></script>
@@ -15962,6 +16086,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-soavis/public/js/wp-soavis-public.js?ver=1.2.0"></script>
<!-- wp-social-connect -->
<link rel="stylesheet" id="wpsoccon-css" href="http://wp.lab/wp-content/plugins/wp-social-connect/assets/css/wpsoccon-frontend.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-social-connect/assets/js/wpsoccon-frontend.js?ver=1.0.0"></script>
<!-- wp-social-invitations -->
<link rel="stylesheet" id="wsi-css" href="http://wp.lab/wp-content/plugins/wp-social-invitations/public/assets/css/wsi-public.css?ver=2.1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-social-invitations/public/assets/js/wsi-public.js?ver=2.1.1"></script>
@@ -16484,6 +16613,10 @@
<link rel="stylesheet" id="wpm-email-css" href="http://wp.lab/wp-content/plugins/wpm-email/public/css/wpm-email-public.css?ver=1.0.0" type="text/css" media="all">
<!-- wpmarathi -->
<link rel="stylesheet" id="wpmarathi-frontend-css" href="http://wp.lab/wp-content/plugins/wpmarathi//assets/css/wpmarathi-frontend.css?ver=1.0.0" type="text/css" media="all">
<!-- wpmbytplayer -->
<link rel="stylesheet" id="mb.YTPlayer_css-css" href="http://wp.lab/wp-content/plugins/wpmbytplayer/css/mb.YTPlayer.css?ver=3.1.7" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmbytplayer/js/jquery.mb.YTPlayer.js?ver=3.1.7"></script>
@@ -16919,6 +17052,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zigaform-calculator-cost-estimation-form-builder-lite/assets/frontend/js/iframe/4.1.1/iframeResizer.min.js?ver=3.9.9.6.8"></script>
<!-- zim-airtime -->
<link rel="stylesheet" id="techzim-airtime-css" href="http://wp.lab/wp-content/plugins/zim-airtime/public/css/techzim-airtime-public201909070020.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zim-airtime/public/js/techzim-airtime-public201909111050.js?ver=1.0.0"></script>
<!-- ziyarat-ashura -->
<link rel="stylesheet" id="za_css-css" href="http://wp.lab/wp-content/plugins/ziyarat-ashura/css/style.css?ver=1.0.0" type="text/css" media="">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ziyarat-ashura/js/za-js.js?ver=1.0.0"></script>

View File

@@ -0,0 +1,580 @@
# Copyright (C) 2019 SEO Toolkit
# This file is distributed under the same license as the SEO Toolkit plugin.
msgid ""
msgstr ""
"Project-Id-Version: SEO Toolkit 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/seo-toolkit\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2019-09-20T12:41:06-05:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.3.0\n"
"X-Domain: seo-toolkit\n"
#. Plugin Name of the plugin
#. Author of the plugin
#: src/Admin/Admin.php:137
msgid "SEO Toolkit"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/seo-toolkit"
msgstr ""
#. Description of the plugin
msgid "SEO Toolkit is a smart plugin that assists you to optimize your website for purposes of SEO easily."
msgstr ""
#. Author URI of the plugin
msgid "https://www.seo-toolkit.page/"
msgstr ""
#: src/Admin/Admin.php:115
msgid "Settings"
msgstr ""
#: src/Admin/Admin.php:136
#: src/Admin/Settings/General.php:199
msgid "General Settings"
msgstr ""
#: src/Admin/Admin.php:158
msgid "Social Media Settings"
msgstr ""
#: src/Admin/Admin.php:159
#: src/Admin/Settings/SocialMedia.php:125
msgid "Social Media"
msgstr ""
#: src/Admin/Admin.php:178
msgid "XML Sitemaps Settings"
msgstr ""
#: src/Admin/Admin.php:179
#: src/Admin/Settings/Sitemaps.php:107
msgid "XML Sitemaps"
msgstr ""
#: src/Admin/Admin.php:198
#: src/Admin/Admin.php:199
#: src/Admin/Settings/Editor.php:64
msgid "Editor"
msgstr ""
#: src/Admin/Admin.php:211
msgctxt "settings screen"
msgid "General"
msgstr ""
#: src/Admin/Posts.php:62
msgid "Search Engine Optimization"
msgstr ""
#: src/Admin/Posts.php:80
#: src/Admin/Settings/Sitemaps.php:168
msgid "General"
msgstr ""
#: src/Admin/Posts.php:111
#: src/Admin/Settings/General.php:263
#: src/Admin/Taxonomies.php:90
msgid "Document title"
msgstr ""
#: src/Admin/Posts.php:117
#: src/Admin/Settings/General.php:267
#: src/Admin/Settings/Options/Description.php:145
#: src/Admin/Settings/SocialMedia.php:243
#: src/Admin/Settings/SocialMedia.php:306
#: src/Admin/Taxonomies.php:100
msgid "Description"
msgstr ""
#: src/Admin/Posts.php:123
#: src/Admin/Taxonomies.php:113
msgid "Robots"
msgstr ""
#: src/Admin/Posts.php:135
msgid "Do not show a \"Cached\" link in search results."
msgstr ""
#: src/Admin/Posts.php:143
msgid "Do not show a snippet in the search results for this post."
msgstr ""
#: src/Admin/Posts.php:151
msgid "Do not index images on this post."
msgstr ""
#: src/Admin/Posts.php:249
#: src/Admin/Settings/SocialMedia.php:353
msgctxt "wp.media"
msgid "Facebook"
msgstr ""
#: src/Admin/Posts.php:250
#: src/Admin/Settings/SocialMedia.php:354
msgctxt "wp.media"
msgid "Twitter"
msgstr ""
#: src/Admin/Posts.php:251
#: src/Admin/Settings/General.php:637
#: src/Admin/Settings/SocialMedia.php:355
msgctxt "wp.media"
msgid "Choose Image"
msgstr ""
#: src/Admin/Posts/Facebook.php:62
#: src/Loader.php:149
msgid "Facebook"
msgstr ""
#: src/Admin/Posts/Facebook.php:83
msgid "Facebook Title"
msgstr ""
#: src/Admin/Posts/Facebook.php:89
msgid "Facebook Description"
msgstr ""
#: src/Admin/Posts/Facebook.php:95
msgid "Facebook Image"
msgstr ""
#: src/Admin/Posts/Facebook.php:97
#: src/Admin/Posts/Twitter.php:113
#: src/Admin/Settings/General.php:493
#: src/Admin/Settings/General.php:510
#: src/Admin/Settings/SocialMedia.php:252
#: src/Admin/Settings/SocialMedia.php:316
msgid "Upload Image"
msgstr ""
#: src/Admin/Posts/Facebook.php:99
#: src/Admin/Settings/SocialMedia.php:254
msgid "Use images that are at least 1080 pixels in width for best display on high resolution devices. At the minimum, you should use images that are 600 pixels."
msgstr ""
#: src/Admin/Posts/Twitter.php:62
#: src/Loader.php:150
msgid "Twitter"
msgstr ""
#: src/Admin/Posts/Twitter.php:83
#: src/Admin/Settings/SocialMedia.php:187
#: src/Admin/Settings/SocialMedia.php:276
msgid "Twitter Cards"
msgstr ""
#: src/Admin/Posts/Twitter.php:86
#: src/Admin/Settings/General.php:345
#: src/Admin/Settings/Options/Description.php:139
#: src/Admin/Settings/Options/Title.php:128
msgid "Default"
msgstr ""
#: src/Admin/Posts/Twitter.php:89
#: src/Admin/Settings/SocialMedia.php:279
msgid "Summary Card"
msgstr ""
#: src/Admin/Posts/Twitter.php:92
#: src/Admin/Settings/SocialMedia.php:282
msgid "Summary Card with Large Image"
msgstr ""
#: src/Admin/Posts/Twitter.php:99
msgid "Twitter Title"
msgstr ""
#: src/Admin/Posts/Twitter.php:105
msgid "Twitter Description"
msgstr ""
#: src/Admin/Posts/Twitter.php:111
msgid "Twitter Image"
msgstr ""
#: src/Admin/Posts/Twitter.php:115
#: src/Admin/Settings/SocialMedia.php:318
msgid "URL of image to use in the card. Images must be less than 5MB in size. JPG, PNG, WEBP and GIF formats are supported."
msgstr ""
#: src/Admin/Request.php:66
msgid "Security error has occurred."
msgstr ""
#: src/Admin/Request.php:66
msgid "Error"
msgstr ""
#: src/Admin/Settings/Editor.php:108
msgid "Edit robots.txt file"
msgstr ""
#: src/Admin/Settings/Editor.php:111
#: src/Admin/Settings/General.php:251
#: src/Admin/Settings/Sitemaps.php:156
#: src/Admin/Settings/SocialMedia.php:171
msgid "Information"
msgstr ""
#: src/Admin/Settings/Editor.php:127
msgid "The robots.txt file does not exist. The file will be created when you save the changes."
msgstr ""
#: src/Admin/Settings/Editor.php:134
msgid "The robots.txt file has been saved."
msgstr ""
#: src/Admin/Settings/General.php:242
msgid "Title and Meta tags"
msgstr ""
#: src/Admin/Settings/General.php:245
msgid "Website Profile"
msgstr ""
#: src/Admin/Settings/General.php:248
msgid "Webmasters"
msgstr ""
#: src/Admin/Settings/General.php:271
msgid "Crawling and Indexing"
msgstr ""
#: src/Admin/Settings/General.php:312
#: src/Admin/Settings/Options/Description.php:142
#: src/Admin/Settings/Options/Title.php:131
msgid "Separator"
msgstr ""
#: src/Admin/Settings/General.php:316
msgid "Special signs can be entered as HTML. Example: <code>&amp;raquo;</code> becomes <code>»</code>."
msgstr ""
#: src/Admin/Settings/General.php:374
msgid "Paginated pages"
msgstr ""
#: src/Admin/Settings/General.php:386
msgid "Implementation"
msgstr ""
#: src/Admin/Settings/General.php:389
msgid "Do not implement the values <code>index</code> and <code>index, follow</code>."
msgstr ""
#: src/Admin/Settings/General.php:395
msgid "Protect RSS Feeds"
msgstr ""
#: src/Admin/Settings/General.php:398
msgid "Prevent indexing of RSS Feeds by search engines."
msgstr ""
#: src/Admin/Settings/General.php:432
#: src/Admin/Settings/SocialMedia.php:290
msgid "Profile"
msgstr ""
#: src/Admin/Settings/General.php:438
msgid "Select the website profile"
msgstr ""
#: src/Admin/Settings/General.php:439
msgid "Person"
msgstr ""
#: src/Admin/Settings/General.php:440
msgid "Organization"
msgstr ""
#: src/Admin/Settings/General.php:463
msgid "Website"
msgstr ""
#: src/Admin/Settings/General.php:477
msgid "Name"
msgstr ""
#: src/Admin/Settings/General.php:490
msgid "Picture"
msgstr ""
#: src/Admin/Settings/General.php:500
msgid "Organization Name"
msgstr ""
#: src/Admin/Settings/General.php:507
msgid "Organization Logo"
msgstr ""
#: src/Admin/Settings/General.php:566
msgid "Google"
msgstr ""
#: src/Admin/Settings/General.php:569
msgid "Get your code in <a href=\"https://search.google.com/search-console/welcome\" target=\"_blank\">Google Search Console</a>."
msgstr ""
#: src/Admin/Settings/General.php:574
msgid "Bing"
msgstr ""
#: src/Admin/Settings/General.php:577
msgid "Get your code in <a href=\"https://www.bing.com/toolbox/webmaster\" target=\"_blank\">Bing Webmaster Tools</a>."
msgstr ""
#: src/Admin/Settings/General.php:582
msgid "Yandex"
msgstr ""
#: src/Admin/Settings/General.php:585
msgid "Get your code in <a href=\"https://webmaster.yandex.com/welcome/\" target=\"_blank\">Yandex.Webmaster</a>."
msgstr ""
#: src/Admin/Settings/General.php:590
#: src/Loader.php:154
msgid "Pinterest"
msgstr ""
#: src/Admin/Settings/General.php:593
msgid "Get your code in <a href=\"https://help.pinterest.com/en/business/article/claim-your-website\" target=\"_blank\">Business Profile</a>."
msgstr ""
#: src/Admin/Settings/General.php:598
msgid "Baidu"
msgstr ""
#: src/Admin/Settings/General.php:601
msgid "Get your code in <a href=\"https://ziyuan.baidu.com/login/index?u=/site/siteadd\" target=\"_blank\">Baidu Webmaster Tools</a>."
msgstr ""
#: src/Admin/Settings/General.php:635
msgctxt "wp.media"
msgid "Organization Logo"
msgstr ""
#: src/Admin/Settings/General.php:636
msgctxt "wp.media"
msgid "Picture"
msgstr ""
#: src/Admin/Settings/Options/Description.php:140
#: src/Admin/Settings/Options/Title.php:129
msgid "Site title"
msgstr ""
#: src/Admin/Settings/Options/Description.php:141
#: src/Admin/Settings/Options/Title.php:130
msgid "Tagline"
msgstr ""
#: src/Admin/Settings/Options/Description.php:143
#: src/Admin/Settings/Options/Title.php:132
#: src/Admin/Settings/SocialMedia.php:236
#: src/Admin/Settings/SocialMedia.php:298
msgid "Title"
msgstr ""
#: src/Admin/Settings/Options/Description.php:144
msgid "Excerpt"
msgstr ""
#: src/Admin/Settings/Options/Description.php:146
msgid "Biographical info"
msgstr ""
#: src/Admin/Settings/Options/Description.php:147
#: src/Admin/Settings/Options/Title.php:134
#: src/Context.php:97
msgid "Search"
msgstr ""
#: src/Admin/Settings/Options/Description.php:148
#: src/Admin/Settings/Options/Title.php:135
#: src/Context.php:100
msgid "Error 404"
msgstr ""
#: src/Admin/Settings/Options/Description.php:149
msgid "None"
msgstr ""
#: src/Admin/Settings/Options/Title.php:133
msgid "Author"
msgstr ""
#: src/Admin/Settings/Sitemaps.php:150
msgid "Sitemaps"
msgstr ""
#: src/Admin/Settings/Sitemaps.php:153
msgid "Actions"
msgstr ""
#: src/Admin/Settings/Sitemaps.php:191
#: src/Admin/Settings/SocialMedia.php:210
#: src/Admin/Settings/SocialMedia.php:264
msgid "Enable"
msgstr ""
#: src/Admin/Settings/Sitemaps.php:202
msgid "Maximum URLs per sitemap"
msgstr ""
#: src/Admin/Settings/Sitemaps.php:209
msgid "Images publishing"
msgstr ""
#: src/Admin/Settings/Sitemaps.php:213
msgid "Your images can be found in Image Search results."
msgstr ""
#: src/Admin/Settings/Sitemaps.php:252
msgid "View XML Sitemap"
msgstr ""
#: src/Admin/Settings/Sitemaps.php:256
msgid "Send"
msgstr ""
#: src/Admin/Settings/SocialMedia.php:168
msgid "Social Profiles"
msgstr ""
#: src/Admin/Settings/SocialMedia.php:183
msgid "Facebook Open Graph"
msgstr ""
#: src/Admin/Settings/SocialMedia.php:222
msgid "Facebook Admin ID"
msgstr ""
#: src/Admin/Settings/SocialMedia.php:224
msgid "You can enter multiple Facebook Admin IDs by separating them with a comma."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:229
msgid "Facebook App ID"
msgstr ""
#: src/Admin/Settings/SocialMedia.php:231
msgid "In order to use Facebook Insights you must add the app ID to your page. Find the app ID in your <a href=\"https://developers.facebook.com/apps/redirect/dashboard\" target=\"_blank\">App Dashboard</a>."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:238
msgid "A clear title without mentioning the domain itself."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:245
msgid "A brief description of the content, usually between 2 and 4 sentences."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:250
#: src/Admin/Settings/SocialMedia.php:313
msgid "Image URL"
msgstr ""
#: src/Admin/Settings/SocialMedia.php:285
msgid "With Twitter Cards, you can attach photos and videos to Tweets, helping to drive traffic to your website."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:293
msgid "Twitter profile of website (Ex. username or @username)."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:301
msgid "Title of content (max 70 characters)."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:308
msgid "Description of content (maximum 200 characters)."
msgstr ""
#: src/Admin/Settings/SocialMedia.php:352
msgctxt "wp.media"
msgid "Logo"
msgstr ""
#: src/Admin/Taxonomies.php:81
msgid "Advanced"
msgstr ""
#: src/Admin/Taxonomies.php:84
msgid "The following fields are used for SEO purposes."
msgstr ""
#: src/Admin/Taxonomies.php:94
msgid "This title is used to display in the search results."
msgstr ""
#: src/Admin/Taxonomies.php:105
msgid "This description is used to display in the search results."
msgstr ""
#: src/Admin/Taxonomies.php:123
msgid "Control the crawling and indexing."
msgstr ""
#: src/Context.php:53
msgid "Home"
msgstr ""
#: src/Context.php:56
msgid "Blog"
msgstr ""
#. translators: %s: post type label name
#: src/Context.php:86
msgid "%s archive"
msgstr ""
#: src/Context.php:91
msgid "Authors"
msgstr ""
#: src/Context.php:94
msgid "Date"
msgstr ""
#: src/Extensions/WooCommerce.php:72
msgid "Shop page"
msgstr ""
#: src/Extensions/WooCommerce.php:199
msgid "Short product description"
msgstr ""
#: src/Loader.php:151
msgid "Instagram"
msgstr ""
#: src/Loader.php:152
msgid "YouTube"
msgstr ""
#: src/Loader.php:153
msgid "LinkedIn"
msgstr ""
#. translators: %s: page number
#: src/Title.php:115
msgid "Page %s"
msgstr ""
#. translators: %s: search term
#: src/Title.php:191
msgid "Search results for &#8220;%s&#8221;"
msgstr ""
#: src/Title.php:196
msgid "Page not found"
msgstr ""

View File

@@ -0,0 +1,56 @@
# Copyright (C) 2019 Zetamatic
# This file is distributed under the same license as the Show Hide Content for Fusion Builder plugin.
msgid ""
msgstr ""
"Project-Id-Version: Show Hide Content for Fusion Builder 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/show-hide-content-for-fusion-builder\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-09-16T09:09:02+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: show-hide-content-fusion-builder\n"
#. Plugin Name of the plugin
msgid "Show Hide Content for Fusion Builder"
msgstr ""
#. Plugin URI of the plugin
msgid "http://zetamatic.com"
msgstr ""
#. Description of the plugin
msgid "This Plugin generates an extra element for Fusion Builder. It allows you to quickly create a button that shows/hides the content of your website. It helps your website look clean and compact, also allows users to click and see more information if they want. Some advantages of this are: robot defense, confirmation of user intent, page loads faster. It will work for every post, pages and custom post types."
msgstr ""
#. Author of the plugin
msgid "Zetamatic"
msgstr ""
#. Author URI of the plugin
msgid "http://zetamatic.com/shop"
msgstr ""
#: inc/class-show-hide-content.php:86
msgid "More Tag"
msgstr ""
#: inc/class-show-hide-content.php:94
msgid "More Button Text"
msgstr ""
#: inc/class-show-hide-content.php:96
msgid "View More"
msgstr ""
#: inc/class-show-hide-content.php:97
msgid "Add the text that will display on more button."
msgstr ""
#. translators: 1. URL link.
#: show-hide-content-for-fusion-builder.php:54
msgid "Show Hide Content for Fusion Builder plugin requires FusionBuilder to be installed and active. Fusion Builder is the visual drag & drop plugin, free with Avada. You can download %s here."
msgstr ""

View File

@@ -0,0 +1,17 @@
= 1.0.3 =
* Update code based on WordPress.org codding standards
* Fix missing ajax notice when errors happen
* Fix logger not working when enabled
* Fix textdomain loading too late
= 1.0.2 =
* Added check to deactivate the plugin if minimum required versions of WooCommerce and PHP are not met
= 1.0.1 =
* Fix issues with decimals when capturing orders
= 1.0.0 =
* Initial stable release
= 0.9.1 =
* Beta release

View File

@@ -0,0 +1,38 @@
# Changelog
### 1.1
*Release date - 18 September 2019*
#### New Features
* Added some reports for the packages orders.
* Created the reports also for the services booked.
* Closing days can be specified also for some services only.
* Custom fields for the employees now support a visual editor.
#### Improvements
* Packages are automatically redeemed (if any) also from the back-end when creating a reservation.
* Packages are automatically restored after cancelling a reservation from both the sections.
* The packages list in the back-end now displays the number of redeemed appointments per package.
* Added some placeholders for displaying location details within the reminders.
* All the reports can be generated also by number of appointments instead of total amount earned.
* Coupon publishing dates can, optionally, refer to the checkin date or to the current date.
* The number of participants (when higher than 1) is now reported within all the notification e-mails.
* The PayPal form now owns the name and id attributes.
#### Bug Fixes
* Booking restrictions are not applied when creating a reservation as employee.
* The employee name is no more visible within the notification e-mail for customers, in case the employee selection was disabled.
* Fixed the way the system detects the default country code in case of multilingual websites.
* The payments filter within the back-end is no more visible in case there are no payment gateways.
* The parameter used to enable the recurrence for a service is no more visible in case the recurrence is globally turned off.
* Some input values have been escaped to prevent XSS attacks.
### 1.0
*Release date - 10 July 2019*
* First stable release of the VikAppointments plugin for WordPress.

View File

@@ -0,0 +1,265 @@
# Changelog
## 1.2.7
*Release date - 16 September 2019*
- Fixed minor issues related to the Shortcodes handling functions.
## 1.2.6
*Release date - 2 August 2019*
- Minor CSS fixes.
- Various improvements to the framework libraries.
## 1.2.5
*Release date - 26 June 2019*
- Dashboard Ajax navigation between donut charts.
- Screen Options for pagination limit.
- Various improvements to the framework libraries.
## 1.2.4
*Release date - 21 June 2019*
- Minor fix for timezone issue.
## 1.2.3
*Release date - 10 June 2019*
- Libraries improvements.
- Fixed compatibility issues with Site Health checks.
## 1.2.2
*Release date - 29 May 2019*
- Minor fixes for default section language.
- Fixed issue with certain editor IDs.
## 1.2.1
*Release date - 28 May 2019*
- Minor fix for new MVC structure.
## 1.2.0
*Release date - 23 May 2019*
- Major release of the new core framework.
- New front-end gallery.
- Custom festivities.
- Tens of improvements.
## 1.1.7
*Release date - 17 April 2019*
- Fixed minor core issues.
## 1.1.6
*Release date - 14 February 2019*
- Fixed an issue that could cause multiple email messages to be sent repeatedly.
## 1.1.5
*Release date - 5 February 2019*
- Added filters to Shortcodes page.
- Enhanced router for multilingual pages.
## 1.1.4
*Release date - 4 February 2019*
- Shortcodes now support language tags.
- Adjusted some routing rules.
## 1.1.3
*Release date - 22 January 2019*
- Fixed a possible issue with the Shortcodes on Windows OS.
- Added support to resolve Timezone conflicts.
## 1.1.2
*Release date - 8 January 2019*
- Main language auto-detect.
- Minor fixes for the Widgets framework.
## 1.1.1
*Release date - 31 December 2018*
- Rates Overview can show multiple Pricing Calendar for several rooms.
- Generation of custom invoices for different services.
## 1.1.0
*Release date - 20 December 2018*
- Major release of the new core framework.
## 1.0.18
*Release date - 26 November 2018*
- Room details shortcodes can be used for generic routing.
- Datepicker improvements.
## 1.0.17
*Release date - 16 November 2018*
- Added support for the new Gutenberg editor and WordPress 5.0.
- Improved Shortcodes stability while updating a post.
## 1.0.16
*Release date - 9 November 2018*
- Improved Shortcodes generation for params with multiple values.
## 1.0.15
*Release date - 31 October 2018*
- Fixed minor issue for parameters with multiple values in Shortcodes.
## 1.0.14
*Release date - 29 October 2018*
- Added support for several new currencies in the converter.
- New type of Shortcode called "Booking" to rewrite the URLs of the booking details pages.
- Various improvements to routing functions and framework
## 1.0.13
*Release date - 26 September 2018*
- Added support for all Timezones.
- Improved responsiveness for date picker calendars.
- Minor core and application fixes.
## 1.0.12
*Release date - 7 September 2018*
- Minor core and application fixes for front-end and back-end.
## 1.0.11
*Release date - 16 July 2018*
- Shortcodes models can now be accessed also via front-end.
## 1.0.10
*Release date - 18 June 2018*
- Improved hooks for Shortcodes usage in posts during drafts saving.
## 1.0.9
*Release date - 4 June 2018*
- Minor backward compatibility fixes for PHP <= 5.4.
## 1.0.8
*Release date - 16 may 2018*
- Shortcodes processing for third party plugins in descriptions.
- Overrides functions for layout files of pages and widgets.
## 1.0.7
*Release date - 14 may 2018*
- Automatic mirroring backup of uploaded or generated files (photos, invoices, docs).
## 1.0.6
*Release date - 8 May 2018*
- Added support for Multisite network.
## 1.0.5
*Release date - 27 April 2018*
- Payment framework extendable with dedicated plugins.
## 1.0.4
*Release date - 24 April 2018*
- Automated backup and restore functions for uploaded files (photos, images, logos).
- Improvements for upgrading to the Pro version.
## 1.0.3
*Release date - 23 April 2018*
- Minor core fixes.
## 1.0.2
*Release date - 20 April 2018*
- Unified language files for Widgets, Front-end and Back-end for easier translation.
## 1.0.1
*Release date - 17 April 2018*
- Template files and custom CSS files are no longer overridden during updates.
- SEO optimizations for custom page titles and metas in front-end.
## 1.0
*Release date - 10 April 2018*
- First stable release of the Vik Booking Framework for WordPress.

View File

@@ -0,0 +1,118 @@
# Copyright (C) 2019 WooCommerce PDF Invoice Maker
# This file is distributed under the same license as the WooCommerce PDF Invoice Maker package.
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce PDF Invoice Maker 1.0.0\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
"Project-Id-Version: whpdf\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language-Team: support@wphobby.com\n"
"Report-Msgid-Bugs-To: support@wphobby.com\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: *.js\n"
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: wphobby-woo-pdf-invoice.php:38
msgid "WooCommerce PDF Invoice Maker is enabled but not effective. It requires WooCommerce in order to work."
msgstr ""
#: includes/whpdf_admin.php:54
msgid "Settings updated successfully."
msgstr ""
#: includes/whpdf_admin.php:138
msgid "Vew PDF Behaviour"
msgstr ""
#: includes/whpdf_admin.php:139
msgid "Shop Name"
msgstr ""
#: includes/whpdf_admin.php:144
msgid "Enable Packing Slip"
msgstr ""
#: includes/whpdf_admin.php:150
msgid "General display settings for PDF invoices."
msgstr ""
#: includes/whpdf_admin.php:203
msgid "Advanced Settings for PDF Invoices."
msgstr ""
#: includes/whpdf_document.php:263
msgid "Invoice"
msgstr ""
#: includes/whpdf_document.php:268
msgid "Order"
msgstr ""
#: includes/whpdf_document.php:273
msgid "Invoice date"
msgstr ""
#: includes/whpdf_document.php:277
msgid "Order Amount"
msgstr ""
#: includes/admin/sections/general/top.php:8
msgid "General"
msgstr ""
#: includes/admin/sections/general/top.php:9
msgid "Advanced"
msgstr ""
#: includes/admin/sections/general/top.php:10
msgid "Server Info"
msgstr ""
#: includes/admin/sections/help/top.php:8
msgid "Help & Guide"
msgstr ""
#: includes/admin/sections/help/top.php:9
msgid "Change Log"
msgstr ""
#: template/invoice/invoice-details.php:6
msgid "Product"
msgstr ""
#: template/invoice/invoice-details.php:7
msgid "Qty"
msgstr ""
#: template/invoice/invoice-details.php:8
msgid "Price"
msgstr ""
#: template/invoice/invoice-details.php:9
msgid "Line total"
msgstr ""
#: template/invoice/invoice-details.php:10
msgid "Tax"
msgstr ""
#: template/invoice/invoice-details.php:129
msgid "Subtotal"
msgstr ""
#: template/invoice/invoice-details.php:134
msgid "Discount"
msgstr ""
#: template/invoice/invoice-details.php:148
msgid "Total"
msgstr ""
#: template/invoice/invoice-footer.php:3
msgid "Notes"
msgstr ""

View File

@@ -35,9 +35,11 @@ describe WPScan::DB::VulnApi do
context 'when a token' do
before { api.token = 's3cRet' }
let(:path) { 'path' }
context 'when no timeouts' do
before do
stub_request(:get, api.uri.join('path'))
stub_request(:get, api.uri.join(path))
.with(headers: { 'Host' => api.uri.host, 'Expect' => nil, 'Referer' => nil,
'User-Agent' => WPScan::Browser.instance.default_user_agent,
'Authorization' => 'Token token=s3cRet' })
@@ -49,7 +51,7 @@ describe WPScan::DB::VulnApi do
let(:body) { { data: 'something' }.to_json }
it 'returns the expected hash' do
result = api.get('path')
result = api.get(path)
expect(result).to eql('data' => 'something')
end
@@ -60,7 +62,7 @@ describe WPScan::DB::VulnApi do
let(:body) { { error: 'HTTP Token: Access denied.' }.to_json }
it 'returns the expected hash' do
result = api.get('path')
result = api.get(path)
expect(result).to eql('error' => 'HTTP Token: Access denied.')
end
@@ -71,9 +73,20 @@ describe WPScan::DB::VulnApi do
let(:body) { { error: 'Not found' }.to_json }
it 'returns an empty hash' do
result = api.get('path')
result = api.get(path)
expect(result).to eql('error' => 'Not found')
expect(result).to eql({})
end
context 'when 404 with HTTML (API inconsistency due to dots in path)' do
let(:path) { 'path.b.c' }
let(:body) { '<!DOCTYPE html><html>Nop</html>' }
it 'returns an empty hash' do
result = api.get(path)
expect(result).to eql({})
end
end
end
end

View File

@@ -1,2 +1,2 @@
[!] No WPVulnDB API Token given, as a result vulnerability data has not been output.
[!] You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/register.
[!] You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up.

View File

@@ -1,5 +1,5 @@
{
"vuln_api": {
"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/register."
"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."
}
}