Compare commits
27 Commits
dependabot
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1abb98f51f | ||
|
|
2613fdcc6b | ||
|
|
fbabd509f0 | ||
|
|
a075c93e6f | ||
|
|
d2a8bf92d9 | ||
|
|
39459fb5a1 | ||
|
|
4fb47e1c3b | ||
|
|
1260a6480f | ||
|
|
598c6ebb69 | ||
|
|
289e2d80c1 | ||
|
|
cb7cd9aac2 | ||
|
|
ea020aa8a5 | ||
|
|
4d30fecc36 | ||
|
|
369bbbe084 | ||
|
|
257a4a458b | ||
|
|
0ddc3cc10b | ||
|
|
9c6f1daa83 | ||
|
|
cb9701eaef | ||
|
|
afc2fe2f79 | ||
|
|
0dd00645f8 | ||
|
|
c7919e3c75 | ||
|
|
fb812554f3 | ||
|
|
63094494d3 | ||
|
|
5ff73256e8 | ||
|
|
06d861c16c | ||
|
|
cfe1a40491 | ||
|
|
933d6c7d0e |
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -9,11 +9,11 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.7, '3.0', 3.1, 3.2]
|
||||
ruby: [2.7, '3.0', 3.1]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: ruby/setup-ruby@v1
|
||||
|
||||
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
@@ -43,13 +43,13 @@ jobs:
|
||||
install: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2.1.0
|
||||
uses: docker/login-action@v2.2.0
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
|
||||
4
.github/workflows/gempush.yml
vendored
4
.github/workflows/gempush.yml
vendored
@@ -10,11 +10,11 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- 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: |
|
||||
|
||||
@@ -2,7 +2,7 @@ require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
SuggestExtensions: false
|
||||
TargetRubyVersion: 2.5
|
||||
TargetRubyVersion: 2.7
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
|
||||
@@ -25,8 +25,7 @@
|
||||
## Prerequisites
|
||||
|
||||
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
|
||||
- Ruby >= 2.5 - Recommended: latest
|
||||
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
|
||||
- Ruby >= 2.7 - Recommended: latest
|
||||
- Curl >= 7.72 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
|
||||
@@ -90,7 +89,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?
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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}"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.22'
|
||||
VERSION = '3.8.25'
|
||||
end
|
||||
|
||||
5519
spec/fixtures/db/dynamic_finders.yml
vendored
5519
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
2434
spec/fixtures/dynamic_finders/expected.yml
vendored
2434
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,170 @@
|
||||
# Copyright (C) 2023 Qewebby
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 360 Product Viewer for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp_360view\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-11T17:47:24+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: wp360view\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "360 Product Viewer for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/360-product-viewer-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Qewebby"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.qewebby.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:108
|
||||
msgid "360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
msgid "Delete image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 Product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add to 360 Product gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete 360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:39
|
||||
msgid "360 View Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:56
|
||||
msgid "Shortcode Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:78
|
||||
msgid "Advance Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:88
|
||||
msgid "Enable Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:90
|
||||
msgid "Enable navigation panel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:91
|
||||
msgid "Enable or disable navigation panel globally OR you can override this settings by <b>\"navigation\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:99
|
||||
#: includes/admin/class-wp360view-settings.php:101
|
||||
msgid "Enable dragging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:102
|
||||
msgid "Enable or disable dragging option globally OR you can override this settings by <b>\"drag\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:106
|
||||
#: includes/admin/class-wp360view-settings.php:110
|
||||
msgid "Play Speed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:111
|
||||
msgid "Add/change play speed of 360 slider globally OR you can override this settings by <b>\"playspeed\"</b> attibute by shortcode. Default value is <b>100</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:115
|
||||
#: includes/admin/class-wp360view-settings.php:119
|
||||
msgid "Frame Rate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:120
|
||||
msgid "Add/change frame rate of 360 slider globally OR you can override this settings by <b>\"framerate\"</b> attibute by shortcode. Default value is <b>10</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:128
|
||||
msgid "Enable Spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:130
|
||||
msgid "Enable spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:131
|
||||
msgid "Enable or disable spin settings globally OR you can override this settings by <b>\"enablespin\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:139
|
||||
#: includes/admin/class-wp360view-settings.php:141
|
||||
msgid "Show Cursor"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:142
|
||||
msgid "Hide or show cursor globally OR you can override this settings by <b>\"showcursor\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:151
|
||||
msgid "Fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:153
|
||||
msgid "Enable full screen support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:154
|
||||
msgid "Enable or disable full screen support settings globally OR you can override this settings by <b>\"fullscreen\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:162
|
||||
msgid "Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:164
|
||||
msgid "Enable Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:165
|
||||
msgid "Enable or disable zoom in/out settings globally OR you can override this settings by <b>\"zoominout\"</b> attibute by shortcode. Default value is <b>true</b>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/360-product.php:22
|
||||
#: templates/shortcode-template.php:26
|
||||
msgid "360 Product View"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:134
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:176
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
@@ -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 & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:38
|
||||
msgid "Submit & 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…"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:62
|
||||
msgctxt "enhanced select"
|
||||
msgid "Searching…"
|
||||
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 ""
|
||||
@@ -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 ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/admin-help-docs/change_log/changelog.txt
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/admin-help-docs/change_log/changelog.txt
vendored
Normal 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
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/ahime-image-printer/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/ahime-image-printer/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 1.0.0 =
|
||||
* 05 February 2023
|
||||
* Initial release version
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/ai-bot/translation_file/languages/ai-bot.pot
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/ai-bot/translation_file/languages/ai-bot.pot
vendored
Normal 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 ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.1 - 29 May 2023 =
|
||||
* Fix: Some minor issues
|
||||
@@ -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"
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/ai-image-generator/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/ai-image-generator/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,160 @@
|
||||
# Copyright (C) 2023 Allpay
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Allpay payment gateway 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-"
|
||||
"gateway.1.0.2\n"
|
||||
"POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
|
||||
"PO-Revision-Date: 2023-07-19 19:49+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Domain: allpay-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Allpay payment gateway"
|
||||
msgstr "Платежный шлюз Allpay"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.allpay.co.il/integrations/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allpay Payment Gateway for WooCommerce."
|
||||
msgstr "Платежный шлюз Allpay для WooCommerce."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Allpay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://allpay.co.il"
|
||||
msgstr ""
|
||||
|
||||
#: allpay-gateway.php:47
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: allpay.php:12 allpay.php:16
|
||||
msgid "Bank cards payments Allpay"
|
||||
msgstr "Оплата банковскими картами Allpay"
|
||||
|
||||
#: allpay.php:14
|
||||
msgid "Allpay Payment Gateway Plug-in for WooCommerce"
|
||||
msgstr "Плагин платежного шлюза Allpay для WooCommerce"
|
||||
|
||||
#: allpay.php:55
|
||||
msgid "Enable / Disable"
|
||||
msgstr "Включить/ Выключить"
|
||||
|
||||
#: allpay.php:56
|
||||
msgid "Enable this payment gateway"
|
||||
msgstr "Включить этот метод оплаты"
|
||||
|
||||
#: allpay.php:61
|
||||
msgid "Title"
|
||||
msgstr "Заголовок"
|
||||
|
||||
#: allpay.php:63
|
||||
msgid "Payment title the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Заголовок платежа, который покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:64
|
||||
msgid "Credit card"
|
||||
msgstr "Кредитная карта"
|
||||
|
||||
#: allpay.php:67
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: allpay.php:69
|
||||
msgid "Payment description the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Описание платежа, которое покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:70
|
||||
msgid "Pay securely using your credit card."
|
||||
msgstr "Платите безопасно с помощью кредитной карты."
|
||||
|
||||
#: allpay.php:74
|
||||
msgid "API login"
|
||||
msgstr "API логин"
|
||||
|
||||
#: allpay.php:76
|
||||
msgid "Allpay API Login"
|
||||
msgstr "Логин API Allpay"
|
||||
|
||||
#: allpay.php:79
|
||||
msgid "API key"
|
||||
msgstr "API ключ"
|
||||
|
||||
#: allpay.php:81
|
||||
msgid "Allpay API Key"
|
||||
msgstr "Ключ API Allpay"
|
||||
|
||||
#: allpay.php:84
|
||||
msgid "Installment max payments"
|
||||
msgstr "Платежей в рассрочку до"
|
||||
|
||||
#: allpay.php:86
|
||||
msgid "Maximum number of installment payments. Up to 12, zero to disable."
|
||||
msgstr ""
|
||||
"Максимальное количество платежей в рассрочку. Максимум до12-и платежей. 0 "
|
||||
"для отключения."
|
||||
|
||||
#: allpay.php:87
|
||||
msgid ""
|
||||
"Allows client to choose number of payments. Valid for credit cards only (no "
|
||||
"debit cards)"
|
||||
msgstr ""
|
||||
"Позволяет клиенту выбрать количество платежей. Действительно только для "
|
||||
"кредитных карт (без дебетовых карт)"
|
||||
|
||||
#: allpay.php:91
|
||||
msgid "Installment min order amount"
|
||||
msgstr "Минимальная сумма заказа в рассрочку"
|
||||
|
||||
#: allpay.php:93
|
||||
msgid "Minimum order amount for installments. Zero for orders of any amount."
|
||||
msgstr "Минимальная сумма заказа в рассрочку. Ноль для заказов на любую сумму."
|
||||
|
||||
#: allpay.php:94
|
||||
msgid ""
|
||||
"Enables installment option when payment amount equals or above this value"
|
||||
msgstr ""
|
||||
"Включает опцию рассрочки, когда сумма платежа равна или превышает это "
|
||||
"значение"
|
||||
|
||||
#: allpay.php:98
|
||||
msgid "First payment amount"
|
||||
msgstr "Сумма первого платежа"
|
||||
|
||||
#: allpay.php:100
|
||||
msgid "First Installment payment. Zero for auto."
|
||||
msgstr "Оплата первого взноса. Ноль для автоматического расчета."
|
||||
|
||||
#: allpay.php:101
|
||||
msgid ""
|
||||
"Makes first payment amount fixed. If set to 0, the system will calculate the "
|
||||
"first payment"
|
||||
msgstr ""
|
||||
"Фиксирует сумму первого платежа. Если установлено 0, система рассчитает "
|
||||
"первый платеж"
|
||||
|
||||
#: allpay.php:146
|
||||
msgid ""
|
||||
"We are currently experiencing problems trying to connect to this payment "
|
||||
"gateway. Sorry for the inconvenience."
|
||||
msgstr ""
|
||||
"В настоящее время у нас возникают проблемы с подключением к этому платежному "
|
||||
"шлюзу. Приносим извинения за неудобства."
|
||||
|
||||
#: allpay.php:149
|
||||
msgid "Allpay's Response was empty."
|
||||
msgstr "Пустой ответ от платежного шлюза."
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "mvam-animiate",
|
||||
"version": "1.0.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^19.2.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
*** Anti DDOS/BOT ReCaptcha Protection ***
|
||||
|
||||
= 1.0.0 - 2023-02-13 =
|
||||
* ANNOUNCE - First release of this plugin.
|
||||
@@ -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"
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/arvancloud-vod/composer_file/package.json
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/arvancloud-vod/composer_file/package.json
vendored
Normal 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": "*"
|
||||
}
|
||||
}
|
||||
@@ -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 ""
|
||||
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
@@ -0,0 +1,249 @@
|
||||
# Copyright (C) 2023 ThemeAtelier
|
||||
# This file is distributed under the same license as the Ask FAQ Pro plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ask FAQ Pro 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ask-faq-pro\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-04-19T04:37:38+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: ask-faq-pro\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ask FAQ Pro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Best FAQ block including tab and accordion version what provides to use text, audio and video as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeAtelier"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://themeatelier.net/"
|
||||
msgstr ""
|
||||
|
||||
#: ask-faq.php:55
|
||||
msgid "Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:72
|
||||
#: build/tab/index.js:96
|
||||
#: build/accordion-block/index.js:52
|
||||
#: build/tab/index.js:94
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:75
|
||||
#: build/tab/index.js:99
|
||||
#: build/accordion-block/index.js:53
|
||||
#: build/tab/index.js:95
|
||||
msgid "Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:78
|
||||
#: build/tab/index.js:102
|
||||
#: build/accordion-block/index.js:54
|
||||
#: build/tab/index.js:96
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:85
|
||||
#: build/accordion-block/index.js:90
|
||||
#: build/accordion-block/index.js:157
|
||||
#: build/tabs/index.js:3631
|
||||
#: build/tabs/index.js:3632
|
||||
#: build/accordion-block/index.js:68
|
||||
#: build/accordion-block/index.js:73
|
||||
#: build/accordion-block/index.js:171
|
||||
#: build/tabs/index.js:3194
|
||||
#: build/tabs/index.js:3198
|
||||
msgid "Write Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:91
|
||||
#: build/accordion-block/index.js:74
|
||||
msgid "Write your question to show as Write Question."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:93
|
||||
#: build/tab/index.js:105
|
||||
#: build/accordion-block/index.js:80
|
||||
#: build/tab/index.js:104
|
||||
msgid "Type of Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:106
|
||||
#: build/tab/index.js:118
|
||||
#: build/accordion-block/index.js:89
|
||||
#: build/tab/index.js:113
|
||||
msgid "Choose the type of answer you wanna show"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:108
|
||||
#: build/accordion-block/index.js:113
|
||||
#: build/accordion-block/index.js:184
|
||||
#: build/tab/index.js:120
|
||||
#: build/tab/index.js:123
|
||||
#: build/accordion-block/index.js:96
|
||||
#: build/accordion-block/index.js:101
|
||||
#: build/accordion-block/index.js:209
|
||||
msgid "Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:114
|
||||
#: build/accordion-block/index.js:102
|
||||
msgid "Write your answer to show as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:205
|
||||
#: build/tab/index.js:139
|
||||
#: build/tab/index.js:184
|
||||
#: build/accordion-block/index.js:233
|
||||
#: build/tab/index.js:142
|
||||
#: build/tab/index.js:202
|
||||
msgid "Upload Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:207
|
||||
#: build/tab/index.js:186
|
||||
#: build/accordion-block/index.js:242
|
||||
#: build/tab/index.js:211
|
||||
msgid "No Audio Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:228
|
||||
#: build/tab/index.js:155
|
||||
#: build/tab/index.js:207
|
||||
#: build/accordion-block/index.js:271
|
||||
#: build/tab/index.js:162
|
||||
#: build/tab/index.js:238
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:230
|
||||
#: build/tab/index.js:209
|
||||
#: build/accordion-block/index.js:280
|
||||
#: build/tab/index.js:247
|
||||
msgid "No Video Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:261
|
||||
#: build/accordion-block/index.js:313
|
||||
msgid "Accordion Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:262
|
||||
#: build/accordion-block/index.js:314
|
||||
msgid "A accordion question item"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:518
|
||||
#: build/tabs/index.js:3692
|
||||
#: build/accordion-block/index.js:561
|
||||
#: build/tabs/index.js:3304
|
||||
msgid "Show Searchbar for filtering questions."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:522
|
||||
#: build/accordion-block/index.js:527
|
||||
#: build/tabs/index.js:3696
|
||||
#: build/tabs/index.js:3701
|
||||
#: build/accordion-block/index.js:570
|
||||
#: build/accordion-block/index.js:575
|
||||
#: build/tabs/index.js:3313
|
||||
#: build/tabs/index.js:3318
|
||||
msgid "Search Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:528
|
||||
#: build/tabs/index.js:3702
|
||||
#: build/accordion-block/index.js:579
|
||||
#: build/tabs/index.js:3322
|
||||
msgid "Change search filed placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:530
|
||||
#: build/tabs/index.js:3704
|
||||
#: build/accordion-block/index.js:586
|
||||
#: build/tabs/index.js:3329
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:64
|
||||
#: build/tab/index.js:59
|
||||
msgid "%1$s (%2$d of %3$d)"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:163
|
||||
#: build/tab/index.js:180
|
||||
msgid "Add Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Accordion for Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "ask"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Tab for ask faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
52
spec/fixtures/dynamic_finders/plugin_version/auto-date-year-month/change_log/changelog.txt
vendored
Normal file
52
spec/fixtures/dynamic_finders/plugin_version/auto-date-year-month/change_log/changelog.txt
vendored
Normal 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
|
||||
@@ -0,0 +1,6 @@
|
||||
= 1.2.0 =
|
||||
New: support for WooCommerce 8.0.1
|
||||
New: support for WordPress 6.3
|
||||
|
||||
= 1.1.0 =
|
||||
New: support for WooCommerce 7.9
|
||||
@@ -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 ""
|
||||
@@ -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"
|
||||
@@ -0,0 +1,184 @@
|
||||
# Copyright (C) 2023 Bayarcash
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bayarcash GiveWP 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bayarcash-givewp\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-06-22T02:18:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: bayarcash-givewp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Bayarcash GiveWP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewp&utm_campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept online donation from Malaysia internet online banking via Bayarcash. Currently, Bayarcash support FPX and Direct Debit payment channels."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/src/Givewp.php:43
|
||||
#: includes/src/Givewp.php:44
|
||||
#: includes/src/Givewp.php:51
|
||||
#: includes/src/Givewp.php:168
|
||||
msgid "Bayarcash"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewps&utm_campaign=author-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/donor-profile.php:14
|
||||
msgid "Phone Numbers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/donor-profile.php:19
|
||||
msgid "This donor does not have any phone number saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:120
|
||||
#: includes/admin/form-fields.php:125
|
||||
#: includes/src/Givewp.php:277
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:122
|
||||
msgid "We require a phone number for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:131
|
||||
msgid "Identification Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:133
|
||||
msgid "We require a identification type for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:152
|
||||
#: includes/admin/form-fields.php:157
|
||||
#: includes/src/Givewp.php:278
|
||||
msgid "Identification Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:154
|
||||
msgid "We require a identification number for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Bayarcash.php:123
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Bayarcash.php:157
|
||||
msgid "Bayarcash require GiveWP plugin. Please install and activate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:70
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:75
|
||||
#: includes/src/Givewp.php:134
|
||||
msgid "Personal Access Token (PAT)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:76
|
||||
#: includes/src/Givewp.php:135
|
||||
msgid "Enter your Personal Access Token (PAT). You can retrieve it from Bayarcash console at Dashboard > Profile."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:81
|
||||
#: includes/src/Givewp.php:140
|
||||
msgid "Portal Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:82
|
||||
#: includes/src/Givewp.php:141
|
||||
msgid "Enter your portal key. You can retrieve it from Bayarcash console at Dashboard > Portals."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:91
|
||||
msgid "Reference Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:96
|
||||
#: includes/src/Givewp.php:146
|
||||
msgid "Billing Fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:97
|
||||
#: includes/src/Givewp.php:147
|
||||
msgid "This option will enable the billing details section at the donation form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:102
|
||||
#: includes/src/Givewp.php:152
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:103
|
||||
#: includes/src/Givewp.php:153
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:123
|
||||
msgid "Do you want to customize the donation instructions for this form?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:128
|
||||
msgid "Global Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:129
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:130
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:205
|
||||
msgid "Make your donation quickly and securely with Bayarcash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:206
|
||||
msgid "How it works:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:207
|
||||
msgid "You will be redirected to Bayarcash to pay using your online banking. You will then be brought back to this page to view your receipt."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:316
|
||||
msgid "Please tick the create account button if you want to create a subscription donation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:397
|
||||
msgid "Please enter phone number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:401
|
||||
msgid "Please enter identification number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:405
|
||||
msgid "Please select identification type."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: payment data
|
||||
#: includes/src/Givewp.php:455
|
||||
msgid "Payment creation failed before sending donor to Bayarcash. Payment data: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:456
|
||||
msgid "Payment Error"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/before-after-image-block/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/before-after-image-block/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,194 @@
|
||||
# Copyright (C) 2023 thingsym
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Better Website Performance 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-performance\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-31T08:54:57+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: better-website-performance\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Better Website Performance"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/thingsym/better-website-performance"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The Better Website Performance plugin adds advanced features to improve website performance."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "thingsym"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.thingslabo.com/"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-better-website-performance.php:107
|
||||
msgid "Become a sponsor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/class-panel.php:39
|
||||
msgid "Performance Settings (Better Website Performance)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emoji/class-emoji.php:169
|
||||
msgid "Emoji resource"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emoji/class-emoji.php:188
|
||||
msgid "Enable Emoji resource"
|
||||
msgstr ""
|
||||
|
||||
#: inc/image-srcset/class-image-srcset.php:162
|
||||
msgid "Image Srcset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/image-srcset/class-image-srcset.php:181
|
||||
msgid "Enable Image Srcset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:200
|
||||
msgid "JavaScript"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:219
|
||||
msgid "Async type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:243
|
||||
#: inc/style/class-concat.php:329
|
||||
msgid "Exclude"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:246
|
||||
#: inc/style/class-concat.php:332
|
||||
msgid "Enter handle names to exclude."
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:228
|
||||
msgid "jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:247
|
||||
msgid "Enable jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:266
|
||||
msgid "Enable jQuery Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:285
|
||||
msgid "Place jQuery in the footer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/preload/class-preload.php:193
|
||||
#: inc/preload/class-preload.php:214
|
||||
msgid "Preload"
|
||||
msgstr ""
|
||||
|
||||
#: inc/preload/class-preload.php:220
|
||||
#: inc/resource-hints/class-resource-hints.php:240
|
||||
#: inc/resource-hints/class-resource-hints.php:265
|
||||
#: inc/resource-hints/class-resource-hints.php:290
|
||||
#: inc/resource-hints/class-resource-hints.php:315
|
||||
msgid "See <a href=\"%1$s\" target=\"_blank\">Specification</a>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:213
|
||||
msgid "Resource Hints"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:234
|
||||
msgid "DNS-Prefetch"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:259
|
||||
msgid "Preconnect"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:284
|
||||
msgid "Prefetch"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:309
|
||||
msgid "Prerender"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:267
|
||||
msgid "Style Sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:286
|
||||
msgid "Loading type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:290
|
||||
msgid "Default: Load external css file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:291
|
||||
msgid "Inline each stylesheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:292
|
||||
msgid "Inline concated Stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:310
|
||||
msgid "Enable minify"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-custom-css/class-wp-custom-css.php:180
|
||||
msgid "Place custom CSS in the footer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:195
|
||||
msgid "HTML Head"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:214
|
||||
msgid "Display the links to the general feeds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:233
|
||||
msgid "Display the links to the extra feeds (such as category feeds)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:252
|
||||
msgid "Display Really Simple Discovery (EditURI)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:271
|
||||
msgid "Display Windows Live Writer (wlwmanifest)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:290
|
||||
msgid "Display WordPress generator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:309
|
||||
msgid "Display canonical"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:328
|
||||
msgid "Display shortlink"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:347
|
||||
msgid "Display the REST API link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:366
|
||||
msgid "Display oEmbed discovery links"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,232 @@
|
||||
# Copyright (C) 2023 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mailchimp block 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-block\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-07-08T12:12:42+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: mail-collections\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Mailchimp block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Connect your MailChimp with your WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 1"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 2"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 3"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Read Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Would you please rate us?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "We are new and we need your help to grow!🙏"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Config"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Configure Api Key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Audience Id"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Elements"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Forms"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Background:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Input"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Hovers Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Title Here"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Description Here"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Please Insert Your Api Key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "MailChimp"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "MailChimp API key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Save Information"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Mailchimp-block"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Description of MailChimp Block."
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "mail"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "mailchimp"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "key3"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/blockprotocol/change_log/changelog.txt
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/blockprotocol/change_log/changelog.txt
vendored
Normal 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.
|
||||
|
||||
@@ -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…"
|
||||
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…"
|
||||
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 ""
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/bonaire/change_log/CHANGELOG.md
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/bonaire/change_log/CHANGELOG.md
vendored
Normal 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.
|
||||
@@ -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 ""
|
||||
@@ -0,0 +1,152 @@
|
||||
# Copyright (C) 2023 Carmo Product GTIN for WooCommerce
|
||||
# This file is distributed under the same license as the Carmo Product GTIN for WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Carmo Product GTIN for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/"
|
||||
"qs_tool_wp_pot_gen_1685090187_0439_962967\n"
|
||||
"POT-Creation-Date: 2023-05-26 10:54+0100\n"
|
||||
"PO-Revision-Date: 2023-05-26 10:55+0100\n"
|
||||
"Last-Translator: João Carmo Pereira <mail@carmo.pt>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.1\n"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:37
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Carmo Woo Product GTIN is active but WooCommerce is not. Please <a "
|
||||
"href=\"%s\">install and activate WooCommerce by Automattic</a> plugin to use "
|
||||
"this feature."
|
||||
msgstr ""
|
||||
"O Carmo Woo Product GTIN está activo, mas o WooCommerce não está. <a "
|
||||
"href=\"%s\">Instale e active o plugin WooCommerce by Automattic</a> para "
|
||||
"utilizar esta funcionalidade."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:53
|
||||
#: carmo-product-gtin-for-woocommerce.php:76
|
||||
msgid "Enter gtin (ean/upc) value"
|
||||
msgstr "Introduzir o gtin (ean/upc)"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:55
|
||||
#: carmo-product-gtin-for-woocommerce.php:79
|
||||
msgid ""
|
||||
"The GTIN, including EAN (European Article Number) and UPC (Universal Product "
|
||||
"Code), is a standardized numerical identifier and barcode used to uniquely "
|
||||
"identify products in the global marketplace, facilitating efficient "
|
||||
"inventory management and supply chain operations."
|
||||
msgstr ""
|
||||
"O GTIN, incluindo o EAN (Número Europeu de Artigo) e o UPC (Código Universal "
|
||||
"de Produto), é um identificador numérico normalizado e um código de barras "
|
||||
"utilizado para identificar exclusivamente os produtos no mercado global, "
|
||||
"facilitando a gestão eficiente do inventário e as operações da cadeia de "
|
||||
"abastecimento."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:152
|
||||
msgid ""
|
||||
"WooCommerce must be installed and active to see how many products have GTIN"
|
||||
msgstr ""
|
||||
"O WooCommerce tem de estar instalado e activo para ver quantos produtos têm "
|
||||
"GTIN"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:170
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:173
|
||||
#, php-format
|
||||
msgid "You have used the GTIN field: %s time(s)."
|
||||
msgstr "O campo GTIN foi utilizado: %s vezes."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:176
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:178
|
||||
msgid ""
|
||||
"Warning: This will delete all product data associated with Carmo GTIN. Are "
|
||||
"you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Aviso: Isto irá eliminar todos os dados do produto associados ao Carmo GTIN. "
|
||||
"Tem a certeza de que pretende continuar?"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:179
|
||||
msgid ""
|
||||
"If you delete the data don't forget to flush your object cache if present."
|
||||
msgstr ""
|
||||
"Se eliminar os dados, não se esqueça de limpar a sua cache de objectos, se "
|
||||
"existir."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:180
|
||||
msgid "Delete all carmo GTIN data"
|
||||
msgstr "Eliminar todos os dados do carmo GTIN"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:189
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:192
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This plugin was created with love. If you have any question or suggestion, "
|
||||
"please contact using <a href='mailto:%s'>%s</a>."
|
||||
msgstr ""
|
||||
"Este plugin foi criado com amor. Se existir alguma dúvida ou sugestão, entre "
|
||||
"em contato pelo e-email <a href='mailto:%s'>%s</a>."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:220
|
||||
msgid "All data has been deleted."
|
||||
msgstr "Todos os dados foram apagados."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:225
|
||||
msgid "An error occurred while trying to delete data."
|
||||
msgstr "Ocorreu um erro ao tentar apagar os dados."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:232
|
||||
msgid ""
|
||||
"Are you sure you want to delete all product data associated with Carmo GTIN?"
|
||||
msgstr ""
|
||||
"Tem a certeza de que pretende eliminar todos os dados do produto associados "
|
||||
"ao Carmo GTIN?"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:233
|
||||
msgid "This action cannot be undone."
|
||||
msgstr "Esta acção é irreversível."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:234
|
||||
msgid "It will delete all meta_key = 'carmogtin' from wp_postmeta table."
|
||||
msgstr ""
|
||||
"Este procedimento irá eliminar todas as entradas meta_key = 'carmogtin' na "
|
||||
"tabela wp_postmeta."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:235
|
||||
msgid "Yes I'm sure"
|
||||
msgstr "Sim, tenho a certeza"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:248
|
||||
msgid "Settings"
|
||||
msgstr "Opções"
|
||||
|
||||
#~ msgid "Carmo Product GTIN for WooCommerce"
|
||||
#~ msgstr "Carmo Product GTIN for WooCommerce"
|
||||
|
||||
#~ msgid "https://www.carmo.pt/project/woo-product-gtin/"
|
||||
#~ msgstr "https://www.carmo.pt/project/woo-product-gtin/"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Adds a numeric GTIN field on Simple Products and Variation if they exist. "
|
||||
#~ "This field can be used via shortcode on product pages and for product "
|
||||
#~ "feeds."
|
||||
#~ msgstr ""
|
||||
#~ "Adiciona um GTIN numérico em Produtos Simples e em Produtos Variáveis "
|
||||
#~ "(caso existam). Este campo pode ser utilizado via shortcode nos template "
|
||||
#~ "de página de produto e para feeds de produto."
|
||||
|
||||
#~ msgid "carmo"
|
||||
#~ msgstr "carmo"
|
||||
|
||||
#~ msgid "https://carmo.pt"
|
||||
#~ msgstr "https://carmo.pt"
|
||||
@@ -0,0 +1,2 @@
|
||||
10/02/2023 version 1.0
|
||||
- Initial Release
|
||||
File diff suppressed because it is too large
Load Diff
56
spec/fixtures/dynamic_finders/plugin_version/cf7-blocks/composer_file/package.json
vendored
Normal file
56
spec/fixtures/dynamic_finders/plugin_version/cf7-blocks/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
@@ -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 ""
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/codeless-hotspot-block/composer_file/package.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/codeless-hotspot-block/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
@@ -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 ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
*** Conditional Logic for WooCommerce Product Add-Ons ***
|
||||
|
||||
2022-08-12 - version 1.0.0
|
||||
* Initial Release
|
||||
@@ -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.
|
||||
117
spec/fixtures/dynamic_finders/plugin_version/copycraft/translation_file/languages/copycraft.pot
vendored
Normal file
117
spec/fixtures/dynamic_finders/plugin_version/copycraft/translation_file/languages/copycraft.pot
vendored
Normal 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 ""
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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 ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/custom-dokan-fields/change_log/changelog.txt
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/custom-dokan-fields/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
***CHANGELOG***
|
||||
|
||||
|
||||
Version 1.0.0 - 26 February 2023
|
||||
|
||||
* Initial release
|
||||
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/custom-posts-list-block/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/custom-posts-list-block/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
935
spec/fixtures/dynamic_finders/plugin_version/delivengo/translation_file/languages/wc_delivengo.pot
vendored
Normal file
935
spec/fixtures/dynamic_finders/plugin_version/delivengo/translation_file/languages/wc_delivengo.pot
vendored
Normal file
@@ -0,0 +1,935 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Delivengo : Méthodes de livraison pour WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/delivengo/\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-06-14\n"
|
||||
"X-Domain: wc_delivengo\n"
|
||||
|
||||
|
||||
msgid "Preparing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposited"
|
||||
msgstr ""
|
||||
|
||||
msgid "In progress"
|
||||
msgstr ""
|
||||
|
||||
msgid "Distributed"
|
||||
msgstr ""
|
||||
|
||||
msgid "AR received"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reclamation asked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Incident"
|
||||
msgstr ""
|
||||
|
||||
msgid "No handling information from La Poste for more than 5 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "No evolution of parcel tracking for more than 30 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "AR not received within 30 days following distribution"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND not received within 15/30 days following the non-delivery"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Access or address error"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Addressee unknown at address"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Parcel refused by the addressee"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Arrival notified and not claimed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complaint resolved: Parcel found by La Poste"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complaint abandoned"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complaint resolved: La Poste compensation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sent (international)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Handling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resent to distribution"
|
||||
msgstr ""
|
||||
|
||||
msgid "This plugin gives you the possibility to use the Delivengo shipping methods in WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not save the deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not save the label"
|
||||
msgstr ""
|
||||
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
msgid "Free from order value"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping cost will be free if the order value is over the one specified."
|
||||
msgstr ""
|
||||
|
||||
msgid "Always free?"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, rates calculation for this shipping method will always be zero."
|
||||
msgstr ""
|
||||
|
||||
msgid "Title if free"
|
||||
msgstr ""
|
||||
|
||||
msgid "This controls the title which the user sees during checkout if the shipping methods is free. Leave empty to always use standard title."
|
||||
msgstr ""
|
||||
|
||||
msgid "Handling fee"
|
||||
msgstr ""
|
||||
|
||||
msgid "This amount is added to the shipping cost during checkout."
|
||||
msgstr ""
|
||||
|
||||
msgid "Free if at least one item in the cart has one of the free shipping classes above"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, delivery will be free, even if the other items in the cart do not have one of the free shipping classes above"
|
||||
msgstr ""
|
||||
|
||||
msgid "Free shipping classes"
|
||||
msgstr ""
|
||||
|
||||
msgid "These shipping classes qualify for free shipping"
|
||||
msgstr ""
|
||||
|
||||
msgid "Excluded shipping classes"
|
||||
msgstr ""
|
||||
|
||||
msgid "The current shipping method will not be displayed if one product in the cart has one of these shipping classes. This option takes precedence over the option Free shipping classes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Economic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping without tracking in mailbox, in Economic delivery time to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Priority"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping without tracking in mailbox, in Priority delivery time to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Tracked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking in mailbox to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo With acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking and signature, registered mail with acknowledgement of receipt, to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Without acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking and signature, registered mail without acknowledgement of receipt, to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
msgid "No label found in the request"
|
||||
msgstr ""
|
||||
|
||||
msgid "The statuses update process has started. Depending on the number of orders you have, it may take a few minutes to update all statuses."
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing order id in the request"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error creating the shipment: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing api key in the request"
|
||||
msgstr ""
|
||||
|
||||
msgid "This API key is valid"
|
||||
msgstr ""
|
||||
|
||||
msgid "The content of the file is empty"
|
||||
msgstr ""
|
||||
|
||||
msgid "HS codes imported successfully"
|
||||
msgstr ""
|
||||
|
||||
msgid "An error occurred while importing the default shipping prices."
|
||||
msgstr ""
|
||||
|
||||
msgid "The log file is empty"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hi %s,"
|
||||
msgstr ""
|
||||
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracking number: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping address:"
|
||||
msgstr ""
|
||||
|
||||
msgid "You can follow up your order here: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unit price (%s)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unit weight (grams)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit prices and weights"
|
||||
msgstr ""
|
||||
|
||||
msgid "Editing prices and weights may create inconsistency between CN23 or labels and invoice. Edit these values only if you really need it."
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping costs (%s)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Packaging weight (grams)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Total weight (items + packaging)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Customs category"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate label"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo tracking link"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Addresses saved on your MyDelivengo account</b> (click on the address of your choice to auto-fill the form)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label format"
|
||||
msgstr ""
|
||||
|
||||
msgid "Offer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print format"
|
||||
msgstr ""
|
||||
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unique format"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print example"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download example"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test your API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "See logs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping rates"
|
||||
msgstr ""
|
||||
|
||||
msgid "From weight"
|
||||
msgstr ""
|
||||
|
||||
msgid "Included"
|
||||
msgstr ""
|
||||
|
||||
msgid "To weight"
|
||||
msgstr ""
|
||||
|
||||
msgid "Excluded"
|
||||
msgstr ""
|
||||
|
||||
msgid "From cart price"
|
||||
msgstr ""
|
||||
|
||||
msgid "To cart price"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping class"
|
||||
msgstr ""
|
||||
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add rate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Import Delivengo Europe prices"
|
||||
msgstr ""
|
||||
|
||||
msgid "Import Delivengo World prices"
|
||||
msgstr ""
|
||||
|
||||
msgid "This will replace the currently existing prices you've configured"
|
||||
msgstr ""
|
||||
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not call Delivengo API: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error responded from Delivengo API with status code %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Account type unknown, make sure to enter your API key in the settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not retrieve the parcel status"
|
||||
msgstr ""
|
||||
|
||||
msgid "No format option saved in the settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "No format option saved for this contract, check the settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "No product found for the order %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing HS code or country of manufacture on product %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "External label ids or order ids are missing"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Order #%s]"
|
||||
msgstr ""
|
||||
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billing address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping address"
|
||||
msgstr ""
|
||||
|
||||
msgid "VAT Number: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid file list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default HS code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orders per page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
msgid "This order is not shipped by Delivengo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping status: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sale of merchandise"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gift"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sample"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return of merchandise"
|
||||
msgstr ""
|
||||
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgid "Document"
|
||||
msgstr ""
|
||||
|
||||
msgid "You need to select at least one item to generate a label"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select your containers"
|
||||
msgstr ""
|
||||
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping method"
|
||||
msgstr ""
|
||||
|
||||
msgid "Order status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose container"
|
||||
msgstr ""
|
||||
|
||||
msgid "Access denied! (Security check failed)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "The label couldn't be generated: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label not generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label printed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label not printed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgid "My Delivengo account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "My addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Products configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete the selected rates?"
|
||||
msgstr ""
|
||||
|
||||
msgid "An email is sent to the customer when the deposit is generated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Your order is being prepared"
|
||||
msgstr ""
|
||||
|
||||
msgid "[%s] Your order is being prepared"
|
||||
msgstr ""
|
||||
|
||||
msgid "All countries"
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgid "All shipping methods"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show filters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "All statuses"
|
||||
msgstr ""
|
||||
|
||||
msgid "All order statuses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Orders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update shipping statuses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter an API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse the address"
|
||||
msgstr ""
|
||||
|
||||
msgid "You are about the fill the form above with this address. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit not generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit n°%s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Company name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complete name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Address line 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Address line 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Postal box"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zip code"
|
||||
msgstr ""
|
||||
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipment outside of EU"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipment type"
|
||||
msgstr ""
|
||||
|
||||
msgid "United Kingdom EORI Number"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default HS code to use if no specific ones have been set on the products"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default country of manufacture"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default country of manufacture to use if no specific ones have been set on the products"
|
||||
msgstr ""
|
||||
|
||||
msgid "VAT number"
|
||||
msgstr ""
|
||||
|
||||
msgid "The VAT number is needed for delivery to United Kingdom"
|
||||
msgstr ""
|
||||
|
||||
msgid "The packaging weight will be added to the products weight on label generation. It is taken into account when calculating the shipping price to show to the customers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Calculate shipping method before applying coupons"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the available shipping methods and fees will be calculated based on the cart price before applying any coupon."
|
||||
msgstr ""
|
||||
|
||||
msgid "Log messages"
|
||||
msgstr ""
|
||||
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "My Delivengo solutions %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download deposit n°%s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Not tracked"
|
||||
msgstr ""
|
||||
|
||||
msgid "You can only create one deposit per day. Are you sure you want to create the deposit with these orders?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown status"
|
||||
msgstr ""
|
||||
|
||||
msgid "The Economic Operator Registration and Identification number is required for the United Kingdom."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default shipping fee"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default shipping fee to apply for CN23 in case the shipping amount is 0 (free shipping for the client for example)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Every fifteen minutes"
|
||||
msgstr ""
|
||||
|
||||
msgid "No IBAN found on your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Go to your Delivengo account to add an IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgid "No data found for the product: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Product not found for provided SKU: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Product ID and SKU missing, at least one is required: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "One or more errors occurred:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsuccessful distribution attempt - Pending or returning to sender"
|
||||
msgstr ""
|
||||
|
||||
msgid "Your parcel is ready to be deposited at La Poste"
|
||||
msgstr ""
|
||||
|
||||
msgid "Handled by La Poste"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detained at the request of the sending country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure from the exchange office of the country of dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the exchange office of the destination country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return to exchange office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retained in customs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the exchange office of the country of dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering customs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Exiting customs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure from the exchange office of the destination country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure from the transit exchange office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the transit exchange office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the distribution office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Welcome to your Delivengo module!"
|
||||
msgstr ""
|
||||
|
||||
msgid "<u>Not yet registered on Delivengo?</u> Here is how to do it:"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Delivengo profil offer</b> (+ than 2000 shippings/year): I get my Delivengo profil credentials by filling %s to sign a contract"
|
||||
msgstr ""
|
||||
|
||||
msgid "this commercial contact form"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Delivengo easy offer</b> (- than 2000 shippings/year): I create my Delivengo easy account by %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "clicking here"
|
||||
msgstr ""
|
||||
|
||||
msgid "<u>Already registered on Delivengo?</u> Here is how to configure your module:"
|
||||
msgstr ""
|
||||
|
||||
msgid "I associate my account to the Delivengo module"
|
||||
msgstr ""
|
||||
|
||||
msgid "To connect the module, you must retrieve your Delivengo API key. Get your API key in your Delivengo account, via \"My account\", then \"API key\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "I configure my settings to simplify my shipping preparations thanks to Delivengo features"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose the format of your labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save your default customs formalities for your shipments outside the European Union"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select or enter your sender address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configure your HS code by categories or products. If you have a lot of products, you can use our import feature (see the \"Products configuration\" tab)"
|
||||
msgstr ""
|
||||
|
||||
msgid "I configure my shipping rates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Head to the \"Shipping\" tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select a shipping zone and click on \"Add shipping method\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Add the Delivengo solutions then configure the rates."
|
||||
msgstr ""
|
||||
|
||||
msgid "You can customize the title of the delivery solution for your customers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Be careful: Delivengo doesn't handle parcels over 2kg. Be careful when you modify the weight ranges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Everything is ready!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We have created a special page just for you, to view your new orders in WooCommerce > Delivengo orders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connect your Delivengo account with your WordPress website. To do this, retrieve your API key available in %s (hover over your username in the top right corner of the screen, then click on \"My account\", then \"Show API key\")."
|
||||
msgstr ""
|
||||
|
||||
msgid "your MyDelivengo account"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, log messages will be collected each time an action is performed by the plugin. This is mainly used to investigate when an error occurs."
|
||||
msgstr ""
|
||||
|
||||
msgid "Customs declaration"
|
||||
msgstr ""
|
||||
|
||||
msgid "For expeditions outside the EU, you must specify the fields below. Without these elements, your label will not be generated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sender address"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must enter your sender address here. We have retrieved below your sender addresses available in your MyDelivengo account."
|
||||
msgstr ""
|
||||
|
||||
msgid "NB: If no address is available in your MyDelivengo account, we invite you to enter one (in MyDelivengo, hover over your username in the top right corner of the screen, then click on \"My account\", then \"Sender addresses\")."
|
||||
msgstr ""
|
||||
|
||||
msgid "The HS code and the country of origin of your products must be filled in for shipments outside the European Union."
|
||||
msgstr ""
|
||||
|
||||
msgid "To facilitate the addition of these information to your products, we offer you to import them directly into your catalog."
|
||||
msgstr ""
|
||||
|
||||
msgid "Import a CSV file that will have in the first line either <b>id,hscode,country</b> or <b>sku,hscode,country</b>"
|
||||
msgstr ""
|
||||
|
||||
msgid "Then, enter on each line the product's id or SKU, the HS code and the country (each element separated by a comma). Ex: 11,123456,FR"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking in mailbox"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo orders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Priority delivery in mailbox, without tracking"
|
||||
msgstr ""
|
||||
|
||||
msgid "Economy delivery in mailbox, without tracking"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature with acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature without acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping in mailbox with tracking"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping statuses won't be automatically collected because a webhook already exists on your MyDelivengo account. Click the \"Update shipping statuses\" button, or remove the existing webhook on your MyDelivengo account."
|
||||
msgstr ""
|
||||
|
||||
msgid "No order to create shipment"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sending to Norway, Australia or New-Zealand"
|
||||
msgstr ""
|
||||
|
||||
msgid "If you are shipping to these destinations, you must enter your VOEC, AU GST, and/or NZ GST numbers directly into your %s account."
|
||||
msgstr ""
|
||||
|
||||
msgid "For more information, please visit our %s (2nd yellow box at the bottom of the page)."
|
||||
msgstr ""
|
||||
|
||||
msgid "support page"
|
||||
msgstr ""
|
||||
|
||||
msgid ": offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Warning: </b>you must generate the deposit slip before depositing your items. To do this, after generating the labels, check the orders to be deposited, select \"Generate deposit\" in Grouped actions, then click on \"Apply\". NB: you can only generate one deposit slip per day. Be sure to select all the orders to be deposited."
|
||||
msgstr ""
|
||||
|
||||
msgid "Good news, your order #%s has been shipped."
|
||||
msgstr ""
|
||||
|
||||
msgid "The tracking number is:"
|
||||
msgstr ""
|
||||
|
||||
msgid "The carrier's tracking information will be updated and available within 24 to 48 hours."
|
||||
msgstr ""
|
||||
|
||||
msgid "Thank you for your confidence."
|
||||
msgstr ""
|
||||
|
||||
msgid "Your order {order_number} will be shipped soon"
|
||||
msgstr ""
|
||||
|
||||
msgid "We are pleased to announce that your %s order has been shipped"
|
||||
msgstr ""
|
||||
|
||||
msgid "Automatic update of tracking status"
|
||||
msgstr ""
|
||||
|
||||
msgid "We are unable to automatically update the status of your Delivengo folds on WooCommerce. We have detected that there is already a webhook for your Delivengo account. For each account, only one webhook is allowed. To update them manually, you need to go to the \"Delivengo Orders\" page and click on \"Update shipping status\". You can also request the deactivation of the webhook from the technical hotline (contact@assistance-mdelivengo.fr), to make the update automatic on WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
msgid "Economy delivery in mailbox, without tracking: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Priority delivery in mailbox, without tracking: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping in mailbox with tracking: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature with acknowledgement of receipt: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature without acknowledgement of receipt: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "deposit_slip.pdf"
|
||||
msgstr ""
|
||||
|
||||
msgid "delivengo_label.pdf"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error responded from Delivengo API with the message: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
msgid "To guide you when setting up your module, you can consult our user guide by %s."
|
||||
msgstr ""
|
||||
|
||||
msgid "You can also contact our technical support by e-mail: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "The tracking number is: %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
121
spec/fixtures/dynamic_finders/plugin_version/depay-payments-for-woocommerce/change_log/changelog.txt
vendored
Normal file
121
spec/fixtures/dynamic_finders/plugin_version/depay-payments-for-woocommerce/change_log/changelog.txt
vendored
Normal 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
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
# Copyright (c) 2023 weDevs Pte. Ltd. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dokan Migrator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/weDevsOfficial/dokan-migrator/issues\n"
|
||||
"Last-Translator: support@wedevs.com\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-04-17T06:41:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: dokan-migrator\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/Admin/Menu.php:36
|
||||
#: includes/Admin/Menu.php:37
|
||||
msgid "Dokan Migrator"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://WeDevs.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "An e-commerce marketplace migration plugin for WordPress. Powered by WooCommerce and WeDevs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WeDevs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://WeDevs.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Helpers/MigrationHelper.php:57
|
||||
msgid "Dokan vendor dashboard activated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Helpers/MigrationHelper.php:91
|
||||
msgid "Migrate to dokan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Helpers/MigrationHelper.php:95
|
||||
msgid "Migrate Wcfm To Dokan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Ajax.php:59
|
||||
msgid "Item count successfull."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Ajax.php:93
|
||||
msgid "Import successfull."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Ajax.php:117
|
||||
msgid "Nonce verification failed!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Manager.php:215
|
||||
msgid "Invalid import type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Order.php:79
|
||||
#: includes/Processors/Vendor.php:91
|
||||
#: includes/Processors/Withdraw.php:97
|
||||
msgid "Migrator class not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Order.php:94
|
||||
msgid "No orders found to migrate to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Vendor.php:104
|
||||
msgid "No vendors found to migrate to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Withdraw.php:125
|
||||
msgid "No withdraws found to migrate to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: templates/app.php:2
|
||||
msgid "Loading.."
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-active-vendor-dashboard.php:17
|
||||
msgid "Activate dokan vendor dashboard."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$s: opening anchor tag, 2$s: closing anchor tag
|
||||
#: templates/template-active-vendor-dashboard.php:21
|
||||
msgid "%1$sActive now%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$s: the plugin to migrate to dokan
|
||||
#: templates/template-alert-migrate-to-dokan.php:21
|
||||
msgid "Do You Want To %1$s ?"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$s: opening anchor tag, 2$s: closing anchor tag
|
||||
#: templates/template-alert-migrate-to-dokan.php:27
|
||||
msgid "Click %1$1sHere%2$2s to move to the migration process."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Congratulations."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "You have successful migrated to Dokan. Enjoy 🎉"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "You have successfully migrated to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Withdraw"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Active dokan vendor dashboard."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Start migration"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "No plugin found to migrate to dokan"
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
@@ -0,0 +1,2 @@
|
||||
### 1.0.0: TBA
|
||||
* Initial Release
|
||||
@@ -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 "Let’s 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 website’s 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 user’s device OS theme and automatically enable website’s dark mode to match the dark mode setting on the user’s 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 don’t 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 ""
|
||||
@@ -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 & 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 ""
|
||||
2101
spec/fixtures/dynamic_finders/plugin_version/easy-folders/translation_file/languages/easy-folders.pot
vendored
Normal file
2101
spec/fixtures/dynamic_finders/plugin_version/easy-folders/translation_file/languages/easy-folders.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/ec-links/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/ec-links/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
9
spec/fixtures/dynamic_finders/plugin_version/eclear-spot/change_log/changelog.txt
vendored
Normal file
9
spec/fixtures/dynamic_finders/plugin_version/eclear-spot/change_log/changelog.txt
vendored
Normal 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
|
||||
@@ -0,0 +1,36 @@
|
||||
# Changelog
|
||||
|
||||
Všechny změny a vylepšení pluginu jsou zaznamenány v tomto souboru.
|
||||
|
||||
## Verze 1.2.1 (datum vydání: 14.06.2023)
|
||||
|
||||
### Added
|
||||
- Přidána možnost aktualizovat již existujícího uživatele, pokud ho již máte v seznamu (update_existing = true/false)
|
||||
- Přidána možnost znovu přihlásit odhlášeného odběratele (resubscribe = true/false)
|
||||
- Přepracována funkce odesílání dat (subscriber_data), aby se přes API posílaly jen položky opravdu vyplněné
|
||||
|
||||
## Verze 1.2.0 (datum vydání: 13.06.2023)
|
||||
|
||||
### Added
|
||||
- Přidána nová kolonka pro integraci telefonního čísla
|
||||
- Přidána možnost napsat tagy pro další segmentaci v rámci seznamů v Ecomail
|
||||
|
||||
## Verze 1.1.1 (datum vydání: 07.06.2023)
|
||||
|
||||
### Added
|
||||
- Přidána funkcionality 'trigger_autoresponders' => true, aby se odesílaly automatizace.
|
||||
|
||||
## Verze 1.1.0 (datum vydání: 22.03.2023)
|
||||
|
||||
### Added
|
||||
- Přidána možnost specifikovat field ID pro jméno a příjmení.
|
||||
|
||||
## Verze 1.0.0 (datum vydání: 21.03.2023)
|
||||
|
||||
### Added
|
||||
- První vydání pluginu Elementor Ecomail Integration
|
||||
- Základní integrace Ecomailu s widgetem formuláře Elementor Pro
|
||||
- Přidána možnost nastavit Ecomail integraci v nastavení formuláře Elementor Pro
|
||||
- Možnost zadat klíč API Ecomail do pole "Ecomail API Key"
|
||||
- Možnost zadat identifikátor seznamu Ecomail (List ID) do pole "Ecomail List ID"
|
||||
- Přidána Ecomail akce do možností formuláře "Actions After Submit"
|
||||
@@ -0,0 +1,333 @@
|
||||
# Copyright (C) 2023 Email Notice WP Document Revisions 1.0
|
||||
# This file is distributed under the same license as the Email Notice WP Document Revisions 1.0 package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Email Notice WP Document Revisions 1.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-31 09:31+0000\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:11, includes/class-wpdr-en-all-users-bulk-action.php:11, includes/class-wpdr-en-user-log-table.php:11
|
||||
msgid "You are not allowed to call this file directly."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:122
|
||||
msgid "Email From"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:123
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:127
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:128
|
||||
msgid "Notification mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:129
|
||||
msgid "Notify users about"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:130
|
||||
msgid "Notification e-mail subject"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:131
|
||||
msgid "Notification e-mail content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:213, includes/class-wpdr-email-notice.php:516
|
||||
msgid "Sending email notifications..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:214
|
||||
msgid "Error sending emails."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:215, includes/class-wpdr-email-notice.php:507, includes/class-wpdr-email-notice.php:500
|
||||
msgid "Re-send notification email(s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:216, includes/class-wpdr-email-notice.php:1208
|
||||
msgid "email(s) out of"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:217
|
||||
msgid "notification(s) sent. Check"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:218, includes/class-wpdr-email-notice.php:1208
|
||||
msgid "sent with"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:219
|
||||
msgid "log issues. Check"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:220
|
||||
msgid "log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:221, includes/class-wpdr-email-notice.php:1213, includes/class-wpdr-email-notice.php:1208, includes/class-wpdr-email-notice.php:1204
|
||||
msgid "for details."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:242
|
||||
msgid "By default all notification e-mails received from \"WordPress\" < wordpress@"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:242
|
||||
msgid "You can change these below."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:280
|
||||
msgid "Tags available to make e-mail subject and/or content dynamic:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:282
|
||||
msgid "means title of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:283
|
||||
msgid "means URL of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:284
|
||||
msgid "means URL with title of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:285
|
||||
msgid "means the name of the post author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:286
|
||||
msgid "means excerpt of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:286
|
||||
msgid "Only available to those who can edit the document"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:287
|
||||
msgid "means the first n (must be an integer number) number of word(s) extracted from the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:288
|
||||
msgid "means display name of the user who receives the e-mail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:299
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:299
|
||||
msgid "(send e-mails automatically when you publish a post)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:300
|
||||
msgid "Manual"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:300
|
||||
msgid "(you need to press a button to send notification)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:325
|
||||
msgid "Public posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "protected posts (password will"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "NOT"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "be included in notification e-mail)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:327
|
||||
msgid "Private posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:328
|
||||
msgid "Notifications are sent only to those who can read the document"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:339
|
||||
msgid "Hint: HTML tags are not allowed here, e.g.: %title_with_permalink% will revert to %title%."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:351
|
||||
msgid "Hint: HTML tags are welcome here to make your notification e-mails more personalized."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:390
|
||||
msgid "Notify me by e-mail when a new document is published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:392
|
||||
msgid "Also send me the document as an attachment by e-mail when a new document is published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:482, includes/class-wpdr-email-notice.php:1330
|
||||
msgid "Document Email Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:505, includes/class-wpdr-email-notice.php:503
|
||||
msgid "Send notification email(s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:553
|
||||
msgid "Document Notification Email Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:553
|
||||
msgid "Document Email Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:584
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:591
|
||||
msgid "Document Email Notification Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:598
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:843
|
||||
msgid "New document: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:939
|
||||
msgid "Document too large to be attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:937
|
||||
msgid "Document attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:928
|
||||
msgid "Document not attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:954
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:951
|
||||
msgid "Successful"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:951
|
||||
msgid "Success Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1100, includes/class-wpdr-email-notice.php:1116, includes/class-wpdr-email-notice.php:1140
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1081
|
||||
msgid "Not logged and/or sent out successfully any mails."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1213
|
||||
msgid "notification(s) sent."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1213, includes/class-wpdr-email-notice.php:1208, includes/class-wpdr-email-notice.php:1204
|
||||
msgid "Check log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1208
|
||||
msgid "log issues."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1204
|
||||
msgid "Error sending notifications."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1331
|
||||
msgid "Notification emails can be sent (or re-sent) for published documents to internal users by clicking on \"Send notification emails\"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1332
|
||||
msgid "Internal users are those with user-ids for the site. They can decide whether they wish to receive these notifications or not and whether the mail should include a copy of the document."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:40
|
||||
msgid "Subscribe to Document Email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:41
|
||||
msgid "Unsubscribe from Document Email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:68
|
||||
msgid "Error subscribing users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:77
|
||||
msgid "Error unsubscribing users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:37
|
||||
msgid "Notification email sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:38
|
||||
msgid "Notification emails sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:55
|
||||
msgid "Post Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:56
|
||||
msgid "E-mail sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:57
|
||||
msgid "User Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:58
|
||||
msgid "User E-mail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:59
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:206
|
||||
msgid "No e-mails sent out, yet."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Do not translate Email Notice WP Document Revisions or WP Document Revisions.
|
||||
#: wpdr-email-notice.php:28
|
||||
msgid "Plugin Email Notice WP Document Revisions is activated but its required plugin WP Document Revisions is not."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Do not translate Email Notice WP Document Revisions.
|
||||
#: wpdr-email-notice.php:31
|
||||
msgid "Plugin Email Notice WP Document Revisions will not activate its functionality."
|
||||
msgstr ""
|
||||
133
spec/fixtures/dynamic_finders/plugin_version/enable-cors/translation_file/languages/enable-cors.pot
vendored
Normal file
133
spec/fixtures/dynamic_finders/plugin_version/enable-cors/translation_file/languages/enable-cors.pot
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
# Copyright (C) 2023 Dev Kabir
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Enable CORS 1.1.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/enable-cors\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-07-22T19:02:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
"X-Domain: enable-cors\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Admin/Menu.php:36
|
||||
#: src/Admin/Menu.php:37
|
||||
#: src/Admin/Menu.php:87
|
||||
msgid "Enable CORS"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.fiverr.com/share/7kXeLW"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enable Cross-Origin Resource Sharing for any or specific origin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Dev Kabir"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.fiverr.com/developerkabir"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:84
|
||||
msgid "Please check your settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:88
|
||||
msgid "Configure the server to include CORS headers in the response to allow cross-origin requests."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:92
|
||||
msgid "Allowed Websites"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:93
|
||||
msgid "Specify the specific website (e.g., https://devkabir.shop) that is allowed to make requests."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:95
|
||||
msgid "Enter a website domain like https://example.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:98
|
||||
msgid "Allowed Request Methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:99
|
||||
msgid "Specify the allowed HTTP methods (e.g., GET,POST,OPTIONS) for cross-origin requests."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:101
|
||||
msgid "Invalid HTTP methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:104
|
||||
msgid "Set Response Headers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:105
|
||||
msgid "Set the desired response headers (e.g., Content-Type,Authorization) to be included in the response for other websites."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:107
|
||||
msgid "Invalid HTTP headers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:110
|
||||
msgid "Allow Credentials"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:111
|
||||
msgid "Configure the server to allow credentials (such as cookies or authorization headers) to be included in the cross-origin request."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:114
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:115
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:118
|
||||
msgid "Thank You"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:120
|
||||
msgid "Found issue on non-root server installations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:124
|
||||
msgid "Notice"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:125
|
||||
msgid "To enable CORS on your site, please save settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:126
|
||||
msgid "Your API endpoint is"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:127
|
||||
msgid ""
|
||||
" means that any website can send a request to your\n"
|
||||
" WordPress site and access the server's response. This can be a potential\n"
|
||||
" security risk."
|
||||
msgstr ""
|
||||
|
||||
#: src/Api/Settings.php:79
|
||||
msgid "Settings Updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:158
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
*** WordPress Enable Virtual Card Upload Changelog ***
|
||||
|
||||
2023.2.14 - version 1.0.0
|
||||
* Initial release
|
||||
File diff suppressed because it is too large
Load Diff
38
spec/fixtures/dynamic_finders/plugin_version/financial-ratio/composer_file/package.json
vendored
Normal file
38
spec/fixtures/dynamic_finders/plugin_version/financial-ratio/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "financial-ratio-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Example block scaffolded with Create Block tool.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build --webpack-copy-php",
|
||||
"format": "wp-scripts format",
|
||||
"lint": "wp-scripts lint-style && wp-scripts lint-js",
|
||||
"lint:fix": "wp-scripts lint-style --fix && wp-scripts lint-js --fix",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"plugin-zip": "wp-scripts plugin-zip",
|
||||
"start": "wp-scripts start --webpack-copy-php",
|
||||
"env": "wp-env",
|
||||
"audit": "npm audit --registry='https://registry.npmjs.org/'",
|
||||
"audit:fix": "npm audit fix --registry='https://registry.npmjs.org/'",
|
||||
"test:unit": "echo 'skipping, no tests configured yet'"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/components": "^23.9.0",
|
||||
"@wordpress/env": "^6.0.0",
|
||||
"@wordpress/scripts": "^26.3.0",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-config-standard": "^17.0.0",
|
||||
"eslint-plugin-import": "^2.27.5",
|
||||
"eslint-plugin-n": "^15.7.0",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"eslint-plugin-react": "^7.32.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/blocks": "^12.10.0",
|
||||
"@wordpress/element": "^5.10.0",
|
||||
"mutation-observer": "^1.0.3",
|
||||
"react": "^18.2.0"
|
||||
}
|
||||
}
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/float-gateway/change_log/changelog.txt
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/float-gateway/change_log/changelog.txt
vendored
Normal 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
|
||||
File diff suppressed because it is too large
Load Diff
14
spec/fixtures/dynamic_finders/plugin_version/fusewp/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/fusewp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.1.1.0 =
|
||||
* Pro [MemberPress integration](https://fusewp.com/article/sync-memberpress-email-marketing/?ref=changelog)
|
||||
* Added [Campaign Monitor integration](https://fusewp.com/article/connect-wordpress-to-campaign-monitor/?ref=changelog)
|
||||
* Added "any roles" support to user role sync.
|
||||
* Fixed bug where mailchimp subscription fails on empty merge fields.
|
||||
* PHP 8 improvements.
|
||||
* Fixed bug where disabled sync rules might still be triggered.
|
||||
* Fixed bug where integration select-dropdown included unconnected integrations.
|
||||
* Fixed bug where Add new sync rule page left the menu inactive.
|
||||
|
||||
= 1.1.0.0 =
|
||||
* The genesis
|
||||
846
spec/fixtures/dynamic_finders/plugin_version/fusewp/translation_file/languages/fusewp.pot
vendored
Normal file
846
spec/fixtures/dynamic_finders/plugin_version/fusewp/translation_file/languages/fusewp.pot
vendored
Normal file
@@ -0,0 +1,846 @@
|
||||
# Copyright (C) 2023 FuseWP - Lite
|
||||
# This file is distributed under the same license as the FuseWP - Lite package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FuseWP - Lite 1.1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fusewp\n"
|
||||
"POT-Creation-Date: 2023-06-26 13:26:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:83
|
||||
msgid ""
|
||||
"Hey, I noticed you have been using FuseWP for at least 7 days now - that's "
|
||||
"awesome! Could you please do me a BIG favor and give it a %1$s5-star rating "
|
||||
"on WordPress?%2$s This will help us spread the word and boost our motivation "
|
||||
"- thanks!"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:87
|
||||
msgid "Sure! I'd love to give a review"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:89
|
||||
msgid "Dismiss Forever"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:108
|
||||
msgid ""
|
||||
"Did you know you can sync your MemberPress members to your email list based "
|
||||
"on their memberships and subscription status? %sLearn more%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:114
|
||||
msgid ""
|
||||
"Did you know you can sync your members in WooCommerce Memberships to your "
|
||||
"email list based on their subscribed plan and membershio status? %sLearn "
|
||||
"more%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:112
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:57
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:113
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:114
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:56
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:114
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:58
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:115
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:59
|
||||
msgid "Multiselect"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/FieldMap.php:46
|
||||
msgid "Data"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/FieldMap.php:47
|
||||
msgid "Data Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/FieldMap.php:65
|
||||
msgid "Map Another Field"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:25
|
||||
msgid "FuseWP Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:26
|
||||
msgid "FuseWP"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:108
|
||||
msgid "Request Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:114
|
||||
msgid "Premium Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:120
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:125
|
||||
msgid "Review"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:241
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:245
|
||||
msgid "Need Support?"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:260
|
||||
msgid "Double-Optin Control"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:261
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:133
|
||||
msgid "Custom Field Mapping"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:262
|
||||
msgid "Assign Tag to Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:271
|
||||
msgid ""
|
||||
"Enhance the power of FuseWP with the Pro version featuring integrations with "
|
||||
"many plugins. %sLearn more%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:284
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:23
|
||||
msgid "Get FuseWP Pro →"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:302
|
||||
msgid ""
|
||||
"Whether you need help or have a new feature request, let us know. %sRequest "
|
||||
"Support%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:310
|
||||
msgid ""
|
||||
"Detailed documentation is also available on the plugin website. %sView "
|
||||
"Knowledge Base%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:318
|
||||
msgid ""
|
||||
"If you are enjoying FuseWP and find it useful, please consider leaving a "
|
||||
"★★★★★ review on WordPress.org. %sLeave a Review%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:31
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:40
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:69
|
||||
msgid "You're using FuseWP Lite - no license needed. Enjoy! 😊"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
|
||||
#. tag, do not translate.
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:77
|
||||
msgid ""
|
||||
"Already purchased? Simply %1$sretrieve your license key%2$s and enter it "
|
||||
"below to connect with FuseWP Pro."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:104
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:105
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:107
|
||||
msgid "Unlock Premium Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:120
|
||||
msgid "Unlock Powerful Premium Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:127
|
||||
msgid "Double Optin Control"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:139
|
||||
msgid "Assign Tags to Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:145
|
||||
msgid "WooCommerce Memberships Sync"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:151
|
||||
msgid "MemberPress Sync"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:159
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:69
|
||||
msgid "Upgrade to FuseWP Premium"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
|
||||
#. tag, do not translate.
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:172
|
||||
msgid ""
|
||||
"<strong>Bonus</strong>: Loyal FuseWP Lite users get <u>10%% off</u> regular "
|
||||
"price using the coupon code <u>10PERCENTOFF</u>, automatically applied at "
|
||||
"checkout. %1$sUpgrade to Premium →%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:217
|
||||
msgid "You are not allowed to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:223
|
||||
msgid "Please enter your license key to connect."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:227
|
||||
msgid "Only the Lite version can be upgraded."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
|
||||
#. tag, do not translate.
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:260
|
||||
msgid ""
|
||||
"Oops! We could not automatically install an upgrade. Please download the "
|
||||
"plugin from fusewp.com and install it manually."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:299
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:360
|
||||
msgid "Plugin installed & activated."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:340
|
||||
msgid "You are not licensed."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:27
|
||||
msgid ""
|
||||
"Thank you for using <a href=\"%1$s\" target=\"_blank\">FuseWP</a>! Please <a "
|
||||
"href=\"%2$s\" target=\"_blank\">rate us ★★★★★</a> on <a href=\"%2$s\" "
|
||||
"target=\"_blank\">WordPress.org</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:50
|
||||
msgid "View FuseWP documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:50
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:51
|
||||
msgid "Visit customer support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:51
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:56
|
||||
msgid "Upgrade to PRO"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:56
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:77
|
||||
msgid "Go Premium"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:71
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:45
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:26
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:60
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:44
|
||||
msgid "Settings - FuseWP"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:114
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:117
|
||||
msgid "Install Missing DB Tables"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:118
|
||||
msgid "Fix Database"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:123
|
||||
msgid "Remove Data on Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:124
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:191
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:269
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:154
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:183
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:219
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:48
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:25
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:125
|
||||
msgid ""
|
||||
"Check this box if you would like FuseWP to completely remove all of its data "
|
||||
"when the plugin is deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:141
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:154
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:156
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:27
|
||||
msgid "sync_rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:28
|
||||
msgid "sync_rules"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:112
|
||||
msgid "Add Your First Sync Rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:113
|
||||
msgid ""
|
||||
"Keep WordPress synchronize with external marketing integrations and third-"
|
||||
"party applications."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:114
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:127
|
||||
msgid "Add Sync Rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:119
|
||||
msgid ""
|
||||
"New to FuseWP? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||
"started guide</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:138
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:29
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:139
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:38
|
||||
msgid "Destinations"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:140
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:167
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:207
|
||||
msgid "[Not Set]"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:190
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:218
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:47
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:257
|
||||
msgid "Toggle Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:26
|
||||
msgid "sync_log"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:27
|
||||
msgid "sync_logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:102
|
||||
msgid "No logs found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:112
|
||||
msgid "Integration"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:113
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogPage.php:38
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogPage.php:52
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:135
|
||||
msgid "Sync Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:75
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:113
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:159
|
||||
msgid "Sync Rules"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:94
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:124
|
||||
msgid "User Sync"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:114
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:131
|
||||
msgid "Edit Sync Rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:167
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:221
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:50
|
||||
msgid "New Destination"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:242
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:71
|
||||
msgid "Select Integration"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:47
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:60
|
||||
msgid "Upgrade to FuseWP Pro %sUpgrade Now%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/destination.php:28
|
||||
#: src/core/src/RegisterScripts.php:43
|
||||
msgid ""
|
||||
"No source has been selected. Add one before you can set up sync destination."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/destination.php:47
|
||||
msgid "+ Add Destination"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:15
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:17
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:18
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:31
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/source.php:28
|
||||
msgid ""
|
||||
"Select the user role, membership plan or source plugin to synchronize from."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:3
|
||||
msgid "Custom Fields & Tagging Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:4
|
||||
msgid ""
|
||||
"Upgrade to map custom fields to profile information and assign tags to users "
|
||||
"for supported email marketing platforms."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:7
|
||||
msgid ""
|
||||
"Sync users in WooCommerce memberships with your email marketing software "
|
||||
"based on their subscribed plans and membership status. If a user's "
|
||||
"membership status changes, they will be moved to the corresponding email "
|
||||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:10
|
||||
msgid ""
|
||||
"Sync members in MemberPress with your email marketing software based on "
|
||||
"their memberships and subscription status. If a user's subscription status "
|
||||
"changes, they will be moved to the corresponding email list."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:34
|
||||
msgid "No source selected."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:47
|
||||
msgid "No destination item in selected source."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:58 src/core/src/AjaxHandler.php:91
|
||||
msgid "Selected integration not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:80 src/core/src/AjaxHandler.php:123
|
||||
msgid "No integration field found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:95
|
||||
msgid "Selected integration list ID not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/CustomSettingsPageApi.php:982
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/CustomSettingsPageApi.php:1060
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:81
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/functions.php:348
|
||||
msgid "No Sync rule source has been selected."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/functions.php:356
|
||||
msgid "Sync rule for the selected source already exist."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractIntegration.php:129
|
||||
msgid "rate limit exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:24
|
||||
msgid "%s Error:"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:31
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:58
|
||||
msgid "Connect to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:36
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:63
|
||||
msgid "Reconnect to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:38
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:65
|
||||
msgid ""
|
||||
"requires external authorization. You will need to connect our application "
|
||||
"with your account to proceed."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:42
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:69
|
||||
msgid "Connected to"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:44
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:71
|
||||
msgid "Connection Successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:51
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:78
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:21
|
||||
msgid "User Data"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:22
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:55
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:23
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:56
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:24
|
||||
msgid "Biography"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:25
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:26
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:27
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:28
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:29
|
||||
msgid "URL-friendly user name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:30
|
||||
msgid "User ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:31
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:32
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:49
|
||||
msgid "User Role"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:33
|
||||
msgid "Registration Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:34
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:93
|
||||
msgid "FuseWP Error: Client ID is %smissing in %s settings%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/CampaignMonitor.php:152
|
||||
msgid "CampaignMonitor access token not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/SyncAction.php:28
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:52
|
||||
msgid "Select List"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/SyncAction.php:45
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:78
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:54
|
||||
msgid "Map Custom Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:57
|
||||
msgid "Job Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:58
|
||||
msgid "Company Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:59
|
||||
msgid "Birthday Month"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:60
|
||||
msgid "Birthday Day"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:61
|
||||
msgid "Anniversary"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:62
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:65
|
||||
msgid "Home Address Street"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:66
|
||||
msgid "Home Address City"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:67
|
||||
msgid "Home Address State"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:68
|
||||
msgid "Home Address Postal Code"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:69
|
||||
msgid "Home Address Country"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:72
|
||||
msgid "Work Address Street"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:73
|
||||
msgid "Work Address City"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:74
|
||||
msgid "Work Address State"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:75
|
||||
msgid "Work Address Postal Code"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:76
|
||||
msgid "Work Address Country"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:79
|
||||
msgid "Other Address Street"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:80
|
||||
msgid "Other Address City"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:81
|
||||
msgid "Other Address State"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:82
|
||||
msgid "Other Address Postal Code"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:83
|
||||
msgid "Other Address Country"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:166
|
||||
msgid "ConstantContact access token not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:58
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:35
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:62
|
||||
msgid "Select the tags to assign to contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:50
|
||||
msgid "Mailchimp Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:54
|
||||
msgid "Sync Double Optin"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:55
|
||||
msgid "Check to Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:56
|
||||
msgid ""
|
||||
"Double optin requires users to confirm their email address before they are "
|
||||
"added or subscribed."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:63
|
||||
msgid ""
|
||||
"Upgrade to FuseWP Premium to enable double optin when subscribing users to "
|
||||
"Mailchimp during sync."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/Mailchimp.php:163
|
||||
msgid "Mailchimp access token not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:29
|
||||
msgid "Select Audience"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:37
|
||||
msgid "tag1, tag2"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:38
|
||||
msgid "Enter a comma-separated list of tags to assign to contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/RegisterScripts.php:41
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/RegisterScripts.php:44
|
||||
msgid ""
|
||||
"No destination added. Click the %s+ Add Destination%s button to add one."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:11
|
||||
msgid "User Roles"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:39
|
||||
msgid "Any Roles"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:55
|
||||
msgid ""
|
||||
"Sync WordPress users with your email marketing software based on their "
|
||||
"registered user roles. Changes to user profile information are automatically "
|
||||
"synced as well. And if a user is deleted, they are automatically "
|
||||
"unsubscribed. %sLearn more%s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "FuseWP - Lite"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# fusewp.pot (FuseWP - Lite 1.1.1.0) #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# fusewp.pot (FuseWP - Lite 1.1.1.0) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://fusewp.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Connect WordPress to your email marketing software and CRM."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "FuseWP Team"
|
||||
msgstr ""
|
||||
36
spec/fixtures/dynamic_finders/plugin_version/geounit-maps/composer_file/package.json
vendored
Normal file
36
spec/fixtures/dynamic_finders/plugin_version/geounit-maps/composer_file/package.json
vendored
Normal 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" ]
|
||||
}
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/gf-msteams/change_log/changelog.txt
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/gf-msteams/change_log/changelog.txt
vendored
Normal 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
|
||||
@@ -0,0 +1,11 @@
|
||||
/**1.0.3 - 2023.07.03**/
|
||||
– Updated: Compatible with WooCommerce HPOS(COT)
|
||||
|
||||
/**1.0.2 - 2023.03.23**/
|
||||
- Added: PPDF file name in email
|
||||
|
||||
/**1.0.1 - 2023.03.01**/
|
||||
- Fixed: Expiry date format
|
||||
|
||||
/**1.0.0 - 2023.02.14**/
|
||||
~ The first released.
|
||||
1298
spec/fixtures/dynamic_finders/plugin_version/golf-society/translation_file/lang/golfsoc.pot
vendored
Normal file
1298
spec/fixtures/dynamic_finders/plugin_version/golf-society/translation_file/lang/golfsoc.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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 ""
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/happy-cart/composer_file/package.json
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/happy-cart/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/helpfulnessmeter/change_log/changelog.txt
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/helpfulnessmeter/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
*** HelpfulnessMeter Changelog ***
|
||||
2023-06-18 - version 1.0.2
|
||||
* Update: changelog URL
|
||||
* Fix: nonce names
|
||||
* Deleted: misnamed assets
|
||||
|
||||
2023-06-17 - version 1.0.1
|
||||
* Update: readme file.
|
||||
* Fix: backslashes were added to the backup if the texts contained apostrophes for example.
|
||||
|
||||
2023-06-16 - version 1.0
|
||||
* First Release.
|
||||
|
||||
@@ -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 ""
|
||||
@@ -0,0 +1,247 @@
|
||||
# Copyright (C) 2023 GrandPlugins
|
||||
# This file is distributed under the same license as the Image Type Converter [[GrandPlugins]] plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Image Type Converter [[GrandPlugins]] 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gpls-wicor-image-converter\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-04-18T15:14:28+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: image-type-converter\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Image Type Converter [[GrandPlugins]]"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Convert Image Types easily in WP."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "GrandPlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://grandplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:213
|
||||
msgid "Animated images are not supported yet."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:227
|
||||
msgid "Image not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:264
|
||||
msgid "The image file doesn't exist!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:376
|
||||
msgid "Image type is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:41
|
||||
msgid "Image Conversions History [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:80
|
||||
msgid "Conversion History"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:94
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:102
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:111
|
||||
msgid "Extension"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:126
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:137
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:140
|
||||
msgid " convert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:152
|
||||
msgid "No conversions yet!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConverterMetaBox.php:41
|
||||
msgid "Image Type Converter [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConverterMetaBox.php:69
|
||||
msgid "You are about to convert the image type, proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgSubsizesMetaBox.php:39
|
||||
msgid "Image Subsizes List [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:84
|
||||
msgid "Select images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:85
|
||||
msgid "Preview Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:86
|
||||
msgid "Select Preview Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:87
|
||||
msgid "Search Term"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:16
|
||||
msgid "Select Images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:21
|
||||
msgid "Select images directly"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:22
|
||||
msgid "Select images from media"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:27
|
||||
msgid "Select Images by posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:28
|
||||
msgid "Select images attached to posts [ images uploaded to posts ]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:33
|
||||
msgid "Full Select"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:34
|
||||
msgid "Convert all images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:47
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:58
|
||||
msgid "Image Converter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:67
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:72
|
||||
msgid "Auto Convert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:73
|
||||
msgid "Convert images automatically on upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:77
|
||||
msgid "Bulk Convert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:78
|
||||
msgid "Convert images type in bulk"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:19
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:22
|
||||
msgid "Enable Auto Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:29
|
||||
msgid "Conversion Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:36
|
||||
msgid "General Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:37
|
||||
msgid "Convert all images to single image type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:41
|
||||
msgid "Custom Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:42
|
||||
msgid "Make custom conversions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:52
|
||||
msgid "Target Type to convert all uploaded images to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:82
|
||||
msgid "Uploaded image type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:90
|
||||
msgid "Target conversion type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/metaboxes/img-converter-metabox-template.php:36
|
||||
msgid "Convert To:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/metaboxes/img-converter-metabox-template.php:58
|
||||
msgid "Keep file extension?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/metaboxes/img-converter-metabox-template.php:65
|
||||
msgid "This option will keep the same old image file extension after conversion. This will keep the same image URL without change."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:19
|
||||
msgid "PHP Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:32
|
||||
msgid "GD Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:52
|
||||
msgid "ImageMagick Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:73
|
||||
msgid "AVIF Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:89
|
||||
msgid "WEBP Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:106
|
||||
msgid "AVIF requires %1$s compiled with AVIF support OR %2$s at least. please contact your hosting support regarding that."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:112
|
||||
msgid "AVIF images are not allowed for upload. If you want to upload and use AVIF images, we recommend our plugin %s"
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
@@ -0,0 +1,201 @@
|
||||
# Copyright (C) 2023 Khalti
|
||||
# This file is distributed under the same license as the Integrate Khalti in WC Store plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integrate Khalti in WC Store 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/integrate-khalti-in-wc\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-26T05:57:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: woocommerce-khalti\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Integrate Khalti in WC Store"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://khalti.com/payment-gateway/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Integrate Khalti in WooCommerce is a plugin that enables payment via Khalti Wallet in WooCommerce shop in Nepal."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/class-wc-gateway-khalti.php:61
|
||||
#: includes/gateways/settings-khalti.php:29
|
||||
msgid "Khalti"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://khalti.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:60
|
||||
msgid "Proceed to Khalti"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:62
|
||||
msgid "Take payments via Khalti - sends customers to Khalti portal to enter their payment information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:90
|
||||
msgid "SANDBOX ENABLED. You can use testing accounts only."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:191
|
||||
msgid "Gateway Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:195
|
||||
msgid "Khalti does not support your store currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti-txn-report.php:19
|
||||
#: includes/class-woocommerce-khalti-txn-report.php:23
|
||||
msgid "Khalti Transaction Online Report"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti.php:139
|
||||
msgid "View WooCommerce Khalti settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti.php:141
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: woocommerce version
|
||||
#: includes/class-woocommerce-khalti.php:155
|
||||
msgid "Integrate Khalti in WooCommerce depends on %s or later to work!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti.php:160
|
||||
msgid "WooCommerce 4.5"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:213
|
||||
msgid "IPN payment completed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: payment status
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:245
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:260
|
||||
msgid "Payment %s via IPN."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order ID.
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:275
|
||||
msgid "Payment for cancelled order %s received"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order link.
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:283
|
||||
msgid "Order #%s has been marked paid by Khalti IPN, but was previously cancelled. Admin handling required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:16
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:18
|
||||
msgid "Enable Khalti Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:22
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:25
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:32
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:35
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:39
|
||||
msgid "Pay via Khalti; you can pay with Khalti securely."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:45
|
||||
msgid "Live merchant secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:48
|
||||
msgid "Please enter your live Khalti merchant secret; this is needed to take the payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:55
|
||||
msgid "Test Merchant secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:58
|
||||
msgid "Please enter your test Khalti merchant secret; this is needed to test the payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:65
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:70
|
||||
msgid "Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:72
|
||||
msgid "Enable Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Khalti contact page
|
||||
#: includes/gateways/settings-khalti.php:76
|
||||
msgid "Enable Khalti sandbox to test payments. Please contact Khalti Merchant/Service Provider for a <a href=\"%s\" target=\"_blank\">developer account</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:84
|
||||
msgid "Send customer info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:86
|
||||
msgid "Send customer info to Khalti"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:90
|
||||
msgid "Send amount breakdown"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:92
|
||||
msgid "Send total amount breakdown to Khalti"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:99
|
||||
msgid "Debug log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:101
|
||||
msgid "Enable logging"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Khalti log file path
|
||||
#: includes/gateways/settings-khalti.php:105
|
||||
msgid "Log Khalti events, such as IPN requests, inside <code>%s</code>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:113
|
||||
msgid "IPN email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:115
|
||||
msgid "Enable IPN email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:117
|
||||
msgid "Send email when an IPN is received from Khalti for cancelled order."
|
||||
msgstr ""
|
||||
42
spec/fixtures/dynamic_finders/plugin_version/jobbnorge-block/composer_file/package.json
vendored
Normal file
42
spec/fixtures/dynamic_finders/plugin_version/jobbnorge-block/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
@@ -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 ""
|
||||
@@ -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 ""
|
||||
80
spec/fixtures/dynamic_finders/plugin_version/leaf-crm/translation_file/languages/leaf-crm.pot
vendored
Normal file
80
spec/fixtures/dynamic_finders/plugin_version/leaf-crm/translation_file/languages/leaf-crm.pot
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2023 Leaf CRM
|
||||
# This file is distributed under the same license as the Leaf CRM package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Leaf CRM 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/leaf-crm\n"
|
||||
"POT-Creation-Date: 2023-04-13 10:14+0800\n"
|
||||
"PO-Revision-Date: 2013-05-10 10:37-0500\n"
|
||||
"Last-Translator: Leaf CRM Team <developer@leaf.my>\n"
|
||||
"Language-Team: Leaf CRM Team <developer@leaf.my>\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-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
||||
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:47
|
||||
msgid "Leaf WordPress Integration"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:50
|
||||
msgid "Send Leads to Leaf CRM"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:55
|
||||
msgid "Leaf CRM Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:59
|
||||
msgid ""
|
||||
"Get the integration token after you have added the WordPress lead "
|
||||
"source to your Campaign in Leaf CRM"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:72
|
||||
msgid "Website Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:76
|
||||
msgid ""
|
||||
"This Website Name will be displayed under the Lead Source "
|
||||
"information in the Leaf app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:86
|
||||
msgid "Contacts Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:90
|
||||
msgid ""
|
||||
"Choose which Contacts Form plugins you want to integrate with Leaf"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:92
|
||||
msgid ""
|
||||
"Leaf CRM works with multiple Contacts Form plugins. Simply enter "
|
||||
"your Leaf CRM Token above and click SAVE to turn on the integration!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:102
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:103
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:157
|
||||
#: admin/partials/leaf-crm-admin-display.php:198
|
||||
msgid "Your settings have been updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:164
|
||||
msgid "Failed to update your settings. Please try again later."
|
||||
msgstr ""
|
||||
352
spec/fixtures/dynamic_finders/plugin_version/lwn-recipe/translation_file/languages/lwn-recipe-ar.po
vendored
Normal file
352
spec/fixtures/dynamic_finders/plugin_version/lwn-recipe/translation_file/languages/lwn-recipe-ar.po
vendored
Normal 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 "نباتية"
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/mailbuzz/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/mailbuzz/composer_file/package.json
vendored
Normal 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%"
|
||||
]
|
||||
}
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/master-pdf-viewer/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/master-pdf-viewer/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/media-toolkit/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/media-toolkit/composer_file/package.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/mein-seh-check/composer_file/package.json
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/mein-seh-check/composer_file/package.json
vendored
Normal 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"
|
||||
]
|
||||
}
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/mobile-bottom-menu-for-wp/change_log/changelog.txt
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/mobile-bottom-menu-for-wp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
= 1.0.1 - 23 March 2023 =
|
||||
|
||||
* Fix: Menu location issues
|
||||
|
||||
= 1.0.2 - 07 May 2023 =
|
||||
|
||||
* new: z Index setting
|
||||
|
||||
= 1.0.3 - 13 May 2023 =
|
||||
|
||||
* new: Scrollbar show/Hide Option
|
||||
|
||||
= 1.0.4 - 13 June 2023 =
|
||||
|
||||
* fix: error log issues
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user