Compare commits

...

10 Commits

Author SHA1 Message Date
erwanlr
2014f1e4b3 Bumps version 2020-07-25 17:13:29 +02:00
erwanlr
4889d17e0a Ref #1510 2020-07-25 16:24:59 +02:00
erwanlr
494d31215d Ref #1510 2020-07-25 16:21:03 +02:00
erwanlr
582bdea431 Adds DFs 2020-07-25 11:51:59 +02:00
erwanlr
ecf7df9c01 Ref #1510 2020-07-24 15:32:41 +02:00
erwanlr
a9760e8817 Ref #1510 2020-07-24 15:26:22 +02:00
erwanlr
b32e990dd4 Bumps version 2020-07-20 15:11:31 +02:00
erwanlr
4320d2436f Fixes #1522 2020-07-20 13:15:54 +02:00
erwanlr
cba6e74b13 Fixes #1520 2020-07-18 13:35:53 +02:00
erwanlr
981bcf5fa2 Adds Dfs 2020-07-18 13:17:37 +02:00
30 changed files with 5677 additions and 15 deletions

View File

@@ -88,8 +88,8 @@ module WPScan
def xmlrpc_get_users_blogs_enabled?
if xmlrpc&.enabled? &&
xmlrpc.available_methods.include?('wp.getUsersBlogs') &&
xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
.run.body !~ /XML-RPC services are disabled/
!xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
.run.body.match?(/>\s*405\s*</)
true
else

View File

@@ -7,10 +7,11 @@ module WPScan
include References
end
#
# Some classes are empty for the #type to be correctly displayed (as taken from the self.class from the parent)
#
class BackupDB < InterestingFinding
def to_s
@to_s ||= "A backup directory has been found: #{url}"
end
# @return [ Hash ]
def references
@references ||= { url: ['https://github.com/wpscanteam/wpscan/issues/422'] }
@@ -18,6 +19,10 @@ module WPScan
end
class DebugLog < InterestingFinding
def to_s
@to_s ||= "Debug Log found: #{url}"
end
# @ return [ Hash ]
def references
@references ||= { url: ['https://codex.wordpress.org/Debugging_in_WordPress'] }
@@ -40,6 +45,10 @@ module WPScan
end
class FullPathDisclosure < InterestingFinding
def to_s
@to_s ||= "Full Path Disclosure found: #{url}"
end
# @return [ Hash ]
def references
@references ||= { url: ['https://www.owasp.org/index.php/Full_Path_Disclosure'] }
@@ -71,6 +80,9 @@ module WPScan
end
class Readme < InterestingFinding
def to_s
@to_s ||= "WordPress readme found: #{url}"
end
end
class Registration < InterestingFinding
@@ -81,6 +93,10 @@ module WPScan
end
class TmmDbMigrate < InterestingFinding
def to_s
@to_s ||= "ThemeMakers migration file found: #{url}"
end
# @return [ Hash ]
def references
@references ||= { packetstorm: [131_957] }
@@ -95,6 +111,9 @@ module WPScan
end
class UploadSQLDump < InterestingFinding
def to_s
@to_s ||= "SQL Dump found: #{url}"
end
end
class WPCron < InterestingFinding

View File

@@ -101,7 +101,7 @@ module WPScan
#
# @return [ String ]
def parse_style_tag(body, tag)
value = body[/#{Regexp.escape(tag)}:[\t ]*([^\r\n*]+)/i, 1]
value = body[/\b#{Regexp.escape(tag)}:[\t ]*([^\r\n*]+)/, 1]
value && !value.strip.empty? ? value.strip : nil
end

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.8.3'
VERSION = '3.8.5'
end

View File

@@ -1,5 +1,24 @@
# frozen_string_literal: true
XMLRPC_FAILED_BODY = '
<?xml version="1.0" encoding="UTF-8"?>
<methodResponse>
<fault>
<value>
<struct>
<member>
<name>faultCode</name>
<value><int>405</int></value>
</member>
<member>
<name>faultString</name>
<value><string>%s</string></value>
</member>
</struct>
</value>
</fault>
</methodResponse>'
describe WPScan::Controller::PasswordAttack do
subject(:controller) { described_class.new }
let(:target_url) { 'http://ex.lo/' }
@@ -81,20 +100,34 @@ describe WPScan::Controller::PasswordAttack do
end
context 'when wp.getUsersBlogs method listed' do
before { expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2]) }
before do
expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2])
stub_request(:post, xmlrpc.url).to_return(body: body)
end
context 'when wp.getUsersBlogs method disabled' do
it 'returns false' do
stub_request(:post, xmlrpc.url).to_return(body: 'XML-RPC services are disabled on this site.')
context 'when blog is in EN' do
let(:body) { format(XMLRPC_FAILED_BODY, 'XML-RPC services are disabled on this site.') }
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
it 'returns false' do
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
end
end
context 'when blog is in FR' do
let(:body) { format(XMLRPC_FAILED_BODY, 'Les services XML-RPC sont désactivés sur ce site.') }
it 'returns false' do
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
end
end
end
context 'when wp.getUsersBlogs method enabled' do
it 'returns true' do
stub_request(:post, xmlrpc.url).to_return(body: 'Incorrect username or password.')
let(:body) { 'Incorrect username or password.' }
it 'returns true' do
expect(controller.xmlrpc_get_users_blogs_enabled?).to be true
end
end

View File

@@ -41,6 +41,12 @@ describe WPScan::Model::Theme do
its(:style_uri) { should eql 'http://www.elegantthemes.com/gallery/divi/' }
its(:license_uri) { should eql 'http://www.gnu.org/licenses/gpl-2.0.html' }
end
context 'when no tags' do
let(:fixture) { fixtures.join('no_tags.css') }
its(:author) { should eql nil }
end
end
describe '#version' do

File diff suppressed because it is too large Load Diff

View File

