Compare commits

...

13 Commits

Author SHA1 Message Date
Erwan
369bbbe084 Fixes Gem Push action 2023-06-09 11:15:04 +02:00
Kolja Zuelsdorf
257a4a458b Bump version. 2023-06-08 14:22:40 +02:00
Kolja Zuelsdorf
9c6f1daa83 Merge pull request #1783 from wpscanteam/fix/proxy-auth
Fixed using proper proxy auth credentials when updating the database and talking to the WPScan API.
2023-06-06 15:58:57 +02:00
Miguel Xavier Penha Neto
cb9701eaef Update README.md 2023-05-28 00:25:01 -03:00
Miguel Xavier Penha Neto
afc2fe2f79 Merge pull request #1784 from wpscanteam/revert-1757-master
Update Daily API Request Limit
2023-05-25 12:53:18 -03:00
Miguel Xavier Penha Neto
0dd00645f8 Revert "Update Daily API Request Limit" 2023-05-24 15:19:37 -03:00
Kolja Zuelsdorf
c7919e3c75 Fixed using proper proxy auth credentials when updating the database and talking to the WPScan API. 2023-05-17 14:44:29 +02:00
erwanlr
fb812554f3 Adds DFS 2023-03-19 19:28:09 +01:00
Erwan
63094494d3 Merge pull request #1770 from wpscanteam/dependabot/github_actions/docker/build-push-action-4
Bump docker/build-push-action from 3 to 4
2023-02-14 10:38:24 +01:00
dependabot[bot]
5ff73256e8 Bump docker/build-push-action from 3 to 4
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-31 10:01:53 +00:00
Erwan
06d861c16c Removes ruby 3.2 from build matrix 2022-12-26 21:22:12 +01:00
Erwan
cfe1a40491 Merge pull request #1757 from Aws0mee/master
Update Daily API Request Limit
2022-12-26 20:14:28 +01:00
Aws0me
933d6c7d0e Update Daily API Request Limit 2022-10-31 19:30:34 -04:00
119 changed files with 110716 additions and 16 deletions

View File

@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
ruby: [2.7, '3.0', 3.1, 3.2]
ruby: [2.7, '3.0', 3.1]
steps:
- name: Checkout code

View File

@@ -49,7 +49,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true

View File

@@ -14,7 +14,7 @@ jobs:
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.x
ruby-version: 2.6
#- name: Publish to GPR
# run: |

View File

