Compare commits
58 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c1aeaab3d | ||
|
|
f9366f6da6 | ||
|
|
a9f3624a9b | ||
|
|
3305692808 | ||
|
|
4c50336793 | ||
|
|
ed89ea4a78 | ||
|
|
58bde8c26a | ||
|
|
39d4e94fbb | ||
|
|
a87e394b6d | ||
|
|
b48d11374f | ||
|
|
a8f913c020 | ||
|
|
3f4877a3a0 | ||
|
|
5feb6ffe34 | ||
|
|
90b61d035e | ||
|
|
05c21fb0a8 | ||
|
|
28cdf8e649 | ||
|
|
d1f2781929 | ||
|
|
6b57da0d8a | ||
|
|
b38f94ef39 | ||
|
|
06e3c76ac6 | ||
|
|
885bf041c4 | ||
|
|
ffe8574c51 | ||
|
|
910d34c721 | ||
|
|
5fec3a97c5 | ||
|
|
37f7dddac7 | ||
|
|
05d912e658 | ||
|
|
4bd87b2953 | ||
|
|
a4c843e51e | ||
|
|
7f9295ad54 | ||
|
|
0ab3d16be9 | ||
|
|
93f2e18811 | ||
|
|
ccd7324590 | ||
|
|
7323e8aa08 | ||
|
|
035830d7bc | ||
|
|
eaaefe2cf5 | ||
|
|
9499caf7b8 | ||
|
|
a677cf87cd | ||
|
|
2fc872ae6f | ||
|
|
27d4d14303 | ||
|
|
434f8819a2 | ||
|
|
97ad2dc158 | ||
|
|
8c1b8b5fda | ||
|
|
e179b7ae66 | ||
|
|
3af18b4fcb | ||
|
|
f4ddff64e9 | ||
|
|
0f587c4292 | ||
|
|
cc7f284d93 | ||
|
|
ebe6c50e15 | ||
|
|
19a4671e59 | ||
|
|
e505afe9df | ||
|
|
2632c6ed86 | ||
|
|
2f5ad3a338 | ||
|
|
7ea45a5f9b | ||
|
|
9d06ffe83a | ||
|
|
11394eaa9f | ||
|
|
8353161451 | ||
|
|
cbc52b977f | ||
|
|
e0b47d7501 |
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -9,14 +9,14 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7, 3.0]
|
||||
ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
|
||||
13
.github/workflows/docker.yml
vendored
13
.github/workflows/docker.yml
vendored
@@ -7,7 +7,7 @@ on:
|
||||
release:
|
||||
types: [published]
|
||||
schedule:
|
||||
- cron: '0 7 * * *'
|
||||
- cron: "0 7 * * *"
|
||||
|
||||
jobs:
|
||||
images:
|
||||
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
@@ -33,11 +33,17 @@ jobs:
|
||||
echo DOCKER_TAG is not set!
|
||||
exit 1
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
id: buildx
|
||||
with:
|
||||
install: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1.10.0
|
||||
uses: docker/login-action@v1.14.1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
@@ -45,5 +51,6 @@ jobs:
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
tags: wpscanteam/wpscan:${{ env.DOCKER_TAG }}
|
||||
|
||||
2
.github/workflows/gempush.yml
vendored
2
.github/workflows/gempush.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
with:
|
||||
|
||||
@@ -59,13 +59,13 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The best version number detected from the changelog section
|
||||
def from_changelog_section(body)
|
||||
extracted_versions = body.scan(%r{=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[ \ta-z0-9().\-/]*=+}i)
|
||||
extracted_versions = body.scan(/^=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[^=]*=+$/i)
|
||||
|
||||
return if extracted_versions.nil? || extracted_versions.empty?
|
||||
|
||||
extracted_versions.flatten!
|
||||
# must contain at least one number
|
||||
extracted_versions = extracted_versions.select { |x| x =~ /[0-9]+/ }
|
||||
extracted_versions = extracted_versions.grep(/[0-9]+/)
|
||||
|
||||
sorted = extracted_versions.sort do |x, y|
|
||||
Gem::Version.new(x) <=> Gem::Version.new(y)
|
||||
|
||||
@@ -24,6 +24,10 @@ module WPScan
|
||||
|
||||
FileUtils.mkdir_p(repo_directory.to_s) unless Dir.exist?(repo_directory.to_s)
|
||||
|
||||
# When --no-update is passed, return to avoid raising an error if the directory is not writable
|
||||
# Mainly there for Homebrew: https://github.com/wpscanteam/wpscan/pull/1455
|
||||
return if ParsedCli.update == false
|
||||
|
||||
unless repo_directory.writable?
|
||||
raise "#{repo_directory} is not writable (uid: #{Process.uid}, gid: #{Process.gid})"
|
||||
end
|
||||
@@ -131,7 +135,7 @@ module WPScan
|
||||
res = Typhoeus.get(file_url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
File.open(file_path, 'wb') { |f| f.write(res.body) }
|
||||
File.binwrite(file_path, res.body)
|
||||
|
||||
local_file_checksum(filename)
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.19'
|
||||
VERSION = '3.8.22'
|
||||
end
|
||||
|
||||
@@ -108,7 +108,8 @@ describe WPScan::Finders::PluginVersion::Readme do
|
||||
'advanced-most-recent-posts-mod' => '1.6.5.2',
|
||||
'a-lead-capture-contact-form-and-tab-button-by-awebvoicecom' => '3.1',
|
||||
'backup-scheduler' => '1.5.9',
|
||||
'release_date_slash' => '1.0.4'
|
||||
'release_date_slash' => '1.0.4',
|
||||
'cool_tag_cloud' => '2.27'
|
||||
}.each do |file, version_number|
|
||||
context "whith #{file}.txt" do
|
||||
it 'returns the expected version' do
|
||||
|
||||
9934
spec/fixtures/db/dynamic_finders.yml
vendored
9934
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
4406
spec/fixtures/dynamic_finders/expected.yml
vendored
4406
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,2 @@
|
||||
/**1.0.0 - 2022.04.01**/
|
||||
~ The first released.
|
||||
344
spec/fixtures/dynamic_finders/plugin_version/Ultimate_VC_Addons/change_log/changelog.txt
vendored
Normal file
344
spec/fixtures/dynamic_finders/plugin_version/Ultimate_VC_Addons/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,344 @@
|
||||
3.19.11 - 22 July 2021
|
||||
- Improvement: Compatibility with the WordPress 5.8
|
||||
- Fix: Advanced Carousel element not working properly.
|
||||
- Fix: The Price Box element is not showing horizontally.
|
||||
- Fix: Hotspot module styling options are not applying properly.
|
||||
- Fix: Functional code is showing when the interactive banner is used with the Advanced carousel.
|
||||
|
||||
3.19.10 - 04 June 2021
|
||||
- Improvement: Compatibility with the latest JavaScript and CSS standard rule.
|
||||
- Improvement: Added the prefix to all the PHP function and class name to avoid future conflicts.
|
||||
- Improvement: Added the prefix to the global variable, script and style handlers.
|
||||
- Fix: Fixed the PHP error foreach() argument must be of type array|object.
|
||||
- Fix: Fixed the PHP notice undefined index into the google font manager.
|
||||
|
||||
3.19.9 - 18 Feb 2021
|
||||
- Improvement : Updated the Smooth-scroll library.
|
||||
- Fix : Ultimate Icon conflict issue with Yoast SEO.
|
||||
- Fix : Console error unable to preventDefault inside passive event listener due to the target being treated as passive.
|
||||
- Fix : Console error cannot read property 'msie' of undefined.
|
||||
- Fix : Youtube video background is not working on MacOSX BigSur.
|
||||
- Fix : Console error cannot read property '1' of null.
|
||||
|
||||
3.19.8 - 12 Dec 2020
|
||||
- Improvement: Shortcode compatibility with PHP 8.0 – Deprecated: Function ultimate_wrap_shortcode_in_div().
|
||||
- Fix: Deprecated jquery issue into Interactive Mouse Parallax row background after WordPress - 5.6
|
||||
- Fix: Console warning jQuery.browser is deprecated after WordPress - 5.6
|
||||
- Fix: Console warning indexOf is not a function after WordPress - 5.6
|
||||
- Fix: Console warning jquery-fn-load is deprecated for below elements after WordPress - 5.6
|
||||
- Heading
|
||||
- Countdown
|
||||
- Creative-link
|
||||
- Dual-Button
|
||||
- Filp-Box
|
||||
- iHover
|
||||
- Info-banner
|
||||
- Info-Box
|
||||
- Info-circle
|
||||
- Modal popup
|
||||
- Team Module
|
||||
- Content Box
|
||||
- Image separator
|
||||
- Google Map
|
||||
- Advanced carousel
|
||||
|
||||
- Fix: Console warning pseudo-event is deprecated for below modules after WordPress - 5.6
|
||||
- Advanced Button
|
||||
- Flip-Box
|
||||
- Interactive Banner
|
||||
|
||||
3.19.7 - 09 Nov 2020
|
||||
- Improvement: Updated the jparallax.js library for the parallax effect.
|
||||
- Improvement: Updated the strings into the backend.
|
||||
- Fix - Console warning jquery-fn-load-is-deprecated.
|
||||
- Fix - Interactive Mouse Parallax row background not working.
|
||||
- Fix - Typography is not applied to prefix into the Fancy text element.
|
||||
|
||||
3.19.6 - 12 Aug 2020
|
||||
- Improvement: Compatibility to WordPress 5.5.
|
||||
- Fix: Google Fonts are not loading into the Google Font Manager tab for WordPress 5.5.
|
||||
- Fix: Upload the custom icon support is not working for WordPress 5.5.
|
||||
- Fix: Save button functionality is not working for the elements with the WordPress 5.5.
|
||||
- Fix: Switch buttons of the Element Tab and Debug Tab are not working with the WordPress 5.5.
|
||||
|
||||
3.19.5 - 16 June 2020
|
||||
- New: Users can now share non-personal usage data to help us test and develop better products. ( <a href="https://store.brainstormforce.com/usage-tracking/?utm_source=changelog&utm_medium=changelog&utm_campaign=usage_tracking" target="_blank" rel="noopener">Know More</a> )
|
||||
- Fix: Fixed the flip-box background overlapping issue into firefox.
|
||||
- Fix: Fixed the duplicate ID issue into the Counter element.
|
||||
- Fix: Fixed the PHP notice issue with the PHP 7.4
|
||||
- Fix: Breaking the UI for the video element while using the Vimeo link.
|
||||
- Fix: Fixed the PHP notice trying to access array offset on the value of type bool.
|
||||
|
||||
3.19.4 - 12 March 2020
|
||||
- Improvement: Updated Dual Color Heading element code for WPML compatibility.
|
||||
- Fix: PHP Notice of $icon_img variable is not defined.
|
||||
- Fix: Interactive Banner Captions come over the sticky header while scrolling.
|
||||
- Fix: PHP Notice of $img_width variable is not defined.
|
||||
- Fix: The hover text color of button2 stopped working for Dual button.
|
||||
- Fix: PHP Notice of $icon_size variable is not defined.
|
||||
- Fix: Rendering issue when background is not set for flip-box.
|
||||
- Fix: PHP Notice of $icon_border_radius variable is not defined.
|
||||
- Fix: Update the strings inside the modules.
|
||||
- Fix: PHP Notice of $icon_border_spacing variable is not defined.
|
||||
|
||||
3.19.3 - 20 Feb 2020
|
||||
- Improvement: Compatibility with latest WordPress PHP_CodeSniffer rules.
|
||||
|
||||
3.19.2 - 03 Feb 2020
|
||||
- Improvement: Hardened the security of the plugin.
|
||||
|
||||
3.19.1 - 22 Jan 2020
|
||||
- Security Fix: Cross-site scripting (XSS) vulnerability.
|
||||
|
||||
3.19.0 - 30 July 2019
|
||||
- New: Introducing Dual Color Heading Element.
|
||||
- Improvement: Added the Extra class option for the Hotspot item.
|
||||
- Improvement: Update WPML XML file for Compatibility.
|
||||
- Improvement: Update the string as an Element instead of Modules in backend settings.
|
||||
- Fix: PHP Notice of $ub variable is not initialized.
|
||||
- Fix: Hotspot glow animation color is not working.
|
||||
- Fix: PHP Warning in Team element appearing on the front end.
|
||||
- Removed purchase key License activation method as the API for this is now being deprecated by Envato.
|
||||
|
||||
3.18.0 - 18 Feb 2019
|
||||
- New: Introduce Ribbon element.
|
||||
- Improvement: Added the animation option for a marker in Google Map.
|
||||
- Fix: Advanced Carousel rendering issue when page refresh.
|
||||
- Fix: PHP Notice Undefined license-form-method variable.
|
||||
|
||||
3.17.1 - 6 Dec 2018
|
||||
- Improvement: Added Text transform option for Fancy text.
|
||||
- Improvement: Update WPML xml file for Compatibility.
|
||||
- Improvement: Added license key purchase form button in debug screen.
|
||||
- Fix: Spacing issue in Fancy text.
|
||||
- Fix: Advanced Carousel doesn't slide properly with one at a time option on Tablet and Mobile devices.
|
||||
|
||||
3.17.0 - 29 Oct 2018
|
||||
- New: Introduce Video element.
|
||||
- Improvement: Toolip will display in case of link in Just Icon.
|
||||
- Fix: Fancy Text not consistent in slide up option.
|
||||
- Removed purchase key License activation method as the API for this is now being deprecated by Envato.
|
||||
|
||||
3.16.26 - 27-Sept-2018
|
||||
- Improvement: Added Border radius option for Flip Box.
|
||||
- Fix: Advanced Tab collapsed when the value is not set for the Active tab.
|
||||
- Fix: Control option not working when Load script globally option is enabled in the hosted video.
|
||||
- Fix: Youtube video not working when the Viewport option is enabled.
|
||||
|
||||
3.16.25 - 22-Aug-2018
|
||||
- Improvement: Added Modal on menu option in Debug setting.
|
||||
- Improvement: Added Description color option for Flip Box.
|
||||
- Improvement: Updated YTplayer JS library for YouTube video.
|
||||
- Improvement: Updated fancy text element code for WPML compatibility.
|
||||
- Fix: Content visibility issue on mobile device in Advanced tab on accordion mode.
|
||||
- Fix: CSS duplication issue on resize in dual button element.
|
||||
- Fix: Timeline position issue in RTL condition.
|
||||
- Fix: Advanced carousel show slide issue in tab and mobile.
|
||||
|
||||
3.16.24 - 28-may-2018
|
||||
- Improvement: Updated registration form popup for updater with GDPR Compliance.
|
||||
- Improvement: Changed license to GPL v2.
|
||||
|
||||
3.16.23 - 15-may-2018
|
||||
- Improvement: Added post/page title select option for headings.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for Timeline.
|
||||
- Improvement: Added custom JS option on click of the advanced button.
|
||||
- Fix: Advanced Tabs accordion issue on default active tab.
|
||||
- Fix: Set false to PauseOnFocus in advance carousel settings.
|
||||
- Fix: Flipbox visibility issue while using custom height option.
|
||||
|
||||
3.16.22 - 11-April-2018
|
||||
- Improvement: Updated page builder name as WPBakery Page Builder instead of visual composer.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for package title and for subheading in Info table.
|
||||
- Improvement: New registration form popup for updater.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for list item title in Info list.
|
||||
- Improvement: Added Focus on select option on advanced carousel.
|
||||
- Improvement: Improve UI.
|
||||
- Fix: Rel Attribute option space issue.
|
||||
- Fix: Icon not uploaded due to server issue.
|
||||
- Fix: Advanced tab js causing issue in IE.
|
||||
- Fix: Flipbox module animation issue in firefox browser.
|
||||
- Fix: Info circle item animation issue in different Browsers while initial load.
|
||||
|
||||
3.16.21 - 3-January-2018
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for package title and for subheading in Price Box.
|
||||
- Fix: Conflict with venus theme function name.
|
||||
- Fix: Counter in Module's list have different name on page element list.
|
||||
- Fix: Dual button height issue on First loading with Advanced Tab.
|
||||
- Fix: Advanced Tabs ID does not work in URL.
|
||||
- Fix: HTML validation error in counter element.
|
||||
- Fix: RTL issue in effect 18 of ihover element.
|
||||
- Fix: Rel Attribute option is not working in advance button.
|
||||
- Fix: Space issue in anchor tag attribute.
|
||||
- Fix: Change the labels from optimized to combined in script & style tab and separator instead of seperator in heading element.
|
||||
|
||||
3.16.20 - 21-November-2017
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for title in Info-banner.
|
||||
- Improvement: Update WPML xml file for Compatibility.
|
||||
- Fix: Advanced Tab Active Tab option issue.
|
||||
- Fix: WPBakery Page Builder map element has issue with advanced tabs.
|
||||
- Fix: Fancy text issue with special character(&) in string.
|
||||
- Fix: Info circle connector alignment issue in RTL condition.
|
||||
- Fix: Info circle item animation issue in Safari Browser.
|
||||
- Fix: Modal Box - Close Modal On Overlay Click and ESC not working when selector option is used.
|
||||
- Fix: Info-circle border not applied properly in safari browser.
|
||||
- Fix: Interactive banner2 link redirect issue in touch devices.
|
||||
- Fix: Toggle button issue while using Visual Composer starter theme.
|
||||
|
||||
3.16.19.1 - 13-November-2017
|
||||
- Fix: Row background pattern images are not showing in effect tab.
|
||||
|
||||
3.16.19 - 6-November-2017
|
||||
- Improvement: Added info list border type option.
|
||||
- Improvement: Optimize plugin code and improved performance.
|
||||
- Improvement: Added padding option for info-circle item.
|
||||
- Improvement: Added time delay option for redirecting the links on touch devices in interactive banner2.
|
||||
- Fix: Info circle clipped at bottom / top is not working properly.
|
||||
- Fix: Info circle image alignment issue.
|
||||
- Fix: Advanced Tab content height issue on First loading with animation style.
|
||||
- Fix: Anchor tag link and tooltip issue in Just Icon.
|
||||
- Fix: Anchor tag link issue in Icon.
|
||||
- Fix: Timeline issue without timeline item disappear.
|
||||
- Fix: Js error in row background.
|
||||
- Fix: Smooth Scroll issue in Chrome Browser.
|
||||
- Fix: Dual button getting collapse in Advanced Tabs.
|
||||
|
||||
3.16.18 - 20-September-2017
|
||||
Security Fix: A cross-site scripting (XSS) vulnerability was discovered in html links, WordPress core has patched it's vulnerability in 4.8.2 release and we've also fix it for Ultimate Addons for Visual Composer.
|
||||
|
||||
3.16.17 - 13-September-2017
|
||||
- Improvement: Added modal Close icon design feature.
|
||||
- Improvement: Added modal popup close on ESC key.
|
||||
- Improvement: Added hover color option for button in Modal.
|
||||
- Improvement: Added modal hide feature on page load for mobile/tablet devices.
|
||||
- Improvement: Advance Tab navigation icon for accordion updated.
|
||||
- Fix: Need to change CSS for pan style in Info banner element.
|
||||
- Fix: Info circle responsive issue.
|
||||
|
||||
3.16.16 - 29-August-2017
|
||||
- Improvement: Advanced Tab ID is now editable.
|
||||
- Improvement: Link markup condition for team element need improvement.
|
||||
- Improvement: Added image alignment option for image in image separator.
|
||||
- Fix: Row separator tilt left right issue.
|
||||
- Fix: Info-Circle does not include image in description area.
|
||||
- Fix: Info-Circle animation not working properly.
|
||||
- Fix: Hosted video background height issue.
|
||||
- Fix: Video background placeholder images do not show up after video completes.
|
||||
- Fix: Timeline right side item spacing issue.
|
||||
- Fix: Timeline has html markup issue and point issue.
|
||||
- Fix: Scripts Loading issue in Carousel.
|
||||
- Fix: Scripts Loading issue in Fancy text.
|
||||
|
||||
3.16.15 - 16-August-2017
|
||||
- Improvement: Added tag options for titles in Flipbox.
|
||||
- Improvement: iHover style addition.
|
||||
- Fix: Info List icon position in RTL should not change.
|
||||
- Fix: Fancy text slide up effect is not working in the Advanced tab.
|
||||
- Fix: Advanced carousel dot navigation color option is not working.
|
||||
- Fix: Dual button getting collapse in expandable section.
|
||||
- Fix: Carousel loading issue in tabs.
|
||||
- Fix: Interactive banner-2 title alignment issue.
|
||||
- Fix: iHover style not working in Internet Explorer.
|
||||
|
||||
3.16.14.1 - 11-August-2017
|
||||
- Fix: Element converting into text-blocks.
|
||||
|
||||
3.16.14 - 1-August-2017
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for title in modules.
|
||||
- Improvement: Interactive banner added Title tags option.
|
||||
- Improvement: iHover - added Title tags option.
|
||||
- Improvement: Compress plugin images.
|
||||
- Fix: Timeline issue with the link.
|
||||
- Fix: Info box alignment issue with icon at right with heading.
|
||||
- Fix: Dual button font size and line height option not working.
|
||||
- Fix: Hotspot RTL Compatibility.
|
||||
- Fix: Just icon tooltip text is not working.
|
||||
- Fix: Fatal error for redeclaration class in modules.
|
||||
- Fix: Advanced tabs scroll issue while click on tab.
|
||||
|
||||
3.16.13 - 18-July-2017
|
||||
- Improvement: Optimize all the plugin code.
|
||||
- Improvement: Provide filters for theme authors to disable enqueing google fonts in front end.
|
||||
- Fix: Flipbox flip not working on some of the websites.
|
||||
|
||||
3.16.12 - 4-May-2017
|
||||
- Fix: PHP Warning in font manager appearing on front end for some users.
|
||||
|
||||
3.16.11 - 29-Apr-2017
|
||||
- Improved overall security of the plugin by added sanitization wherever required, All the Ajax actions are now checked for user capabilities and nounce to harden the security.
|
||||
- Fix: Dual button not working properly for the second style.
|
||||
- Fix: WooCommere compatibility for version v3.0.4.
|
||||
|
||||
3.16.10 - 07-Apr-2017
|
||||
- Fix: Google Fonts Manager loading fonts with http instead of https in the preview.
|
||||
- Fix: Google Fonts URL returning 404 if the generated URL had duplicate '|' character.
|
||||
- Fix: JavaScript error on WooCommerce v3.0 product pages.
|
||||
- Fix: Option disable parallax on mobile not working.
|
||||
- Fix: Info list aligning besides each other instead of one below other.
|
||||
|
||||
3.16.9 - 07-Mar-2017
|
||||
- Fix: Token invalid error appearing for some users when activating the license. We apologize for the inconvenience.
|
||||
- Fix: Dual button icon images not aligned to center.
|
||||
- Fix: Dual button second button linking to the first buttons link.
|
||||
- Fix: Dual button first button background size option not working when "Design your own" option is selected.
|
||||
- Fix: Advanced Tabs causing Javascript errors on pages with anchors with # links.
|
||||
- Fix: Advanced button "rel" option not working.
|
||||
- Fix: Some users having issues with appear animations not triggering correctly when the row/element is in the viewport.
|
||||
|
||||
3.16.8 - 20-Feb-2017
|
||||
- New: Added WPML Compatibility.
|
||||
- New: Option to pause on hover and center mode in Advanced carousel
|
||||
- New: Option to open selected tab by providing tab index number.
|
||||
- New: Option for title alignment in expandable section element.
|
||||
- New: Added margin/padding options for highlight box.
|
||||
- New: Option to select Zoom control position in Google maps element.
|
||||
- New: Added Typography option for Countdown.
|
||||
- New: All new license activation method to activate license key with just one click.
|
||||
- Improvement: Added aria labels for Next/Prev buttons in Advanced Carousel.
|
||||
- Improvement: RTL Support for All the elements.
|
||||
- Improvement: Rel and Title tag for all the links in all elements.
|
||||
- Improvement: Maps - Added option to enable/disable dragging effect on the desktop.
|
||||
- Improvement: Info Box - Added option to select heading tags for the title.
|
||||
- Improvement: Modal Box - Added support for hosted videos in the modal box, Add any video with WordPress media selector and Select "Hosted video" in option What is this video about.
|
||||
- Improvement: Optimized images in the plugins package.
|
||||
- Fixed: Ultimate Addons menu not being registered in some multisite environments.
|
||||
- Fixed: JavaScript files not being loaded on pages even if shortcode was present on a page.
|
||||
- Fixed: Animation effects in advanced carousel not working.
|
||||
- Fixed: Interactive banner 2 - Multiple interactive banners opening links in new tab, each link did not open a new tab, rather loaded the page in the same new tab.
|
||||
- Fixed: Info list - List alignment set to right breaks the content alignment to enter.
|
||||
- Fixed: Disable Parallax on mobile option not working.
|
||||
- Fixed: Insufficient memory error when activating the plugin from WP-CLI.
|
||||
- Fixed: Flipbox center aligned not working on mobile devices.
|
||||
|
||||
3.16.7 - 04-Aug-2016
|
||||
- Fixed: Appear animation conflict causing pages to creash in salient theme.
|
||||
- Fixed: Flip boxes not working when added inside advanced carousel on mobile phones.
|
||||
- Fixed: Info list causing descriptions not aligned in the center of adjacent icons.
|
||||
- Fixed: Appear animation breaking for some users.
|
||||
- Updaed slick js to latest version which fixes compatibility issues in Ultimate Carousel.
|
||||
- Lots of minor bug fixes and browser compatibility fixes.
|
||||
|
||||
3.16.6
|
||||
- Fixed: Font Icons - SSL issue for $_SERVER[HTTPS] failing
|
||||
- Fixed: Icon Manager - Font zip are not showing after being uploaded
|
||||
- Fixed: Icon Manager - Filetype x-zip allowed to upload
|
||||
- Fixed: Advacned Button - Animation issue while background image applied
|
||||
- Fixed: Video backgrounds - Safari browser alignment issue
|
||||
- Improvement: Google Maps - Changed Google Map policy support to new domains with API key required - http://bsf.io/google-map-api-key
|
||||
|
||||
3.16.5
|
||||
- Fixed: PHP 5.2 fatal error for transient fallback
|
||||
|
||||
3.16.4
|
||||
- Fixed: Video Backgrounds - VC stretch row and full height conflict
|
||||
- Fixed: Hosted Video background - JS console error
|
||||
- Fixed: IB 2 - Style 11 iOS issue
|
||||
- Fixed: Image param - content pass as array instead string
|
||||
- Fixed: Hotspot - Misalignment
|
||||
- Fixed: Row Backgrounds - Image separator conflict with full height option
|
||||
- Fixed: Admin - Redux CSS conflicts with UAVC
|
||||
- Fixed: Timeline - Backend structure break due image alignment
|
||||
- Fixed: Multiple video backgrounds - Poster images not showing on mobile devices
|
||||
- Improvement - Advanced Tabs - Responsive accordion scroll to container on open tab option - http://bsf.io/lmde8
|
||||
- Improvement - Advanced Button - Inline alignment option added to display buttons inline - http://bsf.io/bvkn4
|
||||
- BSF Core v1.17 - With fallback to W3 Total Cache's deleting transients on every page reload
|
||||
@@ -0,0 +1,622 @@
|
||||
# Copyright (C) 2022 AcademyLMS
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Academy Starter Templates 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/academy-starter-templates\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-20T16:36:06+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: academy-starter-templates\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Academy Starter Templates"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://demo.academylms.net"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Demo importer plugin for academy lms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AcademyLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://academylms.net"
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:183
|
||||
msgid "No relevent plugin for this demo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:38
|
||||
#: includes/library/customizer-importer.php:45
|
||||
msgid "Importing customizer settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:43
|
||||
msgid "Customizer settings import finished!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - file path
|
||||
#: includes/library/customizer-importer.php:73
|
||||
msgid "Error: The customizer import file is missing! File path: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:93
|
||||
msgid "Error: The customizer import file is not in a correct format. Please make sure to use the correct customizer import file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:99
|
||||
msgid "Error: The customizer import file is not suitable for current theme. You can only import customizer settings for the same theme or a child theme."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/downloader.php:59
|
||||
msgid "Missing URL for downloading a file!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s and %3$s - strong HTML tags, %2$s - file URL, %4$s - br HTML tag, %5$s - error code, %6$s - error message.
|
||||
#: includes/library/downloader.php:77
|
||||
msgid "An error occurred while fetching file from: %1$s%2$s%3$s!%4$sReason: %5$s - %6$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - br HTML tag, %2$s - file path
|
||||
#: includes/library/helpers.php:196
|
||||
#: includes/library/helpers.php:239
|
||||
msgid "An error occurred while writing file to your server! Tried to write a file to: %1$s%2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - br HTML tag, %2$s - file path
|
||||
#: includes/library/helpers.php:273
|
||||
msgid "An error occurred while reading a file from your server! Tried reading file from path: %1$s%2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s and %2$s - strong HTML tags, %3$s - HTML link to a doc page.
|
||||
#: includes/library/helpers.php:296
|
||||
msgid "This WordPress page does not have %1$sdirect%2$s write file access. This plugin needs it in order to save the demo import xml file to the upload directory of your site. You can change this setting with these instructions: %3$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:313
|
||||
msgid "An error occurred while retrieving reading/writing permissions to your server (could not retrieve WP filesystem credentials)!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:321
|
||||
msgid "Your WordPress login credentials don't allow to use WP_Filesystem!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:361
|
||||
msgid "Academy Starter Templates - "
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - opening div and paragraph HTML tags, %2$s - closing div and paragraph HTML tags.
|
||||
#: includes/library/helpers.php:395
|
||||
msgid "%1$sYour user role isn't high enough. You don't have permission to import demo data.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:428
|
||||
msgid "No file provided."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:456
|
||||
msgid "Content file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:460
|
||||
#: includes/library/helpers.php:476
|
||||
#: includes/library/helpers.php:492
|
||||
#: includes/library/helpers.php:503
|
||||
#: includes/library/helpers.php:522
|
||||
#: includes/library/helpers.php:530
|
||||
msgid "Upload files"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:472
|
||||
msgid "Widget file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:488
|
||||
msgid "Customizer file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:501
|
||||
msgid "Missing Redux option name! Please also enter the Redux option name!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:518
|
||||
msgid "Redux file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:528
|
||||
msgid "The import files were successfully uploaded!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the max execution time.
|
||||
#: includes/library/helpers.php:554
|
||||
msgid "Initial max execution time = %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - new line break, %2$s - the site URL, %3$s - the file path for content import, %4$s - the file path for widgets import, %5$s - the file path for widgets import, %6$s - the file path for redux import.
|
||||
#: includes/library/helpers.php:558
|
||||
msgid "Files info:%1$sSite URL = %2$s%1$sData file = %3$s%1$sWidget file = %4$s%1$sCustomizer file = %5$s%1$sRedux files:%1$s%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:561
|
||||
#: includes/library/helpers.php:562
|
||||
#: includes/library/helpers.php:563
|
||||
#: includes/library/helpers.php:564
|
||||
msgid "not defined!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:735
|
||||
#: includes/library/helpers.php:736
|
||||
msgid "Academy Starter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/importer.php:175
|
||||
msgid "New AJAX call!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:215
|
||||
msgid "No preview image defined for this import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:216
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:217
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:218
|
||||
msgid "Yes, import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:219
|
||||
msgid "Selected demo import:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:220
|
||||
msgid "Installing..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:221
|
||||
#: includes/library/wpcli-commands.php:154
|
||||
msgid "Importing..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:222
|
||||
msgid "Successfully Imported!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:223
|
||||
msgid "Install Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:224
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:225
|
||||
msgid "Import Failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:226
|
||||
msgid "Whoops, there was a problem importing your content."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:227
|
||||
msgid "Looks like some of the plugins failed to install. Please try again. If this issue persists, please manually install the failing plugins and come back to this step to import the theme demo data."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:228
|
||||
msgid "Invalid file type detected! Please select an XML file for the Content Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:229
|
||||
msgid "Invalid file type detected! Please select a JSON or WIE file for the Widgets Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:230
|
||||
msgid "Invalid file type detected! Please select a DAT file for the Customizer Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:231
|
||||
msgid "Invalid file type detected! Please select a JSON file for the Redux Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:248
|
||||
msgid "Manual import files are missing! Please select the import files and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:263
|
||||
#: includes/library/one-click-demo-import.php:308
|
||||
msgid "Manually uploaded files"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:320
|
||||
#: includes/library/one-click-demo-import.php:331
|
||||
msgid "Downloaded files"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the selected import.
|
||||
#: includes/library/one-click-demo-import.php:327
|
||||
msgid "The import files for: %s were successfully downloaded!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:335
|
||||
msgid "No import files specified!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:452
|
||||
#: views/import.php:118
|
||||
msgid "Import Complete!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:453
|
||||
#: views/import.php:121
|
||||
msgid "Congrats, your demo was imported successfully. You can now begin editing your site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:454
|
||||
msgid "Successful Import"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:457
|
||||
msgid "Your import completed, but some things may not have imported properly."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - link to the log file.
|
||||
#: includes/library/one-click-demo-import.php:461
|
||||
msgid "<p><a href=\"%s\" target=\"_blank\">View error log</a> for more information.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:86
|
||||
msgid "WPForms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:87
|
||||
msgid "Join 4,000,000+ professionals who build smarter forms and surveys with WPForms."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:93
|
||||
msgid "All in One SEO"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:94
|
||||
msgid "Use All in One SEO Pack to optimize your WordPress site for SEO."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:100
|
||||
msgid "MonsterInsights"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:101
|
||||
msgid "The #1 Google Analytics Plugin for WordPress that’s easy and powerful."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:107
|
||||
msgid "Custom Landing Pages by SeedProd"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:108
|
||||
msgid "Work on your site in private while visitors see a \"Coming Soon\" or \"Maintenance Mode\" page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:113
|
||||
msgid "Smash Balloon Social Photo Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:114
|
||||
msgid "Display beautifully clean, customizable, and responsive Instagram feeds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:119
|
||||
msgid "WP Mail SMTP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:120
|
||||
msgid "Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, Mailgun, and more."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:225
|
||||
msgid "Could not install the plugin. You don't have permission to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:231
|
||||
msgid "Could not install the plugin. Plugin slug is missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:236
|
||||
msgid "Plugin is already installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:244
|
||||
msgid "Plugin was already installed! We activated it for you."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:252
|
||||
msgid "Could not install the plugin. Don't have file permission."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:292
|
||||
msgid "Plugin installed and activated succesfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:299
|
||||
msgid "Could not install the plugin. WP Plugin installer could not retrieve plugin information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:20
|
||||
msgid "Academy Starter Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:22
|
||||
msgid "Questionmark icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:53
|
||||
msgid "Theme screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:41
|
||||
#: includes/library/widget-importer.php:52
|
||||
msgid "Importing widgets"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:88
|
||||
msgid "Error: Widget import file could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:118
|
||||
msgid "Error: Widget import data could not be read. Please try a different file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:156
|
||||
msgid "Sidebar does not exist in theme (moving widget to Inactive)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:177
|
||||
msgid "Site does not support widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:210
|
||||
msgid "Widget already exists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:275
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:278
|
||||
msgid "Imported to Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:284
|
||||
msgid "No Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:331
|
||||
msgid "No results for widget import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:35
|
||||
msgid "There are no predefined demo imports for currently active theme!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:38
|
||||
msgid "Here are the predefined demo imports:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:72
|
||||
msgid "At least one of the possible options should be set! Check them with --help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:123
|
||||
msgid "The \"predefined\" parameter should be a number (an index of the OCDI predefined demo import)!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:129
|
||||
msgid "The supplied predefined index does not exist! Please take a look at the available predefined demo imports:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:136
|
||||
msgid "Predefined demo import started! All other parameters will be ignored!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the selected demo import.
|
||||
#: includes/library/wpcli-commands.php:141
|
||||
msgid "Selected predefined demo import: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:144
|
||||
msgid "Preparing the demo import files..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:149
|
||||
msgid "Demo import files could not be retrieved!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:152
|
||||
msgid "Demo import files retrieved successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:174
|
||||
msgid "Predefined import finished!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:186
|
||||
msgid "Content import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:195
|
||||
msgid "Importing content (this might take a while)..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:197
|
||||
msgid "Importing content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:202
|
||||
msgid "Content import finished!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:204
|
||||
msgid "There were some issues while importing the content!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:223
|
||||
msgid "Widgets import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:227
|
||||
msgid "Importing widgets..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:232
|
||||
msgid "Widgets imported successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:234
|
||||
msgid "There were some issues while importing widgets!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:253
|
||||
msgid "Customizer import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:257
|
||||
msgid "Importing customizer settings..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:262
|
||||
msgid "Customizer settings imported successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:264
|
||||
msgid "There were some issues while importing customizer settings!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the executing action.
|
||||
#: includes/library/wpcli-commands.php:284
|
||||
msgid "Executing action: %s ..."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:28
|
||||
msgid "Before We Import Your Demo"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:30
|
||||
msgid "To ensure the best experience, installing the following plugins is strongly recommended, and in some cases required."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:43
|
||||
msgid "All required/recommended plugins are already installed. You can import your demo content."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:56
|
||||
#: views/import.php:89
|
||||
msgid "Star icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:71
|
||||
#: views/install-plugins.php:49
|
||||
msgid "Checkmark icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:73
|
||||
msgid "Lock icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:75
|
||||
#: views/install-plugins.php:50
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:85
|
||||
msgid "The plugins with %1$s are recommended by Academy Starter Templates plugin to help you grow your website. They are not required for the %2$s theme to work."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:98
|
||||
#: views/install-plugins.php:57
|
||||
msgid "Back icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:98
|
||||
#: views/install-plugins.php:57
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:99
|
||||
msgid "Continue & Import"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:108
|
||||
msgid "Importing Content"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:109
|
||||
msgid "Please sit tight while we import your content. Do not refresh the page or hit the back button."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:112
|
||||
msgid "Importing animation"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:129
|
||||
msgid "Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:130
|
||||
msgid "Visit Site"
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:25
|
||||
msgid "Install Recommended Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:27
|
||||
msgid "Want to use the best plugins for the job? Here is the list of awesome plugins that will help you achieve your goals."
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:58
|
||||
msgid "Install & Activate"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - the opening div and paragraph HTML tags, %2$s and %3$s - strong HTML tags, %4$s - the closing div and paragraph HTML tags.
|
||||
#: views/plugin-page.php:27
|
||||
msgid "%1$sWarning: your server is using %2$sPHP safe mode%3$s. This means that you might experience server timeout errors.%4$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:50
|
||||
msgid "All Demos"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:63
|
||||
msgid "Search Demos..."
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:86
|
||||
msgid "No preview image."
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:93
|
||||
msgid "Preview Demo"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:95
|
||||
msgid "Import Demo"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,204 @@
|
||||
# Copyright (C) 2021 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log Extension for TablePress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log Extension for TablePress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-tablepress\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-11T13:50:49+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-tablepress\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log Extension for TablePress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension for TablePress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP White Security"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpwhitesecurity.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:15
|
||||
#: wp-security-audit-log/custom-alerts.php:4
|
||||
msgid "TablePress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:26
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:5
|
||||
msgid "Monitor TablePress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:10
|
||||
msgid "A table was created"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:11
|
||||
msgid "Added the new table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:14
|
||||
#: wp-security-audit-log/custom-alerts.php:32
|
||||
#: wp-security-audit-log/custom-alerts.php:63
|
||||
#: wp-security-audit-log/custom-alerts.php:98
|
||||
#: wp-security-audit-log/custom-alerts.php:118
|
||||
#: wp-security-audit-log/custom-alerts.php:136
|
||||
#: wp-security-audit-log/custom-alerts.php:154
|
||||
msgid "Table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:15
|
||||
#: wp-security-audit-log/custom-alerts.php:99
|
||||
msgid "Number of rows"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:16
|
||||
#: wp-security-audit-log/custom-alerts.php:100
|
||||
msgid "Number of columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:19
|
||||
#: wp-security-audit-log/custom-alerts.php:50
|
||||
#: wp-security-audit-log/custom-alerts.php:66
|
||||
#: wp-security-audit-log/custom-alerts.php:84
|
||||
#: wp-security-audit-log/custom-alerts.php:105
|
||||
#: wp-security-audit-log/custom-alerts.php:123
|
||||
#: wp-security-audit-log/custom-alerts.php:141
|
||||
#: wp-security-audit-log/custom-alerts.php:157
|
||||
msgid "View in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:28
|
||||
msgid "A table was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:29
|
||||
msgid "Deleted the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:42
|
||||
msgid "A table was duplicated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:43
|
||||
msgid "Created a copy of the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:46
|
||||
msgid "New table name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:47
|
||||
#: wp-security-audit-log/custom-alerts.php:81
|
||||
msgid "New table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:59
|
||||
msgid "A table was imported"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:60
|
||||
msgid "Imported the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:76
|
||||
msgid "A table ID was changed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:77
|
||||
msgid "Changed the ID of the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:80
|
||||
msgid "Previous table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:94
|
||||
msgid "A table was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:95
|
||||
msgid "Made changes to the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:101
|
||||
msgid "Previous number of rows"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:102
|
||||
msgid "Previous number of columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:114
|
||||
msgid "A table row was added or removed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:115
|
||||
msgid "A row was added or removed from the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:119
|
||||
msgid "Previous row count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:120
|
||||
msgid "New row count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:132
|
||||
msgid "A table column was added or removed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:133
|
||||
msgid "A column was added or removed from the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:137
|
||||
msgid "Previous column count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:138
|
||||
msgid "New column count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:150
|
||||
msgid "A table option was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:151
|
||||
msgid "Changed the status of the table option %option_name% in %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:224
|
||||
msgid "The last row of the table is the table footer."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:226
|
||||
msgid "The first row of the table is the table header."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:228
|
||||
msgid "The background colors of consecutive rows shall alternate."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:230
|
||||
msgid "Highlight a row while the mouse cursor hovers above it by changing its background color."
|
||||
msgstr ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/additional-block-styles/change_log/changelog.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/additional-block-styles/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Additional Block Styles Changelog
|
||||
|
||||
## 1.0.0, 20220330
|
||||
|
||||
- Initial release.
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/admin-color-schemes/composer_file/package.json
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/admin-color-schemes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Admin-Color-Schemes",
|
||||
"slug": "admin-color-schemes",
|
||||
"description": "WordPress dashboard color schemes",
|
||||
"version": "3.0.0",
|
||||
"devDependencies": {
|
||||
"@wordpress/env": "4.2.0",
|
||||
"@wordpress/stylelint-config": "19.1.0",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-concat": "2.6.1",
|
||||
"gulp-csso": "4.0.1",
|
||||
"gulp-dart-sass": "1.0.2",
|
||||
"gulp-rename": "2.0.0",
|
||||
"gulp-rtlcss": "1.4.2",
|
||||
"stylelint": "13.13.1"
|
||||
},
|
||||
"stylelint": {
|
||||
"extends": [
|
||||
"@wordpress/stylelint-config/scss"
|
||||
],
|
||||
"rules": {
|
||||
"no-descending-specificity": null
|
||||
},
|
||||
"ignoreFiles": [
|
||||
"_*.scss",
|
||||
"editor.css"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"wp-env": "wp-env",
|
||||
"start": "gulp",
|
||||
"build": "gulp build",
|
||||
"lint": "stylelint */*.scss"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2022 CodeRockz
|
||||
# This file is distributed under the same license as the Advance Cash On Delivery For WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advance Cash On Delivery For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/coderockz-wc-advance-cod-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-03-25T16:59:24+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: coderockz-wc-advance-cod-free\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Advance Cash On Delivery For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://coderockz.com/downloads/woocommerce-advance-cash-on-delivery/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "CodeRockz"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://coderockz.com"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/advanced-quiz/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/advanced-quiz/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
= 1.0.0 =
|
||||
* WordPress 5.9 and PHP 8.0 ready
|
||||
|
||||
|
||||
47
spec/fixtures/dynamic_finders/plugin_version/agnoplay/translation_file/languages/nl.po
vendored
Normal file
47
spec/fixtures/dynamic_finders/plugin_version/agnoplay/translation_file/languages/nl.po
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: agnoplay wordpress v1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <info@agnoplay.com>\n"
|
||||
"POT-Creation-Date: 2021-08-04 11:36+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Egeniq <info@agnoplay.com>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: agnoplay-wordpress.php:98 agnoplay-wordpress.php:99
|
||||
#: agnoplay-wordpress.php:167
|
||||
msgid "Agnoplay settings"
|
||||
msgstr "Agnoplay instellingen"
|
||||
|
||||
#: agnoplay-wordpress.php:120
|
||||
msgid "Videoplayer brand ID"
|
||||
msgstr "Videospeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:128
|
||||
msgid "Liveplayer brand ID"
|
||||
msgstr "Livespeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:136
|
||||
msgid "Audioplayer brand ID"
|
||||
msgstr "Audiospeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:160
|
||||
msgid ""
|
||||
"Enter the brand ID of your players, including the equivalent license keys. "
|
||||
"Please contact Agnoplay for the correct values"
|
||||
msgstr ""
|
||||
"Voer het merk ID van uw spelers in, inclusief de bijbehorende "
|
||||
"licentiesleutels. Neem contact op met Agnoplay voor de correcte waarden"
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/ajax-search-bar/composer_file/package.json
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/ajax-search-bar/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "mysearchplugin",
|
||||
"version": "1.0.0",
|
||||
"description": "this is search plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start",
|
||||
"dev": "wp-scripts start",
|
||||
"devFast": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@wordpress/scripts": "*"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2020 RedNao
|
||||
# This file is distributed under the same license as the Easy Pricing Forms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Pricing Forms 1.2.13\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-calculation-forms\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-25T13:05:42+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: rednaoeasycalculationforms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Easy Pricing Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://smartforms.rednao.com/getit"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Order Forms, Quotes, Even Registration and more. If you need to calculate a price in your form this is the best builder for you."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "RedNao"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://rednao.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,7 @@
|
||||
Version 1.1 - February 18, 2022
|
||||
-Change Tutorial link
|
||||
-Fixed Bug related to Team configuration
|
||||
-Change the tested up
|
||||
|
||||
Version 1.0 - December 30, 2021
|
||||
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "fragment-amzn",
|
||||
"version": "1.0.1",
|
||||
"description": "Amazonの商品を検索してブロックに追加します。",
|
||||
"author": "fragment.co.jp",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^7.0.2",
|
||||
"@wordpress/blocks": "^11.1.0",
|
||||
"@wordpress/i18n": "^4.2.2",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^8.2.2",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-preset-env": "^1.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.5"
|
||||
}
|
||||
}
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with minor modifications,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0] - 8th Dec 2021
|
||||
Initial plugin release.
|
||||
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/arrayforms/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/arrayforms/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "arrayforms",
|
||||
"version": "1.0.0",
|
||||
"description": "Build Array Forms Embed",
|
||||
"author": "BuildArray.com",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/api-fetch": "^5.1.1",
|
||||
"@wordpress/block-editor": "^6.1.0",
|
||||
"@wordpress/blocks": "^9.1.0",
|
||||
"@wordpress/core-data": "^3.1.7",
|
||||
"@wordpress/i18n": "^4.1.0",
|
||||
"@wordpress/plugins": "^3.1.2",
|
||||
"axios": "^0.21.1",
|
||||
"immer": "^9.0.3",
|
||||
"react-transition-group": "^4.4.2",
|
||||
"styled-components": "^5.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.0",
|
||||
"dotenv-webpack": "^7.0.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,230 @@
|
||||
# Copyright (C) 2022 Khorshid, ArvanCloud
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ArvanCloud CDN 0.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/temp-git\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-17T17:05:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: arvancloud-cdn\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: wp-arvancloud-cdn.php:29
|
||||
msgid "ArvanCloud CDN"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.arvancloud.com/en/products/cdn"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "ArvanCloud CDN service caches your website content. Using this plugin, you will be able to purge and update the cached version, either manually or automatically, so that your users visit the latest version of your website at any time."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Khorshid, ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:113
|
||||
msgid "Please Wait"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:114
|
||||
msgid "Request sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:115
|
||||
msgid "Updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:116
|
||||
msgid "Update failed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:142
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:143
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:8
|
||||
msgid "CDN General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:151
|
||||
#: admin/partials/wp-arvancloud-cdn-about-us-display.php:2
|
||||
msgid "About ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:152
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:181
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:184
|
||||
msgid "Clear Cache"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:287
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:290
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:293
|
||||
msgid "Pending DNS changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:296
|
||||
msgid "Pending CDN"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:299
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:318
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:321
|
||||
msgid "Growth"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:324
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:327
|
||||
msgid "Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:47
|
||||
msgid "There was a problem. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:73
|
||||
#: admin/inc/class-request-handler.php:162
|
||||
#: admin/inc/class-request-handler.php:268
|
||||
msgid "ArvanCloud is not responding right now. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:79
|
||||
#: admin/inc/class-request-handler.php:170
|
||||
#: admin/inc/class-request-handler.php:270
|
||||
msgid "ArvanCloud API key is invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:87
|
||||
msgid "Purging CDN cache request sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:195
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:15
|
||||
msgid "-- not shown --"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:198
|
||||
msgid "Enter your API key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:217
|
||||
msgid "settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:237
|
||||
msgid "Invalid security token sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:245
|
||||
msgid "Invalid item sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-about-us-display.php:6
|
||||
msgid "ArvanCloud, an international cloud services provider in Germany, offers various effective solutions for its customers worldwide. As one of the fastest-growing cloud solutions providers in the market, with an exceptional team, cutting-edge technologies and equipment, ArvancCloud aims to become a leader in the cloud industry. <br /> Equipped with a globally distributed network of more than 40 PoPs, ArvanCloud prides itself on innovative cloud solutions at the best price and highest quality. With ArvanCloud solutions, every customer can enjoy a fast, secure, reliable, and affordable cloud service. <br /> ArvanCloud has always provided the broadest set of services possible, to make a significant difference in the cloud services industry. Currently, its portfolio includes numerous cloud products, such as Cloud CDN, Manage DNS, Cloud Security, Video Streaming, Live Streaming Platform, Cloud Object Storage, and Platform as a service."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:5
|
||||
msgid "CDN Plans"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:6
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:7
|
||||
msgid "Email Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:6
|
||||
msgid "Status: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:33
|
||||
msgid "Change API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:37
|
||||
msgid "Back to options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:43
|
||||
msgid "ArvanCloud panel →"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:18
|
||||
msgid "CDN Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:27
|
||||
msgid "Purge Cache"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:28
|
||||
msgid "This will help you to get the full version of the new data from your web server by clearing the cache data from Arvan servers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:37
|
||||
msgid "Always Online"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:38
|
||||
msgid "After activating of this feature, in case of website or webserver time out, the last saved version in arvancloud will be shown to the user. Arvancloud can only show the main page or dynamic pages if it has the permission to cache."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:47
|
||||
msgid "Development Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:48
|
||||
msgid "Activating Development Mode will temporarily stop caching so that developers can work easier. Web optimization will also be disabled."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:57
|
||||
msgid "Automatic cleaning"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:58
|
||||
msgid "Automatically clear cache when a post or page or custom post type is edited or created or deleted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:10
|
||||
msgid "Configure CDN API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:18
|
||||
msgid "Get API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:20
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: wp-arvancloud-cdn.php:30
|
||||
msgid "wp-arvancloud-cdn"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,254 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Logo Slide 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-logo-slide\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-21T10:44:52+05:45\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-logo-slide\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:75
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:76
|
||||
msgid "Ascendoor Logo Slide"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple logo slide with CSS transition effects."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. PHP Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:33
|
||||
msgid "Ascendoor Logo Slide plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. WordPress Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:48
|
||||
msgid "Ascendoor Logo Slide plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/build/index.js:1
|
||||
#: admin/resources/src/components/Loading/index.js:6
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:18
|
||||
#: admin/resources/src/components/Header/Info.js:136
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:26
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:40
|
||||
#: admin/resources/src/components/Header/Info.js:118
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:48
|
||||
msgid "Tablet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:62
|
||||
#: admin/resources/src/components/Header/Info.js:100
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:70
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:24
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:49
|
||||
msgid "Close info content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:62
|
||||
msgid "You have some inactive columns. Please use the guide below for the recommended setup."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:68
|
||||
msgid "Total Added Logos:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:80
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:99
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:83
|
||||
msgid "Min. No. of Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:89
|
||||
msgid "Inactive Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:167
|
||||
msgid "Duplicate logos to fill the inactive columns."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:19
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:21
|
||||
msgid "Select Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:101
|
||||
msgid "Add Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:61
|
||||
msgid "Logo Alt Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:74
|
||||
msgid "Logo Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:87
|
||||
msgid "Logo Link To"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:102
|
||||
msgid "Link Open In"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:63
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:87
|
||||
msgid "Close Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:109
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:144
|
||||
msgid "Manage Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:92
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:115
|
||||
msgid "Column Gap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:49
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:55
|
||||
msgid "Slide Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:71
|
||||
msgid "Slide Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:74
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:104
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:107
|
||||
msgid "Pause on Hover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:40
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:51
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:160
|
||||
msgid "Select Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:162
|
||||
msgid "Select Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:304
|
||||
msgid "Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:311
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:390
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:181
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:469
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:260
|
||||
msgid "Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:481
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:495
|
||||
msgid "Background Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:516
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:535
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:582
|
||||
msgid "Update Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:564
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:599
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:610
|
||||
msgid "Background Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:658
|
||||
msgid "Background Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:686
|
||||
msgid "Background Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:718
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:145
|
||||
msgid "Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:152
|
||||
msgid "Height (in PX)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:163
|
||||
msgid "Hint: 0 = Auto. The frontend logo container and the current backend preview container might not be the same. Set height based on frontend view."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,186 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Metadata Manager 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-metadata-manager\n"
|
||||
"Last-Translator: Ascendoor <info@ascendoor.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-27T14:44:34+05:45\n"
|
||||
"PO-Revision-Date: 2021-10-27 00:00+05:45\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-metadata-manager\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ascendoor Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "View and manage posts, terms, users and comments metadata."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:109
|
||||
msgid "Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:110
|
||||
msgid "Invalid Request!!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:111
|
||||
msgid "This meta data seems to be private. Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:112
|
||||
msgid "Reload page?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:113
|
||||
msgid "This meta data seems to be private. Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:114
|
||||
msgid "Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:83
|
||||
msgid "Comment Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:112
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:124
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:133
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:122
|
||||
msgid "Meta Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:115
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:127
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:136
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:125
|
||||
msgid "Meta Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:118
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:130
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:139
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:128
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:104
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:156
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:168
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:166
|
||||
msgid "Meta data list is empty."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:165
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:186
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:175
|
||||
msgid "Meta data not found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:198
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:210
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:218
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:207
|
||||
msgid "You are not allowed to delete this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:230
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:242
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:250
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:239
|
||||
msgid "You are not allowed to update this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:95
|
||||
msgid "Post Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:78
|
||||
msgid "Disable Metadata Manager for Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:109
|
||||
msgid "Disable Metadata Manager for Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:138
|
||||
msgid "Disable Metadata Manager for Users or Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:145
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:157
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:187
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:287
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:100
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:107
|
||||
msgid "Term Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:90
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:97
|
||||
msgid "User Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:41
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:73
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:48
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:80
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:59
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:91
|
||||
msgid "While updating, meta value will be sanitized and filtered with %1$s (if meta value contains HTML tags) or %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:107
|
||||
msgid "Delete meta key and value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:118
|
||||
msgid "Edit meta value"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - PHP Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:34
|
||||
msgid "Ascendoor Metadata Manager plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - WordPress Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:49
|
||||
msgid "Ascendoor Metadata Manager plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
# Atlas Content Modeler Changelog
|
||||
|
||||
## 0.8.0 - 2021-10-13
|
||||
|
||||
### Added
|
||||
- Share models between sites using the new Export and Import models feature. Visit Content Modeler → Tools to get started.
|
||||
- Added "author" support to custom post types. This unlocks new functionality such as assigning specific users to a post, and querying posts by author in WPGraphQL.
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the model icon could not be changed when editing an existing model.
|
||||
- Fixed bug in the Number field where you could not define a Step value without also defining a Max value.
|
||||
- Improved duplicate field slug detection to ensure forward and reverse slugs for the Relationship field are unique in WPGraphQL.
|
||||
|
||||
### Changed
|
||||
- The `@wordpress/i18n` package is no longer bundled in the plugin's scripts, relying on the version that ships with WordPress instead.
|
||||
|
||||
## 0.7.0 - 2021-10-04
|
||||
|
||||
### Added
|
||||
- Relationship Field: one-to-one and one-to-many relationships were renamed to many-to-one and many-to-many to accurately reflect their function.
|
||||
- Relationship Field: fields can now optionally include reverse references.
|
||||
- Relationship Field: added [Beta] flag as the feature takes shape.
|
||||
- Chore: set "Requires at least" to WordPress version 5.7
|
||||
- Chore: set "Requires PHP" to version 7.2
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the app prompted about "Unsaved changes" when no changes had been made.
|
||||
|
||||
## 0.6.0 - 2021-09-09
|
||||
|
||||
### Added
|
||||
- Create one-to-one and one-to-many relationships between model entries with the new Relationship field.
|
||||
- A plugin icon will appear on the plugin update page during future updates.
|
||||
|
||||
### Fixed
|
||||
- Improved modal scroll behavior and positioning.
|
||||
|
||||
## 0.5.0 - 2021-08-12
|
||||
|
||||
### Added
|
||||
- You can now add custom Taxonomies and assign them to your models. Visit Atlas Content Modeler → Taxonomies to get started.
|
||||
- Models and Taxonomies submenu items now appear in the admin sidebar below Atlas Content Modeler.
|
||||
|
||||
### Changed
|
||||
- Refactored PHP tests.
|
||||
|
||||
## 0.4.2 - 2021-08-04
|
||||
|
||||
### Added
|
||||
- Ability to choose an icon when creating or editing a model.
|
||||
- Option to restrict file types for the media field.
|
||||
- Generate WordPress changelog from the Markdown changelog so that changes are visible from the WordPress changes modal.
|
||||
- Plugin developer improvements: GitHub Pull Request template; Code Climate configuration; Makefile for test environments.
|
||||
|
||||
### Changed
|
||||
- Change “API Identifier” field title on model entry forms to “Model ID” with a new description to better reflect its use.
|
||||
- Continuous Integration: the generated plugin zip is now tested and verified before deploying.
|
||||
|
||||
### Fixed
|
||||
- Improve query generation for “Open in GraphiQL” to include lowercase model names and models with the same plural and singular name.
|
||||
- Improve sanitization of model slugs. Includes safe migration of existing model slugs.
|
||||
- Prevent a PHP warning during title filtering if post info can not be found.
|
||||
- Improve number field validation.
|
||||
|
||||
## 0.4.1 - 2021-06-24
|
||||
### Added
|
||||
- Generate POT language file for translations.
|
||||
|
||||
### Changed
|
||||
- Use `include` in place of `require` so that missing or corrupt files do not take WordPress down.
|
||||
|
||||
### Removed
|
||||
- Removed the Multiple Choice field for now while we add support for custom choice API IDs.
|
||||
|
||||
## 0.4.0 - 2021-06-22
|
||||
- First public release. There may be breaking changes until 1.0.0.
|
||||
|
||||
### Added
|
||||
- New Multiple Choice field (beta) to create radio and checklist groups.
|
||||
- New “Send Feedback” button to share your experience with us.
|
||||
- New model option for “Private” or “Public” API visibility.
|
||||
- The Text field now includes an optional character minimum and maximum count in Advanced Settings.
|
||||
- The Number field now includes an optional minimum, maximum and step value in Advanced Settings.
|
||||
- Prompt to complete edits to an open field when attempting to open another field.
|
||||
- Added LICENSE, CONTRIBUTING and CHANGELOG files.
|
||||
|
||||
### Changed
|
||||
- REST responses now show Atlas Content Modeler fields under an `acm_fields` property.
|
||||
- REST responses now display detailed information about media fields.
|
||||
- Changed “Text Length” to “Input Type” in the Text field. Text length is now determined in Advanced Settings. Input type lets developers choose an input or textarea field.
|
||||
- Increased the clickable area on dropdown menu items in the developer app.
|
||||
- Adjusted styling in the publisher app.
|
||||
- Refactored default value handling to improve field load times.
|
||||
- Internal REST routes now include an `atlas` prefix.
|
||||
- The README now includes a getting started guide.
|
||||
|
||||
### Fixed
|
||||
- Pressing return in the publisher app will now submit the form, instead of clearing fields.
|
||||
- Corrected an issue preventing fields from appearing in REST responses.
|
||||
- Prevented custom fields from showing in REST when `show_in_rest` is false.
|
||||
- Strings in the publisher and developer interfaces are now translatable.
|
||||
- Fixed Jest tests and add to Continuous Integration workflow.
|
||||
- Improved admin URL handling for WordPress sites hosted in a subfolder.
|
||||
- Improved plugin update error messages to include the name of the plugin reporting them.
|
||||
- Prevented a styling issue with the Content Modeler admin menu item.
|
||||
|
||||
## 0.3.0 - 2021-06-01
|
||||
### Added
|
||||
- Developers can now mark fields as required.
|
||||
- Publishers will see inline errors prompting them to fill required fields.
|
||||
|
||||
### Changed
|
||||
- Rebranded to Atlas Content Modeler.
|
||||
- Changed data storage format.
|
||||
- Changed model data option name from wpe_content_model_post_types to atlas_content_modeler_post_types.
|
||||
- Updated admin sidebar icons for settings and entries.
|
||||
- Improved Rich Text fields, including adding media support.
|
||||
- Open fields now close when another field is created or opened.
|
||||
- Media fields now have a WPGraphQL type of MediaItem instead of String to enable complete queries for media information.
|
||||
|
||||
### Fixed
|
||||
- Improved model and field list appearance at mobile screen widths.
|
||||
- Improved client-side field validation for publishers.
|
||||
- Hid duplicate page title on new entry screens.
|
||||
- Corrected headers when editing entries.
|
||||
- Protected meta fields to prevent them appearing in the Custom Fields meta box.
|
||||
|
||||
### Removed
|
||||
- Repeater fields have been removed.
|
||||
- Screen options have been removed from entry pages for content model post types.
|
||||
- Post thumbnail support has been removed for content model post types.
|
||||
|
||||
## 0.2.0 - 2021-05-07
|
||||
### Added
|
||||
- Publishers can now enter model entries via a form.
|
||||
- Developers have the option to set a field as the title field.
|
||||
- The plugin now checks for updates.
|
||||
- Model and field options now close on blur or when the escape key is pressed.
|
||||
- Model options include “Open in GraphiQL” if the WPGraphQL plugin is active.
|
||||
- Improved developer tooling for linting, including pre-commit hooks.
|
||||
|
||||
### Changed
|
||||
- The media field is restricted to single file uploads for now.
|
||||
|
||||
### Removed
|
||||
- Unused “Created on” column from the model table.
|
||||
|
||||
## 0.1.0
|
||||
- Initial version.
|
||||
File diff suppressed because it is too large
Load Diff
7
spec/fixtures/dynamic_finders/plugin_version/atom-featured-image/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/atom-featured-image/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
## Changelog ##
|
||||
|
||||
### 1.0 ###
|
||||
* Initial Release
|
||||
|
||||
### 1.0.1 ###
|
||||
* Link to settings page now available in list of installed plugins
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2022 Thomas Zwirner
|
||||
# This file is distributed under the GPL-2.0-or-later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Category for Posts 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/auto-category-for-posts\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-09T15:01:42+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: auto-category-for-posts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Auto Category for Posts"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Automatically add a default-category to each new post before it is first saved."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Thomas Zwirner"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.thomaszwirner.de"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:97
|
||||
#: admin/js.js:24
|
||||
msgid "Set as default"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:100
|
||||
#: admin/js.js:26
|
||||
msgid "Default category"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:153
|
||||
msgid "Error on saving new settings for default category."
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:184
|
||||
msgid "Given category does not exists."
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:188
|
||||
msgid "No new category-id given."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,43 @@
|
||||
# Copyright (c) $(date +'%Y') Automatic Image Uploader.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Automatic Image Uploader 1.2.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/automatic-image-uploader\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-21T05:53:35+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: aiu\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Automatic Image Uploader"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.iranimij.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Upload your images automatically."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Iman Heydari"
|
||||
msgstr ""
|
||||
|
||||
#: automatic-image-uploader.php:263
|
||||
msgid "Automatic image uploader"
|
||||
msgstr ""
|
||||
|
||||
#: automatic-image-uploader.php:264
|
||||
msgid "AIU"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.php:101
|
||||
msgid "The data has been saved."
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1.0.1
|
||||
* Initial release
|
||||
@@ -0,0 +1,146 @@
|
||||
# Copyright (C) 2021 Valice
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Banner Alerts 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/banner-alerts\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-28T21:27:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: banner-alerts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Admin/AdminPages.php:42
|
||||
msgid "Banner Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.banneralertsplugin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Provides an easy interface for creating and displaying alerts or notices as a banner on a website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Valice"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.valice.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:55
|
||||
msgid "Display title?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:58
|
||||
#: src/Admin/AdminPages.php:77
|
||||
#: src/Admin/AdminPages.php:92
|
||||
#: src/Admin/AdminPages.php:149
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:62
|
||||
#: src/Admin/AdminPages.php:81
|
||||
#: src/Admin/AdminPages.php:96
|
||||
#: src/Admin/AdminPages.php:153
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:66
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:70
|
||||
msgid "Display the title of alert in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:74
|
||||
msgid "Display read more link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:85
|
||||
msgid "Display read more link in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:89
|
||||
msgid "Display dismiss link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:100
|
||||
msgid "Allow alerts to be dismissed?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:104
|
||||
msgid "Display content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:107
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:111
|
||||
msgid "Full Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:115
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:119
|
||||
msgid "Choose the display setting for the alert message in the banner alert popup"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:123
|
||||
msgid "Open/Close Speed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:126
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:130
|
||||
msgid "Faster"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:134
|
||||
msgid "Slower"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:138
|
||||
msgid "Immediate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:142
|
||||
msgid "Choose the speed in which the alert is opened and closed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:146
|
||||
msgid "Use Slider"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:157
|
||||
msgid "Display alerts in a slider when multiple alerts are active?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:161
|
||||
msgid "Display styles"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:118
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:119
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:131
|
||||
msgid "A valid unix timestamp is required."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,138 @@
|
||||
# Copyright (C) 2022 J Hanlon | Waas Hero
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Login Module for Beaver Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/login-module-for-beaver-builder\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-03-17T06:27:47+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: login-module-for-bb\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Login Module for Beaver Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://waashero.com/login-hero-pro-for-beaver-builder/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add an easy to use Beaver Builder Login/Logout button module. Works for single sites and multisite."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "J Hanlon | Waas Hero"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://waashero.com"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:11
|
||||
msgid "Login Modal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:12
|
||||
msgid "User Login Popup Button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:13
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:28
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:31
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:37
|
||||
msgid "Log In Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:38
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:52
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:39
|
||||
msgid "Enter the text for the Log In button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:44
|
||||
msgid "Log Out Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:45
|
||||
msgid "Log Out"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:46
|
||||
msgid "Enter the text for the Log Out button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:51
|
||||
msgid "Popup Title"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:53
|
||||
msgid "Enter the text for the header in the Log In popup."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:58
|
||||
msgid "Popup Reset Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:59
|
||||
msgid "Lost your password? Click here to reset."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:60
|
||||
msgid "Enter the text for the Reset Password link in the Log In popup."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:69
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:72
|
||||
msgid "Sign In Popup"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:77
|
||||
msgid "Popup Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:89
|
||||
msgid "Popup Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:103
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:108
|
||||
msgid "Log In Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:120
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:144
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:169
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:132
|
||||
msgid "Log Out Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:157
|
||||
msgid "Popup Log In Button Color"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "wordpress-invoices-plugin",
|
||||
"version": "1.0.0",
|
||||
"description": "Beautiful and easy invoices for Wordpress",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"clone": "git clone https://github.com/mokuappio/serverless-invoices.git",
|
||||
"pull": "cd serverless-invoices && git pull",
|
||||
"config": "copy vue.config.js serverless-invoices\\vue.config.js && copy app.config.js serverless-invoices\\src\\config\\app.config.js",
|
||||
"build": "npm run config && cd serverless-invoices && npm i && npm run build",
|
||||
"prepare-release": "mv serverless-invoices/node_modules ../node_modules_temp && cp -r . ../bci",
|
||||
"clean-release": "rm -rf ../bci/.idea && rm -rf ../bci/.git && rm -rf ../bci/serverless-invoices/.git && mv ../node_modules_temp serverless-invoices/node_modules",
|
||||
"compress-release": "mv ../bci beautiful-custom-invoices && tar -a -c -f beautiful-custom-invoices.zip beautiful-custom-invoices && rm -rf beautiful-custom-invoices",
|
||||
"release": "npm run prepare-release && npm run clean-release && npm run compress-release"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org/elevateou/wordpress-invoices-plugin.git"
|
||||
},
|
||||
"author": "Elevate OU",
|
||||
"license": "ISC",
|
||||
"homepage": "https://bitbucket.org/elevateou/wordpress-invoices-plugin#readme"
|
||||
}
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
## [1.0.1] - 2021-09-29
|
||||
|
||||
- Fix fa-icon block type
|
||||
|
||||
## [1.0.0] - 2021-09-29
|
||||
|
||||
- First release
|
||||
156
spec/fixtures/dynamic_finders/plugin_version/bertha-ai-free/change_log/CHANGELOG.txt
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/bertha-ai-free/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
Changelog
|
||||
|
||||
V1.8.3
|
||||
- Added Tutorial Videos for All Templates to help you use Bertha so much better. An Inbuilt Academy is now on every template.
|
||||
- Added Avoid Duplication Setting for Ideas. Bertha now learns much quicker as to what you require.
|
||||
- Improved UI - We made Bertha prettier and easier to navigate.
|
||||
- Fixed Empty Ideas. Bertha thinks harder now before producing content.
|
||||
- Fixed Long Form Notice. The notice was appearing out of context.
|
||||
- Fixed Template Redirection Issue. Sometimes a user was running out of words and being sent to the wrong upgrade page. This has now been fixed.
|
||||
|
||||
V1.8.2
|
||||
- Added Lazy Load Effect for History, Favourite and Draft Tabs
|
||||
- Added Redo Button to Long Form Content
|
||||
- Updated Security
|
||||
- Improved UI
|
||||
- Fixed Divi Tinymce Double Icon Issue
|
||||
- Fixed Gutenberg Title Block
|
||||
|
||||
V1.8.1
|
||||
- Fixed Minor Bugs
|
||||
|
||||
V1.8.0
|
||||
- Improved UI
|
||||
- Added Report
|
||||
- Added Word Limit for Specific Site
|
||||
- Fixed Bertha Icon Click Issue
|
||||
- Fixed Search Icon in Long Form
|
||||
- Changed Descriptions for templates and Categories
|
||||
- Added Header to all Bertha Pages
|
||||
- Fixed Category button conflict with Atarim
|
||||
- Fixed Empty Long Form Content
|
||||
- Fixed Minor Bugs
|
||||
|
||||
|
||||
V1.7.1
|
||||
- Improved UI
|
||||
- Fixed Bertha Icons for Elementor and Visual Composer
|
||||
- Fixed Notice if Cursor is not in focus in any input field while clicking Idea for Divi, Elementor and Visual Composer
|
||||
- Fixed Paragrapg Generator Taxonomies and History Filter
|
||||
|
||||
V1.7.0
|
||||
- Added Compatibility with Atarim
|
||||
- Added Frontend Bertha
|
||||
- Updated Icons UI
|
||||
- Fixed Minor Bugs
|
||||
|
||||
V1.6.0
|
||||
- Improved UI
|
||||
- Improved long form content
|
||||
- Fixed Compatibility issue with Divi Latest Version
|
||||
- Fixed Compatibility issue with Yoast SEO
|
||||
- Added Bertha Icons on Every Admin Page
|
||||
- Modified Edit Draft Flow
|
||||
- Added Template Sorting Categories
|
||||
- Changed Blurb Generator Name
|
||||
- Added Trash
|
||||
- Added AIDA Marketing Framework Template
|
||||
- Added SEO City Based Pages Template
|
||||
- Added Business or Product Name Template
|
||||
- Added Before, After and Bridge Template
|
||||
- Added PAS Framework Template
|
||||
- Added FAQs List Template
|
||||
- Added FAQ Answers Template
|
||||
- Added Content Summary Template
|
||||
- Added Contact Form Blurb Template
|
||||
- Added SEO Keyword Suggestions Template
|
||||
- Added Evil Bertha Template
|
||||
|
||||
V1.5.0
|
||||
- Added Bertha Long Form Content
|
||||
- Fixed Launch Bertha Notice Text
|
||||
- Fixed Minor Bugs
|
||||
- Added new Icon styling and Improved UI
|
||||
|
||||
V1.4.0
|
||||
- Added Bertha Everywhere
|
||||
- Added Seo Title Tag Template
|
||||
- Added Seo Description Tag Template
|
||||
- Added Additional Title Type for Section Title Generator Template
|
||||
|
||||
V1.3.0
|
||||
- Added Copy & Favourites
|
||||
- Fixed License Activation Flow
|
||||
- Fixed Idea CPT Visibility from SEO Plugins
|
||||
- Added Notice if Cursor is not in focus in any input field while clicking Idea
|
||||
|
||||
V1.2.0
|
||||
- Updated Full-on About Us Page Template
|
||||
- Added Company Mission & Vision Template
|
||||
|
||||
V1.1.2
|
||||
- Modified compatibility issue with Visual Composer
|
||||
- Fixed structural bugs
|
||||
|
||||
V1.1.1
|
||||
- Fixed Idea CPT Visibility Issue
|
||||
- Fixed License Redirection Modal Issue
|
||||
- Fixed Exclude Idea CPT from Search
|
||||
- Fixed Backslash Issue with Idea Generation
|
||||
- Fixed Divi Compatibility Issue
|
||||
|
||||
V1.1.0
|
||||
- Fixed Empty Idea Generation
|
||||
- Fixed bootstrap compatibility issues
|
||||
|
||||
V1.0.9
|
||||
- Fixed bootstrap compatibility issues
|
||||
|
||||
V1.0.8
|
||||
- Added partial compatibility with Thrive Architect
|
||||
- Added Monthly Reset Token
|
||||
- Fixed Zapier Email event for 95% word Limit
|
||||
- Fixed compatibility with Beaver Builder
|
||||
- Fixed Redirection Flow after License Activation
|
||||
- Minor Bug Fixes
|
||||
|
||||
V1.0.7
|
||||
- Fixed Tooltips
|
||||
- Added partial compatibility with Beaver Builder
|
||||
- Added partial compatibility with Visual Composer
|
||||
- Added partial compatibility with Oxygen Builder
|
||||
- Minor Bug Fixes
|
||||
|
||||
|
||||
V1.0.6
|
||||
- Fixed Premium Tag Flow
|
||||
- Fixed Live Search Filter Flow
|
||||
- Added Placeholder for Live Search Filter
|
||||
- Added Character Limit for All Bertha AI Inputs
|
||||
- Fixed Descriptions hide issue while Back Flow
|
||||
- Modified Redirection Flow After Onboarding Process
|
||||
- Added Zapier Email Event for 1% and 95% Word Limit
|
||||
- Fixed Visibility of Upgrade Now button in General Setting
|
||||
- Changed Join The Facebook Community Button Link
|
||||
- Changed Become Bertha's Partner Button Link
|
||||
- Changed Post a Review Button Link
|
||||
- Added Latest Vesion in License Page
|
||||
- Fixed Bertha AI Menu Blank Redirection
|
||||
- Fixed Word Limit Restriction for templates
|
||||
- Fixed Buy Url for Limit Exceed
|
||||
- Added Redirect Url to Ran Out of Words Page for Limit Exceeded Templates
|
||||
- Added Notification for Empty History Filter Result
|
||||
- Fixed Suggest a Template Hide from Live Search
|
||||
|
||||
|
||||
V1.0.5
|
||||
- Added Template Access for Free & Pro Version Respectively
|
||||
- Added Live Search Filter for template Selection
|
||||
- Fixed Empty Ideas
|
||||
- Fixed Syntax Errors
|
||||
- Added Class to Upgrade Button
|
||||
- Changed Upgrade button Link
|
||||
- Added Notice for Empty History Tab
|
||||
- Added Premium Tag for Premium Templates
|
||||
- Changed Premium Templates Notice for Free Version
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR BeTheme
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BeThemesMe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-09 11:42+0530\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: includes/elementor-elements/features.php:42
|
||||
#: includes/elementor-elements/features.php:87
|
||||
msgid "Our Process"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:96
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:99
|
||||
msgid "Enter the title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:105
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:108
|
||||
msgid "Enter the description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:115
|
||||
msgid "Process Tabs"
|
||||
msgstr ""
|
||||
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "buddypress-birthdays",
|
||||
"version": "1.6.0",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays",
|
||||
"license": "GPL-2.0+",
|
||||
"description": "buddypress-birthdays",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-wp-i18n": "^1.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays"
|
||||
},
|
||||
"dependencies": {
|
||||
"load-grunt-tasks": "^3.5.2",
|
||||
"npm": "^8.1.4"
|
||||
}
|
||||
}
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/blaze-checkout/composer_file/package.json
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/blaze-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "blaze-woocommerce-plugin",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:Bureau-Inc/blaze-woocommerce-plugin",
|
||||
"author": "Blaze <palash@bureau.id>",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@prettier/plugin-php": "^0.17.6",
|
||||
"prettier": "^2.5.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Editor Gallery Slider 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\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"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Editor Navigator 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\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"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Search and Replace 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\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"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/block-xray-attributes/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/block-xray-attributes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "block-xray-attributes",
|
||||
"version": "1.1.1",
|
||||
"description": "Shows the attributes of the current Gutenberg block in the Document sidebar.",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"dev": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Sal Ferrarello",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^20.0.1"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 02-12-2021 =
|
||||
* Initial release
|
||||
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "luckies",
|
||||
"version": "2.0.1",
|
||||
"description": "",
|
||||
"main": "./src/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "Dragi Postolovski",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||
"@babel/preset-env": "^7.16.11",
|
||||
"@babel/preset-react": "^7.16.7",
|
||||
"@wordpress/scripts": "20.0.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,456 @@
|
||||
# Copyright (C) 2022 Wpmet
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blocks for ShopEngine - Woocommerce Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/blocks-for-shopengine\n"
|
||||
"POT-Creation-Date: 2022-03-31 06:55:31+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: blocks/product-review/dummy-review.php:54
|
||||
msgid "1"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:55
|
||||
msgid "2"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:56
|
||||
msgid "3"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:57
|
||||
msgid "4"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
#: blocks/product-review/dummy-review.php:58
|
||||
msgid "5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/add-to-cart/screen.php:16
|
||||
msgid "To see the add to cart button , please set stock status as instock for - ."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/additional-information/screen.php:4
|
||||
#: blocks/checkout-form-additional/screen.php:38
|
||||
msgid "Additional information"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/advanced-search/screen.php:32
|
||||
msgid "Search for Products..."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/archive-description/screen.php:26
|
||||
msgid ""
|
||||
"This is a dummy archive description based paragraph. It only appears on "
|
||||
"editor page and will help you to customize your actual description"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/archive-result-count/screen.php:9
|
||||
msgid "Showing all results"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:51
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:67
|
||||
msgid "Remove this item"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:81
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:96
|
||||
msgid "Available on backorder"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:103
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:110
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:138 blocks/cart-totals/screen.php:34
|
||||
#: blocks/cart-totals/screen.php:35
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-totals/screen.php:73 blocks/cart-totals/screen.php:74
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-totals/screen.php:93
|
||||
#. translators: %s location.
|
||||
msgid "(estimated for %s)"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-totals/screen.php:121 blocks/cart-totals/screen.php:122
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:35
|
||||
msgid "Have a coupon?"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:37
|
||||
msgid "Click here to enter your code"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:43
|
||||
msgid "If you have a coupon code, please apply it below."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:47
|
||||
msgid "Coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:52
|
||||
msgid "Apply coupon"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-billing/screen.php:47
|
||||
msgid "Billing & Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-billing/screen.php:51
|
||||
msgid "Billing details"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-billing/screen.php:79
|
||||
msgid "Create an account?"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-shipping/screen.php:36
|
||||
msgid "Ship to a different address?"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-payment/screen.php:30
|
||||
msgid ""
|
||||
"Your cart is empty, please add some simple product in cart and then come "
|
||||
"back to editor to see checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-review-order/screen.php:4
|
||||
msgid "Your order"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-review-order/screen.php:21
|
||||
msgid "Some hardcoded html only for editor...."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-shipping-methods/screen.php:25
|
||||
msgid "Some hardcoded html for editor only for checkout shipping method widget!."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:89
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:104 utils/helper.php:322
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:110 utils/helper.php:323
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:115
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:120
|
||||
msgid "Sec"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:157
|
||||
msgid "Available:"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:161
|
||||
msgid "Sold:"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:173
|
||||
msgid "No deal products available"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:3
|
||||
msgid "Default sorting"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:4
|
||||
msgid "Sort by popularity"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:5
|
||||
msgid "Sort by average rating"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:6
|
||||
msgid "Sort by latest"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:7
|
||||
msgid "Sort by price: low to high"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:8
|
||||
msgid "Sort by price: high to low"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:9
|
||||
msgid "Sort by title: a to z"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:10
|
||||
msgid "Sort by title: z to a"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:24 blocks/filter-orderby/screen.php:35
|
||||
msgid "Shop order"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-categories/screen.php:26
|
||||
msgid "Category:"
|
||||
msgid_plural "Categories:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/product-category-lists/screen.php:41
|
||||
msgid "%s product"
|
||||
msgid_plural "%s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/product-category-lists/screen.php:64
|
||||
msgid "Add some category"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-excerpt/screen.php:21
|
||||
msgid ""
|
||||
"Dummy short description only for editor preview mode if and only if the "
|
||||
"editor selected product has no short description."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-image/screen.php:31
|
||||
msgid "% OFF"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-list/screen.php:231 utils/helper.php:268
|
||||
msgid "Sale!"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-list/screen.php:256
|
||||
msgid ","
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-list/screen.php:307
|
||||
msgid "No product found."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-rating/screen.php:23
|
||||
msgid "%s customer review"
|
||||
msgid_plural "%s customer reviews"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:4
|
||||
msgid "2 reviews for"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:4
|
||||
msgid "(dummy reviews, only for preview)"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
msgid "Rated 5 out of 5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
#: blocks/product-review/dummy-review.php:27
|
||||
msgid "Rated"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
#: blocks/product-review/dummy-review.php:27
|
||||
msgid "out of 5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:12
|
||||
msgid "Jhon Doe"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:13
|
||||
#: blocks/product-review/dummy-review.php:30
|
||||
msgid "(verified owner)"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:27
|
||||
msgid "Rated 3 out of 5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:29
|
||||
msgid "David"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:31
|
||||
msgid "May 26, 2021"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:47
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:51
|
||||
msgid "Your rating"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:51
|
||||
#: blocks/product-review/dummy-review.php:71
|
||||
msgid "*"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:62
|
||||
msgid "Rate…"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:63
|
||||
msgid "Perfect"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:64
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:65
|
||||
msgid "Average"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:66
|
||||
msgid "Not that bad"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:67
|
||||
msgid "Very poor"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:71
|
||||
msgid "Your review"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:75
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-sku/screen.php:10
|
||||
msgid "This product has no sku"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-sku/screen.php:30
|
||||
msgid "SKU:"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-sku/screen.php:34
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-stock/screen.php:57
|
||||
msgid "On backorder"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-stock/screen.php:59
|
||||
msgid "In Stock"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-stock/screen.php:61
|
||||
msgid "Out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-tags/screen.php:13
|
||||
msgid "This product has no tags"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-tags/screen.php:25
|
||||
msgid "TAG:"
|
||||
msgid_plural "TAGs:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/recently-viewed-products/screen.php:76
|
||||
msgid "Ends in "
|
||||
msgstr ""
|
||||
|
||||
#: blocks/related/screen.php:60
|
||||
msgid "Some hardcoded html only for editor"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/return-to-shop/screen.php:9
|
||||
msgid "Return to shop"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/up-sells/screen.php:44
|
||||
msgid "Some hardcoded html for only editor....."
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:102
|
||||
msgid "Shopengine Gutenberg Addon requires ShopEngine version 2.1.1 or higher. "
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:119
|
||||
msgid "Activate ShopEngine"
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:122
|
||||
msgid "Install ShopEngine"
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:130
|
||||
msgid ""
|
||||
"Shopengine Gutenberg Addon requires ShopEngine, which is currently NOT "
|
||||
"RUNNING. "
|
||||
msgstr ""
|
||||
|
||||
#: utils/helper.php:324
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: utils/helper.php:325
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Blocks for ShopEngine - Woocommerce Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpmet.com/plugin/shopengine"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"ShopEngine Gutenberg Addon is the most-complete WooCommerce template "
|
||||
"builder for Elementor. It helps you build and customize the single product "
|
||||
"page, cart page, archive page, checkout page, order page, my account page, "
|
||||
"and thank-you page from scratch. It also packed with product comparison, "
|
||||
"wishlist, quick view, and variation swatches etc."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Wpmet"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpmet.com"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
@@ -0,0 +1,204 @@
|
||||
# Copyright (c) 2021 Zabir Anik. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Boostimer - Product Availability Countdown And Scheduler For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/xaviranik/boostimer/issues\n"
|
||||
"Last-Translator: zabiranik.me@gmail.com\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-11-27T16:21:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: boostimer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Boostimer - Product Availability Countdown And Scheduler For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "From sale to stock, Store-wise availability management in a breeze."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Zabir Anik"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://zabiranik.com"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "View Boostimer documentation"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Visit Boostimer forums"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Community support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menu.php:32
|
||||
#: includes/Admin/Menu.php:33
|
||||
msgid "Boostimer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:52
|
||||
msgid "Show sale timer?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:55
|
||||
msgid "Show sale countdown timer if sale price and schedules are set"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:77
|
||||
#: src/pages/Settings.js:63
|
||||
msgid "Settings have been updated successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:121
|
||||
msgid "Sale timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:127
|
||||
msgid "Sale timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:135
|
||||
msgid "Is sale timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:144
|
||||
msgid "Stock timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:150
|
||||
msgid "Stock timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:158
|
||||
msgid "Is stock timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/SaleTimer.php:22
|
||||
#: src/pages/Settings.js:153
|
||||
msgid "Sale ends in:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/StockTimer.php:22
|
||||
#: src/pages/Settings.js:170
|
||||
msgid "Expected restock in:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:20
|
||||
msgid "Show restock timer?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:23
|
||||
msgid "Show restock countdown timer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:31
|
||||
msgid "Stock available after"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:35
|
||||
msgid "Sets probable restock date"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:34
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:38
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:42
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:46
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/notice.php:24
|
||||
msgid "Boostimer is inactive"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:33
|
||||
msgid "%1$sLooks like, WooCommerce is not installed.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sinstall WooCommerce »%6$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:42
|
||||
msgid "%1$sLooks like, WooCommerce is deactivated.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sactivate WooCommerce%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Sidebar.js:41
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Home.js:11
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:58
|
||||
msgid "Saving settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:68
|
||||
msgid "Settings could not be saved. Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:107
|
||||
msgid "Show Countdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:114
|
||||
msgid "Show Sale Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:115
|
||||
msgid "Enable this to show countdown timer for sale duration on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:129
|
||||
msgid "Show Stock Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:130
|
||||
msgid "Enable this to show countdown timer for next available stock on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:141
|
||||
msgid "Timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:148
|
||||
msgid "Sale Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:149
|
||||
msgid "This text will show on the sale timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:165
|
||||
msgid "Stock Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:166
|
||||
msgid "This text will show on the stock timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:189
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,13 @@
|
||||
/**1.0.2 - 2021.11.29 **/
|
||||
- Fixed: Fixed bundle price with tax include/exclude
|
||||
|
||||
/**1.0.1 - 2021.11.25 **/
|
||||
- Updated: Compatible with WooCommerce 5.7.1
|
||||
- Updated: Update support file
|
||||
- Updated: Add language default template
|
||||
- Updated: Add product type prefix when searching the product on bundle product setting
|
||||
- Updated: Prevent image resize on bundle view
|
||||
- Updated: Slider for select product popup
|
||||
|
||||
/**1.0 - 2021.11 **/
|
||||
- The first released
|
||||
@@ -0,0 +1,60 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BP Search Block 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/buddypress/bp-blocks/issues\n"
|
||||
"Last-Translator: imath <contact@imathi.eu>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-30T15:46:43+00:00\n"
|
||||
"PO-Revision-Date: 2021-12-30 16:49+0100\n"
|
||||
"Language: fr\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: bp-search-block\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BP Search Block"
|
||||
msgstr "BP Search Block"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/buddypress/bp-blocks"
|
||||
msgstr "https://github.com/buddypress/bp-blocks"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Help the visitors or members of your BuddyPress powered community site to find the posts, the sites, the activities, the members or the groups they are looking for."
|
||||
msgstr "Aidez les visiteur·se·s ou membres de votre site communautaire motorisé par BuddyPress à trouver les articles, les sites, les activités, les membres ou les groupes qu’ils·elles recherchent."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "The BuddyPress Community"
|
||||
msgstr "La communauté BuddyPress"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://buddypress.org"
|
||||
msgstr "https://buddypress.org"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Community Search"
|
||||
msgstr "Recherche communautaire"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "A Block to search for posts, sites, activities, members or groups from any post, page or widget of your BuddyPress powered community site!"
|
||||
msgstr "Un bloc pour rechercher des articles, des sites, des activités, des membres ou des groupes depuis n’importe quel article, page ou widget de votre site communautaire motorisé par BuddyPress !"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "BuddyPress"
|
||||
msgstr "BuddyPress"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "search"
|
||||
msgstr "recherche"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "community"
|
||||
msgstr "communauté"
|
||||
@@ -0,0 +1,136 @@
|
||||
# Copyright (C) 2022 BPS
|
||||
# This file is distributed under the same license as the BPS Slider Block Using Splide plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BPS Slider Block Using Splide 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bps-splide-slider-block\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-24T13:41:53+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: bps-slider-block\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BPS Slider Block Using Splide"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Custom block for Splide slider with customizable parameters"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "BPS"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:96
|
||||
#: index.php:299
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:104
|
||||
msgid "Image width in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:107
|
||||
msgid "Image height in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:110
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:113
|
||||
msgid "Rewind"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:116
|
||||
#: index.php:131
|
||||
msgid "Height ratio"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:119
|
||||
#: index.php:134
|
||||
msgid "Gap in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:122
|
||||
#: index.php:137
|
||||
msgid "Padding in %"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:126
|
||||
msgid "Optional breakpoint settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:128
|
||||
msgid "Breakpoint in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:178
|
||||
msgid "Don't forget to regenerate thumbnails to apply the width change to existing images"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:182
|
||||
msgid "Image width value must be a number between 100 and 1000"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:190
|
||||
msgid "Don't forget to regenerate thumbnails to apply the height change to existing images"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:194
|
||||
msgid "Image height value must be a number between 100 and 1000"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:201
|
||||
msgid "Invalid type value"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:218
|
||||
msgid "Height ratio value must be a number between 0 and 1"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:227
|
||||
#: index.php:281
|
||||
msgid "Gap value must be a number between 0 and 100"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:236
|
||||
msgid "Padding value must be a number between 0 and 30"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:263
|
||||
msgid "Breakpoint value must be a number between 100 and 1500 or leave the field empty if you don't want a breakpoint"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:272
|
||||
msgid "Breakpoint height ratio value must be a number between 0 and 1"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:290
|
||||
msgid "Breakpoint padding value must be a number between 0 and 30"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3494
|
||||
msgid "slider"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3537
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3545
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3563
|
||||
msgid "Slider images"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3577
|
||||
msgid "Add image"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "brandnestor",
|
||||
"version": "1.1.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"scripts": {
|
||||
"build": "gulp",
|
||||
"watch": "gulp watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/icons": "^6.0.1",
|
||||
"@wordpress/scripts": "^18.1.0",
|
||||
"cssnano": "^5.0.8",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-postcss": "^9.0.1",
|
||||
"gulp-sass": "^5.0.0",
|
||||
"sass": "^1.42.1",
|
||||
"webpack": "^5.59.0",
|
||||
"webpack-stream": "^7.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,705 @@
|
||||
# Copyright (C) 2021 Nikos Papadakis
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BrandNestor 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brandnestor\n"
|
||||
"Last-Translator: Nikos Papadakis <nikos@papadakis.xyz>\n"
|
||||
"Language-Team: WebNestors <info@webnestors.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"PO-Revision-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"X-Generator: WP-CLI 2.5.1-alpha-70ffdce\n"
|
||||
"X-Domain: brandnestor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BrandNestor"
|
||||
msgstr "BrandNestor"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Customize the WordPress dashboard, login/register pages, and more."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου του WordPress, τις σελίδες σύνδεσης/εγγραφής, και πολλά άλλα."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nikos Papadakis"
|
||||
msgstr "Νίκος Παπαδάκης"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://gitlab.com/nikopap/brandnestor"
|
||||
msgstr "https://gitlab.com/nikopap/brandnestor"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:115
|
||||
msgid "General"
|
||||
msgstr "Γενικά"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:116
|
||||
msgid "General options."
|
||||
msgstr "Γενικές επιλογές."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:122
|
||||
#: src/Admin/Settings/Settings.php:244
|
||||
msgid "Dashboard"
|
||||
msgstr "Πίνακας Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:123
|
||||
msgid "Customize the Dashboard page with your own Welcome Panel. You can choose to create it with standard HTML, or using an Elementor Template page."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου με το δικό σας Welcome Panel. Επιλέξτε να το δημιουργήσετε με HTML, ή με ένα Template του Elementor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:129
|
||||
msgid "Admin Menus"
|
||||
msgstr "Μενού Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:130
|
||||
msgid "Hide admin menu items for user roles and for users."
|
||||
msgstr "Κρύψτε στοιχεία του μενού ανά ρόλο χρήστη ή ανά χρήστη."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:136
|
||||
msgid "Admin Bar"
|
||||
msgstr "Μπάρα Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:137
|
||||
msgid "Options for the admin bar on top of the page."
|
||||
msgstr "Επιλογές για την μπάρα διαχειριστικού στο πάνω μέρος της σελίδας."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:143
|
||||
msgid "Authentication"
|
||||
msgstr "Αυθεντικοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:144
|
||||
msgid "Enable custom login & registration pages for your users or clients. BrandNestor registers new Elementor Login and Registration Widgets that allow authentication execution to exist on the frontend by skipping using the wp-login.php page"
|
||||
msgstr "Ενεργοποιήστε δικές σας σελίδες εισόδου και εγγραφής για τους χρήστες ή του πελάτες. Το BrandNestor ενεργοποιεί νέα Widgets του Elementor που επιτρέπουν την πιστοποίηση να γίνεται στο frontend παραλείποντας το wp-login.php."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:169
|
||||
msgid "Are you sure you want to reset the plugin? This will permanently delete all of the plugin data!"
|
||||
msgstr "Σίγουρα θέλετε να επαναφέρετε το πρόσθετο; Η ενέργεια θα διαγράψει τα δεδομένα του πρόσθετου μόνιμα!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:170
|
||||
msgid "An error occured during the request. See the developer console for details."
|
||||
msgstr "Υπήρξε λάθος κατά τη διάρκεια της άιτησης. Δείτε την κονσόλα προγραμματιστή για περισσότερες λεπτομέρειες."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:171
|
||||
msgid "Rule deleted"
|
||||
msgstr "Ο κανόνας διαγράφηκε"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:172
|
||||
msgid "Settings saved!"
|
||||
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:180
|
||||
msgid "Brand Name"
|
||||
msgstr "Όνομα Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:181
|
||||
msgid "Your Brand name. Will be used to replace any WordPress mentions in admin pages."
|
||||
msgstr "Το Όνομα της Εταιρείας σας. Θα χρησιμοποιηθεί για να αντικαταστήσει το WordPress στις σελίδες Admin."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:190
|
||||
msgid "Footer Text"
|
||||
msgstr "Κείμενο footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:191
|
||||
msgid "Text to display on the WordPress admin footer."
|
||||
msgstr "Κείμενο για εμφάνιση στο Footer του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:200
|
||||
msgid "Footer Image"
|
||||
msgstr "Εικόνα footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:201
|
||||
msgid "Image to display next to the footer text."
|
||||
msgstr "Εικόνα για εμφάνιση δίπλα στο κείμενο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:210
|
||||
msgid "Footer URL"
|
||||
msgstr "Footer URL"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:211
|
||||
msgid "The link URL for the footer text."
|
||||
msgstr "Ο σύνδεσμος για το κείμενο του footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:220
|
||||
msgid "Hide Dashboard Contextual Help"
|
||||
msgstr "Απόκρυψη βοήθειας του πίνακα ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:221
|
||||
msgid "Hide the WordPress dashboard contextual help box that is on the top of admin pages."
|
||||
msgstr "Κρύψτε την βοήθεια του πίνακα ελέγχου που βρίσκεται στην κορυφή του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:223
|
||||
#: src/Admin/Settings/Settings.php:234
|
||||
#: src/Admin/Settings/Settings.php:259
|
||||
#: src/Widgets/Login.php:98
|
||||
#: src/Widgets/Login.php:110
|
||||
#: src/Widgets/Register.php:88
|
||||
#: src/Widgets/Register.php:111
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:231
|
||||
msgid "Hide WordPress Version"
|
||||
msgstr "Απόκρυψη αριθμού έκδοσης WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:232
|
||||
msgid "Hide the WordPress version number that is displayed on the footer."
|
||||
msgstr "Απόκρυψη του αριθμού έκδοσης του WordPress που εμφανίζεται στο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:247
|
||||
#: src/Admin/Settings/Settings.php:334
|
||||
#: src/Admin/Settings/Settings.php:346
|
||||
msgid "Enable"
|
||||
msgstr "Ενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:255
|
||||
msgid "Hide Widgets"
|
||||
msgstr "Απόκρυψη Widget"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:256
|
||||
msgid "Hide all Dashboard widgets."
|
||||
msgstr "Απόκρυψη όλων των Widget του Πίνακα Ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:267
|
||||
msgid "Welcome Panel Type"
|
||||
msgstr "Τύπος Πίνακα Καλωσορίσματος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:268
|
||||
msgid "Choose between writing as HTML or an Elementor template as the type of the Dashboard Welcome Panel."
|
||||
msgstr "Επιλέξτε μεταξύ του HTML ή ενός Template του Elementor ως τύπο πίνακα καλωσορίσματος."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:287
|
||||
msgid "Elementor Template"
|
||||
msgstr "Template Elementor"
|
||||
|
||||
#. translators: %s Elementor library URL link
|
||||
#: src/Admin/Settings/Settings.php:290
|
||||
msgid "Choose a custom Welcome Panel from an Elementor Template page. <a href=\"%s\">Create one from here.</a>"
|
||||
msgstr "Επιλέξτε ένα δικό σας πίνακα Welcome από τα Templates του Elementor. <a href=\"%s\">Δημιουργία νέου από εδώ.</a>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:303
|
||||
msgid "Dashboard HTML"
|
||||
msgstr "HTML Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:304
|
||||
msgid "Insert custom HTML that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο HTML που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:314
|
||||
msgid "Dashboard CSS"
|
||||
msgstr "CSS Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:315
|
||||
msgid "Insert custom CSS styling that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο CSS που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:359
|
||||
msgid "Hide admin menus for:"
|
||||
msgstr "Απόκρυψη μενού διαχειριστή για:"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:363
|
||||
msgid "Role"
|
||||
msgstr "Ρόλος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:364
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:392
|
||||
msgid "Guest"
|
||||
msgstr "Επισκέπτης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:399
|
||||
msgid "Branding Logo"
|
||||
msgstr "Λογότυπο Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:400
|
||||
msgid "Image logo to display on the Dashboard Admin Bar."
|
||||
msgstr "Εικόνα λογότυπου για εμφάνιση στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:409
|
||||
msgid "Branding Logo URL"
|
||||
msgstr "URL Λογότυπου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:410
|
||||
msgid "Link URL for the Branding Logo on the Dashboard Admin Bar."
|
||||
msgstr "Σύνδεσομς URL για το λογότυπο στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:419
|
||||
msgid "Bar Menu Visibility"
|
||||
msgstr "Ορατότητα Μπάρας Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:420
|
||||
msgid "With this, you can change the Admin Bar menu visibility for logged in or logged out users on the frontend."
|
||||
msgstr "Με αυτό, μπορείτε να αλλάξετε την ορατότητα της μπάρας διαχειριστή για συνδεδεμένους ή αποσυνδεδεμένους χρήστες στο frontend."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:441
|
||||
msgid "Login Page"
|
||||
msgstr "Σελίδα Εισόδου"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:444
|
||||
msgid "Enable a custom Login Page for WordPress. Login URLs and redirects will point to this page. To add a login form to a page use the <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εισόδου για το WordPress. Τα URLs εισόδου θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εισόδου σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:457
|
||||
msgid "Register Page"
|
||||
msgstr "Σελίδα Εγγραφής"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:460
|
||||
msgid "Enable a custom Register Page for WordPress. Register URLs and redirects will point to this page. To add a register form to a page use the <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εγγραφής για το WordPress. Τα URL για εγγραφή θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εγγραφής σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:473
|
||||
msgid "Redirect URL On Login"
|
||||
msgstr "URL ανακατεύθυνσης σύνδεσης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:474
|
||||
msgid "URL to redirect to on successful user login. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή σύνδεση χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:483
|
||||
msgid "Redirect URL On Registration"
|
||||
msgstr "URL ανακατεύθυνσης εγγραφής"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:484
|
||||
msgid "URL to redirect to on successful user registration. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή εγγραφή χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:493
|
||||
msgid "WordPress Login Page Logo"
|
||||
msgstr "Λογότυπο σελίδας σύνδεσης του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:494
|
||||
msgid "Replace the default WordPress login page logo with your own <strong>(84x84 pixels).</strong> Useful if there are plugins that rely on the default WP login form, such as Two Factor."
|
||||
msgstr "Αντικαθιστά το λογότυπο του WordPress στην σελίδα σύνδεσης με το δικό σας <strong>(84x84 pixel).</strong> Χρήσιμο αν υπάρχουν πρόσθετα που βασίζονται στην προεπιλεγμένη σελίδα σύνδεσης, όπως το Two Factor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:503
|
||||
msgid "Disable Default WordPress Login Page"
|
||||
msgstr "Απενεργοποίηση Προεπιλεγμένης Σελίδας Εισόδου του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:504
|
||||
msgid "Disable the default WordPress login & register page. <span style=\"color:red\">WARNING: Make sure that your custom login and register pages work correctly, otherwise <strong>nobody</strong> will be able to sign in!</span>"
|
||||
msgstr "Απενεργοποίηση των προεπιλεγμένων σελίδων εισόδου και εγγραφής του WordPress. <span style=\"color:red\">ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Σιγουρευτείτε ότι οι δικές σας σελίδες εισόδου και εγγραφής δουλεύουν σωστά, διαφορετικά <strong>κανένας</strong> δεν θα μπορεί να κάνει είσοδο!</span>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:506
|
||||
#: src/Admin/Settings/Settings.php:517
|
||||
msgid "Disable"
|
||||
msgstr "Απενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:514
|
||||
msgid "Disable /wp-admin/ Page Redirect"
|
||||
msgstr "Απενεργοποίηση Ανακατεύθυνσης /wp-admin/"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:515
|
||||
msgid "Disables /wp-admin/ to login page redirection for non-logged in users to proactively hide your login and registration pages as a security feature."
|
||||
msgstr "Απενεργοποιεί το /wp-admin/ στην σελίδα εισόδου για χρήστες που δεν έχουν κάνει είσοδο ώστε να κρύψει την σελίδα εισόδου και εγγραφής."
|
||||
|
||||
#: src/Admin/Settings/SettingsImageField.php:26
|
||||
msgid "Upload Image"
|
||||
msgstr "Μεταφόρτωση εικόνας"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:53
|
||||
msgid "Add New"
|
||||
msgstr "Προσθήκεη νέου"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:67
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: src/Admin/Settings/SettingsSelectField.php:44
|
||||
msgid "-- None Selected --"
|
||||
msgstr "-- Κανένα Επιλεγμένο --"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:59
|
||||
msgid "View Documentation"
|
||||
msgstr "Προβολή εγχειριδίου"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:72
|
||||
msgid "Save Changes"
|
||||
msgstr "Αποθήκευση αλλαγών"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:80
|
||||
msgid "Upload"
|
||||
msgstr "Μεταφόρτωση"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:84
|
||||
msgid "Import Settings"
|
||||
msgstr "Εισαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:87
|
||||
msgid "Export Settings"
|
||||
msgstr "Εξαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:90
|
||||
msgid "Reset Plugin"
|
||||
msgstr "Επαναφορά προσθέτου"
|
||||
|
||||
#: src/Core/AjaxHandler.php:43
|
||||
#: src/Core/AjaxHandler.php:60
|
||||
#: src/Core/AjaxHandler.php:72
|
||||
#: src/Core/AjaxHandler.php:103
|
||||
#: src/Core/AjaxHandler.php:130
|
||||
#: src/Core/AjaxHandler.php:154
|
||||
msgid "Current user does not have the required capability"
|
||||
msgstr "Ο χρήστης δεν έχει τα απαιτούμενα δικαιώματα"
|
||||
|
||||
#: src/Core/RequestHandler.php:57
|
||||
msgid "<strong>Error:</strong> Incorrect username/email or password."
|
||||
msgstr "<strong>Λάθος:</strong> Εσφαλμένο όνομα χρήστη/email ή κωδικός."
|
||||
|
||||
#: src/Core/RequestHandler.php:299
|
||||
msgid "Import error: The uploaded file type is not allowed."
|
||||
msgstr "Σφάλμα εισαγωγής: Ο τύπος αρχείου φόρτωσης δεν επιτρέπεται."
|
||||
|
||||
#: src/Core/RequestHandler.php:314
|
||||
msgid "Settings successfully imported. It is recommended to manually check that all image URLs are pointing to your site, and that all page reference their correct IDs."
|
||||
msgstr "Οι ρυθμίσεις εισάχθηκαν με επιτυχία. Συνιστάται ο χειροκίνητος έλεγχος οτι οι επιλογές με URL αντιστοιχούν για την ιστοσελίδα σας, και ότι όλες αναφορές σελιδών είναι σωστές."
|
||||
|
||||
#: src/Core/RequestHandler.php:316
|
||||
msgid "Import error: The upload file is invalid."
|
||||
msgstr "Σφάλμα εισαγωγής: Το αρχείο φόρτωσης δεν είναι έγκυρο."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:45
|
||||
#: src/Front/Models/RegisterModel.php:40
|
||||
#: src/Widgets/Base_Form.php:479
|
||||
#: src/Widgets/Base_Form.php:480
|
||||
msgid "Submit"
|
||||
msgstr "Υποβολή"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:46
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
#: assets/js/src/blocks/login/block.js:33
|
||||
#: assets/js/build/blocks/blocks.js:119
|
||||
msgid "Get New Password"
|
||||
msgstr "Ζητήστε νέο συνθηματικό"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:62
|
||||
msgid "You are now logged out."
|
||||
msgstr "Έχετε αποσυνδεθεί."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:66
|
||||
msgid "User registration is currently disabled."
|
||||
msgstr "Η εγγραφή χρηστών έχει απενεργοποιηθεί προς το παρόν."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:70
|
||||
msgid "Your password has been reset. You can now log in with the form below."
|
||||
msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί. Μπορείτε τώρα να συνδεθείτε με την παρακάτω φόρμα."
|
||||
|
||||
#. translators: %s login page URL
|
||||
#: src/Front/Models/LoginModel.php:75
|
||||
msgid "Registration complete. Please check your email, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Η εγγραφή σας ολοκληρώθηκε. Παρακαλώ δείτε το email σας και στην συνέχεια επισκεφτείτε την <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#. translators: %s register page URL
|
||||
#: src/Front/Models/LoginModel.php:80
|
||||
msgid "Check your email for the confirmation link, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Ελέγξτε το email σας για τον σύνδεσμο επιβεβαίωσης και στη συνέχεια επισκεφτείτε τη <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:84
|
||||
msgid "Your password reset link has expired. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης έχει λήξει. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:88
|
||||
msgid "Your password reset link appears to be invalid. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης φαίνεται να μην είναι έγκυρος. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Widgets/Base_Form.php:32
|
||||
msgid "Style"
|
||||
msgstr "Στιλ"
|
||||
|
||||
#: src/Widgets/Base_Form.php:40
|
||||
msgid "Form Label Typography"
|
||||
msgstr "Τυπογραφία ετικέτας εισόδου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:49
|
||||
msgid "Text Typography"
|
||||
msgstr "Τυπογραφία κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:58
|
||||
#: src/Widgets/Base_Form.php:92
|
||||
#: src/Widgets/Base_Form.php:359
|
||||
msgid "Text Color"
|
||||
msgstr "Χρώμα κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:76
|
||||
msgid "Inputs"
|
||||
msgstr "Εισόδοι"
|
||||
|
||||
#: src/Widgets/Base_Form.php:104
|
||||
#: src/Widgets/Base_Form.php:370
|
||||
msgid "Background Color"
|
||||
msgstr "Χρώμα Φόντου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:155
|
||||
#: src/Widgets/Base_Form.php:469
|
||||
msgid "Button"
|
||||
msgstr "Κουμπί"
|
||||
|
||||
#: src/Widgets/Base_Form.php:343
|
||||
msgid "Message Box"
|
||||
msgstr "Κουτί μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:351
|
||||
msgid "Message Styling"
|
||||
msgstr "Στυλ μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:389
|
||||
msgid "Error Message Styling"
|
||||
msgstr "Στυλ μηνύματος σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:397
|
||||
msgid "Error Text Color"
|
||||
msgstr "Χρώμα κειμένου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:408
|
||||
msgid "Error Background Color"
|
||||
msgstr "Χρώμα φόντου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:477
|
||||
msgid "Button Label"
|
||||
msgstr "Κείμενου κουμπιού"
|
||||
|
||||
#: src/Widgets/Base_Form.php:487
|
||||
msgid "Alignment"
|
||||
msgstr "Ευθυγράμμιση"
|
||||
|
||||
#: src/Widgets/Base_Form.php:491
|
||||
msgid "Left"
|
||||
msgstr "Αριστερά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:495
|
||||
msgid "Center"
|
||||
msgstr "Κέντρο"
|
||||
|
||||
#: src/Widgets/Base_Form.php:499
|
||||
msgid "Right"
|
||||
msgstr "Δεξιά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:503
|
||||
msgid "Justified"
|
||||
msgstr "Justified"
|
||||
|
||||
#: src/Widgets/Base_Form.php:513
|
||||
msgid "Button Icon"
|
||||
msgstr "Εικονίδιο κουμπιού"
|
||||
|
||||
#: src/Widgets/Login.php:57
|
||||
#: src/Widgets/Register.php:57
|
||||
#: assets/js/build/blocks/blocks.js:283
|
||||
#: assets/js/build/blocks/blocks.js:523
|
||||
#: assets/js/src/blocks/login/edit.js:49
|
||||
#: assets/js/src/blocks/register/edit.js:48
|
||||
#: assets/js/build/blocks/blocks.js:194
|
||||
#: assets/js/build/blocks/blocks.js:404
|
||||
msgid "Content"
|
||||
msgstr "Περιεχόμενο"
|
||||
|
||||
#: src/Widgets/Login.php:65
|
||||
msgid "Login Label"
|
||||
msgstr "Ετικέτα ψευδώνυμου"
|
||||
|
||||
#: src/Widgets/Login.php:75
|
||||
msgid "Password Label"
|
||||
msgstr "Ετικέτα συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:85
|
||||
msgid "Remember Me Label"
|
||||
msgstr "Ετικέτα «να με θυμάσαι»"
|
||||
|
||||
#: src/Widgets/Login.php:95
|
||||
#: assets/js/build/blocks/blocks.js:285
|
||||
#: assets/js/src/blocks/login/edit.js:51
|
||||
#: assets/js/build/blocks/blocks.js:196
|
||||
msgid "Show Lost Password"
|
||||
msgstr "Εμφάνιση φόρμας υπενθύμισης συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:97
|
||||
#: src/Widgets/Login.php:109
|
||||
#: src/Widgets/Register.php:87
|
||||
#: src/Widgets/Register.php:110
|
||||
msgid "Show"
|
||||
msgstr "Εμφάνιση"
|
||||
|
||||
#: src/Widgets/Login.php:107
|
||||
#: assets/js/build/blocks/blocks.js:292
|
||||
#: assets/js/src/blocks/login/edit.js:61
|
||||
#: assets/js/build/blocks/blocks.js:206
|
||||
msgid "Show Register URL"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: src/Widgets/Login.php:119
|
||||
msgid "New Password Button Label"
|
||||
msgstr "Ετικέτα κουμπιού νέου συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:135
|
||||
#: src/Widgets/Register.php:137
|
||||
#: assets/js/build/blocks/blocks.js:334
|
||||
#: assets/js/build/blocks/blocks.js:568
|
||||
#: assets/js/src/blocks/login/edit.js:96
|
||||
#: assets/js/src/blocks/register/edit.js:89
|
||||
#: assets/js/build/blocks/blocks.js:241
|
||||
#: assets/js/build/blocks/blocks.js:445
|
||||
msgid "Sample message."
|
||||
msgstr "Δείγμα μηνύματος"
|
||||
|
||||
#: src/Widgets/Login.php:136
|
||||
#: src/Widgets/Register.php:138
|
||||
msgid "Sample <strong>error</strong> message."
|
||||
msgstr "Δείγμα μηνύματος <strong>σφάλματος</strong>."
|
||||
|
||||
#: src/Widgets/Register.php:65
|
||||
msgid "Username Label"
|
||||
msgstr "Ετικέτα ψευδόνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:75
|
||||
msgid "Email Label"
|
||||
msgstr "Ετικέτα Email"
|
||||
|
||||
#: src/Widgets/Register.php:85
|
||||
#: assets/js/build/blocks/blocks.js:525
|
||||
#: assets/js/src/blocks/register/edit.js:50
|
||||
#: assets/js/build/blocks/blocks.js:406
|
||||
msgid "Show First Name Input"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:97
|
||||
msgid "First Name Label"
|
||||
msgstr "Ετικέτα Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:108
|
||||
#: assets/js/build/blocks/blocks.js:532
|
||||
#: assets/js/src/blocks/register/edit.js:60
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
msgid "Show Last Name Input"
|
||||
msgstr "Εμφάνιση Επώνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:120
|
||||
msgid "Last Name Label"
|
||||
msgstr "Ετικέτα Επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:175
|
||||
#: assets/js/src/blocks/login/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:92
|
||||
msgid "BrandNestor Login"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:176
|
||||
#: assets/js/src/blocks/login/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:93
|
||||
msgid "A custom Login widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget σύνδεσης για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:201
|
||||
msgid "Showing lost password link"
|
||||
msgstr "Εμφάνιση συνδέσμου χαμένου συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:57
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
msgid "Toggle to show lost password link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος χαμένου κωδικού πρόσβασης"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:211
|
||||
msgid "Showing register link"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:67
|
||||
#: assets/js/build/blocks/blocks.js:212
|
||||
msgid "Toggle to show register link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:299
|
||||
#: assets/js/src/blocks/login/edit.js:71
|
||||
#: assets/js/build/blocks/blocks.js:216
|
||||
msgid "New Password Button Text"
|
||||
msgstr "Κείμενο κουμπιού Νέου Συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
#: assets/js/build/blocks/blocks.js:538
|
||||
#: assets/js/src/blocks/login/edit.js:76
|
||||
#: assets/js/src/blocks/register/edit.js:70
|
||||
#: assets/js/build/blocks/blocks.js:221
|
||||
#: assets/js/build/blocks/blocks.js:426
|
||||
msgid "Button Alignment"
|
||||
msgstr "Ευθυγράμμιση κουμπιού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:336
|
||||
#: assets/js/build/blocks/blocks.js:570
|
||||
#: assets/js/src/blocks/login/edit.js:97
|
||||
#: assets/js/src/blocks/register/edit.js:90
|
||||
#: assets/js/build/blocks/blocks.js:242
|
||||
#: assets/js/build/blocks/blocks.js:446
|
||||
msgid "Sample error message."
|
||||
msgstr "Δείγμα μηνύματος σφάλματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:346
|
||||
#: assets/js/build/blocks/blocks.js:580
|
||||
#: assets/js/src/blocks/login/edit.js:105
|
||||
#: assets/js/src/blocks/register/edit.js:98
|
||||
#: assets/js/build/blocks/blocks.js:250
|
||||
#: assets/js/build/blocks/blocks.js:454
|
||||
msgid "Add a username label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος χρήστη…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:358
|
||||
#: assets/js/src/blocks/login/edit.js:114
|
||||
#: assets/js/build/blocks/blocks.js:259
|
||||
msgid "Add a password label…"
|
||||
msgstr "Προσθέστε ετικέτα συνθηματικού…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:415
|
||||
#: assets/js/src/blocks/register/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:303
|
||||
msgid "BrandNestor Register"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
#: assets/js/src/blocks/register/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
msgid "A custom Register widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget εγγραφής για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:55
|
||||
#: assets/js/src/blocks/register/edit.js:65
|
||||
#: assets/js/build/blocks/blocks.js:411
|
||||
#: assets/js/build/blocks/blocks.js:421
|
||||
msgid "Showing a first name input field"
|
||||
msgstr "Εμφάνιση πεδίου εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/src/blocks/register/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:412
|
||||
msgid "Toggle to show the first name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:422
|
||||
msgid "Toggle to show the last name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:592
|
||||
#: assets/js/src/blocks/register/edit.js:107
|
||||
#: assets/js/build/blocks/blocks.js:463
|
||||
msgid "Add an email label…"
|
||||
msgstr "Προσθέστε ετικέτα email…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:604
|
||||
#: assets/js/src/blocks/register/edit.js:117
|
||||
#: assets/js/build/blocks/blocks.js:473
|
||||
msgid "Add a first name label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:616
|
||||
#: assets/js/src/blocks/register/edit.js:128
|
||||
#: assets/js/build/blocks/blocks.js:484
|
||||
msgid "Add a last name label…"
|
||||
msgstr "Προσθέστε ετικέτα επώνυμου…"
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "BTCPayWall",
|
||||
"version": "1.0.0",
|
||||
"description": "BTCPayWall is a WordPress plugin for publishers to charge for paid content. With the help of WordPress BTCPayWall plugin you can offer previews of your blog posts and accept bitcoin payment for a single post (pay-per-post) via Lightning Network.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^17.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,370 @@
|
||||
# Copyright (C) 2021 Casso Team
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Casso - Automatically confirm bank transfer payments 2.0."
|
||||
"0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/casso-wordpress-"
|
||||
"plugin\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tiếng Việt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-06-08T08:18:22+00:00\n"
|
||||
"PO-Revision-Date: 2021-07-23 07:29+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: casso-wordpress-plugin\n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Loco-Version: 2.5.2; wp-5.7.2"
|
||||
|
||||
#: inc/banks/class-casso-base.php:735
|
||||
msgid ""
|
||||
" <div class='power_by'>Automatic transaction checking by Casso Robot</div>"
|
||||
msgstr ""
|
||||
" <div class='power_by'>Tra soát giao dịch tự động bởi Casso Robot</div>"
|
||||
|
||||
#: inc/class-casso-admin-page.php:268
|
||||
msgid "Acceptance difference"
|
||||
msgstr "Chênh lệch chấp nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:404 inc/banks/class-casso-momo.php:152
|
||||
msgid "Account number"
|
||||
msgstr "Số tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:213
|
||||
msgid "Account on/off"
|
||||
msgstr "Bật/tắt tài khoản"
|
||||
|
||||
#: wc-gateway-casso.php:322
|
||||
msgid "Active"
|
||||
msgstr "Đang hoạt động"
|
||||
|
||||
#: inc/banks/class-casso-base.php:281 inc/banks/class-casso-base.php:424
|
||||
#: inc/banks/class-casso-momo.php:91 inc/banks/class-casso-momo.php:172
|
||||
msgid "Amount"
|
||||
msgstr "Số tiền"
|
||||
|
||||
#: inc/class-casso-admin-page.php:163
|
||||
msgid "Authorization code"
|
||||
msgstr "Mã xác nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:412 inc/banks/class-casso-momo.php:160
|
||||
msgid "Bank"
|
||||
msgstr "Ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-base.php:333 inc/banks/class-casso-momo.php:123
|
||||
msgid "Bank transfer QR code"
|
||||
msgstr "Mã QR chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:186
|
||||
msgid "Bussiness name"
|
||||
msgstr "Tên doanh nghiệp"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Casso - Tự động xác nhận thanh toán chuyển khoản ngân hàng"
|
||||
msgstr ""
|
||||
|
||||
#: wc-gateway-casso.php:437
|
||||
msgid ""
|
||||
"Casso announces received <b>%s</b> VND, content <B>%s</B> has been moved to "
|
||||
"<b>Account number %s</b>"
|
||||
msgstr ""
|
||||
"Casso thông báo nhận <b>%s</b> VND, nội dung <B>%s</B> chuyển vào <b>STK "
|
||||
"%s</b>"
|
||||
|
||||
#: wc-gateway-casso.php:263
|
||||
msgid ""
|
||||
"Casso is not running because WooCommerce is not active. Please activate both "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
"Casso không chạy vì WooCommerce không hoạt động. Vui lòng kích hoạt cả hai "
|
||||
"plugin."
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Casso plugin developed to connect Vietnamese banks with Wordpress. Help "
|
||||
"automatically confirm the order has been paid by wire transfer in Vietnam."
|
||||
msgstr ""
|
||||
"Plugin Casso phát triển để kết nối các ngân hàng Việt Nam vào Wordpress. "
|
||||
"Giúp tự động xác nhận các đơn hàng được thanh toán bằng hình thức chuyển "
|
||||
"khoản ngân hàng Việt Nam."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Casso Team"
|
||||
msgstr "Casso Team"
|
||||
|
||||
#: inc/class-casso-admin-page.php:155
|
||||
msgid "Click here to show manual configuration"
|
||||
msgstr "Click vào đây hiện thị cấu hình thủ công"
|
||||
|
||||
#: inc/class-casso-admin-page.php:178
|
||||
msgid "Connection Information"
|
||||
msgstr "Thông tin kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:285 inc/banks/class-casso-base.php:436
|
||||
#: inc/banks/class-casso-momo.php:95 inc/banks/class-casso-momo.php:184
|
||||
msgid "Content"
|
||||
msgstr "Nội dung"
|
||||
|
||||
#: inc/class-casso-admin-page.php:369 inc/class-casso-admin-page.php:394
|
||||
msgid "Default"
|
||||
msgstr "Mặc định"
|
||||
|
||||
#: inc/class-casso-admin-page.php:147
|
||||
msgid "Enable QR code display mode VietQR"
|
||||
msgstr "Bật chế độ hiển thị mã VietQR"
|
||||
|
||||
#: inc/class-casso-admin-page.php:129
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Mở/Đóng"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://casso.vn/"
|
||||
msgstr "https://casso.vn/"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
msgstr "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
|
||||
#: inc/banks/class-casso-base.php:307 inc/banks/class-casso-base.php:620
|
||||
msgid "I have already paid"
|
||||
msgstr "Tôi đã thanh toán"
|
||||
|
||||
#: wc-gateway-casso.php:320
|
||||
msgid "Inactive"
|
||||
msgstr "Ngưng hoạt động"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Link Casso"
|
||||
msgstr "Liên kết Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:188
|
||||
msgid "List of bank accounts"
|
||||
msgstr "Danh sách tài khoản ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:32
|
||||
msgid "Make payment by bank transfer via Momo."
|
||||
msgstr "Thanh toán bằng chuyển khoản qua Momo."
|
||||
|
||||
#: inc/banks/class-casso-acb.php:32 inc/banks/class-casso-agribank.php:30
|
||||
#: inc/banks/class-casso-bidv.php:31 inc/banks/class-casso-mbbank.php:31
|
||||
#: inc/banks/class-casso-ocb.php:31 inc/banks/class-casso-techcombank.php:30
|
||||
#: inc/banks/class-casso-timoplus.php:33 inc/banks/class-casso-tpbank.php:31
|
||||
#: inc/banks/class-casso-vietcombank.php:32
|
||||
#: inc/banks/class-casso-vietinbank.php:31 inc/banks/class-casso-vpbank.php:31
|
||||
msgid "Make payment by bank transfer."
|
||||
msgstr "Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. "
|
||||
|
||||
#: inc/banks/class-casso-momo.php:25
|
||||
msgid ""
|
||||
"Make payment by money transfer via momo. The system automatically confirms "
|
||||
"the order payment after the transfer is completed"
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/class-casso-admin-page.php:254
|
||||
msgid ""
|
||||
"Maximum 15 characters, no spaces and no special characters. If contained, it "
|
||||
"will be deleted"
|
||||
msgstr ""
|
||||
"Tối đa 15 kí tự, không chứa khoảng trắng và kí tự đặc biệt. Nếu chứa sẽ bị "
|
||||
"xóa"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:20
|
||||
msgid "Momo Wallet"
|
||||
msgstr "Ví Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:184
|
||||
msgid "No banks found"
|
||||
msgstr "Không tìm thấy tài khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:181 inc/class-casso-admin-page.php:337
|
||||
msgid "No connection"
|
||||
msgstr "Chưa kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:459
|
||||
msgid ""
|
||||
"No matching transfers were found. The system is still checking the "
|
||||
"transaction"
|
||||
msgstr ""
|
||||
"Không tìm thấy giao dịch nào phù hợp. Hệ thống vẫn đang kiểm tra. Có thể tốn "
|
||||
"1 khoảng thời gian "
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "or"
|
||||
msgstr "hoặc"
|
||||
|
||||
#: wc-gateway-casso.php:460
|
||||
msgid "Order has been overpaid"
|
||||
msgstr "Đơn hàng đã thanh toán dư"
|
||||
|
||||
#: wc-gateway-casso.php:324
|
||||
msgid "Out of money"
|
||||
msgstr "Hết tiền"
|
||||
|
||||
#: wc-gateway-casso.php:140 wc-gateway-casso.php:145 wc-gateway-casso.php:171
|
||||
msgid "Paid"
|
||||
msgstr "Đã thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:25 inc/banks/class-casso-agribank.php:23
|
||||
#: inc/banks/class-casso-bidv.php:24 inc/banks/class-casso-mbbank.php:24
|
||||
#: inc/banks/class-casso-ocb.php:24 inc/banks/class-casso-techcombank.php:23
|
||||
#: inc/banks/class-casso-timoplus.php:26 inc/banks/class-casso-tpbank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:24 inc/banks/class-casso-vpbank.php:24
|
||||
msgid ""
|
||||
"Payment by bank transfer. The system automatically confirms the paid order "
|
||||
"after the transfer is completed."
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:26 inc/banks/class-casso-momo.php:31
|
||||
msgid "Payment Momo"
|
||||
msgstr "Thanh toán Momo"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:24 inc/banks/class-casso-acb.php:26
|
||||
#: inc/banks/class-casso-acb.php:31 inc/banks/class-casso-agribank.php:22
|
||||
#: inc/banks/class-casso-agribank.php:24 inc/banks/class-casso-agribank.php:29
|
||||
#: inc/banks/class-casso-bidv.php:23 inc/banks/class-casso-bidv.php:25
|
||||
#: inc/banks/class-casso-bidv.php:30 inc/banks/class-casso-mbbank.php:23
|
||||
#: inc/banks/class-casso-mbbank.php:25 inc/banks/class-casso-mbbank.php:30
|
||||
#: inc/banks/class-casso-ocb.php:23 inc/banks/class-casso-ocb.php:25
|
||||
#: inc/banks/class-casso-ocb.php:30 inc/banks/class-casso-techcombank.php:22
|
||||
#: inc/banks/class-casso-techcombank.php:24
|
||||
#: inc/banks/class-casso-techcombank.php:29
|
||||
#: inc/banks/class-casso-timoplus.php:25 inc/banks/class-casso-timoplus.php:27
|
||||
#: inc/banks/class-casso-timoplus.php:32 inc/banks/class-casso-tpbank.php:23
|
||||
#: inc/banks/class-casso-tpbank.php:25 inc/banks/class-casso-tpbank.php:30
|
||||
#: inc/banks/class-casso-vietcombank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:26
|
||||
#: inc/banks/class-casso-vietcombank.php:31
|
||||
#: inc/banks/class-casso-vietinbank.php:23
|
||||
#: inc/banks/class-casso-vietinbank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:30 inc/banks/class-casso-vpbank.php:23
|
||||
#: inc/banks/class-casso-vpbank.php:25 inc/banks/class-casso-vpbank.php:30
|
||||
msgid "Payment via bank %s"
|
||||
msgstr "Thanh toán ngân hàng %s"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:108
|
||||
msgid "Phone number"
|
||||
msgstr "Số điện thoại"
|
||||
|
||||
#: inc/banks/class-casso-base.php:385 inc/banks/class-casso-momo.php:133
|
||||
msgid ""
|
||||
"Please transfer the correct content <b style='font-size: 20px;'>%s</b> for "
|
||||
"we can confirm the payment"
|
||||
msgstr ""
|
||||
"Vui lòng chuyển đúng nội dung <b style = 'font-size: 20px;'>% s </b> để "
|
||||
"chúng tôi xác nhận thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-base.php:367
|
||||
msgid "SAVE IMAGE QR"
|
||||
msgstr "LƯU ẢNH QR"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:24
|
||||
msgid "Scan code Momo"
|
||||
msgstr "Quét mã Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:203
|
||||
msgid "Security Key"
|
||||
msgstr "Key bảo mật"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Set up a link with Casso"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "Set up automatic Casso link"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: wc-gateway-casso.php:331
|
||||
msgid "Settings"
|
||||
msgstr "Thiết lập"
|
||||
|
||||
#: inc/class-casso-admin-page.php:182 inc/class-casso-admin-page.php:338
|
||||
msgid "Show details"
|
||||
msgstr "Hiển thị chi tiết"
|
||||
|
||||
#: inc/class-casso-admin-page.php:334
|
||||
msgid "Show less"
|
||||
msgstr "Thu gọn"
|
||||
|
||||
#: inc/class-casso-admin-page.php:274
|
||||
msgid "Status after full payment or balance:"
|
||||
msgstr "Trạng thái sau khi thanh toán đủ hoặc dư:"
|
||||
|
||||
#: inc/class-casso-admin-page.php:289
|
||||
msgid "Status if payment is missing:"
|
||||
msgstr "Trạng thái nếu thanh toán bị thiếu:"
|
||||
|
||||
#: wc-gateway-casso.php:443
|
||||
msgid "The order is underpaid so it is not completed"
|
||||
msgstr "Đơn hàng bị thanh toán thiếu nên chưa hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-base.php:368
|
||||
msgid "Then open the banking App and scan the transfer QR"
|
||||
msgstr " Sau đó mở App ngân hàng quét QR chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:433
|
||||
msgid "Transaction is too old, not processed"
|
||||
msgstr "Giao dịch quá cũ, không xử lý"
|
||||
|
||||
#: inc/class-casso-admin-page.php:251
|
||||
msgid "Transaction prefix"
|
||||
msgstr "Tiền tố giao dịch"
|
||||
|
||||
#: inc/banks/class-casso-base.php:90
|
||||
msgid "Transfer"
|
||||
msgstr "Chuyển khoản"
|
||||
|
||||
#: inc/banks/class-casso-base.php:97
|
||||
msgid ""
|
||||
"Transfer money to our account<b> %s</b>. The order will be confirmed "
|
||||
"immediately after the transfer"
|
||||
msgstr ""
|
||||
"Chuyển khoản vào tài khoản <b>%s</b> của chúng tôi. Đơn hàng sẽ được xác "
|
||||
"nhận ngay sau khi chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:323
|
||||
msgid "Trial"
|
||||
msgstr "Dùng thử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:137
|
||||
msgid "Turn on bank transfer"
|
||||
msgstr "Bật chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:258 inc/class-casso-admin-page.php:262
|
||||
msgid "Turn on Case Sensitivity"
|
||||
msgstr "Bật Phân biệt chữ hoa / chữ thường"
|
||||
|
||||
#: wc-gateway-casso.php:148 wc-gateway-casso.php:153 wc-gateway-casso.php:172
|
||||
msgid "Underpaid"
|
||||
msgstr "Thanh toán thiếu"
|
||||
|
||||
#: inc/class-casso-admin-page.php:229
|
||||
msgid "Updating account name"
|
||||
msgstr "Đang cập nhật tên tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:187
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:142
|
||||
msgid "VietQR"
|
||||
msgstr ""
|
||||
|
||||
#: inc/banks/class-casso-momo.php:107
|
||||
msgid "Wallet"
|
||||
msgstr "Ví điện tử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:204 inc/class-casso-admin-page.php:245
|
||||
msgid "Webhook URL"
|
||||
msgstr "Webhook URL"
|
||||
|
||||
#: inc/banks/class-casso-base.php:312 inc/banks/class-casso-base.php:615
|
||||
msgid "You paid"
|
||||
msgstr "Bạn đã thanh toán thành công"
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2021.10.15**/
|
||||
- Updated: Update support file
|
||||
|
||||
/**1.0.0 - 2021.10.14**/
|
||||
~ The first released
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/cf-image-resizing/change_log/CHANGELOG.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/cf-image-resizing/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
##### Version 1.3 (2022-03-04)
|
||||
|
||||
- Rewrite: The plugin was re-written to include fixes for all the bugs reported via github, new features (and flexibility to add more features), configurable settings/options and more.
|
||||
- Tested up to WordPress 5.9.1
|
||||
- Tested for several weeeks on several large production websites
|
||||
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2022 Arshid
|
||||
# This file is distributed under the same license as the CF7 Signature plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CF7 Signature 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-signature\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-01-01T02:00:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cf7-signature\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "CF7 Signature"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://ciphercoin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Signature input field for contact form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Arshid"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:92
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:105
|
||||
msgid "sign"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:113
|
||||
msgid "Generate a form-tag for a date input field. For more details, see %s."
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:115
|
||||
msgid "https://contactform7.com/date-field/"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:115
|
||||
msgid "Date field"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:125
|
||||
#: cf7-signature.php:128
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:129
|
||||
msgid "Required field"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:135
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:141
|
||||
msgid "Id attribute"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:146
|
||||
msgid "Class attribute"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:158
|
||||
msgid "Insert Tag"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:163
|
||||
msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,47 @@
|
||||
# Copyright (C) 2022 5um17
|
||||
# This file is distributed under the same license as the Classic Widgets with Block-based Widgets package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Classic Widgets with Block-based Widgets 1.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/classic-and-block-widgets\n"
|
||||
"POT-Creation-Date: 2022-02-23 20:46:12+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: build/classic-and-block-widgets.php:40
|
||||
#: build/classic-and-block-widgets.php:81 classic-and-block-widgets.php:40
|
||||
#: classic-and-block-widgets.php:81
|
||||
msgid "Classic Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: build/classic-and-block-widgets.php:66 classic-and-block-widgets.php:66
|
||||
msgid "More Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Classic Widgets with Block-based Widgets"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.secretsofgeeks.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Restore the classic widgets screen as a new menu item without replacing new "
|
||||
"block-based widgets."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "5um17"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.secretsofgeeks.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,2 @@
|
||||
= 1.0.1 =
|
||||
* Added: user analytic
|
||||
@@ -1237,3 +1237,7 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
<!-- This Google structured data (Rich Snippet) auto generated by RadiusTheme Review Schema plugin version 1.0.1 -->
|
||||
|
||||
|
||||
<!-- gofer-seo -->
|
||||
<!-- Gofer SEO - 1.0.1 -->
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2021.12.22 **/
|
||||
- Fixed: Attributes hide/show
|
||||
|
||||
/**1.0.0 - 2021.12 **/
|
||||
- The first released
|
||||
555
spec/fixtures/dynamic_finders/plugin_version/convertplug/change_log/changelog.txt
vendored
Normal file
555
spec/fixtures/dynamic_finders/plugin_version/convertplug/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,555 @@
|
||||
Version 3.5.22 July 13, 2021
|
||||
- Improvement: Removed duplicate Create new template and Analytics button on Modules Dashboard.
|
||||
- Fixed: Uncaught TypeError: receiver is undefined in popup Customizer for Firefox.
|
||||
- Fixed: Blank template content not loading in Firefox.
|
||||
- Fixed: Form Field Labels & Placeholder support for the common accents.
|
||||
- Fixed: Close image unable to change in customizer.
|
||||
- Fixed: Background Overlay image and colorpicker not working for Modules.
|
||||
- Fixed: Content locker Template image not displaying correctly in the customizer.
|
||||
- Fixed: Checkbox Form Fields labels issue for all modules.
|
||||
- Fixed: Button action download file not working for Modal.
|
||||
|
||||
Version 3.5.21 June 22, 2021
|
||||
- Improvement: Compatibility with the latest JavaScript and CSS standard rule.
|
||||
- Improvement: Added the prefix to all the PHP function and class name to avoid future conflicts.
|
||||
- Improvement: Added the prefix to the global variable, script and style handlers.
|
||||
- Improvement: Ace library updated v1.4.12
|
||||
- Improvement: jQuery UI Widget library update to v1.12.1.
|
||||
- Fixed: slide_in toggle in not working on the frontend.
|
||||
- Fixed: PHP Warning showing for undefined image width and height.
|
||||
- Fixed: Popup Customizer – Showing console contentWindow Error.
|
||||
- Fixed: Form Field Labels & Placeholder support for the Arabic Language.
|
||||
- Fixed: Vimeo – audio does not stop after closing the modal popup.
|
||||
|
||||
Version 3.5.20 May 31, 2021
|
||||
- Improvement: Bootstrap Datetimepicker Library Updated to v4.17.49
|
||||
- Improvement: Core Web Vital - Added width and height attributes for image elements.
|
||||
- Fix: Button Animation not working for form layout with only Submit button.
|
||||
- Fix: Scroll Up Issue with IOS Devices.
|
||||
- Fix: CKEditor Changes not saving in Customizer.
|
||||
|
||||
Version 3.5.19 April 27, 2021
|
||||
- Improvement: Select2 Library Update to the latest version.
|
||||
- Fix: Advance Design Option - Border changes does not appear in the preview.
|
||||
- Fix: Form Field - Dropdown field values stored horizontally.
|
||||
- Fix: Popup Cookie not setting when no form field used.
|
||||
|
||||
Version 3.5.18 March 24, 2021
|
||||
- Improvement: Support latest jQuery function deprecations with WordPress 5.7.
|
||||
- Fix: Showing PHP Notice: WP_Scripts::localize was called incorrectly.
|
||||
- Fix: Schedule date disappears on modification in the customizer.
|
||||
- Fix: Youtube template – Video not appearing when popup is in inline.
|
||||
- Fix: Youtube template – Autoplay not working.
|
||||
- Fix: Bridge Theme conflict with the Convert Plus popup customizer.
|
||||
- Fix: Dropdown content not displayed properly in the popup customizer.
|
||||
- Fix: Contact Form 7 - Not able to autoclose the popup after submitting the form.
|
||||
- Fix: Unwanted arrow appearing for Ebook Template.
|
||||
|
||||
Version 3.5.17 January 11, 2021
|
||||
- Fixed: Module templates not loading in the Customizer.
|
||||
- Fixed: Custom class name not added for Modal popup.
|
||||
|
||||
Version 3.5.16 December 09, 2020
|
||||
- Improvement: Compatibility with WordPress v5.6 - CKEditor changes not reflecting on front-end.
|
||||
- Improvement: Compatibility with PHP 8.0. - Deprecated: Function zip_open() and Required parameters after optional parameters in function/method signatures.
|
||||
- Fixed: Border unique ID issue Border in customizer.
|
||||
- Fixed: Box shadow dropdown selection not working in customizer.
|
||||
|
||||
Version 3.5.15 November 03, 2020
|
||||
- Fixed: JS console error showing on CF7 form, Gravity form, and Ninja form submission.
|
||||
- Fixed: CPlus Affiliate link updated.
|
||||
|
||||
Version 3.5.14 October 20, 2020
|
||||
- Fixed: Slide-in CTA reappearing on after submission action.
|
||||
- Fixed: Target Special pages selected not saving.
|
||||
|
||||
Version 3.5.13 September 22, 2020
|
||||
- Fixed: Info-bar CTA - Hide popup after 'x' seconds of Submission not working.
|
||||
- Fixed: Slide-in CTA not able to Import.
|
||||
- Fixed: PHP Notice displayed on Info-bar CTA Customizer.
|
||||
- Fixed: Submit button Animation not working.
|
||||
|
||||
Version 3.5.12 August 17, 2020
|
||||
- Improvement: Compatibility with WordPress 5.5.
|
||||
- Fixed: CSS improvements for Convert Plus Back-end.
|
||||
- Fixed: Popups not triggering when selected Blog/Post Page and/or Front Page.
|
||||
- Fixed: Select box text not aligned under the Analytics Page.
|
||||
|
||||
Version 3.5.11 July 01, 2020
|
||||
- Improvement: Conditionally load Geo-Location files.
|
||||
- Fixed: Not able to add new Social Media Network in Modules.
|
||||
- Fixed: Social Media Template - Facebook share count not working.
|
||||
- Fixed: Social Media Template - Twitter share count not working.
|
||||
|
||||
Version 3.5.10 June 16, 2020
|
||||
- New: Users can now share non-personal usage data to help us test and develop better products.
|
||||
|
||||
Version 3.5.9 May 27, 2020
|
||||
- Fixed: PHP warnings showing for the Modules.
|
||||
- Fixed: Content not displayed properly for the Modules in front-end.
|
||||
|
||||
Version 3.5.8 May 12, 2020
|
||||
- Improvement: Added the MaxMind Geolite2 database integration.
|
||||
- Fixed: Convert Plus Google fonts overriding UAVC Google fonts in the backend and frontend.
|
||||
- Fixed: Convert Plus Widget Title not rendering Theme CSS.
|
||||
|
||||
Version 3.5.7 April 14, 2020
|
||||
- Security: User capability check added for ajax actions.
|
||||
- Fixed: Campaign Analytics and Contacts are not displaying according to the list.
|
||||
- Fixed: Media not uploading when Gutenberg installed.
|
||||
- Fixed: Cannot add new Social Icons in the module
|
||||
- Fixed: YouTube Module not displaying on the mobile devices.
|
||||
- Fixed: Floating Social Bar not showing Profile Link in the customizer.
|
||||
- Fixed: PHP notice with the latest version of PHP.
|
||||
|
||||
Version 3.5.6 March 13, 2020.
|
||||
- Fixed: Hidden field not displayed in the frontend.
|
||||
- Fixed: Checkbox field not rendering HTML in the frontend.
|
||||
- Fixed: Create Campaign button not working.
|
||||
- Fixed: Exporting CSV file for contacts not working for the particular campaign.
|
||||
- Fixed: Contact details not displaying.
|
||||
- Fixed: Delete Campaign not working.
|
||||
- Fixed: Campaign Analytics not displayed.
|
||||
- Fixed: Unnecessary displaying of the HTML span tag when used shortcode.
|
||||
- Fixed: Dropdown field not displayed in the frontend.
|
||||
- Fixed: Timezone variable exception.
|
||||
|
||||
Version 3.5.5 February 13, 2020
|
||||
- Fixed: Activate License link not displayed on the Plugins Page.
|
||||
|
||||
Version 3.5.4 February 12, 2020
|
||||
- Improvement: Hardened the security of plugin
|
||||
- Improvement: Compatibility with latest WordPress PHP_CodeSniffer rules.
|
||||
|
||||
Version 3.5.3 January 31, 2020
|
||||
- Fixed: PHP triggered an error while generating the markup due to PHP buffer.
|
||||
- Fixed: The Pop-up not displaying on the website having the same Post, Page & category.
|
||||
|
||||
Version 3.5.2 January 22, 2020.
|
||||
- Security Fix: Cross-site scripting (XSS) vulnerability.
|
||||
|
||||
Version 3.5.1 July 26, 2019.
|
||||
Fixed: PHP trigger an error while generating the markup due to PHP buffer.
|
||||
|
||||
Version 3.5.0 July 23, 2019.
|
||||
- New: Google reCAPTCHA V2.
|
||||
- Fixed: Conflict with smart-cookie-kit plugin.(The plugin was not allowing the Convert Plus settings to be saved.)
|
||||
- Fixed: The Pop-up displayed even if the Page,Post and category number are same.
|
||||
- Fixed: Leads not adding to the Convert Plus default campaign.
|
||||
- Fixed: Customizer not loading due to Conflict with 404 -301 plugin.
|
||||
- Fixed: PHP warning notices.
|
||||
|
||||
Version 3.4.5 June 7, 2019
|
||||
- Security: User with none role gets created on form submission by curl request for variants.
|
||||
|
||||
Version 3.4.4 June 3, 2019
|
||||
- Security: Improved Sanitization and escaping.
|
||||
- Fix: User with none role gets created on form submission by curl request.
|
||||
|
||||
Version 3.4.3 May 28, 2019.
|
||||
- Fixed: Security vulnerability fix.
|
||||
|
||||
Version 3.4.2 May 15, 2019.
|
||||
- Security update with cross-site scripting vulnerability issue.
|
||||
|
||||
Version 3.4.1 Febraury 27, 2019.
|
||||
- Improvement: Exporting/Importing analytics.
|
||||
- Fixed: Conflict of Convert Plus with Order Attachment Pro for Woo commerce.
|
||||
- Fixed: Error Notification email ID.
|
||||
|
||||
Version 3.4.0 January 10, 2019.
|
||||
- New: Option to display popup if Woocommerce item is in cart on exit intent trigger.
|
||||
- New: Option to load Js/CSS asynchronous.
|
||||
- Fixed: Form Separator error for Jugaad style of inline module.
|
||||
- Fixed: Conflict with Twenty Nineteen Theme.
|
||||
|
||||
Version 3.3.6 October 29, 2018.
|
||||
- Fixed: Direct Download Template Close Link.
|
||||
- Fixed: The extra addition of the slashes in the enqueue style.
|
||||
- Fixed: Share count not working issue due to some API changes.
|
||||
- Improvement: Addition of the version number to the Convert Plus CSS and JS files.
|
||||
|
||||
Version 3.3.5 September 12, 2018.
|
||||
- Fixes: Added 'after_cp_activate' action hook.
|
||||
- Fixed: Error_logs for Geolocation.
|
||||
- Fixed: PharData class not exist error.
|
||||
|
||||
Version 3.3.4 September 05, 2018.
|
||||
- Fixes: GEO Location breaks the site.
|
||||
- Fixes: Contact not submitted with infobar and Slide in for Zapier.
|
||||
|
||||
Version 3.3.3 September 03, 2018.
|
||||
- New: GEO Location target setting to display or hide module in a particular country or countries.
|
||||
- New: Option to change the Email address to receive Error notification.
|
||||
- New: Option to close gravity form from Convert Plus modules after form submission.
|
||||
- Improvement: Changed Google+ icon in social media style.
|
||||
- Fixed: YouTube Autoplay video not getting closed.
|
||||
- Fixed: Audio not closed on popup close event for autoplay video.
|
||||
- Fixed: PDF file name set to NAN.
|
||||
- Fixed: Inline modal popup background issue.
|
||||
|
||||
Version 3.3.2.1 July 25, 2018.
|
||||
- Fixed: Inline modal popup background issue.
|
||||
- Fixed: Downloaded pdf name is set to NAN.
|
||||
|
||||
Version 3.3.2 July 24, 2018.
|
||||
- New: Feature to export Analytics.
|
||||
- New: Prevent form submission for particular domain email IDs.
|
||||
- New: Introduced lazy load images.
|
||||
- New: Introduced Subscriber/ Newsletter template for Slide In.
|
||||
- New: Introduced a filter to display specific Convert Plus module if some URL parameters set.
|
||||
- Improvement: Download multiple files after redirect URL on form submission.
|
||||
- Fixed: Space and scroll issue for the modal popup.
|
||||
- Fixed: HTML in Checkbox label is broken.
|
||||
|
||||
Version 3.3.1 July 2, 2018.
|
||||
- New: Honeypot field to prevent spam entries through Convert Plus opt-in forms.
|
||||
- New: HTML support for checkbox label.
|
||||
- New: HTML code can be added to input field name.
|
||||
- Improvement: Number field CSS to remove arrows from the field.
|
||||
- Fixed: Import modules issue while importing templates from the Convert Plus site.
|
||||
- Fixed: Creating variant failed to duplicate the parent style.
|
||||
- Fixed: Inline form misalignment issue.
|
||||
- Fixed: SendGrid list not visible in Connects dashboard.
|
||||
- Fixed: Modal's full screen background color not visible.
|
||||
- Fixed: Modal's overlay background image not getting exported.
|
||||
|
||||
Version 3.3.0 May 25 2018.
|
||||
- New: Custom form analytics for Contact form 7, Gravity form and Ninja form.
|
||||
- New: Added option to disable data storage in WordPress backend.
|
||||
- New: Background image option for overlay.
|
||||
- New: Custom selector to trigger popup.
|
||||
- New: Option to add Custom class for modules.
|
||||
- Fixed: Conflict with Wp Emember plugin.
|
||||
- Fixed: Default Campaign not created.
|
||||
- Fixed: Checkbox Field in form is not working in Firefox and Safari.
|
||||
- Fixed: Background image issue for preset styles.
|
||||
- Improvement: Changed license to GPL v2.
|
||||
|
||||
Version 3.2.3 April 23 2018.
|
||||
- Fixed: WordPress user role added to site due to insynch addons missing settings.
|
||||
|
||||
Version 3.2.2.1 April 20 2018.
|
||||
- Improvement: Feature to alot WordPress user role to subscribed user.
|
||||
|
||||
Version 3.2.2 April 11 2018.
|
||||
- Improvement: Feature to alot WordPress user role to subscribed user.
|
||||
|
||||
Version 3.2.1 April 11 2018.
|
||||
- New: Included style name in subscriber notification email.
|
||||
- New: Added custom field for passing user IP address & time.
|
||||
- New: Added feature to set subscribed user as a WordPress user for site.
|
||||
- New: Added Instagram network in social media styles.
|
||||
- Improvement: Users can share as many images as they want on Pinterest (through Social styles).
|
||||
- Fixed: Conflict with Divi visual builder.
|
||||
- Fixed: Conflict with The-Voux theme.
|
||||
- Fixed: Image upload issue.
|
||||
- Fixed: Scheduler status not visible.
|
||||
- Fixed: PHPCS error.
|
||||
- Fixed: Duplicate form ID issue.
|
||||
|
||||
Version 3.2.0 Feb 01 2018.
|
||||
- New: License Registration screen and process.
|
||||
- Fixed: Close popup on gravity form submission.
|
||||
- Fixed: Info bar push page down issue with Avada theme.
|
||||
- Fixed: An empty row content issue for Avada theme.
|
||||
- Fixed: Scroll function called on every scroll event causing the delay for page.
|
||||
- Fixed: Impression count not working.
|
||||
- Fixed: Video autoplay not working.
|
||||
- Fixed: Modal Autoclose not working.
|
||||
- Fixed: HTML syntax error for data-form-layout.
|
||||
- Fixed: Fullscreen modal space issue.
|
||||
- Fixed: HTML from success message not working.
|
||||
- Fixed: Slide In image gets cut on multiple page refresh.
|
||||
|
||||
Version 3.1.3 Dec 22 2017.
|
||||
- Fixed: Hide on devices not working.
|
||||
- Fixed: Contact not getting added for default campaign.
|
||||
- Fixed: Theme added empty row id load after post enabled.
|
||||
|
||||
Version 3.1.2 Dec 15 2017.
|
||||
- Fixed: Infobar Page push down issue.
|
||||
- Fixed: Infinite refresh loop on click of "Delete" button.
|
||||
- Fixed: Infobar scroll issue for push page down on IOS devices.
|
||||
- Fixed: Infobar manual display shortcode doesn't work.
|
||||
- Fixed: Page scroll issue while Infobar or Slide In open on mobile devices.
|
||||
- Fixed: Conflict with Jobster theme.
|
||||
- Fixed: Conflict with Amazone link builder plugin.
|
||||
- New: Delete all style functionality.
|
||||
|
||||
Version 3.1.1 Dec 7 2017.
|
||||
- Fixed: License page not working issue.
|
||||
|
||||
Version 3.1.0 Dec 5, 2017.
|
||||
- New: Added Gradient background option for the Jugaad style.
|
||||
- New: Added text color option for the modal and slide-ins success message.
|
||||
- New: Option to open redirection URL in new tab.
|
||||
- Improvement: Show/ hide option added in logged in user targeting option.
|
||||
- Improvement: Accept HTML tags in content for the Email notification.
|
||||
- Improvement: JS optimisation on the frontend.
|
||||
- Fixed: Close option not working for info bar in Mozilla browser.
|
||||
- Fixed: Inline module's impression count not working.
|
||||
- Fixed: Focus issue with form field input.
|
||||
- Fixed: Slide-in visibility on the front end.
|
||||
- Fixed: Slide-in does not open on the second click while using click event.
|
||||
- Fixed: Same Slide-in open on click of inputs from the inline slide in.
|
||||
- Fixed: Default position for module image not working.
|
||||
- Fixed: Info bar issue with Push down the page.
|
||||
- Fixed: Schedule option not working issue for modules.
|
||||
- Fixed: Target page settings not working for WooCommerce archive pages.
|
||||
|
||||
Version 3.0.3 Oct 10, 2017.
|
||||
- New: New gradient background option for module.
|
||||
- Fixed: Conflict with Imagify plugin.
|
||||
- Fixed: Conflict with WP Fastest Cache plugin.
|
||||
- Fixed: JS error due to frosty not defined.
|
||||
- Fixed: Issue of subscribe button is not focused on tab event.
|
||||
- Fixed: Referrer detection not working issue.
|
||||
- Fixed: iPhone input field focus not set issue.
|
||||
- Fixed: Lead data not passed issue.
|
||||
- Fixed: JS error due to url_arr not defined.
|
||||
- Fixed: Target page setting not working for categories and tags.
|
||||
- Fixed: File export issue for user if header not set.
|
||||
- Fixed: Advance border issue for slide-in.
|
||||
- Fixed: Infobar page push not working.
|
||||
- Fixed: Gravity form not working with infobar.
|
||||
- Fixed: Gradient image issue.
|
||||
- Fixed: Delete style option from customizer not working.
|
||||
- Fixed: Default campaign not created on first installation.
|
||||
|
||||
Version 3.0.2 Sep 20, 2017.
|
||||
- New: Introduced a filter to change countdown timers label for language specific popup.
|
||||
- New: Introduced countdown template for infobar.
|
||||
- New: Introduced border radius option for countdown background.
|
||||
- Security Fix: A cross-site scripting (XSS) vulnerability was discovered in links.
|
||||
- Fixed: Slide-in opt-in widget issue - Minimize slide-in option not working properly if more than one slide-in present.
|
||||
- Fixed: Slide-in image position issue for free widget.
|
||||
- Fixed: Social count not working.
|
||||
- Fixed: Plugin settings URL not working.
|
||||
- Fixed: Frosty issue.
|
||||
|
||||
Version 3.0.1 Sep 6, 2017.
|
||||
-New: Display after refreshing page x number of times.
|
||||
-New: Feature to export contacts from all campaigns.
|
||||
-New: Feature to close an inline form after submission.
|
||||
-New: Added option to set subject and message for subscriber email notification.
|
||||
-New: Enabling or disabling a popup for specific user roles.
|
||||
-New: Multiple Selections to delete modal.
|
||||
-Improvements: Add localization support for countdown template.
|
||||
-Improvements: Pagination improvement.
|
||||
-Fixed: Blur text issue on retina display.
|
||||
-Fixed: Social media count not working due to API changes.
|
||||
-Fixed: Performance improvement.
|
||||
-Fixed: Tooltip improvement.
|
||||
-Fixed: If search result is empty, do not display pagination.
|
||||
-Fixed: If search result has more than limits then only pagination will visible.
|
||||
-Fixed: Email notification not working for all connects.
|
||||
-Fixed: Reduce Ajax call resources - Count unique impressions only.
|
||||
-Fixed: Special characters in inline modules are not visible.
|
||||
|
||||
Version 3.0.0 July 5, 2017
|
||||
- New: ConvertPlug rebranded to Convert Plus.
|
||||
|
||||
Version 2.4.2 June 15, 2017
|
||||
- New: Added a typography option for close link tooltip of modal.
|
||||
- New: Email notifications for all campaigns.
|
||||
- New: Added checkbox field to form builder.
|
||||
- New: Added option to set subject and message for subscriber email notification.
|
||||
- New: Multiple email ID's can be added to receive subscriber notifications.
|
||||
- New: Hidden field that contain page_url name will generate current page URL.
|
||||
- Fixed: Template import does not work due to server configuration blocking file_allow_url.
|
||||
- Fixed: YouTube video not playing automatically if triggered with short-code.
|
||||
- Fixed: Free ebook templates background color not applied issue.
|
||||
- Fixed: Update contact if user is already subscribed for default campaign.
|
||||
- Fixed: Disabled impression count setting not working for inline modal.
|
||||
- Fixed: Option for Attached email field for layout 3 not working.
|
||||
- Fixed: Form Layout not working in customizer.
|
||||
|
||||
Version 2.4.1.1 May 29, 2017
|
||||
- New: Option to add typography options to modal tool tip.
|
||||
- Fixed: Text blur issue on safari.
|
||||
- Fixed: Template import not working due to server configuration block the file_allow_url.
|
||||
- Fixed: YouTube video not playing automatically if launch with short-code.
|
||||
- Fixed: Scroll issue if inline shortcode used.
|
||||
|
||||
Version 2.4.1 May 27, 2017
|
||||
- Fixed: Info bar CSS issue for safari.
|
||||
- Fixed: Conflict due to disabled class with bootstrap CSS.
|
||||
- Fixed: Conflict due to Imagify plug in.
|
||||
- Fixed: Conflict with OptimizePress Experiments.
|
||||
- Fixed: PHP warning notices.
|
||||
- Fixed: Impression count issue for more than one module open at same time.
|
||||
- Fixed: Redirect URL issue if pop up is blocked.
|
||||
- Fixed: Special character issue from affiliate link.
|
||||
- Fixed: Close link cut issue for Firefox.
|
||||
- New: Option to minimize style on click of complete header.
|
||||
|
||||
Version 2.4.0 April 24, 2017
|
||||
- New: Patched XSS Vulnerabilities
|
||||
- New: Added border and font option for toggle buttons
|
||||
- New: Added the shake animation effect for input field validation
|
||||
- New: Added an option to disable Impression Count
|
||||
- New: Added a feature to delete contacts from campaign
|
||||
- New: Added an option to make the button link NoFollow
|
||||
- Fixed: Compatibility issues for PHP 5.3
|
||||
- Fixed: Z index issue with a manual click trigger
|
||||
- Fixed: Modal gets stuck on safari browser on scroll trigger
|
||||
- Fixed: Contact form 7, comment form, registration form contact sync not working with default campaign
|
||||
- Fixed: Alt text not set for all images
|
||||
- Fixed: Download issue with PDF file for iPhone users
|
||||
- Fixed: Campaign multiple list names not visible
|
||||
- Fixed: Slide in opt-in widget minimize initially option not working
|
||||
- Fixed: Create Campaign link does not work in editor
|
||||
- Fixed: SSL security issue after site migration
|
||||
|
||||
Version 2.3.3 March 6, 2017
|
||||
- IMPORTANT SECURITY FIXES:Info bar module export functionality bugs.
|
||||
- Fix: Removed PHP notices on style list screen.
|
||||
- Improvement: Code hardening for better security.
|
||||
- Improvement: Added user capability checks for admin actions.
|
||||
- Improvement: General code clean up.
|
||||
|
||||
Version 2.3.2.1 Feb 24, 2017
|
||||
- Fixed: Vulnerability in adding subscriber to list method
|
||||
- Improvement: Export style and contacts using WordPress actions
|
||||
|
||||
Version 2.3.2 - Jan 31, 2017
|
||||
- New: Subscriber email notification for Default campaign
|
||||
- New: Dynamic share count for Social Media Styles
|
||||
- New: Font family option for close text
|
||||
- New: Two or more slide Ins open on the same page if one of them is floating social media style
|
||||
- Improvement: Cookie functionality for variant styles
|
||||
- Improvement: Fallback to wp_get_attachment_image_url function
|
||||
- Improvement: Referral detection functionality
|
||||
- Improvement: Hide on devices option for mobile
|
||||
- Fixed: Conflict with FlatSome theme
|
||||
- Fixed: Function name Conflict with dynamic X Theme
|
||||
- Fixed: CSS conflict for placeholder with Imprezia theme
|
||||
- Fixed: Style Import/Export issue with SMTP Postman plugin
|
||||
- Fixed: Conflict with WP All import plugin
|
||||
- Fixed: Tool-tip conflict with Optimizely plugin
|
||||
- Fixed: Scrollbar error for Slide In
|
||||
- Fixed: Pinterest JS issue
|
||||
- Fixed: Modal elements overlapping other elements even after closing
|
||||
- Fixed: YouTube style border appearing issue
|
||||
- Fixed: Border property not working for variant style in customizer
|
||||
- Fixed: After Form Submission error for "Do nothing" option
|
||||
|
||||
Version 2.3.1 - June 20, 2016
|
||||
- New: Social media with form modal style
|
||||
- New: Social article modal style
|
||||
- New: Free widget slide in style
|
||||
- New: Filter hook for target page settings
|
||||
- New: HTML tags allowed in success and failure message after form submission
|
||||
- New: Added input box radius option
|
||||
- New: Added option to set timeout to display close button
|
||||
- New: Retrieving alt attribute for media images
|
||||
- New: Added download file option after redirection
|
||||
- New: Added positions for close button
|
||||
- New: Added option to appear module when user scrolls to a certain ID or Class on the page
|
||||
- New: Added option to auto close module
|
||||
- New: Added option to set actions after successful form submission
|
||||
- New: Added option to minimize optin widget slide in style on load
|
||||
- New: Added option to attach input field and submit button
|
||||
- Improvement: Display style edit link at front end only for users who has access to ConvertPlus
|
||||
- Improvement: Fixed conflicts with WooCommerce, Ultimate Member and Blog Manager plugin
|
||||
- Fixed: Mod security for relative image path
|
||||
- Fixed: Modal overlapping on other HTML containers after closing
|
||||
- Fixed: Sanitize folder name issue while importing style
|
||||
- Fixed: Custom CSS style including multiple times
|
||||
|
||||
Version 2.3.0 - May 19, 2016
|
||||
- New: Introduced 30+ new styles
|
||||
- New: Introduced social media styles
|
||||
- New: Introduced floating social bar style
|
||||
- New: Introduced predefined images set for close image
|
||||
- New: Introduced style importer which will import hot link images into WP Media
|
||||
- New: Introduced image source option
|
||||
- Improvement: Google font import / export through style exporter
|
||||
- Improvement: Something went wrong email notification to administrator
|
||||
- Fixed: Fatal error for memory exhausted issue, improved target pages setting
|
||||
- Fixed: Form field values in customizer are not saving
|
||||
- Fixed: Conflict with WooCommerce update counter
|
||||
- Fixed: File permissions issue while style import
|
||||
|
||||
Version 2.2.0 - March 31, 2016
|
||||
- New: Introduced new option to control double optin setting for third party mailers
|
||||
- New: Introduced new setting to manage ConvertPlus dashboard access for user roles
|
||||
- New: Introduced new height option for textarea field in form designer
|
||||
- New: Introduced new shadow option for input field in form designer
|
||||
- Improvement: Partial AJAX call in customizer to improve customizer performance
|
||||
- Improvement: Odd fields support for Form Layout 2
|
||||
- Fixed: Referrer detection issue
|
||||
|
||||
Version 2.1.0 - March 09, 2016
|
||||
- New: Introduced smart trigger to display module inline before / after post
|
||||
- New: Introduced widget for inline display of modules
|
||||
- New: Introduced new countdown style for Modal
|
||||
- New: Introduced ConvertPlus Addon installer feature in plugin itself
|
||||
- Improvement: Load custom admin page in customizer to avoid conflicts
|
||||
- Improvement: Moved inbuilt third party mailers into separate addon
|
||||
- Improvement: Load module's JS on respective pages only
|
||||
- Improvement: Display toggle button from initial load for Slide In & Info Bar
|
||||
- Improvement: Provided more comparison factors to single style analytics as like impression, conversion etc.
|
||||
- Fixed: "Something went wrong" error message when user is already subscribed
|
||||
- Fixed: Duplicate H1 issue in module content
|
||||
- Fixed: Date select issue in Analytics
|
||||
- Fixed: Reset analytics issue for multi variant styles
|
||||
- Fixed: Optimized shortcode variables
|
||||
- Fixed: Slide In z-index issue
|
||||
- Fixed: Module's trigger issue with manual launch triggers
|
||||
- Fixed: Warning errors of category archive page
|
||||
|
||||
Version 2.0.1 - February 11, 2016
|
||||
- Fixed: Leads submission data display issue at backend
|
||||
- Fixed: Cookies store issue
|
||||
|
||||
Version 2.0.0 - February 10, 2016
|
||||
- New: Introduced unlimited input field support for all forms & styles
|
||||
- New: Introduced Flexi style for Modal, now create unlimited modal structures from one style
|
||||
- New: Introduced Social Media style for Modal
|
||||
- New: Introduced Referral Detection trigger in Target Visitors setting
|
||||
- New: Introduced Clear Analytics functionality to all styles
|
||||
- Improvement: Provided height option for Blank style modal
|
||||
|
||||
Version 1.1.1 - 20 January, 2015
|
||||
- Improvement: Manual triggers support like shortocode, display inline for Info Bar & Slide In
|
||||
- Improvement: Push page down support for Info Bar
|
||||
- Improvement: Special pages (Frontpage / Blog Page / Search / 404 / Author / Archive) support in Target Pages setting
|
||||
- Fixed: Mozilla Firefox hyperlink issue
|
||||
|
||||
Version 1.1.0 - 8 January 2015
|
||||
- New: Introduced new module - Slide In
|
||||
- New: Introduced new trigger - At the end of post / page content
|
||||
- New: Introduced 3 brand new Info Bar styles
|
||||
- New: Introduced toggle button feature for Info Bar
|
||||
- Improvement: Conversion can calculate from submit button click as well
|
||||
- Improvement: Added border color option for Info Bar
|
||||
- Improvement: Provided default styling for Contact Form 7 added by shortcode
|
||||
|
||||
Version 1.0.3 - 30 December 2015
|
||||
- Fixed: Compatibility issue with mod_security
|
||||
- Fixed: Hyperlink issue of Info Bar module
|
||||
- Fixed: Info Bar import / export issue
|
||||
- Fixed: Scheduled Popup JS issue
|
||||
- Fixed: TripAdvisor js blocking issue
|
||||
- Improvement: Introduced new feature to display modal popup inline as a part of page content / widget
|
||||
- Improvement: Provided an option to disable modules on mobile / tab devices
|
||||
- Improvement: Provided an option to disable Google font loading at frontend
|
||||
|
||||
Version 1.0.2 - 22 December, 2015
|
||||
- Fixed: Modal not saving issue due to mod_security
|
||||
- Fixed: Redirect after subscription
|
||||
- Improvement: Connects List
|
||||
|
||||
Version 1.0.1 - 17 December, 2015
|
||||
- Fixed: Anchor tag color of default WP dashboard is hijacking through CP admin CSS
|
||||
- Fixed: License registration not working
|
||||
- Fixed: Modal / Info Bar loading priority for same trigger event
|
||||
- Improvement: Custom post type support for target pages
|
||||
- Improvement: Introduced new inline close link position for Info Bar
|
||||
- Improvement: JS optimization
|
||||
- Improvement: Quick view action button for behaviour settings
|
||||
|
||||
Version 1.0.0 - 14 December, 2015
|
||||
- Initial ConvertPlus Plugin
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/cooking-recipe-block/composer_file/package.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/cooking-recipe-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "gutenberg-receipe-block",
|
||||
"version": "1.0.0",
|
||||
"description": "A learning plugin for gutenberg",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"author": "Rajan Panchal",
|
||||
"license": "Creole",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^19.2.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^8.0.3",
|
||||
"@wordpress/blocks": "^11.1.4",
|
||||
"@wordpress/components": "^19.0.3",
|
||||
"@wordpress/create-block": "^2.7.0",
|
||||
"@wordpress/i18n": "^4.2.4",
|
||||
"@wordpress/icons": "^6.1.1",
|
||||
"classnames": "^2.3.1",
|
||||
"react-slick": "^0.28.1",
|
||||
"save": "^2.4.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "copysmithai",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"publish": "webpack --env production",
|
||||
"staging": "webpack --env staging",
|
||||
"start": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.15.0",
|
||||
"@babel/preset-env": "^7.15.0",
|
||||
"acorn": "^8.4.1",
|
||||
"babel-loader": "^8.2.2",
|
||||
"webpack": "^5.50.0",
|
||||
"webpack-cli": "^4.8.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/preset-react": "^7.14.5",
|
||||
"@copysmith/api": "0.0.74-5",
|
||||
"@emotion/react": "^11.4.1",
|
||||
"@emotion/styled": "^11.3.0",
|
||||
"@material-ui/core": "^4.12.3",
|
||||
"@material-ui/icons": "^4.11.2",
|
||||
"@mui/material": "^5.0.0",
|
||||
"axios": "^0.21.1",
|
||||
"dotenv": "^10.0.0",
|
||||
"formik": "^2.2.9",
|
||||
"luxon": "^2.0.2",
|
||||
"prop-types": "^15.7.2",
|
||||
"react": "^17.0.2",
|
||||
"react-dnd": "^14.0.3",
|
||||
"react-dnd-html5-backend": "^14.0.1",
|
||||
"react-dom": "^17.0.2",
|
||||
"react-query": "^3.19.6",
|
||||
"react-tag-input": "^6.7.3",
|
||||
"yup": "^0.32.11"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/crucial-real-estate/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/crucial-real-estate/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - September 22 2021 =
|
||||
* Initial release
|
||||
301
spec/fixtures/dynamic_finders/plugin_version/csv-to-db/translation_file/src/lang/csv2db.pot
vendored
Normal file
301
spec/fixtures/dynamic_finders/plugin_version/csv-to-db/translation_file/src/lang/csv2db.pot
vendored
Normal file
@@ -0,0 +1,301 @@
|
||||
# Copyright (C) 2022 CSV To DB
|
||||
# This file is distributed under the same license as the CSV To DB package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CSV To DB 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/csv-to-db\n"
|
||||
"POT-Creation-Date: 2022-03-10 11:26:36+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:118 src/CSV2DB/Controllers/Admin.php:119
|
||||
#: src/CSV2DB/Controllers/Admin.php:160 src/CSV2DB/Controllers/Admin.php:161
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# csv2db.pot (CSV To DB 2.0.0) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: src/CSV2DB/Controllers/Admin.php:133 src/CSV2DB/Controllers/Admin.php:134
|
||||
#: src/views/error.php:2 src/views/fields.php:3 src/views/import.php:2
|
||||
#: src/views/options.php:2
|
||||
msgid "CSV To DB"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:142 src/CSV2DB/Controllers/Admin.php:143
|
||||
#: src/views/fields.php:190 src/views/import.php:41 src/views/import.php:53
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:151 src/CSV2DB/Controllers/Admin.php:152
|
||||
#: src/views/fields.php:15
|
||||
msgid "Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:191 src/CSV2DB/Controllers/Admin.php:392
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:216
|
||||
msgid "Cannot read from CSV"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:224
|
||||
msgid "Cannot detect fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:236
|
||||
msgid "Success! Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:327
|
||||
msgid ""
|
||||
"Fields undefined! Click <a href=\"admin.php?page=wp-csv-to-db-fields"
|
||||
"\">Fields</a> to prepare fields."
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:353
|
||||
msgid ""
|
||||
"Columns undefined! Click <a href=\"admin.php?page=wp-csv-to-db-fields"
|
||||
"\">Fields</a> to prepare columns."
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Controllers/Admin.php:395
|
||||
msgid "Wrong file format"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Helper.php:63
|
||||
msgid "<strong>CSV To DB</strong> requires PHP version %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Helper.php:74
|
||||
msgid "<strong>CSV To DB</strong> requires WordPress version %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Models/File.php:23 src/views/fields.php:233
|
||||
#: src/views/import.php:57
|
||||
msgid "File size is too big!"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Models/File.php:32 src/views/fields.php:231
|
||||
#: src/views/import.php:55
|
||||
msgid "Unsupported File!"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Models/File.php:44
|
||||
msgid "Error uploading File!"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Models/File.php:47
|
||||
msgid "Something wrong with upload! Is \"upload_max_filesize\" set correctly?"
|
||||
msgstr ""
|
||||
|
||||
#: src/CSV2DB/Models/Table.php:66
|
||||
msgid "Column configuration is empty"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:19
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:22
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:25
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:28
|
||||
msgid "Null"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:31
|
||||
msgid "AI"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:34
|
||||
msgid "Index"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:37
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:40
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:43
|
||||
msgid "Align"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:46
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:133
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:136
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:139
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:154 src/views/options.php:67
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:156
|
||||
msgid "Save fields configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:158
|
||||
msgid "Export Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:159
|
||||
msgid "Export fields configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:161
|
||||
msgid "Clear Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:163
|
||||
msgid "Clear fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:165
|
||||
msgid "Create DB Table"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:167
|
||||
msgid "Create DB Table from current fields configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:169
|
||||
msgid "Export Schema"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:170
|
||||
msgid "Export DB schema"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:178
|
||||
msgid "Import Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:182
|
||||
msgid "Data File"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:192
|
||||
msgid "Import fields configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:203
|
||||
msgid "Analyze CSV"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:207 src/views/import.php:17
|
||||
msgid "CSV File"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:215
|
||||
msgid "Analyze"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:217
|
||||
msgid "Analyze CSV file and create the fields configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:228 src/views/import.php:52
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:229
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:230 src/views/import.php:54
|
||||
msgid "Your browser does not support new File API! Please upgrade."
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:232 src/views/import.php:56
|
||||
msgid "Limit Exceeded!"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/fields.php:234 src/views/import.php:58
|
||||
msgid "Please Wait..."
|
||||
msgstr ""
|
||||
|
||||
#: src/views/import.php:13
|
||||
msgid "CSV Import"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/import.php:25
|
||||
msgid "Skip first rows"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/import.php:33
|
||||
msgid "Re-Create table"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/import.php:42
|
||||
msgid "Import CSV file"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/items.php:3
|
||||
msgid "CSV To DB Items"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:5
|
||||
msgid "CSV Import Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:9
|
||||
msgid "Use LOCAL"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:18
|
||||
msgid "Fields Terminated By"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:28
|
||||
msgid "Fields Enclosed By"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:38
|
||||
msgid "Fields Escaped By"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:48
|
||||
msgid "Lines Starting By"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:57
|
||||
msgid "Lines Terminated By"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:69
|
||||
msgid "Reset to Defaults"
|
||||
msgstr ""
|
||||
|
||||
#: src/views/options.php:75
|
||||
msgid "Are you sure to reset CSV To DB settings?"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# csv2db.pot (CSV To DB 2.0.0) #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# csv2db.pot (CSV To DB 2.0.0) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://github.com/wlady"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,217 @@
|
||||
# Copyright (C) 2021 Cultivate
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cultivate for WooCommerce 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cultivate-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-09-29T14:45:59+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: cultivate-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:62
|
||||
msgid "Cultivate for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.wecultivate.us/install/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Cultivate integration for WooCommerce stores."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:45
|
||||
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:49
|
||||
#: includes/admin/views/html-admin-authorize-complete-page.php:6
|
||||
#: includes/admin/views/html-admin-options-page.php:88
|
||||
msgid "Cultivate"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.wecultivate.us/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:25
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-cultivate-admin-menus.php:36
|
||||
msgid "Authorize Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:30
|
||||
msgid "Made in USA"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:31
|
||||
msgid "Made in USA products are listed on Cultivate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:12
|
||||
msgid "Origin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:14
|
||||
msgid "By default, products you add to Cultivate are assumed to be Made in USA with imported materials - change here if this product is Fully Made in USA"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:19
|
||||
msgid "Made in USA with imported materials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/views/html-product-data-options.php:20
|
||||
msgid "Fully made in USA"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-authorize-complete-page.php:8
|
||||
#: includes/admin/views/html-admin-options-page.php:122
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s replaced with link start, %2$s replaced with link end HTML tags
|
||||
#: includes/admin/views/html-admin-options-page.php:100
|
||||
msgid "%1$s Sign In to Cultivate %2$s to connect your WooCommerce store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:107
|
||||
#: includes/class-wc-cultivate.php:106
|
||||
msgid "WooCommerce for Cultivate requires that you set up pretty permalinks. Default permalinks will not work, because they are not supported by the WooCommerce REST API."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:132
|
||||
msgid "Accept Terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:140
|
||||
msgid "Pay It Forward"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:143
|
||||
msgid "Pay It Forward is enabled for your store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:147
|
||||
msgid "Pay It Forward for your store is awaiting approval by Cultivate."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s replaced with link start, %2$s replaced with link end HTML tags
|
||||
#: includes/admin/views/html-admin-options-page.php:154
|
||||
msgid "You can enable %1$s Pay It Forward %2$s for your store to promote your store in Google search results for our extension users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:163
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:166
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:177
|
||||
msgid "Site Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:183
|
||||
msgid "Contact Details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:186
|
||||
msgid "Please enter the details of someone Cultivate can contact about your shop."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:195
|
||||
msgid "Contact Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:209
|
||||
msgid "Organization Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:222
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:234
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:248
|
||||
msgid "Site Details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:251
|
||||
msgid "Customize your site listing in Cultivate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:257
|
||||
msgid "Is your business:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:264
|
||||
msgid "Woman-owned or operated?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:271
|
||||
msgid "We use this to highlight your products in our results as being from a business wholly woman-owned or operated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:279
|
||||
msgid "BIPOC-owned or operated?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:286
|
||||
msgid "We use this to highlight your products in our results as being from a business wholly BIPOC-owned or operated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:301
|
||||
msgid "Headquarters Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:307
|
||||
msgid "-- Please select --"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:315
|
||||
msgid "We use this to filter our results when people search within a specific state"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:323
|
||||
msgid "Shop Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:330
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-options-page.php:351
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:89
|
||||
#: includes/class-wc-cultivate.php:103
|
||||
msgid "Cultivate for WooCommerce is installed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:91
|
||||
msgid "Please sign in to Cultivate to connect your store."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:92
|
||||
msgid "Your store name, URL and timezone will be sent to our servers."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:95
|
||||
msgid "Sign In to Cultivate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-cultivate.php:109
|
||||
msgid "Open permalinks settings"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/custom-help/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/custom-help/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
@@ -0,0 +1,346 @@
|
||||
# Copyright (C) 2022 ScriptsTown
|
||||
# This file is distributed under the same license as the Dark Mode Toggle plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dark Mode Toggle 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dark-mode-toggle\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-25T06:47:11+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: dark-mode-toggle\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/settings/index.php:16
|
||||
msgid "Dark Mode Toggle"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://scriptstown.com/wordpress-plugins/dark-mode-toggle/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Bring dark mode toggle switch to your WordPress website. A simple switch to turn on and off the dark mode. Fast and easy to use."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ScriptsTown"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://scriptstown.com/"
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Menu.php:51
|
||||
msgctxt "Page title"
|
||||
msgid "Dark Mode Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Menu.php:52
|
||||
msgctxt "Menu title"
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Menu.php:104
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Menu.php:107
|
||||
msgid "Get Premium"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Settings page link.
|
||||
#: core/Admin/Menu.php:126
|
||||
msgid "To get started with Dark Mode Toggle, visit our <a href=\"%s\" target=\"_blank\">settings page</a>."
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Menu.php:140
|
||||
msgid "Dark Mode Toggle Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Settings.php:75
|
||||
#: core/Admin/Settings.php:115
|
||||
msgid "Settings saved successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Settings.php:134
|
||||
msgid "Dismiss <span class=\"dmt-sr-only\">feedback alert.</span>"
|
||||
msgstr ""
|
||||
|
||||
#: core/Admin/Settings.php:164
|
||||
msgid "Settings reset successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: core/Utility.php:140
|
||||
msgid "Toggle dark mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pro.php:13
|
||||
msgid "Upgrade to Dark Mode Toggle Pro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pro.php:16
|
||||
msgid "Upgrade to Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pro.php:17
|
||||
msgid "Buy Now"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pro.php:18
|
||||
msgid "More Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:25
|
||||
msgid "Transition time:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:27
|
||||
msgid "Example: 0.5"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:28
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:31
|
||||
msgid "Set transition time in seconds."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Transition time
|
||||
#: inc/settings/advanced.php:32
|
||||
msgctxt "Transition time"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:38
|
||||
msgid "Hide Toggle Button on Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:42
|
||||
msgid "Whether to hide toggle button on small-screen mobile devices."
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:48
|
||||
msgid "Allow CSS Overrides on Front Pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:52
|
||||
msgid "For advanced users only. A CSS class \"darkmode--activated\" is added to the <body> tag. If you check this option, then you will have to manually override some styles using CSS rules based on your theme."
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:55
|
||||
msgid "<code class=\"dmt-p-0\"><strong>For example:</strong><br> .darkmode--activated p, .darkmode--activated li { color: #000; } .darkmode--activated .logo { mix-blend-mode: difference; }</code>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:63
|
||||
msgid "Also, you can apply the class \"darkmode-ignore\" to any HTML tag where you don't want to apply darkmode."
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/advanced.php:77
|
||||
#: inc/settings/front.php:196
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:26
|
||||
msgid "Enable Toggle Button on Front"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:35
|
||||
msgid "Position for Toggle Button:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:41
|
||||
msgid "Bottom - Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:50
|
||||
msgid "Bottom - Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:59
|
||||
msgid "Top - Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:68
|
||||
msgid "Top - Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:76
|
||||
msgid "Default: Bottom - Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:77
|
||||
msgid "Select position for toggle button."
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:82
|
||||
msgid "Position from Bottom:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:84
|
||||
#: inc/settings/front.php:96
|
||||
#: inc/settings/front.php:108
|
||||
#: inc/settings/front.php:120
|
||||
msgid "Example: 32"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:85
|
||||
#: inc/settings/front.php:97
|
||||
#: inc/settings/front.php:109
|
||||
#: inc/settings/front.php:121
|
||||
#: inc/settings/front.php:152
|
||||
#: inc/settings/front.php:164
|
||||
#: inc/settings/front.php:176
|
||||
msgid "pixels"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:88
|
||||
msgid "Set position from bottom in pixels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Position from Bottom
|
||||
#: inc/settings/front.php:89
|
||||
msgctxt "Position from Bottom"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:94
|
||||
msgid "Position from Top:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:100
|
||||
msgid "Set position from top in pixels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Position from Top
|
||||
#: inc/settings/front.php:101
|
||||
msgctxt "Position from Top"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:106
|
||||
msgid "Position from Left:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:112
|
||||
msgid "Set position from left in pixels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Position from Left
|
||||
#: inc/settings/front.php:113
|
||||
msgctxt "Position from Left"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:118
|
||||
msgid "Position from Right:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:124
|
||||
msgid "Set position from right in pixels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Position from Right
|
||||
#: inc/settings/front.php:125
|
||||
msgctxt "Position from Right"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:140
|
||||
msgid "Enqueue Scripts in the Head"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:144
|
||||
msgid "This is performance related option. Whether to enqueue scripts in the <head> tag instead of before </body> tag."
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:149
|
||||
msgid "Width for Toggle Button:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:151
|
||||
#: inc/settings/front.php:163
|
||||
#: inc/settings/front.php:175
|
||||
msgid "Example: 48"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:155
|
||||
msgid "Set width for toggle button in pixels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Width for Toggle Button
|
||||
#: inc/settings/front.php:156
|
||||
msgctxt "Width for Toggle Button"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:161
|
||||
msgid "Height for Toggle Button:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:167
|
||||
msgid "Set height for toggle button in pixels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Height for Toggle Button
|
||||
#: inc/settings/front.php:168
|
||||
msgctxt "Height for Toggle Button"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:173
|
||||
msgid "Border Radius for Toggle Button:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/front.php:179
|
||||
msgid "Set border radius for toggle button in pixels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Border Radius for Toggle Button
|
||||
#: inc/settings/front.php:180
|
||||
msgctxt "Border Radius for Toggle Button"
|
||||
msgid "Default: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/index.php:22
|
||||
msgid "Front Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/index.php:23
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/index.php:24
|
||||
#: inc/settings/reset.php:37
|
||||
#: inc/settings/reset.php:63
|
||||
msgid "Reset Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/reset.php:23
|
||||
msgid "Reset the plugin settings to the default state."
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/reset.php:45
|
||||
msgid "Reload to view default state."
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/reset.php:49
|
||||
msgid "Reload"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/reset.php:59
|
||||
msgid "Confirm Reset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/reset.php:60
|
||||
msgid "Are you sure to reset the plugin settings to the default state?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings/reset.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/dev-studio/change_log/changelog.txt
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/dev-studio/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
= 2.0.0 =
|
||||
* Update - New UI
|
||||
* Update - Plugin built on vanilla JS instead of using jQuery
|
||||
* Update - Data collection time improvement
|
||||
* Update - Optimized scripts and styles
|
||||
* Update - Wordpress support up to latest version
|
||||
* Update - WooCommerce support up to latest version
|
||||
* Add - Storage instance options (uploads directory or custom directory or Redis)
|
||||
* Add - Storage statistics
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,766 @@
|
||||
# Copyright (C) 2022 Diller AS
|
||||
# This file is distributed under the MIT.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Diller Loyalty 2 2.0.12\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/diller-loyalty\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-01-08T17:05:13+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: diller-loyalty\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Diller Loyalty 2"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://diller.no/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Diller is a loyalty platform for businesses that is easy, affordable and profitable and integrates seamlessly with your WooCommerce shop."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Diller AS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://diller.no/kontakt/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:110
|
||||
msgid "Diller Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:125
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:176
|
||||
#: admin/partials/diller-loyalty-admin-display.php:53
|
||||
msgid "Store connected successfully"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error description provided by the API.
|
||||
#: admin/class-diller-loyalty-admin.php:189
|
||||
msgid "Could not connect store. Details: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:220
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:28
|
||||
msgid "Connect your store"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:30
|
||||
msgid "Connected successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:34
|
||||
msgid "Contact your partner to get your API-Key and Store ID."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:41
|
||||
msgid "Store name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:48
|
||||
msgid "API-Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:51
|
||||
msgid "Your API-Key (32 chars long)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:55
|
||||
msgid "Store Pin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:58
|
||||
msgid "Your store PIN (6-digit long)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:63
|
||||
msgid "Reconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:63
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:21
|
||||
#: includes/class-diller-loyalty-auth.php:23
|
||||
msgid "You don't have permission to authenticate Diller Loyalty Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:48
|
||||
msgid "Thanks for installing Diller Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:56
|
||||
msgid "Environment:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:57
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:36
|
||||
msgid "Allow phone numbers from all countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:37
|
||||
msgid "Allow phone numbers from all countries, except for…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:38
|
||||
msgid "Allow phone numbers from specific countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:46
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:54
|
||||
msgid "Phone lookup - 1881.no"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:58
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:75
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:167
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:59
|
||||
msgid "If checked, Diller will try to fetch name and address automatically from 1881.no, by using the phone number."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:63
|
||||
msgid "Default phone country code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:70
|
||||
msgid "Enhanced phone field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:76
|
||||
msgid "If checked, form displays an enhanced phone input field, with dropdown to pick country codes and validate phone numbers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:80
|
||||
msgid "Phone numbers allowed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:87
|
||||
msgid "This option lets you define countries for which phone numbers are allowed or not."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:91
|
||||
msgid "Countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:102
|
||||
msgid "Preferred countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:109
|
||||
msgid "Choose one or more countries, to display on the top of the list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:117
|
||||
msgid "Formats"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:119
|
||||
msgid "Configure date formats, etc"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:124
|
||||
msgid "Default date placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: new line break
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:130
|
||||
msgid "The default placeholder for date input fields to provide a hint on how to type the date.%1$sEg. Norway: dd.mm.åååå, Sweden: åååå-mm-dd, UK: dd/mm/yyyy, US: mm/dd/yyyyetc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:148
|
||||
msgid "My Account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:155
|
||||
msgid "Minimum age for enrollment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:158
|
||||
msgid "The minimum age allowed, for enrolling the Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:163
|
||||
msgid "Enable stamps usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:168
|
||||
msgid "If checked, Stamps feature will be available for this store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:176
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: diller-loyalty.php:119
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-api-request.php:178
|
||||
msgid "Invalid authentication. Please make sure you typed the correct API-key and Store Pin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-api-request.php:180
|
||||
msgid "The API was unreachable."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: placeholder adds the response code.
|
||||
#: includes/class-diller-loyalty-api-request.php:188
|
||||
msgid "The API returned a <strong>%s</strong> response"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:206
|
||||
msgid "Could not extract the country code from the phone number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:221
|
||||
#: includes/class-diller-loyalty-utils.php:236
|
||||
#: includes/class-diller-loyalty-utils.php:253
|
||||
msgid "Invalid input. Could not parse phone number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:360
|
||||
msgid "Reason: The API was unreachable because the Airplane Mode plugin is active."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:381
|
||||
msgid "Reason: The API was unreachable because no external hosts are allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:41
|
||||
#: includes/class-diller-loyalty-woocommerce.php:283
|
||||
msgid "My coupons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:42
|
||||
#: includes/class-diller-loyalty-woocommerce.php:426
|
||||
msgid "My stamp cards"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:43
|
||||
#: includes/class-diller-loyalty-woocommerce.php:179
|
||||
#: includes/forms/class-diller-refer-friend-form.php:10
|
||||
#: includes/shortcodes/class-diller-refer-friend-shortcode.php:15
|
||||
msgid "Refer a friend"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:44
|
||||
#: includes/class-diller-loyalty-woocommerce.php:145
|
||||
#: includes/class-diller-loyalty-woocommerce.php:708
|
||||
#: includes/class-diller-loyalty-woocommerce.php:983
|
||||
#: includes/class-diller-loyalty-woocommerce.php:1061
|
||||
#: includes/class-diller-loyalty-woocommerce.php:1079
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:45
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:76
|
||||
msgid "Loyalty Program Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:78
|
||||
msgid "My level"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:82
|
||||
msgid "Points for use"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:83
|
||||
#: includes/class-diller-loyalty-woocommerce.php:93
|
||||
#: includes/class-diller-loyalty-woocommerce.php:97
|
||||
#: includes/class-diller-loyalty-woocommerce.php:241
|
||||
#: includes/class-diller-loyalty-woocommerce.php:292
|
||||
#: includes/class-diller-loyalty-woocommerce.php:360
|
||||
#: includes/class-diller-loyalty-woocommerce.php:438
|
||||
#: includes/class-diller-loyalty-woocommerce.php:506
|
||||
#: includes/class-diller-loyalty-woocommerce.php:713
|
||||
#: includes/class-diller-loyalty-woocommerce.php:752
|
||||
msgid "points"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:92
|
||||
msgid "Points till next level"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:97
|
||||
msgid "Points earned for the period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:138
|
||||
msgid "Member level qualification period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:139
|
||||
msgid "Qualification period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:140
|
||||
msgid "Never expire"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to my account page. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:149
|
||||
msgid "Become a member of our Loyalty Program to get exclusive benefits and offers from us.%1$s%2$sClick here%3$s to enroll now"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Loyalty Program enrollment form URL. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:193
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can invite your friends.%1$sTo enroll, please %2$sclick here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:229
|
||||
#: includes/class-diller-loyalty-woocommerce.php:348
|
||||
msgid "My Coupons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:241
|
||||
#: includes/class-diller-loyalty-woocommerce.php:292
|
||||
#: includes/class-diller-loyalty-woocommerce.php:360
|
||||
#: includes/class-diller-loyalty-woocommerce.php:438
|
||||
#: includes/class-diller-loyalty-woocommerce.php:506
|
||||
msgid "My points"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:253
|
||||
#: includes/class-diller-loyalty-woocommerce.php:303
|
||||
#: includes/class-diller-loyalty-woocommerce.php:377
|
||||
msgid "Coupon can be used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:254
|
||||
#: includes/class-diller-loyalty-woocommerce.php:304
|
||||
#: includes/class-diller-loyalty-woocommerce.php:378
|
||||
#: includes/class-diller-loyalty-woocommerce.php:451
|
||||
#: includes/class-diller-loyalty-woocommerce.php:524
|
||||
msgid "unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:255
|
||||
#: includes/class-diller-loyalty-woocommerce.php:305
|
||||
#: includes/class-diller-loyalty-woocommerce.php:379
|
||||
#: includes/class-diller-loyalty-woocommerce.php:395
|
||||
#: includes/class-diller-loyalty-woocommerce.php:452
|
||||
#: includes/class-diller-loyalty-woocommerce.php:525
|
||||
#: includes/class-diller-loyalty-woocommerce.php:541
|
||||
msgid "time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:255
|
||||
#: includes/class-diller-loyalty-woocommerce.php:305
|
||||
#: includes/class-diller-loyalty-woocommerce.php:379
|
||||
#: includes/class-diller-loyalty-woocommerce.php:395
|
||||
#: includes/class-diller-loyalty-woocommerce.php:452
|
||||
#: includes/class-diller-loyalty-woocommerce.php:525
|
||||
#: includes/class-diller-loyalty-woocommerce.php:541
|
||||
msgid "times"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:267
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:275
|
||||
#: includes/class-diller-loyalty-woocommerce.php:323
|
||||
msgid "You have no coupons available at the time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:315
|
||||
msgid "Go to coupon"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Loyalty Program enrollment form URL. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:331
|
||||
#: includes/class-diller-loyalty-woocommerce.php:411
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can access your coupons.%1$sTo enroll, please %2$sclick here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:387
|
||||
#: includes/class-diller-loyalty-woocommerce.php:535
|
||||
#: includes/class-diller-loyalty-woocommerce.php:555
|
||||
msgid "Expires:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:387
|
||||
#: includes/class-diller-loyalty-woocommerce.php:535
|
||||
#: includes/class-diller-loyalty-woocommerce.php:555
|
||||
msgid "expired"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:395
|
||||
msgid "Coupon has been used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:400
|
||||
msgid "Promo code:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:450
|
||||
msgid "Stamp can be used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:462
|
||||
msgid "Go to stamp"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:471
|
||||
msgid "You have no stamps available at the time"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Loyalty Program enrollment form URL. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:479
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can access your stamp cards.%1$sTo enroll, please %2$sclick here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:495
|
||||
msgid "My stamps"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:523
|
||||
msgid "Stamp can be used:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:541
|
||||
msgid "Stamp has been used"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: link to Loyalty Program enrollment form URL. 2: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:568
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can access your stamp cards. To enroll, please %1$sclick here%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:635
|
||||
#: includes/forms/class-diller-form.php:256
|
||||
msgid "You must enter a valid mobile number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:647
|
||||
#: includes/forms/class-diller-enrollment-form.php:183
|
||||
msgid "I want to get offers and benefits that suit me based on my preferences and purchase history."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Store Name, 2: link to Terms & Conditions URL, 3: closing url
|
||||
#: includes/class-diller-loyalty-woocommerce.php:650
|
||||
#: includes/forms/class-diller-enrollment-form.php:186
|
||||
msgid "I want to join %1$s's loyalty club and receive benefits, offers and other marketing communications electronically, including email, SMS and the like. Read our %2$sprivacy policy here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:712
|
||||
#: includes/class-diller-loyalty-woocommerce.php:734
|
||||
#: includes/class-diller-loyalty-woocommerce.php:769
|
||||
#: includes/forms/class-diller-refer-friend-form.php:109
|
||||
msgid "Points earned"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: link to Terms & Conditions URL, 2: closing url
|
||||
#: includes/class-diller-loyalty-woocommerce.php:1065
|
||||
msgid "You have unsubscribed the Loyalty Program. To enroll again and enjoy the benefits, please %1$sclick here%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty.php:845
|
||||
msgid "Join Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:18
|
||||
msgid "Mobile number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:29
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:35
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:42
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:49
|
||||
msgid "Gender"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:53
|
||||
msgid "Male"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:54
|
||||
msgid "Female"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:55
|
||||
msgid "Prefer not to answer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:58
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:59
|
||||
msgid "Postal code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:67
|
||||
msgid "Postal city"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:75
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:80
|
||||
msgid "Birth date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:222
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:330
|
||||
msgid "There is already a member with this phone number associated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:346
|
||||
msgid "Ooops! An error has occurred while we tried to enroll you in the loyalty program. Please try again later. If the problem persists please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:353
|
||||
msgid "Congratulations! You are now registered successfully in our loyalty program."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Webshop page. 3: closing link
|
||||
#: includes/forms/class-diller-enrollment-form.php:357
|
||||
msgid "You can access your loyalty program status and benefits by %1$sclicking here%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/class-diller-enrollment-form.php:390
|
||||
msgid "Field: %s has an invalid date value."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/class-diller-enrollment-form.php:412
|
||||
#: includes/forms/fields/class-diller-base-field.php:417
|
||||
msgid "Field: %s is required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:255
|
||||
msgid "Date value cannot be higher than today's date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:257
|
||||
msgid "You must enter a valid date value"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Minimum age for enrolling the Loyalty Program
|
||||
#: includes/forms/class-diller-form.php:260
|
||||
msgid "You must be at least %1$s years old to join the Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:265
|
||||
msgid "This phone number is already in use."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:266
|
||||
msgid "This email is already in use."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Loyalty Program, Enrollment Form URL (Inside My Account), 2: closing url
|
||||
#: includes/forms/class-diller-form.php:269
|
||||
msgid "Go to %1$sMy Account%2$s page instead to join the Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:16
|
||||
msgid "Your friend's first name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:23
|
||||
msgid "Your friend's last name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:30
|
||||
#: includes/forms/class-diller-refer-friend-form.php:106
|
||||
msgid "Your friend's email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:36
|
||||
msgid "Send invitation"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the number of points.
|
||||
#: includes/forms/class-diller-refer-friend-form.php:51
|
||||
msgid "Earn %s points for each friend you refer to sign up for our Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:84
|
||||
msgid "There is already a member in our loyalty club with this email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:88
|
||||
msgid "Thank you! You friend was successfully invited to join the loyalty program!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:105
|
||||
msgid "Your friend's name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:107
|
||||
msgid "Invite status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:119
|
||||
msgid "Registration completed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:121
|
||||
msgid "Awaiting registration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:127
|
||||
msgid "points earned"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:10
|
||||
msgid "SMS: I want to receive benefits, offers and other marketing electronically in connection with the customer club via SMS."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:11
|
||||
msgid "E-mail: I want to receive benefits, offers and other marketing electronically in connection with the customer club by E-mail."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:28
|
||||
msgid "Save my preferences"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:46
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:78
|
||||
msgid "You are unsubscribed from the Loyalty Program. Please allow 10 days for us to come to terms with this change and update our system."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:84
|
||||
msgid "Ooops! An error has occurred while trying to unsubscribe you from the Loyalty Program. Please try again later. If the problem persists please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:118
|
||||
msgid "Your loyalty program preferences were successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:121
|
||||
msgid "Welcome back!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:130
|
||||
msgid "Ooops! An error has occurred while we tried to update your loyalty program preferences. Please try again later. If the problem persists please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:167
|
||||
msgid "Loyalty Program - Unsubscribe"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:168
|
||||
msgid "Are you sure you want to leave the Loyalty Program ? You will miss out on great our special offers and discounts."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:174
|
||||
msgid "Stay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:181
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:37
|
||||
msgid "New mobile number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:46
|
||||
msgid "Verification code (sent by SMS)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:56
|
||||
msgid "Verify phone number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:114
|
||||
msgid "Your phone number has been successfully changed!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:114
|
||||
msgid "The verification code you entered is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Phone number.
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:130
|
||||
msgid "We just sent an SMS to <b>%s</b> with your verification code. It may take some seconds to arrive."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Phone number.
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:135
|
||||
msgid "We could not send the verification code to <b>%s</b>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/fields/class-diller-base-field.php:160
|
||||
msgid "%s is required"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Field name, 2: Field min length
|
||||
#: includes/forms/fields/class-diller-base-field.php:187
|
||||
msgid "%1$s must be minimum %2$d characters long"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: Field max length
|
||||
#: includes/forms/fields/class-diller-base-field.php:201
|
||||
msgid " and maximum of %d characters long"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Field name, 2: Field length
|
||||
#: includes/forms/fields/class-diller-base-field.php:206
|
||||
msgid "%1$s cannot be longer than %2$d characters"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/fields/class-diller-email-field.php:44
|
||||
msgid "Please provide a valid value for field: %s ."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/fields/class-diller-phone-field.php:52
|
||||
msgid "Phone number is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/fields/class-diller-select-field.php:71
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Line break 2: Loyalty Program, Enrollment Form URL (Inside My Account), 3: closing url
|
||||
#: includes/shortcodes/class-diller-enrollment-form-shortcode.php:24
|
||||
msgid "You have already joined our Loyalty Program.%1$sGo to %2$sMy Account%3$s page, if you wish to change your preferences and view your benefits."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,139 @@
|
||||
# Copyright (C) 2022 Phi Phan
|
||||
# This file is distributed under the GPL-2.0-or-later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Meta Field Block 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/meta-field-block\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-22T02:07:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: mfb\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Meta Field Block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Display a meta field as a block on frontend, support ACF fields."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Phi Phan"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://boldblocks.net"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:110
|
||||
msgid "Default 'meta'"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:112
|
||||
msgid "ACF - Advanced Custom Fields"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:115
|
||||
msgid "Custom field"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:120
|
||||
msgid "Please input \"Field Name\""
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:154
|
||||
#: src/edit.js:163
|
||||
#: src/edit.js:172
|
||||
msgid "Fields are registered with "
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:158
|
||||
msgid " and 'show_in_rest' setting is enable."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:167
|
||||
msgid " and 'Show in REST API' setting is ON."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:176
|
||||
msgid "The 'rest field' and the 'custom field' should be the same name. Or adding a filter for the hook `apply_filters( 'meta_field_block_get_block_content', $content, $attributes, $block )` to get value for front end."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:185
|
||||
msgid "Input the meta field name."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:190
|
||||
#: src/edit.js:200
|
||||
msgid "Suggest values: "
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:221
|
||||
msgid "Meta field settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:223
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:229
|
||||
msgid "Choose a meta type"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:234
|
||||
msgid "Field name"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:240
|
||||
msgid "Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:243
|
||||
msgid "Display before the field value."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:246
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:249
|
||||
msgid "Display after the field value."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/edit.js:255
|
||||
msgid "HTML element"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Meta Field Block"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Display a meta field as a block on frontend, supporting ACF fields."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright (C) 2021 Sanjeev Aryal
|
||||
# This file is distributed under the same license as the Do Not Send Emails If package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Do Not Send Emails If 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-24 04:38:58+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: src/Settings.php:105
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Do Not Send Emails If"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Do not send emails if conditions matches. You set the condition."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sanjeev Aryal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.sanjeebaryal.com.np"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
## [1.0.2] - 2021-09-17
|
||||
- Added missing files for WordPress plugin repository
|
||||
## [1.0.1] - 2021-09-17
|
||||
- Changed name of plugin from openapi-generator to document-generator-for-openapi
|
||||
## [1.0.0] - 2021-09-17
|
||||
- Initial release
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "driveworks-block-form-embed",
|
||||
"version": "1.0.0",
|
||||
"description": "Use Gutenberg blocks to quickly embed DriveWorks content e.g. Projects and DriveApps.",
|
||||
"author": "DriveWorks Ltd",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"DriveWorks",
|
||||
"DriveWorks Live",
|
||||
"Embed",
|
||||
"DriveApp",
|
||||
"Project",
|
||||
"Form",
|
||||
"Block",
|
||||
"Gutenberg",
|
||||
"Integration Theme",
|
||||
"Integration"
|
||||
],
|
||||
"homepage": "https://www.driveworks.co.uk/",
|
||||
"main": "build/index.js",
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^7.0.3",
|
||||
"@wordpress/blocks": "^11.1.1",
|
||||
"@wordpress/i18n": "^4.2.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^18.1.0",
|
||||
"lodash": "^4.17.21"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
1.2.6
|
||||
* Initial release
|
||||
@@ -0,0 +1,204 @@
|
||||
# Copyright (C) 2021 WP Desk
|
||||
# This file is distributed under the same license as the Dropshipping XML for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dropshipping XML for WooCommerce 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dropshipping-xml-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-28T10:11:07+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: dropshipping-xml-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Dropshipping XML for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#: dropshipping-xml-for-woocommerce.php:50
|
||||
msgid "https://www.wpdesk.net/products/dropshipping-xml-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
#: dropshipping-xml-for-woocommerce.php:49
|
||||
msgid "Import wholesale products to your store. Synchronize your WooCommerce products with the current offer of your suppliers."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Desk"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.wpdesk.net/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Action/Installer/PluginUnistallerAction.php:48
|
||||
msgid "Free version of plugin Dropshipping XML for WooCommerce was deactivated because Pro version is active."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Action/Loader/Plugin/PluginLinksLoaderAction.php:13
|
||||
#: src/Plugin/Template/FormFields/form-field-free.php:46
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:94
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:250
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:391
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:427
|
||||
msgid "https://www.wpdesk.net/products/dropshipping-xml-woocommerce/?utm_source=wp-admin-plugins&utm_medium=link&utm_campaign=dropshipping"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Action/Loader/Plugin/PluginLinksLoaderAction.php:13
|
||||
msgid "Purchase PRO version"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/FormFields/form-field-free.php:46
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:94
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:250
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:391
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:427
|
||||
msgid "Purchase PRO version to fully unlock this feature"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: page step
|
||||
#: src/Plugin/Template/Import/Options.php:18
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:21
|
||||
msgid "Step %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Options.php:22
|
||||
msgid "Set the product import cycle. Select the days of the week and hours for the cron process to run. The process will automatically synchronize the products in selected days and hours. See more in the <a href=\"https://wpde.sk/dropshipping-sync-options\" target=\"_blank\">documentation</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:25
|
||||
msgid "Map the tags of the supplier's file with the WooCommerce product fields. To do this you can drag&drop the name of the tag from the preview into the selected product field. <a href=\"https://www.wpdesk.pl/wp-content/uploads/2020/09/dropshipping_draganddrop.gif\">See how</a>. Learn more about mapping in the plugin <a href=\"https://wpde.sk/dropshipping-import\" target=\"_blank\">documentation</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:57
|
||||
msgid "Product data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:63
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:66
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:69
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:72
|
||||
msgid "Related products"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:75
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:78
|
||||
msgid "Variants"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:92
|
||||
msgid "If you want to have prices in WooCommerce higher that in the file, you can modify the prices on the fly by adding a certain amount or percentage."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:111
|
||||
msgid "Tax Class"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:135
|
||||
msgid "If you want to add multiple tax classes to mapper just separate dragged fields by comma."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:149
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:241
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:447
|
||||
msgid "Add +"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:237
|
||||
msgid "Add attributes to the products by mapping their names and / or values from the file."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:248
|
||||
msgid "Attributes added as taxonomy are available globally to the entire site."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: url to docs
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:259
|
||||
msgid "Read how to import variable products in <a href=\"%s\" style=\"text-decoration:none\">plugins docs →</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:268
|
||||
msgid "Select this option if each product variant has the same name in the product feed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:276
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:338
|
||||
msgid "There is an entry in the product feed containing the parent product."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:291
|
||||
msgid "Select this option if each product variant has the same SKU in the product feed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:307
|
||||
msgid "Select this option if each product variation has the same ID in the product feed but different xpath to ID."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:328
|
||||
msgid "Select this option if the product feed contains a field that identifies variants."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:356
|
||||
msgid "Short product description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:367
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:369
|
||||
msgid "Image URLs detected below will be downloaded to the WordPress library and product's gallery. <a href=\"https://wpde.sk/dropshipping-images-mapping\" target=\"_blank\">Visit docs site for more info</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:374
|
||||
msgid "Type in a separator character which will be used in the field below to separate image URLs."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:382
|
||||
msgid "Enable this option to automatically convert the HTML tags () to URLs, if they appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:389
|
||||
msgid "Enable this option to remove the featured image from gallery."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:396
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:398
|
||||
msgid "<a href=\"https://wpde.sk/dropshipping-categories-mapping\" target=\"_blank\">Docs of categories mapping</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:419
|
||||
msgid "Only the products from the feed that are assigned to the categories mapped below, will be imported. Checking will disable the option \"Create or select categories automatically\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:425
|
||||
msgid "Check to import categories from the file based on the values completed in the \"Product category field\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:433
|
||||
msgid "If you want to add multiple categories to mapper just separate dragged fields by comma."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:473
|
||||
msgid "Virtual"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,188 @@
|
||||
# Copyright (C) 2021 Guaven Labs
|
||||
# This file is distributed under the same license as the DxTag - Auto-Generated Product and Post Listings plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DxTag - Auto-Generated Product and Post Listings 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/guaven_dxtag\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-11-01T18:12:18+04:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: guaven_dxtag\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "DxTag - Auto-Generated Product and Post Listings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://guaven.com/dxtag/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The plugin generates dynamic taxonomy pages where it lists any kind posts, pages, products etc. under the rules you set.(f.e. price limits, stock quantity, some match in a post title etc.)"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Guaven Labs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://guaven.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-guaven_dxtag-admin.php:105
|
||||
msgid "Special Listings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-guaven_dxtag-admin.php:106
|
||||
#: admin/class-guaven_dxtag-admin.php:107
|
||||
msgid "DxTag Listings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-guaven_dxtag-admin.php:288
|
||||
msgid "Done! But there is no found product match under the rules you have just set. Try to adjust the rules."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d here is the number of found products.
|
||||
#: admin/class-guaven_dxtag-admin.php:291
|
||||
msgid "Success! %d products has been added to this DxTag."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:24
|
||||
msgid ""
|
||||
"By using DxTag tool you can auto-create dynamyc listing pages (with sidebar filters if your theme supports it) \n"
|
||||
" which is great for SEO, UX and E-Commerce Sale Boost."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s here is admin URL where we list already created custom rules.
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:30
|
||||
msgid ""
|
||||
"To get started, you can directly go to %s pages where we prepared \n"
|
||||
" <b>pre-installed samples for you</b>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:31
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:53
|
||||
msgid "Manage existing Rules"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s here is admin URL where we create our custom rules.
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:36
|
||||
msgid ""
|
||||
"To create your new rule you can use <b>%1$s</b> button below. For more help, read our \n"
|
||||
" %2$s\n"
|
||||
" or just %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:39
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:51
|
||||
msgid "Create new rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:40
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:41
|
||||
msgid "contact us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:57
|
||||
msgid "Setting fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:67
|
||||
msgid ""
|
||||
"For example, for default WordPress post tags this slug is a\"tag\", and an URL has <i>DOMAIN/tag/name</i> structure. \n"
|
||||
"The same for dynamic tags - just set any desired name. <br>\n"
|
||||
"Examples: <i>listing, collections, morehere, pick, additional,</i> etc.\n"
|
||||
"Default value is <b>\"dxtag\"</b>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:127
|
||||
msgid "URL for the created DxTag: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:129
|
||||
msgid "You can edit desciption and other fields of created taxonomy term: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:133
|
||||
msgid "You can directly use this URL anywhere you want.<br> Alternatively, as the plugin generates native WP custom tags, You can find and insert these tags in Menus, Widgets, Post Editor, etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:138
|
||||
msgid "Once You save/publish the rule, URL for the created dynamic tag will appear here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:143
|
||||
msgid "Additional Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:145
|
||||
msgid "- Value field should be like {taxonomy}:{slug_value} if you choose \"WP Term\" rule. f.e. product_cat:shoes or category:news etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:147
|
||||
msgid "- To use <i>OR</i> operand in Value field, you can use | separator. For example: <i>product | product_variation</i>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:149
|
||||
msgid "- To see how the rule works you need to publish it. To keep rule draft, private, pending etc. equals \"not publishing\" it yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:151
|
||||
msgid "- Once you published the rule, simply click to UPDATE RULE TAGS button above."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:153
|
||||
msgid "- If you unpublish/delete already published rule, then related taxonomy term will be deleted as well."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:155
|
||||
msgid "- If URL for the DxTag gives 404 not found error, just fo to Settings->Permalinks, and click to SAVE button. This will rebuild rewrite rules."
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:17
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:118
|
||||
msgid "Post Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:119
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:120
|
||||
msgid "Meta Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:121
|
||||
msgid "WP Term"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:122
|
||||
msgid "WooCommerce: Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:123
|
||||
msgid "WooCommerce: Sale Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:124
|
||||
msgid "WooCommerce: Stock Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:125
|
||||
msgid "WooCommerce: Stock Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:126
|
||||
msgid "WooCommerce: Product Category"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/dynamic-block-content/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/dynamic-block-content/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
= 0.1.0 =
|
||||
* Initial release.
|
||||
|
||||
@@ -0,0 +1,241 @@
|
||||
# Copyright (C) 2021 Vincent Dubroeucq
|
||||
# This file is distributed under the same license as the E-Connector for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: E-Connector for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/e-connector-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-09-30T09:28:07+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: e-connector-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "E-Connector for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/econnector-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Additional functionality to enhance your e-connector experience"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Vincent Dubroeucq"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://vincentdubroeucq.com/"
|
||||
msgstr ""
|
||||
|
||||
#: e-connector-for-woocommerce.php:73
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: e-connector-for-woocommerce.php:98
|
||||
msgid "The plugin E-Connector for WooCommerce requires WooCommerce to be active to work properly. Please install or activate WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:19
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:73
|
||||
msgid "Document name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:74
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:75
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:76
|
||||
msgid "Total paid"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:77
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:78
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: document date, %2$s: document date, %3$s: document time
|
||||
#: inc/class-account-page.php:125
|
||||
msgctxt "Documents table date column"
|
||||
msgid "On <time datetime=\"%1$s\">%2$s at %3$s</time>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:174
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:180
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin-pages.php:17
|
||||
msgid "E-Connector"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin-pages.php:54
|
||||
msgid "E-Connector Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:111
|
||||
msgid "Filter by document type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:113
|
||||
msgid "All types"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:129
|
||||
msgid "You do not have the rights to do that."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:132
|
||||
msgid "No document id was provided."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:140
|
||||
msgid "You do not have the right to access this document."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wc-rest-documents-controller.php:123
|
||||
msgid "Sorry, you are not allowed to upload documents."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wc-rest-documents-controller.php:215
|
||||
#: inc/class-wc-rest-documents-controller.php:249
|
||||
msgid "Sorry, the file you try to upload is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wc-rest-documents-controller.php:257
|
||||
msgid "Sorry, there was an error uploading the file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:20
|
||||
msgid "New document available - Customer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:21
|
||||
msgid "Email the customer receives when a document is available in his account."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:25
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:26
|
||||
msgid "A new document is available in your account."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:107
|
||||
#: inc/emails/class-wc-email-new-document.php:98
|
||||
msgid "Attachments"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:109
|
||||
#: inc/emails/class-wc-email-new-document.php:100
|
||||
msgid "Attach documents to email ?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-new-document.php:20
|
||||
msgid "New document available - Admin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-new-document.php:21
|
||||
msgid "Email the site admin receives when a document has been uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-new-document.php:25
|
||||
#: inc/emails/class-wc-email-new-document.php:26
|
||||
msgid "A new document has just been uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:56
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:57
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:58
|
||||
msgid "Shipping label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:59
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: name of the document, $2$s owner of the document
|
||||
#: templates/emails/admin-new-document.php:27
|
||||
msgid "A new document named <strong>%1$s</strong> has been uploaded, and its owner set to <strong>%2$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/admin-new-document.php:32
|
||||
#: templates/emails/plain/admin-new-document.php:30
|
||||
msgid "You can find the document attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: name of the document
|
||||
#: templates/emails/customer-new-document.php:20
|
||||
msgid "A new document named <strong>%s</strong> is available in your account."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: document page url
|
||||
#: templates/emails/customer-new-document.php:25
|
||||
msgid "Visit your <a href=\"%s\">account page</a> to view/download the document."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: document page url
|
||||
#: templates/emails/customer-new-document.php:31
|
||||
msgid "You can find the document attached to this email, or visit your <a href=\"%s\">account page</a> to view/download it."
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/plain/admin-new-document.php:14
|
||||
msgid "New document"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: name of the document, $2$s owner of the document
|
||||
#: templates/emails/plain/admin-new-document.php:25
|
||||
msgid "A new document named %1$s has been uploaded, and its owner set to %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: document page url
|
||||
#: templates/emails/plain/admin-new-document.php:34
|
||||
msgid "Edit this document : %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: user edit page url
|
||||
#: templates/emails/plain/admin-new-document.php:39
|
||||
msgid "View the user : %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: name of the document
|
||||
#: templates/emails/plain/customer-new-document.php:21
|
||||
msgid "A new document named %s is available in your account."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: account page url
|
||||
#: templates/emails/plain/customer-new-document.php:26
|
||||
msgid "Visit your account page to view/download the document : %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: account page url
|
||||
#: templates/emails/plain/customer-new-document.php:32
|
||||
msgid "You can find the document attached to this email, or visit your account page to view/download it. : %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/myaccount/documents.php:30
|
||||
msgid "Sorry, you have no documents yet."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "camoo/enkap-woocommerce-gateway",
|
||||
"description": "Enkap - Mobile Money Gateway for WooCommerce",
|
||||
"type": "wordpress-plugin",
|
||||
"require": {
|
||||
"php": ">=7.3",
|
||||
"camoo/enkap-oauth": "^1.0"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"homepage": "https://camoo.cm",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"prefer-stable" : true,
|
||||
"version": "1.0.2",
|
||||
"authors": [
|
||||
{
|
||||
"name": "CAMOO SARL",
|
||||
"email": "ecommerce@camoo.sarl"
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
"CAMOO",
|
||||
"Mobile money Gateway Cameroon",
|
||||
"Plugin camoo Pay",
|
||||
"MTN Cameroon Mobile Money",
|
||||
"ORANGE Cameroon Mobile Money",
|
||||
"Express Union Cameroon Mobile Money",
|
||||
"Smobil Cash pay",
|
||||
"enkap",
|
||||
"smobilpay for e-commerce"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/camoo/enkap-woocommerce-gateway/issues",
|
||||
"source": "https://github.com/camoo/enkap-woocommerce-gateway"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,178 @@
|
||||
# Copyright (C) 2022 plugindeveloper
|
||||
# This file is distributed under the GPLv3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Content Protector 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: plugindeveloperofficial@gmail.com\n"
|
||||
"POT-Creation-Date: 2022-03-23 10:08:22+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Plugin Developer <plugindeveloperofficial@gmail.com>\n"
|
||||
"Language-Team: Plugin Developer <plugindeveloperofficial@gmail.com>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: inc/classes/setting.php:28 uploads/tags/1.0.0/inc/classes/setting.php:28
|
||||
msgid "Page Heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/setting.php:29 uploads/tags/1.0.0/inc/classes/setting.php:29
|
||||
msgid "Section Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/setting.php:30 uploads/tags/1.0.0/inc/classes/setting.php:30
|
||||
msgid "Menu Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/setting.php:36 uploads/tags/1.0.0/inc/classes/setting.php:36
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/setting.php:37 uploads/tags/1.0.0/inc/classes/setting.php:37
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/setting.php:41 uploads/tags/1.0.0/inc/classes/setting.php:41
|
||||
msgid "Default Value."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/setting.php:42 uploads/tags/1.0.0/inc/classes/setting.php:42
|
||||
msgid "Field Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/core/default.php:17 uploads/tags/1.0.0/inc/core/default.php:17
|
||||
msgid "Sorry this site disable right click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/core/default.php:19 uploads/tags/1.0.0/inc/core/default.php:19
|
||||
msgid "Sorry this site disable selection"
|
||||
msgstr ""
|
||||
|
||||
#: inc/core/default.php:21 uploads/tags/1.0.0/inc/core/default.php:21
|
||||
msgid "Sorry this site is not allow cut."
|
||||
msgstr ""
|
||||
|
||||
#: inc/core/default.php:23 inc/options/settings.php:60
|
||||
#: uploads/tags/1.0.0/inc/core/default.php:23
|
||||
#: uploads/tags/1.0.0/inc/options/settings.php:60
|
||||
msgid "Sorry this site is not allow copy."
|
||||
msgstr ""
|
||||
|
||||
#: inc/core/default.php:25 uploads/tags/1.0.0/inc/core/default.php:25
|
||||
msgid "Sorry this site is not allow paste."
|
||||
msgstr ""
|
||||
|
||||
#: inc/core/default.php:27 uploads/tags/1.0.0/inc/core/default.php:27
|
||||
msgid "Sorry this site is not allow to inspect element."
|
||||
msgstr ""
|
||||
|
||||
#: inc/core/default.php:29 uploads/tags/1.0.0/inc/core/default.php:29
|
||||
msgid "Sorry this site is not allow to view source."
|
||||
msgstr ""
|
||||
|
||||
#: inc/hooks/notices.php:29 uploads/tags/1.0.0/inc/hooks/notices.php:29
|
||||
msgid ""
|
||||
"You are successfully installed the Copy Protection plugin. You can "
|
||||
"customize the settings below as per your requirements."
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:17 uploads/tags/1.0.0/inc/options/settings.php:17
|
||||
msgid "Content Protector Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:18 uploads/tags/1.0.0/inc/options/settings.php:18
|
||||
msgid "Content Protector Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:19 uploads/tags/1.0.0/inc/options/settings.php:19
|
||||
msgid "Content Protector"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:25 uploads/tags/1.0.0/inc/options/settings.php:25
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:26 uploads/tags/1.0.0/inc/options/settings.php:26
|
||||
msgid "Hello Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:31 uploads/tags/1.0.0/inc/options/settings.php:31
|
||||
msgid "Disable right click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:37 uploads/tags/1.0.0/inc/options/settings.php:37
|
||||
msgid "Message on right click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:43 uploads/tags/1.0.0/inc/options/settings.php:43
|
||||
msgid "Disable selection"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:49 uploads/tags/1.0.0/inc/options/settings.php:49
|
||||
msgid "Message on selection"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:55 uploads/tags/1.0.0/inc/options/settings.php:55
|
||||
msgid "Disable Copy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:61 uploads/tags/1.0.0/inc/options/settings.php:61
|
||||
msgid "Message on copy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:67 uploads/tags/1.0.0/inc/options/settings.php:67
|
||||
msgid "Disable Paste"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:73 uploads/tags/1.0.0/inc/options/settings.php:73
|
||||
msgid "Message on paste"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:79 uploads/tags/1.0.0/inc/options/settings.php:79
|
||||
msgid "Disable Cut"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:85 uploads/tags/1.0.0/inc/options/settings.php:85
|
||||
msgid "Message on cut"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:91 uploads/tags/1.0.0/inc/options/settings.php:91
|
||||
msgid "Disable Inspect Element"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:97 uploads/tags/1.0.0/inc/options/settings.php:97
|
||||
msgid "Message on inspect element"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:103 uploads/tags/1.0.0/inc/options/settings.php:103
|
||||
msgid "Disable View Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:109 uploads/tags/1.0.0/inc/options/settings.php:109
|
||||
msgid "Message on view source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/options/settings.php:115 uploads/tags/1.0.0/inc/options/settings.php:115
|
||||
msgid "Remove data on uninstall plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Easy Content Protector"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/easy-content-protector/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Simple way to protect your content"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "plugindeveloper"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://profiles.wordpress.org/plugindeveloper/"
|
||||
msgstr ""
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/eazyfilter-for-woocommerce/change_log/changelog.txt
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/eazyfilter-for-woocommerce/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
= 1.0.5 =
|
||||
|
||||
- New: Elementor widget compatible with WPML
|
||||
- Tweak: Newly created filter on elementor editor will be selected automatically on filter choose dropdown
|
||||
- Tweak: Add loader animation on setup wizard on load
|
||||
- Tweak: Add animation on the grid after clicking filter to get filtered product
|
||||
- Tweak: Warning message for required field on filter create form
|
||||
- Tweak: Warning for unsaved state on filter create form
|
||||
- Fix: Product counter fixed
|
||||
- Fix: Customized term initial load fixed on editing filter
|
||||
|
||||
= 1.0.4 =
|
||||
|
||||
- Improve UI/ UX
|
||||
- Quick view fix on product grid
|
||||
- Pagination default style and style control added on product grid
|
||||
- Automacally filter type choose based on widget
|
||||
- Product count added on filter
|
||||
- Color name enable for color control
|
||||
|
||||
= 1.0.3 =
|
||||
|
||||
- Improve UI/ UX
|
||||
|
||||
= 1.0.2 =
|
||||
|
||||
- Improve UI/ UX
|
||||
- Improve product grid widget
|
||||
- Include uncheck all filter by one click
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
- Optimized and improved code base
|
||||
|
||||
= 1.0.0 =
|
||||
|
||||
- Initial release
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/educare/change_log/changelog.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/educare/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## [1.0.0]
|
||||
|
||||
### Happy Release!!!
|
||||
|
||||
- Plugin launch. Everything's new!
|
||||
@@ -0,0 +1,215 @@
|
||||
# Copyright (C) 2021 WP Clevel
|
||||
# This file is distributed under the same license as the Elemental Theme Builder plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Elemental Theme Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elemental-theme-builder\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-13T16:31:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: elemental-theme-builder\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Elemental Theme Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/elemental-theme-builder"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "An intuitive theme builder for Elementor Page Builder (the free version)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Clevel"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclevel.com"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: loading class.
|
||||
#: elemental-theme-builder.php:42
|
||||
msgid "Autoloading failed. Class \"%s\" not found."
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:59
|
||||
msgid "Elemental Theme Builder requires PHP version 7.2 at least!"
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:62
|
||||
msgid "Elemental Theme Builder requires WordPress version 5.6 at least!"
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:65
|
||||
msgid "WordPress content directory is inaccessible."
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:68
|
||||
msgid "Elemental Theme Builder requires Elementor version 3.3.0 at least."
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:76
|
||||
msgid "Plugin Activation Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:34
|
||||
msgid "Select a header template to display on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:46
|
||||
msgid "Select a footer template to display on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:79
|
||||
msgid "Inherit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:83
|
||||
msgid "Theme Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:59
|
||||
msgid "Footer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:120
|
||||
#: src/Documents/SiteHeader.php:120
|
||||
msgid "Display Condition"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:129
|
||||
#: src/Documents/SiteHeader.php:129
|
||||
msgid "If multiple templates have the same display condition, the last updated one will be used."
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:137
|
||||
#: src/Documents/SiteHeader.php:137
|
||||
msgid "Show On"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:142
|
||||
#: src/Documents/SiteHeader.php:142
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:143
|
||||
#: src/Documents/SiteHeader.php:143
|
||||
msgid "Entire Site"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:144
|
||||
#: src/Documents/SiteHeader.php:144
|
||||
msgid "Blog Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:145
|
||||
#: src/Documents/SiteHeader.php:145
|
||||
msgid "Front Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:146
|
||||
#: src/Documents/SiteHeader.php:146
|
||||
msgid "Archive Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:147
|
||||
#: src/Documents/SiteHeader.php:147
|
||||
msgid "Singular Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:148
|
||||
#: src/Documents/SiteHeader.php:148
|
||||
msgid "Error 404 Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:149
|
||||
#: src/Documents/SiteHeader.php:149
|
||||
msgid "Search Result Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:150
|
||||
#: src/Documents/SiteHeader.php:150
|
||||
msgid "Privacy Policy Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:151
|
||||
#: src/Documents/SiteHeader.php:151
|
||||
msgid "WooCommerce Shop Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:152
|
||||
#: src/Documents/SiteHeader.php:152
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:160
|
||||
#: src/Documents/SiteHeader.php:160
|
||||
msgid "Select Type(s) of the Singular Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:174
|
||||
#: src/Documents/SiteHeader.php:174
|
||||
msgid "Select Type(s) of the Archive Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:196
|
||||
#: src/Documents/SiteHeader.php:196
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:197
|
||||
#: src/Documents/SiteHeader.php:197
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:198
|
||||
#: src/Documents/SiteHeader.php:198
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:218
|
||||
#: src/Documents/SiteHeader.php:218
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:219
|
||||
#: src/Documents/SiteHeader.php:219
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:220
|
||||
#: src/Documents/SiteHeader.php:220
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:221
|
||||
#: src/Documents/SiteHeader.php:221
|
||||
msgid "Category "
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteHeader.php:59
|
||||
msgid "Header"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/components/FooterTemplateSelectBox.js:8
|
||||
msgid "Elementor Footer Template:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/components/HeaderTemplateSelectBox.js:8
|
||||
msgid "Elementor Header Template:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/meta-sidebar.js:12
|
||||
msgid "Layout Settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/meta-sidebar.js:14
|
||||
msgid "\"Inherit\" will display the template assigned for \"Entire Site\". \"Theme Default\" will display the template from the current theme."
|
||||
msgstr ""
|
||||
355
spec/fixtures/dynamic_finders/plugin_version/elform/translation_file/languages/elform.pot
vendored
Normal file
355
spec/fixtures/dynamic_finders/plugin_version/elform/translation_file/languages/elform.pot
vendored
Normal file
@@ -0,0 +1,355 @@
|
||||
# Copyright (C) 2021 mhmdm
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Elform 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elform\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-08T17:04:10+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: elform\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Elform"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/mhmdmu/elform"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Advanced Elementor form builder widget."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "mhmdm"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:27
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:38
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:55
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:69
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:84
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:95
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:39
|
||||
msgid "Elementor Form Builder"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:98
|
||||
msgid "Form Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:107
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:111
|
||||
#: src/widget/form-builder.php:621
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:112
|
||||
#: src/widget/form-builder.php:733
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:113
|
||||
msgid "Textarea"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:114
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:115
|
||||
msgid "Tel"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:116
|
||||
msgid "Radio"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:117
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:118
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:119
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:120
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:121
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:122
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:123
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:124
|
||||
#: src/widget/form-builder.php:207
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:125
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:126
|
||||
msgid "reCAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:134
|
||||
msgid "Rows"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:151
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:153
|
||||
msgid "Enter each option in a new line."
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:173
|
||||
msgid "Allowed File Types"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:175
|
||||
msgid ".pdf,.jpg,.txt"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:190
|
||||
msgid "Multiple Files"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:243
|
||||
#: src/widget/form-builder.php:562
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:263
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:282
|
||||
msgid "Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:309
|
||||
msgid "Default value"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:333
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:335
|
||||
msgid "Name is required. It is used to send the data to your email."
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:373
|
||||
msgid "Column Width"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:377
|
||||
msgid "20%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:378
|
||||
msgid "25%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:379
|
||||
msgid "33%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:380
|
||||
msgid "40%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:381
|
||||
msgid "50%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:382
|
||||
msgid "60%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:383
|
||||
msgid "66%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:384
|
||||
msgid "75%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:385
|
||||
msgid "80%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:386
|
||||
msgid "100%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:430
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:432
|
||||
#: src/widget/form-builder.php:710
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:433
|
||||
#: src/widget/form-builder.php:711
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:481
|
||||
msgid "Custom Class"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:505
|
||||
msgid "Custom ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:528
|
||||
#: src/widget/form-builder.php:781
|
||||
msgid "Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:565
|
||||
#: src/widget/form-builder.php:576
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:566
|
||||
#: src/widget/form-builder.php:577
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:574
|
||||
msgid "Required Mark"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:587
|
||||
#: src/widget/form-builder.php:800
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:594
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:598
|
||||
#: src/widget/form-builder.php:646
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:602
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:606
|
||||
#: src/widget/form-builder.php:650
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:630
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:642
|
||||
msgid "Icon Position"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:662
|
||||
msgid "Button ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:672
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:679
|
||||
msgid "Success Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:681
|
||||
msgid "Your message has been sent"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:689
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:691
|
||||
msgid "Can't send the email"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:701
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:708
|
||||
msgid "Redirect to another URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:719
|
||||
msgid "Redirect To"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:721
|
||||
msgid "https://your-link.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:740
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:748
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:763
|
||||
msgid "From Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:771
|
||||
msgid "From Name"
|
||||
msgstr ""
|
||||
106
spec/fixtures/dynamic_finders/plugin_version/elmo-privacylab/translation_file/languages/elmo.pot
vendored
Normal file
106
spec/fixtures/dynamic_finders/plugin_version/elmo-privacylab/translation_file/languages/elmo.pot
vendored
Normal file
@@ -0,0 +1,106 @@
|
||||
# Copyright (C) 2022 PrivacyLab
|
||||
# This file is distributed under the same license as the Elmo | GDPR compliant cookie consent and control package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Elmo | GDPR compliant cookie consent and control 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elmo\n"
|
||||
"POT-Creation-Date: 2022-03-03 10:50:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:84
|
||||
msgid "General settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:85
|
||||
msgid "Elmo code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:99
|
||||
msgid "Code activated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:104
|
||||
msgid "Get your code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:118
|
||||
msgid "Elmo settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:143
|
||||
#. translators: the placeholder strings denote the positions of <b> and </b>
|
||||
#. HTML tags.
|
||||
msgid "%1$sElmo%2$s is PrivacyLab's tool for managing cookies."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:147
|
||||
msgid ""
|
||||
"It allows you to verify, catalog and properly manage the compliance of your "
|
||||
"site to the GDPR."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:152
|
||||
#. translators: the placeholder strings denote the positions of <b> and </b>
|
||||
#. HTML tags.
|
||||
msgid ""
|
||||
"With %1$sElmo%2$s you keep under control all the consents expressed in the "
|
||||
"cookie banner and you can collect them in the \"register of consents\" "
|
||||
"required by law."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:157
|
||||
#. translators: the placeholder strings denote the positions of <b> and </b>
|
||||
#. HTML tags.
|
||||
msgid ""
|
||||
"%1$sElmo%2$s's consent log is certified! More help to prove your compliance "
|
||||
"with GDPR."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:163
|
||||
#. translators: the placeholder strings denote the positions of <b> and </b>
|
||||
#. HTML tags.
|
||||
msgid ""
|
||||
"With %1$sElmo%2$s you can automatically create guaranteed and certified "
|
||||
"treatments and information and you can also create your own cookie banner "
|
||||
"starting from the information of the site you already have."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-elmo-plugin-admin.php:168
|
||||
msgid "Find out all the details"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Elmo | GDPR compliant cookie consent and control"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.privacylab.it/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Elmo powered by PrivacyLab is the ultimate GDPR compliant tool for the "
|
||||
"management of cookie banners, but above all for the management of privacy "
|
||||
"notices for processing carried out by websites"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "PrivacyLab"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/enqueueror/change_log/CHANGELOG.md
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/enqueueror/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
# Changelog
|
||||
|
||||
## 1.1.1 - January 19, 2022
|
||||
|
||||
### Fixed
|
||||
- Handling of multiple dependencies.
|
||||
|
||||
## 1.1.0 - January 15, 2022
|
||||
|
||||
### Added
|
||||
- Introduced support for header in assets.
|
||||
- Introduced support for asset dependencies.
|
||||
|
||||
### Fixed
|
||||
- Asset order rules not always respected.
|
||||
- Error if WPML is activated but not set up.
|
||||
|
||||
## 1.0.0 - January 9, 2022
|
||||
First release.
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2022.03.29**/
|
||||
– Updated: VillaTheme_Support
|
||||
|
||||
/**1.0.0 - 2022.03.26 **/
|
||||
~ The first released.
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/exmage-wp-image-links/change_log/CHANGELOG.txt
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/exmage-wp-image-links/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/**1.0.2.1 - 2021.12.13**/
|
||||
- Updated: Missing css/image files for class VillaTheme_Support
|
||||
|
||||
/**1.0.2 - 2021.12.11**/
|
||||
- Added: Button to store external images to server in Media library/list view mode
|
||||
|
||||
/**1.0.1 - 2021.12.08**/
|
||||
- Updated: Do not allow to edit(crop, rotate...) external images to avoid unexpected errors
|
||||
|
||||
/**1.0.0 - 2021.12.07**/
|
||||
- Released
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/fastpicker/composer_file/composer.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/fastpicker/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "woo-orderpicker/woo-orderpicker",
|
||||
"version": "1.0.0",
|
||||
"authors": [
|
||||
{
|
||||
"name": "David Stomph",
|
||||
"email": "david@yuluma.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Kanger",
|
||||
"email": "chris@3rdfloorcoding.nl"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": ["src/"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
== 1.0.0 - 24/09/2019 ==
|
||||
Initial release
|
||||
93
spec/fixtures/dynamic_finders/plugin_version/faustwp/change_log/CHANGELOG.md
vendored
Normal file
93
spec/fixtures/dynamic_finders/plugin_version/faustwp/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# FaustWP
|
||||
|
||||
## 0.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- f948c04: Fixed plugin icon SVG display issue in Chrome [#683](https://github.com/wpengine/faustjs/pull/683)
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Changed the plugin name to FaustWP.
|
||||
- Changed all internal PHP function names to use namespaces.
|
||||
- Changed the WP_HEADLESS_SECRET_KEY constant to FAUSTWP_SECRET_KEY.
|
||||
- Changed the authentication endpoint namespace from `wpac/v1` to `faustwp/v1`
|
||||
- Changed settings option name from `wpe_headless` to `faustwp_settings`
|
||||
- Changed the following filter names:
|
||||
- `wpe_headless_setting` to `faustwp_setting`
|
||||
- `wpe_headless_settings` to `faustwp_settings`
|
||||
- `wpe_headless_domain_replacement_enabled` to `faustwp_domain_replacement_enabled`
|
||||
- Changed the text domain to `faustwp`.
|
||||
- Changed minimum required PHP version to 7.2.
|
||||
- Changed minimum required WordPress version to 5.7.
|
||||
- Changed the hook used for public route redirection.
|
||||
- Fixed the "headless post preview" link on the FaustWP settings page.
|
||||
- Fixed "unexpected output" error during plugin activation.
|
||||
- Fixed skipped domain replacement in GraphQL responses that include `generalSettings`.
|
||||
- Added LICENSE file.
|
||||
|
||||
## 0.6.1
|
||||
|
||||
- Fixed the headless options page sidebar links to new Faust.js documentation site.
|
||||
|
||||
## 0.6.0
|
||||
|
||||
- [Breaking Change] Added support for access/refresh token based auth flow in the authorize endpoint.
|
||||
- Added `page_id` query param to preview pages when the content type is `page`
|
||||
|
||||
## 0.5.8
|
||||
|
||||
- Lowering link filter priority to allow other plugins to run prior to swapping the domain
|
||||
|
||||
## 0.5.7
|
||||
|
||||
- Updated settings page docs links
|
||||
- Added an admin notice on the Headless settings page to prompt users to configure permalinks if they are not set
|
||||
|
||||
## 0.5.6
|
||||
|
||||
- Fixes an issue where the templates hierarchy from the templates hierarchy filter was not being returned.
|
||||
|
||||
## 0.5.5
|
||||
|
||||
- Prevents the frontend site URL being prepended to post URI paths in GraphQL responses if “Enable Post and Category URL rewrites” is checked.
|
||||
|
||||
## 0.5.4
|
||||
|
||||
- Prevents authentication failures when using an authorization header to authenticate with WPGraphQL JWT Authentication or similar.
|
||||
|
||||
## 0.5.3
|
||||
|
||||
Requires the @wpengine/headless package 0.6.3+ for features such as post previews. https://www.npmjs.com/package/@wpengine/headless
|
||||
|
||||
- Fixes post previews for frontend apps running from a subfolder.
|
||||
|
||||
## 0.5.2
|
||||
|
||||
Requires the @wpengine/headless package 0.6.2+ for features such as post previews. https://www.npmjs.com/package/@wpengine/headless
|
||||
|
||||
- Fixes an issue that could cause a 404 response for post previews.
|
||||
|
||||
## 0.5.1
|
||||
|
||||
Requires the @wpengine/headless package 0.6.1+ for features such as post previews. https://www.npmjs.com/package/@wpengine/headless
|
||||
|
||||
- The site URL is longer rewritten as the app URL in WPGraphQL responses for general settings queries.
|
||||
|
||||
## 0.5.0
|
||||
|
||||
- WPE_HEADLESS_SECRET_KEY has been renamed to WP_HEADLESS_SECRET_KEY.
|
||||
|
||||
## 0.4.1
|
||||
|
||||
- Fixed potential authentication issue with WP GraphQL
|
||||
|
||||
## 0.4.0
|
||||
|
||||
- Redesigned settings page.
|
||||
|
||||
## 0.1.0
|
||||
|
||||
- Proof of concept
|
||||
112
spec/fixtures/dynamic_finders/plugin_version/fireblocks/translation_file/languages/fireblocks.pot
vendored
Normal file
112
spec/fixtures/dynamic_finders/plugin_version/fireblocks/translation_file/languages/fireblocks.pot
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
# Copyright (C) 2022 FirePlugins
|
||||
# This file is distributed under the same license as the FireBlocks plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FireBlocks 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tmp\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-26T13:25:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: fireblocks\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: Inc/Core/Libs/Translations.php:109
|
||||
msgid "FireBlocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.fireplugins.com/fireblocks"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "FireBlocks is a collection of elegand WordPress blocks enhancing the Gutenberg editor experience!"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "FirePlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.fireplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:110
|
||||
msgid "FireBlocks Settings"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:111
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:112
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:113
|
||||
msgid "Set any general settings about FireBlocks."
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:114
|
||||
msgid "Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:115
|
||||
msgid "Block Settings"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:116
|
||||
msgid "Enable or disable blocks."
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:117
|
||||
msgid "Countdown Block"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:118
|
||||
msgid "Set whether to enable the Countdown block."
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:119
|
||||
msgid "Notification Block"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:120
|
||||
msgid "Set whether to enable the Notification block."
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:121
|
||||
msgid "Enhance your WordPress experience with powerful blocks!"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:122
|
||||
msgid "Read Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:123
|
||||
msgid "Premium<br /> WordPress Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:124
|
||||
msgid "BUY NOW — 20% OFF"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:125
|
||||
msgid "A WordPress popup builder that boosts conversion rate"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:126
|
||||
msgid "Boost WordPress SEO with structured data (Coming Soon)"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:127
|
||||
msgid "The last WordPress Form Builder you'll ever need (Coming Soon)"
|
||||
msgstr ""
|
||||
|
||||
#: Inc/Core/Libs/Translations.php:128
|
||||
msgid "USE COUPON CODE <strong>FREE2PRO</strong>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Fix API URL 0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n"
|
||||
"POT-Creation-Date: 2021-09-28T16:04:42-03:00\n"
|
||||
"PO-Revision-Date: 2021-09-28 16:00:42-03:00\n"
|
||||
"Last-Translator: Ederson Peka <ederson@gmail.com>\n"
|
||||
"Language-Team: Ederson Peka <ederson@gmail.com>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-09-28T16:00:42-03: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
|
||||
msgid "Fix API URL"
|
||||
msgstr "Conserta a URL da API"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://ederson.peka.nom.br"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Uses site_url() instead of home_url() to build the API URL. Useful for having WordPress as a Headless CMS."
|
||||
msgstr "Usa o método site_url() em lugar do home_url() para construir a URL da API. Útil para ter o WordPress como \"CMS Headless\"."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ederson Peka"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/edersonpeka/"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user