@@ -7819,6 +7819,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cf7-facebook-contactor/languages/gsconnector-en_US.po,
Match: ''ject-Id-Version: Google Sheet Coneector 1.0'''
cf7-file-download:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cf7-file-download/languages/cf7-file-download.pot,
Match: ''"Project-Id-Version: CF7 File Download 1.0'''
cf7-google-sheets-connector:
TranslationFile:
number: '1.7'
@@ -8071,6 +8078,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/chatmeim-mini/includes/mini/stylesheets/mini.css?ver=5.6.1
- http://wp.lab/wp-content/plugins/chatmeim-mini/includes/mini/javascripts/mini.js?ver=5.6.1
chatster:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/chatster/languages/chatster.pot, Match:
''"Project-Id-Version: chatster 1.0.0'''
checkbox-for-taxonomies:
TranslationFile:
number: '1.1'
@@ -8638,6 +8652,16 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cm-idin/languages/cm-idin.pot, Match: ''ect-Id-Version:
CM iDIN for WooCommerce 1.0.1'''
cm-tiktok-feed:
QueryParameter:
number: 1.0.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtiktok.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/templates.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtik-header.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/js/jquery.flexslider-min.js?ver=1.0.1
confidence: 40
cmb2:
TranslationFile:
number: 2.2.6.2
@@ -8727,6 +8751,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/code-for-cj-affiliate-network/changelog.txt,
Match: ''version 1.3.0'''
code-injection:
TranslationFile:
number: 2.4.4
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/code-injection/languages/code-injection.pot,
Match: ''"Project-Id-Version: Code Injection 2.4.4'''
code-prettify:
QueryParameter:
number: 1.3.4
@@ -9957,6 +9988,25 @@ plugins:
- http://wp.lab/wp-content/plugins/coupons/frontend/css/frontend.css?ver=1.1.0
- http://wp.lab/wp-content/plugins/coupons/frontend/js/frontend.js?ver=1.1.0
confidence: 20
courier-notices:
QueryParameter:
number: 1.2.3
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/courier-notices/css/courier-notices.css?ver=1.2.3
- http://wp.lab/wp-content/plugins/courier-notices/js/courier-notices.js?ver=1.2.3
confidence: 20
ComposerFile:
number: 1.2.3
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/courier-notices/composer.json, Match: ''1.2.3'''
ChangeLog:
number: 1.2.3
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/courier-notices/CHANGELOG.md, Match: ''##
1.2.3'''
course-migration-for-learndash:
QueryParameter:
number: 1.0.0
@@ -10128,6 +10178,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/creative-commons-configurator-1/creative-commons-configurator-1.pot,
Match: ''ersion: creative-commons-configurator-1 1.8.27'''
creative-mail-by-constant-contact:
ChangeLog:
number: 1.0.3
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/creative-mail-by-constant-contact/CHANGELOG.md,
Match: ''#### 1.0.3 - July 16 2020'''
creative-progress-bar:
QueryParameter:
number: 1.0.0
@@ -10456,6 +10513,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/custom-advert-blocks-free/lang/custom-blocks-free-ru_RU.po,
Match: ''-Id-Version: Custom Advert Blocks Free v1.0.4'''
custom-api-for-wp:
QueryParameter:
number: 1.1.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/custom-api-for-wp/public/css/custom-api-for-wordpress-public.css?ver=1.1.1
- http://wp.lab/wp-content/plugins/custom-api-for-wp/public/js/custom-api-for-wordpress-public.js?ver=1.1.1
confidence: 20
custom-authentication:
TranslationFile:
number: 1.0.0
@@ -11849,6 +11914,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/download-monitor/languages/download-monitor.pot,
Match: ''"Project-Id-Version: Download Monitor 4.0.0'''
download-panel:
QueryParameter:
number: 1.3.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/download-panel/assets/style.css?ver=1.3.1
- http://wp.lab/wp-content/plugins/download-panel/assets/script.js?ver=1.3.1
confidence: 20
download-plugins-dashboard:
TranslationFile:
number: 1.2.0
@@ -17630,6 +17703,15 @@ plugins:
- http://wp.lab/wp-content/plugins/graph-lite/public/css/graphs-lite-public.css?ver=2.0.2
- http://wp.lab/wp-content/plugins/graph-lite/public/js/graphs-lite-public.js?ver=2.0.2
confidence: 20
graphina-elementor-charts-and-graphs:
QueryParameter:
number: 0.0.5
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/css/graphina-charts-for-elementor-public.css?ver=0.0.5
- http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/apexcharts.min.js?ver=0.0.5
- http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/graphina-charts-for-elementor-public.js?ver=0.0.5
confidence: 30
gratify:
ComposerFile:
number: 1.0.0
@@ -18634,6 +18716,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/heroic-table-of-contents/languages/ht-toc.pot,
Match: ''ct-Id-Version: Heroic Table of Contents 1.0.0'''
hey-notify:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/hey-notify/languages/hey-notify.pot, Match:
''"Project-Id-Version: Hey Notify 1.0.0'''
hidden-contents:
TranslationFile:
number: '1.0'
@@ -18656,6 +18745,13 @@ plugins:
- http://wp.lab/wp-content/plugins/hide-admin-bar-based-on-user-roles/public/css/hide-admin-bar-based-on-user-roles-public.css?ver=1.1.0
- http://wp.lab/wp-content/plugins/hide-admin-bar-based-on-user-roles/public/js/hide-admin-bar-based-on-user-roles-public.js?ver=1.1.0
confidence: 20
hide-admin-bar-by-wp-all-support:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/hide-admin-bar-by-wp-all-support/languages/wpas-hide-admin-bar-en_US.po,
Match: ''rsion: Hide Admin Bar by WP ALL SUPPORT 1.0.0'''
hide-login-logo:
TranslationFile:
number: '1.0'
@@ -20802,6 +20898,29 @@ plugins:
- http://wp.lab/wp-content/plugins/job-postings/css/style.css?v=1.4.1&ver=4.9.1
- http://wp.lab/wp-content/plugins/job-postings/js/script.js?v=1.4.1&ver=4.9.1
confidence: 20
jobboardwp:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/css/select2.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/css/tipsy.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/css/helptip.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/common.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/job.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/js/select2.full.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/js/tipsy.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/dropdown.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/js/helptip.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/global.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/single-job.min.js?ver=1.0.0
confidence: 100
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/jobboardwp/languages/jobboardwp-en_US.po,
Match: ''"Project-Id-Version: JobBoardWP 1.0.0'''
jobsoid:
QueryParameter:
number: 1.0.0
@@ -21332,6 +21451,18 @@ plugins:
found_by: Xpath (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''/keywords-highlight-tool/highlight.js?v=0.1.3'''
ki-live-video-conferences:
QueryParameter:
number: 1.2.3
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ki-live-video-conferences/earth/assets/css/earth.css?ver=1.2.3
- http://wp.lab/wp-content/plugins/ki-live-video-conferences/video_chat/assets/css/style.css?ver=1.2.3
- http://wp.lab/wp-content/plugins/ki-live-video-conferences/video_chat/assets/js/block.js?ver=1.2.3
- http://wp.lab/wp-content/plugins/ki-live-video-conferences/earth/assets/js/miniature.earth.js?ver=1.2.3
- http://wp.lab/wp-content/plugins/ki-live-video-conferences/earth/assets/js/earth.js?ver=1.2.3
- http://wp.lab/wp-content/plugins/ki-live-video-conferences/video_chat/assets/js/script.js?ver=1.2.3
confidence: 60
kia-subtitle:
TranslationFile:
number: 1.6.6
@@ -22147,6 +22278,19 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/leira-letter-avatar/languages/leira-letter-avatar.pot,
Match: ''Project-Id-Version: Leira Letter Avatar 1.0.0'''
leo-product-recommendations:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/leo-product-recommendations/languages/leo-product-recommendations.pot,
Match: ''Product Recommendations for WooCommerce 1.0.0'''
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/leo-product-recommendations/package.json,
Match: ''1.0.0'''
letter-template:
QueryParameter:
number: 1.0.0
@@ -22966,7 +23110,10 @@ plugins:
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/loginer-public.css?ver=1.0
confidence: 10
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/bootstrap.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/login-public.css?ver=1.0
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/js/login-public.js?ver=1.0
confidence: 40
loginpetze:
ChangeLog:
number: '1.1'
@@ -26157,6 +26304,14 @@ plugins:
- http://wp.lab/wp-content/plugins/mybooktable/css/frontend-style.css?ver=3.1.1
- http://wp.lab/wp-content/plugins/mybooktable/styles/silver/style.css?ver=3.1.1
confidence: 20
mybox-b2b:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/mybox-b2b/public/css/mybox-b2b-public.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/mybox-b2b/public/js/mybox-b2b-public.js?ver=1.0.2
confidence: 20
mycred-bp-group-leaderboards:
ChangeLog:
number: '1.2'
@@ -29867,6 +30022,13 @@ plugins:
- http://wp.lab/wp-content/plugins/post-timeline/public/js/libs_new.js?ver=2.1.0
- http://wp.lab/wp-content/plugins/post-timeline/public/js/post-timeline.js?ver=2.1.0
confidence: 50
post-to-flarum:
ChangeLog:
number: 0.2.1
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/post-to-flarum/CHANGELOG.md, Match: ''Version
0.2.1'''
post-to-queue:
TranslationFile:
number: '1.0'
@@ -31316,6 +31478,12 @@ plugins:
- http://wp.lab/wp-content/plugins/quentn-wp/public/js/quentn-wp-public.js?ver=1.0.5
- http://wp.lab/wp-content/plugins/quentn-wp/public/js/flipclock.min.js?ver=1.0.5
confidence: 30
questionscout:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/questionscout/package.json, Match: ''1.0.0'''
quform-mailchimp:
TranslationFile:
number: 1.0.0
@@ -31406,6 +31574,15 @@ plugins:
- http://wp.lab/wp-content/plugins/quicklink//quicklink.min.js?ver=0.2.0
- http://wp.lab/wp-content/plugins/quicklink/quicklink.min.js?ver=0.2.0
confidence: 20
quickom:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/quickom/public/css/quickom-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/quickom/public/js/quickom-public.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/quickom/public/js/qrcode.min.js?ver=1.0.0
confidence: 30
quickseo-by-squirrly:
Comment:
number: 1.1.008
@@ -31520,6 +31697,13 @@ plugins:
- http://wp.lab/wp-content/plugins/raileo/public/css/raileo-public.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/raileo/public/js/raileo-public.js?ver=1.0.2
confidence: 20
random-and-popular-post:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/random-and-popular-post/public/css/random-and-popular-post-public.css?ver=1.0.0
confidence: 10
random-banner:
QueryParameter:
number: '4.0'
@@ -32371,6 +32555,13 @@ plugins:
- http://wp.lab/wp-content/plugins/reserveren-via-couverts/assets/css/couverts.min.css?ver=1.0.5
- http://wp.lab/wp-content/plugins/reserveren-via-couverts/assets/js/couverts.min.js?ver=1.0.5
confidence: 20
reset-roles-and-capabilities:
ChangeLog:
number: '1.3'
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/reset-roles-and-capabilities/CHANGELOG.md,
Match: ''## [1.3]'''
resource-library:
Comment:
number: 0.1.2
@@ -33553,6 +33744,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/sales-countdown-timer/CHANGELOG.txt, Match:
''/*1.0.4.1 - 2019.01.03*/'''
sales-notifications-by-social-oracle:
QueryParameter:
number: 1.0.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/css/social-oracle-public.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/js/social-oracle-public.js?ver=1.0.1
confidence: 20
sales-suckers:
TranslationFile:
number: 1.0.0
@@ -36022,6 +36221,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/simplified-font-manager/lang/simplified-font-manager.pot,
Match: ''ect-Id-Version: Simplified Font Manager 1.0.0'''
simplify-menu-usage:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/simplify-menu-usage/languages/simplify-menu-usage-de_DE.po,
Match: ''Project-Id-Version: Simplify Menu Usage 1.0.0'''
simply-gallery-block:
QueryParameter:
number: 1.0.0
@@ -37309,6 +37515,18 @@ plugins:
- http://wp.lab/wp-content/plugins/sparrow/public/css/getsparrow-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/sparrow/public/js/getsparrow-public.js?ver=1.0.0
confidence: 20
speaker-lite:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/speaker-lite/css/speaker.min.css?ver=1.0.0
confidence: 10
ChangeLog:
number: 1.0.0
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/speaker-lite/changelog.md, Match: ''1.0.0'''
spec-theme-options:
QueryParameter:
number: 1.0.0
@@ -38035,6 +38253,15 @@ plugins:
found_by: Comment (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''Stream WordPress user activity plugin v3.2.2'''
streamcast:
QueryParameter:
number: '1.1'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/streamcast/public/css/radio.css?ver=1.1
- http://wp.lab/wp-content/plugins/streamcast/public/css/styles.css?ver=1.1
- http://wp.lab/wp-content/plugins/streamcast/public/js/streamcast-final.js?ver=1.1
confidence: 30
streamshare:
ComposerFile:
number: 1.0.0
@@ -39322,6 +39549,13 @@ plugins:
- http://wp.lab/wp-content/plugins/the-contento/public/css/wp-contento-public.css?ver=1.2
- http://wp.lab/wp-content/plugins/the-contento/public/js/wp-contento-public.js?ver=1.2
confidence: 20
the-courier-guy:
ChangeLog:
number: 4.2.0
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/the-courier-guy/changelog.txt, Match: ''=
4.2.0'''
the-definitive-url-sanitizer:
ChangeLog:
number: 0.4.9.1
@@ -40552,6 +40786,14 @@ plugins:
- http://wp.lab/wp-content/plugins/twenty20/assets/js/jquery.twenty20.js?ver=1.2
- http://wp.lab/wp-content/plugins/twenty20/assets/js/jquery.event.move.js?ver=1.2
confidence: 30
twentyfourth-wp-scraper:
QueryParameter:
number: 0.1.9
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/css/twentyfourth-wp-scraper-public.css?ver=0.1.9
- http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/js/twentyfourth-wp-scraper-public.js?ver=0.1.9
confidence: 20
twinfield:
TranslationFile:
number: 1.1.0
@@ -41233,6 +41475,33 @@ plugins:
- http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/jquery.dataTables.min.js?ver=1.0
- http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/main.js?ver=1.0
confidence: 60
ultra-elementor-addons:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/accordion.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/animated-headlines.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/box.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/css/twentytwenty.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/image-comparison.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-member.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-members-carousel.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.carousel.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.theme.default.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial-carousel.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/accordion.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/animated-headlines.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.event.move.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.twentytwenty.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/image-comparison.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/team-members-carousel.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/js/owl.carousel.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/testimonial-carousel.js?ver=1.0.0
confidence: 100
um-custom-tab-builder-lite:
TranslationFile:
number: 1.0.0
@@ -42978,6 +43247,13 @@ plugins:
interesting_entries:
- !binary |-
aHR0cDovL3dwLmxhYi93cC1jb250ZW50L3BsdWdpbnMvd2MtcGVkaWRvLW1pbmltby9pbmMvbGFuZ3VhZ2VzL3djLXBlZGlkby1taW5pbW8ucG90LCBNYXRjaDogJy1JZC1WZXJzaW9uOiBXb29Db21tZXJjZSBQZWRpZG8gTcOtbmltbyAxLjIuMCc=
wc-product-likes-comments:
ChangeLog:
number: 1.0.0
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wc-product-likes-comments/changelog.txt,
Match: ''version 1.0.0'''
wc-product-tabs-plus:
ChangeLog:
number: 1.0.3
@@ -53028,6 +53304,19 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/yottie-lite/assets/yottie-lite/dist/jquery.yottie-lite.bundled.js?ver=1.3.2
confidence: 10
you-can-quote-me-on-that:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/css/frontend.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/sliders/carouFredSel/jquery.carouFredSel-6.2.1.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/jquery.touchSwipe.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/carouFredSel-custom.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/jquery.fittext.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/jquery.fitbutton.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/frontend.min.js?ver=1.0.0
confidence: 70
you-shang:
QueryParameter:
number: 1.0.1
@@ -53051,6 +53340,13 @@ plugins:
- http://wp.lab/wp-content/plugins/youcruit-job-listings/public/css/youCruitPositions-public.css?ver=1.2.20
- http://wp.lab/wp-content/plugins/youcruit-job-listings/public/js/youCruitPositions-public.min.js?ver=1.2.20
confidence: 20
youforms-free-for-copecart:
ChangeLog:
number: 1.0.2
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/youforms-free-for-copecart/changelog.txt,
Match: ''/***1.0.2 - 2020.07.21**/'''
your-idea-counts:
QueryParameter:
number: 1.0.0

View File

@@ -0,0 +1,40 @@
# Copyright (C) 2020 Rimes Gold
msgid ""
msgstr ""
"Project-Id-Version: CF7 File Download 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-file-download\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-24 11:14+0300\n"
"PO-Revision-Date: 2020-07-25 10:18+0300\n"
"X-Generator: Poedit 1.8.7.1\n"
"X-Domain: cf-file-download\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
#: classes/class-cf7-file-download.php:34
#: classes/class-cf7-file-download.php:35
msgid "CF7 File Download"
msgstr ""
#: classes/class-cf7-file-download.php:53
msgid "File Download Settings"
msgstr ""
#: classes/class-cf7-file-download.php:59
msgid "Download Settings"
msgstr ""
#: classes/class-cf7-file-download.php:78
msgid "Contact Form ID"
msgstr ""
#: classes/class-cf7-file-download.php:87
msgid "Attachment URL"
msgstr ""
#: classes/class-cf7-file-download.php:95
msgid "Downloaded File Name"
msgstr ""

View File

@@ -0,0 +1,685 @@
# Copyright (C) 2020 Frankspress
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: chatster 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: yyyy-mm-dd hh:mm+0000\n"
"PO-Revision-Date: 2020-07-18 14:46-0500\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Eazy Po 0.9.5.3\n"
#: includes/api/class.request-all.php:207
msgid "Testing Chatster! Your email setup works! "
msgstr ""
#: includes/api/class.request-all.php:209
msgid "Mock request message.. Customer original message will be shown here!"
msgstr ""
#: includes/api/class.request-all.php:210
msgid "This is a test email sent by"
msgstr ""
#: includes/api/class.request-all.php:211
msgid "The plugin is working. For more testing, please read the documentation."
msgstr ""
#: includes/api/class.request-all.php:212
msgid "Test your website link here: "
msgstr ""
#: includes/api/class.request-all.php:213
msgid "Thank you."
msgstr ""
#: includes/core/action.global.php:17 views/admin/function.header.php:17
msgid "Settings"
msgstr ""
#: includes/core/class.add-admin-menu.php:27
msgid "Started"
msgstr ""
#: includes/core/class.add-admin-menu.php:28
msgid "more than one hour ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:29
msgid "hour ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:30
msgid "minutes ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:31
msgid "minute ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:32
msgid "just now"
msgstr ""
#: includes/core/class.add-admin-menu.php:33
msgid "Edit"
msgstr ""
#: includes/core/class.add-admin-menu.php:34
#: views/admin/function.request.php:90
msgid "Delete"
msgstr ""
#: includes/core/class.add-admin-menu.php:35
msgid "Reset settings?"
msgstr ""
#: includes/core/class.add-admin-menu.php:36
msgid "Reset All settings?"
msgstr ""
#: includes/core/class.add-admin-menu.php:37
msgid "Disconnect"
msgstr ""
#: includes/core/class.add-admin-menu.php:38
msgid "Replied by admin"
msgstr ""
#: includes/core/class.add-admin-menu.php:102
msgid "Chatster"
msgstr ""
#: includes/core/class.add-admin-menu.php:103
msgid "Online"
msgstr ""
#: includes/core/class.add-chat-public.php:118
msgid "open"
msgstr ""
#: includes/core/class.cron-manager.php:30
msgid "Once every 3 minutes"
msgstr ""
#: includes/core/class.cron-manager.php:59
msgid "New Request received on"
msgstr ""
#: includes/core/class.cron-manager.php:60
msgid "Hello"
msgstr ""
#: includes/core/class.cron-manager.php:61
msgid "You have received "
msgstr ""
#: includes/core/class.cron-manager.php:62
#, php-format
msgid "%s new request"
msgid_plural "%s new requests"
msgstr[0] ""
msgstr[1] ""
#: includes/core/class.cron-manager.php:63
msgid "on"
msgstr ""
#: includes/core/class.cron-manager.php:64
msgid "To login to your website go here:"
msgstr ""
#: includes/core/class.cron-manager.php:65
msgid "Thank you for using Chatster!"
msgstr ""
#: includes/core/class.emailer.php:27
msgid "Your original message: "
msgstr ""
#: includes/core/class.emailer.php:55
msgid "RE:"
msgstr ""
#: includes/core/class.notices.php:15
msgid "Thank you and Welcome to"
msgstr ""
#: includes/core/class.notices.php:15
msgid "Chatster!"
msgstr ""
#: includes/core/class.notices.php:17
msgid "Testing:"
msgstr ""
#: includes/core/class.notices.php:18
msgid ""
"- Please use only <b>incognito windows</b> or <b>second browser</b> to test "
"chat functionalities.<br>"
msgstr ""
#: includes/core/class.notices.php:19
msgid "- API functionality <b>must be enabled!</b><br>"
msgstr ""
#: includes/core/class.notices.php:20
msgid ""
"- Email delivery only works if you have a <b>transactional email service</b>."
"<br>"
msgstr ""
#: includes/core/class.notices.php:21
msgid ""
"- Go to <i>Settings->Request/Response->Test Functionality</i> and verify "
"email delivery."
msgstr ""
#: includes/core/class.notices.php:22
msgid "Suggestions:"
msgstr ""
#: includes/core/class.notices.php:23
msgid ""
"- For any questions or suggestions please visit the <a target=\"_blank\" "
"href=\""
msgstr ""
#: includes/options/class.add-options-bot-qa.php:32
msgid "Bot Q &amp; A"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:43
msgid "Add a question or questions"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:44
msgid "What are your opening hours? What time do you open?"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:46
msgid ""
"The Bot will look for similarities between saved questions and user question."
msgstr ""
#: includes/options/class.add-options-bot-qa.php:55
msgid "Bot Response to the question or questions"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:56
msgid "Our stores are open from 7 a.m. to 8:30 p.m."
msgstr ""
#: includes/options/class.add-options-bot-qa.php:58
msgid "This answer will be given when a similar question is asked."
msgstr ""
#: includes/options/class.add-options-bot.php:27
msgid "Hi!! How can I help you today?"
msgstr ""
#: includes/options/class.add-options-bot.php:28
msgid "If you have any other questions please feel free to ask."
msgstr ""
#: includes/options/class.add-options-bot.php:29
msgid ""
"Sorry, I couldn't find what you're looking for..\n"
" Please try again"
msgstr ""
#: includes/options/class.add-options-bot.php:79
msgid "Give your bot your favorite name."
msgstr ""
#: includes/options/class.add-options-bot.php:89
msgid "Give your bot a friendly image"
msgstr ""
#: includes/options/class.add-options-bot.php:99
msgid ""
"Bot introductory sentece used when the chat is initially displayed.\n"
" <br><span class=\"ch-field-descr-extra\">(Each "
"line break is shown as separate message)</span>"
msgstr ""
#: includes/options/class.add-options-bot.php:110
msgid ""
"The bot sentece that follows a successfull reply.\n"
" <br><span class=\"ch-field-descr-extra\">"
"(Each line break is shown as separate message)</span>"
msgstr ""
#: includes/options/class.add-options-bot.php:121
msgid ""
"When no answer is found the bot will use this sentence.\n"
" <br><span class=\"ch-field-descr-extra\">"
"(Each line break is shown as separate message)</span>"
msgstr ""
#: includes/options/class.add-options-bot.php:132
msgid ""
"BOT will search full text in both questions and answers. <br>When not "
"enabled it will only search among the saved questions."
msgstr ""
#: includes/options/class.add-options-bot.php:155
msgid "BOT settings have been reset!"
msgstr ""
#: includes/options/class.add-options-bot.php:171
#: includes/options/class.add-options-bot.php:184
#: includes/options/class.add-options-chat.php:279
#, php-format
msgid "A field text exceeds %d character"
msgid_plural "A field text exceeds %d characters"
msgstr[0] ""
msgstr[1] ""
#: includes/options/class.add-options-chat.php:24
msgid "Chat or get in touch!"
msgstr ""
#: includes/options/class.add-options-chat.php:25
msgid "Contact Us"
msgstr ""
#: includes/options/class.add-options-chat.php:47
#: includes/options/class.add-options-chat.php:48
#: includes/options/class.add-options-chat.php:49
#: includes/options/class.add-options-chat.php:50
#: includes/options/class.add-options-chat.php:51
msgid "Customers"
msgstr ""
#: includes/options/class.add-options-chat.php:57
#: includes/options/class.add-options-chat.php:58
#: includes/options/class.add-options-chat.php:59
#: includes/options/class.add-options-chat.php:60
#: includes/options/class.add-options-chat.php:66
#: includes/options/class.add-options-chat.php:67
#: includes/options/class.add-options-chat.php:68
msgid "Minutes"
msgstr ""
#: includes/options/class.add-options-chat.php:81
msgid "Small Text"
msgstr ""
#: includes/options/class.add-options-chat.php:82
msgid "Medium Text"
msgstr ""
#: includes/options/class.add-options-chat.php:83
msgid "Large Text"
msgstr ""
#: includes/options/class.add-options-chat.php:88
msgid "Left Side of the screen"
msgstr ""
#: includes/options/class.add-options-chat.php:89
msgid "Right Side of the screen"
msgstr ""
#: includes/options/class.add-options-chat.php:218
msgid ""
"Will automatically switch the current admin to offline mode when "
"\"conversation\" screen is not open.\n"
" <br/>You can choose how long before that happens."
msgstr ""
#: includes/options/class.add-options-chat.php:229
msgid ""
"Automatically disconnects conversations that have been inactive <br>for a "
"selected amount of time."
msgstr ""
#: includes/options/class.add-options-chat.php:263
msgid "Chatster Chat settings have been reset!"
msgstr ""
#: includes/options/class.add-options-chat.php:290
msgid "Wrong Hex color"
msgstr ""
#: includes/options/class.add-options-chat.php:302
msgid "Wrong Volume Setting"
msgstr ""
#: includes/options/class.add-options-request.php:39
msgid "Chatster Request Settings"
msgstr ""
#: includes/options/class.add-options-request.php:45
msgid "Test Functionality"
msgstr ""
#: includes/options/class.add-options-request.php:56
msgid "Email Header Image"
msgstr ""
#: includes/options/class.add-options-request.php:58
msgid ""
"Your response email can display an header image.<br>\n"
" Go to Media -> Library -> Add New, then copy "
"and paste the link in this field.<br>\n"
" (Optimal aspect ratio: 600 X 230 px.)"
msgstr ""
#: includes/options/class.add-options-request.php:71
msgid "Enable Reply Forward"
msgstr ""
#: includes/options/class.add-options-request.php:84
msgid "Replies will be sent to: your@email.com"
msgstr ""
#: includes/options/class.add-options-request.php:85
msgid ""
"If your WordPress website sends email from an email address you don't check "
"daily, <br>\n"
" with this option you can redirect customer "
"replies to an account of your choice.<br><br>\n"
" Customers replying your initial response email "
"sent from the <i>\"Received Messages\"</i> section <br>\n"
" and all future back and forth emails will be "
"routed to this email address instead."
msgstr ""
#: includes/options/class.add-options-request.php:98
msgid "Enable Email Alert"
msgstr ""
#: includes/options/class.add-options-request.php:110
msgid "Alerts sent to: your@email.com"
msgstr ""
#: includes/options/class.add-options-request.php:111
msgid ""
"Receive an email alert when a new request is submitted.<br>\n"
" (Wordpress will check for new requests every "
"hour.)"
msgstr ""
#: includes/options/class.add-options-request.php:122
msgid "Enter an Email Address."
msgstr ""
#: includes/options/class.add-options-request.php:124
msgid "Ex: your@email.com"
msgstr ""
#: includes/options/class.add-options-request.php:125
msgid ""
"You will receive a mock email to check functionalities.<br>\n"
" (Depending on your server and service status "
"it may take <br>\n"
" a few minutes to receive the email. Also "
"check your \"junk folder\".)"
msgstr ""
#: includes/options/class.add-options-request.php:141
msgid "Chatster Request settings have been reset!"
msgstr ""
#: includes/options/class.add-options-request.php:158
msgid "Wrong URL submitted"
msgstr ""
#: views/functions.basic-templates.php:7
msgid "support page"
msgstr ""
#: views/admin/function.chat.php:25
msgid "Your conversations will be shown here.."
msgstr ""
#: views/admin/function.chat.php:36
msgid "Current conversation will be shown here."
msgstr ""
#: views/admin/function.chat.php:45
#, php-format
msgid "There is %s customer waiting in line"
msgstr ""
#: views/admin/function.chat.php:48
#, php-format
msgid "There are %s customers waiting in line"
msgstr ""
#: views/admin/function.chat.php:60
msgid "Attach a link to a page or product."
msgstr ""
#: views/admin/function.header.php:15
msgid "Conversations"
msgstr ""
#: views/admin/function.header.php:16
msgid "Received Messages"
msgstr ""
#: views/admin/function.request.php:16
msgid "No Messages yet"
msgstr ""
#: views/admin/function.request.php:28
msgid "Show Replied Messages"
msgstr ""
#: views/admin/function.request.php:35
msgid "User Name"
msgstr ""
#: views/admin/function.request.php:36
msgid "Subject"
msgstr ""
#: views/admin/function.request.php:37
msgid "Date Received"
msgstr ""
#: views/admin/function.request.php:38
msgid "Last Replied"
msgstr ""
#: views/admin/function.request.php:39
msgid "Pinned"
msgstr ""
#: views/admin/function.request.php:42
msgid "Message Data"
msgstr ""
#: views/admin/function.request.php:70
msgid "By: "
msgstr ""
#: views/admin/function.request.php:89
msgid "Reply"
msgstr ""
#: views/admin/function.request.php:89
msgid "Show&#47;Reply"
msgstr ""
#: views/admin/function.request.php:92
msgid "asks"
msgstr ""
#: views/admin/function.request.php:97 views/public/function.front-chat.php:56
msgid "Type here your message.."
msgstr ""
#: views/admin/function.request.php:100
msgid "Send Email"
msgstr ""
#: views/admin/function.request.php:121 views/admin/function.settings.php:54
msgid "&laquo;"
msgstr ""
#: views/admin/function.request.php:122 views/admin/function.settings.php:55
msgid "&raquo;"
msgstr ""
#: views/admin/function.settings.php:16
msgid "Bot Setup"
msgstr ""
#: views/admin/function.settings.php:25
msgid "Reset Settings"
msgstr ""
#: views/admin/function.settings.php:32
msgid "Bot Q &amp; A"
msgstr ""
#: views/admin/function.settings.php:35
msgid "Q&A Was Reset Successfully!"
msgstr ""
#: views/admin/function.settings.php:36
msgid "Dismiss this notice."
msgstr ""
#: views/admin/function.settings.php:43
msgid "You didn't add any Q&A yet!"
msgstr ""
#: views/admin/function.settings.php:71
msgid "Reset Bot Q&A"
msgstr ""
#: views/admin/function.settings.php:80
msgid "Chat Configuration"
msgstr ""
#: views/admin/function.settings.php:100
msgid "Request&#47;Response"
msgstr ""
#: views/admin/function.settings.php:100
msgid "Configuration"
msgstr ""
#: views/admin/function.settings.php:116
msgid "Send Test Email"
msgstr ""
#: views/admin/function.settings.php:118
msgid "Sent Successfully!"
msgstr ""
#: views/admin/function.settings.php:119
msgid "Something went wrong."
msgstr ""
#: views/admin/function.settings.php:131
msgid "Reset All Configuration"
msgstr ""
#: views/public/function.front-chat.php:22
msgid "Customers already waiting: "
msgstr ""
#: views/public/function.front-chat.php:23
msgid "An admin will be here shortly.."
msgstr ""
#: views/public/function.front-chat.php:24
msgid "You are beign helped by "
msgstr ""
#: views/public/function.front-chat.php:25
msgid "Sorry, we are currently unavailable.. "
msgstr ""
#: views/public/function.front-chat.php:26
msgid "You are now disconnected.."
msgstr ""
#: views/public/function.front-chat.php:27
msgid "You are chatting with "
msgstr ""
#: views/public/function.front-chat.php:32
#: views/public/function.front-chat.php:100
msgid "Your message here.."
msgstr ""
#: views/public/function.front-chat.php:36
msgid "End Chat"
msgstr ""
#: views/public/function.front-chat.php:38
#: views/public/function.front-chat.php:60
msgid "Back"
msgstr ""
#: views/public/function.front-chat.php:45
msgid "Please fill out this form to get in touch!"
msgstr ""
#: views/public/function.front-chat.php:61
msgid "Sent"
msgstr ""
#: views/public/function.front-chat.php:63
msgid "Try Again"
msgstr ""
#: views/public/function.front-chat.php:64
msgid "Send"
msgstr ""
#: views/public/function.front-chat.php:72
msgid "Start Chatting now!"
msgstr ""
#: views/public/function.front-chat.php:74
msgid "Your name"
msgstr ""
#: views/public/function.front-chat.php:77
msgid "Your email"
msgstr ""
#: views/public/function.front-chat.php:80
msgid "Type here your question.."
msgstr ""
#: views/public/function.front-chat.php:84
msgid "Cancel"
msgstr ""
#: views/public/function.front-chat.php:86
msgid "Start Chatting"
msgstr ""
#: views/public/function.front-chat.php:97
msgid "Our Bot "
msgstr ""
#: views/public/function.front-chat.php:97
msgid "is here to help you."
msgstr ""
#: views/public/function.front-chat.php:104
msgid "Chat unavailable at the moment."
msgstr ""
#: views/public/function.front-chat.php:104
msgid "Live Chat"
msgstr ""
#: views/public/function.front-chat.php:105
msgid "Message Us"
msgstr ""

View File

@@ -0,0 +1,222 @@
# Copyright (C) 2018 Arman Afzal <rman.afzal@gmail.com>
# This file is distributed under the same license as the Code Injection plugin.
msgid ""
msgstr ""
"Project-Id-Version: Code Injection 2.4.4\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/code-injection\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-14T13:51:32+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
#. Plugin Name of the plugin
#: code-injection.php:254
#: includes/plugin-widget.php:19
msgid "Code Injection"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/Rmanaf/wp-code-injection"
msgstr ""
#. Description of the plugin
#: includes/plugin-widget.php:20
msgid "This plugin allows you to inject code snippets into the pages."
msgstr ""
#. Author of the plugin
msgid "Rmanaf"
msgstr ""
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/rmanaf/"
msgstr ""
#: code-injection.php:280
msgid "Shortcodes"
msgstr ""
#: code-injection.php:309
msgid "Activator Keys"
msgstr ""
#: code-injection.php:359
msgid "Allow nested shortcodes"
msgstr ""
#: code-injection.php:372
msgid "Keys:"
msgstr ""
#: code-injection.php:375
msgid "Generate Key"
msgstr ""
#: code-injection.php:379
msgid "Enter Keys:"
msgstr ""
#: code-injection.php:398
msgid "Ignore activator keys"
msgstr ""
#: code-injection.php:410
msgid "Allow shortcodes in the Custom HTML widget"
msgstr ""
#: code-injection.php:422
msgid "Enable %s shortcode"
msgstr ""
#: code-injection.php:627
msgid "Developer"
msgstr ""
#: includes/code-metabox.php:42
msgid "Code Settings"
msgstr ""
#: includes/code-metabox.php:183
msgid "You can find useful codes in the CI %1$s."
msgstr ""
#: includes/code-metabox.php:187
msgid "Library"
msgstr ""
#: includes/code-metabox.php:221
msgid "Description"
msgstr ""
#: includes/code-metabox.php:223
msgid "Write something about your code..."
msgstr ""
#: includes/code-metabox.php:235
msgid "Tracking"
msgstr ""
#: includes/code-metabox.php:249
msgid "Publicly Queryable"
msgstr ""
#: includes/code-metabox.php:260
msgid "Content-Type"
msgstr ""
#: includes/code-metabox.php:291
msgid "As Plugin"
msgstr ""
#: includes/code-metabox.php:296
msgid "Activator key"
msgstr ""
#: includes/code-metabox.php:298
msgid "Enter key..."
msgstr ""
#: includes/code-metabox.php:315
msgid "From File"
msgstr ""
#: includes/code-metabox.php:317
msgid "Select File"
msgstr ""
#: includes/code-metabox.php:328
msgid "Enabled"
msgstr ""
#: includes/code-type.php:83
msgid "Show All %s"
msgstr ""
#: includes/code-type.php:152
msgid "Copy the Code ID into the Clipboard"
msgstr ""
#: includes/code-type.php:153
msgid "Copy CID"
msgstr ""
#: includes/code-type.php:296
msgid "Codes"
msgstr ""
#: includes/code-type.php:297
#: includes/code-type.php:356
msgid "Code"
msgstr ""
#: includes/code-type.php:298
msgid "Add New Code"
msgstr ""
#: includes/code-type.php:299
msgid "Edit Code"
msgstr ""
#: includes/code-type.php:300
msgid "New Code"
msgstr ""
#: includes/code-type.php:301
msgid "Search Codes"
msgstr ""
#: includes/code-type.php:302
msgid "No codes found"
msgstr ""
#: includes/code-type.php:303
msgid "No codes found in Trash"
msgstr ""
#: includes/code-type.php:304
msgid "All Codes"
msgstr ""
#: includes/code-type.php:357
msgid "Hits"
msgstr ""
#: includes/code-type.php:358
msgid "Info"
msgstr ""
#: includes/code-type.php:384
msgid "Categories"
msgstr ""
#: includes/code-type.php:396
msgid "Author"
msgstr ""
#: includes/code-type.php:405
msgid "Date"
msgstr ""
#: includes/code-type.php:436
msgid "Code ID"
msgstr ""
#: includes/plugin-widget.php:62
msgid "Code ID:"
msgstr ""
#: assets/js/code-editor.js:205
msgid "The File is too large. Do you want to proceed?"
msgstr ""
#: assets/js/code-editor.js:212
msgid "The selected file type is not supported."
msgstr ""
#: assets/js/code-editor.js:226
msgid "Are you sure? You are about to replace the current code with the selected file content."
msgstr ""

View File

@@ -0,0 +1,87 @@
# Changelog #
## 1.2.3 ##
* Fixed - issue with notice placement (whoops)
## 1.2.1 ##
* Updated sanitization to match wordpress.org audit.
## 1.2.0 ##
* Updated - Namespace changed from courier to courier-notices due to plugin conflict on wordpress.org
* Fixed - Duplicate modal/popup issue
* Submission to wordpress.org
## 1.1.4 ##
* Fixed - Fatal error when assigning data to a template view
## 1.1.3 ##
* Fixed - Icon font specificity
## 1.1.2 ##
* Remove - Notice font styles, allow styling to inherit from theme
## 1.1.1 ##
* Fixed - Issue with default styles not being created on install
* Fixed - Security updates provided by github audit
## 1.1.0 ##
* Fixed - Minor security updates
* Fixed - Minor code cleanup
* Fixed - Link to Types/Design was broken
* Fixed - Link to Settings was broken
* Fixed - Minor updates to strings to allow for translation
* Fixed - Modal notice was not working properly (dismissible)
* Fixed - Error log was being utilized and should not have been
* Fixed - Cron was running hourly and not every 5 minutes
* Fixed - Various typos (We talk pretty one day)
* Fixed - utilizing iris wpColorPicker (For the time being)
* Fixed - Fixed an issue with color changes in the design panel did not show until page refresh
* Added - New UI/UX for creating and styling "Types" of notices
* Added - Courier actually has some branding now
* Added - Default data on plugin activation
* Added - Utility method to sanitize kses content
* Added - Cleaned up CSS across the entire plugin
* Added - New cron schedule (Every 5 minutes)
* Added - New taxonomy for "Style of Notice". This will allow for all different kinds of notices in the future
* Added - Base for CRUD in the future. Mainly just R right now.
* Improved - Added more flexibility to how tabs and subtabs can extend the plugin
* Improved - CSS is only generated and output if CSS is not disabled
* Improved - Placement logic is more flexible now
* Improved - UI/UX to show different notice options depending on other selections
* Improved - How css and javascript is enqueued based on context of admin
* Improved - Code Organization
* Improved - Templates
* Improved - Updated the expiration of notices to increment every 5 minutes for better accuracy and less stress on servers
## 1.0.4 ##
* Cleaned up deployment process further.
## 1.0.2 ##
* Migrated to using composer as our autoloader instead of a proprietary one
* Added Parsedown dependency for Markdown display within the plugin
* Added a changelog.md display to the settings page as a tab
* Added more automation for release to get releases out the door quicker
* Minor code formatting changes
## 1.0.1 ##
* Updated dependencies based on github security notification
## 1.0.0 ##
Initial Release
* Cleaned up UI for date and time selection.
* You can no longer select an expiration date from the past.
* Implemented datetimepicker so time selection is easier.
* Minor typo fix in admin area.
* Minor data sanitization/security hardening.

View File

@@ -0,0 +1,43 @@
{
"name": "linchpin/courier",
"description": "Courier Notification for WordPress",
"homepage": "https://github.com/linchpin/courier",
"version": "1.2.3",
"authors": [
{
"name": "Linchpin",
"email": "sayhi@linchpin.com",
"homepage": "https://linchpin.com",
"role": "Developer"
}
],
"keywords": [
"WordPress",
"linchpin",
"notices",
"notifications",
"alerts",
"gdpr"
],
"support": {
"issues": "https://github.com/linchpin/courier/issues",
"source": "https://github.com/linchpin/courier"
},
"license": "GPL-2.0+",
"require-dev": {
},
"type": "wordpress-plugin",
"require": {
"php": ">=7.0",
"erusev/parsedown": "^1.7"
},
"autoload": {
"psr-4": {
"CourierNotices\\": "src/"
}
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf ."
}
}

View File

@@ -0,0 +1,14 @@
Changelog
=========
#### 1.0.3 - July 16 2020
- Small fixes in the plugin readme.
#### 1.0.2 - July 16 2020
- Small fixes in the plugin readme.
#### 1.0.1 - July 16 2020
- Fixes an issue where the "Let's get started" button needed to be clicked twice in some cases.
#### 1.0.0 - July 16 2020
- Initial version of the plugin

View File

@@ -0,0 +1,349 @@
# Copyright (C) 2020 FireTree Design, LLC <info@firetreedesign.com>
# This file is distributed under the same license as the Hey Notify plugin.
msgid ""
msgstr ""
"Project-Id-Version: Hey Notify 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hey-notify\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-21T19:21:51+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: hey-notify\n"
#. Plugin Name of the plugin
#: includes/cpt.php:35
#: includes/services/class-email.php:99
msgid "Hey Notify"
msgstr ""
#. Plugin URI of the plugin
msgid "https://heynotifywp.com/"
msgstr ""
#. Description of the plugin
msgid "Get notified when things happen in WordPress."
msgstr ""
#. Author of the plugin
msgid "FireTree Design, LLC <info@firetreedesign.com>"
msgstr ""
#. Author URI of the plugin
msgid "https://firetreedesign.com/"
msgstr ""
#: includes/cpt.php:33
msgctxt "Post Type General Name"
msgid "Notifications"
msgstr ""
#: includes/cpt.php:34
msgctxt "Post Type Singular Name"
msgid "Notification"
msgstr ""
#: includes/cpt.php:36
msgid "Parent Notification:"
msgstr ""
#: includes/cpt.php:37
msgid "All Notifications"
msgstr ""
#: includes/cpt.php:38
msgid "View Notification"
msgstr ""
#: includes/cpt.php:39
msgid "Add New Notification"
msgstr ""
#: includes/cpt.php:40
msgid "Add New"
msgstr ""
#: includes/cpt.php:41
msgid "Edit Notification"
msgstr ""
#: includes/cpt.php:42
msgid "Update Notification"
msgstr ""
#: includes/cpt.php:43
msgid "Search Notifications"
msgstr ""
#: includes/cpt.php:44
msgid "Not found"
msgstr ""
#: includes/cpt.php:45
msgid "Not found in Trash"
msgstr ""
#: includes/cpt.php:100
#: includes/fields.php:40
msgid "Service"
msgstr ""
#: includes/cpt.php:101
#: includes/fields.php:53
#: includes/filters.php:49
msgid "Events"
msgstr ""
#: includes/events/page/class-page-event.php:30
msgid "Pages"
msgstr ""
#: includes/events/page/class-page-event.php:43
#: includes/events/post/class-post-event.php:43
msgid "Action"
msgstr ""
#: includes/events/page/class-page-event.php:46
msgid "Page Draft"
msgstr ""
#: includes/events/page/class-page-event.php:47
msgid "Page Pending"
msgstr ""
#: includes/events/page/class-page-event.php:48
msgid "Page Published"
msgstr ""
#: includes/events/page/class-page-event.php:49
msgid "Page Scheduled"
msgstr ""
#: includes/events/page/class-page-event.php:50
msgid "Page Updated"
msgstr ""
#: includes/events/page/class-page-event.php:51
msgid "Page Moved to Trash"
msgstr ""
#: includes/events/page/class-page-hook.php:42
msgid "Hey, a new page was drafted!"
msgstr ""
#: includes/events/page/class-page-hook.php:73
msgid "Hey, a new page was published!"
msgstr ""
#: includes/events/page/class-page-hook.php:103
msgid "Hey, a new page was scheduled!"
msgstr ""
#: includes/events/page/class-page-hook.php:134
msgid "Hey, a new page is pending!"
msgstr ""
#: includes/events/page/class-page-hook.php:155
msgid "Hey, a page was updated!"
msgstr ""
#: includes/events/page/class-page-hook.php:176
msgid "Hey, a page was deleted!"
msgstr ""
#: includes/events/page/class-page-hook.php:190
#: includes/events/post/class-post-hook.php:190
msgid "Author"
msgstr ""
#: includes/events/page/class-page-hook.php:195
#: includes/events/post/class-post-hook.php:195
msgid "Date"
msgstr ""
#: includes/events/post/class-post-event.php:30
msgid "Posts"
msgstr ""
#: includes/events/post/class-post-event.php:46
msgid "Post Draft"
msgstr ""
#: includes/events/post/class-post-event.php:47
msgid "Post Pending"
msgstr ""
#: includes/events/post/class-post-event.php:48
msgid "Post Published"
msgstr ""
#: includes/events/post/class-post-event.php:49
msgid "Post Scheduled"
msgstr ""
#: includes/events/post/class-post-event.php:50
msgid "Post Updated"
msgstr ""
#: includes/events/post/class-post-event.php:51
msgid "Post Moved to Trash"
msgstr ""
#: includes/events/post/class-post-hook.php:42
msgid "Hey, a new post was drafted!"
msgstr ""
#: includes/events/post/class-post-hook.php:73
msgid "Hey, a new post was published!"
msgstr ""
#: includes/events/post/class-post-hook.php:103
msgid "Hey, a new post was scheduled!"
msgstr ""
#: includes/events/post/class-post-hook.php:134
msgid "Hey, a new post is pending!"
msgstr ""
#: includes/events/post/class-post-hook.php:155
msgid "Hey, a post was updated!"
msgstr ""
#: includes/events/post/class-post-hook.php:176
msgid "Hey, a post was deleted!"
msgstr ""
#: includes/events/post/class-post-hook.php:204
msgid "Categories"
msgstr ""
#: includes/events/post/class-post-hook.php:213
msgid "Tags"
msgstr ""
#: includes/fields.php:66
msgid "Hey Notify Settings"
msgstr ""
#: includes/fields.php:68
msgid "Settings"
msgstr ""
#: includes/fields.php:71
msgid "General"
msgstr ""
#: includes/fields.php:75
msgid "Uninstall"
msgstr ""
#: includes/filters.php:31
msgid "Select a service"
msgstr ""
#: includes/filters.php:46
msgid "Notification Events"
msgstr ""
#: includes/filters.php:50
msgid "Event"
msgstr ""
#: includes/filters.php:56
msgid "Event Type"
msgstr ""
#: includes/filters.php:80
msgid "Upon deletion of the plugin, you can optionally remove all custom data, settings, etc."
msgstr ""
#: includes/filters.php:85
msgid "Remove all data when Hey Notify is deleted."
msgstr ""
#: includes/filters.php:102
msgid "General settings for Hey Notify."
msgstr ""
#: includes/filters.php:107
msgid "Default service:"
msgstr ""
#: includes/services/class-discord.php:44
#: includes/services/class-slack.php:44
msgid "Webhook URL"
msgstr ""
#: includes/services/class-discord.php:46
msgid "The webhook that you created for your Discord channel."
msgstr ""
#: includes/services/class-discord.php:46
#: includes/services/class-slack.php:46
msgid "Learn More"
msgstr ""
#: includes/services/class-discord.php:57
msgid "Discord Avatar"
msgstr ""
#: includes/services/class-discord.php:58
msgid "Override the default avatar of the webhook. Not required."
msgstr ""
#: includes/services/class-discord.php:70
msgid "Discord Username"
msgstr ""
#: includes/services/class-discord.php:71
#: includes/services/class-slack.php:71
msgid "Override the default username of the webhook. Not required."
msgstr ""
#: includes/services/class-email.php:44
msgid "Send notifications to"
msgstr ""
#: includes/services/class-email.php:47
#: includes/services/class-email.php:53
msgid "Email Address"
msgstr ""
#: includes/services/class-email.php:52
msgid "Email Addresses"
msgstr ""
#: includes/services/class-email.php:105
msgid "Hey, here's your notification!"
msgstr ""
#: includes/services/class-slack.php:46
msgid "The webhook that you created for your Slack channel."
msgstr ""
#: includes/services/class-slack.php:57
msgid "Slack Icon"
msgstr ""
#: includes/services/class-slack.php:58
msgid "Override the default icon of the webhook. Not required."
msgstr ""
#: includes/services/class-slack.php:70
msgid "Slack Username"
msgstr ""
#: includes/services/class-slack.php:83
msgid "Color"
msgstr ""
#: includes/services/class-slack.php:84
msgid "Select a color to use for the message attachment."
msgstr ""
#: includes/services/class-slack.php:230
msgid "Attached image"
msgstr ""

View File

@@ -0,0 +1,73 @@
msgid ""
msgstr ""
"Project-Id-Version: Hide Admin Bar by WP ALL SUPPORT 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-07-11 17:49+0530\n"
"PO-Revision-Date: 2020-07-11 17:49+0530\n"
"Last-Translator: \n"
"Language-Team: WP ALL SUPPORT <info@wpallsupport.com>\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: _;gettext;gettext_noop;__;_e;_n:1,2;_n_noop:1,2;"
"_nx:1,2;_x;_ex;esc_attr_e;esc_attr__\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 2.2.1\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-wpas-hide-admin-bar-admin.php:54
#: admin/class-wpas-hide-admin-bar-admin.php:55
#: admin/class-wpas-hide-admin-bar-admin.php:74
msgid "Hide Admin Bar Settings"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:82
msgid "Force hide for all?"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:86
msgid "Hide for selected users?"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:88
msgid "Select users"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:113
msgid "Hide by user roles?"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:117
msgid "Select roles to hide admin bar"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:120
msgid "Select user roles"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:139
msgid "Hide admin bar if..."
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:142
msgid "Create a new rule"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:165
msgid "Delete data on uninstall?"
msgstr ""
#: admin/class-wpas-hide-admin-bar-admin.php:170
msgid "Save Changes"
msgstr ""
#: templates/add-new-rule.php:27
msgid "Please select post type to hide"
msgstr ""
#: templates/add-new-rule.php:42
msgid "Please select item(s)"
msgstr ""

View File

@@ -0,0 +1,21 @@
{
"name": "js",
"version": "1.0.0",
"description": "",
"main": "script.js",
"scripts": {
"start": "wp-scripts start & sass --watch assets/css/",
"build": "sass assets/css/ --style=compressed & wp-scripts build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@wordpress/scripts": "^6.1.1",
"sass": "^1.26.9"
},
"dependencies": {
"classnames": "^2.2.6",
"react-debounce-input": "^3.2.2",
"react-reorder": "^3.0.0-alpha.7"
}
}

View File

@@ -0,0 +1,288 @@
# Copyright (C) 2020 LeoCoder
# This file is distributed under the same license as the Leo Product Recommendations for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Leo Product Recommendations for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/leo-product-recommendations\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-11T14:28:44+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: leo-product-recommendations\n"
#. Plugin Name of the plugin
msgid "Leo Product Recommendations for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://leocoder.com/leo-product-recommendations"
msgstr ""
#. Description of the plugin
msgid "Recommend products smartly and increase sales by nice-looking add to cart popup"
msgstr ""
#. Author of the plugin
msgid "LeoCoder"
msgstr ""
#. Author URI of the plugin
msgid "https://leocoder.com/"
msgstr ""
#: includes/class-lc-ajax-add-to-cart.php:66
msgid "Product not found"
msgstr ""
#: includes/class-lc-ajax-add-to-cart.php:150
msgid "Unable to add to cart. Something went wrong."
msgstr ""
#. translators: 1. link of plugin, 2. plugin version.
#: includes/class-lc-leo-product-recommendations.php:161
msgid "The Leo Product Recommendations for WooCommerce plugin requires <a href=\"%1$s\">WooCommerce</a> %2$s or greater to be installed and active."
msgstr ""
#. translators: 1. link of wordpress, 2. version of WordPress.
#: includes/class-lc-leo-product-recommendations.php:170
msgid "The Leo Product Recommendations for WooCommerce plugin requires <a href=\"%1$s\">WordPress</a> %2$s or greater to be installed and active."
msgstr ""
#. translators: 1. version of php
#: includes/class-lc-leo-product-recommendations.php:179
msgid "The Leo Product Recommendations for WooCommerce plugin requires <strong>php verion %s</strong> or greater. Please update your server php version."
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:231
msgid "Settings"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:404
msgid "Product Recommendations"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1230
msgid "Default Heading"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1232
msgid "If you like to use same heading patternt for all recommendations then use default heading. Use pattern <strong>%title%</strong> for product title. Pattern <strong>[item, items]</strong> is changeable. You can use <strong>[product, products]</strong> or anything that makes sense. Singular word for single recommended product and plural word for multiple recommended products."
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1233
msgid "You may purchase following [item, items] with the %title%"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1238
msgid "Grid Options"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1244
msgid "Desktop Items"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1253
msgid "Tablet Items"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1262
msgid "Mobile Items"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1270
msgid "Column Gap"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1284
msgid "Custom CSS"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1286
msgid "Write custom css to change style of modal."
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1293
msgid "Active Global Setting"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1295
msgid "If there are no recommendations available for some products (if you don't setup from product editor), the global setting will work for those products as a fallback. This setting is also helpful if you like a bulk recommendation setup for entire shop instead of a different setup for each product."
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1299
msgid "Recommendation Options"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1304
msgid "Categories"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1307
msgid "Product Related Category"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1308
msgid "Menual"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1314
msgid "Choose Categories"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1320
msgid "Choose Tags"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1326
msgid "Products Filtering"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1329
msgid "Random Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1330
msgid "Newest Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1331
msgid "Oldest Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1332
msgid "Low Price Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1333
msgid "High Price Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1334
msgid "Best Selling Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1335
msgid "Top Rated Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1340
msgid "On-Sale Only"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1345
msgid "Numbers of Products"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1353
msgid "Skip"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1354
msgid "Skip Manual Selection"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1363
msgid "Leo Product Recommendations Settings"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1364
msgid "LPR Settings"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1372
msgid "General"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1373
msgid "General Settings"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1379
msgid "Style"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1380
msgid "Colors & Styles Settings"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1386
msgid "Global"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1387
msgid "Global Settings"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1393
msgid "Tutorials"
msgstr ""
#: includes/class-lc-leo-product-recommendations.php:1394
msgid "Tutorial & Documentation"
msgstr ""
#: includes/class-lc-lpr-settings-page.php:120
msgid "Save Settings"
msgstr ""
#. translators: %s: Name of field type
#: includes/class-lc-lpr-settings-page.php:227
msgid "<strong>%s</strong> field type not found!"
msgstr ""
#: templates/template-modal.php:30
msgid "has been added to your cart."
msgstr ""
#: templates/template-modal.php:31
msgid "View cart"
msgstr ""
#: templates/template-modal.php:37
msgid "Continue Shopping"
msgstr ""
#: templates/template-modal.php:41
msgid "Checkout"
msgstr ""
#: assets/js/ajax-add-to-cart.js:61
msgid "Something went wrong"
msgstr ""
#: assets/js/panel.js:43
msgid "Heading"
msgstr ""
#: assets/js/panel.js:47
msgid "Heading & Description"
msgstr ""
#: assets/js/panel.js:207
msgid "Popup Heading"
msgstr ""
#: assets/js/panel.js:258
msgid "Select Products"
msgstr ""
#: assets/js/panel.js:270
msgid "Search..."
msgstr ""
#: assets/js/panel.js:280
#: assets/js/settings.js:94
msgid "All Categories"
msgstr ""
#: assets/js/panel.js:301
msgid "Not found selectable product"
msgstr ""
#: assets/js/settings.js:98
msgid "All Tags"
msgstr ""

View File

@@ -0,0 +1,10 @@
# Version 0.2.1 beta 2020-07-22
* Changed `apply_filter` for `do_shortcode` to avoid iframes
# Version 0.2.0 beta 2020-07-18
* The plugin has been completely rewritten and now it uses the Flarum API instead of making changes directly in the database
# Version 0.1.0 beta 2018-10-15
## Initial version
* Initial version of `post-to-flarum` plugin submitted

View File

@@ -3184,6 +3184,13 @@
<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">
<!-- cm-tiktok-feed -->
<link rel="stylesheet" id="wtiktok-styles-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtiktok.css?ver=1.0.1" media="all">
<link rel="stylesheet" id="wtik_instag-slider-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/templates.css?ver=1.0.1" media="all">
<link rel="stylesheet" id="wtik_wtik-header-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtik-header.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/js/jquery.flexslider-min.js?ver=1.0.1"></script>
<!-- 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>
@@ -3685,6 +3692,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/coupons/frontend/js/frontend.js?ver=1.1.0"></script>
<!-- courier-notices -->
<link rel="stylesheet" id="courier-notices-css" href="http://wp.lab/wp-content/plugins/courier-notices/css/courier-notices.css?ver=1.2.3" media="all">
<script src="http://wp.lab/wp-content/plugins/courier-notices/js/courier-notices.js?ver=1.2.3"></script>
<!-- course-migration-for-learndash -->
<link rel="stylesheet" id="sfwd-lms-course-migration-css" href="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/css/sfwd-lms-course-migration-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/js/sfwd-lms-course-migration-public.js?ver=1.0.0"></script>
@@ -3882,6 +3894,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-accordion-block/js/custom-script.js?ver=1.0"></script>
<!-- custom-api-for-wp -->
<link rel="stylesheet" id="custom-api-for-wp-css" href="http://wp.lab/wp-content/plugins/custom-api-for-wp/public/css/custom-api-for-wordpress-public.css?ver=1.1.1" media="all">
<script src="http://wp.lab/wp-content/plugins/custom-api-for-wp/public/js/custom-api-for-wordpress-public.js?ver=1.1.1"></script>
<!-- custom-checkout-layouts-for-woocommerce -->
<link rel="stylesheet" id="custom-checkout-css-css" href="http://wp.lab/wp-content/plugins/custom-checkout-layouts-for-woocommerce/css/custom-checkout.css?ver=1.0" type="text/css" media="all">
@@ -4192,6 +4209,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/download-after-email/js/download.js?ver=1.1"></script>
<!-- download-panel -->
<link rel="stylesheet" id="dlpn_styles-css" href="http://wp.lab/wp-content/plugins/download-panel/assets/style.css?ver=1.3.1" media="all">
<script src="http://wp.lab/wp-content/plugins/download-panel/assets/script.js?ver=1.3.1"></script>
<!-- draugiemlvlapas-fan-page -->
<link rel="stylesheet" id="draugiem_sekotaji-css" href="http://wp.lab/wp-content/plugins/draugiemlvlapas-fan-page/css/draugiem-lapas-sekotaji.css?ver=3.5.4" media="all">
@@ -6327,6 +6349,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/graph-lite/public/js/graphs-lite-public.js?ver=2.0.2"></script>
<!-- graphina-elementor-charts-and-graphs -->
<link rel="stylesheet" id="graphina-charts-for-elementor-css" href="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/css/graphina-charts-for-elementor-public.css?ver=0.0.5" media="all">
<script src="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/apexcharts.min.js?ver=0.0.5"></script>
<script src="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/graphina-charts-for-elementor-public.js?ver=0.0.5"></script>
<!-- gravitate-event-tracking -->
<script type="text/javascript" defer src="http://wp.lab/wp-content/plugins/gravitate-event-tracking/gravitate_event_tracking.js?v=1.5.3"></script>
@@ -7440,6 +7468,20 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/job-postings/include/../js/script.js?v=1.4.1&amp;ver=4.9.1"></script>
<!-- jobboardwp -->
<link rel="stylesheet" id="select2-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/css/select2.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-tipsy-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/css/tipsy.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-helptip-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/css/helptip.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-common-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/common.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-job-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/job.min.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/js/select2.full.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/js/tipsy.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/dropdown.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/js/helptip.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/global.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/single-job.min.js?ver=1.0.0"></script>
<!-- jobsoid -->
<link rel="stylesheet" id="jobsoid_plugin_css-css" href="http://wp.lab/wp-content/plugins/jobsoid/css/jobsoid.css?ver=1.0.0" type="text/css" media="all">
@@ -7621,6 +7663,15 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/keymaster-chord-notation-free/js/print-area.jquery.js?ver=1.0.2"></script>
<!-- ki-live-video-conferences -->
<link rel="stylesheet" id="ki-live-video-conferences-earth-css" href="http://wp.lab/wp-content/plugins/ki-live-video-conferences/earth/assets/css/earth.css?ver=1.2.3" media="all">
<link rel="stylesheet" id="ki-live-video-conferences-zoom-css" href="http://wp.lab/wp-content/plugins/ki-live-video-conferences/video_chat/assets/css/style.css?ver=1.2.3" media="all">
<script src="http://wp.lab/wp-content/plugins/ki-live-video-conferences/video_chat/assets/js/block.js?ver=1.2.3"></script>
<script src="http://wp.lab/wp-content/plugins/ki-live-video-conferences/earth/assets/js/miniature.earth.js?ver=1.2.3"></script>
<script src="http://wp.lab/wp-content/plugins/ki-live-video-conferences/earth/assets/js/earth.js?ver=1.2.3"></script>
<script src="http://wp.lab/wp-content/plugins/ki-live-video-conferences/video_chat/assets/js/script.js?ver=1.2.3"></script>
<!-- kickass-slider -->
<link rel="stylesheet" id="kickass-front-css-css" href="http://wp.lab/wp-content/plugins/kickass-slider/assets/css/kickass.css?ver=1.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kickass-slider/assets/js/jquery.kickass.js?ver=1.2"></script>
@@ -8252,6 +8303,9 @@
<!-- loginer-custom-login-page-builder -->
<link rel="stylesheet" id="loginer-style-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/loginer-public.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="login-bootstrap-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/bootstrap.min.css?ver=1.0" media="all">
<link rel="stylesheet" id="login-style-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/login-public.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/js/login-public.js?ver=1.0"></script>
<!-- logistia -->
@@ -9518,6 +9572,11 @@
<link rel="stylesheet" id="mbt-style-pack-css" href="http://wp.lab/wp-content/plugins/mybooktable/styles/silver/style.css?ver=3.1.1" type="text/css" media="all">
<!-- mybox-b2b -->
<link rel="stylesheet" id="mybox-b2b-css" href="http://wp.lab/wp-content/plugins/mybox-b2b/public/css/mybox-b2b-public.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/mybox-b2b/public/js/mybox-b2b-public.js?ver=1.0.2"></script>
<!-- myego2go-verified-login-for-woocommerce -->
<link rel="stylesheet" id="myego2go-css" href="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/css/myego2go-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/js/myego2go-public.js?ver=1.0.0"></script>
@@ -11517,6 +11576,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quicklink/quicklink.min.js?ver=0.2.0" async></script>
<!-- quickom -->
<link rel="stylesheet" id="quickom-css" href="http://wp.lab/wp-content/plugins/quickom/public/css/quickom-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/quickom/public/js/quickom-public.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/quickom/public/js/qrcode.min.js?ver=1.0.0"></script>
<!-- quizmaster-grades -->
<link rel="stylesheet" id="quizmaster-grades-style-css" href="http://wp.lab/wp-content/plugins/quizmaster-grades/assets/css/quizmaster_grades.css?ver=0.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quizmaster-grades/assets/js/quizmaster_grades.js?ver=0.0.1"></script>
@@ -11568,6 +11633,10 @@
<script src="http://wp.lab/wp-content/plugins/raileo/public/js/raileo-public.js?ver=1.0.2"></script>
<!-- random-and-popular-post -->
<link rel="stylesheet" id="random-and-popular-post-css" href="http://wp.lab/wp-content/plugins/random-and-popular-post/public/css/random-and-popular-post-public.css?ver=1.0.0" media="all">
<!-- random-banner -->
<link rel="stylesheet" id="bc_rb_global_style-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/bc_rb_global.css?ver=4.0" type="text/css" media="all">
<link rel="stylesheet" id="bc_rb_animate-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/animate.css?ver=4.0" type="text/css" media="all">
@@ -12326,6 +12395,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/safetymails-forms/public/js/form-render.min.js?ver=1.0.0"></script>
<!-- sales-notifications-by-social-oracle -->
<link rel="stylesheet" id="social-oracle-css" href="http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/css/social-oracle-public.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/sales-notifications-by-social-oracle/public/js/social-oracle-public.js?ver=1.0.1"></script>
<!-- saleshybrid-forms -->
<link rel="stylesheet" id="featherlight-style-css" href="http://wp.lab/wp-content/plugins/saleshybrid-forms/featherlight/featherlight.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/saleshybrid-forms/featherlight/featherlight.js?ver=1.0"></script>
@@ -13811,6 +13885,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sparrow/public/js/getsparrow-public.js?ver=1.0.0"></script>
<!-- speaker-lite -->
<link rel="stylesheet" id="mdp-speaker-lite-css" href="http://wp.lab/wp-content/plugins/speaker-lite/css/speaker.min.css?ver=1.0.0" media="all">
<!-- spec-theme-options -->
<link rel="stylesheet" id="spec-theme-options-public-css" href="http://wp.lab/wp-content/plugins/spec-theme-options/public/css/spec-theme-options-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="FontAwesome-css" href="http://wp.lab/wp-content/plugins/spec-theme-options/extensions/font-awesome/css/all.css?ver=1.0.0" media="all">
@@ -14093,6 +14171,12 @@
<link rel="stylesheet" id="ssatc-styles-css" href="http://wp.lab/wp-content/plugins/storefront-sticky-add-to-cart/assets/css/style.css?ver=1.1.7" type="text/css" media="all">
<!-- streamcast -->
<link rel="stylesheet" id="stp-style-css" href="http://wp.lab/wp-content/plugins/streamcast/public/css/radio.css?ver=1.1" media="all">
<link rel="stylesheet" id="stp-player-style-css" href="http://wp.lab/wp-content/plugins/streamcast/public/css/styles.css?ver=1.1" media="all">
<script src="http://wp.lab/wp-content/plugins/streamcast/public/js/streamcast-final.js?ver=1.1"></script>
<!-- stripe -->
<link rel="stylesheet" id="simpay-public-css" href="http://wp.lab/wp-content/plugins/stripe/assets/css/public.min.css?ver=2.1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stripe/assets/js/vendor/accounting.min.js?ver=2.1.1"></script>
@@ -15053,6 +15137,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/twenty20/assets/js/jquery.event.move.js?ver=1.2"></script>
<!-- twentyfourth-wp-scraper -->
<link rel="stylesheet" id="twentyfourth-wp-scraper-css" href="http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/css/twentyfourth-wp-scraper-public.css?ver=0.1.9" media="all">
<script src="http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/js/twentyfourth-wp-scraper-public.js?ver=0.1.9"></script>
<!-- twitch-status -->
<link rel="stylesheet" id="twitch_status-css" href="http://wp.lab/wp-content/plugins/twitch-status/css/twitch-status.css?ver=1.4.2" type="text/css" media="all">
<link rel="stylesheet" id="twitch_status_fontello-css" href="http://wp.lab/wp-content/plugins/twitch-status/font/fontello/css/fontello.css?ver=1.4.2" type="text/css" media="all">
@@ -15380,6 +15469,30 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/main.js?ver=1.0"></script>
<!-- ultra-elementor-addons -->
<link rel="stylesheet" id="ua-style-accordion-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/accordion.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-animated-headlines-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/animated-headlines.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-box-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/box.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-twentytwenty-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/css/twentytwenty.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-image-comparison-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/image-comparison.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-team-member-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-member.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-slick-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-team-members-carousel-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-members-carousel.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-testimonial-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-owl-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.carousel.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-owl-default-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.theme.default.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-testimonial-carousel-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial-carousel.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/accordion.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/animated-headlines.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.event.move.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.twentytwenty.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/image-comparison.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/team-members-carousel.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/js/owl.carousel.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/testimonial-carousel.js?ver=1.0.0"></script>
<!-- um-events-lite-for-ultimate-member -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/um-events-lite-for-ultimate-member/assets/js/um-events.min.js?ver=1.0.0"></script>
@@ -19620,6 +19733,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yottie-lite/assets/yottie-lite/dist/jquery.yottie-lite.bundled.js?ver=1.3.2"></script>
<!-- you-can-quote-me-on-that -->
<link rel="stylesheet" id="you-can-quote-me-on-that-frontend-css" href="http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/css/frontend.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/sliders/carouFredSel/jquery.carouFredSel-6.2.1.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/jquery.touchSwipe.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/carouFredSel-custom.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/jquery.fittext.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/jquery.fitbutton.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/you-can-quote-me-on-that/library/js/frontend.min.js?ver=1.0.0"></script>
<!-- you-shang -->
<link rel="stylesheet" id="youshang_css-css" href="http://wp.lab/wp-content/plugins/you-shang/static/youshang.css?ver=1.0.1" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/you-shang/static/youshang.js?ver=1.0.1"></script>

View File

@@ -0,0 +1,14 @@
{
"name": "questionscout-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.23.0",
"whatwg-fetch": "3.2.0"
}
}

View File

@@ -0,0 +1,23 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [1.3] - 2020-07-13
### Changed
- Tested up to: 5.4.2
## [1.2] - 2019-11-04
### Changed
- Tested up to: 5.2.4
## [1.1] - 2019-03-09
### Changed
- Tested up to: 5.1
## [1.0] - 2018-05-06
### Changed
- First public version.

View File

@@ -0,0 +1,419 @@
# Copyright (C) 2020 Konstantin Kröpfl
# This file is distributed under the same license as the Simplify Menu Usage plugin.
msgid ""
msgstr ""
"Project-Id-Version: Simplify Menu Usage 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simplify-menu-"
"usage-\n"
"POT-Creation-Date: 2020-07-22 10:39+0200\n"
"PO-Revision-Date: 2020-07-22 10:42+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.12\n"
"X-Domain: simplify-menu-usage\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Plugin Name of the plugin
msgid "Simplify Menu Usage"
msgstr "Simplify Menu Usage"
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/simplify-menu-usage/"
msgstr ""
#. Description of the plugin
msgid ""
"Improves the handling of the menu section in the dashboard. Fast deleting "
"and inserting/moving menu items."
msgstr ""
"Verbessert die Bedienung der Menüs im Dashboard. Schnelles entfernen und "
"einfügen/verschieben von Menüelementen."
#. Author of the plugin
msgid "Konstantin Kröpfl"
msgstr "Konstantin Kröpfl"
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/konstk/"
msgstr "https://profiles.wordpress.org/konstk/"
#: admin/classes/rating-banner.php:34
msgid "No valid Ajax request"
msgstr "keine gültige Ajax-Anfrage"
#: admin/classes/rating-banner.php:39
msgid "Banner has been dismissed"
msgstr "Banner wurde entfernt."
#: admin/classes/rating-banner.php:41
msgid "Something went wrong - try again."
msgstr "Etwas ging schief - versuch es nochmal."
#: admin/partials/downwards-inserting-behavior.php:9
#: admin/partials/leftwards-inserting-behavior.php:9
msgid "Default behaviour"
msgstr "standardmäßiges Verhalten"
#: admin/partials/downwards-inserting-behavior.php:11
msgid ""
"Choosing the default behavior is the standard way how WordPress handles "
"inserting menu items downwards. To put it simply, if the next menu item is "
"on the same level inserting downwards will be on the same level. If the next "
"menu item has children elements, the item, which is about to be inserted/"
"moved downwards will become a new children element of the next menu item. It "
"should be familiar as it is the default way of handling the downwards move. "
"For better visualization, the following image show the behavior."
msgstr ""
"Die Auswahl vom Standardverhalten entspricht dem Verhalten wie WordPress das "
"abwärts Verschieben/Einfügen von Menüelementen handhabt. Kurz gesagt, wenn "
"sich das nächste Menüelement auf der selben Ebene befindet, wird das zu "
"verschiebende/einfügende Element danach eingefügt. Falls das nächste "
"Menüelement ein Sub-Menü ist und Kindselemente verwaltet, wird das zu "
"verschiebende/einfügende Element zu einem neuen Kindselement. Das dürfte "
"vertraut sein, weil das das Standardverhalten von WordPress beim abwärts "
"Verschieben/Einfügen ist. Für eine bessere Darstellung stellt das "
"nachstehende Bild das Verhalten dar."
#: admin/partials/downwards-inserting-behavior.php:19
#: admin/partials/leftwards-inserting-behavior.php:17
msgid "Showing the default behavior of moving/inserting elements downwards."
msgstr ""
"Zeige das standardmäßige Verhalten beim abwärts Verschieben/Einfügen von "
"Elementen."
#: admin/partials/downwards-inserting-behavior.php:23
msgid "Same-Level behaviour"
msgstr "gleiches Level Verhalten"
#: admin/partials/downwards-inserting-behavior.php:25
msgid ""
"Choosing the same level behavior is very intuitive. It simply inserts/moves "
"the menu item on the same level one step downwards. Special case when the "
"next menu item has children elements it will be inserted after the entire "
"sub-menu with its original level. For better visualization, the following "
"imagenav-menu-settings-explainations show the behavior."
msgstr ""
"Die Auswahl für das Verhalten der selben Ebene ist sehr intuitiv. Es fügt "
"bzw. verschriebt ein Menüelement ganz einfach einen Schritt weiter nach "
"unter, aber auf dem selben Level. Ein Spezialfall ist, wenn das nächste "
"Menüelement ein Sub-Menü ist, dann wird das zu verschiebende Element erst "
"nach dem ganzen Sub-Menü eingefügt. Für eine bessere Vorstellung zeigt das "
"nachfolgende Bild das Verhalten."
#: admin/partials/downwards-inserting-behavior.php:31
msgid "Showing the same-level behavior of moving/inserting elements downwards."
msgstr ""
"Zeige das gleiche Level Verhalten beim abwärts Verschieben/Einfügen von "
"Elementen."
#: admin/partials/downwards-inserting-behavior.php:35
#: admin/partials/leftwards-inserting-behavior.php:21
msgid "Take-Children elements behaviour"
msgstr "Kinderelemente-Übernehmen Verhalten"
#: admin/partials/downwards-inserting-behavior.php:37
msgid ""
"Choosing the behavior of taking children elements can be very handy. "
"Especially if you have very large nested menus, which would require to "
"manually drag and drop every child element to its new parent element. This "
"is the scenario when the \"take-children\" behavior should be used when "
"inserting an menu item downwards. For better visualization, the following "
"image show the behavior."
msgstr ""
"Die Auswahl für das Übernehmen von Kindselementen kann sehr nützlich sein. "
"Dies ist der Fall, wenn man sehr große verschachtelte Menüs/Sub-Menüs hat, "
"welche sonst eine manuelle Anpassung jedes einzelnen Kindselement erfordert. "
"Das ist das Szenario für welches man dieses Verhalten beim abwärts Einfügen/"
"Verschieben von Menüelementen verwenden sollte. Für eine bessere Vorstellung "
"zeigt das nachfolgende Bild das Verhalten."
#: admin/partials/downwards-inserting-behavior.php:44
#: admin/partials/leftwards-inserting-behavior.php:28
msgid ""
"Showing the take-children behavior of moving/inserting elements downwards."
msgstr ""
"Zeige das Kinderelemente-Übernehmen Verhalten beim abwärts Verschieben/"
"Einfügen von Elementen."
#: admin/partials/explaination-inserting-behavior-menu.php:7
msgid "Settings applied for inserting/moving menu items"
msgstr ""
"Einstellungen angewendet für das Einfügen/Verschieben von Menüelementen"
#: admin/partials/explaination-inserting-behavior-menu.php:10
msgid ""
"The current behavior for inserting/moving items downwards is: <span class="
"\"current-behavior bold\">%s</span>"
msgstr ""
"Das momentate Verhalten für das abwärts Einfügen/Verschieben ist: <span "
"class=\"current-behavior bold\">%s</span>"
#: admin/partials/explaination-inserting-behavior-menu.php:13
msgid ""
"By clicking the info icon you will see the description and an image "
"illustrating the different behaviors. Clicking again removes the section. "
"This is the behavior set on the settings page <a href=\"%s\" target=\"_blank"
"\">Simplify Menu Usage Settings</a>. To modify the current behavior just "
"temporarily you can click on the downwards arrow, which will change the "
"behavior just temporarily without saving it in the database. "
msgstr ""
"Durch das Drücken des Information-Icons siehst du die Beschreibung sowie ein "
"Bild, welches das jeweilige Verhalten darstellt. Erneutes drücken entfernt "
"diesen Abschnitt. Das ist das Verhalten, welches auf der Einstellungs-Seite "
"<a href=\"%s\" target=\"_blank\">Simplify Menu Usage Einstellungen</a> "
"gesetzt ist. Um das momentane Verhalten temporär zu ändern, kannst du auf "
"den Abwärtspfeil drücken. Dieser ändert das Verhalten nur temporär und "
"speichert nichts in der Datenbank."
#: admin/partials/explaination-inserting-down-behavior-settings.php:9
#: admin/partials/explaination-inserting-left-behavior-settings.php:15
msgid ""
"By clicking the info icon you will see the description and an image "
"illustrating the different behaviors. Clicking again removes the section."
msgstr ""
"Durch das Drücken des Information-Icons siehst du die Beschreibung sowie ein "
"Bild, welches das jeweilige Verhalten darstellt. Erneutes drücken entfernt "
"diesen Abschnitt."
#: admin/partials/explaination-inserting-left-behavior-settings.php:10
msgid ""
"The behavior when moving/inserting menu elements downwards is explained "
"below the relevant setting. The modification for leftwards moving/inserting "
"can be explained as follows. The behavior of moving/inserting menu elements "
"leftwards is the same as provided by WordPress except when the following "
"menu items become child elements and represent a submenu."
msgstr ""
"Das Verhalten beim abwärts Verschieben/Einfügen von Menüelementen ist "
"unterhalb der relevanten Einstellung beschrieben. Die Veränderung für "
"seitwärts (links) Verschieben/Einfügen kann wie folgt beschrieben werden. "
"Das Verhalten beim Verschieben/Einfügen von Menüelementen ist dasselbe wie "
"von WordPress ausgenommen wenn die nachfolgenden Menüelemente zu "
"Kindselemente werden würden und dadurch ein Sub-Menü darstellen."
#: admin/partials/leftwards-inserting-behavior.php:11
msgid ""
"The default behavior is the standard way how WordPress handles inserting "
"menu items leftwards. To put it simply, if the next menu item will not "
"become a child element of the element, which is going to be moved left the "
"behavior is the default one used by WordPress."
msgstr ""
"Das Standardverhalten ist dasselbe wie es WordPress handelt beim seitwärts "
"(links) Einfügen von Menüelementen. Kurz gesagt, wenn das folgende "
"Menüelement kein Kindselement von dem zu einfügenden/verschiebenden Element "
"wird, kommt das standardmäßige WordPress-Verhalten zum Einsatz."
#: admin/partials/leftwards-inserting-behavior.php:23
msgid ""
"The behavior of taking children elements is automatically applied when the "
"next menu item becomes a child element of the menu item, which is moved/"
"inserted leftwards."
msgstr ""
"Das Verhalten vom Übernehmen von Kindselementen wird automatisch angewendet "
"wenn das nächste Menüelement ein Kindselement darstellen würde von dem "
"seitwärts (links) zu einfügenden/verschiebenden Element."
#: admin/partials/rating-banner.php:7
msgid "Simplify Menu Usage says Thank you!"
msgstr "Simplify Menu Usage bedankt sich vielmals."
#: admin/partials/rating-banner.php:9
msgid ""
"I hope the \"Simplify Menu Usage\" plugin helps you working more efficient "
"on your site. If you like it, it would be very kind if you rate the plugin."
msgstr ""
"Ich hoffe das Plugin \"Simplify Menu Usage\" hilft dir effizienter an deiner "
"Seite zu arbeiten. Falls du es magst, wäre es nett wenn du eine Bewertung "
"für das Plugin abgibst."
#: admin/partials/rating-banner.php:13
msgid "Dismiss"
msgstr "verwerfen"
#: admin/partials/rating-banner.php:15
msgid "Rate Simplify Menu Usage"
msgstr "Simplify Menu Usage bewerten"
#: admin/settings_page/elements/validators/email-validator.php:9
msgid "No valid Email"
msgstr "keine gültige E-Mail"
#: admin/settings_page/elements/validators/file-validator.php:9
msgid "The entered data is no valid attachment id"
msgstr "keine gültige Anhangs-Id"
#: admin/settings_page/elements/validators/number-validator.php:9
msgid "The entered data is not valid - just numbers"
msgstr "Daten sind nicht gültig - nur Zahlen"
#: admin/settings_page/elements/validators/string-validator.php:12
msgid "The entered data is not valid - just text"
msgstr "Daten sind nicht gültig - nur Text"
#: admin/settings_page/pages/simplify_menu_usage_page/options.php:8
msgid "Simplify Menu Usage Settings"
msgstr "Simplify Menu Usage Einstellungen"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:10
msgid "Info"
msgstr "Information"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:14
msgid ""
"The Simplify Menu Usage plugin let you work faster with menus in the "
"backend. The behavior of inserting/moving menu items is partially modified."
msgstr ""
"Das Simplify Menu Usage Plugin hilft dir dabei schneller mit den Menüs im "
"Backend zu arbeiten. Das Verhalten beim Einfügen/Verschieben von "
"Menüelementen ist teilweise verändert."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:24
msgid "General Settings"
msgstr "Generelle Einstellungen"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:28
msgid ""
"In this section you can define the default behavior of inserting/moving menu "
"items downwards."
msgstr ""
"In diesem Bereich kann man das standardmäßige Verhalten für das abwärts "
"Einfügen/Verschieben von Menüelementen hinterlegen."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:39
msgid "Display description on menu page"
msgstr "zeige Beschreibung auf der Menüseite an"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:45
msgid ""
"This option displays the description of the different behaviors on the menu "
"edit page in the admin dashboard."
msgstr ""
"Diese Einstellung zeigt die Beschreibungen der verschiedenen "
"Verhaltensweisen auf der Menüseite im Admin-Dashboard an."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:50
msgid "Display description"
msgstr "zeige Beschreibung an"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:51
msgid "Do not display description"
msgstr "zeige Beschreibung nicht an"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:59
msgid "Behavior when inserting a menu item downwars"
msgstr "Verhalten wenn ein Menüelement abwärts eingefügt wird."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:65
msgid ""
"The different options change the behavior of inserting/moving menu items "
"downwards."
msgstr ""
"Die verschiedenen Einstellungen können das Verhalten vom abwärts Einfügen/"
"Verschieben der Menüelemente verändern."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:71
msgid "Default inserting"
msgstr "standardmäßiges Einfügen"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:72
msgid "Insert on same level"
msgstr "Einfügen auf selber Ebene"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:73
msgid "Take children elements"
msgstr "Kinder-Elemente übernehmen"
#: admin/settings_page/setting-string-helper.php:8
msgid "Field \"%s\" is required"
msgstr "Feld \"%s\" ist verpflichtend"
#: admin/settings_page/setting-string-helper.php:9
msgid "Do not change value of field \"%s\""
msgstr "ändere nicht den Wert von Feld \"%s\""
#: admin/settings_page/setting-string-helper.php:19
msgid "Field is required"
msgstr "Feld ist verpflichtend"
#: admin/settings_page/setting-string-helper.php:20
msgid "Do not change value of field"
msgstr "ändere nicht den Wert vom Feld"
#: admin/settings_page/templates/pages/menu_page.php:16
#: admin/settings_page/templates/pages/tabbed_menu_page.php:31
msgid "Fields marked with * are required"
msgstr "Felder mit einem * sind verpflichtend"
#: admin/settings_page/templates/pages/menu_page.php:19
msgid "Save Settings"
msgstr "Einstellungen speichern"
#: admin/settings_page/templates/settings/fields/file.php:7
msgid "Upload File"
msgstr "Datei hochladen"
#: admin/settings_page/templates/settings/fields/file.php:14
msgid "Remove File"
msgstr "Datei entfernen"
#: admin/settings_page/templates/settings/fields/image.php:8
msgid "Upload Image"
msgstr "Bild hochladen"
#: admin/settings_page/templates/settings/fields/image.php:11
msgid "Remove Image"
msgstr "Bild entfernen"
#~ msgid ""
#~ "Choosing the default behavior is the standard way how WordPress handles "
#~ "inserting menu items downwards. To put it simply, if the next menu item "
#~ "will not become a child element of the element, which is going to be "
#~ "moved left the behavior is the default one used by WordPress."
#~ msgstr "Die Auswahl für das Standardverhalten "
#~ msgid ""
#~ "Choosing the behavior of taking children elements can be very handy. "
#~ "Especially if you have very large nested menus, which would require to "
#~ "manually drag and drop every child element to its new parent element. "
#~ "This is the scenario when the \"take-children\" behavior should be used "
#~ "when inserting an menu item leftwards. For better visualization, the "
#~ "following image show the behavior."
#~ msgstr ""
#~ "Die Auswahl für das Übernehmen von Kindselementen kann sehr nützlich "
#~ "sein. Dies ist der Fall, wenn man sehr große verschachtelte Menüs/Sub-"
#~ "Menüs hat, welche sonst eine manuelle Anpassung jedes einzelnen "
#~ "Kindselement erfordert. Das ist das Szenario für welches man dieses "
#~ "Verhalten beim seitwärts (links) Einfügen/Verschieben von Menüelementen "
#~ "verwenden sollte. Für eine bessere Vorstellung zeigt das nachfolgende "
#~ "Bild das Verhalten."
#~ msgid ""
#~ "The Simplify Menu Usage plugin let you work faster with menus in the "
#~ "backend. The behavior of inserting/moving menu items is partially "
#~ "modified. This is the case for downwards and leftwards inserting/moving. "
#~ "The different behaviors concerning downwards moving are described below "
#~ "the relevant setting. The behavior for the leftwards moving is nearly the "
#~ "same as provided by WordPress. The only difference is that leftwards "
#~ "moving can lead to new submenus if the menu item would become a new "
#~ "submenu parent by moving one step left."
#~ msgstr ""
#~ "Das Simplify Menu Usage - Plugin lässt dich schneller mit Menüs im "
#~ "Backend arbeiten. Das Verhalten vom Einfügen/Verschieben der Menüelemente "
#~ "ist teilweise verändert. Das ist der Fall für das abwärts und seitwärts "
#~ "(links) Einfügen/Verschieben. Die unterschiedlichen Verhaltensweisen "
#~ "bezüglich der abwärts Bewegung sind unterhalb der relevanten Einstellung "
#~ "beschrieben. Das Verhalten für die seitwärts (links) Bewegung ist beinahe "
#~ "dieselbe wie von WordPress. Der einzige Unterschied liegt darin, dass die "
#~ "seitwärts (links) Bewegung zu neuen Sub-Menüs führen kann, falls das zu "
#~ "bewegende/einfügende Menü-Element ein Sub-Menü verwalten würde."
#~ msgid ""
#~ "In this section you can define the default behavior of inserting/moving "
#~ "menu items downwards. Furthermore you can define addtional settings "
#~ "enriching the usability."
#~ msgstr ""
#~ "In diesem Abschnitt kannst du das standardmäßige Verhalten vom abwärts "
#~ "Einfügen/Verschieben der Menüelemente definieren."

View File

@@ -0,0 +1,5 @@
### Changelog
#### **1.0.0** 17 July 2020
+ Initial release

View File

@@ -0,0 +1,18 @@
= 4.2.0 - Jul 25, 2020
* Add conditional free shipping feature.
* Add custom label and location for suburb area field.
* Fix shipment notifications.
* Fix parcel size, volume and weight calculations.
* Add parcel dimension configuration at both global and product levels.
* Add order id as WayBill reference.
* Add order notes for Parcel Perfect endpoint queries.
* Problem of variable products not calculating resolved with new methods.
* Adjust Waybill position and add clickable link in emails.
* Fix deprecated code warnings.
* Fix PHP missing index warnings.
* Fix collections submitted for the following day.
* Fix contact number is present where the name is supposed to go.
* Add option: If free shipping is active, remove all other shipping methods from checkout.
* Add option: Enable free shipping if selected products are in the cart.
* Add option: Enable free shipping if shipping total is a selected percentage of the total order value.
* Added VAT option for TCG shipping.

View File

@@ -0,0 +1,4 @@
*** Product likes & comments Changelog ***
2020-07-13 - version 1.0.0
* Initial release

View File

@@ -0,0 +1,9 @@
/***1.0.2 - 2020.07.21**/
- Escape Button and HTML Code
- Update bootstrap.min.css to 4.5
/***1.0.1 - 2020.07.20**/
- Fixing Wordpress Team review
/***1.0.0 - 2020.07.20**/
- Release

View File

@@ -0,0 +1,3 @@
comment-author:before,.comment-author:after,.widget-area:before,.widget-area:after,.widget:before,.widget:after {
/* Some style */
}

View File

@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
s.executables = ['wpscan']
s.require_paths = ['lib']
s.add_dependency 'cms_scanner', '~> 0.12.0'
s.add_dependency 'cms_scanner', '~> 0.12.1'
s.add_development_dependency 'bundler', '>= 1.6'
s.add_development_dependency 'memory_profiler', '~> 0.9.13'