@@ -90,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 **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.
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.
### How many API requests do you need?

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_connect_request_params.merge(
@request_params ||= Browser.instance.default_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_connect_request_params.merge(
@default_request_params ||= Browser.instance.default_request_params.merge(
headers: {
'User-Agent' => Browser.instance.default_user_agent,
'Authorization' => "Token token=#{token}"

View File

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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,84 @@
# 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

@@ -0,0 +1,915 @@
# 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

@@ -0,0 +1,59 @@
# 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

@@ -0,0 +1,21 @@
== 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

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

View File

@@ -0,0 +1,31 @@
# 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

@@ -0,0 +1,257 @@
# 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

@@ -0,0 +1,28 @@
{
"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

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

View File

@@ -0,0 +1,283 @@
# 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

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

View File

@@ -0,0 +1,271 @@
# 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

@@ -0,0 +1,52 @@
== 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

@@ -0,0 +1,31 @@
# 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

@@ -0,0 +1,528 @@
# 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

@@ -0,0 +1,13 @@
{
"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

@@ -0,0 +1,19 @@
== 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

@@ -0,0 +1,635 @@
# 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

@@ -0,0 +1,14 @@
# 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

@@ -0,0 +1,367 @@
# 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

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

View File

@@ -0,0 +1,56 @@
{
"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

@@ -0,0 +1,59 @@
# 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

@@ -0,0 +1,20 @@
{
"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

@@ -0,0 +1,954 @@
# 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

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

View File

@@ -0,0 +1,5 @@
= 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

@@ -0,0 +1,117 @@
# 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

@@ -0,0 +1,23 @@
{
"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

@@ -0,0 +1,134 @@
# 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

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

View File

@@ -0,0 +1,13 @@
{
"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

@@ -0,0 +1,121 @@
*** 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

@@ -0,0 +1,68 @@
{
"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

@@ -0,0 +1,14 @@
# 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

@@ -0,0 +1,19 @@
{
"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

@@ -0,0 +1,115 @@
# 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

@@ -0,0 +1,2 @@
### 1.0.0: TBA
* Initial Release

View File

@@ -0,0 +1,657 @@
# 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

@@ -0,0 +1,120 @@
# 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

@@ -0,0 +1,118 @@
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

@@ -0,0 +1,23 @@
{
"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

@@ -0,0 +1,9 @@
*** 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

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

View File

@@ -0,0 +1,32 @@
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

@@ -0,0 +1,36 @@
{
"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" ]
}

View File

@@ -0,0 +1,27 @@
== changelog.txt ==
= 1.0.5 =
* Added option to show custom button to account users only
* Fixed user id field showing up even if deselected in feed settings
= 1.0.4 =
* Added option for custom button with merge tag support
* Added option for turning buttons on and off
* Added message field with merge tag support
* Added media uploader to site logo
* Fixed checkbox values not showing up properly
* Fixed radio button results to show text instead of values
* Added support for str_ends_with() for php < 8.0
= 1.0.3 =
* Added option to hide fields on Teams message that have empty values
* Fixed form fields not showing on feed settings until saved
* Animated light/dark mode preview on plugin settings
* Limited character count for site name to prevent issues
* Added feed name and channel to entry notes
* Removed colons from labels if they end with colons or question marks
= 1.0.2 =
* Fixed name field
= 1.0.1 =
* Created this plugin on March 14, 2023

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,376 @@
# Copyright (C) 2022 TMD Software Pvt. Ltd.
# This file is distributed under the same license as the GST For WooCommerce.
msgid ""
msgstr ""
"Project-Id-Version: GST For WooCommerce 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gst-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: 2022-11-05T08:16:11+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: tmd-gst\n"
#. Plugin Name of the plugin
#: inc/tmd-ajax.php:12
msgid "GST For WooCommerce"
msgstr ""
#. Plugin Description
msgid "GST is a multi-stage, comprehensive and destination-based tax in India"
msgstr ""
#. Plugin Author
msgid "TMD Software Pvt. Ltd."
msgstr ""
#. Plugin Author URI
msgid "http://themultimediadesigner.com/"
msgstr ""
#: inc/tmd-ajax.php:12
msgid "Buy GST for WooCommerce (Goods and Services Tax) For More And Advance Features"
msgstr ""
#: gst-for-woocommerce/tmd-gst-main.php:220
msgid "Settings"
msgstr ""
#: gst-for-woocommerce/tmd-gst-main.php:221
msgid "Get Pro"
msgstr ""
#: gst-for-woocommerce/tmd-gst-main.php:236
msgid "Warning! Please Install WooCommerce First To Use GST for WooCommerce"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:388
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:49
msgid CGST"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:389
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:40
msgid "SGST"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:395
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:34
msgid "IGST"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:472
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:39
#: gst-for-woocommerce/admin/templates/tmd-gst.php:42
msgid "Name"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:477
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:880
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:44
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:275
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:29
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:84
#: gst-for-woocommerce/admin/templates/tmd-gst.php:43
msgid "HSN Code"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:482
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:49
#: gst-for-woocommerce/admin/templates/tmd-gst-setting.php:24
#: gst-for-woocommerce/admin/templates/tmd-gst.php:45
msgid "Status"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:485
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:52
#: gst-for-woocommerce/admin/templates/tmd-gst-setting.php:28
msgid "Enable"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:486
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:53
#: gst-for-woocommerce/admin/templates/tmd-gst-setting.php:29
msgid "Disable"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:495
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:62
msgid "Product Total"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:496
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:63
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:276
#: gst-for-woocommerce/admin/templates/tmd-gst.php:69
msgid "I-GST"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:497
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:64
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:277
#: gst-for-woocommerce/admin/templates/tmd-gst.php:70
msgid "S-GST"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:498
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:65
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:278
#: gst-for-woocommerce/admin/templates/tmd-gst.php:71
msgid "C-GST"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:939
msgid "Bill PDF"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:1784
msgid "Download"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:964
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:1788
msgid "Close"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:1136
msgid "GST Invoice"
msgstr ""
#: gst-for-woocommerce/classes/class-tmd-gst-data.php:1156
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:162
msgid "Invoice"
msgstr ""
#: gst-for-woocommerce/admin/menus/admin-menus.php:30
#: gst-for-woocommerce/admin/menus/admin-menus.php:31
msgid "GST"
msgstr ""
#: gst-for-woocommerce/admin/menus/admin-menus.php:41
#: gst-for-woocommerce/admin/menus/admin-menus.php:42
msgid "GST Setting"
msgstr ""
#: gst-for-woocommerce/admin/menus/admin-menus.php:50
#: gst-for-woocommerce/admin/menus/admin-menus.php:51
msgid "All GST Orders"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:17
msgid "Update"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:17
msgid "Save"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:21
msgid "General"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:22
msgid "Link"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:40
msgid "Please Enter Name"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:127
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:130
msgid "Category"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:180
#: gst-for-woocommerce/admin/templates/tmd-gst-add.php:183
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:272
msgid "Product"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:173
msgid "GSTIN"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:176
msgid "Office"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:179
msgid "Email"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:201
msgid "Client Name"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:214
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:78
msgid "Invoice Date"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:228
msgid "Address"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:240
msgid "Invoice Number"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:251
msgid "Phone"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:273
msgid "Quantity"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:274
msgid "Unit Price"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:279
#: gst-for-woocommerce/admin/templates/tmd-gst.php:90
msgid "Total"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:342
msgid "Sub-Total"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:348
msgid "VAT"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:355
msgid "Discount"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:361
msgid "Flat Shipping Rate"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:367
msgid "Shipping Tax"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-invoice.php:373
msgid "Grand Total"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:14
msgid "GST Report"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:24
msgid "Customer State"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:54
msgid "Date From"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:59
msgid "Date To"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:65
msgid "Filter"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:79
msgid "INVOICE NO"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:80
msgid "SALES/RETURNS"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:81
msgid "Customer Name"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:82
msgid "Customer State"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:83
msgid "Delivery State"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:85
msgid "GST Rate"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:86
msgid "Taxable Amount"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:87
msgid "Integrated Tax Amount"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:88
msgid "Central Tax Amount"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:89
msgid "State Tax Amount"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:90
msgid "GROSS AMOUNT"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:91
msgid "COD / SHIPPING"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:92
msgid "Invoice Amount"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-report.php:168
msgid "Sale"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-setting.php:35
msgid "GST Type"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-setting.php:38
msgid "Excluding"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-setting.php:39
msgid "Including"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst-setting.php:54
msgid "Save Changes"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst.php:33
msgid "Add"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst.php:34
msgid "Delete"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst.php:46
msgid "Action"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst.php:78
msgid "Edit"
msgstr ""
#: gst-for-woocommerce/admin/templates/tmd-gst.php:90
msgid "Result"
msgstr ""

View File

@@ -0,0 +1,12 @@
{
"name": "happy-cart-wordpress-plugin",
"version": "1.0.0",
"description": "Happy Cart WordPress Plugin",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "rm -rf dist/happy-cart && rm -f dist/happy-cart.zip && zip -r dist/happy-cart.zip . -x 'dist/*' '.*' '__MACOSX'"
},
"author": "",
"license": "ISC"
}

View File

@@ -0,0 +1,35 @@
# Copyright (C) 2023 SEO Themes
# This file is distributed under the GPL-2.0-or-later.
msgid ""
msgstr ""
"Project-Id-Version: Icon Widget 1.3.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/icon-widget\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-03T01:58:51+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: icon-widget\n"
#. Plugin Name of the plugin
msgid "Icon Widget"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/icon-widget/"
msgstr ""
#. Description of the plugin
msgid "Displays an icon widget with a title and description."
msgstr ""
#. Author of the plugin
msgid "SEO Themes"
msgstr ""
#. Author URI of the plugin
msgid "https://seothemes.com/"
msgstr ""

View File

@@ -0,0 +1,290 @@
# Copyright (c) 2023 Maniruzzaman Akash. All Rights Reserved.
msgid ""
msgstr ""
"Project-Id-Version: Innovator AI 1.1.0\n"
"Report-Msgid-Bugs-To: https://github.com/wp-innovator/innovator-ai/issues\n"
"Last-Translator: manirujjamanakash@gmail.com\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-01-05T06:13:39+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: innovator-ai\n"
#. Plugin Name of the plugin
#: includes/Admin/Menu.php:36
msgid "Innovator AI"
msgstr ""
#. Description of the plugin
msgid "Your Virtual AI assistant to make your WordPress content automation journey smooth and beautiful using Open AI."
msgstr ""
#. Author of the plugin
msgid "Maniruzzaman Akash<manirujjamanakash@gmail.com>"
msgstr ""
#: includes/Admin/Menu.php:39
#: build/index.js:1
msgid "Dashboard"
msgstr ""
#: includes/Admin/Menu.php:40
#: innovator-ai.php:315
#: build/index.js:1
msgid "Settings"
msgstr ""
#: includes/REST/SettingsController.php:107
#: build/index.js:1
msgid "Enable AI"
msgstr ""
#: includes/REST/SettingsController.php:121
#: build/index.js:1
msgid "Open AI API Key"
msgstr ""
#: includes/Settings/Manager.php:40
msgid "Failed to update settings"
msgstr ""
#: innovator-ai.php:316
msgid "Documentation"
msgstr ""
#: templates/app.php:2
msgid "Loading"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Yes"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "No"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "-- Select --"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Toggle"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Minute"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Hour"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Day"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Content generated"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Text copied to clipboard."
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Error"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Content hint"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Enter content hint"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Generating..."
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Generate AI Content →"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Generated Content"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Content is already copied to your clipboard"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Generate AI content"
msgstr ""
#: build/blocks/text-generator/index.js:1
msgid "Header title"
msgstr ""
#: build/blocks/text-generator/index.js:1
msgid "Header description"
msgstr ""
#: build/blocks/text-generator/index.js:1
#: build/index.js:1
msgid "Innovator AI Content Generator"
msgstr ""
#: build/blocks/text-generator/index.js:1
msgid "AI Content"
msgstr ""
#: build/blocks/text-generator/index.js:1
msgid "Generate content from"
msgstr ""
#: build/blocks/text-generator/index.js:1
msgid "Color Settings"
msgstr ""
#: build/blocks/text-generator/index.js:1
msgid "Padding/Margin Settings"
msgstr ""
#: build/blocks/text-generator/index.js:1
msgid "Inline Padding"
msgstr ""
#: build/index.js:1
msgid "Open AI API key is not configured properly."
msgstr ""
#: build/index.js:1
msgid "To get your automatic AI content generation tool, you must have to activate your Open AI API key and enable the settings."
msgstr ""
#: build/index.js:1
msgid "Go to settings"
msgstr ""
#: build/index.js:1
msgid "AI configuration is successful."
msgstr ""
#: build/index.js:1
msgid "You can now use your Automatic AI content generation tool."
msgstr ""
#: build/index.js:1
msgid "New content"
msgstr ""
#: build/index.js:1
msgid "Create New post and use our automated AI generated content features."
msgstr ""
#: build/index.js:1
msgid "Try demo"
msgstr ""
#: build/index.js:1
msgid "Please give an API key."
msgstr ""
#: build/index.js:1
msgid "Cancel"
msgstr ""
#: build/index.js:1
msgid "Saving…"
msgstr ""
#: build/index.js:1
msgid "Save"
msgstr ""
#: build/index.js:1
msgid "Settings saved"
msgstr ""
#: build/index.js:1
msgid "Settings has been saved successfully."
msgstr ""
#: build/index.js:1
msgid "Enter Open AI API Key, eg: sk-xxxx"
msgstr ""
#: build/index.js:1
msgid "Get your API key from "
msgstr ""
#: build/index.js:1
msgid "Back to dashboard"
msgstr ""
#: build/index.js:1
msgid "AI content"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block title"
msgid "AI Text Generator"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block keyword"
msgid "openai"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block keyword"
msgid "chatgpt"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block keyword"
msgid "innovator-ai"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block keyword"
msgid "inovator"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block keyword"
msgid "ai content"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block keyword"
msgid "artificial intelligencne"
msgstr ""
#: build/blocks/text-generator/block.json
msgctxt "block keyword"
msgid "innovator plugin"
msgstr ""

View File

@@ -0,0 +1,42 @@
{
"name": "wp-jobbnorge-block",
"version": "1.0.10",
"description": "Jobbnorge Block for WordPress Gutenberg",
"author": "Per Søderlind <per@soderlind.no>",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/dss-web/wp-jobbnorge-block",
"main": "build/init.js",
"files": [
"build/**",
"languages/**",
"*.{php,txt}"
],
"scripts": {
"build": "wp-scripts build",
"bump": "wp-update-project-version -s package.json -p readme.txt src/block.json wp-jobb-norge.php",
"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",
"i18n-pot": "wp i18n make-pot ./ ./languages/wp-jobbnorge-block.pot --headers='{\"Last-Translator\":\"Per Søderlind <per@soderlind.no\"}' && cp ./languages/wp-jobbnorge-block.pot ./languages/wp-jobbnorge-block-en_US.po",
"i18n-json": "wp i18n make-json languages/ --no-purge --pretty-print",
"i18n-mo": "for file in `find . -name \"*.po\"` ; do msgfmt -o ${file/.po/.mo} $file ; done",
"i18n": "npm run i18n-pot && npm run i18n-json && npm run i18n-mo"
},
"devDependencies": {
"@wordpress/scripts": "^25.1.0"
},
"dependencies": {
"@masonite/wp-project-version-sync": "^1.1.0",
"@wordpress/block-editor": "^11.1.0",
"@wordpress/blocks": "^12.1.0",
"@wordpress/components": "^23.1.0",
"@wordpress/element": "^5.1.0",
"@wordpress/i18n": "^4.24.0",
"@wordpress/icons": "^9.15.0",
"@wordpress/server-side-render": "^4.1.0",
"@wordpress/url": "^3.25.0"
}
}

View File

@@ -0,0 +1,80 @@
# Copyright (C) 2023 PerS
# This file is distributed under the same license as the Jobbnorge Block plugin.
msgid ""
msgstr ""
"Project-Id-Version: Jobbnorge Block 1.0.10\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jobbnorge-block\n"
"Last-Translator: Per Søderlind <per@soderlind.no\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-25T18:15:23+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: wp-jobbnorge-block\n"
#. Plugin Name of the plugin
msgid "Jobbnorge Block"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/jobbnorge-block/"
msgstr ""
#. Description of the plugin
msgid "List jobs at jobbnorge.no"
msgstr ""
#. Author of the plugin
msgid "PerS"
msgstr ""
#: wp-jobb-norge.php:146
#: src/edit.js:153
msgid "There are no jobs at this time."
msgstr ""
#: wp-jobb-norge.php:214
msgid "Deadline:"
msgstr ""
#: wp-jobb-norge.php:225
msgid "Read more"
msgstr ""
#: wp-jobb-norge.php:235
msgid "Scope"
msgstr ""
#: wp-jobb-norge.php:244
msgid "Duration"
msgstr ""
#: src/edit.js:94
msgid "Edit Jobbnorge URL"
msgstr ""
#: src/edit.js:143
msgid "No jobs found message"
msgstr ""
#: src/edit.js:147
msgid "Message to display if no jobs are found"
msgstr ""
#: src/edit.js:163
msgid "Item"
msgstr ""
#: src/edit.js:170
msgid "Display deadline"
msgstr ""
#: src/edit.js:175
msgid "Display scope"
msgstr ""
#: src/edit.js:180
msgid "Display duration"
msgstr ""

View File

@@ -0,0 +1,327 @@
# Copyright (C) 2023 E-Learning expert
# This file is distributed under the same license as the Just Keeping Hotel Booking Records plugin.
msgid ""
msgstr ""
"Project-Id-Version: Just Keeping Hotel Booking Records 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/just-keeping-records\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-08T14:58:38+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: just_keeping_records\n"
#. Plugin Name of the plugin
msgid "Just Keeping Hotel Booking Records"
msgstr ""
#. Description of the plugin
msgid "This is simple plugin to keep records of booking by admins."
msgstr ""
#. Author of the plugin
msgid "E-Learning expert"
msgstr ""
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/manishswamy077/"
msgstr ""
#: admin/class-hotelhandler.php:61
#: admin/class-hotelhandler.php:81
#: admin/class-hotelhandler.php:97
msgid "Hotels"
msgstr ""
#: admin/class-hotelhandler.php:82
#: admin/class-my-booking.php:439
#: admin/templates/hotel_HTML.php:26
msgid "Hotel"
msgstr ""
#: admin/class-hotelhandler.php:83
msgid "Add New Hotel"
msgstr ""
#: admin/class-hotelhandler.php:84
msgid "Edit Hotel"
msgstr ""
#: admin/class-hotelhandler.php:85
msgid "New Hotel"
msgstr ""
#: admin/class-hotelhandler.php:86
msgid "View Hotel"
msgstr ""
#: admin/class-hotelhandler.php:87
msgid "View Hotels"
msgstr ""
#: admin/class-hotelhandler.php:88
msgid "Search Hotels"
msgstr ""
#: admin/class-hotelhandler.php:89
msgid "No Hotel Found"
msgstr ""
#: admin/class-hotelhandler.php:90
msgid "No Hotel Found in Trash"
msgstr ""
#: admin/class-hotelhandler.php:91
msgid "Parent Hotel Colon"
msgstr ""
#: admin/class-hotelhandler.php:92
msgid "All Hotels"
msgstr ""
#: admin/class-hotelhandler.php:93
msgid "Hotel Archives"
msgstr ""
#: admin/class-hotelhandler.php:94
msgid "Hotel Attributes"
msgstr ""
#: admin/class-hotelhandler.php:95
msgid "Insert into Hotel"
msgstr ""
#: admin/class-hotelhandler.php:96
msgid "Uploaded to this Hotel"
msgstr ""
#: admin/class-hotelhandler.php:98
msgid "Filter Hotels List"
msgstr ""
#: admin/class-hotelhandler.php:99
msgid "Hotels List Navigation"
msgstr ""
#: admin/class-hotelhandler.php:100
msgid "Hotels List"
msgstr ""
#: admin/class-hotelhandler.php:101
msgid "Hotel Published"
msgstr ""
#: admin/class-hotelhandler.php:102
msgid "Hotel Published Privately"
msgstr ""
#: admin/class-hotelhandler.php:103
msgid "Hotel Reverted to Draft"
msgstr ""
#: admin/class-hotelhandler.php:104
msgid "Hotel Scheduled"
msgstr ""
#: admin/class-hotelhandler.php:105
msgid "Hotel Updated"
msgstr ""
#: admin/class-hotelhandler.php:124
msgid "Accommodations"
msgstr ""
#: admin/class-hotelhandler.php:125
msgid "Accommodation"
msgstr ""
#: admin/class-hotelhandler.php:126
msgid "Search Accommodations"
msgstr ""
#: admin/class-hotelhandler.php:127
msgid "Popular Accommodations"
msgstr ""
#: admin/class-hotelhandler.php:128
msgid "All Accommodations"
msgstr ""
#: admin/class-hotelhandler.php:129
msgid "Parent Accommodation"
msgstr ""
#: admin/class-hotelhandler.php:130
msgid "Edit Accommodation"
msgstr ""
#: admin/class-hotelhandler.php:131
msgid "View Accommodation"
msgstr ""
#: admin/class-hotelhandler.php:132
msgid "Update Accommodation"
msgstr ""
#: admin/class-hotelhandler.php:133
msgid "Add New Accommodation"
msgstr ""
#: admin/class-hotelhandler.php:134
msgid "New Accommodation Name"
msgstr ""
#: admin/class-hotelhandler.php:135
msgid "Add or Remove Accommodations"
msgstr ""
#: admin/class-hotelhandler.php:136
msgid "Choose from the most used accommodation"
msgstr ""
#: admin/class-hotelhandler.php:137
msgid "No accommodation found"
msgstr ""
#: admin/class-hotelhandler.php:138
msgid "No accommodation"
msgstr ""
#: admin/class-hotelhandler.php:157
#: admin/templates/location_HTML.php:5
msgid "Location"
msgstr ""
#: admin/class-my-booking.php:75
#: admin/class-my-booking.php:76
msgid "My Bookings"
msgstr ""
#: admin/class-my-booking.php:109
#: admin/class-my-booking.php:128
#: admin/class-my-booking.php:144
msgid "Bookings"
msgstr ""
#: admin/class-my-booking.php:129
msgid "Booking"
msgstr ""
#: admin/class-my-booking.php:130
msgid "Add New Booking"
msgstr ""
#: admin/class-my-booking.php:131
msgid "Edit Booking"
msgstr ""
#: admin/class-my-booking.php:132
msgid "New Booking"
msgstr ""
#: admin/class-my-booking.php:133
msgid "View Booking"
msgstr ""
#: admin/class-my-booking.php:134
msgid "View Bookings"
msgstr ""
#: admin/class-my-booking.php:135
msgid "Search Bookings"
msgstr ""
#: admin/class-my-booking.php:136
msgid "No Booking Found"
msgstr ""
#: admin/class-my-booking.php:137
msgid "No Booking Found in Trash"
msgstr ""
#: admin/class-my-booking.php:138
msgid "Parent Booking Colon"
msgstr ""
#: admin/class-my-booking.php:139
msgid "All Bookings"
msgstr ""
#: admin/class-my-booking.php:140
msgid "Booking Archives"
msgstr ""
#: admin/class-my-booking.php:141
msgid "Booking Attributes"
msgstr ""
#: admin/class-my-booking.php:142
msgid "Insert into Booking"
msgstr ""
#: admin/class-my-booking.php:143
msgid "Uploaded to this Booking"
msgstr ""
#: admin/class-my-booking.php:145
msgid "Filter Bookings List"
msgstr ""
#: admin/class-my-booking.php:146
msgid "Bookings List Navigation"
msgstr ""
#: admin/class-my-booking.php:147
msgid "Bookings List"
msgstr ""
#: admin/class-my-booking.php:148
msgid "Booking Published"
msgstr ""
#: admin/class-my-booking.php:149
msgid "Booking Published Privately"
msgstr ""
#: admin/class-my-booking.php:150
msgid "Booking Reverted to Draft"
msgstr ""
#: admin/class-my-booking.php:151
msgid "Booking Scheduled"
msgstr ""
#: admin/class-my-booking.php:152
msgid "Booking Updated"
msgstr ""
#: admin/class-my-booking.php:172
msgid "Hotel Details"
msgstr ""
#: admin/class-my-booking.php:335
#: admin/class-my-booking.php:341
#: admin/templates/hotel_HTML.php:20
#: admin/templates/hotel_HTML.php:32
msgid "Select Hotel"
msgstr ""
#: admin/class-my-booking.php:440
#: admin/templates/hotel_HTML.php:5
msgid "Booking Date"
msgstr ""
#: admin/templates/hotel_HTML.php:14
msgid "Holiday date"
msgstr ""
#: admin/templates/hotel_HTML.php:37
msgid "Select associated hotel"
msgstr ""
#: admin/templates/location_HTML.php:12
msgid "Hotel location e.g Mumbai"
msgstr ""

View File

@@ -0,0 +1,352 @@
msgid ""
msgstr ""
"Project-Id-Version: LWN Recipe 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lwn-recipe\n"
"POT-Creation-Date: 2023-02-20T17:10:47+03:00\n"
"PO-Revision-Date: 2023-02-20 17:11+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ar_JO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.2\n"
"X-Domain: lwn-recipe\n"
#. Plugin Name of the plugin
#: includes/register-recipe-type.php:9
msgid "LWN Recipe"
msgstr "وصفات LWN"
#. Plugin URI of the plugin
msgid "https://learnwithnaw.com/learning-path/3"
msgstr "https://learnwithnaw.com/learning-path/3"
#. Description of the plugin
msgid "Manage your recipes easily"
msgstr "إدارة وصفاتك بسهولة"
#. Author of the plugin
msgid "Nawras Ali"
msgstr "نورس علي"
#. Author URI of the plugin
msgid "https://learnwithnaw.com"
msgstr "ttps://learnwithnaw.com"
#: admin/admin-config.php:13
msgid "Settings"
msgstr "الإعدادات"
#: admin/admin-ui.php:7
msgid "LWN Recipe Plugin"
msgstr "إضافة وصفات LWN"
#: admin/admin-ui.php:8 includes/register-recipe-type.php:8
msgid "LWN Recipes"
msgstr "وصفات LWN"
#: admin/admin-ui.php:24
msgid "Lwn Recipe Plugin"
msgstr "إضافة وصفات LWN"
#: admin/admin-ui.php:27
msgid "Manage your recipes smoothly!"
msgstr "إدارة وصفاتك بسهولة"
#: admin/admin-ui.php:35
msgid "How to use?"
msgstr "كيفية الاستخدام"
#: admin/admin-ui.php:38
msgid ""
"Go to the bottom of admin sidebar, choose \"Lwn Recipe\", and enjoy adding "
"your recipes!"
msgstr ""
"اذهب إلى نهاية الشريط الجانبي للادمن. اختر \"وصفات LWN\" وثم استمتع بإضافة "
"وصفاتك!"
#: admin/admin-ui.php:48
msgid "How to check all recipes in the frontend?"
msgstr "كيفية عرض كل الوصفات على الواجهة الأمامية؟"
#: admin/admin-ui.php:51
msgid "Go to:"
msgstr "اذهب إلى:"
#: admin/admin-ui.php:58
msgid "All Recipes URL"
msgstr "رابط كل الوصفات"
#: admin/admin-ui.php:68
msgid "Customized Sidebar"
msgstr "الشريط الجانبي المخصص"
#: admin/admin-ui.php:71
msgid ""
"You can add your customized Sidebar to Recipe pages. Check it in the widgets "
"section!"
msgstr ""
"يمكنك إضافة الشريط الجانبي المخصص لصفحات الوصفات. ارجع لقسم ودجات الموقع!"
#: admin/admin-ui.php:81
msgid "Customized Widgets"
msgstr "الودجات المخصصة"
#: admin/admin-ui.php:84
msgid ""
"There are two recipe widgets; the first is \"Lwn Latest Recipes\", and the "
"second one is \"LWN Recipe Types\". You can check them in the widgets "
"section."
msgstr ""
"نقدم لك نوعين من الودجات. الأول: أحدث الودجات، والثاني: أنواع الودجات. يمكنك "
"التحقق منه في قسم الودجات."
#: admin/admin-ui.php:94
msgid "Useful Links"
msgstr "روابط مفيدة"
#: admin/admin-ui.php:97 admin/admin-ui.php:207
msgid ""
"If interested, you can learn more about plugin development, and how to make "
"similar plugins here."
msgstr ""
"إذا كنت مهتماً، يمكنك تعلم المزيد حول تطوير إضافات ووردبريس، وكيفية إنشاء "
"إضافات مماثلة هنا."
#: admin/admin-ui.php:106
msgid "Wordpress Development Learning Path"
msgstr "مسار تطوير تطوير إضافات ووردبريس"
#: admin/admin-ui.php:115 admin/admin-ui.php:216
msgid "Check Youtube Videos"
msgstr "شاهد فيديوهات من اليوتيوب"
#: admin/admin-ui.php:124 admin/admin-ui.php:219
msgid "Code Repo."
msgstr "مستودع الكود"
#: admin/admin-ui.php:139
msgid "What is this plugin?"
msgstr "ما هذه الإضافة؟"
#: admin/admin-ui.php:144
msgid "What is the purpose?"
msgstr "ما الهدف من الإضافة؟"
#: admin/admin-ui.php:149
msgid "Documentation"
msgstr "التوثيق"
#: admin/admin-ui.php:156
msgid "Ask for help at: help@LearnWithNaw.net"
msgstr "اطلب المساعدة عبر: help@LearnWithNaw.net"
#: admin/admin-ui.php:166
msgid ""
"LWN Recipes helps users to manage their recipes, and display them in custom "
"templates."
msgstr ""
"تساعد إضافة وصفات LWN المستخدمين على إدارة وصفاتهم وعرضها في قوالب مخصصة."
#: admin/admin-ui.php:172
msgid ""
"LWN Recipes also allows users to add custom recipes widgets and sidebar to "
"their website."
msgstr "تتيح إضافة وصفات LWN عرض ودجات وشريط جانبي مخصص للوصفات."
#: admin/admin-ui.php:190
msgid ""
"LWN Recipes was created with the intention of teaching developers how to "
"make a professional, yet simple WordPress plugin."
msgstr ""
"تم إنشاء إضافة وصفات LWN بنية مساعدة المطورين على بناء إضافة احترافية وبسيطة."
#: admin/admin-ui.php:213
msgid "WordPress Development Learning Path"
msgstr "مسار تطوير تطوير إضافات ووردبريس"
#: includes/register-recipe-metabox.php:10
msgid "Recipe Ingredients"
msgstr "مقادير الوصفة"
#: includes/register-recipe-metabox.php:18
msgid "Recipe Steps"
msgstr "خطوات الوصفة"
#: includes/register-recipe-metabox.php:26
msgid "Recipe Info"
msgstr "معلومات الوصفة"
#: includes/register-recipe-metabox.php:61
msgid "Breakfast"
msgstr "الفطور"
#: includes/register-recipe-metabox.php:62
msgid "Lunch"
msgstr "الغذاء"
#: includes/register-recipe-metabox.php:63
msgid "Dinner"
msgstr "العشاء"
#: includes/register-recipe-metabox.php:70
msgid "Short Description"
msgstr "وصف قصير"
#: includes/register-recipe-metabox.php:82
msgid "Prep Time (in Minutes)"
msgstr "وقت التحضير (بالدقائق)"
#: includes/register-recipe-metabox.php:94
msgid "Cook Time (in Minutes)"
msgstr "وقت الطهي (بالدقائق)"
#: includes/register-recipe-metabox.php:106
msgid "Total Time (in Minutes)"
msgstr "الوقت الكلي (بالدقائق)"
#: includes/register-recipe-metabox.php:118 templates/single-lwn_recipe.php:38
msgid "Servings"
msgstr "عدد الأشخاص"
#: includes/register-recipe-metabox.php:130 templates/single-lwn_recipe.php:108
msgid "Vegan?"
msgstr "نباتية؟"
#: includes/register-recipe-metabox.php:142 templates/single-lwn_recipe.php:95
msgid "Meal"
msgstr "الوجبة"
#: includes/register-recipe-metabox.php:161 templates/single-lwn_recipe.php:163
msgid "Notes"
msgstr "ملاحظات"
#: includes/register-recipe-taxonomy.php:9
msgid "Recipe Type"
msgstr "نوع الوصفة"
#: includes/register-recipe-taxonomy.php:10
msgid "Add New Recipe Type"
msgstr "إضافة نوع وصفة جديد"
#: includes/register-recipe-taxonomy.php:11
msgid "New Recipe Type Name"
msgstr "إضافة نوع وصفة جديد"
#: includes/register-recipe-type.php:10
msgid "Add New"
msgstr "إضافة جديد"
#: includes/register-recipe-type.php:11
msgid "Add New Recipe"
msgstr "إضافة وصفة جديدة"
#: includes/register-recipe-type.php:12
msgid "Edit"
msgstr "تعديل"
#: includes/register-recipe-type.php:13
msgid "Edit LWN Recipe"
msgstr "تعديل وصفة LWN"
#: includes/register-recipe-type.php:14
msgid "View"
msgstr "عرض"
#: includes/register-recipe-type.php:15
msgid "View LWN Recipe"
msgstr "عرض وصفة LWN"
#: includes/register-recipe-type.php:16
msgid "Search LWN Recipes"
msgstr "البحث في وصفات LWN"
#: includes/register-recipe-type.php:17
msgid "No LWN Recipes Found"
msgstr "لم يتم إيجاد وصفات LWN"
#: includes/register-recipe-type.php:18
msgid "No LWN Recipes Found in Trash"
msgstr "لم يتم إيجاد وصفات LWN في سلة المهملات"
#: includes/register-sidebar.php:8
msgid "LWN Recipe Sidebar"
msgstr "الشريط الجانبي لــ وصفات LWN"
#: includes/register-widgets.php:17
msgid "Lists Lwn Recipe Types"
msgstr "يسرد أنواع الوصفات"
#: includes/register-widgets.php:27 includes/register-widgets.php:62
msgid "Recipe Types"
msgstr "أنواع الوصفات"
#: includes/register-widgets.php:72 includes/register-widgets.php:182
msgid "Widget Title"
msgstr "عنوان الودجت"
#: includes/register-widgets.php:84
msgid "Hide Empty Types"
msgstr "إخفاء الأنواع الفارغة"
#: includes/register-widgets.php:116
msgid "Display Latest LWN Recipes"
msgstr "عرض أحدث وصفات LWN"
#: includes/register-widgets.php:126 includes/register-widgets.php:170
msgid "Recipes"
msgstr "الوصفات"
#: includes/register-widgets.php:194
msgid "Number of recipes"
msgstr "عدد الوصفات المعروضة"
#: templates/archive-lwn_recipe.php:49
#: templates/taxonomy-lwn_recipe_type.php:56
msgid "Older Recipes"
msgstr "الوصفات الأقدم"
#: templates/archive-lwn_recipe.php:52
#: templates/taxonomy-lwn_recipe_type.php:59
msgid "Newer Recipes"
msgstr "الوصفات الأحدث"
#: templates/single-lwn_recipe.php:51
msgid "Prep Time"
msgstr "وقت التحضير"
#: templates/single-lwn_recipe.php:58 templates/single-lwn_recipe.php:72
#: templates/single-lwn_recipe.php:87
msgid "Minutes"
msgstr "دقائق"
#: templates/single-lwn_recipe.php:65
msgid "Cook Time"
msgstr "وقت الطهي"
#: templates/single-lwn_recipe.php:80
msgid "Total Time"
msgstr "الوقت الكلي"
#: templates/single-lwn_recipe.php:115
msgid "Yes"
msgstr "نعم"
#: templates/single-lwn_recipe.php:116
msgid "No"
msgstr "لا"
#: templates/single-lwn_recipe.php:131
msgid "Ingredients"
msgstr "مقادير الوصفة"
#: templates/single-lwn_recipe.php:147
msgid "Steps"
msgstr "الخطوات"
#~ msgid "servings"
#~ msgstr "عدد الأشخاص"
#~ msgid "Vegan"
#~ msgstr "نباتية"

View File

@@ -0,0 +1,32 @@
{
"name": "mailbuzz",
"version": "1.0.0",
"description": "WP React Plugin Boilerplate - WordPress Setting via React and Rest API",
"author": "jamesstanley",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build src/settings.js --output-path=build/admin",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start src/settings.js --output-path=build/admin",
"packages-update": "wp-scripts packages-update"
},
"devDependencies": {
"@wordpress/scripts": "^23.5.0"
},
"dependencies": {
"@wordpress/media-utils": "^4.17.0",
"@wordpress/block-editor": "^11.3.0",
"@wordpress/components": "^19.15.0",
"@wordpress/url": "^3.14.0",
"autoprefixer": "^10.4.7",
"lodash": "^4.17.21",
"react-router-dom": "^6.3.0"
},
"browserslist": [
"last 3 versions",
"> 1%"
]
}

View File

@@ -0,0 +1,21 @@
{
"name": "master-pdf-viewer",
"version": "0.1.0",
"description": "PDF Viewer ",
"author": "Robiul, Fuad",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build --webpack-copy-php",
"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 --webpack-copy-php"
},
"files": [ "pdf-js", "functions.php", "master-pdf-viewer.php", "build"],
"devDependencies": {
"@wordpress/scripts": "^25.0.0"
}
}

View File

@@ -0,0 +1,16 @@
{
"name": "media-toolkit",
"version": "0.1.0",
"description": "Toolkit for media in WordPress",
"keywords": [],
"author": "David Vongries",
"license": "GPL-3.0-or-later",
"scripts": {
"watch-settings": "parcel build assets-src/js/settings-page.ts assets-src/css/settings-page.scss --dist-dir assets",
"build-settings": "parcel build assets-src/js/settings-page.ts assets-src/css/settings-page.scss --dist-dir assets"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"parcel": "^2.8.3"
}
}

View File

@@ -0,0 +1,18 @@
{
"name": "meinsehcheck-wp",
"version": "0.6.1",
"description": "Fügen Sie Ihren Seh-Check zu Ihrer WordPress-Webseite hinzu.",
"author": "Kuratorium Gutes Sehen e.V.",
"license": "GPL-2.0-or-later",
"main": "build/main.js",
"files": [
".env",
"vendor",
"composer.json",
"composer.lock",
"build",
"readme.txt",
"meinsehcheck-wp.php",
"CHANGELOG.md"
]
}

View File

@@ -0,0 +1,9 @@
== Changelog ==
0.3.1
Release bug fixes
- fix unresponsive settings checkbox
- fix css generation
0.3
Release candidate

View File

@@ -0,0 +1,671 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Novalnet payment Add-On for Gravity Forms and 3.0.0\n"
"POT-Creation-Date: 2023-01-30 15:20+0530\n"
"PO-Revision-Date: 2019-02-22 11:39+0530\n"
"Last-Translator: \n"
"Language-Team: NOVALNET AG <sales@novalnet.de>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_;_e;esc_html__\n"
"X-Poedit-SearchPath-0: .\n"
#: class-gf-novalnet.php:350
msgid "While redirecting some data has been changed. The hash check failed"
msgstr ""
#: class-gf-novalnet.php:372
msgid "The hash check failed"
msgstr ""
#: class-gf-novalnet.php:703
msgid "Enabled"
msgstr ""
#: class-gf-novalnet.php:735
msgid "day(s)"
msgstr ""
#: class-gf-novalnet.php:740
msgid "week(s)"
msgstr ""
#: class-gf-novalnet.php:745
msgid "month(s)"
msgstr ""
#: class-gf-novalnet.php:750
msgid "year(s)"
msgstr ""
#: class-gf-novalnet.php:786
msgid "Last Name"
msgstr ""
#: class-gf-novalnet.php:796
msgid "First Name"
msgstr ""
#: class-gf-novalnet.php:806
msgid "Birth Date"
msgstr ""
#: class-gf-novalnet.php:815
msgid "Company Name"
msgstr ""
#: class-gf-novalnet.php:825
msgid "Trial"
msgstr ""
#: class-gf-novalnet.php:828 class-gf-novalnet.php:835
msgid "Trial Period"
msgstr ""
#: class-gf-novalnet.php:828
msgid "Enable a trial period. The user's recurring payment will not begin until after this trial period."
msgstr ""
#: class-gf-novalnet.php:841 class-gf-novalnet.php:844
msgid "days"
msgstr ""
#: class-gf-novalnet.php:871
msgid "Please enter a valid number of days."
msgstr ""
#: class-gf-novalnet.php:887
msgid "Novalnet Payment Details"
msgstr ""
#: class-gf-novalnet.php:946
msgid "Paused"
msgstr ""
#: class-gf-novalnet.php:966
msgid "Payment Method:"
msgstr ""
#: class-gf-novalnet.php:980
msgid "Next Payment"
msgstr ""
#: class-gf-novalnet.php:989
msgid "Expiry Date"
msgstr ""
#: class-gf-novalnet.php:1060
msgid "Payment Completed"
msgstr ""
#: class-gf-novalnet.php:1061
msgid "Payment Refunded"
msgstr ""
#: class-gf-novalnet.php:1062
msgid "Payment Failed"
msgstr ""
#: class-gf-novalnet.php:1063
msgid "Subscription Created"
msgstr ""
#: class-gf-novalnet.php:1064
msgid "Subscription Canceled"
msgstr ""
#: class-gf-novalnet.php:1065
msgid "Subscription Payment Added"
msgstr ""
#: class-gf-novalnet.php:1066
msgid "Subscription Payment Failed"
msgstr ""
#: class-gf-novalnet.php:1169
msgid "Novalnet Instalment"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:45
#: includes/class-gf-novalnet-configuration.php:81
#: includes/class-gf-novalnet-helper.php:234
msgid "Please enter the required fields under Novalnet API Configuration"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:75
msgid "Notification / Webhook URL is configured successfully in Novalnet Admin Portal"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:122
msgid "Novalnet API Configuration"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:124
#, php-format
msgid "Please read the Installation Guide before you start and login to the %1$s Novalnet Admin Portal%2$s using your merchant account. To get a merchant account, mail to sales@novalnet.de or call +49 (089) 923068320."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:129
msgid "The payment will be processed in the test mode therefore amount for this transaction will not be charged."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:130
msgid "Enable test mode"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:142
msgid "<small>Get your Product activation key from the <a href=\"https://admin.novalnet.de\" target=\"_blank\">Novalnet Admin Portal</a> Projects > Choose your project > API credentials > API Signature (Product activation key) </small>."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:143
msgid "Your product activation key is a unique token for merchant authentication and payment processing."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:144
msgid "Product activation key"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:153
msgid "<small>Get your Payment access key from the Novalnet Admin Portal: Projects > Choose your project > API credentials > Payment access key</small>."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:154
msgid "Your secret key used to encrypt the data to avoid user manipulation and fraud."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:155
msgid "Payment access key"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:164
msgid "Select a Tariff ID to match the preferred tariff plan you created at the Novalnet Admin Portal for this project"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:165
msgid "Select tariff ID"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:172
msgid "Choose whether or not the payment should be charged immediately. Capture completes the transaction by transferring the funds from buyer account to merchant account. Authorize verifies payment details and reserves funds to capture it later, giving time for the merchant to decide on the order."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:173
msgid "Payment action"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:180
msgid "Capture"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:184
msgid "Authorize"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:191
msgid "(in minimum unit of currency. E.g. enter 100 which is equal to 1.00)"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:192
msgid "In case the order amount exceeds the mentioned limit, the transaction will be set on-hold till your confirmation of the transaction. You can leave the field empty if you wish to process all the transactions as on-hold."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:193
msgid "Minimum transaction amount for authorization"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:204
#: includes/class-gf-novalnet-helper.php:923
msgid "Credit/Debit Card"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:209
msgid "By enabling this option, all payments from cards issued outside the EU will be authenticated via 3DS 2.0 SCA."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:210
msgid "Enforce 3D secure payment outside EU"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:223
msgid "Subscription Management"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:228
msgid "Select the preferred Novalnet subscription tariff ID available for your project. For more information, please refer the Installation Guide"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:229
msgid "Select subscription tariff ID"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:237
msgid "Subscription payments"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:245
#: includes/class-gf-novalnet-helper.php:980
#: includes/class-gf-novalnet-helper.php:985
msgid "Direct Debit SEPA"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:250
msgid " Number of days after which the payment is debited (must be between 2 and 14 days)."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:251
#: includes/class-gf-novalnet-configuration.php:266
msgid "Payment due date (in days)"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:260
msgid "Invoice / Prepayment"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:265
msgid "Number of days given to the buyer to transfer the amount to Novalnet (must be greater than 7 days). If this field is left blank, 14 days will be set as due date by default."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:275
#: includes/class-gf-novalnet-helper.php:967
msgid "Barzahlen/viacash"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:280
msgid "Number of days given to the buyer to pay at a store. If this field is left blank, 14 days will be set as slip expiry date by default."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:281
msgid "Slip expiry date (in days)"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:290
msgid "Instalment"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:295
msgid "Select the instalment cycles that can be availed in the instalment plan"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:296
msgid "Instalment Cycles"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:297
msgid "<small>Enter instalment cycles <strong>Example: 2,4,6,10,12</strong></small>."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:304
msgid "Notification / Webhook URL Setup"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:310
msgid "Deactivate IP address control (for test purpose only)"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:321
msgid "E-mail address of the recipient"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:323
msgid "Send e-mail to"
msgstr ""
#: includes/class-gf-novalnet-configuration.php:329
msgid "The notification URL is used to keep your database/system actual and synchronizes with the Novalnet transaction status."
msgstr ""
#: includes/class-gf-novalnet-configuration.php:330
msgid "Notification / Webhook URL"
msgstr ""
#: includes/class-gf-novalnet-helper.php:588
msgid "Your order is under verification and we will soon update you with the order status. Please note that this may take upto 24 hours."
msgstr ""
#: includes/class-gf-novalnet-helper.php:596
#, php-format
msgid "Please use the following payment reference details to pay the amount of %s at a Multibanco ATM or through your internet banking."
msgstr ""
#: includes/class-gf-novalnet-helper.php:598
#, php-format
msgid "Payment Reference : %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:604
msgid "Novalnet Instalment details"
msgstr ""
#: includes/class-gf-novalnet-helper.php:607
#, php-format
msgid "Instalment %1$s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:609
#, php-format
msgid "Date: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:612
#, php-format
msgid "TID: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:615
#, php-format
msgid "Amount: %1$s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:634
#, php-format
msgid "Novalnet transaction ID: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:636
msgid "Test order"
msgstr ""
#: includes/class-gf-novalnet-helper.php:661
#, php-format
msgid "Please transfer the amount of %1$s to the following account on or before %2$s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:664
#, php-format
msgid "Please transfer the instalment cycle amount of %1$s to the following account on or before %2$s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:668
#, php-format
msgid "Please transfer the amount of %1$s to the following account."
msgstr ""
#: includes/class-gf-novalnet-helper.php:671
#, php-format
msgid "Please transfer the instalment cycle amount of %1$s to the following account."
msgstr ""
#: includes/class-gf-novalnet-helper.php:677
#, php-format
msgid "Account holder: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:679
#, php-format
msgid "Bank: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:681
#, php-format
msgid "Place: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:683
#, php-format
msgid "IBAN: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:685
#, php-format
msgid "BIC: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:693
msgid "Please use any of the following payment references when transferring the amount. This is necessary to match it with your corresponding order"
msgstr ""
#: includes/class-gf-novalnet-helper.php:695
#, php-format
msgid "Payment Reference 1: TID %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:699
#, php-format
msgid "Payment Reference 2: %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:717
#, php-format
msgid "Slip expiry date : %s"
msgstr ""
#: includes/class-gf-novalnet-helper.php:719
msgid "Store(s) near to you: "
msgstr ""
#: includes/class-gf-novalnet-helper.php:834
msgid "Payment was not successful. An error occurred"
msgstr ""
#: includes/class-gf-novalnet-helper.php:927
msgid "Sofort"
msgstr ""
#: includes/class-gf-novalnet-helper.php:931
msgid "Online bank transfer"
msgstr ""
#: includes/class-gf-novalnet-helper.php:935
msgid "PayPal"
msgstr ""
#: includes/class-gf-novalnet-helper.php:939
msgid "iDEAL"
msgstr ""
#: includes/class-gf-novalnet-helper.php:943
msgid "Alipay"
msgstr ""
#: includes/class-gf-novalnet-helper.php:947
msgid "WeChat Pay"
msgstr ""
#: includes/class-gf-novalnet-helper.php:951
msgid "Trustly"
msgstr ""
#: includes/class-gf-novalnet-helper.php:955
msgid "giropay"
msgstr ""
#: includes/class-gf-novalnet-helper.php:959
msgid "eps"
msgstr ""
#: includes/class-gf-novalnet-helper.php:963
msgid "Przelewy24"
msgstr ""
#: includes/class-gf-novalnet-helper.php:971
#: includes/class-gf-novalnet-helper.php:976
msgid "Invoice"
msgstr ""
#: includes/class-gf-novalnet-helper.php:975
msgid "Invoice with payment guarantee"
msgstr ""
#: includes/class-gf-novalnet-helper.php:984
msgid "Direct debit SEPA with payment guarantee"
msgstr ""
#: includes/class-gf-novalnet-helper.php:989
msgid "Prepayment"
msgstr ""
#: includes/class-gf-novalnet-helper.php:993
msgid "Bancontact"
msgstr ""
#: includes/class-gf-novalnet-helper.php:997
msgid "Multibanco"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1001
msgid "PostFinance Card"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1005
msgid "PostFinance E-Finance"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1009
msgid "Instalment by Invoice"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1013
msgid "Instalment by Direct Debit SEPA"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1017
msgid "Instalment by Invoice Rate"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1021
msgid "Instalment by Direct Debit SEPA Rate"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1025
msgid "Google Pay"
msgstr ""
#: includes/class-gf-novalnet-helper.php:1029
msgid "Apple Pay"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:236
#, php-format
msgid "The transaction has been confirmed on %s."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:301
#: includes/class-gf-novalnet-webhook.php:444
#, php-format
msgid "The transaction has been canceled on %1$s %2$s."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:321
#, php-format
msgid "Refund has been initiated for the TID:%1$s with the amount %2$s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:325
#, php-format
msgid " New TID:%s for the refunded amount"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:370
#, php-format
msgid "Chargeback executed successfully for the TID: %1$s amount: %2$s on %3$s. The subsequent TID: %4$s."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:385
#: includes/class-gf-novalnet-webhook.php:388
#, php-format
msgid "Credit has been successfully received for the TID: %1$s with amount %2$s on %3$s. Please refer PAID order details in our Novalnet Admin Portal for the TID: %4$s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:520
#, php-format
msgid "Transaction updated successfully for the TID: %1$s with amount %2$s and due date %3$s."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:523
#, php-format
msgid "Transaction updated successfully for the TID: %1$s with amount %2$s."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:552
#, php-format
msgid "A new instalment has been received for the Transaction ID:%1$s with amount %2$s. The new instalment transaction ID is: %3$s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:601
#, php-format
msgid "%1$s New Instalment for the order."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:618
#, php-format
msgid "Instalment has been cancelled for the TID %1$s on %2$s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:656
#, php-format
msgid "Subscription has been successfully renewed for the TID: %1$s with the amount %2$s on %3$s. The renewal TID is:%4$s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:704
#, php-format
msgid "Subscription updated successfully. You will be charged %1$s on %2$s."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:709
#, php-format
msgid "Successfully changed the payment method for next subscription on %s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:735
#, php-format
msgid "Subscription has been cancelled due to: %s. "
msgstr ""
#: includes/class-gf-novalnet-webhook.php:745
#, php-format
msgid "This subscription transaction has been suspended on %s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:756
#, php-format
msgid "Subscription has been reactivated for the TID:%1$s on %2$s %3$s. Next charging date :%4$s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:766
#, php-format
msgid "Payment Reminder %1$s has been sent to the customer."
msgstr ""
#: includes/class-gf-novalnet-webhook.php:775
#, php-format
msgid "The transaction has been submitted to the collection agency. Collection Reference: %1$s"
msgstr ""
#: includes/class-gf-novalnet-webhook.php:895
#, php-format
msgid "%1$s Novalnet Callback Script Access Report - GravityForms"
msgstr ""
#: novalnet-gravity-forms.php:20
msgid "Novalnet payment Add-On for Gravity Forms"
msgstr ""
#: novalnet-gravity-forms.php:21
msgid "PCI compliant payment solution, covering a full scope of payment services and seamless integration for easy adaptability"
msgstr ""
#: templates/render-instalment-details.php:29
#: templates/render-instalment-details.php:37
msgid "Paid"
msgstr ""
#: templates/render-instalment-details.php:29
msgid "Pending"
msgstr ""
#: templates/render-instalment-details.php:35
#: templates/render-instalment-details.php:43
msgid "Refunded"
msgstr ""
#: templates/render-instalment-details.php:35
#: templates/render-instalment-details.php:37
msgid "Cancelled"
msgstr ""

View File

@@ -0,0 +1,203 @@
# Copyright (C) 2023 Nuclia search for WP
# This file is distributed under the same license as the Nuclia search for WP package.
msgid ""
msgstr ""
"Project-Id-Version: Nuclia search for WP 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nuclia-search-for-wp\n"
"POT-Creation-Date: 2023-02-28 20:08:01+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: includes/admin/class-nuclia-admin-page-settings.php:171
msgid "Settings"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:203
msgid "Nuclia Search"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:251
msgid "Zone"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:267
msgid "Knowledge Box ID"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:283
msgid "Token"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:301
msgid "Post types to index"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:407
msgid "Your Nuclia Zone. Default: europe-1"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:435
msgid "Your Nuclia Service Access token with Contributor access (kept private)."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:463
msgid "Your Nuclia Knowledge box UID (must be public)."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:543
msgid "You can start indexing your site."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:623
msgid "Zone should not be empty."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:673
msgid "Service Access token should not be empty."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:721
msgid "Knowledge box UID should not be empty."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:779
msgid "We were unable to authenticate you against the Nuclia servers with the provided information. Please ensure that you used a valid Zone and Knowledge Box ID."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:801
msgid "It looks like your token is wrong."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:821
msgid "We succesfully managed to connect to the Nuclia servers with the provided information."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:899
msgid "No post type selected. No indexing will take place."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:973
msgid "Cannot connect to Nuclia API, please check your Knowledge Box ID."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:983
msgid "Cannot connect to Nuclia API, no response from the server."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1095
msgid "The zone, token, knowledge base id can be found or configured at your Nuclia cloud account. Please sign up at %1s and sign in at %2s."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1103
msgid "Once you provide your Nuclia Zone and API key, this plugin will be able to securely communicate with Nuclia servers."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1103
msgid "We ensure your information is correct by testing them against the Nuclia servers upon save."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1113
msgid "You can put the Nuclia Searchbox widget in any widget area."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1115
msgid "Shortcode"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1119
msgid "Copy and paste this shortcode into any content. For the features, you can choose:"
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1121
msgid "clicking on a result will open the original page rather than rendering it in the viewer."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1123
msgid "add extra parameters in URL allowing direct opening of a resource or search results."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1125
msgid "suggest results while typing search query."
msgstr ""
#: includes/admin/class-nuclia-admin-page-settings.php:1131
msgid "Your Nuclia credentials"
msgstr ""
#: includes/class-nuclia-widget.php:45
msgid "Fully functional and customizable widget to embed Nuclia's search in seconds."
msgstr ""
#: includes/class-nuclia-widget.php:55
msgid "Nuclia search"
msgstr ""
#: includes/class-nuclia-widget.php:117
#: includes/nuclia-searchbox-shortcode.php:59
msgid "Nuclia shortcode misconfigured. Please provide your zone and your kbid."
msgstr ""
#: includes/class-nuclia-widget.php:155
msgid "Navigate to links : clicking on a result will open the original page rather than rendering it in the viewer."
msgstr ""
#: includes/class-nuclia-widget.php:157
msgid "Permalinks : add extra parameters in URL allowing direct opening of a resource or search results."
msgstr ""
#: includes/class-nuclia-widget.php:159
msgid "Suggestions : suggest results while typing search query."
msgstr ""
#: includes/class-nuclia-widget.php:173
msgid "Title:"
msgstr ""
#: includes/class-nuclia-widget.php:181
msgid "Zone:"
msgstr ""
#: includes/class-nuclia-widget.php:193
msgid "Knowledgebox ID:"
msgstr ""
#: includes/class-nuclia-widget.php:201
msgid "Features:"
msgstr ""
#. translators: placeholder 1 is minimum required PHP version, placeholder 2 is
#. installed PHP version.
#: nuclia.php:161
msgid "Nuclia plugin requires PHP %1$s or higher. Youre still on %2$s."
msgstr ""
#. translators: placeholder 1 is minimum required WordPress version,
#. placeholder 2 is installed WordPress version.
#: nuclia.php:179
msgid "Nuclia plugin requires at least WordPress in version %1$s, You are on %2$s."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Nuclia search for WP"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://github.com/kalyx/nuclia-search-for-wp"
msgstr ""
#. Description of the plugin/theme
msgid "Integrate the powerful Nuclia search service with WordPress"
msgstr ""
#. Author of the plugin/theme
msgid "Serge Rauber"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://kalyx.fr"
msgstr ""

View File

@@ -0,0 +1,736 @@
# Copyright (C) 2023 Marcin Pietrzak
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Omnibus 2.3.4\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/omnibus\n"
"POT-Creation-Date: 2023-02-04 10:30:34+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Country: United States\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: assets/templates/woocommerce-version.php:7
msgid "Omnibus: installed version of WooCommerce is too low!"
msgstr ""
#: assets/templates/woocommerce-version.php:9
msgid ""
"The WooCommerce version you are using (%1$s) is too low, and our plugin "
"cannot work with it. Please update WooCommerce to at least version %2$s for "
"the Omnibus plugin to work properly."
msgstr ""
#: includes/iworks/class-iworks-omnibus.php:119
msgid ""
"If you like <strong>Omnibus</strong> please leave us a "
"%1$s&#9733;&#9733;&#9733;&#9733;&#9733;%2$s rating. A huge thanks in "
"advance!"
msgstr ""
#: includes/iworks/class-iworks-omnibus.php:160
#: includes/iworks/rate/rate.php:124
msgid "Settings"
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:217
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:224
msgid "Previous lowest price was %2$s."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:335
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:506
msgid "Omnibus Directive"
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:341
msgid "Omnibus Directive Settings"
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:349
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:143
msgid "Number of days"
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:350
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:488
msgid ""
"This controls the number of days to show. According to the Omnibus "
"Directive, minimum days is 30 after curent sale was started."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:364
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:52
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:369
msgid "Messages"
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:377
msgid "Price Message"
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:383
msgid "Default messages (recommended)."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:384
msgid "Custom messages."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:386
msgid ""
"Custom messages will be used only when you choose \"Custom messages.\" "
"option."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:393
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:327
#. translators: Do not translate {price}, it is the replacement placeholder !
msgid "Use the {price} placeholder to display price."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:395
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:329
#. translators: Do not translate {timestamp}, it is the replacement placeholder
#. !
msgid "Use the {timestamp} placeholder to display timestamp."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:397
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:331
#. translators: Do not translate {days}, it is the replacement placeholder !
msgid "Use the {days} placeholder to display days."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:399
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:333
#. translators: Do not translate {when}, it is the replacement placeholder !
msgid "Use the {when} placeholder to display date."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:403
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:390
msgid "Previous lowest price: {price}."
msgstr ""
#: includes/iworks/omnibus/class-iworks-omnibus-integration.php:405
msgid "%1$d - number of days<br>%2$s - the lowest price."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:99
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:591
msgid "Price"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:102
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:594
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:206
msgid "The lowest price in %d days."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:106
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:616
msgid "Date"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:109
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:619
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:220
msgid "The date when lowest price in %d days occurred."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Omnibus"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:127
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:125
msgid "Show on"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:128
msgid "Single Download"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:133
msgid "Admin Download List"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:138
msgid "Admin Edit Download"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-easydigitaldownloads.php:144
msgid ""
"This controls the number of days to show. According to the Omnibus "
"Directive, minimum days is 30."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:50
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:66
msgid "Display Price"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:51
msgid "Where on site"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:53
msgid "Admin Dashboard"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:69
msgid ""
"European Union guidance requires displaying the minimal price if a product "
"is on sale. But if you use publicly available discounts, e.g., \"discount "
"code\" you should consider showing omnibus prices all the time."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:72
msgid "Display minimal price"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:77
msgid "Only when the product is on sale"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:78
msgid "Always (use if you have publicly available discounts)"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:82
msgid "Where on Single Product"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:83
msgid ""
"Allows you to choose where the message is displayed. According to the "
"directive, we recommend displaying it right after the price. Some places "
"may not work depending on the theme you are using and how your site is "
"built."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:88
msgid "After the price (recommended)"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:89
msgid "Do not show. I will handle it myself."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:91
msgid "Before the product meta data"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:92
msgid "After the product meta data"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:94
msgid "Before the single product summary"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:95
msgid "After the single product summary"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:97
msgid "Before the add to cart form"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:99
msgid "Before the add to cart button"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:100
msgid "After the add to cart button"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:102
msgid "Before the add to cart quantity"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:103
msgid "After the add to cart quantity"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:106
msgid "At the begining of the content"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:107
msgid "At the end of the content"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:123
msgid "Tax"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:128
msgid "Include tax"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:132
msgid "Display price with tax"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:143
msgid "Type of Product"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:149
msgid "Simple product"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:153
msgid "Variable product: global"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:157
msgid "Variable product: variation"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:174
msgid "Tutor course"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:186
msgid "YITH Bundle"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:201
msgid "Show for type"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:235
msgid "Where to display on site"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:238
msgid ""
"Select the places where you want to display information about prices. Some "
"options may not work properly depending on the theme you're using or how "
"your site is built."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:241
msgid "Single Product"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:245
msgid "Show a single product page."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:248
msgid "Shop"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:253
msgid ""
"Show on the <a href=\"%s#woocommerce_shop_page_id\" target=\"_blank\">Shop "
"Page</a>."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:262
msgid ""
"This setting is only for WooCommerce Shop Page. It will not work if you use "
"something else, such as a page builder products page."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:265
msgid "Cart"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:270
msgid ""
"Show on the <a href=\"%s#woocommerce_cart_page_id\" target=\"_blank\">Cart "
"Page</a>."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:279
msgid ""
"This setting is only for WooCommerce Cart Page. It will not work if you use "
"something else, such as a page builder cart page."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:282
msgid "Any loop"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:286
msgid "Show on any product list."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:289
msgid "Taxonomy Page"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:293
msgid "Show on any taxonomy (tags, categories, custom taxonomies)."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:296
msgid "Related Products List"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:300
msgid "Show on the related products box."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:301
msgid ""
"This setting is only for WooCommerce related products box. It will not work "
"if you use something else, such as a page builder related products."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:304
msgid "Everywhere Else"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:308
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:137
msgid "Display anywhere else"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:309
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:138
msgid "Display anywhere else that doesn't fit any of the above."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:337
msgid "Messages Settings"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:342
msgid "No Previous Price"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:347
msgid "Display current price"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:348
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:359
msgid "Inform about it"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:349
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:360
msgid "Do not display anything"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:351
msgid "What do you want to show when no data is available?"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:354
msgid "Short Term Product"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:362
msgid "What should I do for a product with a short term life?"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:374
msgid "Custom"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:378
msgid "Allow to use custom messages"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:387
msgid "Omnibus Message"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:392
msgid ""
"A message displaying the last lowest price before the promotion was "
"introduced."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:395
msgid "No Data Message"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:398
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:977
msgid "The previous price is not available."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:400
msgid "A message informing about the lack of price data for the selected product."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:403
msgid "Short Term Product Message"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:406
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:954
msgid "This is short term product."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:408
msgid ""
"A message informing that there is no need to inform about the price due to "
"the short expiry date."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:427
msgid "Product List"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:432
msgid "Admin Dashboard List"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:436
msgid "Show on products list screen"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:445
msgid "Show short message: %2$sOD: $1$s%3$s"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:458
msgid "Product Edit"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:463
msgid "Admin Edit Screen"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:467
msgid "Show on product edit screen"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:470
msgid "Show checkbox to allow turn off Omnibus message"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:471
msgid ""
"You can not display the message for Goods which are liable to deteriorate "
"or expire rapidly."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:475
msgid "Short Term Goods"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:482
msgid "Other"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce-settings.php:487
msgid "Number Of Days"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:589
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:614
msgid "no data"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:639
msgid "Settings has been moved"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:643
msgid "Please visit new %1$ssettings page%2$s."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:871
msgid "Reviews"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:927
msgid "OD: {price}"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:992
msgid "Hide Omnibus"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-integration-woocommerce.php:994
msgid "This is a short-term product, keep the message hidden."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:115
msgid "Only on sale"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:119
msgid "Display only for the course on sale."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:126
msgid "Course single"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:131
msgid "Show or hide on a single course page."
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:145
msgid "Show on admin on"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:146
msgid "Courses list"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:153
msgid "Course edit"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:204
msgid "Omnibus Price"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:209
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:223
msgid "no data available"
msgstr ""
#: includes/iworks/omnibus/integration/class-iworks-omnibus-learnpress.php:218
msgid "Omnibus Date"
msgstr ""
#: includes/iworks/rate/rate.php:130
#: includes/iworks/rate/templates/thanks.php:28
msgid "Provide us a coffee"
msgstr ""
#: includes/iworks/rate/rate.php:474
msgid "OpenGraph"
msgstr ""
#: includes/iworks/rate/rate.php:490
msgid "OG — Better Share on Social Media"
msgstr ""
#: includes/iworks/rate/rate.php:491
msgid "https://wordpress.org/plugins/og/"
msgstr ""
#: includes/iworks/rate/templates/plugins/og.php:2
msgid "Would you like to boost your website sharing abilities?"
msgstr ""
#: includes/iworks/rate/templates/plugins/og.php:7
msgid "Don't wait, install plugin %s!"
msgstr ""
#: includes/iworks/rate/templates/plugins/og.php:17
msgid "Install"
msgstr ""
#: includes/iworks/rate/templates/thanks.php:17
msgid "Thank you for using our plugin %s!"
msgstr ""
#: includes/iworks/rate/templates/thanks.php:20
#. translators: %1$s: open anchor tag, %2$s: close anchor tag
msgid ""
"Please let us know what you think about our plugin. It is important that we "
"can develop this tool. Thank you for all the ratings, reviews and donates. "
"If you have a technical problem, please before you add a review %1$scheck "
"our FAQ%2$s or contact us if you did not find help there. We will try to "
"help you!"
msgstr ""
#: includes/iworks/rate/templates/thanks.php:24
#: includes/iworks/rate/templates/widgets/support.php:23
msgid "Get help"
msgstr ""
#: includes/iworks/rate/templates/thanks.php:26
#: includes/iworks/rate/templates/widgets/support.php:33
msgid "Add review"
msgstr ""
#: includes/iworks/rate/templates/thanks.php:30
msgid "I added review, do not show again"
msgstr ""
#: includes/iworks/rate/templates/widgets/donate.php:1
msgid ""
"However, working on plugins and technical support requires many hours of "
"work. If you want to appreciate it, you can provide me a coffee."
msgstr ""
#: includes/iworks/rate/templates/widgets/donate.php:2
msgid ""
"If every plugin user did it, I could devote myself fully to working on this "
"plugin. Thanks everyone!"
msgstr ""
#: includes/iworks/rate/templates/widgets/donate.php:3
msgid "Provide me a coffee"
msgstr ""
#: includes/iworks/rate/templates/widgets/support.php:4
msgid ""
"Do you have a technical problem? Please contact us. We will be happy to "
"help you. Or maybe you have an idea for a new feature? Please let us know "
"about it by filling the support form. We will try to add it!"
msgstr ""
#: includes/iworks/rate/templates/widgets/support.php:13
#. translators: %1$s: open anchor tag, %2$s: close anchor tag, %3$s: open
#. anchor tag, %4$s: close anchor tag
msgid ""
"Please %1$scheck our FAQ%2$s before adding a thread with technical problem. "
"If you do not find help there, %3$scheck support forum%4$s for similar "
"problems."
msgstr ""
#: includes/iworks/rate/templates/widgets/support.php:28
msgid ""
"Do you like our plugin? Could you rate him? Please let us know what you "
"think about our plugin. It is important that we can develop this tool. "
"Thank you for all the ratings, reviews and donates."
msgstr ""
#. Plugin URI of the plugin/theme
msgid "http://iworks.pl/en/plugins/omnibus/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Plugin adds two additional fields in the product edit view for the lowest "
"price and the effective date to compatibility with EU Omnibus Directive."
msgstr ""
#. Author of the plugin/theme
msgid "Marcin Pietrzak"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://iworks.pl/"
msgstr ""
#: includes/iworks/rate/rate.php:405
msgctxt "plugins home"
msgid "https://wordpress.org/plugins/%s"
msgstr ""
#: includes/iworks/rate/rate.php:411
msgctxt "plugins support home"
msgid "https://wordpress.org/support/plugin/%s"
msgstr ""

View File

@@ -0,0 +1,52 @@
# Copyright (C) 2023 Otter Text
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Otter Text - Chat Widget 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/otter_text_chat_widget\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-09T21:22:24-06:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: otter_text_chat_widget\n"
#. Plugin Name of the plugin
msgid "Otter Text - Chat Widget"
msgstr ""
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://ottertext.com"
msgstr ""
#. Description of the plugin
msgid "This plugin allows you to quickly and easily add the Otter Text widget to your website."
msgstr ""
#. Author of the plugin
msgid "Otter Text"
msgstr ""
#: admin/class-otter_text_chat_widget-admin.php:78
msgid "The Otter Text Chat Widget is not being displayed."
msgstr ""
#: admin/class-otter_text_chat_widget-admin.php:79
msgid "Click here to set the chat widget ID."
msgstr ""
#: admin/class-otter_text_chat_widget-admin.php:109
msgid "Otter Text Settings"
msgstr ""
#: admin/class-otter_text_chat_widget-admin.php:135
msgid "Chat Widget Settings"
msgstr ""
#: admin/class-otter_text_chat_widget-admin.php:141
msgid "Chat Widget ID"
msgstr ""

View File

@@ -0,0 +1,52 @@
{
"name": "tec-paystack",
"version": "1.0.3",
"description": "Paystack for The Events Calendar",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-pot": "wp i18n make-pot . languages/tec-paystack.pot",
"build-mopo": "rm -R languages/tec-paystack-en_EN.mo && cp languages/tec-paystack.pot languages/tec-paystack-en_EN.po && wp i18n make-mo languages",
"translate-US": "cp languages/tec-paystack-en_EN.po languages/tec-paystack-en_US.po && cp languages/tec-paystack-en_EN.mo languages/tec-paystack-en_US.mo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaystackOSS/plugin-the-events-calendar"
},
"author": "Paystack",
"license": "ISC",
"bugs": {
"url": "https://github.com/PaystackOSS/plugin-the-events-calendarissues"
},
"homepage": "https://github.com/PaystackOSS/plugin-the-events-calendar#readme",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-gettext": "^0.3.0",
"gulp-jshint": "^2.1.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-rtlcss": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sort": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"gulp-wp-pot": "^2.4.3",
"jshint": "^2.12.0"
},
"dependencies": {
"acorn": "^8.0.1",
"cgb-scripts": "^1.23.1",
"classnames": "^2.2.6",
"clean-css": ">=4.2.3",
"extend": "^3.0.2",
"fstream": ">=1.0.12",
"hoek": "^6.1.3",
"lodash": "^4.17.20",
"mem": "^9.0.0",
"minimist": "^1.2.5",
"npm": "^9.1.1",
"runtask": "^1.0.0",
"tar": ">=6.0.5"
}
}

View File

@@ -0,0 +1,303 @@
# Copyright (C) 2022 Paystack
# This file is distributed under the GPL3.
msgid ""
msgstr ""
"Project-Id-Version: Paystack for The Events Calendar 1.0.3\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/plugin-the-events-calendar\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-12-09T12:25:30+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: paystack-for-events-calendar\n"
#. Plugin Name of the plugin
msgid "Paystack for The Events Calendar"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/PaystackOSS/plugin-the-events-calendar"
msgstr ""
#. Description of the plugin
msgid "Add-on for The Event Calendar that allows you to accept payments for event tickets via Paystack"
msgstr ""
#. Author of the plugin
msgid "Paystack"
msgstr ""
#. Author URI of the plugin
msgid "https://www.lsdev.biz/"
msgstr ""
#: classes/class-admin.php:111
msgid "A valid Paystack subaccount code e.g. ACCT_8wlipczl8p"
msgstr ""
#: classes/class-admin.php:127
msgid "A valid Paystack split code here. e.g. SPL_98WF13Eb3w"
msgstr ""
#: classes/class-assets.php:106
msgid "Name is required"
msgstr ""
#: classes/class-assets.php:107
msgid "A valid email address is required"
msgstr ""
#: classes/class-assets.php:108
msgid "An error has occured, please refresh the page and try again."
msgstr ""
#: classes/class-assets.php:109
msgid "There was an error creating your order, please try again or contact the website administrator for assistance."
msgstr ""
#: classes/class-client.php:80
#: classes/class-client.php:120
msgid "Return status is not true."
msgstr ""
#: classes/class-client.php:83
msgid "JSON error with the transaction response."
msgstr ""
#: classes/class-client.php:86
msgid "There was an error while initilizing the transaction."
msgstr ""
#: classes/class-client.php:89
msgid "Payment fields are empty."
msgstr ""
#: classes/class-client.php:123
msgid "JSON error with the check transaction response."
msgstr ""
#: classes/class-client.php:126
msgid "There was an error while checking the transaction."
msgstr ""
#: classes/class-client.php:129
msgid "The reference field is empty"
msgstr ""
#: classes/class-gateway.php:41
msgid "Paystack"
msgstr ""
#: classes/class-gateway.php:51
msgid "Currency not supported"
msgstr ""
#: classes/class-gateway.php:70
msgid "Accept credit/debit card, Apple pay,mobile money, bank transfer, EFT, USSD, and QR payments."
msgstr ""
#: classes/class-gateway.php:118
msgid "Paystack doesn't support your selected currency"
msgstr ""
#: classes/class-gateway.php:119
msgid "Paystack does not support your store currency. Kindly set it to either NGN (&#8358;), GHS (&#x20b5;), USD (&#36;), KES (KSh), ZAR (R), or XOF (CFA)"
msgstr ""
#: classes/REST/Order_Endpoint.php:249
msgid "User abandoned"
msgstr ""
#: classes/REST/Order_Endpoint.php:255
msgid "There was a problem updating your order."
msgstr ""
#: classes/REST/Order_Endpoint.php:352
msgid "Order ID in Paystack"
msgstr ""
#: paystack/admin-views/connect/active.php:23
msgid "Additional Settings"
msgstr ""
#: paystack/admin-views/connect/active.php:32
msgid "Webhooks"
msgstr ""
#: paystack/admin-views/connect/active.php:36
msgid "To avoid situations where bad network makes it impossible to verify transactions, copy this URL and add it to the "
msgstr ""
#: paystack/admin-views/connect/active.php:36
msgid "developer settings"
msgstr ""
#: paystack/admin-views/connect/active.php:36
msgid " on your Paystack Dashboard"
msgstr ""
#: paystack/admin-views/connect/inactive.php:12
msgid "Accept online payments!"
msgstr ""
#: paystack/admin-views/connect/inactive.php:17
msgid "Start selling tickets to your events today with Paystack and let your customers pay you with their choice of payment methods."
msgstr ""
#: paystack/admin-views/connect/inactive.php:32
msgid "Get your API Keys here"
msgstr ""
#: paystack/admin-views/connect/inactive.php:42
msgid "Learn more about configuring Paystack"
msgstr ""
#: paystack/admin-views/fields/checkout-mode.php:4
msgid "Popup"
msgstr ""
#: paystack/admin-views/fields/checkout-mode.php:5
msgid "Redirect"
msgstr ""
#: paystack/admin-views/fields/checkout-mode.php:18
msgid "Checkout Mode"
msgstr ""
#: paystack/admin-views/fields/checkout-mode.php:31
#: paystack/admin-views/fields/checkout-mode.php:32
msgid "Pop up or redirect."
msgstr ""
#: paystack/admin-views/fields/country-select.php:3
msgid "Ghana"
msgstr ""
#: paystack/admin-views/fields/country-select.php:4
msgid "Nigeria"
msgstr ""
#: paystack/admin-views/fields/country-select.php:5
msgid "South Africa"
msgstr ""
#: paystack/admin-views/fields/country-select.php:24
msgid "Select your country of operation"
msgstr ""
#: paystack/admin-views/fields/mode-select.php:4
msgid "Test Mode"
msgstr ""
#: paystack/admin-views/fields/mode-select.php:5
msgid "Live Mode"
msgstr ""
#: paystack/admin-views/main.php:34
msgid "Paystack Logo Image"
msgstr ""
#: paystack/admin-views/main.php:40
msgid "Credit and debit card payments"
msgstr ""
#: paystack/admin-views/main.php:43
msgid "Alternative payment methods e.g Apple Pay, Mobile money, EFT, and more"
msgstr ""
#: paystack/admin-views/main.php:46
msgid "Delight customers with a seamless payments experience"
msgstr ""
#: paystack/admin-views/main.php:49
msgid "Enjoy phenomenal transaction success rates"
msgstr ""
#: paystack/admin-views/modal/signup-complete.php:24
msgid "You are now connected to Paystack, here's what's next..."
msgstr ""
#. Translators: %1$s: opening `a` tag to the knowledge base article. %2$s: closing `a` tag to the knowledge base article.
#: paystack/admin-views/modal/signup-complete/content.php:20
msgid "Paystack allows you to accept credit or debit cards directly on your website. Because of this, your site needs to maintain %1$sPCI-DSS compliance%2$s."
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:27
msgid "Event Tickets never stores sensitive information like card details to your server and works seamlessly with SSL certificates."
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:29
msgid "Compliance is comprised of, but not limited to:"
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:33
msgid "Using a trusted, secure hosting provider &mdash; preferably one which claims and actively promotes PCI compliance."
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:36
msgid "Maintain security best practices when setting passwords and limit access to your server."
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:39
msgid "Implement an SSL certificate to keep your ticket sales secure."
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:42
msgid "Keep WordPress and plugins up to date to ensure latest security fixes are present."
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:52
msgid "Close this modal window"
msgstr ""
#: paystack/admin-views/modal/signup-complete/content.php:54
msgid "Got it, thanks!"
msgstr ""
#: paystack/admin-views/modal/signup-complete/notice-test-mode.php:24
msgid "You have connected your account for test mode. You will need to connect again once you are in live mode."
msgstr ""
#: paystack/admin-views/signup-link.php:26
msgid "Test Secret Key"
msgstr ""
#: paystack/admin-views/signup-link.php:35
msgid "Test Public Key"
msgstr ""
#: paystack/admin-views/signup-link.php:54
msgid "Live Secret Key"
msgstr ""
#: paystack/admin-views/signup-link.php:63
msgid "Live Public Key"
msgstr ""
#: paystack/admin-views/signup-link.php:79
msgid "Start transacting with Paystack"
msgstr ""
#. Translators: %1$s: Plural `Tickets` label.
#: paystack/checkout/container.php:45
msgid "Purchase %1$s"
msgstr ""
#: paystack/checkout/container.php:55
msgid "Supported payment methods."
msgstr ""
#: paystack/checkout/fields/name.php:32
msgid "Name"
msgstr ""
#: paystack/checkout/fields/submit.php:27
msgid "Purchase Tickets"
msgstr ""
#: paystack/checkout/order/details/capture-id.php:40
msgid "Paystack Capture ID:"
msgstr ""

View File

@@ -0,0 +1,18 @@
== Change Log ==
= 1.0.3 =
* Added Plugna version text on the page
* Updated donate link
* Added feedback prompt
* Enrolled VIP submissions
* Refactoring settings for better maintenance
= 1.0.2 =
* Removed non-secure way to check for auto-updates
= 1.0.1 =
* Security and compatibility fixes
= 1.0 =
* Initial version

View File

@@ -0,0 +1,18 @@
{
"name": "@pronamic/wp-pronamic-pay-with-mollie-for-contact-form-7",
"description": "Pronamic Pay plugin with Mollie for Contact Form 7 integration.",
"version": "1.1.0",
"devDependencies": {
"@wordpress/env": "^5.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pronamic/wp-pronamic-pay-with-mollie-for-contact-form-7.git"
},
"author": "Pronamic",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/pronamic/wp-pronamic-pay-with-mollie-for-contact-form-7/issues"
},
"homepage": "https://github.com/pronamic/wp-pronamic-pay-with-mollie-for-contact-form-7#readme"
}

View File

@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.0] - 2023-02-24
- First release.
[1.0.0]: https://github.com/pronamic/wp-pronamic-pay-with-mollie-for-gravity-forms/releases/tag/v1.0.0

View File

@@ -0,0 +1,21 @@
{
"name": "@pronamic/wp-pronamic-pay-with-mollie-for-gravity-forms",
"description": "Pronamic Pay plugin with Mollie for Gravity Forms integration.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pronamic/wp-pronamic-pay-with-mollie-for-gravity-forms.git"
},
"author": "Pronamic",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/pronamic/wp-pronamic-pay-with-mollie-for-gravity-forms/issues"
},
"homepage": "https://github.com/pronamic/wp-pronamic-pay-with-mollie-for-gravity-forms#readme",
"config": {
"slug": "pronamic-pay-with-mollie-for-gravity-forms"
},
"devDependencies": {
"@wordpress/env": "^5.12.0"
}
}

View File

@@ -0,0 +1,76 @@
# Copyright (C) 2023 Rnd Experts
# This file is distributed under the same license as the Viral content with AI plugin.
msgid ""
msgstr ""
"Project-Id-Version: Viral content with AI 0.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/viral-content-with-ai\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-02T12:37:50+01:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.0\n"
"X-Domain: viral-content-with-ai\n"
#. Plugin Name of the plugin
msgid "Viral content with AI"
msgstr ""
#. Plugin URI of the plugin
msgid "rndexperts.com"
msgstr ""
#. Description of the plugin
msgid "This plugin can be used to Embed Open AI Chat GPT. You can place shortcode [vcwai_chat_gpt_embed] anywhere on your templates, pages or posts."
msgstr ""
#. Author of the plugin
msgid "Rnd Experts"
msgstr ""
#. Author URI of the plugin
msgid "rndexperts"
msgstr ""
#: classes/main.php:87
#: classes/main.php:88
msgid "OpenAI Settings"
msgstr ""
#: classes/main.php:120
msgid "OpenAI API keys Settings"
msgstr ""
#: classes/main.php:126
msgid "Enter OpenAI API Key"
msgstr ""
#: includes/chat_gpt.php:2
msgid "AI Chat Bot."
msgstr ""
#: includes/chat_gpt.php:4
msgid "Feel free to ask anything to AI Chat Bot."
msgstr ""
#: includes/chat_gpt.php:8
msgid "Language"
msgstr ""
#: includes/chat_gpt.php:15
msgid "Writing Style"
msgstr ""
#: includes/chat_gpt.php:21
msgid "Writing Tone"
msgstr ""
#: includes/chat_gpt.php:33
msgid "Reset"
msgstr ""
#: includes/chat_gpt.php:34
msgid "Submit"
msgstr ""

View File

@@ -0,0 +1,85 @@
# Copyright (C) 2023 Rnd Experts
# This file is distributed under the same license as the Mortgage Calculator plugin.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Mortgage Calculator 0.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mortgage-calculator\n"
"POT-Creation-Date: 2023-01-17 12:08+0530\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
"X-Domain: mortgage-calculator\n"
#. Plugin Name of the plugin
msgid "Mortgage Calculator"
msgstr ""
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "rndexperts.com"
msgstr ""
#. Description of the plugin
msgid "This plugin can be used to calculate Systematic Investment Plan (SIP). You can place shortcode <code>[sip-calculator]</code> anywhere on your templates, pages or posts."
msgstr ""
#. Author of the plugin
msgid "Rnd Experts"
msgstr ""
#: includes/index.php:4
msgid "Mortgage calculator"
msgstr ""
#: includes/index.php:14
msgid "Monthly investment amount"
msgstr ""
#: includes/index.php:16 includes/index.php:24 includes/index.php:31
msgid "please enter number only"
msgstr ""
#: includes/index.php:22
msgid "Expected return rate (in percentage)"
msgstr ""
#: includes/index.php:29
msgid "Time period (in years)"
msgstr ""
#: includes/index.php:37
msgid "Calculate"
msgstr ""
#: includes/index.php:47 includes/index.php:134
msgid "Invested amount"
msgstr ""
#: includes/index.php:51 includes/index.php:137
msgid "Estimated Gain amount"
msgstr ""
#: includes/index.php:55 includes/index.php:140
msgid "Total amount"
msgstr ""
#: includes/index.php:131
msgid "Task"
msgstr ""
#: includes/index.php:132
msgid "invested amount"
msgstr ""
#: includes/index.php:146
msgid "SIP Pie Chart"
msgstr ""
#: includes/index.php:175
msgid "* All fields are required."
msgstr ""

View File

@@ -0,0 +1,253 @@
# Copyright (C) 2023 Daniel Pereyra Costas
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Secure Encrypted Form 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/secure-encrypted-form\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-22T13:20:09+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: secure-encrypted-form\n"
#. Plugin Name of the plugin
msgid "Secure Encrypted Form"
msgstr ""
#. Description of the plugin
msgid "Display a form on any page or post and receive secure (encrypted) communications using OpenPGP."
msgstr ""
#. Author of the plugin
msgid "Daniel Pereyra Costas"
msgstr ""
#. Author URI of the plugin
msgid "https://charrua.es"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:168
msgid "Error E4: it seems to be an error/typo on your public key string. Please export it again and paste it in ASCII-Armor."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:185
msgid "Secure Encrypted Form: please complete settings to use the secure form in your website."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:187
msgid "Complete setup."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:211
#: admin/class-secure-encrypted-form-admin.php:341
msgid "Settings"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:215
msgid "Donate"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:348
msgid "Destination email"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:352
msgid "Complete this field with the email address that will get the secure email."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:357
msgid "OpenPGP Public key"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:361
msgid "Complete this field with your OpenPGP public key."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:393
msgid "Enter your settings below"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:456
msgid "Secure message [test]"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:459
#: public/class-secure-encrypted-form-public.php:253
msgid "From:"
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:461
#: public/class-secure-encrypted-form-public.php:255
msgid "Please find the message attached."
msgstr ""
#. translators: %1$s is the plugin name and %2$s is the plugin version
#: admin/class-secure-encrypted-form-admin.php:465
#: public/class-secure-encrypted-form-public.php:259
msgid "Sent with %1$s for WordPress v%2$s"
msgstr ""
#. translators: %1$s and %2$s are HTML a tags
#: admin/class-secure-encrypted-form-admin.php:474
#: public/class-secure-encrypted-form-public.php:268
msgid "%1$sIf you find this piece of software usefull please consider %2$sdonating to the author%3$s."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:511
msgid "Success: secure encrypted message [test] sent."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:521
msgid "Error E3: secure encrypted message could not be sent, see debug log please."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:529
msgid "Error E6: secure encrypted message could not be sent, seems that you are sending emails with PHP mail() function and is disabled by your webhost."
msgstr ""
#: admin/class-secure-encrypted-form-admin.php:567
msgid "It seems that PHP mail() function is disabled on your server. Please contact your hosting provider or use a SMTP plugin."
msgstr ""
#: admin/partials/secure-encrypted-form-admin-debug-log.php:23
msgid "The debug log helps you to diagnose issues with the plugin. You can use the selector to see different logged days."
msgstr ""
#: admin/partials/secure-encrypted-form-admin-debug-log.php:27
msgid "Select a log file:"
msgstr ""
#: admin/partials/secure-encrypted-form-admin-debug-log.php:36
msgid "View"
msgstr ""
#: admin/partials/secure-encrypted-form-admin-debug-log.php:45
msgid "Viewing:"
msgstr ""
#: admin/partials/secure-encrypted-form-admin-settings.php:22
msgid "The Secure Encrypted Form helps you to include a secure form in your website trought a shortcode. The message that is sent to you is encrypted with your public PGP key. This ensures that only you with the private key can decrypt the message."
msgstr ""
#: admin/partials/secure-encrypted-form-admin-settings.php:27
msgid "Usage"
msgstr ""
#. Translators: %1$s and %2$s are HTML code tags.
#: admin/partials/secure-encrypted-form-admin-settings.php:33
msgid "Insert shortcode in any page using %1$s[secure-encrypted-form]%2$s."
msgstr ""
#: admin/partials/secure-encrypted-form-admin-settings.php:52
msgid "Having problems?"
msgstr ""
#: admin/partials/secure-encrypted-form-admin-settings.php:55
msgid "If you are not sure if your website is sending emails correctly, you can use this button to test and send an email. Have in mind that your server is in charge of sending emails. You may need to install a plugin for authenticating email using SMTP. Remember to always save settings before sending test emails."
msgstr ""
#. Translators: %1$s and %2$s are HTML a tags, please do not translate this parameter.
#: admin/partials/secure-encrypted-form-admin-settings.php:61
msgid "You can also check the plugin logs for further information. %1$sCheck logs%2$s."
msgstr ""
#: admin/partials/secure-encrypted-form-admin-settings.php:74
msgid "Send test email"
msgstr ""
#: admin/partials/secure-encrypted-form-admin-sidebar.php:19
msgid "Donations"
msgstr ""
#: admin/partials/secure-encrypted-form-admin-sidebar.php:23
msgid "If you find this plugin useful please consider donating to the author and keep working on the plugin. You can use the ⚡️ Lightning Network to send some sats."
msgstr ""
#. Translators: %1$s and %2$s are HTML a tags, please do not translate this parameter.
#: admin/partials/secure-encrypted-form-admin-sidebar.php:33
msgid "%1$sDonate here%2$s."
msgstr ""
#: admin/partials/secure-encrypted-form-admin-sidebar.php:45
msgid "Rate this plugin"
msgstr ""
#. Translators: %1$s and %2$s are HTML bold tags.
#: admin/partials/secure-encrypted-form-admin-sidebar.php:50
msgid "Help us spread the word %1$sby giving Secure Encrypted Form a 5-star rating (⭐️⭐️⭐️⭐️⭐️) on WordPress.org%2$s. Thanks for your support and we look forward to bringing you more awesome features."
msgstr ""
#. Translators: %1$s and %2$s are HTML a tags, please do not translate this parameter.
#: admin/partials/secure-encrypted-form-admin-sidebar.php:62
msgid "%1$sRate plugin%2$s."
msgstr ""
#: admin/partials/secure-encrypted-form-admin-sidebar.php:74
msgid "Need WordPress custom work?"
msgstr ""
#. Translators: %1$s and %2$s are HTML bold tags; %3$s is charrua.es website link.
#: admin/partials/secure-encrypted-form-admin-sidebar.php:79
msgid "This plugin is created and supported by %1$sCharrúa ⚡️ - Building Smarter Websites%2$s. If you need some custom WordPress work please contact us at %3$s."
msgstr ""
#: public/class-secure-encrypted-form-public.php:162
msgid "Error: it seems to be an error/typo on the encryption key. Please contact the web administrator."
msgstr ""
#: public/class-secure-encrypted-form-public.php:177
msgid "Message"
msgstr ""
#: public/class-secure-encrypted-form-public.php:182
msgid "Subject"
msgstr ""
#: public/class-secure-encrypted-form-public.php:186
msgid "Your name"
msgstr ""
#: public/class-secure-encrypted-form-public.php:190
msgid "Your email"
msgstr ""
#: public/class-secure-encrypted-form-public.php:194
msgid "Submit"
msgstr ""
#: public/class-secure-encrypted-form-public.php:218
msgid "Please fill your name."
msgstr ""
#: public/class-secure-encrypted-form-public.php:222
msgid "Please fill your email."
msgstr ""
#: public/class-secure-encrypted-form-public.php:226
msgid "Please fill your subject."
msgstr ""
#: public/class-secure-encrypted-form-public.php:230
msgid "Please fill your message."
msgstr ""
#: public/class-secure-encrypted-form-public.php:236
msgid "Validation error: please check form fields for feedback."
msgstr ""
#: public/class-secure-encrypted-form-public.php:250
msgid "Secure message:"
msgstr ""
#: public/class-secure-encrypted-form-public.php:305
msgid "Success: secure encrypted message sent."
msgstr ""
#: public/class-secure-encrypted-form-public.php:322
#: public/class-secure-encrypted-form-public.php:330
msgid "Error: secure encrypted message could not be sent, please contact website owner."
msgstr ""

View File

@@ -0,0 +1,59 @@
# Copyright (C) 2023 Jeremy Kozan
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Secure Password Generator 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/secure-password-generator\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-25T15:15:59+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: ocdpw\n"
#. Plugin Name of the plugin
msgid "Secure Password Generator"
msgstr ""
#. Description of the plugin
msgid "Adds a secure password generator to your WordPress website. Use shortcode: [secure_pw_gen][/secure_pw_gen]"
msgstr ""
#. Author of the plugin
msgid "Jeremy Kozan"
msgstr ""
#: ocd-password-generator.php:59
msgid "Characters selected"
msgstr ""
#: ocd-password-generator.php:60
msgid "Number selected"
msgstr ""
#: ocd-password-generator.php:61
msgid "Special character selected"
msgstr ""
#: ocd-password-generator.php:62
msgid "Lowercase character selected"
msgstr ""
#: ocd-password-generator.php:63
msgid "Uppercase character selected"
msgstr ""
#: ocd-password-generator.php:64
msgid "Yes"
msgstr ""
#: ocd-password-generator.php:65
msgid "No"
msgstr ""
#: ocd-password-generator.php:66
msgid "This shortcode has already been placed on this page. You can only use it once per page."
msgstr ""

View File

@@ -0,0 +1,343 @@
# Copyright (C) 2023 GrandPlugins
# This file is distributed under the same license as the Simple Countdown plugin.
msgid ""
msgstr ""
"Project-Id-Version: Simple Countdown 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gpls-wpsctr-simple-countdown-timer\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-22T16:12:50+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: simple-countdown\n"
#. Plugin Name of the plugin
#: includes/Pages/CountdownTimerPage.php:53
msgid "Simple Countdown"
msgstr ""
#. Description of the plugin
msgid "Create and add simple countdown timers to your WordPress Website."
msgstr ""
#. Author of the plugin
msgid "GrandPlugins"
msgstr ""
#. Author URI of the plugin
msgid "https://grandplugins.com"
msgstr ""
#: includes/cpts/CountDownFormTrait.php:57
msgid "Your email address..."
msgstr ""
#: includes/cpts/CountDownFormTrait.php:62
#: includes/Templates/pages/quick-countdown-timer-template.php:69
#: includes/Templates/pages/quick-countdown-timer-template.php:92
#: includes/Templates/pages/quick-countdown-timer-template.php:115
#: includes/Templates/pages/quick-countdown-timer-template.php:138
msgid "%s"
msgstr ""
#: includes/cpts/CountDownFormTrait.php:62
msgid "Submit"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:122
msgid "Add New CountDown Timer"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:123
msgid "New CountDown Timer"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:124
msgid "Edit CountDown Timer"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:185
#: includes/Pages/QuickCountdownTimerPage.php:105
#: includes/QuickCountDownTimer.php:84
#: includes/Templates/cpts/timer-configurations-metabox-template.php:76
#: includes/Templates/pages/quick-countdown-timer-template.php:59
msgid "Days"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:186
#: includes/Pages/QuickCountdownTimerPage.php:106
#: includes/QuickCountDownTimer.php:85
#: includes/Templates/cpts/timer-configurations-metabox-template.php:126
#: includes/Templates/pages/quick-countdown-timer-template.php:82
msgid "Hours"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:187
#: includes/Pages/QuickCountdownTimerPage.php:107
#: includes/QuickCountDownTimer.php:86
#: includes/Templates/cpts/timer-configurations-metabox-template.php:176
#: includes/Templates/pages/quick-countdown-timer-template.php:105
msgid "Minutes"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:188
#: includes/Pages/QuickCountdownTimerPage.php:108
#: includes/QuickCountDownTimer.php:87
#: includes/Templates/cpts/timer-configurations-metabox-template.php:226
#: includes/Templates/pages/quick-countdown-timer-template.php:128
msgid "Seconds"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:190
msgid "The emails list will be deleted. proceed?"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:215
msgid "Timer Configurations"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:216
msgid "Timer Related"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:217
msgid "Timer Subscibe Form"
msgstr ""
#: includes/cpts/CountDownTimerCPT.php:218
msgid "Timer Form Subscriptions Emails"
msgstr ""
#: includes/Pages/CountdownTimerPage.php:52
msgid "Simple Countdown Timers"
msgstr ""
#: includes/Pages/QuickCountdownTimerPage.php:61
msgid "Quick Countdown Generator"
msgstr ""
#: includes/Pages/QuickCountdownTimerPage.php:62
msgid "Quick Countdown Timer"
msgstr ""
#: includes/QuickCountDownTimer.php:89
msgid "Please enter an email address"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:19
msgid "Timer Target Time"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:30
msgid "Timer Timezone"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:35
msgid "Custom Timezone. Default is the site timezone"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:43
msgid "Redirect URL"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:44
msgid "Redirect after the timer is completed"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:58
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:91
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:103
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:136
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:148
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:181
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:193
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:226
#: includes/Settings/Fields/quick-countdown-timer-fields.php:35
#: includes/Settings/Fields/quick-countdown-timer-fields.php:88
#: includes/Settings/Fields/quick-countdown-timer-fields.php:141
#: includes/Settings/Fields/quick-countdown-timer-fields.php:194
#: includes/Templates/cpts/timer-configurations-metabox-template.php:81
#: includes/Templates/cpts/timer-configurations-metabox-template.php:131
#: includes/Templates/cpts/timer-configurations-metabox-template.php:181
#: includes/Templates/cpts/timer-configurations-metabox-template.php:231
msgid "Title Color"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:69
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:114
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:159
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:204
#: includes/Settings/Fields/quick-countdown-timer-fields.php:48
#: includes/Settings/Fields/quick-countdown-timer-fields.php:101
#: includes/Settings/Fields/quick-countdown-timer-fields.php:154
#: includes/Settings/Fields/quick-countdown-timer-fields.php:207
msgid "Counter Front Color"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:80
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:125
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:170
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:215
#: includes/Settings/Fields/quick-countdown-timer-fields.php:61
#: includes/Settings/Fields/quick-countdown-timer-fields.php:114
#: includes/Settings/Fields/quick-countdown-timer-fields.php:167
#: includes/Settings/Fields/quick-countdown-timer-fields.php:220
msgid "Counter Back Color"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:241
msgid "Hide Divisions"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:245
msgid "Hide days, hours and minutes divisions once they are completed."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:248
msgid "Timer Title"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:252
msgid "Timer Title is placed above the timer. leave it empty to disable"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:255
msgid "Timer Title Tag"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:259
msgid "Timer Title Tag | h1 - h6"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:270
msgid "Timer Complete Text"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:275
msgid "This text will appear after the timer interval is completed."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:284
msgid "Timer form status"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:288
msgid "Enable - Disable the timer subscribe form."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:294
msgid "Timer form title"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:298
msgid "Form title."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:304
msgid "Form title tag"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:308
msgid "Form Title Tag | h1 - h6."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:322
msgid "Timer form submit text"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:326
msgid "Form Submit Button Text."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:332
msgid "Timer form submit color"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:336
msgid "Form Submit Button Color."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:342
msgid "Timer form submit background"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:346
msgid "Form Submit Button Background Color."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:352
msgid "Form consent text"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:356
msgid "Subscribe form consent text"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:364
msgid "After Subscription text"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:368
msgid "This text wil appear after form subscription."
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:376
msgid "Custom form Shortcode"
msgstr ""
#: includes/Settings/Fields/countdown-timer-cpt-fields.php:380
msgid "You can place custom subscribe form shortcode here to use instead of the default form."
msgstr ""
#: includes/Settings/Fields/quick-countdown-timer-fields.php:16
msgid "CountTimer Interval"
msgstr ""
#: includes/Settings/Fields/quick-countdown-timer-fields.php:17
msgid "Set the countdown interval time. The timer uses the site timezone in "
msgstr ""
#: includes/Settings/Fields/quick-countdown-timer-fields.php:18
msgid "The timer won't appear if the time is past"
msgstr ""
#: includes/Settings/Fields/quick-countdown-timer-fields.php:74
#: includes/Settings/Fields/quick-countdown-timer-fields.php:127
#: includes/Settings/Fields/quick-countdown-timer-fields.php:180
#: includes/Settings/Fields/quick-countdown-timer-fields.php:233
#: includes/Templates/cpts/timer-configurations-metabox-template.php:114
#: includes/Templates/cpts/timer-configurations-metabox-template.php:164
#: includes/Templates/cpts/timer-configurations-metabox-template.php:214
#: includes/Templates/cpts/timer-configurations-metabox-template.php:264
msgid "Divider Color"
msgstr ""
#: includes/Templates/cpts/timer-configurations-metabox-template.php:55
#: includes/Templates/pages/quick-countdown-timer-template.php:39
msgid "Timer Shortcode:"
msgstr ""
#: includes/Templates/cpts/timer-configurations-metabox-template.php:92
#: includes/Templates/cpts/timer-configurations-metabox-template.php:142
#: includes/Templates/cpts/timer-configurations-metabox-template.php:192
#: includes/Templates/cpts/timer-configurations-metabox-template.php:242
msgid "Front Color"
msgstr ""
#: includes/Templates/cpts/timer-configurations-metabox-template.php:103
#: includes/Templates/cpts/timer-configurations-metabox-template.php:153
#: includes/Templates/cpts/timer-configurations-metabox-template.php:203
#: includes/Templates/cpts/timer-configurations-metabox-template.php:253
msgid "Back Color"
msgstr ""
#: includes/Templates/pages/quick-countdown-timer-template.php:12
msgid "Quick Count Down Timer"
msgstr ""
#: includes/Templates/pages/quick-countdown-timer-template.php:55
msgid "Timer Colors"
msgstr ""

View File

@@ -0,0 +1,324 @@
# Copyright (C) 2023 xlthlx
# This file is distributed under the GPLv3+.
msgid ""
msgstr ""
"Project-Id-Version: Site Toolkit 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/site-toolkit\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-01-05T12:01:50+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: site-toolkit\n"
#. Plugin Name of the plugin
#: toolkit/admin/class-site-toolkit-options-page.php:80
msgid "Site Toolkit"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/site-toolkit/"
msgstr ""
#. Description of the plugin
msgid "Sets of tools for WordPress admin and frontend."
msgstr ""
#. Author of the plugin
msgid "xlthlx"
msgstr ""
#. Author URI of the plugin
msgid "https://piccioni.london"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:79
msgid "Site Toolkit Options"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:147
msgid "Header Options saved."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:151
msgid "SEO Options saved."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:155
msgid "Archives Options saved."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:159
msgid "Dashboard Options saved."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:163
msgid "Listing Options saved."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:167
msgid "Login Options saved."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:171
msgid "Uploads Options saved."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:200
msgid "Dismiss this notice."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:211
#: toolkit/admin/class-site-toolkit-options-page.php:236
#: toolkit/admin/class-site-toolkit-options-page.php:262
msgid "Header"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:214
#: toolkit/admin/class-site-toolkit-options-page.php:238
#: toolkit/admin/class-site-toolkit-options-page.php:270
msgid "SEO"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:217
#: toolkit/admin/class-site-toolkit-options-page.php:240
#: toolkit/admin/class-site-toolkit-options-page.php:274
msgid "Archives"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:220
#: toolkit/admin/class-site-toolkit-options-page.php:242
#: toolkit/admin/class-site-toolkit-options-page.php:266
msgid "Dashboard"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:223
#: toolkit/admin/class-site-toolkit-options-page.php:244
#: toolkit/admin/class-site-toolkit-options-page.php:278
msgid "Listing"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:226
#: toolkit/admin/class-site-toolkit-options-page.php:246
#: toolkit/admin/class-site-toolkit-options-page.php:282
msgid "Login"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:229
#: toolkit/admin/class-site-toolkit-options-page.php:248
#: toolkit/admin/class-site-toolkit-options-page.php:286
msgid "Uploads"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:324
msgid "Save "
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:324
msgid " options"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:349
msgid "Disable Emoji Support"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:357
msgid "Removes RSS Feeds Links"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:365
msgid "Disable Rest API"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:373
msgid "Remove Header Links"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:382
msgid "Remove WordPress Version"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:390
msgid "Change Style/Javascript Version"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:414
msgid "Remove Dashboard Widgets"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:422
msgid "Custom Dashboard Widget"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:446
msgid "Pretty Permalink For Search"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:454
msgid "If-Modified-Since Header"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:462
msgid "Image Alt Attribute"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:486
msgid "Remove Archive Title Prefix"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:494
msgid "Redirect Attachments Pages"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:502
msgid "Redirect Archives"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:526
msgid "Add Thumbnail Column To Posts"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:534
msgid "Add Template Column To Pages"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:558
msgid "Change Login URL"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:582
msgid "Clean File Names"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:604
msgid "Removes the extra code to generate emojis in the header."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:620
#: toolkit/admin/class-site-toolkit-options-page.php:813
#: toolkit/admin/class-site-toolkit-options-page.php:825
#: toolkit/admin/class-site-toolkit-options-page.php:837
msgid "Yes"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:624
#: toolkit/admin/class-site-toolkit-options-page.php:817
#: toolkit/admin/class-site-toolkit-options-page.php:829
#: toolkit/admin/class-site-toolkit-options-page.php:841
msgid "No"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:639
msgid "Removes RSS feeds links in the header."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:648
msgid "Disables Rest API and removes Rest API links (only for not logged in users)."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:657
msgid "Removes RSD link, wlwmanifest Link, shortlink, previous/next post Link in the header."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:666
msgid "Removes the WordPress version meta in the header."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:675
msgid "Replaces the style and javascript version with the file version."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:693
msgid "Removes all the Dashboard widgets."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:720
msgid "Add the content of your custom widget here."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:724
msgid "Context"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:727
msgid "Normal"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:731
msgid "Side"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:734
msgid "You can create a custom text Dashboard widget."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:754
msgid "Sets up a pretty permalink for the search functionality."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:763
msgid "Adds the If-Modified-Since Header into all pages/posts."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:772
msgid "Forces all the images to have an alt attribute."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:790
msgid "Removes the prefix in the archive title."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:799
msgid "Redirects the attachment pages to the homepage."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:810
msgid "Redirect author"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:822
msgid "Redirect date"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:834
msgid "Redirect tags"
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:846
msgid "Redirects authors archive, dates archive, tags archive to the homepage."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:866
msgid "Shows the thumbnail in a column in the admin posts listing."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:875
msgid "Shows the Page Template name in a column in the admin pages listing."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:903
msgid "You can choose your own URL instead of using the default WordPress URL."
msgstr ""
#: toolkit/admin/class-site-toolkit-options-page.php:932
msgid "Removes all the special chars in the filename when you upload any file."
msgstr ""
#: toolkit/admin/index.php:38
msgid "Settings"
msgstr ""
#: toolkit/inc/pages-columns.php:21
msgid "Template"
msgstr ""
#: toolkit/inc/posts-columns.php:23
msgid "Thumbnail"
msgstr ""
#: toolkit/inc/rest-api.php:19
msgid "REST API restricted to authenticated users."
msgstr ""

View File

@@ -0,0 +1,23 @@
{
"name": "social-media-station",
"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": "^25.0.0"
},
"dependencies": {
"react-select": "^5.7.0"
}
}

View File

@@ -0,0 +1,27 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.1.0] - 2023-02-15
### Added
- Allow to add app data in user agent
- `Payout` [GitHub#5](https://github.com/wearestancer/lib-php/issues/5)
- `Refund::list()`
### Fixed
- `SearchTrait::List()` may miss some items [GitLab#2](https://gitlab.com/wearestancer/library/lib-php/-/issues/2)
- CI
## [1.0.1] - 2023-01-23
### Fixed
- Missing payment status `refused`
- Typo
## [1.0.0] - 2022-09-26
- Initial release

View File

@@ -0,0 +1,95 @@
# Copyright (C) 2023 Hexon BV
# This file is distributed under the same license as the Stocklist Integrator plugin.
msgid ""
msgstr ""
"Project-Id-Version: Stocklist Integrator 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/stocklist-integrator\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-22T16:29:09+01:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: stocklist-integrator\n"
#. Plugin Name of the plugin
msgid "Stocklist Integrator"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.hexon.nl/services/stocklist-integrator/"
msgstr ""
#. Description of the plugin
msgid "Integrate the stocklist module to your Wordpress site."
msgstr ""
#. Author of the plugin
msgid "Hexon BV"
msgstr ""
#. Author URI of the plugin
msgid "https://www.hexon.nl"
msgstr ""
#: stocklist-integrator.php:208
msgid "Settings"
msgstr ""
#: stocklist-integrator.php:209
msgid "Stocklist provider"
msgstr ""
#: stocklist-integrator.php:214
msgid "Please select your provider in the dropdown below. More settings are available in the configuration screen provided by the stocklist module."
msgstr ""
#: stocklist-integrator.php:222
msgid "Choose provider"
msgstr ""
#: stocklist-integrator.php:243
msgid "Introduction"
msgstr ""
#: stocklist-integrator.php:246
msgid "The stocklist integrator is a Wordpress plugin that enables you to quickly and easily insert a stocklist module into your Wordpress site. You wil need a fully configured stocklist with one of the supported providers (see settings below)."
msgstr ""
#: stocklist-integrator.php:256
msgid "How to use"
msgstr ""
#: stocklist-integrator.php:259
msgid "You can use the following shortcode:"
msgstr ""
#: stocklist-integrator.php:263
msgid "Replace <tt>abcd</tt> with the code of your stocklist. Insert the shortcode on the page where you want the stocklist to appear."
msgstr ""
#: stocklist-integrator.php:267
msgid "Carousel"
msgstr ""
#: stocklist-integrator.php:270
msgid "To display a carousel use the following shortcode:"
msgstr ""
#: stocklist-integrator.php:274
msgid "Replace <tt>abcd</tt> with the code of your stocklist. Amount is the number of vehicles to be displayed."
msgstr ""
#: stocklist-integrator.php:278
msgid "Search form"
msgstr ""
#: stocklist-integrator.php:281
msgid "To add a search form use the following shortcode:"
msgstr ""
#: stocklist-integrator.php:285
msgid "Replace <tt>abcd</tt> with the code of your stocklist. You can configure the form in the stocklist configurator."
msgstr ""

View File

@@ -0,0 +1,2 @@
/**1.0.0 - 2023.02.08**/
~ The first released

View File

@@ -0,0 +1,700 @@
# Copyright (C) 2023 DoatKolom
# This file is distributed under the GPL v3 or later.
msgid ""
msgstr ""
"Project-Id-Version: SuperDocs 1.0.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/superdocs\n"
"POT-Creation-Date: 2023-01-03 14:45:34+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 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/AdminPages/Doc.php:64 app/Providers/CptServiceProvider.php:38
#: app/Providers/CptServiceProvider.php:44
#: app/Providers/CptServiceProvider.php:47
#: resources/views/admin/pages/docs/quick-view.php:4
msgid "Product"
msgstr ""
#: app/AdminPages/Doc.php:65 app/AdminPages/Product.php:39
msgid "Template"
msgstr ""
#: app/AdminPages/Doc.php:85 app/AdminPages/Doc.php:86
#: resources/views/admin/pages/docs/quick-view.php:17
msgid "Product Default"
msgstr ""
#: app/Helpers/helper.php:70
msgid "Single Docs Permalink"
msgstr ""
#: app/Helpers/helper.php:76
msgid "TOC Supported Heading Tag"
msgstr ""
#: app/Http/Controllers/CategoryController.php:42
msgid "Category updated successfully!"
msgstr ""
#: app/Http/Controllers/CategoryController.php:59
msgid "Category deleted successfully!"
msgstr ""
#: app/Http/Controllers/CategoryController.php:104
msgid "Order complete successfully!"
msgstr ""
#: app/Http/Controllers/CategoryController.php:136
msgid "Category created successfully!"
msgstr ""
#: app/Http/Controllers/CategoryController.php:148
#: resources/views/admin/pages/category/doc-head.php:3
#: resources/views/admin/pages/category/order-page.php:45
#: resources/views/admin/pages/category/order-page.php:63
msgid "Edit"
msgstr ""
#: app/Http/Controllers/CategoryController.php:151
#: resources/views/admin/pages/category/delete.php:28
#: resources/views/admin/pages/category/doc-head.php:6
#: resources/views/admin/pages/category/order-page.php:66
msgid "Delete"
msgstr ""
#: app/Http/Controllers/DocController.php:29
msgid "Document Created Successfully!"
msgstr ""
#: app/Http/Controllers/ProductController.php:43
msgid "Product Created Successfully!"
msgstr ""
#: app/Http/Controllers/SettingsController.php:14
msgid "Settings saved successfully!"
msgstr ""
#: app/Http/Controllers/TemplateController.php:21
msgid "Please activate elementor plugin"
msgstr ""
#: app/Http/Controllers/TemplateController.php:51
msgid "Template create successfully!"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "SuperDocs"
msgstr ""
#: app/Providers/Admin/MenuServiceProvider.php:74
#: app/Providers/CptServiceProvider.php:32
msgid "All Docs"
msgstr ""
#: app/Providers/Admin/MenuServiceProvider.php:75
#: app/Providers/CptServiceProvider.php:37
#: app/Providers/CptServiceProvider.php:43
#: app/Providers/CptServiceProvider.php:46 app/Widgets/Search.php:82
msgid "Products"
msgstr ""
#: app/Providers/Admin/MenuServiceProvider.php:76
#: app/Providers/CptServiceProvider.php:108
msgid "Templates"
msgstr ""
#: app/Providers/Admin/MenuServiceProvider.php:77
#: app/Providers/CptServiceProvider.php:20 app/Widgets/NavCategories.php:111
msgid "Categories"
msgstr ""
#: app/Providers/Admin/MenuServiceProvider.php:78
msgid "Settings"
msgstr ""
#: app/Providers/CptServiceProvider.php:33
msgid "Doc"
msgstr ""
#: app/Providers/CptServiceProvider.php:53
msgid "Item Archives"
msgstr ""
#: app/Providers/CptServiceProvider.php:54
msgid "Item Attributes"
msgstr ""
#: app/Providers/CptServiceProvider.php:55
msgid "All Items"
msgstr ""
#: app/Providers/CptServiceProvider.php:56
msgid "Add New Item"
msgstr ""
#: app/Providers/CptServiceProvider.php:57
msgid "Add New"
msgstr ""
#: app/Providers/CptServiceProvider.php:58
msgid "New Item"
msgstr ""
#: app/Providers/CptServiceProvider.php:59
msgid "Edit Item"
msgstr ""
#: app/Providers/CptServiceProvider.php:60
msgid "Update Item"
msgstr ""
#: app/Providers/CptServiceProvider.php:61
msgid "View Item"
msgstr ""
#: app/Providers/CptServiceProvider.php:62
msgid "View Items"
msgstr ""
#: app/Providers/CptServiceProvider.php:63
msgid "Search Item"
msgstr ""
#: app/Providers/CptServiceProvider.php:64
msgid "Not found"
msgstr ""
#: app/Providers/CptServiceProvider.php:65
msgid "Not found in Trash"
msgstr ""
#: app/Providers/CptServiceProvider.php:66
msgid "Featured Image"
msgstr ""
#: app/Providers/CptServiceProvider.php:67
msgid "Set featured image"
msgstr ""
#: app/Providers/CptServiceProvider.php:68
msgid "Remove featured image"
msgstr ""
#: app/Providers/CptServiceProvider.php:69
msgid "Use as featured image"
msgstr ""
#: app/Providers/CptServiceProvider.php:70
msgid "Insert into item"
msgstr ""
#: app/Providers/CptServiceProvider.php:71
msgid "Uploaded to this item"
msgstr ""
#: app/Providers/CptServiceProvider.php:72
msgid "Items list"
msgstr ""
#: app/Providers/CptServiceProvider.php:73
msgid "Items list navigation"
msgstr ""
#: app/Providers/CptServiceProvider.php:74
msgid "Filter items list"
msgstr ""
#: app/Widgets/Breadcrumb.php:18
msgid "Breadcrumb"
msgstr ""
#: app/Widgets/Breadcrumb.php:41 app/Widgets/Breadcrumb.php:62
msgid "Home"
msgstr ""
#: app/Widgets/Breadcrumb.php:49 app/Widgets/Breadcrumb.php:93
msgid "Text"
msgstr ""
#: app/Widgets/Breadcrumb.php:58 app/Widgets/Breadcrumb.php:102
msgid "Url"
msgstr ""
#: app/Widgets/Breadcrumb.php:63 app/Widgets/Breadcrumb.php:107
msgid "Custom"
msgstr ""
#: app/Widgets/Breadcrumb.php:71 app/Widgets/Breadcrumb.php:115
msgid "Custom Url"
msgstr ""
#: app/Widgets/Breadcrumb.php:85
msgid "Documentations"
msgstr ""
#: app/Widgets/Breadcrumb.php:129 app/Widgets/DocPrint.php:104
#: app/Widgets/NextPrev.php:167
msgid "Style"
msgstr ""
#: app/Widgets/Breadcrumb.php:137 app/Widgets/DocPrint.php:136
#: app/Widgets/NavCategories.php:191 app/Widgets/NavCategories.php:252
#: app/Widgets/NavCategories.php:484 app/Widgets/NavCategories.php:519
#: app/Widgets/NextPrev.php:300 app/Widgets/NextPrev.php:528
#: app/Widgets/NextPrev.php:641 app/Widgets/Search.php:149
#: app/Widgets/Search.php:315 app/Widgets/Search.php:475
#: app/Widgets/Search.php:587 app/Widgets/Search.php:732
#: app/Widgets/TableOfContent.php:83 app/Widgets/TableOfContent.php:198
msgid "Color"
msgstr ""
#: app/Widgets/Breadcrumb.php:150
msgid "Active Color"
msgstr ""
#: app/Widgets/Breadcrumb.php:163
msgid "Arrow Color"
msgstr ""
#: app/Widgets/Breadcrumb.php:176 app/Widgets/NavCategories.php:363
#: app/Widgets/NextPrev.php:191
msgid "Gap between"
msgstr ""
#: app/Widgets/Breadcrumb.php:199 app/Widgets/NextPrev.php:337
#: app/Widgets/NextPrev.php:410 app/Widgets/NextPrev.php:678
#: app/Widgets/NextPrev.php:730 app/Widgets/Search.php:113
#: app/Widgets/Search.php:279 app/Widgets/Search.php:442
#: app/Widgets/Search.php:538
msgid "Width"
msgstr ""
#: app/Widgets/Breadcrumb.php:223 app/Widgets/NavCategories.php:317
#: app/Widgets/NavCategories.php:567 app/Widgets/NextPrev.php:479
#: app/Widgets/NextPrev.php:569 app/Widgets/Search.php:210
#: app/Widgets/Search.php:376 app/Widgets/Search.php:627
#: app/Widgets/TableOfContent.php:139 app/Widgets/TableOfContent.php:234
msgid "Typography"
msgstr ""
#: app/Widgets/Breadcrumb.php:233 app/Widgets/NavCategories.php:325
#: app/Widgets/NavCategories.php:575 app/Widgets/NextPrev.php:487
#: app/Widgets/NextPrev.php:577 app/Widgets/Search.php:218
#: app/Widgets/Search.php:384 app/Widgets/Search.php:635
#: app/Widgets/TableOfContent.php:147 app/Widgets/TableOfContent.php:242
msgid "Font Size (px)"
msgstr ""
#: app/Widgets/Breadcrumb.php:247 app/Widgets/NavCategories.php:339
#: app/Widgets/NavCategories.php:589 app/Widgets/NextPrev.php:501
#: app/Widgets/NextPrev.php:591 app/Widgets/Search.php:232
#: app/Widgets/Search.php:398 app/Widgets/Search.php:649
#: app/Widgets/TableOfContent.php:161 app/Widgets/TableOfContent.php:256
msgid "Line Height (px)"
msgstr ""
#: app/Widgets/ContentArea.php:14
msgid "Content Area"
msgstr ""
#: app/Widgets/DocPrint.php:18 app/Widgets/DocPrint.php:49
msgid "Print"
msgstr ""
#: app/Widgets/DocPrint.php:41 app/Widgets/NextPrev.php:45
#: app/Widgets/Search.php:42 app/Widgets/TableOfContent.php:42
msgid "Content"
msgstr ""
#: app/Widgets/DocPrint.php:53
msgid "Only Content Area"
msgstr ""
#: app/Widgets/DocPrint.php:54
msgid "Full Window"
msgstr ""
#: app/Widgets/DocPrint.php:63 app/Widgets/NavCategories.php:51
#: app/Widgets/NavCategories.php:85 app/Widgets/NextPrev.php:61
#: app/Widgets/NextPrev.php:117 app/Widgets/NextPrev.php:149
#: app/Widgets/NextPrev.php:607
msgid "Icon"
msgstr ""
#: app/Widgets/DocPrint.php:75 app/Widgets/NextPrev.php:360
#: app/Widgets/NextPrev.php:433
msgid "Alignment"
msgstr ""
#: app/Widgets/DocPrint.php:79 app/Widgets/NextPrev.php:364
#: app/Widgets/NextPrev.php:438
msgid "Left"
msgstr ""
#: app/Widgets/DocPrint.php:83 app/Widgets/NextPrev.php:368
#: app/Widgets/NextPrev.php:442
msgid "Center"
msgstr ""
#: app/Widgets/DocPrint.php:87 app/Widgets/NextPrev.php:372
#: app/Widgets/NextPrev.php:446
msgid "Right"
msgstr ""
#: app/Widgets/DocPrint.php:112 app/Widgets/NavCategories.php:119
msgid "Icon Size"
msgstr ""
#: app/Widgets/NavCategories.php:20
msgid "Nav Categories"
msgstr ""
#: app/Widgets/NavCategories.php:43
msgid "Category Icon"
msgstr ""
#: app/Widgets/NavCategories.php:63 app/Widgets/NavCategories.php:97
msgid "Action Icon"
msgstr ""
#: app/Widgets/NavCategories.php:77
msgid "UnCollapse Category Icon"
msgstr ""
#: app/Widgets/NavCategories.php:143
msgid "Action Icon Size"
msgstr ""
#: app/Widgets/NavCategories.php:171 app/Widgets/NavCategories.php:464
msgid "Normal"
msgstr ""
#: app/Widgets/NavCategories.php:178 app/Widgets/NavCategories.php:239
#: app/Widgets/NavCategories.php:386 app/Widgets/NavCategories.php:471
#: app/Widgets/NavCategories.php:506 app/Widgets/Search.php:136
#: app/Widgets/Search.php:302 app/Widgets/Search.php:465
#: app/Widgets/Search.php:574 app/Widgets/Search.php:719
#: app/Widgets/TableOfContent.php:70 app/Widgets/TableOfContent.php:185
msgid "Background Color"
msgstr ""
#: app/Widgets/NavCategories.php:204 app/Widgets/NavCategories.php:265
msgid "Icon Color"
msgstr ""
#: app/Widgets/NavCategories.php:217 app/Widgets/NavCategories.php:278
msgid "Action Icon Color"
msgstr ""
#: app/Widgets/NavCategories.php:232 app/Widgets/NavCategories.php:499
msgid "Active"
msgstr ""
#: app/Widgets/NavCategories.php:295 app/Widgets/NavCategories.php:545
#: app/Widgets/Search.php:162 app/Widgets/Search.php:328
#: app/Widgets/Search.php:561 app/Widgets/Search.php:791
#: app/Widgets/TableOfContent.php:96 app/Widgets/TableOfContent.php:212
msgid "Padding (px)"
msgstr ""
#: app/Widgets/NavCategories.php:355
msgid "Documents"
msgstr ""
#: app/Widgets/NavCategories.php:399 app/Widgets/NextPrev.php:240
#: app/Widgets/NextPrev.php:387 app/Widgets/NextPrev.php:460
#: app/Widgets/NextPrev.php:554 app/Widgets/NextPrev.php:701
#: app/Widgets/NextPrev.php:753
msgid "Padding"
msgstr ""
#: app/Widgets/NavCategories.php:420 app/Widgets/Search.php:485
msgid "Margin"
msgstr ""
#: app/Widgets/NavCategories.php:452
msgid "Document"
msgstr ""
#: app/Widgets/NextPrev.php:22
msgid "Next Prev"
msgstr ""
#: app/Widgets/NextPrev.php:53
msgid "Show element"
msgstr ""
#: app/Widgets/NextPrev.php:59 app/Widgets/NextPrev.php:289
msgid "Doc Title"
msgstr ""
#: app/Widgets/NextPrev.php:60
msgid "Direction Title"
msgstr ""
#: app/Widgets/NextPrev.php:69
msgid "Previous Icon"
msgstr ""
#: app/Widgets/NextPrev.php:84
msgid "Next Icon"
msgstr ""
#: app/Widgets/NextPrev.php:101
msgid "Order"
msgstr ""
#: app/Widgets/NextPrev.php:111 app/Widgets/NextPrev.php:330
#: app/Widgets/NextPrev.php:671
msgid "Previous"
msgstr ""
#: app/Widgets/NextPrev.php:121 app/Widgets/NextPrev.php:145
msgid "Title"
msgstr ""
#: app/Widgets/NextPrev.php:139 app/Widgets/NextPrev.php:403
#: app/Widgets/NextPrev.php:723
msgid "Next"
msgstr ""
#: app/Widgets/NextPrev.php:175
msgid "Row Item"
msgstr ""
#: app/Widgets/NextPrev.php:179
msgid "Single"
msgstr ""
#: app/Widgets/NextPrev.php:180
msgid "Both"
msgstr ""
#: app/Widgets/NextPrev.php:214
msgid "Background Color "
msgstr ""
#: app/Widgets/NextPrev.php:227
msgid "Background Color Hover"
msgstr ""
#: app/Widgets/NextPrev.php:313 app/Widgets/NextPrev.php:541
#: app/Widgets/NextPrev.php:654
msgid "Hover Color"
msgstr ""
#: app/Widgets/NextPrev.php:517
msgid "Direction Text"
msgstr ""
#: app/Widgets/NextPrev.php:618
msgid "Size"
msgstr ""
#: app/Widgets/Search.php:19 app/Widgets/Search.php:248
msgid "Search"
msgstr ""
#: app/Widgets/Search.php:50
msgid "All products title"
msgstr ""
#: app/Widgets/Search.php:60
msgid "Button title"
msgstr ""
#: app/Widgets/Search.php:70
msgid "Not found text"
msgstr ""
#: app/Widgets/Search.php:90 app/Widgets/Search.php:256
#: app/Widgets/Search.php:515
msgid "Height (px)"
msgstr ""
#: app/Widgets/Search.php:414
msgid "Preloader"
msgstr ""
#: app/Widgets/Search.php:422
msgid "Thickness"
msgstr ""
#: app/Widgets/Search.php:507
msgid "Button"
msgstr ""
#: app/Widgets/Search.php:666
msgid "Result"
msgstr ""
#: app/Widgets/Search.php:674
msgid "Gap between docs (px)"
msgstr ""
#: app/Widgets/Search.php:696
msgid "Max height (px)"
msgstr ""
#: app/Widgets/Search.php:745
msgid "Background Color Doc Item"
msgstr ""
#: app/Widgets/Search.php:758
msgid "Not Found Text Color"
msgstr ""
#: app/Widgets/Search.php:771
msgid "Padding Doc Item (px)"
msgstr ""
#: app/Widgets/Search.php:813 app/Widgets/TableOfContent.php:117
msgid "Margin (px)"
msgstr ""
#: app/Widgets/TableOfContent.php:19
msgid "Table of Content"
msgstr ""
#: app/Widgets/TableOfContent.php:50 app/Widgets/TableOfContent.php:62
msgid "Heading Title"
msgstr ""
#: app/Widgets/TableOfContent.php:177
msgid "Content List"
msgstr ""
#: resources/views/admin/pages/category/create.php:11
msgid "Create Category"
msgstr ""
#: resources/views/admin/pages/category/create.php:18
#: resources/views/admin/pages/category/edit.php:19
msgid "Category Name"
msgstr ""
#: resources/views/admin/pages/category/create.php:29
#: resources/views/admin/pages/category/edit.php:30
#: resources/views/admin/pages/docs/create.php:45
#: resources/views/admin/pages/products/create.php:43
msgid "Submit"
msgstr ""
#: resources/views/admin/pages/category/delete.php:12
msgid "Are you sure to delete this category?"
msgstr ""
#: resources/views/admin/pages/category/delete.php:31
msgid "Cancel"
msgstr ""
#: resources/views/admin/pages/category/edit.php:11
msgid "Edit Category"
msgstr ""
#: resources/views/admin/pages/category/index.php:37
msgid "Add Product"
msgstr ""
#: resources/views/admin/pages/category/order-page.php:42
msgid "View"
msgstr ""
#: resources/views/admin/pages/category/order-page.php:86
msgid "Uncategorized"
msgstr ""
#: resources/views/admin/pages/category/order-page.php:143
msgid "Category List"
msgstr ""
#: resources/views/admin/pages/category/order-page.php:146
msgid "Add Category"
msgstr ""
#: resources/views/admin/pages/docs/create.php:15
msgid "Create Document"
msgstr ""
#: resources/views/admin/pages/docs/create.php:22
msgid "Enter Document Title"
msgstr ""
#: resources/views/admin/pages/docs/create.php:28
msgid "Select Product"
msgstr ""
#: resources/views/admin/pages/docs/quick-view.php:6
msgid "Main Page (no product)"
msgstr ""
#: resources/views/admin/pages/docs/quick-view.php:15
#: resources/views/admin/pages/products/quick-view.php:4
msgid "SuperDocs Template"
msgstr ""
#: resources/views/admin/pages/products/create.php:14
msgid "Create Product"
msgstr ""
#: resources/views/admin/pages/products/create.php:20
msgid "Enter Product Name"
msgstr ""
#: resources/views/admin/pages/products/create.php:26
msgid "Select Template"
msgstr ""
#: resources/views/admin/pages/products/quick-view.php:6
msgid "-- Select Template --"
msgstr ""
#: resources/views/admin/pages/settings/general.php:74
#: resources/views/admin/pages/template/create.php:102
msgid "Save Changes"
msgstr ""
#: resources/views/admin/pages/settings/index.php:28
msgid "General"
msgstr ""
#: resources/views/admin/pages/template/create.php:22
msgid "Create Template"
msgstr ""
#: resources/views/admin/pages/template/create.php:28
msgid "Template Name"
msgstr ""
#: resources/views/admin/pages/template/create.php:32
msgid "Editor"
msgstr ""
#: resources/views/admin/pages/template/create.php:45
msgid "Blank"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "http://wordpress.org/plugins/superdocs/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"The Knowledge Base WordPress Plugin is an easy-to-use tool for creating a "
"comprehensive knowledge base With its intuitive and user-friendly "
"interface, this plugin helps you quickly and efficiently create a powerful "
"knowledge base for your website"
msgstr ""
#. Author of the plugin/theme
msgid "DoatKolom"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://doatkolom.com"
msgstr ""

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