Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
b12ccafc81 Update simplecov requirement from ~> 0.21.0 to ~> 0.22.0
Updates the requirements on [simplecov](https://github.com/simplecov-ruby/simplecov) to permit the latest version.
- [Release notes](https://github.com/simplecov-ruby/simplecov/releases)
- [Changelog](https://github.com/simplecov-ruby/simplecov/blob/main/CHANGELOG.md)
- [Commits](https://github.com/simplecov-ruby/simplecov/compare/v0.21.0...v0.22.0)

---
updated-dependencies:
- dependency-name: simplecov
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-26 19:12:37 +00:00
234 changed files with 43 additions and 147006 deletions

View File

@@ -13,7 +13,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1

View File

@@ -15,7 +15,7 @@ jobs:
steps:
- name: checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set tag to latest
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
@@ -43,13 +43,13 @@ jobs:
install: true
- name: Login to Docker Hub
uses: docker/login-action@v2.2.0
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v3
with:
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true

View File

@@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
ruby-version: 2.6.x
#- name: Publish to GPR
# run: |

View File

@@ -2,7 +2,7 @@ require: rubocop-performance
AllCops:
NewCops: enable
SuggestExtensions: false
TargetRubyVersion: 2.7
TargetRubyVersion: 2.5
Exclude:
- '*.gemspec'
- 'vendor/**/*'

View File

@@ -25,7 +25,8 @@
## Prerequisites
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
- Ruby >= 2.7 - Recommended: latest
- Ruby >= 2.5 - Recommended: latest
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
- Curl >= 7.72 - Recommended: latest
- The 7.29 has a segfault
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
@@ -38,9 +39,7 @@ When using a pentesting distubution (such as Kali Linux), it is recommended to i
### In macOSX via Homebrew
```shell
brew install wpscanteam/tap/wpscan
```
`brew install wpscanteam/tap/wpscan`
### From RubyGems
@@ -91,7 +90,7 @@ The DB is located at ~/.wpscan/db
The WPScan CLI tool uses the [WordPress Vulnerability Database API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan.com](https://wpscan.com/register).
Up to **25** API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 25 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data.
Up to **75** API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 75 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data.
### How many API requests do you need?

View File

@@ -7,10 +7,6 @@ module WPScan
class KnownLocations < CMSScanner::Finders::Finder
include CMSScanner::Finders::Finder::Enumerator
def valid_response_codes
@valid_response_codes ||= [200, 206].freeze
end
SQL_PATTERN = /(?:DROP|(?:UN)?LOCK|CREATE|ALTER) (?:TABLE|DATABASE)|INSERT INTO/.freeze
# @param [ Hash ] opts
@@ -21,7 +17,7 @@ module WPScan
def aggressive(opts = {})
found = []
enumerate(potential_urls(opts), opts.merge(check_full_response: valid_response_codes)) do |res|
enumerate(potential_urls(opts), opts.merge(check_full_response: 200)) do |res|
if res.effective_url.end_with?('.zip')
next unless %r{\Aapplication/zip}i.match?(res.headers['Content-Type'])
else

View File

@@ -92,7 +92,7 @@ module WPScan
tags: 'Tags',
text_domain: 'Text Domain'
}.each do |attribute, tag|
instance_variable_set(:"@#{attribute}", parse_style_tag(style_body, tag)&.force_encoding('UTF-8'))
instance_variable_set(:"@#{attribute}", parse_style_tag(style_body, tag))
end
end

View File

@@ -73,7 +73,7 @@ module WPScan
# @return [ Hash ] The params for Typhoeus::Request
# @note Those params can't be overriden by CLI options
def request_params
@request_params ||= Browser.instance.default_request_params.merge(
@request_params ||= Browser.instance.default_connect_request_params.merge(
timeout: 600,
connecttimeout: 300,
accept_encoding: 'gzip, deflate',

View File

@@ -70,7 +70,7 @@ module WPScan
# @return [ Hash ]
# @note Those params can not be overriden by CLI options
def self.default_request_params
@default_request_params ||= Browser.instance.default_request_params.merge(
@default_request_params ||= Browser.instance.default_connect_request_params.merge(
headers: {
'User-Agent' => Browser.instance.default_user_agent,
'Authorization' => "Token token=#{token}"

View File

@@ -16,8 +16,5 @@ def classify_slug(slug)
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/-{1,}/, '_').camelize.to_s
classified = "D_#{classified}" if /\d/.match?(classified[0])
# Special case for slugs with all non-latin characters.
classified = "HexSlug_#{slug.bytes.map { |i| i.to_s(16) }.join}" if classified.empty?
classified.to_sym
end

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.8.25'
VERSION = '3.8.22'
end

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,170 +0,0 @@
# Copyright (C) 2023 Qewebby
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: 360 Product Viewer for WooCommerce 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp_360view\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: 2023-05-11T17:47:24+05:30\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: wp360view\n"
#. Plugin Name of the plugin
#. Description of the plugin
msgid "360 Product Viewer for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/360-product-viewer-for-woocommerce/"
msgstr ""
#. Author of the plugin
msgid "Qewebby"
msgstr ""
#. Author URI of the plugin
msgid "https://www.qewebby.com"
msgstr ""
#: includes/admin/class-wp360view-admin.php:108
msgid "360 Product image"
msgstr ""
#: includes/admin/class-wp360view-admin.php:141
msgid "Delete image"
msgstr ""
#: includes/admin/class-wp360view-admin.php:141
#: includes/admin/class-wp360view-admin.php:161
msgid "Delete"
msgstr ""
#: includes/admin/class-wp360view-admin.php:161
msgid "Add 360 Product images"
msgstr ""
#: includes/admin/class-wp360view-admin.php:161
msgid "Add to 360 Product gallery"
msgstr ""
#: includes/admin/class-wp360view-admin.php:161
msgid "Delete 360 Product image"
msgstr ""
#: includes/admin/class-wp360view-admin.php:161
msgid "Add 360 product images"
msgstr ""
#: includes/admin/class-wp360view-settings.php:39
msgid "360 View Settings"
msgstr ""
#: includes/admin/class-wp360view-settings.php:56
msgid "Shortcode Settings"
msgstr ""
#: includes/admin/class-wp360view-settings.php:78
msgid "Advance Settings"
msgstr ""
#: includes/admin/class-wp360view-settings.php:88
msgid "Enable Navigation"
msgstr ""
#: includes/admin/class-wp360view-settings.php:90
msgid "Enable navigation panel"
msgstr ""
#: includes/admin/class-wp360view-settings.php:91
msgid "Enable or disable navigation panel globally OR you can override this settings by <b>\"navigation\"</b> attibute by shortcode. Default value is <b>true</b>."
msgstr ""
#: includes/admin/class-wp360view-settings.php:99
#: includes/admin/class-wp360view-settings.php:101
msgid "Enable dragging"
msgstr ""
#: includes/admin/class-wp360view-settings.php:102
msgid "Enable or disable dragging option globally OR you can override this settings by <b>\"drag\"</b> attibute by shortcode. Default value is <b>true</b>."
msgstr ""
#: includes/admin/class-wp360view-settings.php:106
#: includes/admin/class-wp360view-settings.php:110
msgid "Play Speed"
msgstr ""
#: includes/admin/class-wp360view-settings.php:111
msgid "Add/change play speed of 360 slider globally OR you can override this settings by <b>\"playspeed\"</b> attibute by shortcode. Default value is <b>100</b>."
msgstr ""
#: includes/admin/class-wp360view-settings.php:115
#: includes/admin/class-wp360view-settings.php:119
msgid "Frame Rate"
msgstr ""
#: includes/admin/class-wp360view-settings.php:120
msgid "Add/change frame rate of 360 slider globally OR you can override this settings by <b>\"framerate\"</b> attibute by shortcode. Default value is <b>10</b>."
msgstr ""
#: includes/admin/class-wp360view-settings.php:128
msgid "Enable Spin"
msgstr ""
#: includes/admin/class-wp360view-settings.php:130
msgid "Enable spin"
msgstr ""
#: includes/admin/class-wp360view-settings.php:131
msgid "Enable or disable spin settings globally OR you can override this settings by <b>\"enablespin\"</b> attibute by shortcode. Default value is <b>false</b>."
msgstr ""
#: includes/admin/class-wp360view-settings.php:139
#: includes/admin/class-wp360view-settings.php:141
msgid "Show Cursor"
msgstr ""
#: includes/admin/class-wp360view-settings.php:142
msgid "Hide or show cursor globally OR you can override this settings by <b>\"showcursor\"</b> attibute by shortcode. Default value is <b>false</b>."
msgstr ""
#: includes/admin/class-wp360view-settings.php:151
msgid "Fullscreen"
msgstr ""
#: includes/admin/class-wp360view-settings.php:153
msgid "Enable full screen support"
msgstr ""
#: includes/admin/class-wp360view-settings.php:154
msgid "Enable or disable full screen support settings globally OR you can override this settings by <b>\"fullscreen\"</b> attibute by shortcode. Default value is <b>true</b>."
msgstr ""
#: includes/admin/class-wp360view-settings.php:162
msgid "Zoom In/Out"
msgstr ""
#: includes/admin/class-wp360view-settings.php:164
msgid "Enable Zoom In/Out"
msgstr ""
#: includes/admin/class-wp360view-settings.php:165
msgid "Enable or disable zoom in/out settings globally OR you can override this settings by <b>\"zoominout\"</b> attibute by shortcode. Default value is <b>true</b>"
msgstr ""
#: templates/360-product.php:22
#: templates/shortcode-template.php:26
msgid "360 Product View"
msgstr ""
#: wp_360view.php:134
msgid "Settings"
msgstr ""
#: wp_360view.php:176
msgid "WooCommerce"
msgstr ""

View File

@@ -1,75 +0,0 @@
# Copyright (C) 2023 Neeb Plugins
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Access Guard 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/access-guard\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: 2023-07-13T19:05:53+05:30\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
#. Plugin Name of the plugin
#: access-guard.php:44
#: access-guard.php:45
#: access-guard.php:56
#: access-guard.php:243
#: access-guard.php:250
msgid "Access Guard"
msgstr ""
#. Plugin URI of the plugin
msgid "https://neebplugins.com/access-guard"
msgstr ""
#. Description of the plugin
msgid "Enhance access protection, control user permissions, and provide IP banning functionality."
msgstr ""
#. Author of the plugin
msgid "Neeb Plugins"
msgstr ""
#. Author URI of the plugin
msgid "https://neebplugins.com"
msgstr ""
#: access-guard.php:57
msgid "Configure access protection settings here."
msgstr ""
#: access-guard.php:78
msgid "Access Protection Settings"
msgstr ""
#: access-guard.php:85
msgid "IP Block List"
msgstr ""
#: access-guard.php:93
msgid "Custom Ban Messages"
msgstr ""
#: access-guard.php:101
msgid "Access Control Rules"
msgstr ""
#: access-guard.php:109
msgid "<p>Configure the access protection settings below:</p>"
msgstr ""
#: access-guard.php:115
msgid "<p class=\"description\">Enter the IP addresses or ranges to block, one per line.</p>"
msgstr ""
#: access-guard.php:121
msgid "<p class=\"description\">Enter the custom ban message to display to blocked users.</p>"
msgstr ""
#: access-guard.php:209
msgid "This content is restricted. Please contact the administrator for access."
msgstr ""

View File

@@ -1,84 +0,0 @@
# Copyright (C) 2023 AcyMailing integration for Uncanny Automator
# This file is distributed under the same license as the AcyMailing integration for Uncanny Automator package.
msgid ""
msgstr ""
"Project-Id-Version: AcyMailing integration for Uncanny Automator 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acymailing-integration-for-uncanny-automator\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-01-11 15:43:51+00:00\n"
"X-Domain: acymailing-integration-for-uncanny-automator\n"
#: acymailing/actions/acy-add-tag.php:24
msgid "Add a new tag for lists/campaigns {{Tag name:%s}}"
msgstr ""
#: acymailing/actions/acy-add-tag.php:25
msgid "Add a new tag for lists/campaigns"
msgstr ""
#: acymailing/actions/acy-remove-tag.php:23
msgid "Remove a tag for lists/campaigns {{Tag name:%s}}"
msgstr ""
#: acymailing/actions/acy-remove-tag.php:24
msgid "Remove a tag for lists/campaigns"
msgstr ""
#: acymailing/actions/acy-remove-tag.php:51
msgid "Tag name"
msgstr ""
#: acymailing/actions/acy-save-user.php:24
msgid "Save the AcyMailing subscriber {{Email address:%s}}"
msgstr ""
#: acymailing/actions/acy-save-user.php:25
msgid "Save an AcyMailing {{subscriber}}"
msgstr ""
#: acymailing/actions/acy-subscribe-to-list.php:24
msgid "Subscribe a user to {{a list:%s}}"
msgstr ""
#: acymailing/actions/acy-subscribe-to-list.php:25
msgid "Subscribe a user to {{a list}}"
msgstr ""
#: acymailing/actions/acy-unsubscribe-from-list.php:24
msgid "Unsubscribe a user from {{a list:%s}}"
msgstr ""
#: acymailing/actions/acy-unsubscribe-from-list.php:25
msgid "Unsubscribe a user from {{a list}}"
msgstr ""
#: acymailing/actions/acy-update-email.php:24
msgid "Change the email address for a subscriber {{Email address:%s}}"
msgstr ""
#: acymailing/actions/acy-update-email.php:25
msgid "Change the {{email address}} for a subscriber"
msgstr ""
#: acymailing/triggers/acy-user-updated.php:24
msgid "An AcyMailing subscriber is {{created or modified:%s}}"
msgstr ""
#: acymailing/triggers/acy-user-updated.php:25
msgid "An AcyMailing subscriber is {{created or modified}}"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "AcyMailing integration for Uncanny Automator"
msgstr ""
#. Description of the plugin/theme
msgid "Add AcyMailing triggers and actions in Uncanny Automator"
msgstr ""
#. Author of the plugin/theme
msgid "AcyMailing Newsletter Team"
msgstr ""

View File

@@ -1,915 +0,0 @@
# Copyright (C) 2023 Bytes Technolab
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Add Product Frontend for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bytes-add-product-frontend-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: 2023-01-02T01:36:43+05:30\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: bytes_product_frontend\n"
#. Plugin Name of the plugin
msgid "Add Product Frontend for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://plugins.demo1.bytestechnolab.com"
msgstr ""
#. Description of the plugin
msgid "Allow users to add products from a frontend page, edit and delete it.Users can see list of products in my account page.Admin will needs to configure mail by using WP Mail SMTP plugin or any other plugin in order to get notified when user add new product to site."
msgstr ""
#. Author of the plugin
msgid "Bytes Technolab"
msgstr ""
#. Author URI of the plugin
msgid "https://www.bytestechnolab.com"
msgstr ""
#: admin/class-bytes-add-product-frontend-for-woocommerce-admin.php:42
#: admin/partials/plugin-bytes-product-list.php:29
#: admin/partials/plugin-info-bytes-add-product-frontend.php:12
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:12
msgid "Settings"
msgstr ""
#: admin/class-bytes-add-product-frontend-for-woocommerce-admin.php:136
msgid "Product Status"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:25
#: admin/partials/plugin-info-bytes-add-product-frontend.php:8
#: admin/partials/plugin-info-bytes-add-product-frontend.php:25
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:8
msgid "Add Product Frontend"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:28
#: admin/partials/plugin-info-bytes-add-product-frontend.php:11
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:11
msgid "Information"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:30
#: admin/partials/plugin-info-bytes-add-product-frontend.php:13
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:13
msgid "Product List"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:54
#: public/partials/bytes-myaccount-show-product-list.php:101
msgid "Sr. No."
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:55
#: public/partials/bytes-myaccount-show-product-list.php:102
msgid "Product Name"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:56
#: public/partials/bytes-myaccount-show-product-list.php:103
msgid "Price"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:58
#: admin/partials/setting/plugin-setting-user-role.php:20
#: public/partials/bytes-myaccount-show-product-list.php:105
msgid "Author"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:60
#: public/partials/bytes-myaccount-show-product-list.php:107
msgid "Status"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:61
#: public/partials/bytes-myaccount-show-product-list.php:109
msgid "Action"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:79
#: admin/partials/plugin-bytes-product-list.php:82
#: public/partials/bytes-myaccount-show-product-list.php:132
#: public/partials/bytes-myaccount-show-product-list.php:135
msgid "Edit"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:80
#: public/partials/bytes-myaccount-show-product-list.php:133
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:113
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:138
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:121
msgid "Delete"
msgstr ""
#: admin/partials/plugin-bytes-product-list.php:92
#: public/partials/bytes-myaccount-show-product-list.php:144
msgid "No products found"
msgstr ""
#: admin/partials/plugin-info-bytes-add-product-frontend.php:26
msgid "Using frontend pages insert your product."
msgstr ""
#: admin/partials/plugin-info-bytes-add-product-frontend.php:34
msgid "All ready to go!"
msgstr ""
#: admin/partials/plugin-info-bytes-add-product-frontend.php:36
msgid "Goto Menus"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:5
msgid "Description"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:11
msgid "Short Description"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:17
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:10
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:10
msgid "Product image"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:23
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-gallery.php:10
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-gallery.php:10
msgid "Product gallery"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:29
msgid "Categories"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:35
msgid "Tags"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:41
msgid "Regular Price"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:47
msgid "Sale Price"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:53
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:207
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:186
msgid "SKU"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:59
msgid "Manage stock"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:65
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:262
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:236
msgid "Stock status"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:71
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:280
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:253
msgid "Sold individually"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:77
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:297
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:270
msgid "Weight"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:83
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:306
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:279
msgid "Dimensions"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:89
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:46
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:46
msgid "Linked Products"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:95
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:51
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:51
msgid "Attributes"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:101
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:411
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:378
msgid "Purchase note"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:107
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:425
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:392
msgid "Menu order"
msgstr ""
#: admin/partials/setting/plugin-setting-additional-fields.php:113
msgid "Enable reviews"
msgstr ""
#: admin/partials/setting/plugin-setting-product-status.php:6
msgid "Draft"
msgstr ""
#: admin/partials/setting/plugin-setting-product-status.php:7
msgid "Publish"
msgstr ""
#: admin/partials/setting/plugin-setting-user-role.php:4
msgid "Select user role which can create or edit product"
msgstr ""
#: admin/partials/setting/plugin-setting-user-role.php:8
msgid "Administrator"
msgstr ""
#: admin/partials/setting/plugin-setting-user-role.php:14
msgid "Editor"
msgstr ""
#: admin/partials/setting/plugin-setting-user-role.php:26
msgid "Contributor"
msgstr ""
#: admin/partials/setting/plugin-setting-user-role.php:32
msgid "Subscriber"
msgstr ""
#: admin/partials/setting/plugin-setting-user-role.php:38
msgid "Customer"
msgstr ""
#: admin/partials/setting/plugin-setting-user-role.php:44
msgid "Shop Manager"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:28
msgid "Quick Feedback"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:29
msgid "If you would be kind enough, please tell us why you're deactivating?"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:30
msgid "Please tell us which plugin?"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:31
msgid "Please tell us the reason so we can improve the plugin"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:32
msgid "Do not send my e-mail address with this feedback"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:34
msgid "Please give us any feedback that could help us improve"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:36
msgid "Cancel"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:37
msgid "Skip &amp; Deactivate"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:38
msgid "Submit &amp; Deactivate"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:39
msgid "Please wait"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:40
msgid "Thank you!"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:49
msgid "The plugin suddenly stopped working"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:50
msgid "The plugin broke my site"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:51
msgid "I don't need this plugin any more"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:52
msgid "I found a better plugin"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:53
msgid "It's a temporary deactivation, I'm troubleshooting"
msgstr ""
#: lib/plugin-deactivation/deactivate-feedback-form.php:54
msgid "Other"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:53
msgctxt "enhanced select"
msgid "No matches found"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:54
msgctxt "enhanced select"
msgid "Loading failed"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:55
msgctxt "enhanced select"
msgid "Please enter 1 or more characters"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:56
msgctxt "enhanced select"
msgid "Please enter %qty% or more characters"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:57
msgctxt "enhanced select"
msgid "Please delete 1 character"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:58
msgctxt "enhanced select"
msgid "Please delete %qty% characters"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:59
msgctxt "enhanced select"
msgid "You can only select 1 item"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:60
msgctxt "enhanced select"
msgid "You can only select %qty% items"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:61
msgctxt "enhanced select"
msgid "Loading more results&hellip;"
msgstr ""
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:62
msgctxt "enhanced select"
msgid "Searching&hellip;"
msgstr ""
#: public/inc/bytes-product-attributes.php:27
#: public/inc/bytes-product-attributes.php:171
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:41
msgid "Remove"
msgstr ""
#: public/inc/bytes-product-attributes.php:28
#: public/inc/bytes-product-attributes.php:172
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:42
msgid "Click to toggle"
msgstr ""
#: public/inc/bytes-product-attributes.php:29
#: public/inc/bytes-product-attributes.php:173
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:43
msgid "Drag and drop to set admin attribute order"
msgstr ""
#: public/inc/bytes-product-attributes.php:37
#: public/inc/bytes-product-attributes.php:181
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:51
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:95
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:95
msgid "Name"
msgstr ""
#: public/inc/bytes-product-attributes.php:47
#: public/inc/bytes-product-attributes.php:191
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:63
msgid "Value(s)"
msgstr ""
#: public/inc/bytes-product-attributes.php:56
#: public/inc/bytes-product-attributes.php:200
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:72
msgid "Select terms"
msgstr ""
#: public/inc/bytes-product-attributes.php:72
#: public/inc/bytes-product-attributes.php:216
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:88
msgid "Select all"
msgstr ""
#: public/inc/bytes-product-attributes.php:73
#: public/inc/bytes-product-attributes.php:217
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:89
msgid "Select none"
msgstr ""
#: public/inc/bytes-product-attributes.php:74
#: public/inc/bytes-product-attributes.php:218
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:90
msgid "Add new"
msgstr ""
#. translators: %s: APFFW_SIGN
#: public/inc/bytes-product-attributes.php:82
#: public/inc/bytes-product-attributes.php:226
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:96
msgid "Enter some text, or some attributes by \"%s\" separating values."
msgstr ""
#: public/inc/bytes-product-attributes.php:90
#: public/inc/bytes-product-attributes.php:234
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:104
msgid "Visible on the product page"
msgstr ""
#: public/inc/bytes-product-attributes.php:96
#: public/inc/bytes-product-attributes.php:240
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:110
msgid "Used for variations"
msgstr ""
#: public/partials/bytes-myaccount-show-product-list.php:95
msgid "Search"
msgstr ""
#: public/partials/bytes-myaccount-show-product-list.php:108
msgid "Product Link"
msgstr ""
#: public/partials/bytes-myaccount-show-product-list.php:128
msgid "View"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:107
msgid "Update"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:121
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:73
msgid "Success"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:124
msgid "Your product has been updated correctly!"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:126
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:78
msgid "OK"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:132
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:84
msgid "Error!"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:137
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:89
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:7
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:124
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:7
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:30
msgid "Close"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:150
msgid "You are not allow to update product!"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:159
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:111
msgid "You must be logged in to view this content!"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:59
msgid "Save"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:76
msgid "Your product has been added correctly!"
msgstr ""
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:102
msgid "You are not allow to add product!"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-categories.php:7
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-categories.php:7
msgid "Product categories"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-excerpt.php:7
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-excerpt.php:7
msgid "Short product description"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:7
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:124
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:7
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:30
msgid "Expand"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:10
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:10
msgid "Custom product attribute"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:24
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:21
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:24
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:21
msgid "Add"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:126
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:32
msgid "Save attributes"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-gallery.php:28
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-gallery.php:21
msgid "Add product gallery images"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:15
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:15
msgid "Click the image to edit or update"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:18
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:18
msgid "Set product image"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:19
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:19
msgid "Remove product image"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:8
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:8
msgid "Product Data"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:11
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:11
msgid "Simple product"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:12
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:12
msgid "Grouped product"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:13
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:13
msgid "External/Affiliate product"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:17
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:17
msgid "Virtual products are intangible and are not shipped."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:18
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:18
msgid "Virtual"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:22
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:22
msgid "Downloadable products give access to a file upon purchase."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:23
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:23
msgid "Downloadable"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:34
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:34
msgid "General"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:38
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:38
msgid "Inventory"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:42
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:42
msgid "Shipping"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:56
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:56
msgid "Advanced"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:64
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:64
msgid "Product URL"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:66
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:66
msgid "Enter the external URL to the product."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:69
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:69
msgid "Button text"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:71
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:71
msgid "This text will be shown on the button linking to the external product."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:77
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:77
msgid "Regular price"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:83
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:83
msgid "Sale price"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:95
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:95
msgid "This is the name of the download shown to the customer."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:96
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:96
msgid "File URL"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:96
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:96
msgid "This is the URL or absolute path to the file which customers will get access to. URLs entered here should already be encoded."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:108
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:133
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:116
msgid "File name"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:111
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:136
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:119
msgid "http://"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:112
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:137
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:120
msgid "Choose file"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:112
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:137
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:120
msgid "Insert file URL"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:143
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:125
msgid "Add File"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:150
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:132
msgid "Download limit"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:152
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:134
msgid "Leave blank for unlimited re-downloads."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:156
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:138
msgid "Download expiry"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:158
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:140
msgid "Enter the number of days before a download link expires, or leave blank."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:165
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:148
msgid "Define whether or not the entire product is taxable, or just the cost of shipping it."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:166
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:149
msgid "Choose a tax class for this product. Tax classes are used to apply different tax rates specific to certain types of product."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:172
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:152
msgid "Tax status"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:174
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:154
msgid "Taxable"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:175
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:155
msgid "Shipping only"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:176
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:156
msgid "None"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:183
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:163
msgid "Tax class"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:203
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:182
msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:204
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:183
msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:216
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:195
msgid "Manage stock?"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:222
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:201
msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:223
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:202
msgid "If managing stock, this controls whether or not back-orders are allowed. If enabled, stock quantity can go below 0."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:224
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:203
msgid "When product stock reaches this amount you will be notified by email."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:227
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:206
msgid "Stock quantity"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:239
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:213
msgid "Allow back-orders?"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:241
msgid "Do not allow"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:242
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:216
msgid "Allow, but notify customer"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:243
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:217
msgid "Allow"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:250
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:224
msgid "Low stock threshold"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:282
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:255
msgid "Enable this to only allow one of this item to be bought in a single order"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:293
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:266
msgid "Weight in decimal form."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:294
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:267
msgid "LxWxH in decimal form."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:322
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:295
msgid "Shipping classes are used by certain shipping methods to group similar products."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:324
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:297
msgid "Product shipping class"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:326
msgid "No shipping class"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:345
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:317
msgid "This lets you choose which products are part of this group."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:346
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:318
msgid "Upsells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:347
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:319
msgid "Cross-sells are products which you promote in the cart, based on the current product."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:350
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:322
msgid "Grouped products"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:365
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:336
msgid "Upsells"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:380
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:350
msgid "Cross-sells"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:408
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:375
msgid "Enter an optional note to send the customer after purchase."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:422
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:389
msgid "Custom ordering position."
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:436
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:403
msgid "Reviews allowed"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:10
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:10
msgid "Product tags"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:22
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:22
msgid "Separate tags with commas"
msgstr ""
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-title.php:5
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-title.php:5
msgid "Product name"
msgstr ""
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:215
msgid "Do not allowed"
msgstr ""

View File

@@ -1,59 +0,0 @@
# Copyright (C) 2023 DevPress
# This file is distributed under the GNU General Public License v3.0.
msgid ""
msgstr ""
"Project-Id-Version: Address Autocomplete Google Places 1.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/address-autocomplete-google-places\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: 2023-03-10T20:47:35+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: address-autocomplete-google-places\n"
#. Plugin Name of the plugin
msgid "Address Autocomplete Google Places"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/devpress/address-autocomplete-google-places"
msgstr ""
#. Description of the plugin
msgid "Enables address autocomplete with Google Places API for WooCommerce."
msgstr ""
#. Author of the plugin
msgid "DevPress"
msgstr ""
#. Author URI of the plugin
msgid "https://devpress.com"
msgstr ""
#: address-autocomplete.php:119
msgid "Address Autocomplete requires at least WooCommerce v%1$s in order to function."
msgstr ""
#: address-autocomplete.php:133
msgid "Settings"
msgstr ""
#: includes/class-settings.php:14
msgid "Address Autocomplete"
msgstr ""
#: includes/class-settings.php:15
msgid "An integration with Google Places API for address autocomplete on checkout page."
msgstr ""
#: includes/class-settings.php:32
msgid "Google Places API Key"
msgstr ""
#: includes/class-settings.php:35
msgid "Generate a <a href=\"%s\" target=\"_blank\">Google Places API Key</a>."
msgstr ""

View File

@@ -1,21 +0,0 @@
== changelog.txt ==
= 1.0.5 =
* Added video to readme
* When resetting settings, added a notice instead of attempting to refresh
= 1.0.4 =
* Fixed nested ordered lists on main documentation page to show proper list types
* Added settings link, website link, and discord support link to plugins list page
* Other minor fixes
= 1.0.3 =
* Minor fixes
= 1.0.2 =
* Added feedback form to About tab
= 1.0.1 =
* Initial release January 23, 2023
= 1.0.0 =
* Created this plugin on November 14, 2022

View File

@@ -1,3 +0,0 @@
= 1.0.0 =
* 05 February 2023
* Initial release version

View File

@@ -1,31 +0,0 @@
# Copyright (C) 2023 wpaibot.com
# This file is distributed under the GPL-2.0+ or Artistic License 2.0.
msgid ""
msgstr ""
"Project-Id-Version: AI Bot 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aibot\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: 2023-02-27T18:57:26+01:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: aibot\n"
#. Plugin Name of the plugin
msgid "AI Bot"
msgstr ""
#. Description of the plugin
msgid "Create engaging content with our WordPress AI writer. Our AI writer can help you create content for your WordPress site in seconds."
msgstr ""
#. Author of the plugin
msgid "wpaibot.com"
msgstr ""
#. Author URI of the plugin
msgid "https://wpaibot.com"
msgstr ""

View File

@@ -1,2 +0,0 @@
= 1.0.1 - 29 May 2023 =
* Fix: Some minor issues

View File

@@ -1,7 +0,0 @@
== Changelog ==
= 1.0.0 - 11-22-2023
* Initial Release.
= 1.0.1 - 11-23-2023
* Fix - Broken Url Links.

View File

@@ -1,257 +0,0 @@
# Copyright (C) 2023 FirstMedia Solutions GmbH
# This file is distributed under the same license as the aiflow plugin.
#
msgid ""
msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"MIME-Version: 1.0\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"POT-Creation-Date: 2023-03-07T08:00:38+00:00\n"
"Project-Id-Version: aiflow 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/firstmedia-ai-text\n"
"X-Domain: firstmedia-ai-text\n"
"X-Generator: WP-CLI 2.7.1\n"
#. Plugin Name of the plugin
#: backend/admin-menu.php:8
msgid "aiflow"
msgstr "aiflow"
#. Plugin URI of the plugin
msgid "https://www.firstmedia.swiss/angebot/webentwicklung-e-commerce-webhosting/"
msgstr "https://www.firstmedia.swiss/angebot/webentwicklung-e-commerce-webhosting/"
#. Description of the plugin
msgid "Allows you to generate Product Descriptions with AI."
msgstr "Le permite generar Descripciones de Productos con IA."
#. Author of the plugin
msgid "FirstMedia Solutions GmbH"
msgstr "FirstMedia Solutions GmbH"
#. Author URI of the plugin
msgid "https://www.firstmedia.swiss"
msgstr "https://www.firstmedia.swiss"
#: backend/admin-menu.php:7
#: backend/views/view-options.php:6
msgid "aiflow Settings"
msgstr "Ajustes aiflow"
#: backend/admin-menu.php:69
msgid "Settings"
msgstr "Ajustes"
#: backend/views/view-options.php:14
msgid "An error occured checking your session status. Please connect again."
msgstr "Se ha producido un error al comprobar el estado de su sesión. Por favor, conéctese de nuevo."
#: backend/views/view-options.php:15
msgid "You are not signed in."
msgstr "No has iniciado sesión."
#: backend/views/view-options.php:16
msgid "To Start using our AI, you have to sign in with your account on our platform."
msgstr "Para empezar a utilizar nuestra IA, debe iniciar sesión con su cuenta en nuestra plataforma."
#: backend/views/view-options.php:17
msgid "Click the button below to connect or create an account with us."
msgstr "Haga clic en el botón de abajo para conectarse o crear una cuenta con nosotros."
#: backend/views/view-options.php:19
msgid "Connect your account now"
msgstr "Conecte su cuenta ahora"
#: backend/views/view-options.php:27
msgid "You are connected."
msgstr "Estás conectado."
#: backend/views/view-options.php:28
msgid "Manage account"
msgstr "Gestionar cuenta"
#: backend/views/view-options.php:29
msgid "Disconnect"
msgstr "Desconecte"
#: backend/views/view-options.php:32
msgid "Checking connection to AI..."
msgstr "Comprobando conexión con AI..."
#: backend/views/view-options.php:37
msgid "Your available descriptions"
msgstr "Sus descripciones disponibles"
#: backend/views/view-options.php:41
msgid "Free descriptions remaining"
msgstr "Descripciones libres restantes"
#: backend/views/view-options.php:47
msgid "Need more descriptions?"
msgstr "¿Necesita más descripciones?"
#: backend/views/view-options.php:49
msgid "Subscribe now and get monthly tokens."
msgstr "Suscríbete ahora y recibe fichas mensuales."
#: backend/views/view-options.php:51
msgid "Subscribe now"
msgstr "Suscríbase ahora"
#: assets/js/product-edit.js:8
msgid "Generate new description"
msgstr "Generar nueva descripción"
#: assets/js/product-edit.js:9
#: assets/js/product-edit.js:147
msgid "Rewrite current description"
msgstr "Reescribir la descripción actual"
#: assets/js/product-edit.js:10
msgid "Optimize description for SEO"
msgstr "Optimizar la descripción para SEO"
#: assets/js/product-edit.js:26
msgid "Generate Description with AI"
msgstr "Generar descripción con IA"
#: assets/js/product-edit.js:27
#: assets/js/product-edit.js:148
#: assets/js/product-edit.js:172
msgid "Are you ready to take the leap to AI?"
msgstr "¿Está preparado para dar el salto a la IA?"
#: assets/js/product-edit.js:27
#: assets/js/product-edit.js:148
#: assets/js/product-edit.js:172
msgid "Connect to our AI"
msgstr "Conéctese a nuestra IA"
#: assets/js/product-edit.js:28
msgid "Manually enter Description"
msgstr "Introducir manualmente Descripción"
#: assets/js/product-edit.js:74
msgid "An error occured when processing your request on the AI"
msgstr "Se ha producido un error al procesar su solicitud en la IA"
#: assets/js/product-edit.js:84
msgid "You have no credits remaining. Please purchase description credits first."
msgstr "No le quedan créditos. Por favor, compre primero créditos de descripción."
#: assets/js/product-edit.js:84
msgid "Purchase now"
msgstr "Comprar ahora"
#: assets/js/product-edit.js:91
msgid "You have only"
msgstr "Sólo tiene"
#: assets/js/product-edit.js:91
msgid "tokens remaining. We recommend a higher amount."
msgstr "fichas restantes. Recomendamos una cantidad mayor."
#: assets/js/product-edit.js:91
msgid "Purchase more tokens"
msgstr "Comprar más fichas"
#: assets/js/product-edit.js:91
msgid "Continue anyway"
msgstr "Continuar de todos modos"
#: assets/js/product-edit.js:97
msgid "Your authorization seems to be invalid."
msgstr "Parece que su autorización no es válida."
#: assets/js/product-edit.js:97
msgid "Connect to AI again"
msgstr "Conéctate de nuevo a la IA"
#: assets/js/product-edit.js:103
msgid "Your subscription does not include this action."
msgstr "Su suscripción no incluye esta acción."
#: assets/js/product-edit.js:103
msgid "Upgrade now"
msgstr "Actualizar ahora"
#: assets/js/product-edit.js:104
#: assets/js/product-edit.js:149
#: assets/js/product-edit.js:173
msgid "Close"
msgstr "Cerrar"
#: assets/js/product-edit.js:126
msgid "Please enter a title first."
msgstr "Por favor, introduzca primero un título."
#: assets/js/product-edit.js:128
msgid "Write a long, unique product description for this product:"
msgstr "Escriba una descripción larga y única para este producto:"
#: assets/js/product-edit.js:138
msgid "Choose text tone:"
msgstr "Elige el tono del texto:"
#: assets/js/product-edit.js:139
msgid "Does not matter"
msgstr "No importa"
#: assets/js/product-edit.js:140
msgid "Warmer"
msgstr "Más caliente"
#: assets/js/product-edit.js:141
msgid "Professional"
msgstr "Profesional"
#: assets/js/product-edit.js:142
msgid "Formal"
msgstr "Formal"
#: assets/js/product-edit.js:143
msgid "Expressive"
msgstr "Expresivo"
#: assets/js/product-edit.js:144
msgid "Excited"
msgstr "Emocionado"
#: assets/js/product-edit.js:145
msgid "Inspirational"
msgstr "Inspiración"
#: assets/js/product-edit.js:158
msgid "Rewrite this description so it is unique:"
msgstr "Reescribe esta descripción para que sea única:"
#: assets/js/product-edit.js:160
msgid "Rewrite this unique text in a"
msgstr "Vuelva a escribir este texto único en un"
#: assets/js/product-edit.js:160
msgid "tone"
msgstr "tono"
#: assets/js/product-edit.js:170
msgid "Optimize with these keyswords in mind:"
msgstr "Optimice teniendo en cuenta estas palabras clave:"
#: assets/js/product-edit.js:170
msgid "keyword1, keyword2, keyword3"
msgstr "palabra clave1, palabra clave2, palabra clave3"
#: assets/js/product-edit.js:171
msgid "Optimize for SEO"
msgstr "Optimizar para SEO"
#: assets/js/product-edit.js:183
msgid "Optimize this product description for seo:"
msgstr "Optimizar esta descripción de producto para seo:"
#: assets/js/product-edit.js:185
msgid "Optimize this description for seo and use the keywords"
msgstr "Optimizar esta descripción para seo y utilizar las palabras clave"

View File

@@ -1,28 +0,0 @@
{
"name": "ai-for-wordpress-by-upcasted",
"version": "1.0.0",
"description": "A plugin that uses OpenAI Image Generation API to generate similar images based on an image or a text.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Upcasted",
"license": "ISC",
"dependencies": {
"openai": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-easy-crop": "^4.6.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.27",
"babel-loader": "^9.1.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}

View File

@@ -1,160 +0,0 @@
# Copyright (C) 2023 Allpay
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Allpay payment gateway 1.0.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-"
"gateway.1.0.2\n"
"POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
"PO-Revision-Date: 2023-07-19 19:49+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ru_RU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.3.2\n"
"X-Domain: allpay-payment-gateway\n"
#. Plugin Name of the plugin
msgid "Allpay payment gateway"
msgstr "Платежный шлюз Allpay"
#. Plugin URI of the plugin
msgid "https://www.allpay.co.il/integrations/woocommerce"
msgstr ""
#. Description of the plugin
msgid "Allpay Payment Gateway for WooCommerce."
msgstr "Платежный шлюз Allpay для WooCommerce."
#. Author of the plugin
msgid "Allpay"
msgstr ""
#. Author URI of the plugin
msgid "https://allpay.co.il"
msgstr ""
#: allpay-gateway.php:47
msgid "Settings"
msgstr "Настройки"
#: allpay.php:12 allpay.php:16
msgid "Bank cards payments Allpay"
msgstr "Оплата банковскими картами Allpay"
#: allpay.php:14
msgid "Allpay Payment Gateway Plug-in for WooCommerce"
msgstr "Плагин платежного шлюза Allpay для WooCommerce"
#: allpay.php:55
msgid "Enable / Disable"
msgstr "Включить/ Выключить"
#: allpay.php:56
msgid "Enable this payment gateway"
msgstr "Включить этот метод оплаты"
#: allpay.php:61
msgid "Title"
msgstr "Заголовок"
#: allpay.php:63
msgid "Payment title the customer will see during the checkout process."
msgstr ""
"Заголовок платежа, который покупатель увидит в процессе оформления заказа."
#: allpay.php:64
msgid "Credit card"
msgstr "Кредитная карта"
#: allpay.php:67
msgid "Description"
msgstr "Описание"
#: allpay.php:69
msgid "Payment description the customer will see during the checkout process."
msgstr ""
"Описание платежа, которое покупатель увидит в процессе оформления заказа."
#: allpay.php:70
msgid "Pay securely using your credit card."
msgstr "Платите безопасно с помощью кредитной карты."
#: allpay.php:74
msgid "API login"
msgstr "API логин"
#: allpay.php:76
msgid "Allpay API Login"
msgstr "Логин API Allpay"
#: allpay.php:79
msgid "API key"
msgstr "API ключ"
#: allpay.php:81
msgid "Allpay API Key"
msgstr "Ключ API Allpay"
#: allpay.php:84
msgid "Installment max payments"
msgstr "Платежей в рассрочку до"
#: allpay.php:86
msgid "Maximum number of installment payments. Up to 12, zero to disable."
msgstr ""
"Максимальное количество платежей в рассрочку. Максимум до12-и платежей. 0 "
"для отключения."
#: allpay.php:87
msgid ""
"Allows client to choose number of payments. Valid for credit cards only (no "
"debit cards)"
msgstr ""
"Позволяет клиенту выбрать количество платежей. Действительно только для "
"кредитных карт (без дебетовых карт)"
#: allpay.php:91
msgid "Installment min order amount"
msgstr "Минимальная сумма заказа в рассрочку"
#: allpay.php:93
msgid "Minimum order amount for installments. Zero for orders of any amount."
msgstr "Минимальная сумма заказа в рассрочку. Ноль для заказов на любую сумму."
#: allpay.php:94
msgid ""
"Enables installment option when payment amount equals or above this value"
msgstr ""
"Включает опцию рассрочки, когда сумма платежа равна или превышает это "
"значение"
#: allpay.php:98
msgid "First payment amount"
msgstr "Сумма первого платежа"
#: allpay.php:100
msgid "First Installment payment. Zero for auto."
msgstr "Оплата первого взноса. Ноль для автоматического расчета."
#: allpay.php:101
msgid ""
"Makes first payment amount fixed. If set to 0, the system will calculate the "
"first payment"
msgstr ""
"Фиксирует сумму первого платежа. Если установлено 0, система рассчитает "
"первый платеж"
#: allpay.php:146
msgid ""
"We are currently experiencing problems trying to connect to this payment "
"gateway. Sorry for the inconvenience."
msgstr ""
"В настоящее время у нас возникают проблемы с подключением к этому платежному "
"шлюзу. Приносим извинения за неудобства."
#: allpay.php:149
msgid "Allpay's Response was empty."
msgstr "Пустой ответ от платежного шлюза."

View File

@@ -1,15 +0,0 @@
{
"name": "mvam-animiate",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@wordpress/scripts": "^19.2.1"
}
}

View File

@@ -1,4 +0,0 @@
*** Anti DDOS/BOT ReCaptcha Protection ***
= 1.0.0 - 2023-02-13 =
* ANNOUNCE - First release of this plugin.

View File

@@ -1,283 +0,0 @@
# Copyright (C) 2023 Aplaz S.A. de C.V.
# This file is distributed under the MIT.
msgid ""
msgstr ""
"Project-Id-Version: Aplazo Payment Gateway 1.0.18\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aplazo-payment-"
"gateway\n"
"POT-Creation-Date: 2023-01-11T16:32:47-06:00\n"
"PO-Revision-Date: 2023-01-11 16:44-0600\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.2.2\n"
"X-Domain: aplazo-payment-gateway\n"
#. Plugin Name of the plugin
msgid "Aplazo Payment Gateway"
msgstr "Pasarela de pago Aplazo"
#. Description of the plugin
msgid "Aplazo BNPL Payment Gateway plugin"
msgstr "Plugin de pasarela de pago BNPL de Aplazo"
#. Author of the plugin
msgid "Aplaz S.A. de C.V."
msgstr "Aplaz S.A. de C.V."
#: includes/module/class-aplazo-gateway.php:43
msgid "Gateway Payment Aplazo"
msgstr "Pasarela de Pago Aplazo"
#: includes/module/class-aplazo-gateway.php:98
msgid "Enable/Disable"
msgstr "Activar/Desactivar"
#: includes/module/class-aplazo-gateway.php:100
msgid "Enable"
msgstr "Activar"
#: includes/module/class-aplazo-gateway.php:104
msgid "Title of service by site"
msgstr "Título del servicio por sitio"
#: includes/module/class-aplazo-gateway.php:106
msgid ""
"Title of service by front-end on site chekout page. Keep empty if want to "
"show Aplazo banner"
msgstr ""
"Título del servicio por front-end en el checkout del sitio. Mantener "
"vacío si desea mostrar Aplazo banner"
#: includes/module/class-aplazo-gateway.php:111
msgid "Description on front page"
msgstr "Descripción"
#: includes/module/class-aplazo-gateway.php:113
msgid "Description on front page when chekout goods"
msgstr "Descripción al buscar productos"
#: includes/module/class-aplazo-gateway.php:117
#: includes/module/class-aplazo-gateway.php:119
msgid "Message before pay"
msgstr "Mensaje antes de pagar"
#: includes/module/class-aplazo-gateway.php:120
msgid "Please, complete the order with Aplazo clicking here:"
msgstr "Por favor, completa la orden con Aplazo dando clic abajo:"
#: includes/module/class-aplazo-gateway.php:124
msgid "Merchant ID"
msgstr "Merchant ID"
#: includes/module/class-aplazo-gateway.php:126
msgid "Merchant ID Aplazo. Required parameter"
msgstr "Merchant ID Aplazo. Parámetro requerido."
#: includes/module/class-aplazo-gateway.php:130
msgid "API Token"
msgstr "API Token"
#: includes/module/class-aplazo-gateway.php:132
msgid "API Token Aplazo. Required parameter"
msgstr "API Token Aplazo. Parámetro requerido"
#: includes/module/class-aplazo-gateway.php:136
msgid "Language"
msgstr "Idioma"
#: includes/module/class-aplazo-gateway.php:140
msgid "Language of interface "
msgstr "Idioma"
#: includes/module/class-aplazo-gateway.php:144
msgid "Status of order when get OUTSTANDING state from API"
msgstr ""
"Estado de la orden cuando se obtiene el estado OUTSTANDING desde el API"
#: includes/module/class-aplazo-gateway.php:148
msgid "pending"
msgstr "Pending"
#: includes/module/class-aplazo-gateway.php:149
msgid "processing"
msgstr "Processing"
#: includes/module/class-aplazo-gateway.php:150
msgid "on-hold"
msgstr "On-hold"
#: includes/module/class-aplazo-gateway.php:151
msgid "cancelled"
msgstr "Cancelled"
#: includes/module/class-aplazo-gateway.php:152
msgid "completed"
msgstr "Completed"
#: includes/module/class-aplazo-gateway.php:153
msgid "refunded"
msgstr "Refunded"
#: includes/module/class-aplazo-gateway.php:154
msgid "failed"
msgstr "Failed"
#: includes/module/class-aplazo-gateway.php:156
msgid "Status of order after success pay"
msgstr "Estado de la orden después de un pago exitoso"
#: includes/module/class-aplazo-gateway.php:160
msgid "Select the Aplazo environment"
msgstr "Selecciona el ambiente de Aplazo"
#: includes/module/class-aplazo-gateway.php:164
msgid "development"
msgstr "Desarrollo"
#: includes/module/class-aplazo-gateway.php:165
msgid "stage"
msgstr "Stage"
#: includes/module/class-aplazo-gateway.php:166
msgid "production"
msgstr "Producción"
#: includes/module/class-aplazo-gateway.php:168
msgid "Aplazo Environmnet"
msgstr "Ambiente Aplazo"
#: includes/module/class-aplazo-gateway.php:172
#: includes/module/class-aplazo-gateway.php:179
msgid "Show widget on Product Detail Page"
msgstr "Mostrar el widget en la página de detalle del producto"
#: includes/module/class-aplazo-gateway.php:176
#: includes/module/class-aplazo-gateway.php:187
#: includes/module/class-aplazo-gateway.php:198
msgid "yes"
msgstr "si"
#: includes/module/class-aplazo-gateway.php:177
#: includes/module/class-aplazo-gateway.php:188
#: includes/module/class-aplazo-gateway.php:199
msgid "no"
msgstr "no"
#: includes/module/class-aplazo-gateway.php:183
#: includes/module/class-aplazo-gateway.php:190
msgid "Show widget on Shopping Cart Page"
msgstr "Mostrar el widget en la página de carrito"
#: includes/module/class-aplazo-gateway.php:194
#: includes/module/class-aplazo-gateway.php:201
msgid "Reserve stock when the order is created"
msgstr "Reservar inventario cuando una orden es creada"
#: includes/module/class-aplazo-gateway.php:205
msgid "Time to cancel orders"
msgstr "Tiempo para cancelar órdenes sin pagar"
#: includes/module/class-aplazo-gateway.php:209
#: includes/module/class-aplazo-gateway.php:210
#: includes/module/class-aplazo-gateway.php:211
#: includes/module/class-aplazo-gateway.php:212
#: includes/module/class-aplazo-gateway.php:213
#: includes/module/class-aplazo-gateway.php:214
#: includes/module/class-aplazo-gateway.php:215
#: includes/module/class-aplazo-gateway.php:216
#: includes/module/class-aplazo-gateway.php:217
#: includes/module/class-aplazo-gateway.php:218
msgid "hours"
msgstr "horas"
#: includes/module/class-aplazo-gateway.php:219
msgid "hour"
msgstr "hora"
#: includes/module/class-aplazo-gateway.php:220
#: includes/module/class-aplazo-gateway.php:221
msgid "minutes"
msgstr "minutos"
#: includes/module/class-aplazo-gateway.php:222
msgid "manual"
msgstr "manual"
#: includes/module/class-aplazo-gateway.php:224
msgid "After this time the orders could be cancelled"
msgstr "Después de este tiempo las órdenes pueden ser canceladas"
#: includes/module/class-aplazo-gateway.php:233
msgid "Debug"
msgstr "Depurador"
#: includes/module/class-aplazo-gateway.php:235
msgid "Active"
msgstr "Activo"
#: includes/module/class-aplazo-gateway.php:265
#: includes/module/class-aplazo-module.php:164
msgid "Order pending payment via APLAZO"
msgstr "Orden con pago pendiente via APLAZO"
#: includes/module/class-aplazo-gateway.php:266
#: includes/module/class-aplazo-module.php:165
msgid "Client has redirected to APLAZO gateway for pay his goods"
msgstr ""
"Cliente ha sido redirigido a la pasarela de APLAZO para pagar su carrito"
#: includes/module/class-aplazo-gateway.php:272
#: includes/module/class-aplazo-gateway.php:275
msgid "Payment error:"
msgstr "Error de pago:"
#: includes/module/class-aplazo-gateway.php:272
msgid "Communication error"
msgstr "Error de comunicación"
#: includes/module/class-aplazo-gateway.php:520
#: includes/module/class-aplazo-gateway.php:525
msgid "Client has not payed for his goods (status changed)"
msgstr "Cliente no ha pagado su carrito (cambio de status)"
#: includes/module/class-aplazo-gateway.php:521
msgid "Order has pending via APLAZO"
msgstr "Orden está pendiente vía APLAZO"
#: includes/module/class-aplazo-gateway.php:526
msgid "Order has cancelled via APLAZO (payment cancelled)"
msgstr "Orden ha sido cancelada vía APLAZO (pago cancelado)"
#: includes/module/class-aplazo-gateway.php:531
msgid "Order in "
msgstr "Ordena en"
#: includes/module/class-aplazo-gateway.php:554
msgid "Refund failed."
msgstr "Reembolso fallido."
#: includes/module/class-aplazo-gateway.php:559
#: includes/module/class-aplazo-module.php:107
msgid "Refund communication failed."
msgstr "Comunicación de reembolso fallida."
#: includes/module/class-aplazo-gateway.php:562
msgid "Refund in process."
msgstr "Reembolso en proceso."
#: includes/module/class-aplazo-module.php:91
msgid "The order was cancelled due to no payment from customer."
msgstr "La orden fue cancelada debido a que no hubo pago del cliente."
#: includes/module/class-aplazo-module.php:189
msgid "Configure"
msgstr "Configurar"
#: includes/module/class-aplazo-template-functions.php:21
msgid "Place order"
msgstr "Terminar orden"

View File

@@ -1,11 +0,0 @@
{
"name": "arvancloud-vod",
"version": "0.0.1",
"description": "",
"author": "Khorshid <info@khorshidlab.com>",
"devDependencies": {
"grunt": "*",
"grunt-contrib-watch": "*",
"grunt-contrib-compass": "*"
}
}

View File

@@ -1,271 +0,0 @@
# Copyright (C) 2022 Khorshid, ArvanCloud
# This file is distributed under the GPL-3.0+.
msgid ""
msgstr ""
"Project-Id-Version: ArvanCloud VOD 0.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/arvancloud-vod-for-wordpress\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-09-14T07:39:30+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: arvancloud-vod\n"
#. Plugin Name of the plugin
#: inc/VOD/Widgets/Video_Links.php:25
#: inc/VOD/Widgets/Video_Links.php:34
msgid "ArvanCloud VOD"
msgstr ""
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.arvancloud.ir/en/products/video-platform"
msgstr ""
#. Description of the plugin
msgid "ArvanCloud Video Platform allows users to publish, store and convert their video content without worrying about the required infrastructure."
msgstr ""
#. Author of the plugin
msgid "Khorshid, ArvanCloud"
msgstr ""
#: admin/Enqueue.php:110
msgid "you are not allowed to upload this file type."
msgstr ""
#: admin/Enqueue.php:111
#: inc/VOD/Assets/Media_Action.php:15
#: inc/VOD/Assets/Media_Action.php:33
#: inc/VOD/Widgets/Video_Links.php:69
msgid "Copy to ArvanVOD"
msgstr ""
#: admin/views/components/footer.php:4
msgid "Arvan Video Panel"
msgstr ""
#: admin/views/components/footer.php:5
msgid "Support"
msgstr ""
#: admin/views/components/footer.php:6
msgid "Email Us"
msgstr ""
#: admin/views/pages/about-us.php:2
#: inc/Setup.php:228
#: inc/Setup.php:256
msgid "About ArvanCloud"
msgstr ""
#: admin/views/pages/about-us.php:8
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/views/pages/add-video.php:83
#: inc/Setup.php:210
msgid "Upload New Video"
msgstr ""
#: admin/views/pages/add-video.php:131
msgid "Accepted file types: %s"
msgstr ""
#: admin/views/pages/api-key-settings.php:8
msgid "VOD General Settings"
msgstr ""
#: admin/views/pages/api-key-settings.php:11
msgid "Configure VOD API"
msgstr ""
#: admin/views/pages/api-key-settings.php:15
#: inc/API/VOD_Key.php:53
msgid "-- not shown --"
msgstr ""
#: admin/views/pages/api-key-settings.php:18
msgid "Get API Key"
msgstr ""
#: admin/views/pages/api-key-settings.php:29
msgid "Cancel"
msgstr ""
#: admin/views/pages/api-key-settings.php:34
#: admin/views/pages/default-channel.php:47
msgid "Save"
msgstr ""
#: admin/views/pages/default-channel.php:11
msgid "Channels"
msgstr ""
#: admin/views/pages/default-channel.php:15
msgid "Select default channel"
msgstr ""
#: admin/views/pages/default-channel.php:22
msgid "Change API Key"
msgstr ""
#: admin/views/pages/default-channel.php:29
msgid "Select default channel (ArvanCloud Video Channel for Uploading Videos)"
msgstr ""
#: admin/views/pages/video-library.php:83
#: inc/Setup.php:201
msgid "Video Library"
msgstr ""
#: admin/views/pages/video-library.php:224
msgid "Video Library "
msgstr ""
#: arvancloud-vod.php:56
msgid "\"ArvanCloud VOD\" requires PHP 5.6 or newer."
msgstr ""
#: inc/API/VOD/Channels.php:38
msgid "Please select a channel"
msgstr ""
#: inc/API/VOD/Channels.php:53
#: inc/API/VOD_Key.php:74
msgid "settings saved."
msgstr ""
#: inc/API/VOD_Key.php:24
msgid "ArvanCloud is not responding right now. please try again later."
msgstr ""
#: inc/API/VOD_Key.php:30
msgid "ArvanCloud API key is invalid. Please try again."
msgstr ""
#: inc/API/VOD_Key.php:57
msgid "Enter your API key"
msgstr ""
#: inc/Setup.php:190
#: inc/Setup.php:237
msgid "ArvanCloud Videos"
msgstr ""
#: inc/Setup.php:191
#: inc/Setup.php:238
msgid "Videos"
msgstr ""
#: inc/Setup.php:202
msgid "Library"
msgstr ""
#: inc/Setup.php:211
msgid "Add"
msgstr ""
#: inc/Setup.php:219
#: inc/Setup.php:220
#: inc/Setup.php:247
#: inc/Setup.php:248
msgid "Setting"
msgstr ""
#: inc/Setup.php:229
#: inc/Setup.php:257
msgid "About"
msgstr ""
#: inc/VOD/Assets/Add_Video.php:109
msgid "The following videos are being copied and Converted: <br>"
msgstr ""
#: inc/VOD/Assets/Media_Action.php:182
msgid "Edit attachment"
msgstr ""
#: inc/VOD/Assets/Media_Action.php:252
msgid "Media successfully copied to ArvanCloud VoD service."
msgstr ""
#: inc/VOD/Assets/Media_Action.php:253
msgid "Media copied to ArvanCloud VOD with some errors."
msgstr ""
#: inc/VOD/Assets/Media_Action.php:255
msgid "There were errors when copying the media to ArvanCloud VOD."
msgstr ""
#: inc/VOD/Assets/Media_Action.php:256
msgid "The media could not be copied to VOD because it is not a valid video file."
msgstr ""
#: inc/VOD/Assets/Media_Action.php:257
msgid "The media could not be copied to VOD because of negative arvan wallet. Please charge your wallet then retry."
msgstr ""
#: inc/VOD/Assets/Tinymce_plugin.php:35
msgid "Embed VOD"
msgstr ""
#: inc/VOD/Assets/Tinymce_plugin.php:36
msgid "Select a video"
msgstr ""
#: inc/VOD/Assets/Tinymce_plugin.php:37
#: assets/js/blocks.build.js:119
msgid "Video"
msgstr ""
#: inc/VOD/Assets/Tinymce_plugin.php:38
msgid "Select"
msgstr ""
#: inc/VOD/Widgets/Video_Links.php:55
msgid "The video has already been uploaded to ArvanCloud VOD and is being converted. Once the conversion process is complete, the video links will be displayed here."
msgstr ""
#: assets/js/blocks.build.js:87
msgid "Video ArvanCloud"
msgstr ""
#: assets/js/blocks.build.js:87
msgid "VOD"
msgstr ""
#: assets/js/blocks.build.js:87
msgid "video"
msgstr ""
#: assets/js/blocks.build.js:87
msgid "arvancloud"
msgstr ""
#: assets/js/blocks.build.js:119
msgid "To edit the Video, you need permission to upload media."
msgstr ""
#: assets/js/blocks.build.js:119
msgid "Video settings"
msgstr ""
#: assets/js/blocks.build.js:119
msgid "Set Video"
msgstr ""
#: assets/js/blocks.build.js:119
msgid "Replace Video"
msgstr ""
#: assets/js/blocks.build.js:119
msgid "Remove Video"
msgstr ""
#: assets/js/blocks.build.js:119
msgid "No Video Selected"
msgstr ""

View File

@@ -1,249 +0,0 @@
# Copyright (C) 2023 ThemeAtelier
# This file is distributed under the same license as the Ask FAQ Pro plugin.
msgid ""
msgstr ""
"Project-Id-Version: Ask FAQ Pro 0.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ask-faq-pro\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: 2023-04-19T04:37:38+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: ask-faq-pro\n"
#. Plugin Name of the plugin
msgid "Ask FAQ Pro"
msgstr ""
#. Description of the plugin
msgid "Best FAQ block including tab and accordion version what provides to use text, audio and video as Write Answer."
msgstr ""
#. Author of the plugin
msgid "ThemeAtelier"
msgstr ""
#. Author URI of the plugin
msgid "http://themeatelier.net/"
msgstr ""
#: ask-faq.php:55
msgid "Ask FAQ"
msgstr ""
#: build/accordion-block/index.js:72
#: build/tab/index.js:96
#: build/accordion-block/index.js:52
#: build/tab/index.js:94
msgid "Text"
msgstr ""
#: build/accordion-block/index.js:75
#: build/tab/index.js:99
#: build/accordion-block/index.js:53
#: build/tab/index.js:95
msgid "Audio"
msgstr ""
#: build/accordion-block/index.js:78
#: build/tab/index.js:102
#: build/accordion-block/index.js:54
#: build/tab/index.js:96
msgid "Video"
msgstr ""
#: build/accordion-block/index.js:85
#: build/accordion-block/index.js:90
#: build/accordion-block/index.js:157
#: build/tabs/index.js:3631
#: build/tabs/index.js:3632
#: build/accordion-block/index.js:68
#: build/accordion-block/index.js:73
#: build/accordion-block/index.js:171
#: build/tabs/index.js:3194
#: build/tabs/index.js:3198
msgid "Write Question"
msgstr ""
#: build/accordion-block/index.js:91
#: build/accordion-block/index.js:74
msgid "Write your question to show as Write Question."
msgstr ""
#: build/accordion-block/index.js:93
#: build/tab/index.js:105
#: build/accordion-block/index.js:80
#: build/tab/index.js:104
msgid "Type of Write Answer"
msgstr ""
#: build/accordion-block/index.js:106
#: build/tab/index.js:118
#: build/accordion-block/index.js:89
#: build/tab/index.js:113
msgid "Choose the type of answer you wanna show"
msgstr ""
#: build/accordion-block/index.js:108
#: build/accordion-block/index.js:113
#: build/accordion-block/index.js:184
#: build/tab/index.js:120
#: build/tab/index.js:123
#: build/accordion-block/index.js:96
#: build/accordion-block/index.js:101
#: build/accordion-block/index.js:209
msgid "Write Answer"
msgstr ""
#: build/accordion-block/index.js:114
#: build/accordion-block/index.js:102
msgid "Write your answer to show as Write Answer."
msgstr ""
#: build/accordion-block/index.js:205
#: build/tab/index.js:139
#: build/tab/index.js:184
#: build/accordion-block/index.js:233
#: build/tab/index.js:142
#: build/tab/index.js:202
msgid "Upload Audio"
msgstr ""
#: build/accordion-block/index.js:207
#: build/tab/index.js:186
#: build/accordion-block/index.js:242
#: build/tab/index.js:211
msgid "No Audio Uploaded Yet"
msgstr ""
#: build/accordion-block/index.js:228
#: build/tab/index.js:155
#: build/tab/index.js:207
#: build/accordion-block/index.js:271
#: build/tab/index.js:162
#: build/tab/index.js:238
msgid "Upload Video"
msgstr ""
#: build/accordion-block/index.js:230
#: build/tab/index.js:209
#: build/accordion-block/index.js:280
#: build/tab/index.js:247
msgid "No Video Uploaded Yet"
msgstr ""
#: build/accordion-block/index.js:261
#: build/accordion-block/index.js:313
msgid "Accordion Question"
msgstr ""
#: build/accordion-block/index.js:262
#: build/accordion-block/index.js:314
msgid "A accordion question item"
msgstr ""
#: build/accordion-block/index.js:518
#: build/tabs/index.js:3692
#: build/accordion-block/index.js:561
#: build/tabs/index.js:3304
msgid "Show Searchbar for filtering questions."
msgstr ""
#: build/accordion-block/index.js:522
#: build/accordion-block/index.js:527
#: build/tabs/index.js:3696
#: build/tabs/index.js:3701
#: build/accordion-block/index.js:570
#: build/accordion-block/index.js:575
#: build/tabs/index.js:3313
#: build/tabs/index.js:3318
msgid "Search Question"
msgstr ""
#: build/accordion-block/index.js:528
#: build/tabs/index.js:3702
#: build/accordion-block/index.js:579
#: build/tabs/index.js:3322
msgid "Change search filed placeholder"
msgstr ""
#: build/accordion-block/index.js:530
#: build/tabs/index.js:3704
#: build/accordion-block/index.js:586
#: build/tabs/index.js:3329
msgid "Dark Mode"
msgstr ""
#: build/tab/index.js:64
#: build/tab/index.js:59
msgid "%1$s (%2$d of %3$d)"
msgstr ""
#: build/tab/index.js:163
#: build/tab/index.js:180
msgid "Add Answer"
msgstr ""
#: build/accordion-block/block.json
msgctxt "block title"
msgid "Ask Accordion"
msgstr ""
#: build/accordion-block/block.json
msgctxt "block description"
msgid "Accordion for Ask FAQ"
msgstr ""
#: build/accordion-block/block.json
#: build/tab/block.json
#: build/tabs/block.json
msgctxt "block keyword"
msgid "ask"
msgstr ""
#: build/accordion-block/block.json
#: build/tab/block.json
#: build/tabs/block.json
msgctxt "block keyword"
msgid "faq"
msgstr ""
#: build/accordion-block/block.json
msgctxt "block keyword"
msgid "accordion"
msgstr ""
#: build/tab/block.json
msgctxt "block title"
msgid "Tab"
msgstr ""
#: build/tab/block.json
#: build/tabs/block.json
msgctxt "block description"
msgid "Tab for ask faq"
msgstr ""
#: build/tab/block.json
#: build/tabs/block.json
msgctxt "block keyword"
msgid "tab"
msgstr ""
#: build/tabs/block.json
msgctxt "block title"
msgid "Ask Tab"
msgstr ""
#: build/tabs/block.json
msgctxt "block style label"
msgid "Default"
msgstr ""
#: build/tabs/block.json
msgctxt "block style label"
msgid "Other"
msgstr ""

View File

@@ -1,52 +0,0 @@
== Changelog ==
= 1.0.0 =
Initial Release: December 21, 2022
* Initial Release
= 1.0.1 =
Bugs Fixed and Some Other Changings: December 21, 2022
* Bugs Fixed
* Table and Menu Registered
= 1.0.2 =
Bugs Fixed and New shortcodes added: December 22, 2022
* Bugs Fixed and New shortcodes added
* Copy Symbol & Copyrights Text short code added.
* Show Last Modified Date using shortcode added
= 1.0.3 =
Bugs Fixed and New Shortcodes Added:December 23, 2022
* Bugs Fixed
* New shortcodes added
* Welcome Page Added
= 1.0.4 =
Bugs Fixed and New Shortcodes Added: January 05, 2023
* Bugs Fixed
* New shortcodes added
* SEO Plugins Support Added SEOPress/RankMath/YoastSEO
= 1.0.5 =
Bugs Fixed and New Shortcodes Added: January 08, 2023
* Bugs Fixed
* Age Calculator Added use shortcode to calculate The total age
* Custom period function added (combined) A duration of years, months, or days can be referred to using this short code.
= 1.0.6 =
Bugs Fixed and Shortcodes Changed: January 27, 2023
* Bugs Fixed
* All Shortcode changed long to short for handle characters issues
= 1.0.7 =
Bugs Fixed and New Shortcodes Added: March 16, 2023
* Bugs Fixed
* New Shortcode for Copy Pasting Added

View File

@@ -1,6 +0,0 @@
= 1.2.0 =
New: support for WooCommerce 8.0.1
New: support for WordPress 6.3
= 1.1.0 =
New: support for WooCommerce 7.9

View File

@@ -1,31 +0,0 @@
# Copyright (C) 2023 GrandPlugins
# This file is distributed under the same license as the AVIF Support [GrandPlugins] plugin.
msgid ""
msgstr ""
"Project-Id-Version: AVIF Support [GrandPlugins] 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gpls-avif-support\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: 2023-02-09T14:51:55+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: gpls-avif-support\n"
#. Plugin Name of the plugin
msgid "AVIF Support [GrandPlugins]"
msgstr ""
#. Description of the plugin
msgid "AVIF support plugins aims to support avif images in WordPress by overcome wp issues and limits regarding uploading, displaying and generating avif images."
msgstr ""
#. Author of the plugin
msgid "GrandPlugins"
msgstr ""
#. Author URI of the plugin
msgid "https://grandplugins.com"
msgstr ""

View File

@@ -1,528 +0,0 @@
# Copyright (C) 2023 Get Innovation Dev.
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Back in stock notifications for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-stock-notify-"
"me\n"
"POT-Creation-Date: 2023-02-22T06:43:48+00:00\n"
"PO-Revision-Date: 2023-02-22 08:57+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.2.2\n"
"X-Domain: back-in-stock-notifications-for-woocommerce\n"
#. Plugin Name of the plugin
msgid "Back in stock notifications for WooCommerce"
msgstr "Back in stock notifications for WooCommerce"
#. Plugin URI of the plugin
msgid ""
"https://www.getinnovation.dev/wordpres-plugins/woocommerce-stock-notify-me/"
msgstr ""
#. Description of the plugin
msgid "Woocommerce subscribe system for out of stock products."
msgstr "Woocommerce subscribe system for out of stock products."
#. Author of the plugin
msgid "Get Innovation Dev."
msgstr ""
#. Author URI of the plugin
msgid "https://getinnovation.dev/"
msgstr ""
#: admin/class-wsnm-admin-settings.php:48
msgid "Notify Me - Settings"
msgstr "Notify Me - Settings"
#: admin/class-wsnm-admin-settings.php:49 admin/class-wsnm-admin.php:453
msgid "Settings"
msgstr "Settings"
#: admin/class-wsnm-admin-settings.php:80
msgid "General"
msgstr "General"
#: admin/class-wsnm-admin-settings.php:85
msgid "Subscription Form"
msgstr "Subscription Form"
#: admin/class-wsnm-admin-settings.php:90
msgid "Email Templates"
msgstr "Email Templates"
#: admin/class-wsnm-admin-settings.php:95
msgid "Documentation"
msgstr "Documentation"
#: admin/class-wsnm-admin-settings.php:252
msgid "Settings successfully updated"
msgstr "Settings successfully updated"
#: admin/class-wsnm-admin.php:35
msgid "Woo Stock Notify Me requires Woocommerce to be installed."
msgstr "Woo Stock Notify Me requires Woocommerce to be installed."
#: admin/class-wsnm-admin.php:74 admin/class-wsnm-admin.php:75
#: admin/class-wsnm-admin.php:85 admin/parts/settings-page-template.php:3
msgid "Notify Me"
msgstr "Notify Me"
#: admin/class-wsnm-admin.php:76
msgctxt "Notify Me - Plugin"
msgid "Add New"
msgstr "Add New"
#: admin/class-wsnm-admin.php:77
msgid "Add New Subscription"
msgstr "Add New Subscription"
#: admin/class-wsnm-admin.php:78
msgid "Edit Subscription"
msgstr "Edit Subscription"
#: admin/class-wsnm-admin.php:79
msgid "New Subscription"
msgstr "New Subscription"
#: admin/class-wsnm-admin.php:80
msgid "All Subscription"
msgstr "All Subscription"
#: admin/class-wsnm-admin.php:81
msgid "View Subscription"
msgstr "View Subscription"
#: admin/class-wsnm-admin.php:82
msgid "Search Subscription"
msgstr "Search Subscription"
#: admin/class-wsnm-admin.php:83
msgid "No Subscription found"
msgstr "No Subscription found"
#: admin/class-wsnm-admin.php:84
msgid "No Subscription found in the Trash"
msgstr "No Subscription found in the Trash"
#: admin/class-wsnm-admin.php:119
msgid "Details"
msgstr "Details"
#: admin/class-wsnm-admin.php:152 admin/class-wsnm-admin.php:308
msgid "Name"
msgstr "Name"
#: admin/class-wsnm-admin.php:157 admin/class-wsnm-admin.php:311
msgid "Status"
msgstr "Status"
#: admin/class-wsnm-admin.php:158 admin/class-wsnm-admin.php:310
msgid "Product"
msgstr "Product"
#: admin/class-wsnm-admin.php:194 includes/class-wsnm-helper.php:305
msgid "Unavailable"
msgstr "Unavailable"
#: admin/class-wsnm-admin.php:213
msgid "Select Product"
msgstr "Select Product"
#: admin/class-wsnm-admin.php:289
msgid "Download CSV"
msgstr "Download CSV"
#: admin/class-wsnm-admin.php:305
msgid "Email"
msgstr "Email"
#: admin/class-wsnm-admin.php:330 admin/class-wsnm-admin.php:331
msgid "Not Available"
msgstr "Not Available"
#: admin/class-wsnm-admin.php:348
msgid "Out of stock - Notifications"
msgstr "Out of stock - Notifications"
#: admin/class-wsnm-admin.php:373
msgid "Pause Notifications."
msgstr "Pause Notifications."
#: admin/class-wsnm-admin.php:374
msgid ""
"By default the notifications are sent for all products, check this to pause "
"the notifications for this particular product."
msgstr ""
"By default the notifications are sent for all products, check this to pause "
"the notifications for this particular product."
#: admin/class-wsnm-admin.php:387
msgid "Manually Mode"
msgstr "Manually Mode"
#: admin/class-wsnm-admin.php:388
msgid "Check the box and save the product to send notifications."
msgstr "Check the box and save the product to send notifications."
#: admin/class-wsnm-admin.php:453
msgid "Plugin Settings"
msgstr "Plugin Settings"
#: admin/parts/emails/default-confirmation-email.php:1
#: admin/parts/emails/default-notification-email.php:1
msgid "Hello [wsnm-first-name] [wsnm-last-name]"
msgstr "Hello [wsnm-first-name] [wsnm-last-name]"
#: admin/parts/emails/default-confirmation-email.php:1
msgid "Thank you for subscribing to <strong>[wsnm-product-title]</strong>"
msgstr "Thank you for subscribing to <strong>[wsnm-product-title]</strong>"
#: admin/parts/emails/default-confirmation-email.php:1
msgid ""
"You will receive an email notification once the product will be back in stock"
msgstr ""
"You will receive an email notification once the product will be back in stock"
#: admin/parts/emails/default-confirmation-email.php:2
#: admin/parts/emails/default-notification-email.php:2
msgid "Thank you!"
msgstr "Thank you!"
#: admin/parts/emails/default-confirmation-email.php:3
#: admin/parts/emails/default-notification-email.php:3
msgid "Your friends at"
msgstr "Your friends at"
#: admin/parts/emails/default-notification-email.php:1
msgid ""
"Your subscribed product <strong>[wsnm-product-title]</strong> is now back in "
"stock for [wsnm-product-price]! The stock - [wsnm-product-quantity], and "
"this email is not a guarantee you'll get one, so hurry to be one of the "
"lucky shoppers who do"
msgstr ""
"Your subscribed product <strong>[wsnm-product-title]</strong> is now back in "
"stock for [wsnm-product-price]! The stock - [wsnm-product-quantity], and "
"this email is not a guarantee you'll get one, so hurry to be one of the "
"lucky shoppers who do"
#: admin/parts/emails/default-notification-email.php:1
msgid ""
"Add the product <strong>[wsnm-product-title]</strong> directly to your cart: "
"[wsnm-product-url]"
msgstr ""
"Add the product <strong>[wsnm-product-title]</strong> directly to your cart: "
"[wsnm-product-url]"
#: admin/parts/page-email-templates.php:4
msgid "Confirmation Email"
msgstr "Confirmation Email"
#: admin/parts/page-email-templates.php:7
msgid ""
"The confirmation email is sent when someone subscribes to get notifications."
msgstr ""
"The confirmation email is sent when someone subscribes to get notifications."
#: admin/parts/page-email-templates.php:12
msgid "Enable the confirmation email"
msgstr "Enable the confirmation email"
#: admin/parts/page-email-templates.php:15
msgid "Uncheck to disable the default confirmation email."
msgstr "Uncheck to disable the default confirmation email."
#: admin/parts/page-email-templates.php:22
msgid "Confirmation Email - Subject"
msgstr "Confirmation Email - Subject"
#: admin/parts/page-email-templates.php:28
msgid "Confirmation Email - Content"
msgstr "Confirmation Email - Content"
#: admin/parts/page-email-templates.php:57
msgid "Back in Stock Notification Email"
msgstr "Back in Stock Notification Email"
#: admin/parts/page-email-templates.php:60
msgid ""
"The back in stock notification email is sent when the product is back in "
"stock again."
msgstr ""
"The back in stock notification email is sent when the product is back in "
"stock again."
#: admin/parts/page-email-templates.php:67
msgid "Back in Stock Notification Email - Subject"
msgstr "Back in Stock Notification Email - Subject"
#: admin/parts/page-email-templates.php:73
msgid "Back in Stock Notification Email - Content"
msgstr "Back in Stock Notification Email - Content"
#: admin/parts/page-email-templates.php:101
msgid "Reset both emails - The confirmation and Back in stock notification"
msgstr "Reset both emails - The confirmation and Back in stock notification"
#: admin/parts/page-email-templates.php:105
#: admin/parts/page-general-settings.php:46
#: admin/parts/page-subscription-form.php:99
msgid "Save"
msgstr "Save"
#: admin/parts/page-general-settings.php:4
msgid "Mode"
msgstr "Mode"
#: admin/parts/page-general-settings.php:8
msgid "Manually"
msgstr "Manually"
#: admin/parts/page-general-settings.php:11
msgid ""
"Is the default mode. The notifications are triggered manually by "
"administrator directly from the product page."
msgstr ""
"Is the default mode. The notifications are triggered manually by "
"administrator directly from the product page."
#: admin/parts/page-general-settings.php:16
msgid "Automatically"
msgstr "Automatically"
#: admin/parts/page-general-settings.php:19
msgid ""
"When this mode is enabled, the notifications are triggered automatically by "
"the stock status. The notifications are sent when the product is back in "
"stock."
msgstr ""
"When this mode is enabled, the notifications are triggered automatically by "
"the stock status. The notifications are sent when the product is back in "
"stock."
#: admin/parts/page-general-settings.php:27
msgid "Button Style"
msgstr "Button Style"
#: admin/parts/page-general-settings.php:30
msgid "Change the default button style"
msgstr "Change the default button style"
#: admin/parts/page-general-settings.php:36
msgid "Background color"
msgstr "Background color"
#: admin/parts/page-general-settings.php:40
msgid "Text color"
msgstr "Text color"
#: admin/parts/page-subscription-form.php:4
msgid "Form Settings"
msgstr "Form Settings"
#: admin/parts/page-subscription-form.php:7
msgid "Manage the subscription form"
msgstr "Manage the subscription form"
#: admin/parts/page-subscription-form.php:13
msgid "Enable First and Last Name"
msgstr "Enable First and Last Name"
#: admin/parts/page-subscription-form.php:16
msgid "Enable reCAPTCHA v2"
msgstr "Enable reCAPTCHA v2"
#: admin/parts/page-subscription-form.php:19
msgid ""
"Avoid any spam by enabling reCAPTCHA v2. Click <a href=\"https://www.google."
"com/recaptcha\" target=\"_blank\">here</a> to generate the Site & Secret keys"
msgstr ""
"Avoid any spam by enabling reCAPTCHA v2. Click <a href=\"https://www.google."
"com/recaptcha\" target=\"_blank\">here</a> to generate the Site & Secret keys"
#: admin/parts/page-subscription-form.php:27
msgid "Recaptcha Site KEY"
msgstr "Recaptcha Site KEY"
#: admin/parts/page-subscription-form.php:33
msgid "Recaptcha Secret KEY"
msgstr "Recaptcha Secret KEY"
#: admin/parts/page-subscription-form.php:41
msgid "Other Settings"
msgstr "Other Settings"
#: admin/parts/page-subscription-form.php:46
msgid "Before Form Text"
msgstr "Before Form Text"
#: admin/parts/page-subscription-form.php:75
msgid "After Form Text"
msgstr "After Form Text"
#. translators: %s: amount of time
#: includes/class-action-scheduler.php:26
msgid "%s year"
msgid_plural "%s years"
msgstr[0] "%s year"
msgstr[1] "%s years"
#. translators: %s: amount of time
#: includes/class-action-scheduler.php:31
msgid "%s month"
msgid_plural "%s months"
msgstr[0] "%s month"
msgstr[1] "%s months"
#. translators: %s: amount of time
#: includes/class-action-scheduler.php:36
msgid "%s week"
msgid_plural "%s weeks"
msgstr[0] "%s week"
msgstr[1] "%s weeks"
#. translators: %s: amount of time
#: includes/class-action-scheduler.php:41
msgid "%s day"
msgid_plural "%s days"
msgstr[0] "%s day"
msgstr[1] "%s days"
#. translators: %s: amount of time
#: includes/class-action-scheduler.php:46
msgid "%s hour"
msgid_plural "%s hours"
msgstr[0] "%s hour"
msgstr[1] "%s hours"
#. translators: %s: amount of time
#: includes/class-action-scheduler.php:51
msgid "%s minute"
msgid_plural "%s minutes"
msgstr[0] "%s minute"
msgstr[1] "%s minutes"
#. translators: %s: amount of time
#: includes/class-action-scheduler.php:56
msgid "%s second"
msgid_plural "%s seconds"
msgstr[0] "%s second"
msgstr[1] "%s seconds"
#: includes/class-action-scheduler.php:164
msgid " (%s ago)"
msgstr " (%s ago)"
#: includes/class-action-scheduler.php:166
msgid " (%s)"
msgstr " (%s)"
#: includes/class-action-scheduler.php:184
msgid "Now!"
msgstr "Now!"
#: includes/class-wsnm-helper.php:205
msgid "You subscribed to [wsnm-product-title]"
msgstr "You subscribed to [wsnm-product-title]"
#: includes/class-wsnm-helper.php:217
msgid "The product [wsnm-product-title] is back in stock"
msgstr "The product [wsnm-product-title] is back in stock"
#: includes/class-wsnm-helper.php:314
msgid "Sent"
msgstr "Sent"
#: includes/class-wsnm-helper.php:319 includes/class-wsnm-helper.php:323
msgid "Paused"
msgstr "Paused"
#: includes/class-wsnm-helper.php:328
msgid "Waiting"
msgstr "Waiting"
#: public/class-wsnm-public.php:75 public/class-wsnm-public.php:77
msgid "Something went wrong."
msgstr "Something went wrong."
#: public/class-wsnm-public.php:86
msgid "Please specify the first and last name"
msgstr "Please specify the first and last name"
#: public/class-wsnm-public.php:92
msgid "Please specify a valid email."
msgstr "Please specify a valid email."
#: public/class-wsnm-public.php:109
msgid "Please configure reCaptcha"
msgstr "Please configure reCaptcha"
#: public/class-wsnm-public.php:114
msgid "Please select a valid product."
msgstr "Please select a valid product."
#: public/class-wsnm-public.php:116
msgid "The product doesn't exist."
msgstr "The product doesn't exist."
#: public/class-wsnm-public.php:118
msgid "Only Simple and Variable products"
msgstr "Only Simple and Variable products"
#: public/class-wsnm-public.php:127
msgid "Please select a valid variation."
msgstr "Please select a valid variation."
#: public/class-wsnm-public.php:159
msgid "Notification set! Thank you!"
msgstr "Notification set! Thank you!"
#: public/class-wsnm-public.php:161
msgid "Something went wrong"
msgstr "Something went wrong"
#: public/class-wsnm-public.php:163
msgid "You are already subscribed for this product"
msgstr "You are already subscribed for this product"
#: public/class-wsnm-public.php:188 public/parts/form-modal.php:4
#: public/parts/form-modal.php:33
msgid "Subscribe"
msgstr "Subscribe"
#: public/parts/after-form-content.php:1
msgid ""
"By entering my details and by clicking the \"Subscribe\" button, I agree "
"that my contact details may be used to inform me about the availability of "
"my selected or similar products and other occasional marketing materials."
msgstr ""
"By entering my details and by clicking the \"Subscribe\" button, I agree "
"that my contact details may be used to inform me about the availability of "
"my selected or similar products and other occasional marketing materials."
#: public/parts/form-modal.php:16
msgid "First Name ..."
msgstr "First Name ..."
#: public/parts/form-modal.php:19
msgid "Last Name ..."
msgstr "Last Name ..."
#: public/parts/form-modal.php:24
msgid "Enter Your Email ..."
msgstr "Enter Your Email ..."
#: public/parts/pre-form-content.php:1
msgid ""
"Enter your details and we will let you know as soon as this product will be "
"available again"
msgstr ""
"Enter your details and we will let you know as soon as this product will be "
"available again"

View File

@@ -1,184 +0,0 @@
# Copyright (C) 2023 Bayarcash
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: Bayarcash GiveWP 3.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bayarcash-givewp\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: 2023-06-22T02:18:53+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: bayarcash-givewp\n"
#. Plugin Name of the plugin
msgid "Bayarcash GiveWP"
msgstr ""
#. Plugin URI of the plugin
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewp&utm_campaign=plugin-uri&utm_medium=wp-dash"
msgstr ""
#. Description of the plugin
msgid "Accept online donation from Malaysia internet online banking via Bayarcash. Currently, Bayarcash support FPX and Direct Debit payment channels."
msgstr ""
#. Author of the plugin
#: includes/src/Givewp.php:43
#: includes/src/Givewp.php:44
#: includes/src/Givewp.php:51
#: includes/src/Givewp.php:168
msgid "Bayarcash"
msgstr ""
#. Author URI of the plugin
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewps&utm_campaign=author-uri&utm_medium=wp-dash"
msgstr ""
#: includes/admin/donor-profile.php:14
msgid "Phone Numbers"
msgstr ""
#: includes/admin/donor-profile.php:19
msgid "This donor does not have any phone number saved."
msgstr ""
#: includes/admin/form-fields.php:120
#: includes/admin/form-fields.php:125
#: includes/src/Givewp.php:277
msgid "Phone Number"
msgstr ""
#: includes/admin/form-fields.php:122
msgid "We require a phone number for verification."
msgstr ""
#: includes/admin/form-fields.php:131
msgid "Identification Type"
msgstr ""
#: includes/admin/form-fields.php:133
msgid "We require a identification type for verification."
msgstr ""
#: includes/admin/form-fields.php:152
#: includes/admin/form-fields.php:157
#: includes/src/Givewp.php:278
msgid "Identification Number"
msgstr ""
#: includes/admin/form-fields.php:154
msgid "We require a identification number for verification."
msgstr ""
#: includes/src/Bayarcash.php:123
msgid "Settings"
msgstr ""
#: includes/src/Bayarcash.php:157
msgid "Bayarcash require GiveWP plugin. Please install and activate."
msgstr ""
#: includes/src/Givewp.php:70
msgid "General Settings"
msgstr ""
#: includes/src/Givewp.php:75
#: includes/src/Givewp.php:134
msgid "Personal Access Token (PAT)"
msgstr ""
#: includes/src/Givewp.php:76
#: includes/src/Givewp.php:135
msgid "Enter your Personal Access Token (PAT). You can retrieve it from Bayarcash console at Dashboard > Profile."
msgstr ""
#: includes/src/Givewp.php:81
#: includes/src/Givewp.php:140
msgid "Portal Key"
msgstr ""
#: includes/src/Givewp.php:82
#: includes/src/Givewp.php:141
msgid "Enter your portal key. You can retrieve it from Bayarcash console at Dashboard > Portals."
msgstr ""
#: includes/src/Givewp.php:91
msgid "Reference Settings"
msgstr ""
#: includes/src/Givewp.php:96
#: includes/src/Givewp.php:146
msgid "Billing Fields"
msgstr ""
#: includes/src/Givewp.php:97
#: includes/src/Givewp.php:147
msgid "This option will enable the billing details section at the donation form."
msgstr ""
#: includes/src/Givewp.php:102
#: includes/src/Givewp.php:152
msgid "Enabled"
msgstr ""
#: includes/src/Givewp.php:103
#: includes/src/Givewp.php:153
msgid "Disabled"
msgstr ""
#: includes/src/Givewp.php:123
msgid "Do you want to customize the donation instructions for this form?"
msgstr ""
#: includes/src/Givewp.php:128
msgid "Global Option"
msgstr ""
#: includes/src/Givewp.php:129
msgid "Customize"
msgstr ""
#: includes/src/Givewp.php:130
msgid "Disable"
msgstr ""
#: includes/src/Givewp.php:205
msgid "Make your donation quickly and securely with Bayarcash"
msgstr ""
#: includes/src/Givewp.php:206
msgid "How it works:"
msgstr ""
#: includes/src/Givewp.php:207
msgid "You will be redirected to Bayarcash to pay using your online banking. You will then be brought back to this page to view your receipt."
msgstr ""
#: includes/src/Givewp.php:316
msgid "Please tick the create account button if you want to create a subscription donation"
msgstr ""
#: includes/src/Givewp.php:397
msgid "Please enter phone number."
msgstr ""
#: includes/src/Givewp.php:401
msgid "Please enter identification number."
msgstr ""
#: includes/src/Givewp.php:405
msgid "Please select identification type."
msgstr ""
#. translators: %s: payment data
#: includes/src/Givewp.php:455
msgid "Payment creation failed before sending donor to Bayarcash. Payment data: %s"
msgstr ""
#: includes/src/Givewp.php:456
msgid "Payment Error"
msgstr ""

View File

@@ -1,13 +0,0 @@
{
"name": "custom-image-block-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.23.1"
}
}

View File

@@ -1,194 +0,0 @@
# Copyright (C) 2023 thingsym
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Better Website Performance 1.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-performance\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: 2023-05-31T08:54:57+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: better-website-performance\n"
#. Plugin Name of the plugin
msgid "Better Website Performance"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/thingsym/better-website-performance"
msgstr ""
#. Description of the plugin
msgid "The Better Website Performance plugin adds advanced features to improve website performance."
msgstr ""
#. Author of the plugin
msgid "thingsym"
msgstr ""
#. Author URI of the plugin
msgid "https://www.thingslabo.com/"
msgstr ""
#: inc/class-better-website-performance.php:107
msgid "Become a sponsor"
msgstr ""
#: inc/customizer/class-panel.php:39
msgid "Performance Settings (Better Website Performance)"
msgstr ""
#: inc/emoji/class-emoji.php:169
msgid "Emoji resource"
msgstr ""
#: inc/emoji/class-emoji.php:188
msgid "Enable Emoji resource"
msgstr ""
#: inc/image-srcset/class-image-srcset.php:162
msgid "Image Srcset"
msgstr ""
#: inc/image-srcset/class-image-srcset.php:181
msgid "Enable Image Srcset"
msgstr ""
#: inc/javascript/class-async.php:200
msgid "JavaScript"
msgstr ""
#: inc/javascript/class-async.php:219
msgid "Async type"
msgstr ""
#: inc/javascript/class-async.php:243
#: inc/style/class-concat.php:329
msgid "Exclude"
msgstr ""
#: inc/javascript/class-async.php:246
#: inc/style/class-concat.php:332
msgid "Enter handle names to exclude."
msgstr ""
#: inc/jquery/class-jquery.php:228
msgid "jQuery"
msgstr ""
#: inc/jquery/class-jquery.php:247
msgid "Enable jQuery"
msgstr ""
#: inc/jquery/class-jquery.php:266
msgid "Enable jQuery Migrate"
msgstr ""
#: inc/jquery/class-jquery.php:285
msgid "Place jQuery in the footer"
msgstr ""
#: inc/preload/class-preload.php:193
#: inc/preload/class-preload.php:214
msgid "Preload"
msgstr ""
#: inc/preload/class-preload.php:220
#: inc/resource-hints/class-resource-hints.php:240
#: inc/resource-hints/class-resource-hints.php:265
#: inc/resource-hints/class-resource-hints.php:290
#: inc/resource-hints/class-resource-hints.php:315
msgid "See <a href=\"%1$s\" target=\"_blank\">Specification</a>."
msgstr ""
#: inc/resource-hints/class-resource-hints.php:213
msgid "Resource Hints"
msgstr ""
#: inc/resource-hints/class-resource-hints.php:234
msgid "DNS-Prefetch"
msgstr ""
#: inc/resource-hints/class-resource-hints.php:259
msgid "Preconnect"
msgstr ""
#: inc/resource-hints/class-resource-hints.php:284
msgid "Prefetch"
msgstr ""
#: inc/resource-hints/class-resource-hints.php:309
msgid "Prerender"
msgstr ""
#: inc/style/class-concat.php:267
msgid "Style Sheet"
msgstr ""
#: inc/style/class-concat.php:286
msgid "Loading type"
msgstr ""
#: inc/style/class-concat.php:290
msgid "Default: Load external css file"
msgstr ""
#: inc/style/class-concat.php:291
msgid "Inline each stylesheet"
msgstr ""
#: inc/style/class-concat.php:292
msgid "Inline concated Stylesheets"
msgstr ""
#: inc/style/class-concat.php:310
msgid "Enable minify"
msgstr ""
#: inc/wp-custom-css/class-wp-custom-css.php:180
msgid "Place custom CSS in the footer"
msgstr ""
#: inc/wp-head/class-wp-head.php:195
msgid "HTML Head"
msgstr ""
#: inc/wp-head/class-wp-head.php:214
msgid "Display the links to the general feeds"
msgstr ""
#: inc/wp-head/class-wp-head.php:233
msgid "Display the links to the extra feeds (such as category feeds)"
msgstr ""
#: inc/wp-head/class-wp-head.php:252
msgid "Display Really Simple Discovery (EditURI)"
msgstr ""
#: inc/wp-head/class-wp-head.php:271
msgid "Display Windows Live Writer (wlwmanifest)"
msgstr ""
#: inc/wp-head/class-wp-head.php:290
msgid "Display WordPress generator"
msgstr ""
#: inc/wp-head/class-wp-head.php:309
msgid "Display canonical"
msgstr ""
#: inc/wp-head/class-wp-head.php:328
msgid "Display shortlink"
msgstr ""
#: inc/wp-head/class-wp-head.php:347
msgid "Display the REST API link"
msgstr ""
#: inc/wp-head/class-wp-head.php:366
msgid "Display oEmbed discovery links"
msgstr ""

View File

@@ -1,47 +0,0 @@
# Beyond Identity Changelog
## [1.0.0] - 2023-04-03
- Initial release of the Beyond Identity Passwordless Authentication plugin.
- Adds the ability to generate a Beyond Identity Universal Passkey that is sent to the users email address or directly created when the user is logged in.
- Adds a customizable shortcodes to generate passkeys.
- Adds a Beyond Identity settings page to configure the Beyond Identity account.
- Adds a Beyond Identity users filter to the admin users page to display users who have a Beyond Identity ID.
- Integrates with the WordPress login flow and provides a fallback option for users who prefer to log in with a password.
- Uses OpenID Connect (OIDC) protocol for authentication, based on the OpenID Connect Generic Client v3.9.1 licensed under GPLv2 or later.
- Licensed under the GNU General Public License (GPL) version 2 or later, consistent with OpenID Connect Generic Client plugin.
- Removes the following OpenID Connect Generic Client files as they are not necessary for the Beyond Identity Passwordless Authentication plugin and helps to reduce the plugin size and complexity:
- CHANGELOG.md
- readme.txt
- docker-compose.yml
- docker-compose.wp-env.yml
- openid-connect-generic-settings-page.php
- Removes the OpenID Connect Generic Client settings page as all values can be configured from the Beyond Identity settings page.
- Removes the OpenID Connect Generic Client button from the WordPress login page.
- Removes the OpenID Connect Generic Client upgrade.
- Removes the OpenID Connect Generic Client cron jobs.
- Removes the OpenID Connect Generic Client Activation and Deactivation hooks.
- Removes the OpenID_Connect_Generic_Option_Logger.
- Modifies the OpenID Connect Generic Client shortcode default button_text from "Login with OpenID Connect" to "Log in Passwordless" to reflect the passwordless authentication option.
- Modifies the OpenID Connect Generic Client shortcode to allow customized redirect_to.
- Modifies OpenID_Connect_Generic class to remove the OpenID_Connect_Generic_Settings_Page class.
- Modifies OpenID_Connect_Generic bootstrap() to use Beyond Identity values set in the Beyond Identity settings page for the OpenID_Connect_Generic_Option_Settings class initalization.
- Modifies OpenID_Connect_Generic login button shortcode with button color, text color and border color attributes.
- Modified OpenID_Connect_Generic_Client_Wrapper to not redirect back to origin page. This may cause an infinite loop when generating passkeys. Instead, the forms dictate the redirect_to parameter.
- Modified OpenID_Connect_Generic_Client_Wrapper to use the user's email for display_name and nickname.
- Modified OpenID_Connect_Generic_Option_Settings set values as the default_settings.
- Rename OpenID_Connect_Generic login button shortcode to beyond_identity_login_button
- Rename OpenID_Connect_Generic authentication URL shortcode to beyond_identity_auth_url.
- Prefix all OpenID_Connect with BYNDID to address Wordpress plugin review.
- Rename filters with beyond-identity-passwordless
- Rename text domain to beyond-identity-passwordless

View File

@@ -1,55 +0,0 @@
# Copyright (C) 2023 Bit Apps
# This file is distributed under the gpl2+.
msgid ""
msgstr ""
"Project-Id-Version: Bit Social (Beta) 0.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bit-social\n"
"Last-Translator: developer@bitapps.pro\n"
"Language-Team: support@bitapps.pro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-10-11T04:58:50+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: bit-social\n"
#. Plugin Name of the plugin
msgid "Bit Social (Beta)"
msgstr ""
#. Plugin URI of the plugin
msgid "https://bitapps.pro/bit-social"
msgstr ""
#. Description of the plugin
msgid "Integrates with other platform"
msgstr ""
#. Author of the plugin
msgid "Bit Apps"
msgstr ""
#. Author URI of the plugin
msgid "https://bitapps.pro"
msgstr ""
#: backend/app/Config.php:172
msgid "Settings"
msgstr ""
#: backend/app/Config.php:176
msgid "Help"
msgstr ""
#: backend/app/Config.php:209
msgid "Bit Social - Your social of automation's"
msgstr ""
#: backend/app/Config.php:210
msgid "Bit Social"
msgstr ""
#: backend/app/HTTP/Services/Schedule/CustomSchdule.php:65
msgid "Every "
msgstr ""

View File

@@ -1,232 +0,0 @@
# Copyright (C) 2023 bPlugins LLC
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: Mailchimp block 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-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: 2023-07-08T12:12:42+02:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: mail-collections\n"
#. Plugin Name of the plugin
msgid "Mailchimp block"
msgstr ""
#. Description of the plugin
msgid "Connect your MailChimp with your WordPress."
msgstr ""
#. Author of the plugin
msgid "bPlugins LLC"
msgstr ""
#. Author URI of the plugin
msgid "http://bplugins.com"
msgstr ""
#: dist/editor.js:1
msgid "Default"
msgstr ""
#: dist/editor.js:1
msgid "Form 1"
msgstr ""
#: dist/editor.js:1
msgid "Form 2"
msgstr ""
#: dist/editor.js:1
msgid "Form 3"
msgstr ""
#: dist/editor.js:1
msgid "General"
msgstr ""
#: dist/editor.js:1
msgid "Style"
msgstr ""
#: dist/editor.js:1
msgid "Help"
msgstr ""
#: dist/editor.js:1
msgid "Read Documentation"
msgstr ""
#: dist/editor.js:1
msgid "Would you please rate us?"
msgstr ""
#: dist/editor.js:1
msgid "We are new and we need your help to grow!🙏"
msgstr ""
#: dist/editor.js:1
msgid "Config"
msgstr ""
#: dist/editor.js:1
msgid "Configure Api Key"
msgstr ""
#: dist/editor.js:1
msgid "Audience Id"
msgstr ""
#: dist/editor.js:1
msgid "Elements"
msgstr ""
#: dist/editor.js:1
msgid "Icon"
msgstr ""
#: dist/editor.js:1
msgid "Label"
msgstr ""
#: dist/editor.js:1
msgid "Description"
msgstr ""
#: dist/editor.js:1
msgid "First Name"
msgstr ""
#: dist/editor.js:1
msgid "Last Name"
msgstr ""
#: dist/editor.js:1
msgid "Button"
msgstr ""
#: dist/editor.js:1
msgid "Message"
msgstr ""
#: dist/editor.js:1
msgid "Success"
msgstr ""
#: dist/editor.js:1
msgid "Error"
msgstr ""
#: dist/editor.js:1
msgid "Placeholder Text"
msgstr ""
#: dist/editor.js:1
msgid "Email"
msgstr ""
#: dist/editor.js:1
msgid "Forms"
msgstr ""
#: dist/editor.js:1
msgid "Theme"
msgstr ""
#: dist/editor.js:1
msgid "Form"
msgstr ""
#: dist/editor.js:1
msgid "Background:"
msgstr ""
#: dist/editor.js:1
msgid "Padding"
msgstr ""
#: dist/editor.js:1
msgid "Border"
msgstr ""
#: dist/editor.js:1
msgid "Background"
msgstr ""
#: dist/editor.js:1
msgid "Color"
msgstr ""
#: dist/editor.js:1
msgid "Typography"
msgstr ""
#: dist/editor.js:1
msgid "Input"
msgstr ""
#: dist/editor.js:1
msgid "Colors"
msgstr ""
#: dist/editor.js:1
msgid "Margin"
msgstr ""
#: dist/editor.js:1
msgid "Hovers Colors"
msgstr ""
#: dist/editor.js:1
msgid "Title Here"
msgstr ""
#: dist/editor.js:1
msgid "Description Here"
msgstr ""
#: dist/editor.js:1
msgid "Please Insert Your Api Key"
msgstr ""
#: dist/editor.js:1
msgid "MailChimp"
msgstr ""
#: dist/editor.js:1
msgid "MailChimp API key"
msgstr ""
#: dist/editor.js:1
msgid "Save Information"
msgstr ""
#: block.json
msgctxt "block title"
msgid "Mailchimp-block"
msgstr ""
#: block.json
msgctxt "block description"
msgid "Description of MailChimp Block."
msgstr ""
#: block.json
msgctxt "block keyword"
msgid "mail"
msgstr ""
#: block.json
msgctxt "block keyword"
msgid "mailchimp"
msgstr ""
#: block.json
msgctxt "block keyword"
msgid "key3"
msgstr ""

View File

@@ -1,19 +0,0 @@
== Changelog ==
= 0.0.4 =
* Improved error handling, including more visible error messages
* Add labels to custom block settings, fix 'found in post' for entities
= 0.0.3 =
* Add support for ChatGPT blocks
* Notification when using unsupported database version
* Fix rich text rendering
* Icon for block category
* Better error reporting
= 0.0.2 =
* Improve rich text editing handling, handling older blocks in editor and API endpoints.
= 0.0.1 =
* First release of the plugin.

View File

@@ -1,635 +0,0 @@
# Copyright (C) 2022 BlogSqode WP Post Design
# This file is distributed under the same license as the BlogSqode WP Post Design package.
msgid ""
msgstr ""
"Project-Id-Version: BlogSqode WP Post Design 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blogsqode-posts\n"
"POT-Creation-Date: 2022-04-18 05:36:05+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"
#: admin/class-blogsqode-admin-settings.php:71
msgid "Your settings have been saved."
msgstr ""
#: admin/class-blogsqode-admin-settings.php:518
msgid "The settings of this image size have been disabled because its values are being overwritten by a filter."
msgstr ""
#: admin/class-blogsqode-admin-settings.php:530
msgid "Hard crop?"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:561
msgid "Select a page&hellip;"
msgstr ""
#. translators: 1: page name 2: page ID
#: admin/class-blogsqode-admin-settings.php:575
msgid "%1$s (ID: %2$s)"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:592
msgid "Search for a page&hellip;"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:611
#: admin/class-blogsqode-admin-settings.php:943
msgid "Day(s)"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:612
#: admin/class-blogsqode-admin-settings.php:944
msgid "Week(s)"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:613
#: admin/class-blogsqode-admin-settings.php:945
msgid "Month(s)"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:614
#: admin/class-blogsqode-admin-settings.php:946
msgid "Year(s)"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:712
msgid "Browse"
msgstr ""
#: admin/class-blogsqode-admin-settings.php:713
msgid "Remove Upload"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:25
msgid "General"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:43
msgid "Blogs Page"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:45
msgid "* kindly use this <span>[blogsqode_blog_list]</span> shortcode inside any page, post, section."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:51
#: admin/settings/class-blogsqode-setting-singleblog.php:51
msgid "Enable Dark Mode"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:52
#: admin/settings/class-blogsqode-setting-singleblog.php:52
msgid "Enable dark mode for changing color"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:56
#: admin/settings/class-blogsqode-setting-singleblog.php:56
msgid "Theme color will be change after enable it."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:60
msgid "Layout"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:61
msgid "This option lets you set layout for blogs."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:69
#: admin/settings/class-blogsqode-setting-pagination.php:59
#: admin/settings/class-blogsqode-setting-pagination.php:112
msgid "Layout 1"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:70
#: admin/settings/class-blogsqode-setting-pagination.php:60
#: admin/settings/class-blogsqode-setting-pagination.php:113
msgid "Layout 2"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:71
#: admin/settings/class-blogsqode-setting-pagination.php:61
#: admin/settings/class-blogsqode-setting-pagination.php:114
msgid "Layout 3"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:72
#: admin/settings/class-blogsqode-setting-pagination.php:62
#: admin/settings/class-blogsqode-setting-pagination.php:115
msgid "Layout 4"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:73
#: admin/settings/class-blogsqode-setting-pagination.php:63
#: admin/settings/class-blogsqode-setting-pagination.php:116
msgid "Layout 5"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:78
msgid "This Preview is for layout."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:85
msgid "Post Grid"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:86
msgid "Select Column for Blogs."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:94
msgid "2 Posts per Column"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:95
msgid "3 Posts per Column"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:96
msgid "4 Posts per Column"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:97
msgid "5 Posts per Column"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:102
msgid "Post Per Page"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:103
msgid "This sets the number of blogs oer page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:115
msgid "Pagination Option"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:116
msgid "Select a way of Paginate blog Page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:124
msgid "Pagination With Numeric"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:125
msgid "Lode More Button with Ajax"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:136
#: admin/settings/class-blogsqode-setting-singleblog.php:80
msgid "Enable/Disable options"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:143
msgid "Short Description"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:144
msgid "Enable If you want to display your blog short description in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:154
#: admin/settings/class-blogsqode-setting-singleblog.php:87
msgid "Author Thumbnail"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:155
msgid "Enable If you want to display your blog author thumbnail in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:163
#: admin/settings/class-blogsqode-setting-singleblog.php:96
msgid "Author Name"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:164
msgid "Enable If you want to display your blog author name in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:172
#: admin/settings/class-blogsqode-setting-singleblog.php:105
msgid "Blog Date"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:173
msgid "Enable If you want to display your blog date in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:181
#: admin/settings/class-blogsqode-setting-singleblog.php:114
msgid "Comments Count"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:182
msgid "Enable If you want to display your blog comment count in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:190
msgid "Read Time"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:191
msgid "Enable If you want to display your blog read time in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:199
#: admin/settings/class-blogsqode-setting-singleblog.php:122
msgid "Category"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:200
msgid "Enable If you want to display your blog category in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:208
#: admin/settings/class-blogsqode-setting-pagination.php:96
msgid "Read More Button"
msgstr ""
#: admin/settings/class-blogsqode-setting-general.php:209
msgid "Enable If you want to display your blog read more button in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:25
msgid "Pagination"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:43
msgid "Pagination Page"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:45
#: admin/settings/class-blogsqode-setting-singleblog.php:45
msgid "Here you can set Pagination designs."
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:50
msgid "Pagination Design"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:51
msgid "This option lets you set layout for Pagination."
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:64
#: admin/settings/class-blogsqode-setting-pagination.php:117
msgid "Layout 6"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:65
msgid "Layout 7"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:66
msgid "Layout 8"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:71
msgid "Pagination Design Preview"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:72
msgid "This option is selected for layout of Pagination."
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:103
msgid "Read More Button Design"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:104
msgid "This option lets you set layout for Read More Button."
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:121
msgid "Read More Button Design Preview"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:122
msgid "This option is selected for layout of Read More Button."
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:129
msgid "Read More Fill"
msgstr ""
#: admin/settings/class-blogsqode-setting-pagination.php:130
#: admin/settings/class-blogsqode-setting-pagination.php:131
msgid "Enable If you want to fill read more button in your blog list page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:25
msgid "Single Blog"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:43
msgid "Single Blog Page"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:60
msgid "Page Layout"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:61
msgid "This option lets you set layout for Single Blog Page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:69
msgid "With Sidebar"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:70
msgid "Without Sidebar"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:88
#: admin/settings/class-blogsqode-setting-singleblog.php:89
msgid "Enable If you want to display your blog author thumbnail in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:97
msgid "Enable If you want to display your blog author name in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:106
msgid "Enable If you want to display your blog date in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:115
msgid "Enable If you want to display your blog comment count in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:123
msgid "Enable If you want to display your blog category in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:130
msgid "Tags"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:131
msgid "Enable If you want to display your blog tags in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:138
msgid "Pagination of Post"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:139
msgid "Enable If you want to display your pagination in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:146
msgid "Post Comment"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:147
msgid "Enable If you want to display your post comment in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:154
msgid "Social Share Buttons"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:155
msgid "Enable If you want to display social share button in your single blog page."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:169
msgid "Social Icon Images"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:177
msgid "Facebook"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:179
msgid "Select <strong> Facebook Icon </strong>."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:186
msgid "Twitter"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:188
msgid "Select <strong> Twitter Icon </strong>."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:195
msgid "Instagram"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:197
msgid "Select <strong> Instagram Icon </strong>."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:204
msgid "Linkedin"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:206
msgid "Select <strong> Linkedin Icon </strong>."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:213
msgid "Pinterest"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:215
msgid "Select <strong> Pinterest Icon </strong>."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:222
msgid "Whatsapp"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:224
msgid "Select <strong> Whatsapp Icon </strong>."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:231
msgid "Snapchat"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:233
msgid "Select <strong> Snapchat Icon </strong>."
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:240
msgid "Wechat"
msgstr ""
#: admin/settings/class-blogsqode-setting-singleblog.php:242
msgid "Select <strong> Wechat Icon </strong>."
msgstr ""
#: admin/settings/elementor/blogsqode-blockquote-widget.php:18
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:32
msgid "Blogsqode Blockquote"
msgstr ""
#: admin/settings/elementor/blogsqode-blockquote-widget.php:26
#: admin/settings/elementor/blogsqode-blockquote-widget.php:33
msgid "Quote"
msgstr ""
#: admin/settings/elementor/blogsqode-blockquote-widget.php:35
msgid "Your Quote"
msgstr ""
#: admin/settings/elementor/blogsqode-shortcode-widget.php:18
msgid "BLOGSQODE Shortcode"
msgstr ""
#: admin/settings/elementor/blogsqode-shortcode-widget.php:26
msgid "Content"
msgstr ""
#: admin/settings/elementor/blogsqode-shortcode-widget.php:33
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:40
msgid "Shortcode"
msgstr ""
#: admin/settings/elementor/blogsqode-shortcode-widget.php:35
msgid "[blogsqode_blog_list]"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:35
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:35
msgid "Blogsqode Blog"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:42
msgid "Blockquote Content"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:44
msgid "<p>I am test text block. Click edit button to change this text.</p>"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:45
msgid "Enter content."
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:51
msgid "Author Quote"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:54
msgid "Add Author Quote."
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:61
msgid "Blockquote Cite"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:63
msgid "Add Citiation Link and Source Name"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:68
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:48
msgid "Element ID"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:71
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:51
msgid "Enter element ID (Note: make sure it is unique and valid)."
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:72
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:81
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:52
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:61
msgid "Extra"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:77
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:57
msgid "Extra class name"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:80
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:60
msgid "Style particular content element differently - add a class name and refer to it in custom CSS."
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:32
msgid "Blogsqode Blog Shortcode"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:42
msgid "blogsqode_blog_list"
msgstr ""
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:43
msgid "Add shortcode"
msgstr ""
#: admin/views/blogsqode-admin-page.php:43
msgid "Save changes"
msgstr ""
#: public/class-blogsqode-blog-templates.php:40
msgid "min read"
msgstr ""
#: public/class-blogsqode-blog-templates.php:79
#: public/class-blogsqode-blog-templates.php:132
#: public/class-blogsqode-blog-templates.php:175
#: public/class-blogsqode-blog-templates.php:216
msgid " Comment"
msgstr ""
#: public/class-blogsqode-blog-templates.php:256
#: public/class-blogsqode-blog-templates.php:258
#: public/class-blogsqode-blog-templates.php:260
#: public/class-blogsqode-blog-templates.php:262
#: public/class-blogsqode-blog-templates.php:264
#: public/class-blogsqode-blog-templates.php:266
msgid "Read More"
msgstr ""
#: public/single/single-blogsqode.php:24
msgid "Next post"
msgstr ""
#: public/single/single-blogsqode.php:25
msgid "Previous post"
msgstr ""
#: public/single/template-parts/content-single.php:50
msgid "Page"
msgstr ""
#. translators: %: Page number.
#: public/single/template-parts/content-single.php:53
msgid "Page %"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "BlogSqode WP Post Design"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "http://www.upsqode.com"
msgstr ""
#. Description of the plugin/theme
msgid "Provides a Various Layouts for blogs."
msgstr ""
#. Author of the plugin/theme
msgid "Upsqode"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://www.upsqode.com/"
msgstr ""

View File

@@ -1,14 +0,0 @@
# Change Log
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## Version 0.1.1
### Changed
- Code cleanup
- Ensured compatibility with PHPMailer
## Version 0.1.0
First commit.

View File

@@ -1,479 +0,0 @@
# Copyright (C) 2023 Ben Roberts
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Boomerang - Feature Request Platform 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/boomerang\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: 2023-11-17T12:28:20+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: boomerang\n"
#. Plugin Name of the plugin
msgid "Boomerang - Feature Request Platform"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.bouncingsprout.com/"
msgstr ""
#. Description of the plugin
msgid "A slick, modern feature request platform for WordPress."
msgstr ""
#. Author of the plugin
msgid "Ben Roberts"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:140
msgid "Disable Google Fonts"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:141
msgid "We use Google Icons inside Boomerang. These icons are locally hosted and are therefore GDPR compliant. However, if you would like to disable these, click the button."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:149
msgid "Disable Boomerang's Own Styles"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:150
msgid "Boomerang has a set of default styles. To disable these, and use your theme's native styles, click this."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:174
msgid "Board Settings"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:198
msgid "Label For Title Input"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:204
msgid "Label For Content Input"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:210
msgid "Label For Tags Input"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:216
msgid "Label For Submit Button"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:231
msgid "Admin Email"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:232
msgid "Enter an email address to send notifications when Boomerangs are created."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:240
msgid "Send New Boomerang Notification"
msgstr ""
#. translators: %s: ID of the current board
#: admin/inc/classes/class-boomerang-admin.php:262
msgid "Shortcode: [boomerang board=\"%s\"]"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:271
msgid "Require Approval"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:272
msgid "If turned on, new Boomerangs will be given the status of pending, and will need to be approved before publication."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:280
msgid "Enable Comments"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:281
msgid "This allows users to comment on individual Boomerangs."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:286
msgid "Enable Tags"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:287
msgid "Tags are a convenient way of grouping Boomerangs."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:292
msgid "Enable Statuses"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:293
msgid "Statuses may be helpful for organising Boomerang priority."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:298
msgid "Enable Votes"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:299
msgid "This allows users to vote on individual Boomerangs."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:304
msgid "Enable Downvoting"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:305
msgid "Downvoting allows users to register disapproval for a Boomerang rather than simply a neutral opinion."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:313
msgid "Show Board Title"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:314
msgid "Show the board title in the archive view. If using as a shortcode, you may create your own heading instead."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:323
msgid "Enable Featured Image"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:324
msgid "This allows users to upload a picture that helps represent a Boomerang."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:332
msgid "Show Published Date"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:333
msgid "This displays the date the Boomerang was created."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:338
msgid "Show Friendly Dates"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:339
msgid "Shows the publication date in a friendly way."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:344
msgid "Show Author"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:345
msgid "This displays the details of the user who created the Boomerangs."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:350
msgid "Show Author's Avatar"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:351
msgid "Shows the profile picture of the author next to the author's username."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:360
msgid "Show Filters"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:361
msgid "Show a set of filters on a board directory to assist users to find Boomerangs."
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:371
msgid "Container Width"
msgstr ""
#: admin/inc/classes/class-boomerang-admin.php:372
msgid "Use this to match the width of Boomerang content with that of your theme."
msgstr ""
#: inc/boomerang-templates.php:147
msgid "Sort by"
msgstr ""
#: inc/boomerang-templates.php:153
msgid "Latest"
msgstr ""
#: inc/boomerang-templates.php:154
msgid "Popular"
msgstr ""
#: inc/boomerang-templates.php:155
msgid "Created by me"
msgstr ""
#: inc/boomerang-templates.php:156
msgid "Voted on by me"
msgstr ""
#: inc/boomerang-templates.php:162
#: inc/boomerang-templates.php:542
#: inc/classes/class-boomerang-cpt-helper.php:37
msgid "Status"
msgstr ""
#: inc/boomerang-templates.php:182
msgid "tags"
msgstr ""
#: inc/boomerang-templates.php:203
msgid "Search"
msgstr ""
#. translators: time
#: inc/boomerang-templates.php:361
#: inc/boomerang-templates.php:639
msgid "%s ago"
msgstr ""
#. translators: %s: Publish date.
#: inc/boomerang-templates.php:367
#: inc/boomerang-templates.php:645
msgid "Published %s"
msgstr ""
#. translators: %s: Publish date.
#: inc/boomerang-templates.php:412
msgid "Comments: %d"
msgstr ""
#: inc/boomerang-templates.php:512
msgid "Select Status"
msgstr ""
#: inc/boomerang-templates.php:529
msgid "Admin"
msgstr ""
#: inc/boomerang-templates.php:553
msgid "Submit"
msgstr ""
#: inc/boomerang-templates.php:561
msgid "To change statuses, enable them under Board Settings"
msgstr ""
#: inc/boomerang-templates.php:568
msgid "Actions"
msgstr ""
#: inc/boomerang-templates.php:573
#: inc/classes/class-boomerang-cpt-helper.php:129
#: inc/classes/class-boomerang-cpt-helper.php:199
msgid "Edit"
msgstr ""
#: inc/boomerang-templates.php:580
msgid "Delete"
msgstr ""
#. translators: Placeholder %s is the plural label of the boomerang 'status' taxonomy.
#. translators: Placeholder %s is the singular label of the boomerang post type.
#. translators: Placeholder %s is the singular label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:40
#: inc/classes/class-boomerang-cpt-helper.php:80
#: inc/classes/class-boomerang-cpt-helper.php:139
#: inc/classes/class-boomerang-cpt-helper.php:209
msgid "Search %s"
msgstr ""
#. translators: Placeholder %s is the plural label of the boomerang 'status' taxonomy.
#. translators: Placeholder %s is the plural label of the boomerang post type.
#. translators: Placeholder %s is the plural label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:42
#: inc/classes/class-boomerang-cpt-helper.php:82
#: inc/classes/class-boomerang-cpt-helper.php:125
#: inc/classes/class-boomerang-cpt-helper.php:195
msgid "All %s"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
#. translators: Placeholder %s is the singular label of the boomerang post type.
#. translators: Placeholder %s is the singular label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:44
#: inc/classes/class-boomerang-cpt-helper.php:84
#: inc/classes/class-boomerang-cpt-helper.php:145
#: inc/classes/class-boomerang-cpt-helper.php:215
msgid "Parent %s"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
#: inc/classes/class-boomerang-cpt-helper.php:46
#: inc/classes/class-boomerang-cpt-helper.php:86
msgid "Parent %s:"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
#. translators: Placeholder %s is the singular label of the boomerang post type.
#. translators: Placeholder %s is the singular label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:48
#: inc/classes/class-boomerang-cpt-helper.php:88
#: inc/classes/class-boomerang-cpt-helper.php:131
#: inc/classes/class-boomerang-cpt-helper.php:201
msgid "Edit %s"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
#: inc/classes/class-boomerang-cpt-helper.php:50
#: inc/classes/class-boomerang-cpt-helper.php:90
msgid "Update %s"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
#: inc/classes/class-boomerang-cpt-helper.php:52
#: inc/classes/class-boomerang-cpt-helper.php:92
msgid "Add New %s"
msgstr ""
#. translators: Name of the Boomerang status menu label.
#: inc/classes/class-boomerang-cpt-helper.php:56
msgid "Status Center"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
#. translators: Placeholder %s is the singular label of the boomerang post type.
#. translators: Placeholder %s is the singular label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:94
#: inc/classes/class-boomerang-cpt-helper.php:133
#: inc/classes/class-boomerang-cpt-helper.php:203
msgid "New %s"
msgstr ""
#: inc/classes/class-boomerang-cpt-helper.php:126
#: inc/classes/class-boomerang-cpt-helper.php:196
msgid "Add New"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang post type.
#. translators: Placeholder %s is the singular label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:128
#: inc/classes/class-boomerang-cpt-helper.php:198
msgid "Add %s"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang post type.
#. translators: Placeholder %s is the singular label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:135
#: inc/classes/class-boomerang-cpt-helper.php:137
#: inc/classes/class-boomerang-cpt-helper.php:205
#: inc/classes/class-boomerang-cpt-helper.php:207
msgid "View %s"
msgstr ""
#. translators: Placeholder %s is the singular label of the boomerang post type.
#. translators: Placeholder %s is the singular label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:141
#: inc/classes/class-boomerang-cpt-helper.php:211
msgid "No %s found"
msgstr ""
#. translators: Placeholder %s is the plural label of the boomerang post type.
#. translators: Placeholder %s is the plural label of the boomerang board post type.
#: inc/classes/class-boomerang-cpt-helper.php:143
#: inc/classes/class-boomerang-cpt-helper.php:213
msgid "No %s found in trash"
msgstr ""
#: inc/classes/class-boomerang-cpt-helper.php:247
msgid "Boomerang Board base"
msgstr ""
#: inc/classes/class-boomerang-cpt-helper.php:255
msgid "Boomerang base"
msgstr ""
#: inc/classes/class-boomerang-frontend.php:86
#: inc/classes/class-boomerang-frontend.php:216
msgid "Saved!"
msgstr ""
#: inc/classes/class-boomerang-frontend.php:127
#: inc/classes/class-boomerang-frontend.php:461
#: inc/classes/class-boomerang-frontend.php:500
#: inc/classes/class-boomerang-frontend.php:576
#: inc/classes/class-boomerang-votes.php:41
msgid "Something went wrong."
msgstr ""
#: inc/classes/class-boomerang-frontend.php:151
msgid "Please enter a title. Titles must be at least three characters long."
msgstr ""
#: inc/classes/class-boomerang-frontend.php:200
msgid "Please upload one of the following filetypes: jpg, jpeg, png."
msgstr ""
#: inc/classes/class-boomerang-frontend.php:218
msgid "We will process your submission shortly. Thank you!"
msgstr ""
#: inc/classes/class-boomerang-frontend.php:292
msgid "You must be logged in to submit. Sorry."
msgstr ""
#: inc/classes/class-boomerang-frontend.php:360
msgid "Drop file here"
msgstr ""
#: inc/classes/class-boomerang-frontend.php:366
msgid "or"
msgstr ""
#: inc/classes/class-boomerang-frontend.php:377
msgid "Choose a file"
msgstr ""
#: inc/classes/class-boomerang-frontend.php:479
msgid "Status Set"
msgstr ""
#. translators: %s: Base for our Boomerang CPT
#: inc/classes/class-boomerang-frontend.php:684
msgid "New %s created"
msgstr ""
#. translators: %1$s: Base for our Boomerang CPT %2$s: Boomerang permalink
#: inc/classes/class-boomerang-frontend.php:689
msgid "A new %1$s has been created. You may review it <a href=\"%2$s\">here</a>."
msgstr ""
#: templates/comments.php:28
msgid "Add comment"
msgstr ""
#: templates/comments.php:40
msgid "Activity"
msgstr ""
#: templates/comments.php:57
msgid "Comment navigation"
msgstr ""
#: templates/comments.php:58
msgid "&larr; Older Comments"
msgstr ""
#: templates/comments.php:59
msgid "Newer Comments &rarr;"
msgstr ""
#: templates/comments.php:64
msgid "Comments are closed."
msgstr ""
#: admin/assets/js/boomerang-block.js:35
msgid "Boomerang"
msgstr ""
#: admin/assets/js/boomerang-block.js:56
msgid "Select a Boomerang Board"
msgstr ""

View File

@@ -1,367 +0,0 @@
# Copyright (C) 2023 bPlugins LLC
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: Business Review 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-review\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: 2023-03-17T20:07:26+01:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: business-review\n"
#. Plugin Name of the plugin
#: custom-post.php:22
#: custom-post.php:23
msgid "Business Review"
msgstr ""
#. Description of the plugin
msgid "Simple and easy way display your Google ,Facebook and yelp business reviews in your Posts and Pages."
msgstr ""
#. Author of the plugin
msgid "bPlugins LLC"
msgstr ""
#. Author URI of the plugin
msgid "http://bplugins.com"
msgstr ""
#: custom-post.php:24
#: custom-post.php:25
msgid "Add New"
msgstr ""
#: custom-post.php:26
msgid "Edit"
msgstr ""
#: custom-post.php:27
msgid "New"
msgstr ""
#: custom-post.php:28
msgid "View"
msgstr ""
#: custom-post.php:29
msgid "Search"
msgstr ""
#: custom-post.php:30
msgid "Sorry, we couldn't find the that you are looking for."
msgstr ""
#: dist/editor.js:20
msgid "Please"
msgstr ""
#: dist/editor.js:20
msgid "Upgrade To PRO"
msgstr ""
#: dist/editor.js:20
msgid " To Unlock Premium Features"
msgstr ""
#: dist/editor.js:20
msgid "Upgrade Now"
msgstr ""
#: dist/editor.js:20
msgid "Slide"
msgstr ""
#: dist/editor.js:20
msgid "Flip"
msgstr ""
#: dist/editor.js:20
msgid "Zoom"
msgstr ""
#: dist/editor.js:20
msgid "Bounce"
msgstr ""
#: dist/editor.js:20
msgid "Top Left"
msgstr ""
#: dist/editor.js:20
msgid "Top Right"
msgstr ""
#: dist/editor.js:20
msgid "Top Center"
msgstr ""
#: dist/editor.js:20
msgid "Bottom Left"
msgstr ""
#: dist/editor.js:20
msgid "Bottom Right"
msgstr ""
#: dist/editor.js:20
msgid "Bottom Center"
msgstr ""
#: dist/editor.js:20
msgid "Google"
msgstr ""
#: dist/editor.js:20
msgid "Facebook"
msgstr ""
#: dist/editor.js:20
msgid "Yelp"
msgstr ""
#: dist/editor.js:20
msgid "Default"
msgstr ""
#: dist/editor.js:20
msgid "Grid 1"
msgstr ""
#: dist/editor.js:20
msgid "Grid 2"
msgstr ""
#: dist/editor.js:20
msgid "Grid 3"
msgstr ""
#: dist/editor.js:20
msgid "Grid 4"
msgstr ""
#: dist/editor.js:20
msgid "Masonry"
msgstr ""
#: dist/editor.js:20
msgid "None"
msgstr ""
#: dist/editor.js:20
msgid "General"
msgstr ""
#: dist/editor.js:20
msgid "Style"
msgstr ""
#: dist/editor.js:20
msgid "Help"
msgstr ""
#: dist/editor.js:20
msgid "Read Documentation"
msgstr ""
#: dist/editor.js:20
msgid "Would you please rate us?"
msgstr ""
#: dist/editor.js:20
msgid "We are new and we need your help to grow!🙏"
msgstr ""
#: dist/editor.js:20
msgid "Review Type"
msgstr ""
#: dist/editor.js:20
msgid "Top Position"
msgstr ""
#: dist/editor.js:20
msgid "Middle"
msgstr ""
#: dist/editor.js:20
msgid "Bottom"
msgstr ""
#: dist/editor.js:20
msgid "Clear Cache"
msgstr ""
#: dist/editor.js:20
msgid "Toast"
msgstr ""
#: dist/editor.js:20
msgid "Position"
msgstr ""
#: dist/editor.js:20
msgid "Duration"
msgstr ""
#: dist/editor.js:20
msgid "Animation"
msgstr ""
#: dist/editor.js:20
msgid "Elements"
msgstr ""
#: dist/editor.js:20
msgid "Image"
msgstr ""
#: dist/editor.js:20
msgid "Name"
msgstr ""
#: dist/editor.js:20
msgid "Time"
msgstr ""
#: dist/editor.js:20
msgid "Ratting"
msgstr ""
#: dist/editor.js:20
msgid "Review Text"
msgstr ""
#: dist/editor.js:20
msgid "Review Text Limit"
msgstr ""
#: dist/editor.js:20
msgid "Layouts"
msgstr ""
#: dist/editor.js:20
msgid "Select Layout"
msgstr ""
#: dist/editor.js:20
msgid "Columns:"
msgstr ""
#: dist/editor.js:20
msgid "Column Gap:"
msgstr ""
#: dist/editor.js:20
msgid "Row Gap:"
msgstr ""
#: dist/editor.js:20
msgid "Wrapper"
msgstr ""
#: dist/editor.js:20
msgid "Background:"
msgstr ""
#: dist/editor.js:20
msgid "Padding"
msgstr ""
#: dist/editor.js:20
msgid "Card"
msgstr ""
#: dist/editor.js:20
msgid "Header background:"
msgstr ""
#: dist/editor.js:20
msgid "Border"
msgstr ""
#: dist/editor.js:20
msgid "Radius:"
msgstr ""
#: dist/editor.js:20
msgid "Shadow:"
msgstr ""
#: dist/editor.js:20
msgid "Hover Shadow:"
msgstr ""
#: dist/editor.js:20
msgid "Quote Icon"
msgstr ""
#: dist/editor.js:20
msgid "Color"
msgstr ""
#: dist/editor.js:20
msgid "Typography"
msgstr ""
#: dist/editor.js:20
msgid "Hover Color"
msgstr ""
#: dist/editor.js:20
msgid "Rating Icon"
msgstr ""
#: dist/editor.js:20
msgid "Posted On"
msgstr ""
#: dist/editor.js:20
msgid "Text Color"
msgstr ""
#: dist/editor.js:20
msgid "Author Color"
msgstr ""
#: dist/editor.js:20
msgid "Show Text"
msgstr ""
#: dist/editor.js:20
msgid "Authorization Or Access Token Required"
msgstr ""
#: dist/editor.js:20
msgid "Configure Api Key"
msgstr ""
#: block.json
msgctxt "block title"
msgid "Business Review"
msgstr ""
#: block.json
msgctxt "block description"
msgid "Simple and easy way display your Google ,Facebook and yelp business reviews in your Posts and Pages."
msgstr ""
#: block.json
msgctxt "block keyword"
msgid "business"
msgstr ""
#: block.json
msgctxt "block keyword"
msgid "review"
msgstr ""
#: block.json
msgctxt "block keyword"
msgid "block"
msgstr ""

View File

@@ -1,152 +0,0 @@
# Copyright (C) 2023 Carmo Product GTIN for WooCommerce
# This file is distributed under the same license as the Carmo Product GTIN for WooCommerce package.
msgid ""
msgstr ""
"Project-Id-Version: Carmo Product GTIN for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/"
"qs_tool_wp_pot_gen_1685090187_0439_962967\n"
"POT-Creation-Date: 2023-05-26 10:54+0100\n"
"PO-Revision-Date: 2023-05-26 10:55+0100\n"
"Last-Translator: João Carmo Pereira <mail@carmo.pt>\n"
"Language-Team: \n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.3.1\n"
#: carmo-product-gtin-for-woocommerce.php:37
#, php-format
msgid ""
"Carmo Woo Product GTIN is active but WooCommerce is not. Please <a "
"href=\"%s\">install and activate WooCommerce by Automattic</a> plugin to use "
"this feature."
msgstr ""
"O Carmo Woo Product GTIN está activo, mas o WooCommerce não está. <a "
"href=\"%s\">Instale e active o plugin WooCommerce by Automattic</a> para "
"utilizar esta funcionalidade."
#: carmo-product-gtin-for-woocommerce.php:53
#: carmo-product-gtin-for-woocommerce.php:76
msgid "Enter gtin (ean/upc) value"
msgstr "Introduzir o gtin (ean/upc)"
#: carmo-product-gtin-for-woocommerce.php:55
#: carmo-product-gtin-for-woocommerce.php:79
msgid ""
"The GTIN, including EAN (European Article Number) and UPC (Universal Product "
"Code), is a standardized numerical identifier and barcode used to uniquely "
"identify products in the global marketplace, facilitating efficient "
"inventory management and supply chain operations."
msgstr ""
"O GTIN, incluindo o EAN (Número Europeu de Artigo) e o UPC (Código Universal "
"de Produto), é um identificador numérico normalizado e um código de barras "
"utilizado para identificar exclusivamente os produtos no mercado global, "
"facilitando a gestão eficiente do inventário e as operações da cadeia de "
"abastecimento."
#: carmo-product-gtin-for-woocommerce.php:152
msgid ""
"WooCommerce must be installed and active to see how many products have GTIN"
msgstr ""
"O WooCommerce tem de estar instalado e activo para ver quantos produtos têm "
"GTIN"
#: carmo-product-gtin-for-woocommerce.php:170
msgid "Statistics"
msgstr "Estatísticas"
#: carmo-product-gtin-for-woocommerce.php:173
#, php-format
msgid "You have used the GTIN field: %s time(s)."
msgstr "O campo GTIN foi utilizado: %s vezes."
#: carmo-product-gtin-for-woocommerce.php:176
msgid "Options"
msgstr "Opções"
#: carmo-product-gtin-for-woocommerce.php:178
msgid ""
"Warning: This will delete all product data associated with Carmo GTIN. Are "
"you sure you want to proceed?"
msgstr ""
"Aviso: Isto irá eliminar todos os dados do produto associados ao Carmo GTIN. "
"Tem a certeza de que pretende continuar?"
#: carmo-product-gtin-for-woocommerce.php:179
msgid ""
"If you delete the data don't forget to flush your object cache if present."
msgstr ""
"Se eliminar os dados, não se esqueça de limpar a sua cache de objectos, se "
"existir."
#: carmo-product-gtin-for-woocommerce.php:180
msgid "Delete all carmo GTIN data"
msgstr "Eliminar todos os dados do carmo GTIN"
#: carmo-product-gtin-for-woocommerce.php:189
msgid "About"
msgstr "Sobre"
#: carmo-product-gtin-for-woocommerce.php:192
#, php-format
msgid ""
"This plugin was created with love. If you have any question or suggestion, "
"please contact using <a href='mailto:%s'>%s</a>."
msgstr ""
"Este plugin foi criado com amor. Se existir alguma dúvida ou sugestão, entre "
"em contato pelo e-email <a href='mailto:%s'>%s</a>."
#: carmo-product-gtin-for-woocommerce.php:220
msgid "All data has been deleted."
msgstr "Todos os dados foram apagados."
#: carmo-product-gtin-for-woocommerce.php:225
msgid "An error occurred while trying to delete data."
msgstr "Ocorreu um erro ao tentar apagar os dados."
#: carmo-product-gtin-for-woocommerce.php:232
msgid ""
"Are you sure you want to delete all product data associated with Carmo GTIN?"
msgstr ""
"Tem a certeza de que pretende eliminar todos os dados do produto associados "
"ao Carmo GTIN?"
#: carmo-product-gtin-for-woocommerce.php:233
msgid "This action cannot be undone."
msgstr "Esta acção é irreversível."
#: carmo-product-gtin-for-woocommerce.php:234
msgid "It will delete all meta_key = 'carmogtin' from wp_postmeta table."
msgstr ""
"Este procedimento irá eliminar todas as entradas meta_key = 'carmogtin' na "
"tabela wp_postmeta."
#: carmo-product-gtin-for-woocommerce.php:235
msgid "Yes I'm sure"
msgstr "Sim, tenho a certeza"
#: carmo-product-gtin-for-woocommerce.php:248
msgid "Settings"
msgstr "Opções"
#~ msgid "Carmo Product GTIN for WooCommerce"
#~ msgstr "Carmo Product GTIN for WooCommerce"
#~ msgid "https://www.carmo.pt/project/woo-product-gtin/"
#~ msgstr "https://www.carmo.pt/project/woo-product-gtin/"
#~ msgid ""
#~ "Adds a numeric GTIN field on Simple Products and Variation if they exist. "
#~ "This field can be used via shortcode on product pages and for product "
#~ "feeds."
#~ msgstr ""
#~ "Adiciona um GTIN numérico em Produtos Simples e em Produtos Variáveis "
#~ "(caso existam). Este campo pode ser utilizado via shortcode nos template "
#~ "de página de produto e para feeds de produto."
#~ msgid "carmo"
#~ msgstr "carmo"
#~ msgid "https://carmo.pt"
#~ msgstr "https://carmo.pt"

View File

@@ -1,2 +0,0 @@
10/02/2023 version 1.0
- Initial Release

View File

@@ -1,56 +0,0 @@
{
"name": "contact-form-7-blocks",
"version": "1.0.1",
"tested_up_to": "5.8",
"description": "",
"cssnano": {
"preset": [
"default",
{
"calc": false
}
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"wp-env": "wp-env",
"nuke": "lerna clean -y",
"lint-css": "wp-scripts lint-style '**/*.scss'",
"lint-css:fix": "npm run lint-css -- --fix",
"check-engines": "lerna run check-engines",
"check-licenses": "lerna run check-licenses",
"format": "lerna run format",
"lint-js": "wp-scripts lint-js",
"lint-js:fix": "npm run lint-js -- --fix",
"lint:md-js": "wp-scripts lint-md-js",
"lint:md-docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start --config ./webpack.config.js",
"build": "wp-scripts build --config ./webpack.config.js",
"setup": "sudo chmod + ./.dev/bin/install-wp-tests.sh && ./.dev/bin/install-wp-tests.sh"
},
"author": "zafarKamal",
"license": "ISC",
"dependencies": {
"@automattic/isolated-block-editor": "^2.21.0",
"@wordpress/components": "^16.0.0",
"@wordpress/dom-ready": "^3.2.1",
"@wordpress/element": "^4.0.0",
"@wordpress/primitives": "^3.0.0",
"prop-types": "^15.7.2",
"webpack-fix-style-only-entries": "^0.6.1"
},
"devDependencies": {
"@wordpress/base-styles": "^4.12.0",
"@wordpress/eslint-plugin": "^9.1.1",
"@wordpress/icons": "^6.1.1",
"@wordpress/prettier-config": "^1.1.1",
"@wordpress/scripts": "19.1.0",
"csso-webpack-plugin": "^2.0.0-beta.3",
"ignore-emit-webpack-plugin": "^2.0.6",
"lerna": "^4.0.0",
"mini-css-extract-plugin": "2.5.3",
"prettier": "npm:wp-prettier@2.2.1-beta-1"
}
}

View File

@@ -1,4 +0,0 @@
*** Chained Product for Woocommerce Change log ***
2023-09-10 - version 1.0.0
* Initial release of the plugin.

View File

@@ -1,139 +0,0 @@
# Clean My WP Pot
# Copyright 2014 ...
# This file is distributed under the GNU General Public License v3 or later.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: "
"Clean My WP v1.0.0\n"
"Report-Msgid-Bugs-To: "
"Webdeclic "
"<contact@webdeclic.com>\n"
"POT-Creation-Date: "
"2023-07-27 16:08+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: "
"Webdeclic "
"<contact@webdeclic.com>\n"
"Language-Team: Webdeclic "
"<contact@webdeclic.com>\n"
"Language: en_US\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 "
"3.3.2\n"
"X-Poedit-"
"SearchPath-0: .\n"
"X-Poedit-"
"SearchPathExcluded-0: "
"public/assets/"
"node_modules\n"
"X-Poedit-"
"SearchPathExcluded-1: "
"public/assets\n"
#: admin/class-tools.php:44
#: admin/class-tools.php:45
msgid "🛠️ Clean My WP"
msgstr ""
#: admin/class-tools.php:109
msgid "Home"
msgstr ""
#: admin/class-tools.php:110
msgid "Disk Explorer"
msgstr ""
#: admin/class-tools.php:111
msgid ""
"Are you sure you want to "
"delete this file ?"
msgstr ""
#: admin/class-tools.php:112
msgid ""
"Are you sure you want to "
"delete this folder and "
"all its content ?"
msgstr ""
#: admin/class-tools.php:131
#: admin/class-tools.php:214
msgid "No path provided"
msgstr ""
#: admin/class-tools.php:142
#: admin/class-tools.php:222
msgid "Invalid path"
msgstr ""
#: admin/class-tools.php:228
msgid "File does not exist"
msgstr ""
#: admin/class-tools.php:241
msgid ""
"Error while deleting file"
msgstr ""
#: admin/class-tools.php:246
msgid "File deleted"
msgstr ""
#: admin/templates/page-tools-parts/home.php:3
msgid ""
"🛠️ Welcome to Clean My WP"
msgstr ""
#: admin/templates/page-tools-parts/home.php:6
msgid ""
"This plugin is a toolbox "
"to help you clean your "
"WordPress installation. "
"Now you can explore your "
"WordPress installation "
"and find out what's "
"taking up space. For "
"this, click on the 'Disk "
"Explorer' tab."
msgstr ""
#: admin/templates/page-tools-parts/home.php:9
msgid ""
"You can contribute to "
"the development of this "
"plugin by making a "
"donation. For this, "
"click on the "
"'Contribute' button in "
"the menu."
msgstr ""
#: admin/templates/page-tools.php:23
msgid "Contribute ☕️"
msgstr ""

View File

@@ -1,59 +0,0 @@
# Copyright (c) 2023 Sébastien Dumont
# This file is distributed under the same license as the CoCart package.
msgid ""
msgstr ""
"Project-Id-Version: CoCart JWT Authentication 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://github.com/co-cart/cocart-jwt-authentication/issues\n"
"POT-Creation-Date: 2023-03-08 03:07:51+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Sébastien Dumont <translate@cocart.xyz>\n"
"Language: en_US\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Country: United States\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: includes/class-cocart-jwt-authentication.php:128
msgid ""
"Authorization header malformed. Please check the authentication token and "
"try again."
msgstr ""
#: includes/class-cocart-jwt-authentication.php:137
msgid "JWT is not configured properly."
msgstr ""
#: includes/class-cocart-jwt-authentication.php:144
msgid "JWT Token is not valid or has expired."
msgstr ""
#: includes/class-cocart-jwt-authentication.php:155
msgid "The token issuer does not match with this server."
msgstr ""
#: includes/class-cocart-jwt-authentication.php:162
msgid "The token does not identify any user."
msgstr ""
#: includes/class-cocart-jwt-authentication.php:171
msgid "The user doesn't exist."
msgstr ""
#: includes/class-cocart-jwt-authentication.php:184
msgid ""
"Authentication is invalid. Please check the authentication information is "
"correct and try again. Authentication also only works on a secure "
"connection."
msgstr ""

View File

@@ -1,20 +0,0 @@
{
"name": "codeless-hotspot-block",
"version": "0.1.0",
"description": "Hotspot block",
"author": "codelessthemes",
"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",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start"
},
"devDependencies": {
"@wordpress/scripts": "^25.4.0"
}
}

View File

@@ -1,954 +0,0 @@
# Copyright (C) 2022 Lasoon - Maintenance Plugin
# This file is distributed under the same license as the Lasoon - Maintenance Plugin package.
msgid ""
msgstr ""
"Project-Id-Version: Lasoon - Maintenance Plugin 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lasoon-"
"maintenance\n"
"POT-Creation-Date: 2022-07-08 10:56+0530\n"
"PO-Revision-Date: 2022-07-08 11:02+0530\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
#: admin/class-lasoon-admin-settings.php:71
msgid "Your settings have been saved."
msgstr ""
#: admin/class-lasoon-admin-settings.php:394
msgid "Select role(s)"
msgstr ""
#: admin/class-lasoon-admin-settings.php:421
msgid "Select Page(s)"
msgstr ""
#: admin/class-lasoon-admin-settings.php:464
msgid "On"
msgstr ""
#: admin/class-lasoon-admin-settings.php:474
msgid "Off"
msgstr ""
#: admin/class-lasoon-admin-settings.php:509
msgid "Browse"
msgstr ""
#: admin/class-lasoon-admin-settings.php:510
msgid "Remove Upload"
msgstr ""
#: admin/lasoon-admin.php:10
msgid "Lasoon"
msgstr ""
#: admin/lasoon-admin.php:77 admin/settings/class-lasoon-setting-site.php:24
msgid "Settings"
msgstr ""
#. translators: plugin settings url
#: admin/lasoon-admin.php:169
msgid "live now"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:25
#: admin/settings/class-lasoon-setting-about.php:43
#: admin/settings/class-lasoon-setting-about.php:64
msgid "About Us"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:45
msgid "Here you can set About Us designs."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:50
msgid "About Us Enable"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:51
msgid "Enable enable for display about us"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:54
#: admin/settings/class-lasoon-setting-about.php:95
#: admin/settings/class-lasoon-setting-about.php:162
#: admin/settings/class-lasoon-setting-general.php:84
#: admin/settings/class-lasoon-setting-general.php:116
msgid "Show"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:55
#: admin/settings/class-lasoon-setting-about.php:96
#: admin/settings/class-lasoon-setting-about.php:163
#: admin/settings/class-lasoon-setting-general.php:85
#: admin/settings/class-lasoon-setting-general.php:117
msgid "Hide"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:57
msgid "About Section will be shown after enable it."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:61
msgid "About Title"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:62
msgid "Set heading for about us."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:69
msgid "About Description"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:70
msgid "Set description for about us."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:72
#: admin/settings/class-lasoon-setting-about.php:113
msgid ""
"Lacus interdum orci, varius posuere rhoncus amet. Ultrices arcu, et duis in "
"purus."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:84
#: admin/settings/class-lasoon-setting-about.php:105
#: admin/settings/class-lasoon-setting-about.php:139
msgid "Get In Touch"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:86
msgid ""
"This section is specially for Read More button layout in Blog List page."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:91
msgid "Get in Touch Enable"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:92
msgid "Enable get in touch for display about us"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:98
msgid "Get in Touch will be shown after enable it."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:102
msgid "Get In Touch Title"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:103
msgid "Set get in touch for about us."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:110
msgid "Get In Touch Description"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:111
msgid "Set description for get in touch."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:120
msgid "Contact Number"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:121
msgid "Set contact number for about us."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:123
msgid "1234657890"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:128
msgid "Email Address"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:129
msgid "Set email for about us."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:131
msgid "abc@gmail.com"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:136 public/coming-soon.php:99
msgid "Address"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:137
msgid "Set address for about us."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:152 public/coming-soon.php:111
#: public/coming-soon.php:313
msgid "Contact Us"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:154
msgid "This section is specially for Contact us section."
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:158
msgid "Contact Us Enable"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:159
msgid "Enable Contact Us for display about us"
msgstr ""
#: admin/settings/class-lasoon-setting-about.php:165
msgid "Contact Us will be shown after enable it."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:25
#: admin/settings/class-lasoon-setting-general.php:43
msgid "General"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:51
msgid "Sidebar"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:52
msgid "Enable Sidebar for display about us"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:57
msgid "About Us will be shown after enable it."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:63
msgid "Logo"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:65
msgid "Select <strong> Main Logo </strong>."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:71
msgid "Heading Title"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:72
msgid "Set heading for your coming soon page."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:74
msgid "We're Coming Soon"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:80
msgid "Heading Subtitle Enable"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:83
#: admin/settings/class-lasoon-setting-general.php:115
msgid "Unable"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:92
msgid "Heading Subtitle"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:93
msgid "Set heading subtitle for your coming soon page."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:95
msgid ""
"Our website is under construction. We are working very hard to give you the "
"best experience with this one."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:102
msgid "Footer Copyright"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:103
msgid "Set footer copyright for your coming soon page."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:105
msgid "Copyright 2022 © The_Krishna . All Right Reserved"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:112
msgid "Countdown Enable"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:124
msgid "Launch Date"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:125
msgid "Set launch date for your coming soon page."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:138
msgid "Social Icon Urls"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:140
msgid "This section is specially for Change Social links."
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:146
msgid "Facebook"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:153
msgid "Twitter"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:160
msgid "Instagram"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:167
msgid "Linkedin"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:174
msgid "Pinterest"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:181
msgid "Whatsapp"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:188
msgid "Snapchat"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:195
msgid "Wechat"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:202
msgid "Youtube"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:209
msgid "Skype"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:216
msgid "Behence"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:223
msgid "Dribble"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:230
msgid "Github"
msgstr ""
#: admin/settings/class-lasoon-setting-general.php:237
msgid "Google+"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:25
#: admin/settings/class-lasoon-setting-layout.php:50
msgid "Layout"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:43
msgid "Main Layout"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:45
msgid "Here you can set Coming Soon Page designs."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:51
msgid "This option lets you set layout for blogs."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:59
msgid "Layout 1"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:60
msgid "Layout 2"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:61
msgid "Layout 3"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:62
msgid "Layout 4"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:63
msgid "Layout 5"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:69
#: admin/settings/class-lasoon-setting-layout.php:244
msgid "This Preview is for layout."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:77
msgid "Background Type"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:78
msgid "Select type of background"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:80
#: admin/settings/class-lasoon-setting-layout.php:119
msgid "Disable"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:81
msgid "Image"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:82
msgid "Video"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:84
#: admin/settings/class-lasoon-setting-layout.php:124
msgid "Background will be change after change it."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:90
msgid "Slider 1 Image"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:92
#: admin/settings/class-lasoon-setting-layout.php:101
#: admin/settings/class-lasoon-setting-layout.php:110
msgid "Select <strong> Slider Image </strong> for Background."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:99
msgid "Slider 2 Image"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:108
msgid "Slider 3 Image"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:116
msgid "Video Option"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:117
msgid "Select type of video background"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:120
msgid "Upload"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:121
msgid "Embed"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:130
msgid "Background Video"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:132
msgid "Select <strong> Video </strong> for Background."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:140
msgid "Youtube/Vimeo Iframe"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:150
msgid "Animation"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:152
msgid "Here you can set Animation designs."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:156
msgid "Background Animation"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:157
msgid "This option lets you set animation for Background."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:159
msgid "particles"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:165
msgid "Fire Ball"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:166
msgid "Snow Rain"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:167
msgid "Magical Particles"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:168
msgid "Lighting Ball"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:169
msgid "Particles"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:170
msgid "Ripple"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:171
msgid "Particle Waves"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:176
msgid "Heading Animation"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:177
msgid "This option lets you set animation for Heading Title."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:179
msgid "animate_1"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:185
msgid "Line Up"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:186
msgid "Text Flip"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:187
msgid "Typing Text"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:188
msgid "Top Bottom"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:189
msgid "Bounce"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:190
msgid "Blink"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:191
msgid "Jello"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:192
msgid "Shining Text"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:193
msgid "Text Shake"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:199
msgid "Counter Shape"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:200
msgid "This option lets you set shapes for Counter."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:202
msgid "dash_circle"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:208
msgid "Dash Circle"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:209
msgid "Dash Diamond"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:210
msgid "Dash Parallelogram"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:211
msgid "Glass Circle"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:212
#: admin/settings/class-lasoon-setting-layout.php:214
msgid "Glass Square"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:213
msgid "Glass Diamond"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:215
msgid "Glass Trapezoid"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:216
msgid "Glass Parallelogram"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:217
msgid "Glass Pentagone"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:218
msgid "Glass Hexagonal"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:219
msgid "Glass Heptagon"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:220
msgid "Glass Octagon"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:221
msgid "Glass Decagon"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:222
msgid "Glass Bevel"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:223
msgid "Glass Rabbet"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:224
msgid "Glass Right Point"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:225
msgid "Diamond Inline"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:226
msgid "Square Note"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:227
msgid "Circle Note"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:228
msgid "Square Corner Note"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:229
msgid "Fill Trapezoid"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:230
msgid "Fill Parallelogram"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:231
msgid "fill Pentagone"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:232
msgid "Fill Hexagonal"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:233
msgid "Fill Heptagon"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:234
msgid "Fill Octagon"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:235
msgid "Fill Decagon"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:236
msgid "Fill Bevel"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:237
msgid "Fill Rabbet"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:238
msgid "Fill Right Point"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:239
msgid "line Parallelogram"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:258
msgid "Email Template"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:260
msgid "This email template is for Sending alert for Live Mode to Subscribers."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:268
msgid "Email Background Image"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:270
msgid "Select <strong> Background Image </strong> for Email."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:277
msgid "Email Heading Title"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:278
msgid "Set heading title for your email template."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:280
msgid "Visit Our New Website"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:286
msgid "Email Heading Subtitle"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:287
msgid "Set heading subtitle for your email template."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:289
msgid "See better than ever how lasoon can help you..."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:295
msgid "Email Button Text"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:296
msgid "Set Button Text for your email template."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:298
msgid "Visit Now"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:304
msgid "Email Subject"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:305
msgid "Set Subject for your email reminder."
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:307
msgid "Our site is Launched"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:313
#: admin/settings/class-lasoon-setting-layout.php:317
msgid "Send Reminder"
msgstr ""
#: admin/settings/class-lasoon-setting-layout.php:314
msgid "Here you can send Reminder to Subscription Users When Site is Live."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:42
msgid "Site Settings"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:44
msgid "Here you can set Site Settings."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:49
#: public/class-lasoon-public.php:70
msgid "Maintenance Mode"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:50
msgid "Enable Maintenance Mode"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:53
msgid "Activate"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:54
msgid "Deactivate"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:56
msgid "Activate and Deactiavte Maintenance Mode."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:61
msgid "Exclude Backend Role"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:62
msgid "This option lets you set exclude backend roles."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:72
msgid "Exclude Frontend Role"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:73
msgid "This option lets you set exclude frontend roles."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:82
msgid "Exclude Pages"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:83
msgid "This option lets you set exclude pages."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:97
msgid "SEO Settings"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:99
msgid "Here you can set SEO Settings."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:104
msgid "Title"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:105
msgid "Set title for your coming soon page."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:107
msgid "Lasoon Maintenance"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:113
msgid "Meta Robot"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:114
msgid "This option lets you set Meta Robot."
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:122
msgid "Index, Follow"
msgstr ""
#: admin/settings/class-lasoon-setting-site.php:123
msgid "Noindex, Nofollow"
msgstr ""
#: admin/views/lasoon-admin-page.php:43
msgid "Save changes"
msgstr ""
#: public/class-lasoon-public.php:81
msgctxt "<meta> keywords default"
msgid "Maintenance Mode"
msgstr ""
#: public/coming-soon.php:79
msgid "phone"
msgstr ""
#: public/coming-soon.php:89
msgid "email"
msgstr ""
#: public/coming-soon.php:117
msgid "send message"
msgstr ""
#: public/coming-soon.php:132
msgid "this is social icons."
msgstr ""
#: public/coming-soon.php:153
msgid "we're coming soon"
msgstr ""
#: public/coming-soon.php:169
msgid "days"
msgstr ""
#: public/coming-soon.php:175
msgid "hours"
msgstr ""
#: public/coming-soon.php:181
msgid "minutes"
msgstr ""
#: public/coming-soon.php:187
msgid "seconds"
msgstr ""
#: public/coming-soon.php:203
msgid "submit"
msgstr ""
#: public/coming-soon.php:225
msgid "this is a social icons."
msgstr ""
#: public/coming-soon.php:301
msgid " Contact Us Form"
msgstr ""
#: public/coming-soon.php:314
msgid "close"
msgstr ""
#: public/coming-soon.php:320
msgid "Got it !"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Lasoon - Maintenance Plugin"
msgstr ""
#. Plugin URI of the plugin/theme
msgid ""
"https://codecanyon.net/item/blogsqode-blog-design-for-wordpress/37513771"
msgstr ""
#. Description of the plugin/theme
msgid "Provides a Various Layouts for Maintenance."
msgstr ""
#. Author of the plugin/theme
msgid "The_Krishna"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://themeforest.net/user/the_krishna"
msgstr ""

View File

@@ -1,4 +0,0 @@
*** Conditional Logic for WooCommerce Product Add-Ons ***
2022-08-12 - version 1.0.0
* Initial Release

View File

@@ -1,5 +0,0 @@
= 1.0.1 =
- Fix discord error 10004:Unknown Guild connect to bot.
= 1.0.0 =
- Release of Connect Eduma Theme to Discord WordPress plugin.

View File

@@ -1,117 +0,0 @@
# Copyright (C) 2023 Tectalic
# This file is distributed under the same license as the CopyCraft plugin.
msgid ""
msgstr ""
"Project-Id-Version: CopyCraft 0.2.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/copycraft\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: 2023-01-24T03:55:40+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: copycraft\n"
#. Plugin Name of the plugin
#: includes/Modal/Screen.php:40
#: includes/Modal/Screen.php:41
#: includes/Settings/Register.php:40
#: includes/Settings/Screen.php:66
msgid "CopyCraft"
msgstr ""
#. Plugin URI of the plugin
msgid "https://copycraft.ai"
msgstr ""
#. Description of the plugin
msgid "AI-powered compelling product descriptions for your WooCommerce products using OpenAI GPT-3."
msgstr ""
#. Author of the plugin
msgid "Tectalic"
msgstr ""
#. Author URI of the plugin
msgid "https://tectalic.com/"
msgstr ""
#: includes/Modal/OpenAi_Generator.php:57
msgid "Please enter your OpenAI API key in the CopyCraft settings and try again."
msgstr ""
#: includes/Modal/OpenAi_Generator.php:90
msgid "This product contains content that does not comply with OpenAI's content policy. Please edit the product description manually."
msgstr ""
#: includes/Modal/OpenAi_Generator.php:135
msgid "This generated description contains content that does not comply with OpenAI's content policy. Please edit the product description manually."
msgstr ""
#. Translators: %s The error message returned by the OpenAI API.
#: includes/Modal/OpenAi_Generator.php:145
msgid "OpenAI API Error: %s"
msgstr ""
#: includes/Modal/OpenAi_Generator.php:147
msgid "An unexpected error occurred. Please try again."
msgstr ""
#: includes/Modal/Screen.php:77
msgid "Generating description, please wait ..."
msgstr ""
#: includes/Modal/Screen.php:119
msgid "Access denied"
msgstr ""
#: includes/Modal/Screen.php:128
msgid "Please save your product and try again."
msgstr ""
#: includes/Modal/Screen.php:133
msgid "Please enter a product name and try again."
msgstr ""
#: includes/Modal/Screen.php:140
msgid "Replace the existing description with this new one."
msgstr ""
#: includes/Modal/Screen.php:140
msgid "Replace"
msgstr ""
#: includes/Modal/Screen.php:141
msgid "Append this new description to the existing description."
msgstr ""
#: includes/Modal/Screen.php:141
msgid "Insert"
msgstr ""
#: includes/Modal/Screen.php:142
msgid "Generate a new description."
msgstr ""
#: includes/Modal/Screen.php:142
msgid "Try again"
msgstr ""
#: includes/Modal/Screen.php:143
msgid "Return to the Edit Produt screen."
msgstr ""
#: includes/Modal/Screen.php:143
msgid "Discard"
msgstr ""
#: includes/Settings/Register.php:39
msgid "CopyCraft Settings"
msgstr ""
#. Translators: %1$s is the opening <a> tag, %2$s is the closing </a> tag.
#: includes/Settings/Screen.php:38
msgid "Connect your %1$sOpenAI%2$s account to get started. Your OpenAI API Key can be %3$sfound here%4$s."
msgstr ""

View File

@@ -1,93 +0,0 @@
# coreActivity
## Changelog
### Version: 1.4 / November 15 2023
* **new** component: `GD Forum Manager` plugin, with 4 events
* **new** component: `Forminator` plugin, with 1 event
* **new** logs panel view support for the object by ID or name
* **new** store statistics for each event on the daily base
* **new** filter events by the plugin it originated from
* **edit** optimized logs panel views processing and matching
* **edit** log item dialog view updated rendering for expandability
* **edit** improved `Event` view display for the Logs panel
* **edit** Dev4Press Library 4.4 Beta
* **fix** several small issues with the `Live` Logs updates
* **fix** object filtering for logs panel was unfinished
* **fix** notifications property not found for new events
### Version: 1.3 / November 6 2023
* **new** geolocation with the use of `MaxMind GeoLite2` database
* **new** `MaxMind GeoLite2` support for weekly downloading of Lite database
* **new** option to hide the `Object` column from the Logs
* **new** plugin dashboard widget for the GEO Location information
* **new** component `DebugPress` expanded with two new events
* **new** logs panel option to filter by country based on geolocation
* **new** logs panel popup dialog with overview of all event data split in tabs
* **edit** changes in the order for some columns on the log panel
* **edit** expanded `SweepPress` sweeping job logged data
* **edit** various improvements to the Logs panel styling
* **edit** improved method for running the GEO Location database update
* **edit** Dev4Press Library 4.4 Beta
* **fix** initial GEO Location database update is not triggered properly
### Version: 1.2 / October 30 2023
* **new** database: logs table has new `country_code` column
* **new** logging: options for logging country code and other location information
* **new** geolocation settings: choose between online and `IP2Location` database
* **new** geolocation with the use of `IP2Location` database
* **new** `IP2Location` support for weekly downloading of Lite database
* **new** registered weekly maintenance background job
* **edit** Dev4Press Library 4.4 Beta
* **fix** logs override filtering not working properly always
* **fix** all CRON handlers registered as filters and not actions
* **fix** weekly digest scheduled to run each day
### Version: 1.1 / October 16 2023
* **new** component: WooCommerce plugin, with 3 events
* **new** notifications component: support for WooCommerce `WC_Email` logging
* **new** logs panel action to stop logging some of the object type by value
* **new** logs panel metadata column as alternative to the metadata row
* **new** logs panel with added views for context and method
* **new** tool for bulk control of events notifications status
* **new** more settings related to object types exclusions
* **edit** sitemeta component: default object type is now `sitemeta`
* **edit** many improvements to the `Logs` class for expandability
* **edit** few improvements to the base `Component` class
* **edit** few improvements to the Logs table and rendering
* **edit** Dev4Press Library 4.4 Beta
* **fix** logs filtering in some cases not working properly
* **fix** some events not always obeying exclusion conditions
* **fix** few issues with the content terms relationship change event
### Version: 1.0.5 / October 5 2023
* **edit** Dev4Press Library 4.3.5
* **fix** admin pages header IP display may be broken if IP is unknown
### Version: 1.0.4 / October 2 2023
* **edit** more changes related to PHPCS and WPCS validation
* **edit** Dev4Press Library 4.3.4
### Version: 1.0.3 / September 26 2023
* **edit** more changes related to PHPCS and WPCS validation
* **edit** Dev4Press Library 4.3.3
### Version: 1.0.2 / September 25 2023
* **edit** Dev4Press Library 4.3.2
### Version: 1.0.1 / September 20 2023
* **edit** more changes related to PHPCS and WPCS validation
* **edit** Dev4Press Library 4.3.1
### Version: 1.0 / September 6 2023
* **new** first official release

View File

@@ -1,23 +0,0 @@
{
"name": "croquet-metaverse-web-showcase",
"version": "1.1.6",
"description": "Croquet Metaverse Web Showcase",
"author": "The Croquet Corporation",
"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",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start"
},
"devDependencies": {
"@wordpress/scripts": "^25.0.0",
"eslint-plugin-react": "^7.31.11"
},
"dependencies": {
"@wordpress/media-utils": "^4.15.0"
}
}

View File

@@ -1,134 +0,0 @@
# Copyright (C) 2023 The Croquet Corporation
# This file is distributed under the Apache-2.0.
msgid ""
msgstr ""
"Project-Id-Version: Croquet Metaverse Web Showcase 1.1.6\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordpress-webshowcase-plugin\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: 2023-02-07T19:51:43+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: croquet-metaverse-web-showcase\n"
#. Plugin Name of the plugin
#. Description of the plugin
msgid "Croquet Metaverse Web Showcase"
msgstr ""
#. Plugin URI of the plugin
msgid "https://croquet.io/webshowcase"
msgstr ""
#. Author of the plugin
msgid "The Croquet Corporation"
msgstr ""
#. Author URI of the plugin
msgid "https://croquet.io/"
msgstr ""
#: build/index.js:1
#: src/edit.js:467
msgid "Drop a media file (PNG, JPEG, MP4, or PDF)"
msgstr ""
#: build/index.js:1
#: src/edit.js:228
msgid "An error occurred"
msgstr ""
#: build/index.js:1
#: src/edit.js:241
msgid "Croquet Web Showcase"
msgstr ""
#: build/index.js:1
#: src/edit.js:246
msgid "Please set API key in the side bar settings"
msgstr ""
#: build/index.js:1
#: src/edit.js:252
msgid "API Key"
msgstr ""
#: build/index.js:1
#: src/edit.js:249
msgid "The API Key is not in the right format. It should look like: 1abcdefg123456890ABCDEFG"
msgstr ""
#: build/index.js:1
#: src/edit.js:285
msgid "A key to access the Croquet network. You can generate one on https://croquet.io/keys. Paste the key string that looks like: 1abcdefg123456890ABCDEFG"
msgstr ""
#: build/index.js:1
#: src/edit.js:287
msgid "Determines the privacy of this Web Showcase instantiation"
msgstr ""
#: build/index.js:1
#: src/edit.js:296
msgid "The height of the graphics on the page"
msgstr ""
#: build/index.js:1
#: src/edit.js:307
msgid "Settings"
msgstr ""
#: build/index.js:1
#: src/edit.js:309
msgid "Croquet API Key"
msgstr ""
#: build/index.js:1
#: src/edit.js:314
msgid "Showcase Privacy"
msgstr ""
#: build/index.js:1
#: src/edit.js:318
msgid "Invite Only"
msgstr ""
#: build/index.js:1
#: src/edit.js:319
msgid "Public"
msgstr ""
#: build/index.js:1
#: src/edit.js:324
msgid "Enable Dolby spatial voice chat"
msgstr ""
#: build/index.js:1
#: src/edit.js:291
msgid "Dolby Spatial audio chat is enabled"
msgstr ""
#: build/index.js:1
#: src/edit.js:293
msgid "Dolby Spatial audio chat is disabled"
msgstr ""
#: build/index.js:1
#: src/edit.js:329
msgid "Minimum Height"
msgstr ""
#: build/block.json
#: src/block.json
msgctxt "block title"
msgid "Croquet Metaverse Web Showcase"
msgstr ""
#: build/block.json
#: src/block.json
msgctxt "block description"
msgid "A 3D multiplayer space on WordPress pages"
msgstr ""

View File

@@ -1,15 +0,0 @@
# Changelog
## 1.0.2 - November 20, 2023
### Fixed
- Fixed issue with some files not being in the SVN repository.
## 1.0.1 - November 18, 2023
### Fixed
- Fixed issues with the copyright block.
### Updated
- Updated the branding for the Crosswinds Framework and Crosswinds Blocks.
## 1.0 - October 28,2023
- Initial release to the repository.

View File

@@ -1,20 +0,0 @@
{
"name": "ctcl-floating-cart",
"version": "0.1.0",
"description": "Example block scaffolded with Create Block tool.",
"author": "The WordPress Contributors",
"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",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start"
},
"devDependencies": {
"@wordpress/scripts": "^26.6.0"
}
}

View File

@@ -1,7 +0,0 @@
***CHANGELOG***
Version 1.0.0 - 26 February 2023
* Initial release

View File

@@ -1,13 +0,0 @@
{
"name": "cm-custom-posts-list",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.23.1"
}
}

View File

@@ -1,269 +0,0 @@
# Copyright (C) 2023 Tahoe Beetschen
# This file is distributed under the GPL2.
msgid ""
msgstr ""
"Project-Id-Version: Debrandify 1.1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/debrandify\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: 2023-09-25T11:24:12+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: debrandify\n"
#. Plugin Name of the plugin
msgid "Debrandify"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/morceaudebois/debrandify"
msgstr ""
#. Description of the plugin
msgid "Debrandify is a simple WordPress plugin that lets you hide WordPress' branding and replace it with yours."
msgstr ""
#. Author of the plugin
msgid "Tahoe Beetschen"
msgstr ""
#. Author URI of the plugin
msgid "https://tahoe.be"
msgstr ""
#: debrandify.php:198
msgid "No feed available, please visit the "
msgstr ""
#: debrandify.php:200
msgid "homepage"
msgstr ""
#: debrandify.php:381
msgid "The WordPress REST API has been disabled."
msgstr ""
#: src/php/notices.php:26
#: src/php/notices.php:81
msgid "Donate"
msgstr ""
#: src/php/notices.php:41
msgid "Thank you for installing <b>Debrandify</b>! You can start getting rid of WordPress' branding right away."
msgstr ""
#: src/php/notices.php:43
msgid "Visit settings page"
msgstr ""
#: src/php/notices.php:78
msgid "You've been using Debrandify for a while now, I hope you like it! If so, please consider giving a review or donating, that would help a lot 😊"
msgstr ""
#: src/php/notices.php:80
msgid "Review"
msgstr ""
#: src/php/settings.php:13
msgid "Your site uses WordPress Multisite, which means Debrandify options are set up "
msgstr ""
#: src/php/settings.php:13
msgid "on the network level"
msgstr ""
#: src/php/settings.php:13
msgid ". You can prioritise this specific site's settings by toggling this option."
msgstr ""
#: src/php/settings.php:63
msgid "Debrandify multisite settings"
msgstr ""
#: src/php/settings.php:64
msgid "Debrandify Settings"
msgstr ""
#: src/php/settings.php:68
msgid "These will impact your whole network of sites. If you wish to set things up specifically for a site, head to the Debrandify settings of its dashboard."
msgstr ""
#: src/php/settings.php:73
msgid "General"
msgstr ""
#: src/php/settings.php:77
msgid "Email"
msgstr ""
#: src/php/settings.php:81
msgid "Advanced"
msgstr ""
#: src/php/settings.php:85
msgid "Bonus features!"
msgstr ""
#: src/php/settings.php:95
msgid "Prioritise these settings"
msgstr ""
#: src/php/settings.php:100
msgid "WordPress admin bar logo"
msgstr ""
#: src/php/settings.php:101
msgid "Thank you sentence in admin footer"
msgstr ""
#: src/php/settings.php:101
#: src/php/settings.php:102
msgid "Your own text"
msgstr ""
#: src/php/settings.php:102
msgid "WordPress version in admin footer"
msgstr ""
#: src/php/settings.php:105
msgid "Login logo image"
msgstr ""
#: src/php/settings.php:109
msgid "Default WordPress logo"
msgstr ""
#: src/php/settings.php:113
msgid "Site logo (if there is one)"
msgstr ""
#: src/php/settings.php:117
msgid "Site title"
msgstr ""
#: src/php/settings.php:121
msgid "Hide"
msgstr ""
#: src/php/settings.php:128
msgid "\"— WordPress\" suffix in tab titles of dashboard pages"
msgstr ""
#: src/php/settings.php:130
msgid "\"News and events\" widget on dashboard"
msgstr ""
#: src/php/settings.php:133
msgid "\"Elementor overview\" widget on dashboard"
msgstr ""
#: src/php/settings.php:136
msgid "Integrated smileys"
msgstr ""
#: src/php/settings.php:137
msgid "Integrated RSS feed"
msgstr ""
#: src/php/settings.php:138
msgid "Comments"
msgstr ""
#: src/php/settings.php:141
msgid "\"From\" text of emails sent by your site"
msgstr ""
#: src/php/settings.php:141
msgid "Your site's name"
msgstr ""
#: src/php/settings.php:142
msgid "Username of the email adress that sends from your site"
msgstr ""
#: src/php/settings.php:142
msgid "First part of email"
msgstr ""
#: src/php/settings.php:145
msgid "Global inline styles"
msgstr ""
#: src/php/settings.php:146
msgid "Unnecessary code in head tag"
msgstr ""
#: src/php/settings.php:147
msgid "Embeds"
msgstr ""
#: src/php/settings.php:148
msgid "Block library"
msgstr ""
#: src/php/settings.php:151
msgid "SVG upload"
msgstr ""
#: src/php/settings.php:152
msgid "Center login form vertically"
msgstr ""
#: src/php/settings.php:153
msgid "REST API"
msgstr ""
#: src/php/settings.php:154
msgid "jQuery (if possible)"
msgstr ""
#: src/php/settings.php:168
msgid "Made in France with ❤️ by "
msgstr ""
#: src/php/settings.php:170
msgid "If you like Debrandify, please consider "
msgstr ""
#: src/php/settings.php:170
msgid "giving it a review"
msgstr ""
#: src/php/settings.php:170
msgid "or"
msgstr ""
#: src/php/settings.php:170
msgid "donating"
msgstr ""
#: src/php/settings.php:171
msgid "This is what motivates me to keep it updated and create new projects as an indie developer 😊"
msgstr ""
#: src/php/settings.php:174
msgid "As this is my first WordPress plugin, it might have some bugs! 🐞"
msgstr ""
#: src/php/settings.php:176
msgid "If you find some, please "
msgstr ""
#: src/php/settings.php:177
msgid "report them here"
msgstr ""
#: src/php/settings.php:178
msgid "so that I can fix them quickly."
msgstr ""
#: src/php/settings.php:247
msgid "Settings updated."
msgstr ""
#: src/php/settings.php:247
msgid "Dismiss this notice."
msgstr ""

View File

@@ -1,935 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: Delivengo : Méthodes de livraison pour WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/delivengo/\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-06-14\n"
"X-Domain: wc_delivengo\n"
msgid "Preparing"
msgstr ""
msgid "Deposited"
msgstr ""
msgid "In progress"
msgstr ""
msgid "Distributed"
msgstr ""
msgid "AR received"
msgstr ""
msgid "Reclamation asked"
msgstr ""
msgid "Incident"
msgstr ""
msgid "No handling information from La Poste for more than 5 days"
msgstr ""
msgid "No evolution of parcel tracking for more than 30 days"
msgstr ""
msgid "AR not received within 30 days following distribution"
msgstr ""
msgid "PND not received within 15/30 days following the non-delivery"
msgstr ""
msgid "PND"
msgstr ""
msgid "PND Access or address error"
msgstr ""
msgid "PND Addressee unknown at address"
msgstr ""
msgid "PND Parcel refused by the addressee"
msgstr ""
msgid "PND Arrival notified and not claimed"
msgstr ""
msgid "Complaint resolved: Parcel found by La Poste"
msgstr ""
msgid "Complaint abandoned"
msgstr ""
msgid "Complaint resolved: La Poste compensation"
msgstr ""
msgid "Sent (international)"
msgstr ""
msgid "Handling"
msgstr ""
msgid "Resent to distribution"
msgstr ""
msgid "This plugin gives you the possibility to use the Delivengo shipping methods in WooCommerce."
msgstr ""
msgid "Could not save the deposit"
msgstr ""
msgid "Could not save the label"
msgstr ""
msgid "Title"
msgstr ""
msgid "This controls the title which the user sees during checkout."
msgstr ""
msgid "Free from order value"
msgstr ""
msgid "Shipping cost will be free if the order value is over the one specified."
msgstr ""
msgid "Always free?"
msgstr ""
msgid "If enabled, rates calculation for this shipping method will always be zero."
msgstr ""
msgid "Title if free"
msgstr ""
msgid "This controls the title which the user sees during checkout if the shipping methods is free. Leave empty to always use standard title."
msgstr ""
msgid "Handling fee"
msgstr ""
msgid "This amount is added to the shipping cost during checkout."
msgstr ""
msgid "Free if at least one item in the cart has one of the free shipping classes above"
msgstr ""
msgid "If enabled, delivery will be free, even if the other items in the cart do not have one of the free shipping classes above"
msgstr ""
msgid "Free shipping classes"
msgstr ""
msgid "These shipping classes qualify for free shipping"
msgstr ""
msgid "Excluded shipping classes"
msgstr ""
msgid "The current shipping method will not be displayed if one product in the cart has one of these shipping classes. This option takes precedence over the option Free shipping classes"
msgstr ""
msgid "Delivengo Economic"
msgstr ""
msgid "Shipping without tracking in mailbox, in Economic delivery time to international destinations"
msgstr ""
msgid "Delivengo Priority"
msgstr ""
msgid "Shipping without tracking in mailbox, in Priority delivery time to international destinations"
msgstr ""
msgid "Delivengo Tracked"
msgstr ""
msgid "Shipping with tracking in mailbox to international destinations"
msgstr ""
msgid "Delivengo With acknowledgement of receipt"
msgstr ""
msgid "Shipping with tracking and signature, registered mail with acknowledgement of receipt, to international destinations"
msgstr ""
msgid "Delivengo Without acknowledgement of receipt"
msgstr ""
msgid "Shipping with tracking and signature, registered mail without acknowledgement of receipt, to international destinations"
msgstr ""
msgid "Not found"
msgstr ""
msgid "No label found in the request"
msgstr ""
msgid "The statuses update process has started. Depending on the number of orders you have, it may take a few minutes to update all statuses."
msgstr ""
msgid "Missing order id in the request"
msgstr ""
msgid "Error creating the shipment: %s"
msgstr ""
msgid "Missing api key in the request"
msgstr ""
msgid "This API key is valid"
msgstr ""
msgid "The content of the file is empty"
msgstr ""
msgid "HS codes imported successfully"
msgstr ""
msgid "An error occurred while importing the default shipping prices."
msgstr ""
msgid "The log file is empty"
msgstr ""
msgid "Hi %s,"
msgstr ""
msgid "here"
msgstr ""
msgid "Tracking number: %s"
msgstr ""
msgid "Shipping address:"
msgstr ""
msgid "You can follow up your order here: %s"
msgstr ""
msgid "Unit price (%s)"
msgstr ""
msgid "Quantity"
msgstr ""
msgid "Unit weight (grams)"
msgstr ""
msgid "Edit prices and weights"
msgstr ""
msgid "Editing prices and weights may create inconsistency between CN23 or labels and invoice. Edit these values only if you really need it."
msgstr ""
msgid "Shipping costs (%s)"
msgstr ""
msgid "Packaging weight (grams)"
msgstr ""
msgid "Total weight (items + packaging)"
msgstr ""
msgid "Customs category"
msgstr ""
msgid "Generate label"
msgstr ""
msgid "Delivengo tracking link"
msgstr ""
msgid "<b>Addresses saved on your MyDelivengo account</b> (click on the address of your choice to auto-fill the form)"
msgstr ""
msgid "Label format"
msgstr ""
msgid "Offer"
msgstr ""
msgid "Print format"
msgstr ""
msgid "Position"
msgstr ""
msgid "Unique format"
msgstr ""
msgid "Print example"
msgstr ""
msgid "Download example"
msgstr ""
msgid "Billing"
msgstr ""
msgid "Import"
msgstr ""
msgid "Test your API key"
msgstr ""
msgid "See logs"
msgstr ""
msgid "Shipping rates"
msgstr ""
msgid "From weight"
msgstr ""
msgid "Included"
msgstr ""
msgid "To weight"
msgstr ""
msgid "Excluded"
msgstr ""
msgid "From cart price"
msgstr ""
msgid "To cart price"
msgstr ""
msgid "Shipping class"
msgstr ""
msgid "Price"
msgstr ""
msgid "Add rate"
msgstr ""
msgid "Delete selected"
msgstr ""
msgid "Import Delivengo Europe prices"
msgstr ""
msgid "Import Delivengo World prices"
msgstr ""
msgid "This will replace the currently existing prices you've configured"
msgstr ""
msgid "All products"
msgstr ""
msgid "Could not call Delivengo API: %s"
msgstr ""
msgid "Invalid API key"
msgstr ""
msgid "Error responded from Delivengo API with status code %s"
msgstr ""
msgid "Account type unknown, make sure to enter your API key in the settings"
msgstr ""
msgid "Could not retrieve the parcel status"
msgstr ""
msgid "No format option saved in the settings"
msgstr ""
msgid "No format option saved for this contract, check the settings."
msgstr ""
msgid "No product found for the order %s"
msgstr ""
msgid "Missing HS code or country of manufacture on product %s"
msgstr ""
msgid "External label ids or order ids are missing"
msgstr ""
msgid "[Order #%s]"
msgstr ""
msgid "Product"
msgstr ""
msgid "Billing address"
msgstr ""
msgid "Shipping address"
msgstr ""
msgid "VAT Number: %s"
msgstr ""
msgid "Invalid file list"
msgstr ""
msgid "Default HS code"
msgstr ""
msgid "Orders per page"
msgstr ""
msgid "Apply"
msgstr ""
msgid "This order is not shipped by Delivengo"
msgstr ""
msgid "Download deposit"
msgstr ""
msgid "Shipping status: %s"
msgstr ""
msgid "Sale of merchandise"
msgstr ""
msgid "Gift"
msgstr ""
msgid "Sample"
msgstr ""
msgid "Return of merchandise"
msgstr ""
msgid "Other"
msgstr ""
msgid "Document"
msgstr ""
msgid "You need to select at least one item to generate a label"
msgstr ""
msgid "Cancel"
msgstr ""
msgid "Generate"
msgstr ""
msgid "Select your containers"
msgstr ""
msgid "ID"
msgstr ""
msgid "Date"
msgstr ""
msgid "Customer"
msgstr ""
msgid "Address"
msgstr ""
msgid "Country"
msgstr ""
msgid "Shipping method"
msgstr ""
msgid "Order status"
msgstr ""
msgid "Labels"
msgstr ""
msgid "Generate labels"
msgstr ""
msgid "Download labels"
msgstr ""
msgid "Print labels"
msgstr ""
msgid "Generate deposit"
msgstr ""
msgid "Print deposit"
msgstr ""
msgid "Choose container"
msgstr ""
msgid "Access denied! (Security check failed)"
msgstr ""
msgid "Deposit"
msgstr ""
msgid "The label couldn't be generated: %s"
msgstr ""
msgid "Label not generated"
msgstr ""
msgid "Label generated"
msgstr ""
msgid "Label printed"
msgstr ""
msgid "Label not printed"
msgstr ""
msgid "Home"
msgstr ""
msgid "My Delivengo account"
msgstr ""
msgid "Settings"
msgstr ""
msgid "My addresses"
msgstr ""
msgid "Products configuration"
msgstr ""
msgid "Delete the selected rates?"
msgstr ""
msgid "An email is sent to the customer when the deposit is generated."
msgstr ""
msgid "Your order is being prepared"
msgstr ""
msgid "[%s] Your order is being prepared"
msgstr ""
msgid "All countries"
msgstr ""
msgid "All"
msgstr ""
msgid "All shipping methods"
msgstr ""
msgid "Show filters"
msgstr ""
msgid "Filter"
msgstr ""
msgid "Reset"
msgstr ""
msgid "Status"
msgstr ""
msgid "All statuses"
msgstr ""
msgid "All order statuses"
msgstr ""
msgid "Delivengo Orders"
msgstr ""
msgid "Update shipping statuses"
msgstr ""
msgid "Please enter an API key"
msgstr ""
msgid "Could not parse the address"
msgstr ""
msgid "You are about the fill the form above with this address. Do you want to continue?"
msgstr ""
msgid "Missing file"
msgstr ""
msgid "Deposit not generated"
msgstr ""
msgid "Deposit generated"
msgstr ""
msgid "Deposit n°%s"
msgstr ""
msgid "Company name"
msgstr ""
msgid "Complete name"
msgstr ""
msgid "Address line 1"
msgstr ""
msgid "Address line 2"
msgstr ""
msgid "Postal box"
msgstr ""
msgid "Zip code"
msgstr ""
msgid "City"
msgstr ""
msgid "Phone"
msgstr ""
msgid "Yes"
msgstr ""
msgid "No"
msgstr ""
msgid "Shipment outside of EU"
msgstr ""
msgid "Shipment type"
msgstr ""
msgid "United Kingdom EORI Number"
msgstr ""
msgid "Default HS code to use if no specific ones have been set on the products"
msgstr ""
msgid "Default country of manufacture"
msgstr ""
msgid "Default country of manufacture to use if no specific ones have been set on the products"
msgstr ""
msgid "VAT number"
msgstr ""
msgid "The VAT number is needed for delivery to United Kingdom"
msgstr ""
msgid "The packaging weight will be added to the products weight on label generation. It is taken into account when calculating the shipping price to show to the customers."
msgstr ""
msgid "Calculate shipping method before applying coupons"
msgstr ""
msgid "If enabled, the available shipping methods and fees will be calculated based on the cart price before applying any coupon."
msgstr ""
msgid "Log messages"
msgstr ""
msgid "API key"
msgstr ""
msgid "My Delivengo solutions %s"
msgstr ""
msgid "Download deposit n°%s"
msgstr ""
msgid "Not tracked"
msgstr ""
msgid "You can only create one deposit per day. Are you sure you want to create the deposit with these orders?"
msgstr ""
msgid "Unknown status"
msgstr ""
msgid "The Economic Operator Registration and Identification number is required for the United Kingdom."
msgstr ""
msgid "Default shipping fee"
msgstr ""
msgid "Default shipping fee to apply for CN23 in case the shipping amount is 0 (free shipping for the client for example)"
msgstr ""
msgid "Every fifteen minutes"
msgstr ""
msgid "No IBAN found on your account"
msgstr ""
msgid "Go to your Delivengo account to add an IBAN"
msgstr ""
msgid "No data found for the product: %s"
msgstr ""
msgid "Product not found for provided SKU: %s"
msgstr ""
msgid "Product ID and SKU missing, at least one is required: %s"
msgstr ""
msgid "One or more errors occurred:"
msgstr ""
msgid "Unsuccessful distribution attempt - Pending or returning to sender"
msgstr ""
msgid "Your parcel is ready to be deposited at La Poste"
msgstr ""
msgid "Handled by La Poste"
msgstr ""
msgid "Detained at the request of the sending country"
msgstr ""
msgid "Departure from the exchange office of the country of dispatch"
msgstr ""
msgid "Arrival at the exchange office of the destination country"
msgstr ""
msgid "Return to exchange office"
msgstr ""
msgid "Retained in customs"
msgstr ""
msgid "Arrival at the exchange office of the country of dispatch"
msgstr ""
msgid "Entering customs"
msgstr ""
msgid "Exiting customs"
msgstr ""
msgid "Departure from the exchange office of the destination country"
msgstr ""
msgid "Departure from the transit exchange office"
msgstr ""
msgid "Departure"
msgstr ""
msgid "Arrival at the transit exchange office"
msgstr ""
msgid "Arrival at the distribution office"
msgstr ""
msgid "Welcome to your Delivengo module!"
msgstr ""
msgid "<u>Not yet registered on Delivengo?</u> Here is how to do it:"
msgstr ""
msgid "<b>Delivengo profil offer</b> (+ than 2000 shippings/year): I get my Delivengo profil credentials by filling %s to sign a contract"
msgstr ""
msgid "this commercial contact form"
msgstr ""
msgid "<b>Delivengo easy offer</b> (- than 2000 shippings/year): I create my Delivengo easy account by %s"
msgstr ""
msgid "clicking here"
msgstr ""
msgid "<u>Already registered on Delivengo?</u> Here is how to configure your module:"
msgstr ""
msgid "I associate my account to the Delivengo module"
msgstr ""
msgid "To connect the module, you must retrieve your Delivengo API key. Get your API key in your Delivengo account, via \"My account\", then \"API key\"."
msgstr ""
msgid "I configure my settings to simplify my shipping preparations thanks to Delivengo features"
msgstr ""
msgid "Choose the format of your labels"
msgstr ""
msgid "Save your default customs formalities for your shipments outside the European Union"
msgstr ""
msgid "Select or enter your sender address"
msgstr ""
msgid "Configure your HS code by categories or products. If you have a lot of products, you can use our import feature (see the \"Products configuration\" tab)"
msgstr ""
msgid "I configure my shipping rates"
msgstr ""
msgid "Head to the \"Shipping\" tab"
msgstr ""
msgid "Select a shipping zone and click on \"Add shipping method\""
msgstr ""
msgid "Add the Delivengo solutions then configure the rates."
msgstr ""
msgid "You can customize the title of the delivery solution for your customers"
msgstr ""
msgid "Be careful: Delivengo doesn't handle parcels over 2kg. Be careful when you modify the weight ranges."
msgstr ""
msgid "Everything is ready!"
msgstr ""
msgid "We have created a special page just for you, to view your new orders in WooCommerce > Delivengo orders"
msgstr ""
msgid "Connect your Delivengo account with your WordPress website. To do this, retrieve your API key available in %s (hover over your username in the top right corner of the screen, then click on \"My account\", then \"Show API key\")."
msgstr ""
msgid "your MyDelivengo account"
msgstr ""
msgid "If enabled, log messages will be collected each time an action is performed by the plugin. This is mainly used to investigate when an error occurs."
msgstr ""
msgid "Customs declaration"
msgstr ""
msgid "For expeditions outside the EU, you must specify the fields below. Without these elements, your label will not be generated."
msgstr ""
msgid "Sender address"
msgstr ""
msgid "You must enter your sender address here. We have retrieved below your sender addresses available in your MyDelivengo account."
msgstr ""
msgid "NB: If no address is available in your MyDelivengo account, we invite you to enter one (in MyDelivengo, hover over your username in the top right corner of the screen, then click on \"My account\", then \"Sender addresses\")."
msgstr ""
msgid "The HS code and the country of origin of your products must be filled in for shipments outside the European Union."
msgstr ""
msgid "To facilitate the addition of these information to your products, we offer you to import them directly into your catalog."
msgstr ""
msgid "Import a CSV file that will have in the first line either <b>id,hscode,country</b> or <b>sku,hscode,country</b>"
msgstr ""
msgid "Then, enter on each line the product's id or SKU, the HS code and the country (each element separated by a comma). Ex: 11,123456,FR"
msgstr ""
msgid "Shipping with tracking in mailbox"
msgstr ""
msgid "Delivengo orders"
msgstr ""
msgid "Priority delivery in mailbox, without tracking"
msgstr ""
msgid "Economy delivery in mailbox, without tracking"
msgstr ""
msgid "Tracked delivery against signature with acknowledgement of receipt"
msgstr ""
msgid "Tracked delivery against signature without acknowledgement of receipt"
msgstr ""
msgid "Shipping in mailbox with tracking"
msgstr ""
msgid "Shipping statuses won't be automatically collected because a webhook already exists on your MyDelivengo account. Click the \"Update shipping statuses\" button, or remove the existing webhook on your MyDelivengo account."
msgstr ""
msgid "No order to create shipment"
msgstr ""
msgid "Sending to Norway, Australia or New-Zealand"
msgstr ""
msgid "If you are shipping to these destinations, you must enter your VOEC, AU GST, and/or NZ GST numbers directly into your %s account."
msgstr ""
msgid "For more information, please visit our %s (2nd yellow box at the bottom of the page)."
msgstr ""
msgid "support page"
msgstr ""
msgid ": offered"
msgstr ""
msgid "<b>Warning: </b>you must generate the deposit slip before depositing your items. To do this, after generating the labels, check the orders to be deposited, select \"Generate deposit\" in Grouped actions, then click on \"Apply\". NB: you can only generate one deposit slip per day. Be sure to select all the orders to be deposited."
msgstr ""
msgid "Good news, your order #%s has been shipped."
msgstr ""
msgid "The tracking number is:"
msgstr ""
msgid "The carrier's tracking information will be updated and available within 24 to 48 hours."
msgstr ""
msgid "Thank you for your confidence."
msgstr ""
msgid "Your order {order_number} will be shipped soon"
msgstr ""
msgid "We are pleased to announce that your %s order has been shipped"
msgstr ""
msgid "Automatic update of tracking status"
msgstr ""
msgid "We are unable to automatically update the status of your Delivengo folds on WooCommerce. We have detected that there is already a webhook for your Delivengo account. For each account, only one webhook is allowed. To update them manually, you need to go to the \"Delivengo Orders\" page and click on \"Update shipping status\". You can also request the deactivation of the webhook from the technical hotline (contact@assistance-mdelivengo.fr), to make the update automatic on WooCommerce."
msgstr ""
msgid "Economy delivery in mailbox, without tracking: offered"
msgstr ""
msgid "Priority delivery in mailbox, without tracking: offered"
msgstr ""
msgid "Shipping in mailbox with tracking: offered"
msgstr ""
msgid "Tracked delivery against signature with acknowledgement of receipt: offered"
msgstr ""
msgid "Tracked delivery against signature without acknowledgement of receipt: offered"
msgstr ""
msgid "deposit_slip.pdf"
msgstr ""
msgid "delivengo_label.pdf"
msgstr ""
msgid "Error responded from Delivengo API with the message: %s"
msgstr ""
msgid "Need help?"
msgstr ""
msgid "To guide you when setting up your module, you can consult our user guide by %s."
msgstr ""
msgid "You can also contact our technical support by e-mail: %s"
msgstr ""
msgid "The tracking number is: %1$s %2$s"
msgstr ""

View File

@@ -1,121 +0,0 @@
*** DePay Web3 Payments for WooCommerce Changelog ***
2023-3-11 - version 1.15.6
* fixes FIAT & USD conversion (UI/Widget)
2023-3-10 - version 1.15.5
* fix timing issue with callbacks (internal)
2023-3-10 - version 1.15.4
* fix warning when forwarding to order confirmation
2023-3-10 - version 1.15.3
* update widgets to prevent page reload during pending payment
2023-3-10 - version 1.15.2
* update widgets to improve "Connect a wallet"
* improve payment tracing
* log payment validation errors
2023-3-2 - version 1.15.1
* fixes problem with Coinbase wallet
2023-2-28 - version 1.15.0
* update widgets + add react token image to display token images in admin section properly
2023-2-27 - version 1.14.0
* updates widgets: Improves "Connect a wallet"
2023-2-25 - version 1.13.0
* New and improved "Connect a wallet"
2023-2-11 - version 1.12.0
* add option to switch displayed currency (within payment widget)
2023-2-11 - version 1.11.7
* fix: checkout with enabled token denomination & reload checkout if page reloaded
2023-2-10 - version 1.11.6
* fix: only manual switch for WooCommerce currency
2023-2-6 - version 1.11.5
* fix: allow payments on "Customer payment page"
2023-2-6 - version 1.11.4
* upgrade widgets to v9.3.1
2023-1-31 - version 1.11.3
* fixes wordpress.org meta data
2023-1-30 - version 1.11.2
* update wording for unsupported token warning
2023-1-28 - version 1.11.1
* fix: already set token denomination upon adding the option for the first time
2023-1-27 - version 1.11.0
* adds crypto/token denomination
2023-1-26 - version 1.10.1
* fix prevent error if initial token selection is empty
2023-1-26 - version 1.10.0
* Adds help to make the right token selection in settings
* Allows to change payment method name (DePay, Web3, Crypto)
* Allows to add an additional payment method description for checkout
* Improves checkout performance
* Checks if required packages are installed (bcmath)
2023-1-21 - version 1.9.7
* fix update values for track follows trace
2023-1-21 - version 1.9.6
* fix timing of visual payment confirmation
2023-1-21 - version 1.9.5
* prevent E numbers (prevent floatval)
2023-1-17 - version 1.9.4
* fix rounding issue
2023-1-9 - version 1.9.3
* fix vertical alignment of blockchain icons (checkout)
2023-1-7 - version 1.9.2
* fix fetch transactions (admin)
2023-1-7 - version 1.9.1
* hide pending transactions in the admin "transactions" tab
2023-1-6 - version 1.9.0
* upgrades widgets to v9
2022-12-29 - version 1.8.1
* fix: properly align blockchain logos during checkout
2022-12-12 - version 1.8.0
* adds logs
2022-12-12 - version 1.7.0
* add CURL, POST and GET status to debug
2022-12-9 - version 1.6.0
* adds debug endpoint
2022-12-9 - version 1.5.4
* fix token price conversions
2022-12-9 - version 1.5.3
* fix: use correct data types for uuids
2022-12-9 - version 1.5.2
* fix: prevent caching for fetching accepted payments during checkout
2022-11-3 - version 1.5.1
* fix: allows to disable depay payment gateway in woocommerce
2022-10-19 - version 1.5.0
* Listing on WooCommerce
2022-10-18 - version 1.0.0
* Initial release

View File

@@ -1,68 +0,0 @@
{
"name": "@depay/web3-woocommerce-depay-payments",
"moduleName": "WooCommerceDePayPayments",
"version": "1.15.6",
"description": "WooCommerce DePay plugin to accept Web3 payments directly into your wallet with on-the-fly conversion.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.build.config.js",
"release": "git push && node release.js",
"update:version": "node update-version.js"
},
"repository": "git@github.com:DePayFi/web3-woocommerce-depay-payments.git",
"keywords": [
"WooCommerce",
"ecommerce",
"web3",
"payments",
"cryptocurrencies"
],
"author": "depay.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/DePayFi/web3-woocommerce-depay-payments/issues"
},
"homepage": "https://github.com/DePayFi/web3-woocommerce-depay-payments#readme",
"private": false,
"dependencies": {
"@depay/web3-blockchains": "^6.1.0",
"@depay/widgets": "^7.16.5"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@depay/web3-constants": "^6.2.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-sucrase": "^3.1.0",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"open-file-explorer": "^1.0.2",
"prompt": "^1.3.0",
"react": "^18",
"react-dom": "^18",
"react-test-renderer": "^18",
"react-testing-library": "^8.0.1",
"replace-in-file": "^6.3.5",
"rollup": "^2.34.2",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^5.74.0"
}
}

View File

@@ -1,14 +0,0 @@
# Copyright (C) 2022 DePay
# This file is distributed under the same license as the package.
msgid ""
msgstr ""
"Project-Id-Version: DePay WooCommerce Payments 1.15.6\n"
"Report-Msgid-Bugs-To: "
"support@depay.com\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "Starting DePay Payment"
msgstr "Starting DePay Payment"

View File

@@ -1,31 +0,0 @@
# <!=Copyright (C) 2014 Rilwis
# This file is distributed under the GPL2+.=!>
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: MB Settings Page 1.1.3\n"
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/meta-box\n"
"POT-Creation-Date: 2016-06-06 10:52+0700\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Meta Box <admin@metabox.io>\n"
"X-Generator: Poedit 1.8.8\n"
"X-Poedit-KeywordsList: __;_x;_e;_ex;_n;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: js\n"
"X-Poedit-SearchPathExcluded-1: demo\n"
"X-Poedit-SearchPathExcluded-2: tests\n"
"X-Poedit-SearchPathExcluded-3: css\n"
"X-Poedit-SearchPathExcluded-4: lang\n"
#: inc/settings-page.php:163
msgid "Save Settings"
msgstr ""
#: inc/settings-page.php:224
msgid "Settings saved."
msgstr ""

View File

@@ -1,4 +0,0 @@
== Changelog ==
= 0.1 =
* Initial release.

View File

@@ -1,19 +0,0 @@
{
"name": "carstenbach/distributor-remote-quickedit",
"version": "0.2.2",
"description": "Re-enable quickedit for distributed posts on the receiving site. This allows to make changes to the original post from the remote site.",
"license": "GPL-3.0-or-later",
"author": "Carsten Bach",
"repository": "carstingaxion/distributor-remote-quickedit",
"devDependencies": {
"@actions/github": "^2",
"replace-in-file": "^5",
"semver": "^7",
"version-bump-prompt": "^6.1.0"
},
"scripts": {
"bump:patch": "bump patch --commit 'Version %s.' distributor-remote-quickedit.php package.json readme.md",
"bump:minor": "bump minor --commit 'Version %s.' distributor-remote-quickedit.php package.json readme.md",
"bump:major": "bump major --commit 'Version %s.' distributor-remote-quickedit.php package.json readme.md"
}
}

View File

@@ -1,149 +0,0 @@
# Copyright (c) 2023 weDevs Pte. Ltd. All Rights Reserved.
msgid ""
msgstr ""
"Project-Id-Version: Dokan Migrator 1.0.0\n"
"Report-Msgid-Bugs-To: https://github.com/weDevsOfficial/dokan-migrator/issues\n"
"Last-Translator: support@wedevs.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: 2023-04-17T06:41:09+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: dokan-migrator\n"
#. Plugin Name of the plugin
#: includes/Admin/Menu.php:36
#: includes/Admin/Menu.php:37
msgid "Dokan Migrator"
msgstr ""
#. Plugin URI of the plugin
msgid "http://WeDevs.com/"
msgstr ""
#. Description of the plugin
msgid "An e-commerce marketplace migration plugin for WordPress. Powered by WooCommerce and WeDevs."
msgstr ""
#. Author of the plugin
msgid "WeDevs"
msgstr ""
#. Author URI of the plugin
msgid "https://WeDevs.com/"
msgstr ""
#: includes/Helpers/MigrationHelper.php:57
msgid "Dokan vendor dashboard activated."
msgstr ""
#: includes/Helpers/MigrationHelper.php:91
msgid "Migrate to dokan"
msgstr ""
#: includes/Helpers/MigrationHelper.php:95
msgid "Migrate Wcfm To Dokan"
msgstr ""
#: includes/Migrator/Ajax.php:59
msgid "Item count successfull."
msgstr ""
#: includes/Migrator/Ajax.php:93
msgid "Import successfull."
msgstr ""
#: includes/Migrator/Ajax.php:117
msgid "Nonce verification failed!"
msgstr ""
#: includes/Migrator/Manager.php:215
msgid "Invalid import type"
msgstr ""
#: includes/Processors/Order.php:79
#: includes/Processors/Vendor.php:91
#: includes/Processors/Withdraw.php:97
msgid "Migrator class not found"
msgstr ""
#: includes/Processors/Order.php:94
msgid "No orders found to migrate to dokan."
msgstr ""
#: includes/Processors/Vendor.php:104
msgid "No vendors found to migrate to dokan."
msgstr ""
#: includes/Processors/Withdraw.php:125
msgid "No withdraws found to migrate to dokan."
msgstr ""
#: templates/app.php:2
msgid "Loading.."
msgstr ""
#: templates/template-active-vendor-dashboard.php:17
msgid "Activate dokan vendor dashboard."
msgstr ""
#. translators: 1$s: opening anchor tag, 2$s: closing anchor tag
#: templates/template-active-vendor-dashboard.php:21
msgid "%1$sActive now%2$s"
msgstr ""
#. translators: 1$s: the plugin to migrate to dokan
#: templates/template-alert-migrate-to-dokan.php:21
msgid "Do You Want To %1$s ?"
msgstr ""
#. translators: 1$s: opening anchor tag, 2$s: closing anchor tag
#: templates/template-alert-migrate-to-dokan.php:27
msgid "Click %1$1sHere%2$2s to move to the migration process."
msgstr ""
#: assets/dist/index.js:1
msgid "Loading..."
msgstr ""
#: assets/dist/index.js:1
msgid "Congratulations."
msgstr ""
#: assets/dist/index.js:1
msgid "You have successful migrated to Dokan. Enjoy 🎉"
msgstr ""
#: assets/dist/index.js:1
msgid "You have successfully migrated to dokan."
msgstr ""
#: assets/dist/index.js:1
msgid "Vendor"
msgstr ""
#: assets/dist/index.js:1
msgid "Order"
msgstr ""
#: assets/dist/index.js:1
msgid "Withdraw"
msgstr ""
#: assets/dist/index.js:1
msgid "Active dokan vendor dashboard."
msgstr ""
#: assets/dist/index.js:1
msgid "Active"
msgstr ""
#: assets/dist/index.js:1
msgid "Start migration"
msgstr ""
#: assets/dist/index.js:1
msgid "No plugin found to migrate to dokan"
msgstr ""

View File

@@ -1,115 +0,0 @@
# Copyright (c) 2023 weDevs Pte. Ltd. All Rights Reserved.
msgid ""
msgstr ""
"Project-Id-Version: Dokan Vendor Dashboard 1.0.0\n"
"Report-Msgid-Bugs-To: https://github.com/weDevsOfficial/dokan-vendor-dashboard/issues\n"
"Last-Translator: support@wedevs.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: 2023-01-20T09:48:16+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: dokan-vendor-dashboard\n"
#. Plugin Name of the plugin
msgid "Dokan Vendor Dashboard"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/dokan-vendor-dashboard/"
msgstr ""
#. Description of the plugin
msgid "An extension for vendor dashboard of Dokan"
msgstr ""
#. Author of the plugin
msgid "weDevs"
msgstr ""
#. Author URI of the plugin
msgid "https://wedevs.com/"
msgstr ""
#. translators: %1$s) opening <strong> tag, %2$s) closing </strong> tag, %3$s) opening <strong> tag, %4$s) plugin version, %5$s) closing </strong> tag, %6$s) opening <strong> tag, %7$s) plugin version, %8$s) closing </strong> tag,
#: includes/Dependency.php:68
msgid "Minimum required version of %1$sDokan%2$s is %3$s%4$s%5$s. The currently installed version is %6$s%7$s%8$s. Please install the required version."
msgstr ""
#. translators: %1$s) opening <strong> tag, %2$s) closing </strong> tag, %3$s) opening <strong> tag, %4$s) plugin version, %5$s) closing </strong> tag, %6$s) opening <strong> tag, %7$s) plugin version, %8$s) closing </strong> tag,
#: includes/Dependency.php:87
msgid "Minimum required version of %1$sDokan Pro%2$s is %3$s%4$s%5$s. The currently installed version is %6$s%7$s%8$s. Please install the required version."
msgstr ""
#. translators: %1$s) opening <strong> tag, %2$s) closing </strong> tag, %3$s) opening <strong> tag, %4$s) closing </strong> tag,
#: includes/Dependency.php:117
msgid "Both %1$sWooCommerce%2$s and %3$sDokan%4$s plugins are required. Please install both the plugins first."
msgstr ""
#. translators: %1$s) opening <strong> tag, %2$s) closing </strong> tag, %3$s) opening <div> and <p> tags, %4$s) notice text, %5$s) closing </p> and </div> tags
#: includes/Dependency.php:146
msgid "%1$s%2$sDokan Vendor Dashboard:%3$s %4$s%5$s"
msgstr ""
#: includes/Menu.php:194
msgid "Settings"
msgstr ""
#: includes/Menu.php:273
msgid "Dashboard"
msgstr ""
#: includes/Menu.php:281
#: src/pages/dashboard/productHighlights/ProductsHighlights.js:20
msgid "Products"
msgstr ""
#: includes/Menu.php:289
msgid "Orders"
msgstr ""
#: includes/Menu.php:297
msgid "Withdraw"
msgstr ""
#: includes/Menu.php:331
msgid "Product Create"
msgstr ""
#: includes/Menu.php:339
msgid "Product Update"
msgstr ""
#: includes/Menu.php:347
msgid "Order Details"
msgstr ""
#: includes/PageTemplates.php:69
msgid "Dokan Vendor Dashboard Template"
msgstr ""
#: src/pages/dashboard/productHighlights/ProductsHighlights.js:23
msgid "+ Add New Product"
msgstr ""
#: src/pages/dashboard/productHighlights/ProductsHighlights.js:31
msgid "Total"
msgstr ""
#: src/pages/dashboard/productHighlights/ProductsHighlights.js:37
msgid "Live"
msgstr ""
#: src/pages/dashboard/productHighlights/ProductsHighlights.js:42
msgid "Offline"
msgstr ""
#: src/pages/dashboard/productHighlights/ProductsHighlights.js:51
msgid "Processing"
msgstr ""
#: src/pages/dashboard/productHighlights/ProductsHighlights.js:56
msgid "Pending Review"
msgstr ""

View File

@@ -1,657 +0,0 @@
# Copyright (C) 2023 SoftLab
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Dracula Dark Mode 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dracula\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: 2023-01-23T10:59:05+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: dracula-dark-mode\n"
#. Plugin Name of the plugin
#: includes/views/getting-started/index.php:13
msgid "Dracula Dark Mode"
msgstr ""
#. Plugin URI of the plugin
msgid "https://softlabbd.com/dracula-dark-mode"
msgstr ""
#. Description of the plugin
msgid "A plugin to add a custom dark mode color scheme to your WordPress theme."
msgstr ""
#. Author of the plugin
msgid "SoftLab"
msgstr ""
#. Author URI of the plugin
msgid "https://softlabbd.com"
msgstr ""
#: includes/base.php:38
#: includes/base.php:47
msgid "Cheating huh?"
msgstr ""
#: includes/base.php:94
#: includes/class-admin.php:150
msgid "Settings"
msgstr ""
#: includes/class-admin.php:62
msgid "Show Dark Mode Toggle"
msgstr ""
#: includes/class-admin.php:67
msgid "Show dark mode toggle in the top admin bar."
msgstr ""
#: includes/class-admin.php:119
msgid "Dark Mode"
msgstr ""
#: includes/class-admin.php:150
msgid "Settings - Dracula"
msgstr ""
#: includes/class-admin.php:153
msgid "Toggle Builder - Dracula"
msgstr ""
#: includes/class-admin.php:153
msgid "Toggle Builder"
msgstr ""
#: includes/class-admin.php:159
msgid "Getting Started - Dracula"
msgstr ""
#: includes/class-admin.php:159
#: includes/views/getting-started/index.php:18
msgid "Getting Started"
msgstr ""
#: includes/class-hooks.php:128
msgid "Edit Dark Mode"
msgstr ""
#: includes/functions.php:375
msgid "Homepage"
msgstr ""
#: includes/functions.php:377
msgid "Search page"
msgstr ""
#: includes/functions.php:378
msgid "Tag page"
msgstr ""
#: includes/functions.php:379
msgid "Category page"
msgstr ""
#: includes/functions.php:380
msgid "Archive page"
msgstr ""
#: includes/functions.php:381
msgid "Author page"
msgstr ""
#: includes/functions.php:382
msgid "404 error page"
msgstr ""
#: includes/functions.php:383
msgid "Login page"
msgstr ""
#: includes/functions.php:384
msgid "Register page"
msgstr ""
#: includes/functions.php:385
msgid "Lost password page"
msgstr ""
#: includes/views/getting-started/get-pro.php:5
#: includes/views/getting-started/introduction.php:119
msgid "Frontend Dark Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:8
#: includes/views/getting-started/introduction.php:136
msgid "Admin Dashboard Dark Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:11
msgid "Auto Match OS-Theme"
msgstr ""
#: includes/views/getting-started/get-pro.php:14
msgid "Time-based Dark Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:17
#: includes/views/getting-started/introduction.php:9
msgid "Default Dark Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:20
msgid "WordPress Login & Register Page Dark Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:23
msgid "Multiple Toggle Button Styles"
msgstr ""
#: includes/views/getting-started/get-pro.php:26
#: includes/views/getting-started/introduction.php:219
msgid "Floating Dark Mode Toggle Button"
msgstr ""
#: includes/views/getting-started/get-pro.php:29
msgid "Darken Background Images"
msgstr ""
#: includes/views/getting-started/get-pro.php:32
msgid "Image Brightness, Grayscale and Insert Control"
msgstr ""
#: includes/views/getting-started/get-pro.php:35
msgid "Dynamic Dark Mode Colors"
msgstr ""
#: includes/views/getting-started/get-pro.php:38
msgid "Classic Editor Dark Mode Compatibility"
msgstr ""
#: includes/views/getting-started/get-pro.php:41
msgid "Gutenberg Editor Dark Mode Compatibility"
msgstr ""
#: includes/views/getting-started/get-pro.php:44
#: includes/views/getting-started/introduction.php:5
msgid "Toggle Button Shortcode"
msgstr ""
#: includes/views/getting-started/get-pro.php:47
#: includes/views/getting-started/introduction.php:46
msgid "Save User Choice"
msgstr ""
#: includes/views/getting-started/get-pro.php:50
#: includes/views/getting-started/introduction.php:62
msgid "Keyboard Shortcut"
msgstr ""
#: includes/views/getting-started/get-pro.php:53
msgid "Gutenberg Toggle Button Block (Coming Soon)"
msgstr ""
#: includes/views/getting-started/get-pro.php:56
msgid "Elementor Toggle Button Block (Coming Soon)"
msgstr ""
#: includes/views/getting-started/get-pro.php:62
#: includes/views/getting-started/introduction.php:233
msgid "Display Toggle Button in Menu"
msgstr ""
#: includes/views/getting-started/get-pro.php:66
msgid "Dark Mode Based Image Support"
msgstr ""
#: includes/views/getting-started/get-pro.php:70
msgid "Dark Mode Based Video Support"
msgstr ""
#: includes/views/getting-started/get-pro.php:74
msgid "Dark Mode Color Brightness, Contrast, Sepia, and Grayscale Adjustments"
msgstr ""
#: includes/views/getting-started/get-pro.php:78
msgid "Toggle Button Size Customization"
msgstr ""
#: includes/views/getting-started/get-pro.php:82
msgid "Toggle Button Position Customization"
msgstr ""
#: includes/views/getting-started/get-pro.php:86
msgid "Customize Toggle Button Text & Colors"
msgstr ""
#: includes/views/getting-started/get-pro.php:90
msgid "Dark Mode Colors Customization and Multiple Color Presets"
msgstr ""
#: includes/views/getting-started/get-pro.php:94
msgid "Excludes Specific Sections & Elements in a Page"
msgstr ""
#: includes/views/getting-started/get-pro.php:98
msgid "Exclude Pages/ Posts/ Custom Post Types"
msgstr ""
#: includes/views/getting-started/get-pro.php:102
msgid "Custom CSS For Dark Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:106
msgid "8+ Dark Mode Toggle Button Styles"
msgstr ""
#: includes/views/getting-started/get-pro.php:110
msgid "Enable/ Disable Dark Mode by URL Parameter"
msgstr ""
#: includes/views/getting-started/get-pro.php:114
msgid "Draggable Floating Switch"
msgstr ""
#: includes/views/getting-started/get-pro.php:118
msgid "Dark Mode Based Typography (Font Family + Font Size + Text Stroke)"
msgstr ""
#: includes/views/getting-started/get-pro.php:122
#: includes/views/getting-started/introduction.php:13
msgid "Performance Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:130
msgid "Realtime Dark Mode Customization"
msgstr ""
#: includes/views/getting-started/get-pro.php:134
#: includes/views/getting-started/introduction.php:312
msgid "Page Wise Dark Mode"
msgstr ""
#: includes/views/getting-started/get-pro.php:138
msgid "Custom Dark Mode Toggle Button Builder"
msgstr ""
#: includes/views/getting-started/get-pro.php:142
#: includes/views/getting-started/introduction.php:248
msgid "14+ Dark Mode Toggle Button Styles"
msgstr ""
#: includes/views/getting-started/get-pro.php:146
msgid "Dashboard Dark Mode for Specific User Roles"
msgstr ""
#: includes/views/getting-started/get-pro.php:150
msgid "Usage Analytics & Email Report (Coming Soon)"
msgstr ""
#: includes/views/getting-started/get-pro.php:155
msgid "Dark Mode Page Transition Animation (coming soon)"
msgstr ""
#: includes/views/getting-started/get-pro.php:159
msgid "Toggle Button Attention Effect Animation (coming soon)"
msgstr ""
#: includes/views/getting-started/help.php:5
msgid "01. Does Dracula Dark Mode works with all WordPress themes?"
msgstr ""
#: includes/views/getting-started/help.php:6
msgid "Yes, Dracula Dark Mode has been built to be compatible with all the popular themes like Divi, Avada, Astra, Generatepress, and almost every WordPress compatibility themes."
msgstr ""
#: includes/views/getting-started/help.php:10
msgid "02. Can I customize the dark mode settings in a real-time preview?"
msgstr ""
#: includes/views/getting-started/help.php:11
msgid "Yes, Realtime Dark Mode Customization preview is the most unique feature that Dracula Dark Mode plugin has included. You can customize dark mode colors, presets, switches, and texts, and see changes in a real-time preview mode."
msgstr ""
#: includes/views/getting-started/help.php:15
msgid "03. Can I display dark mode toggle button in menu?"
msgstr ""
#: includes/views/getting-started/help.php:16
msgid "Yes, you can display the toggle switch button in any menu of your website. Even you can set the positions of the toggle button at the start or end of the menu."
msgstr ""
#: includes/views/getting-started/help.php:20
msgid "04. Can I create & customize my own custom toggle button?"
msgstr ""
#: includes/views/getting-started/help.php:21
msgid "Yes, you can create your fully customized own custom toggle button using the Toggle Button builder and display it anywhere on your website using the shortcode. You can also customize the switch color, text, layout, icons and many other options."
msgstr ""
#: includes/views/getting-started/help.php:25
msgid "05. Can I replace light mode images & videos in dark mode?"
msgstr ""
#: includes/views/getting-started/help.php:26
msgid "Dracula Dark Mode provides an advanced image & video replacement feature where you can replace any light mode images & any self-hosted, Youtube, Vimeo, or DailyMotion videos in dark mode."
msgstr ""
#: includes/views/getting-started/help.php:30
msgid "06. Can I exclude certain sections/ elements in a page from being affected by the dark mode?"
msgstr ""
#: includes/views/getting-started/help.php:31
msgid "Yes, you can exclude certain sections or elements on any page to keep them from being affected by dark mode. You have to use proper CSS selectors for the elements in the Excludes settings to exclude them from the dark mode. Even you can also exclude them by just clicking on the elements when you are in live edit dark mode."
msgstr ""
#: includes/views/getting-started/help.php:35
msgid "07. Can I use dark mode on Admin Dashboard?"
msgstr ""
#: includes/views/getting-started/help.php:36
msgid "Yes, Dracula Dark Mode allows site admins to enable and use dark mode in their admin dashboard. You can also allow the admin dashboard dark mode based on specific user roles (Administrator, Editor, Subscriber, etc). "
msgstr ""
#: includes/views/getting-started/help.php:40
msgid "08. Can I exclude specific posts or pages from dark mode?"
msgstr ""
#: includes/views/getting-started/help.php:41
msgid "Yes, Dracula Dark Mode allows you to exclude certain pages, posts, or any custom post types from dark mode from the Excludes settings."
msgstr ""
#: includes/views/getting-started/help.php:45
msgid "09. Can I schedule dark mode to turn on and off automatically based on a specific time?"
msgstr ""
#: includes/views/getting-started/help.php:46
msgid "Yes, you can schedule dark mode to turn it on and off automatically based on your selected time. This setting will work based on the user's device time zone."
msgstr ""
#: includes/views/getting-started/help.php:50
msgid "10. Can I set different color schemes for different pages?"
msgstr ""
#: includes/views/getting-started/help.php:51
msgid "Yes, you can set different color schemes for different pages by using our page-wise dark mode feature. Using the page-wise dark mode you can use different color schemes for each page to improve your brand image."
msgstr ""
#: includes/views/getting-started/help.php:55
msgid "11. Does Dracula Dark Mode support custom CSS?"
msgstr ""
#: includes/views/getting-started/help.php:56
msgid "Yes, Dracula Dark Mode has support for both the normal mode and dark mode custom CSS. That means you can customize both the light mode and dark mode appearance."
msgstr ""
#: includes/views/getting-started/help.php:60
msgid "12. Will Dracula Dark Mode plugin slow my website loading speed?"
msgstr ""
#: includes/views/getting-started/help.php:61
msgid "Dracula Dark Mode may have a minimal impact on your site load speed. But we have given Performance Mode settings which will improve your website speed loading scripts in a deferred manner to reduce the initial page load time and improve overall website performance."
msgstr ""
#: includes/views/getting-started/help.php:72
msgid "Frequently Asked Questions"
msgstr ""
#: includes/views/getting-started/help.php:91
msgid "Need Help?"
msgstr ""
#: includes/views/getting-started/help.php:92
msgid "Read our knowledge base documentation or you can contact us directly."
msgstr ""
#: includes/views/getting-started/help.php:99
#: includes/views/getting-started/help.php:102
#: includes/views/getting-started/help.php:107
msgid "Documentation"
msgstr ""
#: includes/views/getting-started/help.php:104
msgid "Check out our detailed online documentation and video tutorials to find out more about what you can do."
msgstr ""
#: includes/views/getting-started/help.php:114
msgid "Contact"
msgstr ""
#: includes/views/getting-started/help.php:117
#: includes/views/getting-started/help.php:120
msgid "Contact us"
msgstr ""
#: includes/views/getting-started/help.php:118
msgid "We have dedicated support team to provide you fast, friendly & top-notch customer support."
msgstr ""
#: includes/views/getting-started/index.php:16
msgid "The Revolutionary WordPress Dark Mode Plugin"
msgstr ""
#: includes/views/getting-started/index.php:31
msgid "Introduction"
msgstr ""
#: includes/views/getting-started/index.php:54
msgid "Basic Usage"
msgstr ""
#: includes/views/getting-started/index.php:75
msgid "Help"
msgstr ""
#: includes/views/getting-started/index.php:93
msgid "Get PRO"
msgstr ""
#: includes/views/getting-started/introduction.php:6
msgid "You can display the dark mode toggle button anywhere on your website using the [dracula_toggle] shortcode."
msgstr ""
#: includes/views/getting-started/introduction.php:10
msgid "Dracula Dark Mode allows you to set the dark mode theme as the default theme on your website. This means that when visitors first arrives on the website, they will see the dark mode version of the site. "
msgstr ""
#: includes/views/getting-started/introduction.php:14
msgid "The Performance Mode feature improve the website's loading speed by loading scripts in a deferred manner to reduce the initial page load time and improve overall website performance. "
msgstr ""
#: includes/views/getting-started/introduction.php:17
msgid "User Roles based Dashboard Dark Mode"
msgstr ""
#: includes/views/getting-started/introduction.php:18
msgid "You can allow other users to use the dark mode color scheme on their backend admin dashboard by selectively certain user roles such as: Administrator, Editor, Author etc."
msgstr ""
#: includes/views/getting-started/introduction.php:21
msgid "Button Size Customization"
msgstr ""
#: includes/views/getting-started/introduction.php:22
msgid "Dracula Dark Mode allows you to customize the dark mode toggle button size as small, normal, large or even in a custom width and height of the button."
msgstr ""
#: includes/views/getting-started/introduction.php:25
msgid "Button Position Customization"
msgstr ""
#: includes/views/getting-started/introduction.php:26
msgid "You can also set the custom position for the dark mode toggle button as on the left, right, or even can place the toggle button in a specific location on the site for easy access."
msgstr ""
#: includes/views/getting-started/introduction.php:29
msgid "Dark Mode Based Typography"
msgstr ""
#: includes/views/getting-started/introduction.php:30
msgid "Dracula Dark Mode allows you to set a different font family with a customized font size when dark mode is enabled to improve readability and legibility of their website."
msgstr ""
#: includes/views/getting-started/introduction.php:33
msgid "Exclude Pages/ Posts"
msgstr ""
#: includes/views/getting-started/introduction.php:34
msgid "Dracula Dark Mode allows to exclude certain pages, posts or any custom post types from dark mode. This can be useful if you want to keep certain pages or posts, in their original light mode when the rest of the website is in dark mode. "
msgstr ""
#: includes/views/getting-started/introduction.php:37
msgid "Excludes Elements"
msgstr ""
#: includes/views/getting-started/introduction.php:38
msgid "You can also exclude certain sections and elements of the website from dark mode for having more control over their website's dark mode experience and can help to improve the overall usability of the site."
msgstr ""
#: includes/views/getting-started/introduction.php:42
msgid "Custom CSS"
msgstr ""
#: includes/views/getting-started/introduction.php:43
msgid "Dracula Dark Mode allows you to add your custom CSS code to customize the appearance of the website both in the light and dark mode."
msgstr ""
#: includes/views/getting-started/introduction.php:47
msgid "If any user chooses dark mode on their last visit to your website the plugin will remember their preference and automatically load the same mode when they visit the website again. "
msgstr ""
#: includes/views/getting-started/introduction.php:50
msgid "Time Based Dark Mode"
msgstr ""
#: includes/views/getting-started/introduction.php:51
msgid "Dracula Dark Mode allows to schedule the dark mode based on the time of the day. This feature can be useful for users who prefer dark mode during nighttime hours and switch back to light mode during daytime hours."
msgstr ""
#: includes/views/getting-started/introduction.php:54
msgid "URL Parameter"
msgstr ""
#: includes/views/getting-started/introduction.php:55
msgid "Dracula Dark Mode allows you to enable/ disable dark mode by adding the darkmode and lightmode parameter to the website URL."
msgstr ""
#: includes/views/getting-started/introduction.php:58
msgid "Draggable Switch"
msgstr ""
#: includes/views/getting-started/introduction.php:59
msgid "You can also enable the draggable switch option to allow users to drag the floating dark mode toggle button to the desired position on the screen."
msgstr ""
#: includes/views/getting-started/introduction.php:63
msgid "Dracula Dark Mode allows users to switch between light and dark mode using the keyboard shortcut `(Ctrl + Alt + D)`."
msgstr ""
#: includes/views/getting-started/introduction.php:74
msgid "Quick Overview"
msgstr ""
#: includes/views/getting-started/introduction.php:111
msgid "Lets take a look at the impressive features of Dracula Dark Mode"
msgstr ""
#: includes/views/getting-started/introduction.php:123
msgid "Frontend dark mode refers to the implementation of a dark color scheme on a website frontend while users interact. This feature is highly applicable for users when they spend a lot of time on your websites front end."
msgstr ""
#: includes/views/getting-started/introduction.php:139
msgid "Dracula Dark Mode allows site admins to enable and use dark mode in their admin dashboard. This provides a consistent look and feel throughout the site, and can also help to reduce eye strain when working in the admin dashboard."
msgstr ""
#: includes/views/getting-started/introduction.php:145
msgid "File Uploader"
msgstr ""
#: includes/views/getting-started/introduction.php:154
msgid "Live Edit Dark Mode"
msgstr ""
#: includes/views/getting-started/introduction.php:156
msgid "Dark Mode plugin features a live edit widget that allows users to customize the appearance of dark mode in a real-time preview. It allows users to customize a wide range of settings, including the colors customization, toggle button customization, typography settings, exclude elements, image and video replacements, and custom CSS can be customized. This feature can be handy in terms of saving you valuable time than editing on the backend."
msgstr ""
#: includes/views/getting-started/introduction.php:162
msgid "Media Player"
msgstr ""
#: includes/views/getting-started/introduction.php:171
msgid "Auto Match OS Mode"
msgstr ""
#: includes/views/getting-started/introduction.php:173
msgid "Dracula Dark Mode automatically detect users device OS theme and automatically enable websites dark mode to match the dark mode setting on the users device. This allows for a seamless experience for users who prefer to use dark mode on their device."
msgstr ""
#: includes/views/getting-started/introduction.php:185
msgid "Dynamic, Presets and Custom Colors"
msgstr ""
#: includes/views/getting-started/introduction.php:186
msgid ""
" Dracula Dark Mode use a smart dynamic algorithm to generate the dark mode color scheme automatically for your website without any complicated configuration.\n"
" The plugin also provides 8+ popular dark mode color presets and the ability to select your own color scheme."
msgstr ""
#: includes/views/getting-started/introduction.php:200
msgid "Color Adjustments"
msgstr ""
#: includes/views/getting-started/introduction.php:203
msgid "Dracula Dark Mode plugin features advanced color adjustment options for its dark mode theme, including brightness, contrast, sepia and grayscale adjustments. These options provide users with greater control over the appearance of their website in dark mode, allowing them to fine-tune the colors to their liking. This can be especially useful for users with visual impairments or those who prefer a specific aesthetic for their website in dark mode."
msgstr ""
#: includes/views/getting-started/introduction.php:221
msgid "Dracula Dark Mode features a floating dark mode toggle button with 14+ attractive styles that allows users to easily switch between the light and dark modes of a website. The floating button is designed to provide a convenient and user-friendly way to access the dark mode feature, regardless of where the user is on the website."
msgstr ""
#: includes/views/getting-started/introduction.php:234
msgid ""
"Dracula Dark Mode also allows to display the toggle button in any of your website navigation menu for an easy interacting & time-consuming dark mode enabling or disabling option for visitors. \n"
" You can also control the position of the toggle button at the start or end of the menu so that users can easily enable dark mode from the menu."
msgstr ""
#: includes/views/getting-started/introduction.php:251
msgid "Dracula Dark Mode offers a variety of toggle button styles for switching between light and dark mode. You can choose from 14+ different toggle button styles, which can be easily customized to match the website's design and branding. This allows users to give a unique look and feel to the Dark mode toggle button and enhance the overall user experience."
msgstr ""
#: includes/views/getting-started/introduction.php:267
msgid "Toggle Button Builder"
msgstr ""
#: includes/views/getting-started/introduction.php:269
msgid "Dracula Dark Mode provides a toggle button builder that gives you the ability to create your own custom dark mode toggle button and customize the appearance and behavior of the toggle switch button. You can select button layout, choose icon or upload yours, set the button height, width, text & icon color, background color, border width and color, border radius, and many more options. This feature allows you to create a unique toggle switch button that fits seamlessly with your website's design and branding."
msgstr ""
#: includes/views/getting-started/introduction.php:284
msgid "Image and Video Replacement"
msgstr ""
#: includes/views/getting-started/introduction.php:286
msgid "Sometimes all the images & videos dont look better in dark mode and you might want to replace them in dark mode. Dracula Dark Mode lets you replace the light-mode images and videos with different images and videos in dark mode. "
msgstr ""
#: includes/views/getting-started/introduction.php:298
msgid "Classic and Block Editor Compatibility"
msgstr ""
#: includes/views/getting-started/introduction.php:299
msgid "Dracula Dark Mode is designed to be compatible with both the classic editor and the block editor. This can be a great way to make the editing experience more comfortable for users, especially for those who spend a lot of time editing and creating content in WordPress."
msgstr ""
#: includes/views/getting-started/introduction.php:315
msgid "Dracula Dark Mode allows you to set and customize every page of your website separately with different dark mode color schemes, switch variations, typography styles, and many others settings. This gives you the flexibility and fully customize controls to present every page of your website more perfectly in dark mode and create a unique experience for the visitors."
msgstr ""
#: includes/views/getting-started/introduction.php:327
msgid "Never miss a valuable features"
msgstr ""

View File

@@ -1,120 +0,0 @@
# Copyright (C) 2023 wpgenie.org
# This file is distributed under the same license as the Drag & Drop Featured Image Improved plugin.
msgid ""
msgstr ""
"Project-Id-Version: Drag & Drop Featured Image Improved 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/drag-drop-featured-image-improved\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: 2023-02-13T11:39:30+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: dragandropimproved\n"
#. Plugin Name of the plugin
msgid "Drag & Drop Featured Image Improved"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/drag-drop-featured-image-improved/"
msgstr ""
#. Description of the plugin
msgid "A drag'n'drop replacement for the built in featured image metabox. Supports webp. Based on Jonathan Lundström Drag & Drop Featured Image code"
msgstr ""
#. Author of the plugin
msgid "wpgenie.org"
msgstr ""
#. Author URI of the plugin
msgid "https://wpgenie.org"
msgstr ""
#: assets/views/options.php:37
msgid "Success:"
msgstr ""
#: assets/views/options.php:37
msgid "The plugin options have been successfully updated!"
msgstr ""
#: assets/views/options.php:41
msgid "Please make sure you filled in all the required fields before submitting. At least <em><strong>one post type</strong></em> and <em><strong>one extension</strong></em> must be selected!"
msgstr ""
#: assets/views/options.php:55
msgid "Available options:"
msgstr ""
#: assets/views/options.php:62
msgid "Which post types do you want the meta box to display at?"
msgstr ""
#: assets/views/options.php:89
msgid "Which of the following file types should be supported?"
msgstr ""
#: assets/views/options.php:117
msgid "Change the capability required to customize the plugin settings"
msgstr ""
#: assets/views/options.php:119
msgid "The default capability is <code>manage_options</code> and applies to administrators."
msgstr ""
#: assets/views/options.php:123
msgid "User roles &amp; capabilities"
msgstr ""
#: assets/views/options.php:145
msgid "Update settings"
msgstr ""
#: index.php:207
msgid "Options for Drag & Drop Featured Image Improved"
msgstr ""
#: index.php:207
msgid "Featured Image"
msgstr ""
#: index.php:273
msgid "Drop files here"
msgstr ""
#: index.php:277
msgid "Select Files"
msgstr ""
#: index.php:279
msgid "from"
msgstr ""
#: index.php:285
#: index.php:289
msgid "Media Library"
msgstr ""
#: index.php:316
msgid "Allowed Files"
msgstr ""
#: index.php:366
msgid "You may only upload one image at a time!"
msgstr ""
#: index.php:381
msgid "The file you selected exceeds the maximum filesize limit."
msgstr ""
#: index.php:543
msgid "Drag & Drop Feaured image: Unknown post och attachment ID, please try again!"
msgstr ""
#: index.php:569
msgid "Drag & Drop Feaured image: An error occured, please reload page!"
msgstr ""

View File

@@ -1,4 +0,0 @@
== Changelog ==
### 1.0.0
* Release of Dropp micropayment enabled pay per use solution.

View File

@@ -1,118 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: Eazy Image Slider Block 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/"
"eazyimagesliderblock\n"
"POT-Creation-Date: 2022-12-23T16:51:50+00:00\n"
"PO-Revision-Date: 2022-12-23 18:08+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.2.2\n"
"X-Domain: eazyimagesliderblock\n"
#. Plugin Name of the plugin
msgid "Eazy Image Slider Block"
msgstr "Eazy Image Slider Block"
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.tamas-kiss.com"
msgstr "https://www.tamas-kiss.com"
#. Description of the plugin
msgid "An easy to use image slider block for the Gutenberg editor."
msgstr ""
"Ein einfach zu bedienender Bild-Slider-Block für den Gutenberg-Editor."
#. Author of the plugin
msgid "Tamás Kiss"
msgstr "Tamás Kiss"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7031
msgid "Select files from your library."
msgstr "Wähle Dateien aus der Mediathek aus."
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7086
msgid "Slider"
msgstr "Slider"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Slider options"
msgstr "Slider-Optionen"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Items"
msgstr "Elemente"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Number of slides being displayed in the viewport."
msgstr "Anzahl der Bilder, die im Ansichtsfenster angezeigt werden."
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Slide by"
msgstr "Anzahl bewegter Bilder"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Number of slides going on one \"click\"."
msgstr "Anzahl der Bilder, die auf einen “klick\" sliden."
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Show arrows"
msgstr "Pfeile anzeigen"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Show dots"
msgstr "Punkte anzeigen"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Auto width"
msgstr "Automatische Breite"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "If true the width of each slider will be its natural width."
msgstr ""
"Wenn gesetzt, entspricht die Breite der einzelnen Bilder ihrer "
"natürlichen Breite."
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Center"
msgstr "Zentriert"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Center the active slide in the viewport."
msgstr "Zentriert das aktive Bild in Ansichtsfenster."
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7090
msgid "Restrict height of the slides"
msgstr "Höhe der Bilder beschränken"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7092
msgid "Gutter"
msgstr "Innenabstand"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7092
msgid "Space between slides (in \"px\")"
msgstr "Abstand zwischen den Bildern (in “px”)"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7092
msgid "Edge padding"
msgstr "Außenabstand"
#: includes/Blocks/ImageSlider/build/block-image-slider.js:7092
msgid "Space on the outside (in \"px\")."
msgstr "Abstand auf der Außenseite (in “px”)."
#: includes/Blocks/ImageSlider/block.json
msgctxt "block title"
msgid "Image Slider"
msgstr "Image Slider"
#: includes/Blocks/ImageSlider/block.json
msgctxt "block description"
msgid "Eazy slider for images"
msgstr "Eazy slider für Bilder"

View File

@@ -1,23 +0,0 @@
{
"name": "ec-links",
"version": "0.1.1",
"description": "Amazonや楽天市場、Yahoo!ショッピングのアフィリエイトリンクを綺麗にかんたんにまとめて表示できるカスタムブロックを追加。ASPで取得したアフィリエイトリンクをそのまま貼り付けるだけで、綺麗なボタンのリンクが作れます。",
"author": "seieric",
"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",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start"
},
"devDependencies": {
"@wordpress/scripts": "^25.0.0"
},
"dependencies": {
"@wordpress/icons": "^9.14.0"
}
}

View File

@@ -1,9 +0,0 @@
*** Plugin Name: SPOT® Permanent Transaction Control Changelog ***
## [1.0.7] - 2023-01-26
### Updated
- Docs and assets
## [1.0.8] - 2023-01-27
### Updated
- Docs and assets

View File

@@ -1,36 +0,0 @@
# Changelog
Všechny změny a vylepšení pluginu jsou zaznamenány v tomto souboru.
## Verze 1.2.1 (datum vydání: 14.06.2023)
### Added
- Přidána možnost aktualizovat již existujícího uživatele, pokud ho již máte v seznamu (update_existing = true/false)
- Přidána možnost znovu přihlásit odhlášeného odběratele (resubscribe = true/false)
- Přepracována funkce odesílání dat (subscriber_data), aby se přes API posílaly jen položky opravdu vyplněné
## Verze 1.2.0 (datum vydání: 13.06.2023)
### Added
- Přidána nová kolonka pro integraci telefonního čísla
- Přidána možnost napsat tagy pro další segmentaci v rámci seznamů v Ecomail
## Verze 1.1.1 (datum vydání: 07.06.2023)
### Added
- Přidána funkcionality 'trigger_autoresponders' => true, aby se odesílaly automatizace.
## Verze 1.1.0 (datum vydání: 22.03.2023)
### Added
- Přidána možnost specifikovat field ID pro jméno a příjmení.
## Verze 1.0.0 (datum vydání: 21.03.2023)
### Added
- První vydání pluginu Elementor Ecomail Integration
- Základní integrace Ecomailu s widgetem formuláře Elementor Pro
- Přidána možnost nastavit Ecomail integraci v nastavení formuláře Elementor Pro
- Možnost zadat klíč API Ecomail do pole "Ecomail API Key"
- Možnost zadat identifikátor seznamu Ecomail (List ID) do pole "Ecomail List ID"
- Přidána Ecomail akce do možností formuláře "Actions After Submit"

View File

@@ -1,333 +0,0 @@
# Copyright (C) 2023 Email Notice WP Document Revisions 1.0
# This file is distributed under the same license as the Email Notice WP Document Revisions 1.0 package.
msgid ""
msgstr ""
"Project-Id-Version: Email Notice WP Document Revisions 1.0\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-05-31 09:31+0000\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: *.js\n"
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: includes/class-wpdr-email-notice.php:11, includes/class-wpdr-en-all-users-bulk-action.php:11, includes/class-wpdr-en-user-log-table.php:11
msgid "You are not allowed to call this file directly."
msgstr ""
#: includes/class-wpdr-email-notice.php:122
msgid "Email From"
msgstr ""
#: includes/class-wpdr-email-notice.php:123
msgid "Email Address"
msgstr ""
#: includes/class-wpdr-email-notice.php:127
msgid "Notifications"
msgstr ""
#: includes/class-wpdr-email-notice.php:128
msgid "Notification mode"
msgstr ""
#: includes/class-wpdr-email-notice.php:129
msgid "Notify users about"
msgstr ""
#: includes/class-wpdr-email-notice.php:130
msgid "Notification e-mail subject"
msgstr ""
#: includes/class-wpdr-email-notice.php:131
msgid "Notification e-mail content"
msgstr ""
#: includes/class-wpdr-email-notice.php:213, includes/class-wpdr-email-notice.php:516
msgid "Sending email notifications..."
msgstr ""
#: includes/class-wpdr-email-notice.php:214
msgid "Error sending emails."
msgstr ""
#: includes/class-wpdr-email-notice.php:215, includes/class-wpdr-email-notice.php:507, includes/class-wpdr-email-notice.php:500
msgid "Re-send notification email(s)"
msgstr ""
#: includes/class-wpdr-email-notice.php:216, includes/class-wpdr-email-notice.php:1208
msgid "email(s) out of"
msgstr ""
#: includes/class-wpdr-email-notice.php:217
msgid "notification(s) sent. Check"
msgstr ""
#: includes/class-wpdr-email-notice.php:218, includes/class-wpdr-email-notice.php:1208
msgid "sent with"
msgstr ""
#: includes/class-wpdr-email-notice.php:219
msgid "log issues. Check"
msgstr ""
#: includes/class-wpdr-email-notice.php:220
msgid "log"
msgstr ""
#: includes/class-wpdr-email-notice.php:221, includes/class-wpdr-email-notice.php:1213, includes/class-wpdr-email-notice.php:1208, includes/class-wpdr-email-notice.php:1204
msgid "for details."
msgstr ""
#: includes/class-wpdr-email-notice.php:242
msgid "By default all notification e-mails received from \"WordPress\" < wordpress@"
msgstr ""
#: includes/class-wpdr-email-notice.php:242
msgid "You can change these below."
msgstr ""
#: includes/class-wpdr-email-notice.php:280
msgid "Tags available to make e-mail subject and/or content dynamic:"
msgstr ""
#: includes/class-wpdr-email-notice.php:282
msgid "means title of the post"
msgstr ""
#: includes/class-wpdr-email-notice.php:283
msgid "means URL of the post"
msgstr ""
#: includes/class-wpdr-email-notice.php:284
msgid "means URL with title of the post"
msgstr ""
#: includes/class-wpdr-email-notice.php:285
msgid "means the name of the post author"
msgstr ""
#: includes/class-wpdr-email-notice.php:286
msgid "means excerpt of the post"
msgstr ""
#: includes/class-wpdr-email-notice.php:286
msgid "Only available to those who can edit the document"
msgstr ""
#: includes/class-wpdr-email-notice.php:287
msgid "means the first n (must be an integer number) number of word(s) extracted from the post"
msgstr ""
#: includes/class-wpdr-email-notice.php:288
msgid "means display name of the user who receives the e-mail"
msgstr ""
#: includes/class-wpdr-email-notice.php:299
msgid "Auto"
msgstr ""
#: includes/class-wpdr-email-notice.php:299
msgid "(send e-mails automatically when you publish a post)"
msgstr ""
#: includes/class-wpdr-email-notice.php:300
msgid "Manual"
msgstr ""
#: includes/class-wpdr-email-notice.php:300
msgid "(you need to press a button to send notification)"
msgstr ""
#: includes/class-wpdr-email-notice.php:325
msgid "Public posts"
msgstr ""
#: includes/class-wpdr-email-notice.php:326
msgid "Password"
msgstr ""
#: includes/class-wpdr-email-notice.php:326
msgid "protected posts (password will"
msgstr ""
#: includes/class-wpdr-email-notice.php:326
msgid "NOT"
msgstr ""
#: includes/class-wpdr-email-notice.php:326
msgid "be included in notification e-mail)"
msgstr ""
#: includes/class-wpdr-email-notice.php:327
msgid "Private posts"
msgstr ""
#: includes/class-wpdr-email-notice.php:328
msgid "Notifications are sent only to those who can read the document"
msgstr ""
#: includes/class-wpdr-email-notice.php:339
msgid "Hint: HTML tags are not allowed here, e.g.: %title_with_permalink% will revert to %title%."
msgstr ""
#: includes/class-wpdr-email-notice.php:351
msgid "Hint: HTML tags are welcome here to make your notification e-mails more personalized."
msgstr ""
#: includes/class-wpdr-email-notice.php:390
msgid "Notify me by e-mail when a new document is published"
msgstr ""
#: includes/class-wpdr-email-notice.php:392
msgid "Also send me the document as an attachment by e-mail when a new document is published"
msgstr ""
#: includes/class-wpdr-email-notice.php:482, includes/class-wpdr-email-notice.php:1330
msgid "Document Email Settings"
msgstr ""
#: includes/class-wpdr-email-notice.php:505, includes/class-wpdr-email-notice.php:503
msgid "Send notification email(s)"
msgstr ""
#: includes/class-wpdr-email-notice.php:553
msgid "Document Notification Email Log"
msgstr ""
#: includes/class-wpdr-email-notice.php:553
msgid "Document Email Log"
msgstr ""
#: includes/class-wpdr-email-notice.php:584
msgid "You do not have sufficient permissions to access this page."
msgstr ""
#: includes/class-wpdr-email-notice.php:591
msgid "Document Email Notification Log"
msgstr ""
#: includes/class-wpdr-email-notice.php:598
msgid "Search"
msgstr ""
#: includes/class-wpdr-email-notice.php:843
msgid "New document: "
msgstr ""
#: includes/class-wpdr-email-notice.php:939
msgid "Document too large to be attached."
msgstr ""
#: includes/class-wpdr-email-notice.php:937
msgid "Document attached."
msgstr ""
#: includes/class-wpdr-email-notice.php:928
msgid "Document not attached."
msgstr ""
#: includes/class-wpdr-email-notice.php:954
msgid "Failed"
msgstr ""
#: includes/class-wpdr-email-notice.php:951
msgid "Successful"
msgstr ""
#: includes/class-wpdr-email-notice.php:951
msgid "Success Attachment"
msgstr ""
#: includes/class-wpdr-email-notice.php:1100, includes/class-wpdr-email-notice.php:1116, includes/class-wpdr-email-notice.php:1140
msgid "Something went wrong"
msgstr ""
#: includes/class-wpdr-email-notice.php:1081
msgid "Not logged and/or sent out successfully any mails."
msgstr ""
#: includes/class-wpdr-email-notice.php:1213
msgid "notification(s) sent."
msgstr ""
#: includes/class-wpdr-email-notice.php:1213, includes/class-wpdr-email-notice.php:1208, includes/class-wpdr-email-notice.php:1204
msgid "Check log"
msgstr ""
#: includes/class-wpdr-email-notice.php:1208
msgid "log issues."
msgstr ""
#: includes/class-wpdr-email-notice.php:1204
msgid "Error sending notifications."
msgstr ""
#: includes/class-wpdr-email-notice.php:1331
msgid "Notification emails can be sent (or re-sent) for published documents to internal users by clicking on \"Send notification emails\"."
msgstr ""
#: includes/class-wpdr-email-notice.php:1332
msgid "Internal users are those with user-ids for the site. They can decide whether they wish to receive these notifications or not and whether the mail should include a copy of the document."
msgstr ""
#: includes/class-wpdr-en-all-users-bulk-action.php:40
msgid "Subscribe to Document Email notifications"
msgstr ""
#: includes/class-wpdr-en-all-users-bulk-action.php:41
msgid "Unsubscribe from Document Email notifications"
msgstr ""
#: includes/class-wpdr-en-all-users-bulk-action.php:68
msgid "Error subscribing users."
msgstr ""
#: includes/class-wpdr-en-all-users-bulk-action.php:77
msgid "Error unsubscribing users."
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:37
msgid "Notification email sent"
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:38
msgid "Notification emails sent"
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:55
msgid "Post Title"
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:56
msgid "E-mail sent"
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:57
msgid "User Name"
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:58
msgid "User E-mail"
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:59
msgid "Status"
msgstr ""
#: includes/class-wpdr-en-user-log-table.php:206
msgid "No e-mails sent out, yet."
msgstr ""
#. translators: Do not translate Email Notice WP Document Revisions or WP Document Revisions.
#: wpdr-email-notice.php:28
msgid "Plugin Email Notice WP Document Revisions is activated but its required plugin WP Document Revisions is not."
msgstr ""
#. translators: Do not translate Email Notice WP Document Revisions.
#: wpdr-email-notice.php:31
msgid "Plugin Email Notice WP Document Revisions will not activate its functionality."
msgstr ""

View File

@@ -1,133 +0,0 @@
# Copyright (C) 2023 Dev Kabir
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Enable CORS 1.1.6\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/enable-cors\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: 2023-07-22T19:02:20+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
"X-Domain: enable-cors\n"
#. Plugin Name of the plugin
#: src/Admin/Menu.php:36
#: src/Admin/Menu.php:37
#: src/Admin/Menu.php:87
msgid "Enable CORS"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.fiverr.com/share/7kXeLW"
msgstr ""
#. Description of the plugin
msgid "Enable Cross-Origin Resource Sharing for any or specific origin."
msgstr ""
#. Author of the plugin
msgid "Dev Kabir"
msgstr ""
#. Author URI of the plugin
msgid "https://www.fiverr.com/developerkabir"
msgstr ""
#: src/Admin/Menu.php:84
msgid "Please check your settings."
msgstr ""
#: src/Admin/Menu.php:88
msgid "Configure the server to include CORS headers in the response to allow cross-origin requests."
msgstr ""
#: src/Admin/Menu.php:92
msgid "Allowed Websites"
msgstr ""
#: src/Admin/Menu.php:93
msgid "Specify the specific website (e.g., https://devkabir.shop) that is allowed to make requests."
msgstr ""
#: src/Admin/Menu.php:95
msgid "Enter a website domain like https://example.com"
msgstr ""
#: src/Admin/Menu.php:98
msgid "Allowed Request Methods"
msgstr ""
#: src/Admin/Menu.php:99
msgid "Specify the allowed HTTP methods (e.g., GET,POST,OPTIONS) for cross-origin requests."
msgstr ""
#: src/Admin/Menu.php:101
msgid "Invalid HTTP methods"
msgstr ""
#: src/Admin/Menu.php:104
msgid "Set Response Headers"
msgstr ""
#: src/Admin/Menu.php:105
msgid "Set the desired response headers (e.g., Content-Type,Authorization) to be included in the response for other websites."
msgstr ""
#: src/Admin/Menu.php:107
msgid "Invalid HTTP headers"
msgstr ""
#: src/Admin/Menu.php:110
msgid "Allow Credentials"
msgstr ""
#: src/Admin/Menu.php:111
msgid "Configure the server to allow credentials (such as cookies or authorization headers) to be included in the cross-origin request."
msgstr ""
#: src/Admin/Menu.php:114
msgid "Save"
msgstr ""
#: src/Admin/Menu.php:115
msgid "Reset"
msgstr ""
#: src/Admin/Menu.php:118
msgid "Thank You"
msgstr ""
#: src/Admin/Menu.php:120
msgid "Found issue on non-root server installations"
msgstr ""
#: src/Admin/Menu.php:124
msgid "Notice"
msgstr ""
#: src/Admin/Menu.php:125
msgid "To enable CORS on your site, please save settings."
msgstr ""
#: src/Admin/Menu.php:126
msgid "Your API endpoint is"
msgstr ""
#: src/Admin/Menu.php:127
msgid ""
" means that any website can send a request to your\n"
" WordPress site and access the server's response. This can be a potential\n"
" security risk."
msgstr ""
#: src/Api/Settings.php:79
msgid "Settings Updated"
msgstr ""
#: src/Plugin.php:158
msgid "Settings"
msgstr ""

View File

@@ -1,4 +0,0 @@
*** WordPress Enable Virtual Card Upload Changelog ***
2023.2.14 - version 1.0.0
* Initial release

View File

@@ -1,79 +0,0 @@
# Copyright (C) 2023 Watch The Dot
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Easy Coming Soon 1.0.4\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ez-coming-soon\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: 2023-11-30T11:41:44+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: ez-coming-soon\n"
#. Plugin Name of the plugin
msgid "Easy Coming Soon"
msgstr ""
#. Plugin URI of the plugin
msgid "https://support.watchthedot.com/our-plugins/easy-coming-soon/"
msgstr ""
#. Description of the plugin
msgid "Adds a basic coming soon or maintenance page to your site. No fuss."
msgstr ""
#. Author of the plugin
msgid "Watch The Dot"
msgstr ""
#. Author URI of the plugin
msgid "https://www.watchthedot.com/"
msgstr ""
#: coming-soon.php:146
msgid "Documentation"
msgstr ""
#: coming-soon.php:296
msgid "You cannot login to the site right now. Try again when we have launched"
msgstr ""
#: coming-soon.php:309
msgid "Site coming soon. Access to the REST API not allowed"
msgstr ""
#: coming-soon.php:440
msgid "What should be used to all access to the site? Using the manage_options or bypass_coming_soon capability"
msgstr ""
#: coming-soon.php:451
msgid "Allows users who can access wp-admin to set a cookie to bypass the coming soon checks when signed out."
msgstr ""
#: coming-soon.php:456
msgid "The site's logo that will be displayed on the basic message and maintainence pages"
msgstr ""
#: coming-soon.php:462
msgid "Disable the REST API for users that can't bypass the coming soon page"
msgstr ""
#: coming-soon.php:468
msgid "Fully disable XML-RPC, including all endpoints, while the coming soon page is enabled"
msgstr ""
#: coming-soon.php:473
msgid "Redirect all requests to homepage before showing template (Doesn't work with login option)"
msgstr ""
#: coming-soon.php:478
msgid "Enable IP Whitelisting. This allows users access without logging in."
msgstr ""
#: coming-soon.php:493
msgid "List all the IP Address seperated by a new line that should be allowed through the coming soon page"
msgstr ""

View File

@@ -1,232 +0,0 @@
# Copyright (C) 2023 Wooplugin
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Filter Plus 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/filter-plus\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: 2023-10-25T03:25:31+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
"X-Domain: filter-plus\n"
#. Plugin Name of the plugin
#: core/admin/menus.php:91
#: core/admin/menus.php:92
msgid "Filter Plus"
msgstr ""
#. Plugin URI of the plugin
msgid "https://product.woooplugin.com/filter-plus"
msgstr ""
#. Description of the plugin
msgid "Advanced filter plugin for WooCommerce that allows users to add multiple filters like filter by category, product search, etc."
msgstr ""
#. Author of the plugin
msgid "Wooplugin"
msgstr ""
#. Author URI of the plugin
msgid "https://woooplugin.com/"
msgstr ""
#: bootstrap.php:43
msgid "Settings"
msgstr ""
#: bootstrap.php:45
msgid "Go To Premium"
msgstr ""
#: core/admin/menus.php:44
msgid "Shortcodes"
msgstr ""
#: core/admin/menus.php:45
msgid "Woo Plugins"
msgstr ""
#: core/admin/views/shortcodes.php:6
msgid "ShortCodes"
msgstr ""
#: core/admin/views/shortcodes.php:13
msgid "Select Template:"
msgstr ""
#: core/admin/views/shortcodes.php:23
msgid "Category List:"
msgstr ""
#: core/admin/views/shortcodes.php:28
msgid "Display Colors:"
msgstr ""
#: core/admin/views/shortcodes.php:32
msgid "Display Size:"
msgstr ""
#: core/admin/views/shortcodes.php:36
#: core/admin/views/shortcodes.php:82
msgid "Display Tags:"
msgstr ""
#: core/admin/views/shortcodes.php:43
msgid "Tag List:"
msgstr ""
#: core/admin/views/shortcodes.php:50
msgid "Display Attributes:"
msgstr ""
#: core/admin/views/shortcodes.php:57
msgid "Attribute List:"
msgstr ""
#: core/admin/views/shortcodes.php:63
msgid "Display Reviews:"
msgstr ""
#: core/admin/views/shortcodes.php:68
msgid "Display Price Range:"
msgstr ""
#: core/admin/views/shortcodes.php:73
msgid "Display Sorting:"
msgstr ""
#: core/admin/views/shortcodes.php:78
msgid "Product List:"
msgstr ""
#: core/admin/views/shortcodes.php:86
msgid "Display Categories:"
msgstr ""
#: core/admin/views/shortcodes.php:91
msgid "Copy Filer Shortcodes"
msgstr ""
#: core/admin/views/shortocdes-fields.php:43
msgid "Template"
msgstr ""
#: core/frontend/search-filter/actions.php:72
msgid "No Product Found"
msgstr ""
#: filter-plus.php:116
msgid "Activate WooCommerce"
msgstr ""
#: filter-plus.php:119
msgid "Install WooCommerce"
msgstr ""
#: filter-plus.php:129
msgid "Filter Plus requires WooCommerce , which is currently NOT RUNNING."
msgstr ""
#: templates/search-filter/sort-option.php:8
msgid "Default Sorting"
msgstr ""
#: templates/search-filter/sort-option.php:9
msgid "Sort by popularity"
msgstr ""
#: templates/search-filter/sort-option.php:10
msgid "Sort by Rating"
msgstr ""
#: templates/search-filter/sort-option.php:11
msgid "Sort by latest"
msgstr ""
#: templates/search-filter/sort-option.php:12
msgid "Sort by price: low to high"
msgstr ""
#: templates/search-filter/sort-option.php:13
msgid "Sort by price: high to low"
msgstr ""
#: templates/search-filter/template-1/left-side/categories.php:7
#: templates/search-filter/template-2/left-side/categories.php:8
msgid "Categories"
msgstr ""
#: templates/search-filter/template-1/left-side/categories.php:19
#: templates/search-filter/template-1/left-side/filter-layout-attr-grid.php:27
#: templates/search-filter/template-1/left-side/filter-layout-grid.php:22
#: templates/search-filter/template-1/left-side/filter-param.php:38
#: templates/search-filter/template-1/left-side/product-search.php:18
#: templates/search-filter/template-2/left-side/categories.php:23
#: templates/search-filter/template-2/left-side/filter-layout-attr-grid.php:33
#: templates/search-filter/template-2/left-side/filter-layout-grid.php:29
#: templates/search-filter/template-2/left-side/filter-param.php:44
#: templates/search-filter/template-2/left-side/product-search.php:18
msgid "Reset"
msgstr ""
#: templates/search-filter/template-1/left-side/filter-param.php:8
msgid "Filter By Size"
msgstr ""
#: templates/search-filter/template-1/left-side/product-search.php:12
#: templates/search-filter/template-2/left-side/product-search.php:12
msgid "Search Products"
msgstr ""
#: templates/search-filter/template-1/right-side/sort-bar.php:8
#: templates/search-filter/template-2/right-side/sort-bar.php:8
msgid "Showing"
msgstr ""
#: templates/search-filter/template-1/right-side/sort-bar.php:8
#: templates/search-filter/template-2/right-side/sort-bar.php:8
msgid " of"
msgstr ""
#: templates/search-filter/template-1/right-side/sort-bar.php:8
#: templates/search-filter/template-2/right-side/sort-bar.php:8
msgid "Products"
msgstr ""
#: templates/search-filter/template-1/template-1.php:21
msgid "Filter By Brand"
msgstr ""
#: templates/search-filter/template-2/left-side/filter-param.php:8
msgid "Best Match Item"
msgstr ""
#: templates/search-filter/template-2/left-side/title.php:7
msgid "Filters"
msgstr ""
#: templates/search-filter/template-2/left-side/title.php:8
msgid "Clean All"
msgstr ""
#: templates/search-filter/template-2/template-2.php:22
msgid "Find Favorite Item"
msgstr ""
#: utils/helper.php:667
msgid "single image blank"
msgstr ""
#: utils/helper.php:677
msgid "product image"
msgstr ""
#: utils/helper.php:723
msgid "Add to cart"
msgstr ""

View File

@@ -1,38 +0,0 @@
{
"name": "financial-ratio-block",
"version": "1.0.1",
"description": "Example block scaffolded with Create Block tool.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build --webpack-copy-php",
"format": "wp-scripts format",
"lint": "wp-scripts lint-style && wp-scripts lint-js",
"lint:fix": "wp-scripts lint-style --fix && wp-scripts lint-js --fix",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start --webpack-copy-php",
"env": "wp-env",
"audit": "npm audit --registry='https://registry.npmjs.org/'",
"audit:fix": "npm audit fix --registry='https://registry.npmjs.org/'",
"test:unit": "echo 'skipping, no tests configured yet'"
},
"devDependencies": {
"@wordpress/components": "^23.9.0",
"@wordpress/env": "^6.0.0",
"@wordpress/scripts": "^26.3.0",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2"
},
"dependencies": {
"@wordpress/blocks": "^12.10.0",
"@wordpress/element": "^5.10.0",
"mutation-observer": "^1.0.3",
"react": "^18.2.0"
}
}

View File

@@ -1,32 +0,0 @@
Changelog
0.7 Added UAT Toggle Option to toggle between LIVE and UAT
0.71 Added Toggle Options for Cart, Product Listing, and Mini Cart
0.72 Mini Sidebar Float Position Changes
0.73 Updated Float Logo Size on Checkout Page
0.74 Fixed JS Issue where it overwrites other gateways' price
0.75 Fixed display position of Float on Archive Page to below the price
0.76 Fixed Integer issue
0.76.1 Improved Security
0.76.2 Styling Updates
0.76.3 Styling Updates
0.76.4 Fixed Pricing Variable Issue
0.76.5 Styling Updates
0.76.6 Added Shortcode Functionality
0.76.7 Added Option to disable Float on Product Listing Page
0.76.8 Styling Updates
0.8 Multisite Compatibility added
0.8.1 Defined Error Message on front-end when using incorrect keys
0.8.2 Added the option to hide "For orders over x" on the mini-cart, product and cart page
0.8.3 Fixed Variable Issues and added support for products without a price
0.8.4 Updated URL's
0.8.5 Fixed Page Builder issue where there is no price/product and the shortcode is being used
0.8.5 Improved Security Fixes
0.8.5 Improved Code Readability
1.0.0 Stable Release
1.0.1 Fixed Shortcode Variable Price issue
1.0.2 Divi Page Builder Fix and Security Fixes
1.0.3 More Divi Page Builder Fixes
1.0.4 Improved Error handling and frontend tweaks
1.0.5 Improved Security
1.0.6 Updated Checkout Title

View File

@@ -1,14 +0,0 @@
== Changelog ==
= 1.1.1.0 =
* Pro [MemberPress integration](https://fusewp.com/article/sync-memberpress-email-marketing/?ref=changelog)
* Added [Campaign Monitor integration](https://fusewp.com/article/connect-wordpress-to-campaign-monitor/?ref=changelog)
* Added "any roles" support to user role sync.
* Fixed bug where mailchimp subscription fails on empty merge fields.
* PHP 8 improvements.
* Fixed bug where disabled sync rules might still be triggered.
* Fixed bug where integration select-dropdown included unconnected integrations.
* Fixed bug where Add new sync rule page left the menu inactive.
= 1.1.0.0 =
* The genesis

View File

@@ -1,846 +0,0 @@
# Copyright (C) 2023 FuseWP - Lite
# This file is distributed under the same license as the FuseWP - Lite package.
msgid ""
msgstr ""
"Project-Id-Version: FuseWP - Lite 1.1.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fusewp\n"
"POT-Creation-Date: 2023-06-26 13:26:35+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: src/core/src/Admin/AdminNotices.php:83
msgid ""
"Hey, I noticed you have been using FuseWP for at least 7 days now - that's "
"awesome! Could you please do me a BIG favor and give it a %1$s5-star rating "
"on WordPress?%2$s This will help us spread the word and boost our motivation "
"- thanks!"
msgstr ""
#: src/core/src/Admin/AdminNotices.php:87
msgid "Sure! I'd love to give a review"
msgstr ""
#: src/core/src/Admin/AdminNotices.php:89
msgid "Dismiss Forever"
msgstr ""
#: src/core/src/Admin/AdminNotices.php:108
msgid ""
"Did you know you can sync your MemberPress members to your email list based "
"on their memberships and subscription status? %sLearn more%s"
msgstr ""
#: src/core/src/Admin/AdminNotices.php:114
msgid ""
"Did you know you can sync your members in WooCommerce Memberships to your "
"email list based on their subscribed plan and membershio status? %sLearn "
"more%s"
msgstr ""
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:112
#: src/core/src/Integrations/ContactFieldEntity.php:57
msgid "Text"
msgstr ""
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:113
#: src/core/src/Admin/SettingsPage/SyncLogList.php:114
#: src/core/src/Integrations/ContactFieldEntity.php:56
msgid "Date"
msgstr ""
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:114
#: src/core/src/Integrations/ContactFieldEntity.php:58
msgid "Number"
msgstr ""
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:115
#: src/core/src/Integrations/ContactFieldEntity.php:59
msgid "Multiselect"
msgstr ""
#: src/core/src/Admin/Fields/FieldMap.php:46
msgid "Data"
msgstr ""
#: src/core/src/Admin/Fields/FieldMap.php:47
msgid "Data Type"
msgstr ""
#: src/core/src/Admin/Fields/FieldMap.php:65
msgid "Map Another Field"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:25
msgid "FuseWP Plugin"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:26
msgid "FuseWP"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:108
msgid "Request Support"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:114
msgid "Premium Upgrade"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:120
msgid "Documentation"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:125
msgid "Review"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:241
msgid "Upgrade to Pro"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:245
msgid "Need Support?"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:260
msgid "Double-Optin Control"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:261
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:133
msgid "Custom Field Mapping"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:262
msgid "Assign Tag to Users"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:271
msgid ""
"Enhance the power of FuseWP with the Pro version featuring integrations with "
"many plugins. %sLearn more%s"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:284
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:23
msgid "Get FuseWP Pro →"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:302
msgid ""
"Whether you need help or have a new feature request, let us know. %sRequest "
"Support%s"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:310
msgid ""
"Detailed documentation is also available on the plugin website. %sView "
"Knowledge Base%s"
msgstr ""
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:318
msgid ""
"If you are enjoying FuseWP and find it useful, please consider leaving a "
"★★★★★ review on WordPress.org. %sLeave a Review%s"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:31
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:40
msgid "License"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:69
msgid "You're using FuseWP Lite - no license needed. Enjoy! 😊"
msgstr ""
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
#. tag, do not translate.
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:77
msgid ""
"Already purchased? Simply %1$sretrieve your license key%2$s and enter it "
"below to connect with FuseWP Pro."
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:104
msgid "Connecting..."
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:105
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:107
msgid "Unlock Premium Features"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:120
msgid "Unlock Powerful Premium Features"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:127
msgid "Double Optin Control"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:139
msgid "Assign Tags to Users"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:145
msgid "WooCommerce Memberships Sync"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:151
msgid "MemberPress Sync"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:159
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:69
msgid "Upgrade to FuseWP Premium"
msgstr ""
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
#. tag, do not translate.
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:172
msgid ""
"<strong>Bonus</strong>: Loyal FuseWP Lite users get <u>10%% off</u> regular "
"price using the coupon code <u>10PERCENTOFF</u>, automatically applied at "
"checkout. %1$sUpgrade to Premium →%2$s"
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:217
msgid "You are not allowed to install plugins."
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:223
msgid "Please enter your license key to connect."
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:227
msgid "Only the Lite version can be upgraded."
msgstr ""
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
#. tag, do not translate.
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:260
msgid ""
"Oops! We could not automatically install an upgrade. Please download the "
"plugin from fusewp.com and install it manually."
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:299
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:360
msgid "Plugin installed & activated."
msgstr ""
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:340
msgid "You are not licensed."
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:27
msgid ""
"Thank you for using <a href=\"%1$s\" target=\"_blank\">FuseWP</a>! Please <a "
"href=\"%2$s\" target=\"_blank\">rate us ★★★★★</a> on <a href=\"%2$s\" "
"target=\"_blank\">WordPress.org</a>"
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:50
msgid "View FuseWP documentation"
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:50
msgid "Docs"
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:51
msgid "Visit customer support"
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:51
msgid "Support"
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:56
msgid "Upgrade to PRO"
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:56
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:77
msgid "Go Premium"
msgstr ""
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:71
#: src/core/src/Admin/SettingsPage/Settings.php:45
msgid "Settings"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:26
#: src/core/src/Admin/SettingsPage/Settings.php:60
msgid "General"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:44
msgid "Settings - FuseWP"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:114
msgid "Global Settings"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:117
msgid "Install Missing DB Tables"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:118
msgid "Fix Database"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:123
msgid "Remove Data on Uninstall"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:124
#: src/core/src/Admin/SettingsPage/SyncList.php:191
#: src/core/src/Admin/SettingsPage/SyncList.php:269
#: src/core/src/Admin/SettingsPage/SyncLogList.php:154
#: src/core/src/Admin/SettingsPage/SyncLogList.php:183
#: src/core/src/Admin/SettingsPage/SyncPage.php:219
#: src/core/src/Admin/SettingsPage/views/action.php:48
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:25
msgid "Delete"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:125
msgid ""
"Check this box if you would like FuseWP to completely remove all of its data "
"when the plugin is deleted."
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:141
msgid "Integrations"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:154
msgid "Configure"
msgstr ""
#: src/core/src/Admin/SettingsPage/Settings.php:156
msgid "Close"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:27
msgid "sync_rule"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:28
msgid "sync_rules"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:112
msgid "Add Your First Sync Rule"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:113
msgid ""
"Keep WordPress synchronize with external marketing integrations and third-"
"party applications."
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:114
#: src/core/src/Admin/SettingsPage/SyncPage.php:127
msgid "Add Sync Rule"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:119
msgid ""
"New to FuseWP? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
"started guide</a>."
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:138
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:29
msgid "Source"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:139
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:38
msgid "Destinations"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:140
msgid "Status"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:167
#: src/core/src/Admin/SettingsPage/SyncList.php:207
msgid "[Not Set]"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:190
#: src/core/src/Admin/SettingsPage/SyncPage.php:218
#: src/core/src/Admin/SettingsPage/views/action.php:47
msgid "Edit"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncList.php:257
msgid "Toggle Status"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncLogList.php:26
msgid "sync_log"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncLogList.php:27
msgid "sync_logs"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncLogList.php:102
msgid "No logs found."
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncLogList.php:112
msgid "Integration"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncLogList.php:113
msgid "Error Message"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncLogPage.php:38
#: src/core/src/Admin/SettingsPage/SyncLogPage.php:52
#: src/core/src/Admin/SettingsPage/SyncPage.php:135
msgid "Sync Logs"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncPage.php:75
#: src/core/src/Admin/SettingsPage/SyncPage.php:113
#: src/core/src/Admin/SettingsPage/SyncPage.php:159
msgid "Sync Rules"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncPage.php:94
#: src/core/src/Admin/SettingsPage/SyncPage.php:124
msgid "User Sync"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncPage.php:114
msgid "Logs"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncPage.php:131
msgid "Edit Sync Rule"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncPage.php:167
msgid "Add New"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncPage.php:221
#: src/core/src/Admin/SettingsPage/views/action.php:50
msgid "New Destination"
msgstr ""
#: src/core/src/Admin/SettingsPage/SyncPage.php:242
#: src/core/src/Admin/SettingsPage/views/action.php:71
msgid "Select Integration"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:47
msgid "Publish"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:60
msgid "Upgrade to FuseWP Pro %sUpgrade Now%s"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/destination.php:28
#: src/core/src/RegisterScripts.php:43
msgid ""
"No source has been selected. Add one before you can set up sync destination."
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/destination.php:47
msgid "+ Add Destination"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:15
msgid "Status:"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:17
msgid "Active"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:18
msgid "Disabled"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:31
msgid "Save"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/source.php:28
msgid ""
"Select the user role, membership plan or source plugin to synchronize from."
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:3
msgid "Custom Fields & Tagging Support"
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:4
msgid ""
"Upgrade to map custom fields to profile information and assign tags to users "
"for supported email marketing platforms."
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:7
msgid ""
"Sync users in WooCommerce memberships with your email marketing software "
"based on their subscribed plans and membership status. If a user's "
"membership status changes, they will be moved to the corresponding email "
"list."
msgstr ""
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:10
msgid ""
"Sync members in MemberPress with your email marketing software based on "
"their memberships and subscription status. If a user's subscription status "
"changes, they will be moved to the corresponding email list."
msgstr ""
#: src/core/src/AjaxHandler.php:34
msgid "No source selected."
msgstr ""
#: src/core/src/AjaxHandler.php:47
msgid "No destination item in selected source."
msgstr ""
#: src/core/src/AjaxHandler.php:58 src/core/src/AjaxHandler.php:91
msgid "Selected integration not found."
msgstr ""
#: src/core/src/AjaxHandler.php:80 src/core/src/AjaxHandler.php:123
msgid "No integration field found."
msgstr ""
#: src/core/src/AjaxHandler.php:95
msgid "Selected integration list ID not found."
msgstr ""
#: src/core/src/Functions/CustomSettingsPageApi.php:982
msgid "Activate"
msgstr ""
#: src/core/src/Functions/CustomSettingsPageApi.php:1060
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:81
msgid "Save Changes"
msgstr ""
#: src/core/src/Functions/functions.php:348
msgid "No Sync rule source has been selected."
msgstr ""
#: src/core/src/Functions/functions.php:356
msgid "Sync rule for the selected source already exist."
msgstr ""
#: src/core/src/Integrations/AbstractIntegration.php:129
msgid "rate limit exceeded"
msgstr ""
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:24
msgid "%s Error:"
msgstr ""
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:31
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:58
msgid "Connect to %s"
msgstr ""
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:36
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:63
msgid "Reconnect to %s"
msgstr ""
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:38
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:65
msgid ""
"requires external authorization. You will need to connect our application "
"with your account to proceed."
msgstr ""
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:42
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:69
msgid "Connected to"
msgstr ""
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:44
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:71
msgid "Connection Successful"
msgstr ""
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:51
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:78
msgid "Disconnect"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:21
msgid "User Data"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:22
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:55
msgid "First Name"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:23
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:56
msgid "Last Name"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:24
msgid "Biography"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:25
msgid "Website URL"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:26
msgid "Username"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:27
msgid "Display Name"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:28
msgid "Nickname"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:29
msgid "URL-friendly user name"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:30
msgid "User ID"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:31
msgid "Language"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:32
#: src/core/src/Sync/Sources/WPUserRoles.php:49
msgid "User Role"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:33
msgid "Registration Date"
msgstr ""
#: src/core/src/Integrations/AbstractSyncAction.php:34
msgid "IP Address"
msgstr ""
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:93
msgid "FuseWP Error: Client ID is %smissing in %s settings%s"
msgstr ""
#: src/core/src/Integrations/CampaignMonitor/CampaignMonitor.php:152
msgid "CampaignMonitor access token not found."
msgstr ""
#: src/core/src/Integrations/CampaignMonitor/SyncAction.php:28
#: src/core/src/Integrations/ConstantContact/SyncAction.php:52
msgid "Select List"
msgstr ""
#: src/core/src/Integrations/CampaignMonitor/SyncAction.php:45
#: src/core/src/Integrations/ConstantContact/SyncAction.php:78
#: src/core/src/Integrations/Mailchimp/SyncAction.php:54
msgid "Map Custom Fields"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:57
msgid "Job Title"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:58
msgid "Company Name"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:59
msgid "Birthday Month"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:60
msgid "Birthday Day"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:61
msgid "Anniversary"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:62
msgid "Phone Number"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:65
msgid "Home Address Street"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:66
msgid "Home Address City"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:67
msgid "Home Address State"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:68
msgid "Home Address Postal Code"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:69
msgid "Home Address Country"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:72
msgid "Work Address Street"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:73
msgid "Work Address City"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:74
msgid "Work Address State"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:75
msgid "Work Address Postal Code"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:76
msgid "Work Address Country"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:79
msgid "Other Address Street"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:80
msgid "Other Address City"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:81
msgid "Other Address State"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:82
msgid "Other Address Postal Code"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:83
msgid "Other Address Country"
msgstr ""
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:166
msgid "ConstantContact access token not found."
msgstr ""
#: src/core/src/Integrations/ConstantContact/SyncAction.php:58
#: src/core/src/Integrations/Mailchimp/SyncAction.php:35
msgid "Tags"
msgstr ""
#: src/core/src/Integrations/ConstantContact/SyncAction.php:62
msgid "Select the tags to assign to contacts"
msgstr ""
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:50
msgid "Mailchimp Settings"
msgstr ""
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:54
msgid "Sync Double Optin"
msgstr ""
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:55
msgid "Check to Enable"
msgstr ""
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:56
msgid ""
"Double optin requires users to confirm their email address before they are "
"added or subscribed."
msgstr ""
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:63
msgid ""
"Upgrade to FuseWP Premium to enable double optin when subscribing users to "
"Mailchimp during sync."
msgstr ""
#: src/core/src/Integrations/Mailchimp/Mailchimp.php:163
msgid "Mailchimp access token not found."
msgstr ""
#: src/core/src/Integrations/Mailchimp/SyncAction.php:29
msgid "Select Audience"
msgstr ""
#: src/core/src/Integrations/Mailchimp/SyncAction.php:37
msgid "tag1, tag2"
msgstr ""
#: src/core/src/Integrations/Mailchimp/SyncAction.php:38
msgid "Enter a comma-separated list of tags to assign to contacts"
msgstr ""
#: src/core/src/RegisterScripts.php:41
msgid "Are you sure?"
msgstr ""
#: src/core/src/RegisterScripts.php:44
msgid ""
"No destination added. Click the %s+ Add Destination%s button to add one."
msgstr ""
#: src/core/src/Sync/Sources/WPUserRoles.php:11
msgid "User Roles"
msgstr ""
#: src/core/src/Sync/Sources/WPUserRoles.php:39
msgid "Any Roles"
msgstr ""
#: src/core/src/Sync/Sources/WPUserRoles.php:55
msgid ""
"Sync WordPress users with your email marketing software based on their "
"registered user roles. Changes to user profile information are automatically "
"synced as well. And if a user is deleted, they are automatically "
"unsubscribed. %sLearn more%s"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "FuseWP - Lite"
msgstr ""
#. #-#-#-#-# fusewp.pot (FuseWP - Lite 1.1.1.0) #-#-#-#-#
#. Plugin URI of the plugin/theme
#. #-#-#-#-# fusewp.pot (FuseWP - Lite 1.1.1.0) #-#-#-#-#
#. Author URI of the plugin/theme
msgid "https://fusewp.com"
msgstr ""
#. Description of the plugin/theme
msgid "Connect WordPress to your email marketing software and CRM."
msgstr ""
#. Author of the plugin/theme
msgid "FuseWP Team"
msgstr ""

View File

@@ -1,180 +0,0 @@
# Copyright (C) 2023 getgenieai
# This file is distributed under the GPLv3 or later.
msgid ""
msgstr ""
"Project-Id-Version: Genie Image AI 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/genie-image\n"
"POT-Creation-Date: 2023-10-22 08:45:42+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2023-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"
#: app/Providers/SideMenuProvider.php:39 app/Providers/SideMenuProvider.php:40
msgid "Genie Image"
msgstr ""
#: app/Providers/SideMenuProvider.php:50
msgid "Image License | Genie Image"
msgstr ""
#: app/Providers/SideMenuProvider.php:51
msgid "Image License"
msgstr ""
#: app/Services/GenieChat/Cpt.php:24 app/Services/History/Cpt.php:24
msgid "Post Types"
msgstr ""
#: app/Services/GenieChat/Cpt.php:25 app/Services/History/Cpt.php:25
msgid "Post Type"
msgstr ""
#: app/Services/GenieChat/Cpt.php:26 app/Services/History/Cpt.php:26
msgid "Item Archives"
msgstr ""
#: app/Services/GenieChat/Cpt.php:27 app/Services/History/Cpt.php:27
msgid "Item Attributes"
msgstr ""
#: app/Services/GenieChat/Cpt.php:28 app/Services/History/Cpt.php:28
msgid "Parent Item:"
msgstr ""
#: app/Services/GenieChat/Cpt.php:29 app/Services/History/Cpt.php:29
msgid "All Items"
msgstr ""
#: app/Services/GenieChat/Cpt.php:30 app/Services/History/Cpt.php:30
msgid "Add New Item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:31 app/Services/History/Cpt.php:31
msgid "Add New"
msgstr ""
#: app/Services/GenieChat/Cpt.php:32 app/Services/History/Cpt.php:32
msgid "New Item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:33 app/Services/History/Cpt.php:33
msgid "Edit Item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:34 app/Services/History/Cpt.php:34
msgid "Update Item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:35 app/Services/History/Cpt.php:35
msgid "View Item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:36 app/Services/History/Cpt.php:36
msgid "View Items"
msgstr ""
#: app/Services/GenieChat/Cpt.php:37 app/Services/History/Cpt.php:37
msgid "Search Item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:38 app/Services/History/Cpt.php:38
msgid "Not found"
msgstr ""
#: app/Services/GenieChat/Cpt.php:39 app/Services/History/Cpt.php:39
msgid "Not found in Trash"
msgstr ""
#: app/Services/GenieChat/Cpt.php:40 app/Services/History/Cpt.php:40
msgid "Featured Image"
msgstr ""
#: app/Services/GenieChat/Cpt.php:41 app/Services/History/Cpt.php:41
msgid "Set featured image"
msgstr ""
#: app/Services/GenieChat/Cpt.php:42 app/Services/History/Cpt.php:42
msgid "Remove featured image"
msgstr ""
#: app/Services/GenieChat/Cpt.php:43 app/Services/History/Cpt.php:43
msgid "Use as featured image"
msgstr ""
#: app/Services/GenieChat/Cpt.php:44 app/Services/History/Cpt.php:44
msgid "Insert into item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:45 app/Services/History/Cpt.php:45
msgid "Uploaded to this item"
msgstr ""
#: app/Services/GenieChat/Cpt.php:46 app/Services/History/Cpt.php:46
msgid "Items list"
msgstr ""
#: app/Services/GenieChat/Cpt.php:47 app/Services/History/Cpt.php:47
msgid "Items list navigation"
msgstr ""
#: app/Services/GenieChat/Cpt.php:48 app/Services/History/Cpt.php:48
msgid "Filter items list"
msgstr ""
#: app/Services/GenieChat/Cpt.php:51
msgid "getgenie chat"
msgstr ""
#: app/Services/GenieChat/Cpt.php:52
msgid "getgenie chats"
msgstr ""
#: app/Services/History/Cpt.php:51
msgid "genieimage history"
msgstr ""
#: app/Services/History/Cpt.php:52
msgid "genieimage histories"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Genie Image AI"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://getgenie.ai/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Genie Image AI is the most intuitive A.I Content Wordpress Plugin that can "
"help you save time and generate unique images."
msgstr ""
#. Author of the plugin/theme
msgid "getgenieai"
msgstr ""
#: app/Services/GenieChat/Cpt.php:22
msgctxt "Post Type General Name"
msgid "getgenie chat"
msgstr ""
#: app/Services/History/Cpt.php:22
msgctxt "Post Type General Name"
msgid "genieimage histories"
msgstr ""
#: app/Services/GenieChat/Cpt.php:23
msgctxt "Post Type Singular Name"
msgid "getgenie chat"
msgstr ""
#: app/Services/History/Cpt.php:23
msgctxt "Post Type Singular Name"
msgid "genieimage history"
msgstr ""

View File

@@ -1,36 +0,0 @@
{
"name": "geounit-maps",
"version": "0.0.3",
"private": true,
"description": "This plugin adds a Gutenberg block to display gdpr compliant maps from GeoUNIT servers. No 2 click or cookie consent tools needed",
"main": "geounit-maps.php",
"author": "Unit08",
"license": "GPLv3",
"scripts": {
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:md:js": "wp-scripts lint-md-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"plugin-zip": "wp-scripts plugin-zip"
},
"devDependencies": {
"@wordpress/babel-plugin-makepot": "^4.1.1",
"@wordpress/scripts": "^25.0.0",
"url-loader": "^4.1.1"
},
"dependencies": {
"classnames": "^2.3.2",
"leaflet": "^1.9.3",
"react-leaflet": "^4.1.0"
},
"files": [ "lib", "build", "geounit-maps.php", "readme.txt" ]
}

Some files were not shown because too many files have changed in this diff Show More