Compare commits

..

18 Commits

Author SHA1 Message Date
erwanlr
97ad2dc158 Bumps version 2021-11-08 10:39:18 +01:00
erwanlr
8c1b8b5fda Patch for homebrew 2021-11-08 09:33:56 +01:00
erwanlr
e179b7ae66 Updates deps 2021-11-08 09:10:50 +01:00
erwanlr
3af18b4fcb Adds DFs 2021-11-03 18:13:33 +01:00
Christian Mehlmauer
f4ddff64e9 Merge pull request #1685 from wpscanteam/dependabot/github_actions/actions/checkout-2.4.0
Bump actions/checkout from 2.3.5 to 2.4.0
2021-11-03 11:10:43 +01:00
dependabot[bot]
0f587c4292 Bump actions/checkout from 2.3.5 to 2.4.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.3.5...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-03 10:07:25 +00:00
Erwan
cc7f284d93 Merge pull request #1682 from wpscanteam/dependabot/bundler/rubocop-performance-tw-1.12.0
Update rubocop-performance requirement from ~> 1.11.0 to ~> 1.12.0
2021-11-01 23:08:18 +01:00
erwanlr
ebe6c50e15 Adds DFs 2021-11-01 22:45:32 +01:00
dependabot[bot]
19a4671e59 Update rubocop-performance requirement from ~> 1.11.0 to ~> 1.12.0
Updates the requirements on [rubocop-performance](https://github.com/rubocop/rubocop-performance) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop-performance/compare/v1.11.0...v1.12.0)

---
updated-dependencies:
- dependency-name: rubocop-performance
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-01 10:00:40 +00:00
Christian Mehlmauer
e505afe9df Merge pull request #1678 from wpscanteam/dependabot/github_actions/actions/checkout-2.3.5
Bump actions/checkout from 2.3.4 to 2.3.5
2021-10-18 14:06:54 +02:00
dependabot[bot]
2632c6ed86 Bump actions/checkout from 2.3.4 to 2.3.5
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.3.4...v2.3.5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-10-18 10:10:23 +00:00
firefart
2f5ad3a338 remove double setup 2021-10-10 22:17:53 +02:00
firefart
7ea45a5f9b add platforms 2021-10-10 21:54:51 +02:00
firefart
9d06ffe83a try multiplatform builds 2021-10-10 21:50:22 +02:00
erwanlr
11394eaa9f Adds DFs 2021-10-02 13:14:02 +02:00
Erwan
8353161451 Merge pull request #1670 from wpscanteam/dependabot/bundler/webmock-tw-3.14.0
Update webmock requirement from ~> 3.13.0 to ~> 3.14.0
2021-09-27 13:41:07 +02:00
dependabot[bot]
cbc52b977f Update webmock requirement from ~> 3.13.0 to ~> 3.14.0
Updates the requirements on [webmock](https://github.com/bblimke/webmock) to permit the latest version.
- [Release notes](https://github.com/bblimke/webmock/releases)
- [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bblimke/webmock/compare/v3.13.0...v3.14.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2021-09-27 10:00:36 +00:00
erwanlr
e0b47d7501 Adds DFs 2021-09-24 12:09:31 +02:00
88 changed files with 28236 additions and 15 deletions

View File

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

View File

@@ -7,7 +7,7 @@ on:
release:
types: [published]
schedule:
- cron: '0 7 * * *'
- cron: "0 7 * * *"
jobs:
images:
@@ -15,7 +15,7 @@ jobs:
steps:
- name: checkout sources
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.4.0
- name: Set tag to latest
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
@@ -33,8 +33,14 @@ jobs:
echo DOCKER_TAG is not set!
exit 1
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
id: buildx
with:
install: true
- name: Login to Docker Hub
uses: docker/login-action@v1.10.0
@@ -45,5 +51,6 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: wpscanteam/wpscan:${{ env.DOCKER_TAG }}

View File

@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1.1.3
with:

View File

@@ -65,7 +65,7 @@ module WPScan
extracted_versions.flatten!
# must contain at least one number
extracted_versions = extracted_versions.select { |x| x =~ /[0-9]+/ }
extracted_versions = extracted_versions.grep(/[0-9]+/)
sorted = extracted_versions.sort do |x, y|
Gem::Version.new(x) <=> Gem::Version.new(y)

View File

@@ -24,6 +24,10 @@ module WPScan
FileUtils.mkdir_p(repo_directory.to_s) unless Dir.exist?(repo_directory.to_s)
# When --no-update is passed, return to avoid raising an error if the directory is not writable
# Mainly there for Homebrew: https://github.com/wpscanteam/wpscan/pull/1455
return if ParsedCli.update == false
unless repo_directory.writable?
raise "#{repo_directory} is not writable (uid: #{Process.uid}, gid: #{Process.gid})"
end

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.8.19'
VERSION = '3.8.20'
end

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,204 @@
# Copyright (C) 2021 WP White Security
# This file is distributed under the same license as the WP Activity Log Extension for TablePress plugin.
msgid ""
msgstr ""
"Project-Id-Version: WP Activity Log Extension for TablePress 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-tablepress\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-11T13:50:49+01:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: wsal-tablepress\n"
#. Plugin Name of the plugin
msgid "WP Activity Log Extension for TablePress"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wpactivitylog.com/extensions/"
msgstr ""
#. Description of the plugin
msgid "A WP Activity Log plugin extension for TablePress"
msgstr ""
#. Author of the plugin
msgid "WP White Security"
msgstr ""
#. Author URI of the plugin
msgid "http://www.wpwhitesecurity.com/"
msgstr ""
#: includes/wsal-functions.php:15
#: wp-security-audit-log/custom-alerts.php:4
msgid "TablePress"
msgstr ""
#: includes/wsal-functions.php:26
msgid "Imported"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:5
msgid "Monitor TablePress"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:10
msgid "A table was created"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:11
msgid "Added the new table %table_name%."
msgstr ""
#: wp-security-audit-log/custom-alerts.php:14
#: wp-security-audit-log/custom-alerts.php:32
#: wp-security-audit-log/custom-alerts.php:63
#: wp-security-audit-log/custom-alerts.php:98
#: wp-security-audit-log/custom-alerts.php:118
#: wp-security-audit-log/custom-alerts.php:136
#: wp-security-audit-log/custom-alerts.php:154
msgid "Table ID"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:15
#: wp-security-audit-log/custom-alerts.php:99
msgid "Number of rows"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:16
#: wp-security-audit-log/custom-alerts.php:100
msgid "Number of columns"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:19
#: wp-security-audit-log/custom-alerts.php:50
#: wp-security-audit-log/custom-alerts.php:66
#: wp-security-audit-log/custom-alerts.php:84
#: wp-security-audit-log/custom-alerts.php:105
#: wp-security-audit-log/custom-alerts.php:123
#: wp-security-audit-log/custom-alerts.php:141
#: wp-security-audit-log/custom-alerts.php:157
msgid "View in the editor"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:28
msgid "A table was deleted"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:29
msgid "Deleted the table %table_name%."
msgstr ""
#: wp-security-audit-log/custom-alerts.php:42
msgid "A table was duplicated"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:43
msgid "Created a copy of the table %table_name%."
msgstr ""
#: wp-security-audit-log/custom-alerts.php:46
msgid "New table name"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:47
#: wp-security-audit-log/custom-alerts.php:81
msgid "New table ID"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:59
msgid "A table was imported"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:60
msgid "Imported the table %table_name%."
msgstr ""
#: wp-security-audit-log/custom-alerts.php:76
msgid "A table ID was changed"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:77
msgid "Changed the ID of the table %table_name%."
msgstr ""
#: wp-security-audit-log/custom-alerts.php:80
msgid "Previous table ID"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:94
msgid "A table was modified"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:95
msgid "Made changes to the table %table_name%"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:101
msgid "Previous number of rows"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:102
msgid "Previous number of columns"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:114
msgid "A table row was added or removed"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:115
msgid "A row was added or removed from the table %table_name%"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:119
msgid "Previous row count"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:120
msgid "New row count"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:132
msgid "A table column was added or removed"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:133
msgid "A column was added or removed from the table %table_name%"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:137
msgid "Previous column count"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:138
msgid "New column count"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:150
msgid "A table option was modified"
msgstr ""
#: wp-security-audit-log/custom-alerts.php:151
msgid "Changed the status of the table option %option_name% in %table_name%"
msgstr ""
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:224
msgid "The last row of the table is the table footer."
msgstr ""
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:226
msgid "The first row of the table is the table header."
msgstr ""
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:228
msgid "The background colors of consecutive rows shall alternate."
msgstr ""
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:230
msgid "Highlight a row while the mouse cursor hovers above it by changing its background color."
msgstr ""

View File

@@ -0,0 +1,35 @@
# Copyright (C) 2020 RedNao
# This file is distributed under the same license as the Easy Pricing Forms plugin.
msgid ""
msgstr ""
"Project-Id-Version: Easy Pricing Forms 1.2.13\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-calculation-forms\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-04-25T13:05:42+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.3.0\n"
"X-Domain: rednaoeasycalculationforms\n"
#. Plugin Name of the plugin
msgid "Easy Pricing Forms"
msgstr ""
#. Plugin URI of the plugin
msgid "http://smartforms.rednao.com/getit"
msgstr ""
#. Description of the plugin
msgid "Order Forms, Quotes, Even Registration and more. If you need to calculate a price in your form this is the best builder for you."
msgstr ""
#. Author of the plugin
msgid "RedNao"
msgstr ""
#. Author URI of the plugin
msgid "http://rednao.com"
msgstr ""

View File

@@ -0,0 +1,29 @@
{
"name": "fragment-amzn",
"version": "1.0.1",
"description": "Amazonの商品を検索してブロックに追加します。",
"author": "fragment.co.jp",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update"
},
"dependencies": {
"@wordpress/block-editor": "^7.0.2",
"@wordpress/blocks": "^11.1.0",
"@wordpress/i18n": "^4.2.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0"
},
"devDependencies": {
"@wordpress/scripts": "^16.1.5"
}
}

View File

@@ -0,0 +1,254 @@
# Copyright (C) 2021 Ascendoor
# This file is distributed under the GNU General Public License v3.0.
msgid ""
msgstr ""
"Project-Id-Version: Ascendoor Logo Slide 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-logo-slide\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-21T10:44:52+05:45\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: ascendoor-logo-slide\n"
#. Plugin Name of the plugin
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:75
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:76
msgid "Ascendoor Logo Slide"
msgstr ""
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://ascendoor.com/"
msgstr ""
#. Description of the plugin
msgid "Simple logo slide with CSS transition effects."
msgstr ""
#. Author of the plugin
msgid "Ascendoor"
msgstr ""
#. translators: 1. PHP Version.
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:33
msgid "Ascendoor Logo Slide plugin requires PHP version %s or higher."
msgstr ""
#. translators: 1. WordPress Version.
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:48
msgid "Ascendoor Logo Slide plugin requires WordPress version %s or higher."
msgstr ""
#: admin/resources/build/index.js:1
#: admin/resources/src/components/Loading/index.js:6
msgid "Loading…"
msgstr ""
#: admin/resources/src/components/Common/ResponsiveIcons.js:18
#: admin/resources/src/components/Header/Info.js:136
#: admin/resources/src/components/Header/ResponsivePreview.js:26
msgid "Mobile"
msgstr ""
#: admin/resources/src/components/Common/ResponsiveIcons.js:40
#: admin/resources/src/components/Header/Info.js:118
#: admin/resources/src/components/Header/ResponsivePreview.js:48
msgid "Tablet"
msgstr ""
#: admin/resources/src/components/Common/ResponsiveIcons.js:62
#: admin/resources/src/components/Header/Info.js:100
#: admin/resources/src/components/Header/ResponsivePreview.js:70
msgid "Desktop"
msgstr ""
#: admin/resources/src/components/Header/Info.js:24
msgid "Info"
msgstr ""
#: admin/resources/src/components/Header/Info.js:49
msgid "Close info content"
msgstr ""
#: admin/resources/src/components/Header/Info.js:62
msgid "You have some inactive columns. Please use the guide below for the recommended setup."
msgstr ""
#: admin/resources/src/components/Header/Info.js:68
msgid "Total Added Logos:"
msgstr ""
#: admin/resources/src/components/Header/Info.js:80
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:99
msgid "Columns"
msgstr ""
#: admin/resources/src/components/Header/Info.js:83
msgid "Min. No. of Logos"
msgstr ""
#: admin/resources/src/components/Header/Info.js:89
msgid "Inactive Columns"
msgstr ""
#: admin/resources/src/components/Header/Info.js:167
msgid "Duplicate logos to fill the inactive columns."
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:19
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:21
msgid "Select Logo"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:101
msgid "Add Logo"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:61
msgid "Logo Alt Text"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:74
msgid "Logo Title"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:87
msgid "Logo Link To"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:102
msgid "Link Open In"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:63
msgid "Edit"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:87
msgid "Close Edit"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:109
msgid "Remove"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:144
msgid "Manage Logo"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:92
msgid "Column"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:115
msgid "Column Gap"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:49
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:55
msgid "Slide Type"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:71
msgid "Slide Time"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:74
msgid "Random"
msgstr ""
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:104
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:107
msgid "Pause on Hover"
msgstr ""
#: admin/resources/src/components/Tabs/index.js:40
msgid "General"
msgstr ""
#: admin/resources/src/components/Tabs/index.js:51
msgid "Style"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:160
msgid "Select Background Image"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:162
msgid "Select Image"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:304
msgid "Container"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:311
msgid "Margin"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:390
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:181
msgid "Padding"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:469
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:260
msgid "Class Name"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:481
msgid "ID"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:495
msgid "Background Type"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:516
msgid "Background Color"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:535
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:582
msgid "Update Image"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:564
msgid "Add Image"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:599
msgid "Remove Image"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:610
msgid "Background Position"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:658
msgid "Background Size"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:686
msgid "Background Repeat"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:718
msgid "Background Attachment"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:145
msgid "Logos"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:152
msgid "Height (in PX)"
msgstr ""
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:163
msgid "Hint: 0 = Auto. The frontend logo container and the current backend preview container might not be the same. Set height based on frontend view."
msgstr ""

View File

@@ -0,0 +1,186 @@
# Copyright (C) 2021 Ascendoor
# This file is distributed under the GNU General Public License v3.0.
msgid ""
msgstr ""
"Project-Id-Version: Ascendoor Metadata Manager 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-metadata-manager\n"
"Last-Translator: Ascendoor <info@ascendoor.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-27T14:44:34+05:45\n"
"PO-Revision-Date: 2021-10-27 00:00+05:45\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: ascendoor-metadata-manager\n"
#. Plugin Name of the plugin
msgid "Ascendoor Metadata Manager"
msgstr ""
#. Description of the plugin
msgid "View and manage posts, terms, users and comments metadata."
msgstr ""
#. Author of the plugin
msgid "Ascendoor"
msgstr ""
#. Author URI of the plugin
msgid "https://ascendoor.com/"
msgstr ""
#: admin/class-ascendoor-metadata-manager-admin.php:109
msgid "Are you sure to delete this meta data?"
msgstr ""
#: admin/class-ascendoor-metadata-manager-admin.php:110
msgid "Invalid Request!!"
msgstr ""
#: admin/class-ascendoor-metadata-manager-admin.php:111
msgid "This meta data seems to be private. Are you sure to delete this meta data?"
msgstr ""
#: admin/class-ascendoor-metadata-manager-admin.php:112
msgid "Reload page?"
msgstr ""
#: admin/class-ascendoor-metadata-manager-admin.php:113
msgid "This meta data seems to be private. Are you sure to update this meta data?"
msgstr ""
#: admin/class-ascendoor-metadata-manager-admin.php:114
msgid "Are you sure to update this meta data?"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:83
msgid "Comment Metadata Manager"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:112
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:124
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:133
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:122
msgid "Meta Key"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:115
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:127
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:136
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:125
msgid "Meta Value"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:118
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:130
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:139
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:128
#: admin/partials/ascendoor-metadata-manager-admin.php:104
msgid "Action"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:156
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:168
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:177
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:166
msgid "Meta data list is empty."
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:165
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:177
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:186
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:175
msgid "Meta data not found."
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:198
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:210
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:218
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:207
msgid "You are not allowed to delete this meta data."
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:230
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:242
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:250
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:239
msgid "You are not allowed to update this meta data."
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:95
msgid "Post Metadata Manager"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:78
msgid "Disable Metadata Manager for Post Types"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:109
msgid "Disable Metadata Manager for Taxonomies"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:138
msgid "Disable Metadata Manager for Users or Comments"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:145
msgid "Users"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:157
msgid "Comments"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:187
msgid "Save Settings"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:287
msgid "Settings"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:100
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:107
msgid "Term Metadata Manager"
msgstr ""
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:90
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:97
msgid "User Metadata Manager"
msgstr ""
#: admin/partials/ascendoor-metadata-manager-admin.php:41
#: admin/partials/ascendoor-metadata-manager-admin.php:73
msgid "Cancel"
msgstr ""
#: admin/partials/ascendoor-metadata-manager-admin.php:48
#: admin/partials/ascendoor-metadata-manager-admin.php:80
msgid "Update"
msgstr ""
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
#: admin/partials/ascendoor-metadata-manager-admin.php:59
#: admin/partials/ascendoor-metadata-manager-admin.php:91
msgid "While updating, meta value will be sanitized and filtered with %1$s (if meta value contains HTML tags) or %2$s."
msgstr ""
#: admin/partials/ascendoor-metadata-manager-admin.php:107
msgid "Delete meta key and value"
msgstr ""
#: admin/partials/ascendoor-metadata-manager-admin.php:118
msgid "Edit meta value"
msgstr ""
#. translators: %s - PHP Version.
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:34
msgid "Ascendoor Metadata Manager plugin requires PHP version %s or higher."
msgstr ""
#. translators: %s - WordPress Version.
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:49
msgid "Ascendoor Metadata Manager plugin requires WordPress version %s or higher."
msgstr ""

View File

@@ -0,0 +1,149 @@
# Atlas Content Modeler Changelog
## 0.8.0 - 2021-10-13
### Added
- Share models between sites using the new Export and Import models feature. Visit Content Modeler → Tools to get started.
- Added "author" support to custom post types. This unlocks new functionality such as assigning specific users to a post, and querying posts by author in WPGraphQL.
### Fixed
- Fixed bug where the model icon could not be changed when editing an existing model.
- Fixed bug in the Number field where you could not define a Step value without also defining a Max value.
- Improved duplicate field slug detection to ensure forward and reverse slugs for the Relationship field are unique in WPGraphQL.
### Changed
- The `@wordpress/i18n` package is no longer bundled in the plugin's scripts, relying on the version that ships with WordPress instead.
## 0.7.0 - 2021-10-04
### Added
- Relationship Field: one-to-one and one-to-many relationships were renamed to many-to-one and many-to-many to accurately reflect their function.
- Relationship Field: fields can now optionally include reverse references.
- Relationship Field: added [Beta] flag as the feature takes shape.
- Chore: set "Requires at least" to WordPress version 5.7
- Chore: set "Requires PHP" to version 7.2
### Fixed
- Fixed bug where the app prompted about "Unsaved changes" when no changes had been made.
## 0.6.0 - 2021-09-09
### Added
- Create one-to-one and one-to-many relationships between model entries with the new Relationship field.
- A plugin icon will appear on the plugin update page during future updates.
### Fixed
- Improved modal scroll behavior and positioning.
## 0.5.0 - 2021-08-12
### Added
- You can now add custom Taxonomies and assign them to your models. Visit Atlas Content Modeler → Taxonomies to get started.
- Models and Taxonomies submenu items now appear in the admin sidebar below Atlas Content Modeler.
### Changed
- Refactored PHP tests.
## 0.4.2 - 2021-08-04
### Added
- Ability to choose an icon when creating or editing a model.
- Option to restrict file types for the media field.
- Generate WordPress changelog from the Markdown changelog so that changes are visible from the WordPress changes modal.
- Plugin developer improvements: GitHub Pull Request template; Code Climate configuration; Makefile for test environments.
### Changed
- Change “API Identifier” field title on model entry forms to “Model ID” with a new description to better reflect its use.
- Continuous Integration: the generated plugin zip is now tested and verified before deploying.
### Fixed
- Improve query generation for “Open in GraphiQL” to include lowercase model names and models with the same plural and singular name.
- Improve sanitization of model slugs. Includes safe migration of existing model slugs.
- Prevent a PHP warning during title filtering if post info can not be found.
- Improve number field validation.
## 0.4.1 - 2021-06-24
### Added
- Generate POT language file for translations.
### Changed
- Use `include` in place of `require` so that missing or corrupt files do not take WordPress down.
### Removed
- Removed the Multiple Choice field for now while we add support for custom choice API IDs.
## 0.4.0 - 2021-06-22
- First public release. There may be breaking changes until 1.0.0.
### Added
- New Multiple Choice field (beta) to create radio and checklist groups.
- New “Send Feedback” button to share your experience with us.
- New model option for “Private” or “Public” API visibility.
- The Text field now includes an optional character minimum and maximum count in Advanced Settings.
- The Number field now includes an optional minimum, maximum and step value in Advanced Settings.
- Prompt to complete edits to an open field when attempting to open another field.
- Added LICENSE, CONTRIBUTING and CHANGELOG files.
### Changed
- REST responses now show Atlas Content Modeler fields under an `acm_fields` property.
- REST responses now display detailed information about media fields.
- Changed “Text Length” to “Input Type” in the Text field. Text length is now determined in Advanced Settings. Input type lets developers choose an input or textarea field.
- Increased the clickable area on dropdown menu items in the developer app.
- Adjusted styling in the publisher app.
- Refactored default value handling to improve field load times.
- Internal REST routes now include an `atlas` prefix.
- The README now includes a getting started guide.
### Fixed
- Pressing return in the publisher app will now submit the form, instead of clearing fields.
- Corrected an issue preventing fields from appearing in REST responses.
- Prevented custom fields from showing in REST when `show_in_rest` is false.
- Strings in the publisher and developer interfaces are now translatable.
- Fixed Jest tests and add to Continuous Integration workflow.
- Improved admin URL handling for WordPress sites hosted in a subfolder.
- Improved plugin update error messages to include the name of the plugin reporting them.
- Prevented a styling issue with the Content Modeler admin menu item.
## 0.3.0 - 2021-06-01
### Added
- Developers can now mark fields as required.
- Publishers will see inline errors prompting them to fill required fields.
### Changed
- Rebranded to Atlas Content Modeler.
- Changed data storage format.
- Changed model data option name from wpe_content_model_post_types to atlas_content_modeler_post_types.
- Updated admin sidebar icons for settings and entries.
- Improved Rich Text fields, including adding media support.
- Open fields now close when another field is created or opened.
- Media fields now have a WPGraphQL type of MediaItem instead of String to enable complete queries for media information.
### Fixed
- Improved model and field list appearance at mobile screen widths.
- Improved client-side field validation for publishers.
- Hid duplicate page title on new entry screens.
- Corrected headers when editing entries.
- Protected meta fields to prevent them appearing in the Custom Fields meta box.
### Removed
- Repeater fields have been removed.
- Screen options have been removed from entry pages for content model post types.
- Post thumbnail support has been removed for content model post types.
## 0.2.0 - 2021-05-07
### Added
- Publishers can now enter model entries via a form.
- Developers have the option to set a field as the title field.
- The plugin now checks for updates.
- Model and field options now close on blur or when the escape key is pressed.
- Model options include “Open in GraphiQL” if the WPGraphQL plugin is active.
- Improved developer tooling for linting, including pre-commit hooks.
### Changed
- The media field is restricted to single file uploads for now.
### Removed
- Unused “Created on” column from the model table.
## 0.1.0
- Initial version.

View File

@@ -0,0 +1,2 @@
1.0.1
* Initial release

View File

@@ -0,0 +1,24 @@
{
"name": "wordpress-invoices-plugin",
"version": "1.0.0",
"description": "Beautiful and easy invoices for Wordpress",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clone": "git clone https://github.com/mokuappio/serverless-invoices.git",
"pull": "cd serverless-invoices && git pull",
"config": "copy vue.config.js serverless-invoices\\vue.config.js && copy app.config.js serverless-invoices\\src\\config\\app.config.js",
"build": "npm run config && cd serverless-invoices && npm i && npm run build",
"prepare-release": "mv serverless-invoices/node_modules ../node_modules_temp && cp -r . ../bci",
"clean-release": "rm -rf ../bci/.idea && rm -rf ../bci/.git && rm -rf ../bci/serverless-invoices/.git && mv ../node_modules_temp serverless-invoices/node_modules",
"compress-release": "mv ../bci beautiful-custom-invoices && tar -a -c -f beautiful-custom-invoices.zip beautiful-custom-invoices && rm -rf beautiful-custom-invoices",
"release": "npm run prepare-release && npm run clean-release && npm run compress-release"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/elevateou/wordpress-invoices-plugin.git"
},
"author": "Elevate OU",
"license": "ISC",
"homepage": "https://bitbucket.org/elevateou/wordpress-invoices-plugin#readme"
}

View File

@@ -0,0 +1,7 @@
## [1.0.1] - 2021-09-29
- Fix fa-icon block type
## [1.0.0] - 2021-09-29
- First release

View File

@@ -0,0 +1,21 @@
{
"name": "brandnestor",
"version": "1.1.0",
"description": "",
"main": "gulpfile.js",
"scripts": {
"build": "gulp",
"watch": "gulp watch"
},
"devDependencies": {
"@wordpress/icons": "^6.0.1",
"@wordpress/scripts": "^18.1.0",
"cssnano": "^5.0.8",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.1",
"gulp-sass": "^5.0.0",
"sass": "^1.42.1",
"webpack": "^5.59.0",
"webpack-stream": "^7.0.0"
}
}

View File

@@ -0,0 +1,705 @@
# Copyright (C) 2021 Nikos Papadakis
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: BrandNestor 1.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brandnestor\n"
"Last-Translator: Nikos Papadakis <nikos@papadakis.xyz>\n"
"Language-Team: WebNestors <info@webnestors.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-30T16:36:44+00:00\n"
"PO-Revision-Date: 2021-10-30T16:36:44+00:00\n"
"X-Generator: WP-CLI 2.5.1-alpha-70ffdce\n"
"X-Domain: brandnestor\n"
#. Plugin Name of the plugin
msgid "BrandNestor"
msgstr "BrandNestor"
#. Description of the plugin
msgid "Customize the WordPress dashboard, login/register pages, and more."
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου του WordPress, τις σελίδες σύνδεσης/εγγραφής, και πολλά άλλα."
#. Author of the plugin
msgid "Nikos Papadakis"
msgstr "Νίκος Παπαδάκης"
#. Author URI of the plugin
msgid "https://gitlab.com/nikopap/brandnestor"
msgstr "https://gitlab.com/nikopap/brandnestor"
#: src/Admin/Settings/Settings.php:115
msgid "General"
msgstr "Γενικά"
#: src/Admin/Settings/Settings.php:116
msgid "General options."
msgstr "Γενικές επιλογές."
#: src/Admin/Settings/Settings.php:122
#: src/Admin/Settings/Settings.php:244
msgid "Dashboard"
msgstr "Πίνακας Ελέγχου"
#: src/Admin/Settings/Settings.php:123
msgid "Customize the Dashboard page with your own Welcome Panel. You can choose to create it with standard HTML, or using an Elementor Template page."
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου με το δικό σας Welcome Panel. Επιλέξτε να το δημιουργήσετε με HTML, ή με ένα Template του Elementor."
#: src/Admin/Settings/Settings.php:129
msgid "Admin Menus"
msgstr "Μενού Διαχειριστή"
#: src/Admin/Settings/Settings.php:130
msgid "Hide admin menu items for user roles and for users."
msgstr "Κρύψτε στοιχεία του μενού ανά ρόλο χρήστη ή ανά χρήστη."
#: src/Admin/Settings/Settings.php:136
msgid "Admin Bar"
msgstr "Μπάρα Διαχειριστή"
#: src/Admin/Settings/Settings.php:137
msgid "Options for the admin bar on top of the page."
msgstr "Επιλογές για την μπάρα διαχειριστικού στο πάνω μέρος της σελίδας."
#: src/Admin/Settings/Settings.php:143
msgid "Authentication"
msgstr "Αυθεντικοποίηση"
#: src/Admin/Settings/Settings.php:144
msgid "Enable custom login & registration pages for your users or clients. BrandNestor registers new Elementor Login and Registration Widgets that allow authentication execution to exist on the frontend by skipping using the wp-login.php page"
msgstr "Ενεργοποιήστε δικές σας σελίδες εισόδου και εγγραφής για τους χρήστες ή του πελάτες. Το BrandNestor ενεργοποιεί νέα Widgets του Elementor που επιτρέπουν την πιστοποίηση να γίνεται στο frontend παραλείποντας το wp-login.php."
#: src/Admin/Settings/Settings.php:169
msgid "Are you sure you want to reset the plugin? This will permanently delete all of the plugin data!"
msgstr "Σίγουρα θέλετε να επαναφέρετε το πρόσθετο; Η ενέργεια θα διαγράψει τα δεδομένα του πρόσθετου μόνιμα!"
#: src/Admin/Settings/Settings.php:170
msgid "An error occured during the request. See the developer console for details."
msgstr "Υπήρξε λάθος κατά τη διάρκεια της άιτησης. Δείτε την κονσόλα προγραμματιστή για περισσότερες λεπτομέρειες."
#: src/Admin/Settings/Settings.php:171
msgid "Rule deleted"
msgstr "Ο κανόνας διαγράφηκε"
#: src/Admin/Settings/Settings.php:172
msgid "Settings saved!"
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν!"
#: src/Admin/Settings/Settings.php:180
msgid "Brand Name"
msgstr "Όνομα Εταιρείας"
#: src/Admin/Settings/Settings.php:181
msgid "Your Brand name. Will be used to replace any WordPress mentions in admin pages."
msgstr "Το Όνομα της Εταιρείας σας. Θα χρησιμοποιηθεί για να αντικαταστήσει το WordPress στις σελίδες Admin."
#: src/Admin/Settings/Settings.php:190
msgid "Footer Text"
msgstr "Κείμενο footer"
#: src/Admin/Settings/Settings.php:191
msgid "Text to display on the WordPress admin footer."
msgstr "Κείμενο για εμφάνιση στο Footer του διαχειριστικού."
#: src/Admin/Settings/Settings.php:200
msgid "Footer Image"
msgstr "Εικόνα footer"
#: src/Admin/Settings/Settings.php:201
msgid "Image to display next to the footer text."
msgstr "Εικόνα για εμφάνιση δίπλα στο κείμενο footer."
#: src/Admin/Settings/Settings.php:210
msgid "Footer URL"
msgstr "Footer URL"
#: src/Admin/Settings/Settings.php:211
msgid "The link URL for the footer text."
msgstr "Ο σύνδεσμος για το κείμενο του footer."
#: src/Admin/Settings/Settings.php:220
msgid "Hide Dashboard Contextual Help"
msgstr "Απόκρυψη βοήθειας του πίνακα ελέγχου"
#: src/Admin/Settings/Settings.php:221
msgid "Hide the WordPress dashboard contextual help box that is on the top of admin pages."
msgstr "Κρύψτε την βοήθεια του πίνακα ελέγχου που βρίσκεται στην κορυφή του διαχειριστικού."
#: src/Admin/Settings/Settings.php:223
#: src/Admin/Settings/Settings.php:234
#: src/Admin/Settings/Settings.php:259
#: src/Widgets/Login.php:98
#: src/Widgets/Login.php:110
#: src/Widgets/Register.php:88
#: src/Widgets/Register.php:111
msgid "Hide"
msgstr "Απόκρυψη"
#: src/Admin/Settings/Settings.php:231
msgid "Hide WordPress Version"
msgstr "Απόκρυψη αριθμού έκδοσης WordPress"
#: src/Admin/Settings/Settings.php:232
msgid "Hide the WordPress version number that is displayed on the footer."
msgstr "Απόκρυψη του αριθμού έκδοσης του WordPress που εμφανίζεται στο footer."
#: src/Admin/Settings/Settings.php:247
#: src/Admin/Settings/Settings.php:334
#: src/Admin/Settings/Settings.php:346
msgid "Enable"
msgstr "Ενεργοποίηση"
#: src/Admin/Settings/Settings.php:255
msgid "Hide Widgets"
msgstr "Απόκρυψη Widget"
#: src/Admin/Settings/Settings.php:256
msgid "Hide all Dashboard widgets."
msgstr "Απόκρυψη όλων των Widget του Πίνακα Ελέγχου."
#: src/Admin/Settings/Settings.php:267
msgid "Welcome Panel Type"
msgstr "Τύπος Πίνακα Καλωσορίσματος"
#: src/Admin/Settings/Settings.php:268
msgid "Choose between writing as HTML or an Elementor template as the type of the Dashboard Welcome Panel."
msgstr "Επιλέξτε μεταξύ του HTML ή ενός Template του Elementor ως τύπο πίνακα καλωσορίσματος."
#: src/Admin/Settings/Settings.php:287
msgid "Elementor Template"
msgstr "Template Elementor"
#. translators: %s Elementor library URL link
#: src/Admin/Settings/Settings.php:290
msgid "Choose a custom Welcome Panel from an Elementor Template page. <a href=\"%s\">Create one from here.</a>"
msgstr "Επιλέξτε ένα δικό σας πίνακα Welcome από τα Templates του Elementor. <a href=\"%s\">Δημιουργία νέου από εδώ.</a>"
#: src/Admin/Settings/Settings.php:303
msgid "Dashboard HTML"
msgstr "HTML Πίνακα Ελέγχου"
#: src/Admin/Settings/Settings.php:304
msgid "Insert custom HTML that is going to be placed on the Dashboard page."
msgstr "Εισάγετε προσαρμοσμένο HTML που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
#: src/Admin/Settings/Settings.php:314
msgid "Dashboard CSS"
msgstr "CSS Πίνακα Ελέγχου"
#: src/Admin/Settings/Settings.php:315
msgid "Insert custom CSS styling that is going to be placed on the Dashboard page."
msgstr "Εισάγετε προσαρμοσμένο CSS που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
#: src/Admin/Settings/Settings.php:359
msgid "Hide admin menus for:"
msgstr "Απόκρυψη μενού διαχειριστή για:"
#: src/Admin/Settings/Settings.php:363
msgid "Role"
msgstr "Ρόλος"
#: src/Admin/Settings/Settings.php:364
msgid "User"
msgstr "Χρήστης"
#: src/Admin/Settings/Settings.php:392
msgid "Guest"
msgstr "Επισκέπτης"
#: src/Admin/Settings/Settings.php:399
msgid "Branding Logo"
msgstr "Λογότυπο Εταιρείας"
#: src/Admin/Settings/Settings.php:400
msgid "Image logo to display on the Dashboard Admin Bar."
msgstr "Εικόνα λογότυπου για εμφάνιση στην Μπάρα Διαχειριστή."
#: src/Admin/Settings/Settings.php:409
msgid "Branding Logo URL"
msgstr "URL Λογότυπου"
#: src/Admin/Settings/Settings.php:410
msgid "Link URL for the Branding Logo on the Dashboard Admin Bar."
msgstr "Σύνδεσομς URL για το λογότυπο στην Μπάρα Διαχειριστή."
#: src/Admin/Settings/Settings.php:419
msgid "Bar Menu Visibility"
msgstr "Ορατότητα Μπάρας Διαχειριστή"
#: src/Admin/Settings/Settings.php:420
msgid "With this, you can change the Admin Bar menu visibility for logged in or logged out users on the frontend."
msgstr "Με αυτό, μπορείτε να αλλάξετε την ορατότητα της μπάρας διαχειριστή για συνδεδεμένους ή αποσυνδεδεμένους χρήστες στο frontend."
#: src/Admin/Settings/Settings.php:441
msgid "Login Page"
msgstr "Σελίδα Εισόδου"
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
#: src/Admin/Settings/Settings.php:444
msgid "Enable a custom Login Page for WordPress. Login URLs and redirects will point to this page. To add a login form to a page use the <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εισόδου για το WordPress. Τα URLs εισόδου θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εισόδου σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
#: src/Admin/Settings/Settings.php:457
msgid "Register Page"
msgstr "Σελίδα Εγγραφής"
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
#: src/Admin/Settings/Settings.php:460
msgid "Enable a custom Register Page for WordPress. Register URLs and redirects will point to this page. To add a register form to a page use the <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εγγραφής για το WordPress. Τα URL για εγγραφή θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εγγραφής σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
#: src/Admin/Settings/Settings.php:473
msgid "Redirect URL On Login"
msgstr "URL ανακατεύθυνσης σύνδεσης"
#: src/Admin/Settings/Settings.php:474
msgid "URL to redirect to on successful user login. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή σύνδεση χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
#: src/Admin/Settings/Settings.php:483
msgid "Redirect URL On Registration"
msgstr "URL ανακατεύθυνσης εγγραφής"
#: src/Admin/Settings/Settings.php:484
msgid "URL to redirect to on successful user registration. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή εγγραφή χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
#: src/Admin/Settings/Settings.php:493
msgid "WordPress Login Page Logo"
msgstr "Λογότυπο σελίδας σύνδεσης του WordPress"
#: src/Admin/Settings/Settings.php:494
msgid "Replace the default WordPress login page logo with your own <strong>(84x84 pixels).</strong> Useful if there are plugins that rely on the default WP login form, such as Two Factor."
msgstr "Αντικαθιστά το λογότυπο του WordPress στην σελίδα σύνδεσης με το δικό σας <strong>(84x84 pixel).</strong> Χρήσιμο αν υπάρχουν πρόσθετα που βασίζονται στην προεπιλεγμένη σελίδα σύνδεσης, όπως το Two Factor."
#: src/Admin/Settings/Settings.php:503
msgid "Disable Default WordPress Login Page"
msgstr "Απενεργοποίηση Προεπιλεγμένης Σελίδας Εισόδου του WordPress"
#: src/Admin/Settings/Settings.php:504
msgid "Disable the default WordPress login & register page. <span style=\"color:red\">WARNING: Make sure that your custom login and register pages work correctly, otherwise <strong>nobody</strong> will be able to sign in!</span>"
msgstr "Απενεργοποίηση των προεπιλεγμένων σελίδων εισόδου και εγγραφής του WordPress. <span style=\"color:red\">ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Σιγουρευτείτε ότι οι δικές σας σελίδες εισόδου και εγγραφής δουλεύουν σωστά, διαφορετικά <strong>κανένας</strong> δεν θα μπορεί να κάνει είσοδο!</span>"
#: src/Admin/Settings/Settings.php:506
#: src/Admin/Settings/Settings.php:517
msgid "Disable"
msgstr "Απενεργοποίηση"
#: src/Admin/Settings/Settings.php:514
msgid "Disable /wp-admin/ Page Redirect"
msgstr "Απενεργοποίηση Ανακατεύθυνσης /wp-admin/"
#: src/Admin/Settings/Settings.php:515
msgid "Disables /wp-admin/ to login page redirection for non-logged in users to proactively hide your login and registration pages as a security feature."
msgstr "Απενεργοποιεί το /wp-admin/ στην σελίδα εισόδου για χρήστες που δεν έχουν κάνει είσοδο ώστε να κρύψει την σελίδα εισόδου και εγγραφής."
#: src/Admin/Settings/SettingsImageField.php:26
msgid "Upload Image"
msgstr "Μεταφόρτωση εικόνας"
#: src/Admin/Settings/SettingsRuleField.php:53
msgid "Add New"
msgstr "Προσθήκεη νέου"
#: src/Admin/Settings/SettingsRuleField.php:67
msgid "Delete"
msgstr "Διαγραφή"
#: src/Admin/Settings/SettingsSelectField.php:44
msgid "-- None Selected --"
msgstr "-- Κανένα Επιλεγμένο --"
#: src/Admin/Settings/tmpl/settings-page.php:59
msgid "View Documentation"
msgstr "Προβολή εγχειριδίου"
#: src/Admin/Settings/tmpl/settings-page.php:72
msgid "Save Changes"
msgstr "Αποθήκευση αλλαγών"
#: src/Admin/Settings/tmpl/settings-page.php:80
msgid "Upload"
msgstr "Μεταφόρτωση"
#: src/Admin/Settings/tmpl/settings-page.php:84
msgid "Import Settings"
msgstr "Εισαγωγή ρυθμίσεων"
#: src/Admin/Settings/tmpl/settings-page.php:87
msgid "Export Settings"
msgstr "Εξαγωγή ρυθμίσεων"
#: src/Admin/Settings/tmpl/settings-page.php:90
msgid "Reset Plugin"
msgstr "Επαναφορά προσθέτου"
#: src/Core/AjaxHandler.php:43
#: src/Core/AjaxHandler.php:60
#: src/Core/AjaxHandler.php:72
#: src/Core/AjaxHandler.php:103
#: src/Core/AjaxHandler.php:130
#: src/Core/AjaxHandler.php:154
msgid "Current user does not have the required capability"
msgstr "Ο χρήστης δεν έχει τα απαιτούμενα δικαιώματα"
#: src/Core/RequestHandler.php:57
msgid "<strong>Error:</strong> Incorrect username/email or password."
msgstr "<strong>Λάθος:</strong> Εσφαλμένο όνομα χρήστη/email ή κωδικός."
#: src/Core/RequestHandler.php:299
msgid "Import error: The uploaded file type is not allowed."
msgstr "Σφάλμα εισαγωγής: Ο τύπος αρχείου φόρτωσης δεν επιτρέπεται."
#: src/Core/RequestHandler.php:314
msgid "Settings successfully imported. It is recommended to manually check that all image URLs are pointing to your site, and that all page reference their correct IDs."
msgstr "Οι ρυθμίσεις εισάχθηκαν με επιτυχία. Συνιστάται ο χειροκίνητος έλεγχος οτι οι επιλογές με URL αντιστοιχούν για την ιστοσελίδα σας, και ότι όλες αναφορές σελιδών είναι σωστές."
#: src/Core/RequestHandler.php:316
msgid "Import error: The upload file is invalid."
msgstr "Σφάλμα εισαγωγής: Το αρχείο φόρτωσης δεν είναι έγκυρο."
#: src/Front/Models/LoginModel.php:45
#: src/Front/Models/RegisterModel.php:40
#: src/Widgets/Base_Form.php:479
#: src/Widgets/Base_Form.php:480
msgid "Submit"
msgstr "Υποβολή"
#: src/Front/Models/LoginModel.php:46
#: assets/js/build/blocks/blocks.js:202
#: assets/js/src/blocks/login/block.js:33
#: assets/js/build/blocks/blocks.js:119
msgid "Get New Password"
msgstr "Ζητήστε νέο συνθηματικό"
#: src/Front/Models/LoginModel.php:62
msgid "You are now logged out."
msgstr "Έχετε αποσυνδεθεί."
#: src/Front/Models/LoginModel.php:66
msgid "User registration is currently disabled."
msgstr "Η εγγραφή χρηστών έχει απενεργοποιηθεί προς το παρόν."
#: src/Front/Models/LoginModel.php:70
msgid "Your password has been reset. You can now log in with the form below."
msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί. Μπορείτε τώρα να συνδεθείτε με την παρακάτω φόρμα."
#. translators: %s login page URL
#: src/Front/Models/LoginModel.php:75
msgid "Registration complete. Please check your email, then visit the <a href=\"%s\">login page</a>."
msgstr "Η εγγραφή σας ολοκληρώθηκε. Παρακαλώ δείτε το email σας και στην συνέχεια επισκεφτείτε την <a href=\"%s\">σελίδα εισόδου</a>."
#. translators: %s register page URL
#: src/Front/Models/LoginModel.php:80
msgid "Check your email for the confirmation link, then visit the <a href=\"%s\">login page</a>."
msgstr "Ελέγξτε το email σας για τον σύνδεσμο επιβεβαίωσης και στη συνέχεια επισκεφτείτε τη <a href=\"%s\">σελίδα εισόδου</a>."
#: src/Front/Models/LoginModel.php:84
msgid "Your password reset link has expired. Please request a new link below."
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης έχει λήξει. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
#: src/Front/Models/LoginModel.php:88
msgid "Your password reset link appears to be invalid. Please request a new link below."
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης φαίνεται να μην είναι έγκυρος. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
#: src/Widgets/Base_Form.php:32
msgid "Style"
msgstr "Στιλ"
#: src/Widgets/Base_Form.php:40
msgid "Form Label Typography"
msgstr "Τυπογραφία ετικέτας εισόδου"
#: src/Widgets/Base_Form.php:49
msgid "Text Typography"
msgstr "Τυπογραφία κειμένου"
#: src/Widgets/Base_Form.php:58
#: src/Widgets/Base_Form.php:92
#: src/Widgets/Base_Form.php:359
msgid "Text Color"
msgstr "Χρώμα κειμένου"
#: src/Widgets/Base_Form.php:76
msgid "Inputs"
msgstr "Εισόδοι"
#: src/Widgets/Base_Form.php:104
#: src/Widgets/Base_Form.php:370
msgid "Background Color"
msgstr "Χρώμα Φόντου"
#: src/Widgets/Base_Form.php:155
#: src/Widgets/Base_Form.php:469
msgid "Button"
msgstr "Κουμπί"
#: src/Widgets/Base_Form.php:343
msgid "Message Box"
msgstr "Κουτί μηνύματος"
#: src/Widgets/Base_Form.php:351
msgid "Message Styling"
msgstr "Στυλ μηνύματος"
#: src/Widgets/Base_Form.php:389
msgid "Error Message Styling"
msgstr "Στυλ μηνύματος σφάλματος"
#: src/Widgets/Base_Form.php:397
msgid "Error Text Color"
msgstr "Χρώμα κειμένου σφάλματος"
#: src/Widgets/Base_Form.php:408
msgid "Error Background Color"
msgstr "Χρώμα φόντου σφάλματος"
#: src/Widgets/Base_Form.php:477
msgid "Button Label"
msgstr "Κείμενου κουμπιού"
#: src/Widgets/Base_Form.php:487
msgid "Alignment"
msgstr "Ευθυγράμμιση"
#: src/Widgets/Base_Form.php:491
msgid "Left"
msgstr "Αριστερά"
#: src/Widgets/Base_Form.php:495
msgid "Center"
msgstr "Κέντρο"
#: src/Widgets/Base_Form.php:499
msgid "Right"
msgstr "Δεξιά"
#: src/Widgets/Base_Form.php:503
msgid "Justified"
msgstr "Justified"
#: src/Widgets/Base_Form.php:513
msgid "Button Icon"
msgstr "Εικονίδιο κουμπιού"
#: src/Widgets/Login.php:57
#: src/Widgets/Register.php:57
#: assets/js/build/blocks/blocks.js:283
#: assets/js/build/blocks/blocks.js:523
#: assets/js/src/blocks/login/edit.js:49
#: assets/js/src/blocks/register/edit.js:48
#: assets/js/build/blocks/blocks.js:194
#: assets/js/build/blocks/blocks.js:404
msgid "Content"
msgstr "Περιεχόμενο"
#: src/Widgets/Login.php:65
msgid "Login Label"
msgstr "Ετικέτα ψευδώνυμου"
#: src/Widgets/Login.php:75
msgid "Password Label"
msgstr "Ετικέτα συνθηματικού"
#: src/Widgets/Login.php:85
msgid "Remember Me Label"
msgstr "Ετικέτα «να με θυμάσαι»"
#: src/Widgets/Login.php:95
#: assets/js/build/blocks/blocks.js:285
#: assets/js/src/blocks/login/edit.js:51
#: assets/js/build/blocks/blocks.js:196
msgid "Show Lost Password"
msgstr "Εμφάνιση φόρμας υπενθύμισης συνθηματικού"
#: src/Widgets/Login.php:97
#: src/Widgets/Login.php:109
#: src/Widgets/Register.php:87
#: src/Widgets/Register.php:110
msgid "Show"
msgstr "Εμφάνιση"
#: src/Widgets/Login.php:107
#: assets/js/build/blocks/blocks.js:292
#: assets/js/src/blocks/login/edit.js:61
#: assets/js/build/blocks/blocks.js:206
msgid "Show Register URL"
msgstr "Εμφάνιση συνδέσμου εγγραφής"
#: src/Widgets/Login.php:119
msgid "New Password Button Label"
msgstr "Ετικέτα κουμπιού νέου συνθηματικού"
#: src/Widgets/Login.php:135
#: src/Widgets/Register.php:137
#: assets/js/build/blocks/blocks.js:334
#: assets/js/build/blocks/blocks.js:568
#: assets/js/src/blocks/login/edit.js:96
#: assets/js/src/blocks/register/edit.js:89
#: assets/js/build/blocks/blocks.js:241
#: assets/js/build/blocks/blocks.js:445
msgid "Sample message."
msgstr "Δείγμα μηνύματος"
#: src/Widgets/Login.php:136
#: src/Widgets/Register.php:138
msgid "Sample <strong>error</strong> message."
msgstr "Δείγμα μηνύματος <strong>σφάλματος</strong>."
#: src/Widgets/Register.php:65
msgid "Username Label"
msgstr "Ετικέτα ψευδόνυμου"
#: src/Widgets/Register.php:75
msgid "Email Label"
msgstr "Ετικέτα Email"
#: src/Widgets/Register.php:85
#: assets/js/build/blocks/blocks.js:525
#: assets/js/src/blocks/register/edit.js:50
#: assets/js/build/blocks/blocks.js:406
msgid "Show First Name Input"
msgstr "Εμφάνιση Ονόματος"
#: src/Widgets/Register.php:97
msgid "First Name Label"
msgstr "Ετικέτα Ονόματος"
#: src/Widgets/Register.php:108
#: assets/js/build/blocks/blocks.js:532
#: assets/js/src/blocks/register/edit.js:60
#: assets/js/build/blocks/blocks.js:416
msgid "Show Last Name Input"
msgstr "Εμφάνιση Επώνυμου"
#: src/Widgets/Register.php:120
msgid "Last Name Label"
msgstr "Ετικέτα Επώνυμου"
#: assets/js/build/blocks/blocks.js:175
#: assets/js/src/blocks/login/block.js:6
#: assets/js/build/blocks/blocks.js:92
msgid "BrandNestor Login"
msgstr ""
#: assets/js/build/blocks/blocks.js:176
#: assets/js/src/blocks/login/block.js:7
#: assets/js/build/blocks/blocks.js:93
msgid "A custom Login widget for WordPress"
msgstr "Ένα προσαρμοσμένο widget σύνδεσης για το WordPress"
#: assets/js/build/blocks/blocks.js:290
#: assets/js/src/blocks/login/edit.js:56
#: assets/js/build/blocks/blocks.js:201
msgid "Showing lost password link"
msgstr "Εμφάνιση συνδέσμου χαμένου συνθηματικού"
#: assets/js/build/blocks/blocks.js:290
#: assets/js/src/blocks/login/edit.js:57
#: assets/js/build/blocks/blocks.js:202
msgid "Toggle to show lost password link"
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος χαμένου κωδικού πρόσβασης"
#: assets/js/build/blocks/blocks.js:297
#: assets/js/src/blocks/login/edit.js:66
#: assets/js/build/blocks/blocks.js:211
msgid "Showing register link"
msgstr "Εμφάνιση συνδέσμου εγγραφής"
#: assets/js/build/blocks/blocks.js:297
#: assets/js/src/blocks/login/edit.js:67
#: assets/js/build/blocks/blocks.js:212
msgid "Toggle to show register link"
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος εγγραφής"
#: assets/js/build/blocks/blocks.js:299
#: assets/js/src/blocks/login/edit.js:71
#: assets/js/build/blocks/blocks.js:216
msgid "New Password Button Text"
msgstr "Κείμενο κουμπιού Νέου Συνθηματικού"
#: assets/js/build/blocks/blocks.js:304
#: assets/js/build/blocks/blocks.js:538
#: assets/js/src/blocks/login/edit.js:76
#: assets/js/src/blocks/register/edit.js:70
#: assets/js/build/blocks/blocks.js:221
#: assets/js/build/blocks/blocks.js:426
msgid "Button Alignment"
msgstr "Ευθυγράμμιση κουμπιού"
#: assets/js/build/blocks/blocks.js:336
#: assets/js/build/blocks/blocks.js:570
#: assets/js/src/blocks/login/edit.js:97
#: assets/js/src/blocks/register/edit.js:90
#: assets/js/build/blocks/blocks.js:242
#: assets/js/build/blocks/blocks.js:446
msgid "Sample error message."
msgstr "Δείγμα μηνύματος σφάλματος"
#: assets/js/build/blocks/blocks.js:346
#: assets/js/build/blocks/blocks.js:580
#: assets/js/src/blocks/login/edit.js:105
#: assets/js/src/blocks/register/edit.js:98
#: assets/js/build/blocks/blocks.js:250
#: assets/js/build/blocks/blocks.js:454
msgid "Add a username label…"
msgstr "Προσθέστε ετικέτα ονόματος χρήστη…"
#: assets/js/build/blocks/blocks.js:358
#: assets/js/src/blocks/login/edit.js:114
#: assets/js/build/blocks/blocks.js:259
msgid "Add a password label…"
msgstr "Προσθέστε ετικέτα συνθηματικού…"
#: assets/js/build/blocks/blocks.js:415
#: assets/js/src/blocks/register/block.js:6
#: assets/js/build/blocks/blocks.js:303
msgid "BrandNestor Register"
msgstr ""
#: assets/js/build/blocks/blocks.js:416
#: assets/js/src/blocks/register/block.js:7
#: assets/js/build/blocks/blocks.js:304
msgid "A custom Register widget for WordPress"
msgstr "Ένα προσαρμοσμένο widget εγγραφής για το WordPress"
#: assets/js/build/blocks/blocks.js:530
#: assets/js/build/blocks/blocks.js:537
#: assets/js/src/blocks/register/edit.js:55
#: assets/js/src/blocks/register/edit.js:65
#: assets/js/build/blocks/blocks.js:411
#: assets/js/build/blocks/blocks.js:421
msgid "Showing a first name input field"
msgstr "Εμφάνιση πεδίου εισαγωγής ονόματος"
#: assets/js/build/blocks/blocks.js:530
#: assets/js/src/blocks/register/edit.js:56
#: assets/js/build/blocks/blocks.js:412
msgid "Toggle to show the first name input field"
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής ονόματος"
#: assets/js/build/blocks/blocks.js:537
#: assets/js/src/blocks/register/edit.js:66
#: assets/js/build/blocks/blocks.js:422
msgid "Toggle to show the last name input field"
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής επώνυμου"
#: assets/js/build/blocks/blocks.js:592
#: assets/js/src/blocks/register/edit.js:107
#: assets/js/build/blocks/blocks.js:463
msgid "Add an email label…"
msgstr "Προσθέστε ετικέτα email…"
#: assets/js/build/blocks/blocks.js:604
#: assets/js/src/blocks/register/edit.js:117
#: assets/js/build/blocks/blocks.js:473
msgid "Add a first name label…"
msgstr "Προσθέστε ετικέτα ονόματος…"
#: assets/js/build/blocks/blocks.js:616
#: assets/js/src/blocks/register/edit.js:128
#: assets/js/build/blocks/blocks.js:484
msgid "Add a last name label…"
msgstr "Προσθέστε ετικέτα επώνυμου…"

View File

@@ -0,0 +1,370 @@
# Copyright (C) 2021 Casso Team
# This file is distributed under the GNU General Public License v3.0.
msgid ""
msgstr ""
"Project-Id-Version: Casso - Automatically confirm bank transfer payments 2.0."
"0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/casso-wordpress-"
"plugin\n"
"Last-Translator: \n"
"Language-Team: Tiếng Việt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-06-08T08:18:22+00:00\n"
"PO-Revision-Date: 2021-07-23 07:29+0000\n"
"X-Generator: Loco https://localise.biz/\n"
"X-Domain: casso-wordpress-plugin\n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Loco-Version: 2.5.2; wp-5.7.2"
#: inc/banks/class-casso-base.php:735
msgid ""
" <div class='power_by'>Automatic transaction checking by Casso Robot</div>"
msgstr ""
" <div class='power_by'>Tra soát giao dịch tự động bởi Casso Robot</div>"
#: inc/class-casso-admin-page.php:268
msgid "Acceptance difference"
msgstr "Chênh lệch chấp nhận"
#: inc/banks/class-casso-base.php:404 inc/banks/class-casso-momo.php:152
msgid "Account number"
msgstr "Số tài khoản"
#: inc/class-casso-admin-page.php:213
msgid "Account on/off"
msgstr "Bật/tắt tài khoản"
#: wc-gateway-casso.php:322
msgid "Active"
msgstr "Đang hoạt động"
#: inc/banks/class-casso-base.php:281 inc/banks/class-casso-base.php:424
#: inc/banks/class-casso-momo.php:91 inc/banks/class-casso-momo.php:172
msgid "Amount"
msgstr "Số tiền"
#: inc/class-casso-admin-page.php:163
msgid "Authorization code"
msgstr "Mã xác nhận"
#: inc/banks/class-casso-base.php:412 inc/banks/class-casso-momo.php:160
msgid "Bank"
msgstr "Ngân hàng"
#: inc/banks/class-casso-base.php:333 inc/banks/class-casso-momo.php:123
msgid "Bank transfer QR code"
msgstr "Mã QR chuyển khoản ngân hàng"
#: inc/class-casso-admin-page.php:186
msgid "Bussiness name"
msgstr "Tên doanh nghiệp"
#. Plugin Name of the plugin
msgid "Casso - Tự động xác nhận thanh toán chuyển khoản ngân hàng"
msgstr ""
#: wc-gateway-casso.php:437
msgid ""
"Casso announces received <b>%s</b> VND, content <B>%s</B> has been moved to "
"<b>Account number %s</b>"
msgstr ""
"Casso thông báo nhận <b>%s</b> VND, nội dung <B>%s</B> chuyển vào <b>STK "
"%s</b>"
#: wc-gateway-casso.php:263
msgid ""
"Casso is not running because WooCommerce is not active. Please activate both "
"plugins."
msgstr ""
"Casso không chạy vì WooCommerce không hoạt động. Vui lòng kích hoạt cả hai "
"plugin."
#. Description of the plugin
msgid ""
"Casso plugin developed to connect Vietnamese banks with Wordpress. Help "
"automatically confirm the order has been paid by wire transfer in Vietnam."
msgstr ""
"Plugin Casso phát triển để kết nối các ngân hàng Việt Nam vào Wordpress. "
"Giúp tự động xác nhận các đơn hàng được thanh toán bằng hình thức chuyển "
"khoản ngân hàng Việt Nam."
#. Author of the plugin
msgid "Casso Team"
msgstr "Casso Team"
#: inc/class-casso-admin-page.php:155
msgid "Click here to show manual configuration"
msgstr "Click vào đây hiện thị cấu hình thủ công"
#: inc/class-casso-admin-page.php:178
msgid "Connection Information"
msgstr "Thông tin kết nối"
#: inc/banks/class-casso-base.php:285 inc/banks/class-casso-base.php:436
#: inc/banks/class-casso-momo.php:95 inc/banks/class-casso-momo.php:184
msgid "Content"
msgstr "Nội dung"
#: inc/class-casso-admin-page.php:369 inc/class-casso-admin-page.php:394
msgid "Default"
msgstr "Mặc định"
#: inc/class-casso-admin-page.php:147
msgid "Enable QR code display mode VietQR"
msgstr "Bật chế độ hiển thị mã VietQR"
#: inc/class-casso-admin-page.php:129
msgid "Enable/Disable"
msgstr "Mở/Đóng"
#. Author URI of the plugin
msgid "https://casso.vn/"
msgstr "https://casso.vn/"
#. Plugin URI of the plugin
msgid "https://casso.vn/plugin-ket-noi-ngan-hang/"
msgstr "https://casso.vn/plugin-ket-noi-ngan-hang/"
#: inc/banks/class-casso-base.php:307 inc/banks/class-casso-base.php:620
msgid "I have already paid"
msgstr "Tôi đã thanh toán"
#: wc-gateway-casso.php:320
msgid "Inactive"
msgstr "Ngưng hoạt động"
#: inc/class-casso-admin-page.php:152
msgid "Link Casso"
msgstr "Liên kết Casso"
#: inc/class-casso-admin-page.php:188
msgid "List of bank accounts"
msgstr "Danh sách tài khoản ngân hàng"
#: inc/banks/class-casso-momo.php:32
msgid "Make payment by bank transfer via Momo."
msgstr "Thanh toán bằng chuyển khoản qua Momo."
#: inc/banks/class-casso-acb.php:32 inc/banks/class-casso-agribank.php:30
#: inc/banks/class-casso-bidv.php:31 inc/banks/class-casso-mbbank.php:31
#: inc/banks/class-casso-ocb.php:31 inc/banks/class-casso-techcombank.php:30
#: inc/banks/class-casso-timoplus.php:33 inc/banks/class-casso-tpbank.php:31
#: inc/banks/class-casso-vietcombank.php:32
#: inc/banks/class-casso-vietinbank.php:31 inc/banks/class-casso-vpbank.php:31
msgid "Make payment by bank transfer."
msgstr "Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. "
#: inc/banks/class-casso-momo.php:25
msgid ""
"Make payment by money transfer via momo. The system automatically confirms "
"the order payment after the transfer is completed"
msgstr ""
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
#: inc/class-casso-admin-page.php:254
msgid ""
"Maximum 15 characters, no spaces and no special characters. If contained, it "
"will be deleted"
msgstr ""
"Tối đa 15 kí tự, không chứa khoảng trắng và kí tự đặc biệt. Nếu chứa sẽ bị "
"xóa"
#: inc/banks/class-casso-momo.php:20
msgid "Momo Wallet"
msgstr "Ví Momo"
#: inc/class-casso-admin-page.php:184
msgid "No banks found"
msgstr "Không tìm thấy tài khoản ngân hàng"
#: inc/class-casso-admin-page.php:181 inc/class-casso-admin-page.php:337
msgid "No connection"
msgstr "Chưa kết nối"
#: inc/banks/class-casso-base.php:459
msgid ""
"No matching transfers were found. The system is still checking the "
"transaction"
msgstr ""
"Không tìm thấy giao dịch nào phù hợp. Hệ thống vẫn đang kiểm tra. Có thể tốn "
"1 khoảng thời gian "
#: inc/class-casso-admin-page.php:154
msgid "or"
msgstr "hoặc"
#: wc-gateway-casso.php:460
msgid "Order has been overpaid"
msgstr "Đơn hàng đã thanh toán dư"
#: wc-gateway-casso.php:324
msgid "Out of money"
msgstr "Hết tiền"
#: wc-gateway-casso.php:140 wc-gateway-casso.php:145 wc-gateway-casso.php:171
msgid "Paid"
msgstr "Đã thanh toán"
#: inc/banks/class-casso-acb.php:25 inc/banks/class-casso-agribank.php:23
#: inc/banks/class-casso-bidv.php:24 inc/banks/class-casso-mbbank.php:24
#: inc/banks/class-casso-ocb.php:24 inc/banks/class-casso-techcombank.php:23
#: inc/banks/class-casso-timoplus.php:26 inc/banks/class-casso-tpbank.php:24
#: inc/banks/class-casso-vietcombank.php:25
#: inc/banks/class-casso-vietinbank.php:24 inc/banks/class-casso-vpbank.php:24
msgid ""
"Payment by bank transfer. The system automatically confirms the paid order "
"after the transfer is completed."
msgstr ""
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
#: inc/banks/class-casso-momo.php:26 inc/banks/class-casso-momo.php:31
msgid "Payment Momo"
msgstr "Thanh toán Momo"
#: inc/banks/class-casso-acb.php:24 inc/banks/class-casso-acb.php:26
#: inc/banks/class-casso-acb.php:31 inc/banks/class-casso-agribank.php:22
#: inc/banks/class-casso-agribank.php:24 inc/banks/class-casso-agribank.php:29
#: inc/banks/class-casso-bidv.php:23 inc/banks/class-casso-bidv.php:25
#: inc/banks/class-casso-bidv.php:30 inc/banks/class-casso-mbbank.php:23
#: inc/banks/class-casso-mbbank.php:25 inc/banks/class-casso-mbbank.php:30
#: inc/banks/class-casso-ocb.php:23 inc/banks/class-casso-ocb.php:25
#: inc/banks/class-casso-ocb.php:30 inc/banks/class-casso-techcombank.php:22
#: inc/banks/class-casso-techcombank.php:24
#: inc/banks/class-casso-techcombank.php:29
#: inc/banks/class-casso-timoplus.php:25 inc/banks/class-casso-timoplus.php:27
#: inc/banks/class-casso-timoplus.php:32 inc/banks/class-casso-tpbank.php:23
#: inc/banks/class-casso-tpbank.php:25 inc/banks/class-casso-tpbank.php:30
#: inc/banks/class-casso-vietcombank.php:24
#: inc/banks/class-casso-vietcombank.php:26
#: inc/banks/class-casso-vietcombank.php:31
#: inc/banks/class-casso-vietinbank.php:23
#: inc/banks/class-casso-vietinbank.php:25
#: inc/banks/class-casso-vietinbank.php:30 inc/banks/class-casso-vpbank.php:23
#: inc/banks/class-casso-vpbank.php:25 inc/banks/class-casso-vpbank.php:30
msgid "Payment via bank %s"
msgstr "Thanh toán ngân hàng %s"
#: inc/banks/class-casso-momo.php:108
msgid "Phone number"
msgstr "Số điện thoại"
#: inc/banks/class-casso-base.php:385 inc/banks/class-casso-momo.php:133
msgid ""
"Please transfer the correct content <b style='font-size: 20px;'>%s</b> for "
"we can confirm the payment"
msgstr ""
"Vui lòng chuyển đúng nội dung <b style = 'font-size: 20px;'>% s </b> để "
"chúng tôi xác nhận thanh toán"
#: inc/banks/class-casso-base.php:367
msgid "SAVE IMAGE QR"
msgstr "LƯU ẢNH QR"
#: inc/banks/class-casso-momo.php:24
msgid "Scan code Momo"
msgstr "Quét mã Momo"
#: inc/class-casso-admin-page.php:203
msgid "Security Key"
msgstr "Key bảo mật"
#: inc/class-casso-admin-page.php:152
msgid "Set up a link with Casso"
msgstr "Thiết lập liên kết với Casso"
#: inc/class-casso-admin-page.php:154
msgid "Set up automatic Casso link"
msgstr "Thiết lập liên kết với Casso"
#: wc-gateway-casso.php:331
msgid "Settings"
msgstr "Thiết lập"
#: inc/class-casso-admin-page.php:182 inc/class-casso-admin-page.php:338
msgid "Show details"
msgstr "Hiển thị chi tiết"
#: inc/class-casso-admin-page.php:334
msgid "Show less"
msgstr "Thu gọn"
#: inc/class-casso-admin-page.php:274
msgid "Status after full payment or balance:"
msgstr "Trạng thái sau khi thanh toán đủ hoặc dư:"
#: inc/class-casso-admin-page.php:289
msgid "Status if payment is missing:"
msgstr "Trạng thái nếu thanh toán bị thiếu:"
#: wc-gateway-casso.php:443
msgid "The order is underpaid so it is not completed"
msgstr "Đơn hàng bị thanh toán thiếu nên chưa hoàn tất"
#: inc/banks/class-casso-base.php:368
msgid "Then open the banking App and scan the transfer QR"
msgstr " Sau đó mở App ngân hàng quét QR chuyển khoản"
#: wc-gateway-casso.php:433
msgid "Transaction is too old, not processed"
msgstr "Giao dịch quá cũ, không xử lý"
#: inc/class-casso-admin-page.php:251
msgid "Transaction prefix"
msgstr "Tiền tố giao dịch"
#: inc/banks/class-casso-base.php:90
msgid "Transfer"
msgstr "Chuyển khoản"
#: inc/banks/class-casso-base.php:97
msgid ""
"Transfer money to our account<b> %s</b>. The order will be confirmed "
"immediately after the transfer"
msgstr ""
"Chuyển khoản vào tài khoản <b>%s</b> của chúng tôi. Đơn hàng sẽ được xác "
"nhận ngay sau khi chuyển khoản"
#: wc-gateway-casso.php:323
msgid "Trial"
msgstr "Dùng thử"
#: inc/class-casso-admin-page.php:137
msgid "Turn on bank transfer"
msgstr "Bật chuyển khoản ngân hàng"
#: inc/class-casso-admin-page.php:258 inc/class-casso-admin-page.php:262
msgid "Turn on Case Sensitivity"
msgstr "Bật Phân biệt chữ hoa / chữ thường"
#: wc-gateway-casso.php:148 wc-gateway-casso.php:153 wc-gateway-casso.php:172
msgid "Underpaid"
msgstr "Thanh toán thiếu"
#: inc/class-casso-admin-page.php:229
msgid "Updating account name"
msgstr "Đang cập nhật tên tài khoản"
#: inc/class-casso-admin-page.php:187
msgid "User"
msgstr "Người dùng"
#: inc/class-casso-admin-page.php:142
msgid "VietQR"
msgstr ""
#: inc/banks/class-casso-momo.php:107
msgid "Wallet"
msgstr "Ví điện tử"
#: inc/class-casso-admin-page.php:204 inc/class-casso-admin-page.php:245
msgid "Webhook URL"
msgstr "Webhook URL"
#: inc/banks/class-casso-base.php:312 inc/banks/class-casso-base.php:615
msgid "You paid"
msgstr "Bạn đã thanh toán thành công"

View File

@@ -0,0 +1,5 @@
/**1.0.1 - 2021.10.15**/
- Updated: Update support file
/**1.0.0 - 2021.10.14**/
~ The first released

View File

@@ -0,0 +1,4 @@
== Changelog ==
= 1.0.0 - September 22 2021 =
* Initial release

View File

@@ -0,0 +1,217 @@
# Copyright (C) 2021 Cultivate
# This file is distributed under the GNU General Public License v3.0.
msgid ""
msgstr ""
"Project-Id-Version: Cultivate for WooCommerce 0.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cultivate-for-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-09-29T14:45:59+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: cultivate-for-woocommerce\n"
#. Plugin Name of the plugin
#: includes/admin/class-wc-cultivate-admin-menus.php:62
msgid "Cultivate for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.wecultivate.us/install/woocommerce"
msgstr ""
#. Description of the plugin
msgid "Cultivate integration for WooCommerce stores."
msgstr ""
#. Author of the plugin
#: includes/admin/class-wc-cultivate-admin-menus.php:45
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:49
#: includes/admin/views/html-admin-authorize-complete-page.php:6
#: includes/admin/views/html-admin-options-page.php:88
msgid "Cultivate"
msgstr ""
#. Author URI of the plugin
msgid "https://www.wecultivate.us/"
msgstr ""
#: includes/admin/class-wc-cultivate-admin-menus.php:25
msgid "Authorize"
msgstr ""
#: includes/admin/class-wc-cultivate-admin-menus.php:36
msgid "Authorize Complete"
msgstr ""
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:30
msgid "Made in USA"
msgstr ""
#: includes/admin/meta-boxes/class-wc-cultivate-admin-product-data.php:31
msgid "Made in USA products are listed on Cultivate."
msgstr ""
#: includes/admin/meta-boxes/views/html-product-data-options.php:12
msgid "Origin"
msgstr ""
#: includes/admin/meta-boxes/views/html-product-data-options.php:14
msgid "By default, products you add to Cultivate are assumed to be Made in USA with imported materials - change here if this product is Fully Made in USA"
msgstr ""
#: includes/admin/meta-boxes/views/html-product-data-options.php:19
msgid "Made in USA with imported materials"
msgstr ""
#: includes/admin/meta-boxes/views/html-product-data-options.php:20
msgid "Fully made in USA"
msgstr ""
#: includes/admin/views/html-admin-authorize-complete-page.php:8
#: includes/admin/views/html-admin-options-page.php:122
msgid "Please wait..."
msgstr ""
#. translators: %1$s replaced with link start, %2$s replaced with link end HTML tags
#: includes/admin/views/html-admin-options-page.php:100
msgid "%1$s Sign In to Cultivate %2$s to connect your WooCommerce store."
msgstr ""
#: includes/admin/views/html-admin-options-page.php:107
#: includes/class-wc-cultivate.php:106
msgid "WooCommerce for Cultivate requires that you set up pretty permalinks. Default permalinks will not work, because they are not supported by the WooCommerce REST API."
msgstr ""
#: includes/admin/views/html-admin-options-page.php:132
msgid "Accept Terms"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:140
msgid "Pay It Forward"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:143
msgid "Pay It Forward is enabled for your store."
msgstr ""
#: includes/admin/views/html-admin-options-page.php:147
msgid "Pay It Forward for your store is awaiting approval by Cultivate."
msgstr ""
#. translators: %1$s replaced with link start, %2$s replaced with link end HTML tags
#: includes/admin/views/html-admin-options-page.php:154
msgid "You can enable %1$s Pay It Forward %2$s for your store to promote your store in Google search results for our extension users."
msgstr ""
#: includes/admin/views/html-admin-options-page.php:163
msgid "Enable"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:166
msgid "Disable"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:177
msgid "Site Settings"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:183
msgid "Contact Details"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:186
msgid "Please enter the details of someone Cultivate can contact about your shop."
msgstr ""
#: includes/admin/views/html-admin-options-page.php:195
msgid "Contact Name"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:209
msgid "Organization Name"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:222
msgid "Telephone"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:234
msgid "Email"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:248
msgid "Site Details"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:251
msgid "Customize your site listing in Cultivate."
msgstr ""
#: includes/admin/views/html-admin-options-page.php:257
msgid "Is your business:"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:264
msgid "Woman-owned or operated?"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:271
msgid "We use this to highlight your products in our results as being from a business wholly woman-owned or operated"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:279
msgid "BIPOC-owned or operated?"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:286
msgid "We use this to highlight your products in our results as being from a business wholly BIPOC-owned or operated"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:301
msgid "Headquarters Location"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:307
msgid "-- Please select --"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:315
msgid "We use this to filter our results when people search within a specific state"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:323
msgid "Shop Logo"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:330
msgid "Choose file"
msgstr ""
#: includes/admin/views/html-admin-options-page.php:351
msgid "Save Changes"
msgstr ""
#: includes/class-wc-cultivate.php:89
#: includes/class-wc-cultivate.php:103
msgid "Cultivate for WooCommerce is installed"
msgstr ""
#: includes/class-wc-cultivate.php:91
msgid "Please sign in to Cultivate to connect your store."
msgstr ""
#: includes/class-wc-cultivate.php:92
msgid "Your store name, URL and timezone will be sent to our servers."
msgstr ""
#: includes/class-wc-cultivate.php:95
msgid "Sign In to Cultivate"
msgstr ""
#: includes/class-wc-cultivate.php:109
msgid "Open permalinks settings"
msgstr ""

View File

@@ -0,0 +1,34 @@
# Copyright (C) 2021 Sanjeev Aryal
# This file is distributed under the same license as the Do Not Send Emails If package.
msgid ""
msgstr ""
"Project-Id-Version: Do Not Send Emails If 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-10-24 04:38:58+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
#: src/Settings.php:105
msgid "Your settings have been saved."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Do Not Send Emails If"
msgstr ""
#. Description of the plugin/theme
msgid "Do not send emails if conditions matches. You set the condition."
msgstr ""
#. Author of the plugin/theme
msgid "Sanjeev Aryal"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://www.sanjeebaryal.com.np"
msgstr ""

View File

@@ -0,0 +1,7 @@
# Changelog
## [1.0.2] - 2021-09-17
- Added missing files for WordPress plugin repository
## [1.0.1] - 2021-09-17
- Changed name of plugin from openapi-generator to document-generator-for-openapi
## [1.0.0] - 2021-09-17
- Initial release

View File

@@ -0,0 +1,204 @@
# Copyright (C) 2021 WP Desk
# This file is distributed under the same license as the Dropshipping XML for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Dropshipping XML for WooCommerce 1.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dropshipping-xml-for-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-28T10:11:07+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: dropshipping-xml-for-woocommerce\n"
#. Plugin Name of the plugin
msgid "Dropshipping XML for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
#: dropshipping-xml-for-woocommerce.php:50
msgid "https://www.wpdesk.net/products/dropshipping-xml-woocommerce/"
msgstr ""
#. Description of the plugin
#: dropshipping-xml-for-woocommerce.php:49
msgid "Import wholesale products to your store. Synchronize your WooCommerce products with the current offer of your suppliers."
msgstr ""
#. Author of the plugin
msgid "WP Desk"
msgstr ""
#. Author URI of the plugin
msgid "https://www.wpdesk.net/"
msgstr ""
#: src/Plugin/Action/Installer/PluginUnistallerAction.php:48
msgid "Free version of plugin Dropshipping XML for WooCommerce was deactivated because Pro version is active."
msgstr ""
#: src/Plugin/Action/Loader/Plugin/PluginLinksLoaderAction.php:13
#: src/Plugin/Template/FormFields/form-field-free.php:46
#: src/Plugin/Template/Import/Product_mapper.php:94
#: src/Plugin/Template/Import/Product_mapper.php:250
#: src/Plugin/Template/Import/Product_mapper.php:391
#: src/Plugin/Template/Import/Product_mapper.php:427
msgid "https://www.wpdesk.net/products/dropshipping-xml-woocommerce/?utm_source=wp-admin-plugins&utm_medium=link&utm_campaign=dropshipping"
msgstr ""
#: src/Plugin/Action/Loader/Plugin/PluginLinksLoaderAction.php:13
msgid "Purchase PRO version"
msgstr ""
#: src/Plugin/Template/FormFields/form-field-free.php:46
#: src/Plugin/Template/Import/Product_mapper.php:94
#: src/Plugin/Template/Import/Product_mapper.php:250
#: src/Plugin/Template/Import/Product_mapper.php:391
#: src/Plugin/Template/Import/Product_mapper.php:427
msgid "Purchase PRO version to fully unlock this feature"
msgstr ""
#. translators: %s: page step
#: src/Plugin/Template/Import/Options.php:18
#: src/Plugin/Template/Import/Product_mapper.php:21
msgid "Step %s"
msgstr ""
#: src/Plugin/Template/Import/Options.php:22
msgid "Set the product import cycle. Select the days of the week and hours for the cron process to run. The process will automatically synchronize the products in selected days and hours. See more in the <a href=\"https://wpde.sk/dropshipping-sync-options\" target=\"_blank\">documentation</a>."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:25
msgid "Map the tags of the supplier's file with the WooCommerce product fields. To do this you can drag&drop the name of the tag from the preview into the selected product field. <a href=\"https://www.wpdesk.pl/wp-content/uploads/2020/09/dropshipping_draganddrop.gif\">See how</a>. Learn more about mapping in the plugin <a href=\"https://wpde.sk/dropshipping-import\" target=\"_blank\">documentation</a>."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:57
msgid "Product data"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:63
msgid "General"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:66
msgid "Inventory"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:69
msgid "Shipping"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:72
msgid "Related products"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:75
msgid "Attributes"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:78
msgid "Variants"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:92
msgid "If you want to have prices in WooCommerce higher that in the file, you can modify the prices on the fly by adding a certain amount or percentage."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:111
msgid "Tax Class"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:135
msgid "If you want to add multiple tax classes to mapper just separate dragged fields by comma."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:149
#: src/Plugin/Template/Import/Product_mapper.php:241
#: src/Plugin/Template/Import/Product_mapper.php:447
msgid "Add +"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:237
msgid "Add attributes to the products by mapping their names and / or values from the file."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:248
msgid "Attributes added as taxonomy are available globally to the entire site."
msgstr ""
#. translators: %s: url to docs
#: src/Plugin/Template/Import/Product_mapper.php:259
msgid "Read how to import variable products in <a href=\"%s\" style=\"text-decoration:none\">plugins docs →</a>"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:268
msgid "Select this option if each product variant has the same name in the product feed."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:276
#: src/Plugin/Template/Import/Product_mapper.php:338
msgid "There is an entry in the product feed containing the parent product."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:291
msgid "Select this option if each product variant has the same SKU in the product feed."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:307
msgid "Select this option if each product variation has the same ID in the product feed but different xpath to ID."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:328
msgid "Select this option if the product feed contains a field that identifies variants."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:356
msgid "Short product description"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:367
msgid "Images"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:369
msgid "Image URLs detected below will be downloaded to the WordPress library and product's gallery. <a href=\"https://wpde.sk/dropshipping-images-mapping\" target=\"_blank\">Visit docs site for more info</a>."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:374
msgid "Type in a separator character which will be used in the field below to separate image URLs."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:382
msgid "Enable this option to automatically convert the HTML tags () to URLs, if they appear."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:389
msgid "Enable this option to remove the featured image from gallery."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:396
msgid "Categories"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:398
msgid "<a href=\"https://wpde.sk/dropshipping-categories-mapping\" target=\"_blank\">Docs of categories mapping</a>"
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:419
msgid "Only the products from the feed that are assigned to the categories mapped below, will be imported. Checking will disable the option \"Create or select categories automatically\"."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:425
msgid "Check to import categories from the file based on the values completed in the \"Product category field\"."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:433
msgid "If you want to add multiple categories to mapper just separate dragged fields by comma."
msgstr ""
#: src/Plugin/Template/Import/Product_mapper.php:473
msgid "Virtual"
msgstr ""

View File

@@ -0,0 +1,241 @@
# Copyright (C) 2021 Vincent Dubroeucq
# This file is distributed under the same license as the E-Connector for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: E-Connector for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/e-connector-for-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-09-30T09:28:07+02:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: e-connector-for-woocommerce\n"
#. Plugin Name of the plugin
msgid "E-Connector for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/econnector-for-woocommerce"
msgstr ""
#. Description of the plugin
msgid "Additional functionality to enhance your e-connector experience"
msgstr ""
#. Author of the plugin
msgid "Vincent Dubroeucq"
msgstr ""
#. Author URI of the plugin
msgid "https://vincentdubroeucq.com/"
msgstr ""
#: e-connector-for-woocommerce.php:73
msgid "Documentation"
msgstr ""
#: e-connector-for-woocommerce.php:98
msgid "The plugin E-Connector for WooCommerce requires WooCommerce to be active to work properly. Please install or activate WooCommerce."
msgstr ""
#: inc/class-account-page.php:19
msgid "Documents"
msgstr ""
#: inc/class-account-page.php:73
msgid "Document name"
msgstr ""
#: inc/class-account-page.php:74
msgid "Type"
msgstr ""
#: inc/class-account-page.php:75
msgid "Reference"
msgstr ""
#: inc/class-account-page.php:76
msgid "Total paid"
msgstr ""
#: inc/class-account-page.php:77
msgid "Date"
msgstr ""
#: inc/class-account-page.php:78
msgid "Actions"
msgstr ""
#. translators: %1$s: document date, %2$s: document date, %3$s: document time
#: inc/class-account-page.php:125
msgctxt "Documents table date column"
msgid "On <time datetime=\"%1$s\">%2$s at %3$s</time>"
msgstr ""
#: inc/class-account-page.php:174
msgid "Download"
msgstr ""
#: inc/class-account-page.php:180
msgid "View"
msgstr ""
#: inc/class-admin-pages.php:17
msgid "E-Connector"
msgstr ""
#: inc/class-admin-pages.php:54
msgid "E-Connector Documentation"
msgstr ""
#: inc/class-content-manager.php:111
msgid "Filter by document type"
msgstr ""
#: inc/class-content-manager.php:113
msgid "All types"
msgstr ""
#: inc/class-content-manager.php:129
msgid "You do not have the rights to do that."
msgstr ""
#: inc/class-content-manager.php:132
msgid "No document id was provided."
msgstr ""
#: inc/class-content-manager.php:140
msgid "You do not have the right to access this document."
msgstr ""
#: inc/class-wc-rest-documents-controller.php:123
msgid "Sorry, you are not allowed to upload documents."
msgstr ""
#: inc/class-wc-rest-documents-controller.php:215
#: inc/class-wc-rest-documents-controller.php:249
msgid "Sorry, the file you try to upload is invalid."
msgstr ""
#: inc/class-wc-rest-documents-controller.php:257
msgid "Sorry, there was an error uploading the file."
msgstr ""
#: inc/emails/class-wc-email-customer-new-document.php:20
msgid "New document available - Customer"
msgstr ""
#: inc/emails/class-wc-email-customer-new-document.php:21
msgid "Email the customer receives when a document is available in his account."
msgstr ""
#: inc/emails/class-wc-email-customer-new-document.php:25
#: inc/emails/class-wc-email-customer-new-document.php:26
msgid "A new document is available in your account."
msgstr ""
#: inc/emails/class-wc-email-customer-new-document.php:107
#: inc/emails/class-wc-email-new-document.php:98
msgid "Attachments"
msgstr ""
#: inc/emails/class-wc-email-customer-new-document.php:109
#: inc/emails/class-wc-email-new-document.php:100
msgid "Attach documents to email ?"
msgstr ""
#: inc/emails/class-wc-email-new-document.php:20
msgid "New document available - Admin"
msgstr ""
#: inc/emails/class-wc-email-new-document.php:21
msgid "Email the site admin receives when a document has been uploaded."
msgstr ""
#: inc/emails/class-wc-email-new-document.php:25
#: inc/emails/class-wc-email-new-document.php:26
msgid "A new document has just been uploaded."
msgstr ""
#: inc/functions.php:56
msgid "Quote"
msgstr ""
#: inc/functions.php:57
msgid "Order"
msgstr ""
#: inc/functions.php:58
msgid "Shipping label"
msgstr ""
#: inc/functions.php:59
msgid "Invoice"
msgstr ""
#. translators: %1$s: name of the document, $2$s owner of the document
#: templates/emails/admin-new-document.php:27
msgid "A new document named <strong>%1$s</strong> has been uploaded, and its owner set to <strong>%2$s</strong>."
msgstr ""
#: templates/emails/admin-new-document.php:32
#: templates/emails/plain/admin-new-document.php:30
msgid "You can find the document attached to this email."
msgstr ""
#. translators: %s: name of the document
#: templates/emails/customer-new-document.php:20
msgid "A new document named <strong>%s</strong> is available in your account."
msgstr ""
#. translators: %s: document page url
#: templates/emails/customer-new-document.php:25
msgid "Visit your <a href=\"%s\">account page</a> to view/download the document."
msgstr ""
#. translators: %s: document page url
#: templates/emails/customer-new-document.php:31
msgid "You can find the document attached to this email, or visit your <a href=\"%s\">account page</a> to view/download it."
msgstr ""
#: templates/emails/plain/admin-new-document.php:14
msgid "New document"
msgstr ""
#. translators: %1$s: name of the document, $2$s owner of the document
#: templates/emails/plain/admin-new-document.php:25
msgid "A new document named %1$s has been uploaded, and its owner set to %2$s."
msgstr ""
#. translators: %s: document page url
#: templates/emails/plain/admin-new-document.php:34
msgid "Edit this document : %s"
msgstr ""
#. translators: %s: user edit page url
#: templates/emails/plain/admin-new-document.php:39
msgid "View the user : %s"
msgstr ""
#. translators: %s: name of the document
#: templates/emails/plain/customer-new-document.php:21
msgid "A new document named %s is available in your account."
msgstr ""
#. translators: %s: account page url
#: templates/emails/plain/customer-new-document.php:26
msgid "Visit your account page to view/download the document : %s"
msgstr ""
#. translators: %s: account page url
#: templates/emails/plain/customer-new-document.php:32
msgid "You can find the document attached to this email, or visit your account page to view/download it. : %s"
msgstr ""
#: templates/myaccount/documents.php:30
msgid "Sorry, you have no documents yet."
msgstr ""

View File

@@ -0,0 +1,35 @@
{
"name": "camoo/enkap-woocommerce-gateway",
"description": "Enkap - Mobile Money Gateway for WooCommerce",
"type": "wordpress-plugin",
"require": {
"php": ">=7.3",
"camoo/enkap-oauth": "^1.0"
},
"minimum-stability": "dev",
"homepage": "https://camoo.cm",
"license": "GPL-2.0-or-later",
"prefer-stable" : true,
"version": "1.0.2",
"authors": [
{
"name": "CAMOO SARL",
"email": "ecommerce@camoo.sarl"
}
],
"keywords": [
"CAMOO",
"Mobile money Gateway Cameroon",
"Plugin camoo Pay",
"MTN Cameroon Mobile Money",
"ORANGE Cameroon Mobile Money",
"Express Union Cameroon Mobile Money",
"Smobil Cash pay",
"enkap",
"smobilpay for e-commerce"
],
"support": {
"issues": "https://github.com/camoo/enkap-woocommerce-gateway/issues",
"source": "https://github.com/camoo/enkap-woocommerce-gateway"
}
}

View File

@@ -0,0 +1,5 @@
## [1.0.0]
### Happy Release!!!
- Plugin launch. Everything's new!

View File

@@ -0,0 +1,2 @@
== 1.0.0 - 24/09/2019 ==
Initial release

View File

@@ -0,0 +1,35 @@
msgid ""
msgstr ""
"Project-Id-Version: Fix API URL 0.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n"
"POT-Creation-Date: 2021-09-28T16:04:42-03:00\n"
"PO-Revision-Date: 2021-09-28 16:00:42-03:00\n"
"Last-Translator: Ederson Peka <ederson@gmail.com>\n"
"Language-Team: Ederson Peka <ederson@gmail.com>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-09-28T16:00:42-03:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
#. Plugin Name of the plugin
msgid "Fix API URL"
msgstr "Conserta a URL da API"
#. Plugin URI of the plugin
msgid "https://ederson.peka.nom.br"
msgstr ""
#. Description of the plugin
msgid "Uses site_url() instead of home_url() to build the API URL. Useful for having WordPress as a Headless CMS."
msgstr "Usa o método site_url() em lugar do home_url() para construir a URL da API. Útil para ter o WordPress como \"CMS Headless\"."
#. Author of the plugin
msgid "Ederson Peka"
msgstr ""
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/edersonpeka/"
msgstr ""

View File

@@ -0,0 +1,79 @@
# Copyright (C) 2021 Flexible Shipping
# This file is distributed under the same license as the Live rates for USPS and WooCommerce by Flexible Shipping plugin.
msgid ""
msgstr ""
"Project-Id-Version: Live rates for USPS and WooCommerce by Flexible Shipping 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/flexible-shipping-usps\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-25T14:40:21+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: flexible-shipping-usps\n"
#. Plugin Name of the plugin
msgid "Live rates for USPS and WooCommerce by Flexible Shipping"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/flexible-shipping-usps/"
msgstr ""
#. Description of the plugin
msgid "WooCommerce USPS Shipping Method and live rates."
msgstr ""
#. Author of the plugin
msgid "Flexible Shipping"
msgstr ""
#. Author URI of the plugin
msgid "https://flexibleshipping.com/?utm_source=usps&utm_medium=link&utm_campaign=plugin-list-author/"
msgstr ""
#: src/Plugin.php:112
msgid "Service Code"
msgstr ""
#: src/Plugin.php:220
msgid "Settings"
msgstr ""
#: src/Plugin.php:221
msgid "Docs"
msgstr ""
#: src/Plugin.php:222
msgid "Support"
msgstr ""
#: src/Plugin.php:227
msgid "Upgrade"
msgstr ""
#: src/views/settings-sidebar-html.php:16
msgid "Get USPS WooCommerce Live Rates PRO!"
msgstr ""
#: src/views/settings-sidebar-html.php:20
msgid "Handling Fees"
msgstr ""
#: src/views/settings-sidebar-html.php:21
msgid "Automatic Box Packing"
msgstr ""
#: src/views/settings-sidebar-html.php:22
msgid "Premium Support"
msgstr ""
#: src/views/settings-sidebar-html.php:23
msgid "Multicurrency Support"
msgstr ""
#: src/views/settings-sidebar-html.php:27
msgid "Upgrade Now &rarr;"
msgstr ""

View File

@@ -0,0 +1,23 @@
= 0.1.3 =
* Add on request SVG generation
* Add usage instructions
* Remove comment artifacts
* Remove single SVG files
* Remove duplicate JavaScript
* Remove EDD integration
* Fix issue with wrong ID targeting on repeater icons
* Fix issue with missing ID when removing icons on first load
* Fix wrong URL when return format is URL
* Fix compatibility when used as subfield with Repeater field
= 0.1.2 =
* Fix reference error library_list_wrapper not defined
* Fix undefined offset with empty icon fields
= 0.1.1 =
* Fix JS conflict
* Fix wrong input field type
= 0.1 =
* Adds popup dialog for icon selection
* Adds new ACF icon field

View File

@@ -0,0 +1,4 @@
*** GSMTasks Integration Changelog ***
2021-05-19 - version 1.0
* Initial release

View File

@@ -0,0 +1,93 @@
# Copyright (C) 2021 GSMvalve OÜ
# This file is distributed under the same license as the WooCommerce GSMTasks Integration plugin.
msgid ""
msgstr ""
"Project-Id-Version: GSMTasks Integration 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tasks-com-integration\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-05-01T15:24:37+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: tasks-com-integration\n"
#. Plugin Name of the plugin
msgid "GSMTasks Integration"
msgstr "GSMtasks integratsioon"
#. Description of the plugin
msgid "Copy orders to GSMTasks"
msgstr "Kopeeri tellimused GSMtaski"
#. Author of the plugin
msgid "GSMvalve OÜ"
msgstr "GSMvalve OÜ"
#. Author URI of the plugin
msgid "mailto:info@gsmtasks.com"
msgstr "mailto:info@gsmtasks.com"
#: includes/GSMTasksIntegration.php:27
msgid "GSMTasks"
msgstr "GSMtasks"
#: includes/GSMTasksIntegration.php:28
#: includes/GSMTasksIntegration.php:73
msgid "Copy orders over to GSMTasks."
msgstr "Kopeeri tellimused GSMtaski."
#: includes/GSMTasksIntegration.php:62
msgid "Copy orders over to GSMTasks.<br><br>GSMtasks account already connected. Check the 'Disconnect' checkbox and press 'Save changes' if you want to connect a new account."
msgstr "Kopeeri tellimused GSMtaski.<br><br>GSMtaski konto on juba ühendatud. Vali 'Peata liidestus' valik ja vajuta 'Salvesta muudatused' kui soovid ühendada teist kontot."
#: includes/GSMTasksIntegration.php:65
msgid "Disconnect"
msgstr "Peata liidestus"
#: includes/GSMTasksIntegration.php:67
msgid "Forget current API token."
msgstr "Unusta API võti"
#: includes/GSMTasksIntegration.php:76
msgid "API token"
msgstr "API võti"
#: includes/GSMTasksIntegration.php:78
msgid "Enter your GSMTasks API token."
msgstr "Sisesta GSMtasks API võti"
#: includes/GSMTasksIntegration.php:105
msgid "Invalid API token!"
msgstr "Mitte kehtiv API võti"
#: tasks-com-integration.php:202
msgid "Send/update delivery task to GSMTasks"
msgstr "Saada või uuenda tööülesannet GSMtasksis"
#: tasks-com-integration.php:228
msgid "Send/update delivery tasks to GSMTasks"
msgstr "Saada või uuenda tööülesandeid GSMtasksis"
#: tasks-com-integration.php:261
msgid "Order"
msgstr "Tellimus"
#: tasks-com-integration.php:269
msgid "Total Cost"
msgstr "Kogu maksumus"
#: tasks-com-integration.php:273
#: tasks-com-integration.php:274
msgid "Customer note"
msgstr "Kliendi märkus"
#: tasks-com-integration.php:315
msgid "Failed to send delivery task to GSMtasks. Response: "
msgstr "Tööülesande saatmine GSMtasksi ebaõnnestus. Vastus: "
#: tasks-com-integration.php:319
msgid "Delivery task sent to GSMtasks"
msgstr "Tööülesanne saadetud GSMtaski"

View File

@@ -0,0 +1,47 @@
# Copyright (C) 2021 Jakob Bouchard
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Hestia Nginx Cache 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hestia-nginx-cache\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-09-17T15:33:57-04:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: hestia-nginx-cache\n"
#. Plugin Name of the plugin
#: includes/admin.php:75
#: includes/admin.php:76
#: includes/admin.php:90
msgid "Hestia Nginx Cache"
msgstr ""
#. Description of the plugin
msgid "Hestia Nginx Cache Integration for WordPress. Auto-purges the Nginx cache when needed."
msgstr ""
#. Author of the plugin
msgid "Jakob Bouchard"
msgstr ""
#. Author URI of the plugin
msgid "https://jakobbouchard.dev"
msgstr ""
#: includes/admin.php:114
#: includes/admin.php:116
msgid "Purge Hestia Nginx Cache"
msgstr ""
#: includes/admin.php:139
msgid "The Hestia Nginx Cache was purged successfully."
msgstr ""
#: includes/admin.php:145
msgid "The Hestia Nginx Cache could not be purged!"
msgstr ""

View File

@@ -0,0 +1,71 @@
{
"name": "krishna-suwal/http-requests-tracker",
"description": "An http requests tracker plugin",
"version": "0.1.0",
"homepage": "https://krishna-suwal.github.io/http-requests-tracker",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Krishna Suwal"
}
],
"autoload": {
"files": [
"includes/Helpers/Core.php",
"includes/Helpers/Conditional.php",
"includes/Helpers/Format.php",
"includes/Helpers/UrlSchemeHelpers.php"
],
"psr-4": {
"HRT\\": "includes/"
}
},
"require": {
"league/container": "3.3",
"wa72/url": "^0.7.1",
"tareq1988/wp-eloquent": "dev-master"
},
"require-dev": {
"wp-coding-standards/wpcs": "2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.0",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"sirbrillig/phpcs-variable-analysis": "2.8",
"phpunit/phpunit": "5.*",
"wp-cli/wp-cli": "^2.4",
"wp-cli/i18n-command": "^2.2"
},
"scripts": {
"test:php:unit": [
"\"./vendor/bin/phpunit\""
],
"test:php:unit:quick": [
"WP_TESTS_SKIP_INSTALL=1 \"./vendor/bin/phpunit\""
],
"phpcs": [
"phpcs"
],
"phpcs:strict": [
"phpcs --warning-severity=0 -s --ignore-annotations --extensions=php,html ."
],
"phpcbf": [
"phpcbf"
],
"makepot-audit": [
"wp i18n make-pot . --slug=hrt"
],
"makepot": [
"\"vendor/bin/wp\" i18n make-pot . ./i18n/languages/hrt.pot --include=\"assets/js/build/hrt-backend.0.1.0.min.js,assets/js/build/hrt-backend.js,includes\""
]
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standard with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automattically with PHP Code Beautifier",
"makepot-audit": "Generate langauges/wp-plugin-starter.pot file and run audit",
"makepot": "Generate langauges/wp-plugin-starter.pot file"
}
}
}

View File

@@ -0,0 +1,630 @@
# Copyright (C) 2021 Krishna Suwal
# This file is distributed under the GNU General Public License v3.0.
msgid ""
msgstr ""
"Project-Id-Version: HTTP Requests Tracker 0.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/http-requests-tracker\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-02T11:56:56+05:45\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: hrt\n"
#. Plugin Name of the plugin
#: build/includes/AdminMenu.php:46
#: build/includes/AdminMenu.php:47
#: includes/AdminMenu.php:46
#: includes/AdminMenu.php:47
msgid "HTTP Requests Tracker"
msgstr ""
#. Plugin URI of the plugin
msgid "https://krishna-suwal.github.io/http-requests-tracker"
msgstr ""
#. Description of the plugin
msgid "Track http requests."
msgstr ""
#. Author of the plugin
msgid "Krishna Suwal"
msgstr ""
#. Author URI of the plugin
msgid "https://github.com/krishna-suwal"
msgstr ""
#: build/includes/AdminMenu.php:57
#: build/includes/AdminMenu.php:58
#: includes/AdminMenu.php:57
#: includes/AdminMenu.php:58
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Stats"
msgstr ""
#: build/includes/AdminMenu.php:66
#: build/includes/AdminMenu.php:67
#: includes/AdminMenu.php:66
#: includes/AdminMenu.php:67
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Schemes"
msgstr ""
#: build/includes/AdminMenu.php:75
#: build/includes/AdminMenu.php:76
#: build/includes/HTTPRequestsTracker.php:152
#: includes/AdminMenu.php:75
#: includes/AdminMenu.php:76
#: includes/HTTPRequestsTracker.php:152
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Settings"
msgstr ""
#. translators: %1$s: Regular Expression, %2$s URL
#. translators: %1$s: Regular Expression, %2$s URL
#: build/includes/DBLogger.php:72
#: includes/DBLogger.php:72
msgid "Matched with regex \"%1$s\" > %2$s"
msgstr ""
#. translators: %s: URL
#. translators: %s: URL
#: build/includes/DBLogger.php:76
#: includes/DBLogger.php:76
msgid "Matched with absolute URL \"%s\""
msgstr ""
#. translators: %1$s: Relative URL, %2$s URL
#. translators: %1$s: Relative URL, %2$s URL
#: build/includes/DBLogger.php:80
#: includes/DBLogger.php:80
msgid "Matched with relative URL \"%1$s\" > %2$s"
msgstr ""
#: build/includes/DBLogger.php:87
#: includes/DBLogger.php:87
msgid "Ajax request log"
msgstr ""
#. translators: %s: URL
#. translators: %s: URL
#: build/includes/DBLogger.php:91
#: includes/DBLogger.php:91
msgid "Search query request log > %s"
msgstr ""
#. translators: %s: URL
#. translators: %s: URL
#: build/includes/DBLogger.php:95
#: includes/DBLogger.php:95
msgid "Front page request log > %s"
msgstr ""
#. translators: %s: URL
#. translators: %s: URL
#: build/includes/DBLogger.php:99
#: includes/DBLogger.php:99
msgid "Blog homepage request log > %s"
msgstr ""
#. translators: %s: URL
#. translators: %s: URL
#: build/includes/DBLogger.php:103
#: includes/DBLogger.php:103
msgid "Feed query request log > %s"
msgstr ""
#. translators: %s: URL
#. translators: %s: URL
#: build/includes/DBLogger.php:107
#: includes/DBLogger.php:107
msgid "Heartbeat request log > %s"
msgstr ""
#: build/includes/Helpers/UrlSchemeHelpers.php:64
#: includes/Helpers/UrlSchemeHelpers.php:64
msgid "Scheme type could not be found!"
msgstr ""
#: build/includes/Helpers/UrlSchemeHelpers.php:68
#: includes/Helpers/UrlSchemeHelpers.php:68
msgid "Invalid scheme object! It must extend the abstract class HRT\\UrlSchemes\\UrlScheme"
msgstr ""
#: build/includes/HTTPRequestsTracker.php:117
#: includes/HTTPRequestsTracker.php:117
msgid "Docs"
msgstr ""
#: build/includes/HTTPRequestsTracker.php:118
#: includes/HTTPRequestsTracker.php:118
msgid "View hrt documentation"
msgstr ""
#: build/includes/HTTPRequestsTracker.php:122
#: includes/HTTPRequestsTracker.php:122
msgid "Community Support"
msgstr ""
#: build/includes/HTTPRequestsTracker.php:123
#: includes/HTTPRequestsTracker.php:123
msgid "Visit community forums"
msgstr ""
#: build/includes/HTTPRequestsTracker.php:153
#: includes/HTTPRequestsTracker.php:153
msgid "View hrt settings"
msgstr ""
#: build/includes/Models/Setting.php:127
#: build/includes/RestAPI/Routes/LogsRoutes.php:74
#: build/includes/RestAPI/Routes/StatsRoutes.php:29
#: build/includes/ScriptStyle.php:99
#: includes/Models/Setting.php:127
#: includes/RestAPI/Routes/LogsRoutes.php:74
#: includes/RestAPI/Routes/StatsRoutes.php:29
#: includes/ScriptStyle.php:99
msgid "Guest User"
msgstr ""
#: build/includes/Permissions/CorePermissions.php:38
#: build/includes/Permissions/CorePermissions.php:105
#: includes/Permissions/CorePermissions.php:38
#: includes/Permissions/CorePermissions.php:105
msgid "User not logged in"
msgstr ""
#. translators: %s: Capability slug
#. translators: %s: Capability slug
#: build/includes/Permissions/CorePermissions.php:57
#: includes/Permissions/CorePermissions.php:57
msgid "User does not have capability '%s'"
msgstr ""
#. translators: %s: Capability slug
#. translators: %s: Capability slug
#: build/includes/Permissions/CorePermissions.php:86
#: includes/Permissions/CorePermissions.php:86
msgid "User does not have capabilities: %s"
msgstr ""
#. translators: %s: Role slug
#. translators: %s: Role slug
#: build/includes/Permissions/CorePermissions.php:111
#: includes/Permissions/CorePermissions.php:111
msgid "User does not have role '%s'"
msgstr ""
#: build/includes/RestAPI/Routes/LogsRoutes.php:136
#: includes/RestAPI/Routes/LogsRoutes.php:136
msgid "Sorry, the spcefied log does not exist."
msgstr ""
#: build/includes/RestAPI/Routes/LogsRoutes.php:156
#: includes/RestAPI/Routes/LogsRoutes.php:156
msgid "Sorry, the spcefied log could not be deleted."
msgstr ""
#: build/includes/RestAPI/Routing/Route.php:207
#: includes/RestAPI/Routing/Route.php:207
msgid "Permission denied!."
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Something went wrong"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "404"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Oops - Page Not Found"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "We can not find the page you are looking for"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Back to Stats"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Saving..."
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Regular Expression"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Absolute URL"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Relative URL"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Predefined"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Ajax Requests"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Add Scheme"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Enable"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Title"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Untitled"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Type"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Please select a type"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "URL"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Pattern"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Predefined Type"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Add"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Cancel"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Edit Scheme"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Update"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Scheme not found!"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Go Back"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Relative Data"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Author"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Actions"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Nothing found."
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Are you sure? You can't restore this back"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Delete"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "This section is for developers for debugging purpose and not recommended to change it without understanding of the outcomes."
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Debug"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Use for plugin debugging"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Start tracking http requests"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Enable/Disable tracking of http requests"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Update Settings"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "General"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Developer"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "RegExp"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Ajax"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "All Types"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "All Users"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Filter"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Failed to fetch logs"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Failed to delete log"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Description"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Date"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "User"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "No logs found."
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Based on Types"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Logs Count"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Based on Users"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Logs"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Statistics"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Saved"
msgstr ""
#: assets/js/build/hrt-backend.0.1.0.min.js:1
#: assets/js/build/hrt-backend.js:1
#: build/assets/js/build/hrt-backend.0.1.0.min.js:1
#: build/assets/js/build/hrt-backend.js:1
msgid "Failed to update settings"
msgstr ""

View File

@@ -0,0 +1,407 @@
# Copyright (C) 2021 SlovenskoIT a.s.
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: ID-SK Demo data 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/idsk-demodata\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-01T15:19:20+02:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: idsk-demodata\n"
#. Plugin Name of the plugin
msgid "ID-SK Demo data"
msgstr ""
#. Description of the plugin
msgid "Import demo dát k ID-SK téme."
msgstr ""
#. Author of the plugin
msgid "SlovenskoIT a.s."
msgstr ""
#. Author URI of the plugin
msgid "https://slovenskoit.sk"
msgstr ""
#: idsk-demodata.php:30
msgid "Demo dáta - Import"
msgstr ""
#: idsk-demodata.php:31
msgid "Demo dáta"
msgstr ""
#: idsk-demodata.php:72
msgid "Import demo dát"
msgstr ""
#: idsk-demodata.php:77
msgid "Import stránok"
msgstr ""
#: idsk-demodata.php:78
msgid "Import widgetov"
msgstr ""
#: idsk-demodata.php:82
msgid "Všetky demo dáta už boli naimportované. Import môžete vykonať znova."
msgstr ""
#: idsk-demodata.php:86
msgid "Importované stránky"
msgstr ""
#: idsk-demodata.php:88
#: idsk-demodata.php:382
msgid "Prieskum spokojnosti"
msgstr ""
#: idsk-demodata.php:89
#: idsk-demodata.php:459
msgid "Spätná väzba na službu"
msgstr ""
#: idsk-demodata.php:90
#: idsk-demodata.php:469
#: idsk-demodata.php:534
msgid "Registrácia na podujatie"
msgstr ""
#: idsk-demodata.php:95
msgid "Importované widgety"
msgstr ""
#: idsk-demodata.php:97
#: idsk-demodata.php:547
#: idsk-demodata.php:567
msgid "Formulár - Našli ste na stránke chybu?"
msgstr ""
#: idsk-demodata.php:103
msgid "Pre správny import demo dát musíte mať povolené nasledujúce pluginy:"
msgstr ""
#: idsk-demodata.php:105
msgid "Contact Form 7"
msgstr ""
#: idsk-demodata.php:175
#: idsk-demodata.php:349
msgid "Formulár - prieskum spokojnosti"
msgstr ""
#: idsk-demodata.php:183
msgid "Cieľom tohto dotazníka je zistiť potreby a postrehy používateľov webu Ministerstva investícií, regionálneho rozvoja a informatizácie (Ďalej len \"MIRRI\")."
msgstr ""
#: idsk-demodata.php:186
msgid "Ďakujeme za súhlas s účasťou v tomto prieskume, pomáhate nám zlepšovať tento web. Vyplnenie tohto dotazníka Vám zaberie <strong>len 3 minúty.</strong>"
msgstr ""
#: idsk-demodata.php:189
msgid "Odpovede na všetky otázky sú dobrovoľné. Vaše odpovede na tento prieskum sú anonymné."
msgstr ""
#: idsk-demodata.php:198
#: idsk-demodata.php:350
msgid "Navštevujete web mirri.gov.sk z pracovných alebo súkromných dôvodov?"
msgstr ""
#: idsk-demodata.php:200
#: idsk-demodata.php:337
msgid "z pracovných dôvodov"
msgstr ""
#: idsk-demodata.php:200
#: idsk-demodata.php:340
msgid "zo súkromných dôvodov"
msgstr ""
#: idsk-demodata.php:206
#: idsk-demodata.php:353
msgid "Čo je vašou pracovnou náplňou?"
msgstr ""
#: idsk-demodata.php:209
#: idsk-demodata.php:214
#: idsk-demodata.php:231
#: idsk-demodata.php:236
#: idsk-demodata.php:272
#: idsk-demodata.php:277
#: idsk-demodata.php:293
#: idsk-demodata.php:298
#: idsk-demodata.php:411
msgid "Zostáva Vám 200 znakov"
msgstr ""
#: idsk-demodata.php:227
#: idsk-demodata.php:356
msgid "Popíšte, prečo ste dnes prišli na stránku www.mirri.gov.sk"
msgstr ""
#: idsk-demodata.php:229
#: idsk-demodata.php:291
msgid "Prosím neuvádzajte osobné ani finančné informácie, ako napr. svoje rodné číslo alebo údaje o kreditnej karte."
msgstr ""
#: idsk-demodata.php:245
#: idsk-demodata.php:359
msgid "Našli ste, čo ste hľadali?"
msgstr ""
#: idsk-demodata.php:247
#: idsk-demodata.php:265
msgid "Áno"
msgstr ""
#: idsk-demodata.php:247
#: idsk-demodata.php:265
msgid "Nie"
msgstr ""
#: idsk-demodata.php:247
msgid "Neviem / Zatiaľ nie"
msgstr ""
#: idsk-demodata.php:254
#: idsk-demodata.php:362
msgid "Ako by ste zhodnotil/a Vášu skúsenosť s návštevou stránky www.mirri.gov.sk?"
msgstr ""
#: idsk-demodata.php:256
#: idsk-demodata.php:402
msgid "Veľmi nespokojný"
msgstr ""
#: idsk-demodata.php:256
#: idsk-demodata.php:402
msgid "Nespokojný"
msgstr ""
#: idsk-demodata.php:256
#: idsk-demodata.php:402
msgid "Ani spokojný ani nespokojný"
msgstr ""
#: idsk-demodata.php:256
#: idsk-demodata.php:402
#: idsk-demodata.php:432
msgid "Spokojný"
msgstr ""
#: idsk-demodata.php:256
#: idsk-demodata.php:402
#: idsk-demodata.php:432
msgid "Veľmi spokojný"
msgstr ""
#: idsk-demodata.php:263
#: idsk-demodata.php:365
msgid "Hľadali ste už niekde inde to, čo potrebujete, ešte pred tým, ako ste sem prišli?"
msgstr ""
#: idsk-demodata.php:269
#: idsk-demodata.php:368
msgid "Kde ste hľadali?"
msgstr ""
#: idsk-demodata.php:289
#: idsk-demodata.php:371
msgid "Ak by ste nám chceli niečo odkázať, prosím, napíšte nám to sem."
msgstr ""
#: idsk-demodata.php:310
#: idsk-demodata.php:325
#: idsk-demodata.php:422
msgid "Ďakujeme za spätnú väzbu."
msgstr ""
#: idsk-demodata.php:312
msgid "Späť na stránku mirri.gov.sk"
msgstr ""
#: idsk-demodata.php:316
msgid "Odísť"
msgstr ""
#: idsk-demodata.php:316
msgid "Späť"
msgstr ""
#: idsk-demodata.php:317
msgid "Začať"
msgstr ""
#: idsk-demodata.php:317
msgid "Ďalej"
msgstr ""
#: idsk-demodata.php:317
msgid "Odoslať odpovede"
msgstr ""
#: idsk-demodata.php:375
#: idsk-demodata.php:452
#: idsk-demodata.php:527
#: idsk-demodata.php:575
msgid "Tento e-mail bol odoslaný pomocou kontaktného formulára na stránke"
msgstr ""
#: idsk-demodata.php:392
#: idsk-demodata.php:444
msgid "Formulár - Spätná väzba na službu"
msgstr ""
#: idsk-demodata.php:397
msgid "Spätná väzba na službu Podávanie žiadosti o nenávratný príspevok na opravu bicykla"
msgstr ""
#: idsk-demodata.php:400
#: idsk-demodata.php:445
msgid "Ako ste spokojný so službou, ktorú ste práve využili?"
msgstr ""
#: idsk-demodata.php:405
#: idsk-demodata.php:448
msgid "Ako by sme mohli túto službu zlepšiť?"
msgstr ""
#: idsk-demodata.php:417
#: idsk-demodata.php:562
msgid "Odoslať"
msgstr ""
#: idsk-demodata.php:466
#: idsk-demodata.php:513
msgid "Formulár - Registrácia na podujatie"
msgstr ""
#: idsk-demodata.php:471
msgid "Meno"
msgstr ""
#: idsk-demodata.php:471
#: idsk-demodata.php:474
#: idsk-demodata.php:477
#: idsk-demodata.php:487
msgid "Chyba:"
msgstr ""
#: idsk-demodata.php:471
msgid "Zadajte meno."
msgstr ""
#: idsk-demodata.php:474
msgid "Priezvisko"
msgstr ""
#: idsk-demodata.php:474
msgid "Zadajte priezvisko."
msgstr ""
#: idsk-demodata.php:477
msgid "Emailová adresa"
msgstr ""
#: idsk-demodata.php:477
msgid "Sem zadajte emailovú adresu v tvare email@email.sk"
msgstr ""
#: idsk-demodata.php:477
msgid "Zadajte správnu emailovú adresu."
msgstr ""
#: idsk-demodata.php:480
msgid "Organizácia"
msgstr ""
#: idsk-demodata.php:483
msgid "Miesto konania podujatia"
msgstr ""
#: idsk-demodata.php:483
msgid "Bardejov"
msgstr ""
#: idsk-demodata.php:483
msgid "Košice"
msgstr ""
#: idsk-demodata.php:483
msgid "Bratislava"
msgstr ""
#: idsk-demodata.php:487
msgid "Prosím, akceptujte súhlas so spracovaním osobných údajov."
msgstr ""
#: idsk-demodata.php:490
msgid "Súhlasím so spracovaním osobných údajov za účelom účasti na podujatí."
msgstr ""
#: idsk-demodata.php:493
msgid "Registrovať na podujatie"
msgstr ""
#: idsk-demodata.php:496
msgid "Ďakujeme za registráciu na podujatie."
msgstr ""
#: idsk-demodata.php:514
msgid "Meno a priezvisko:"
msgstr ""
#: idsk-demodata.php:517
msgid "Emailová adresa:"
msgstr ""
#: idsk-demodata.php:520
msgid "Organizácia:"
msgstr ""
#: idsk-demodata.php:523
msgid "Miesto konania podujatia:"
msgstr ""
#: idsk-demodata.php:550
msgid "Aký typ chyby ste našli?"
msgstr ""
#: idsk-demodata.php:550
msgid "Validačná chyba"
msgstr ""
#: idsk-demodata.php:550
msgid "Gramatická chyba"
msgstr ""
#: idsk-demodata.php:550
msgid "Chyba responzivity"
msgstr ""
#: idsk-demodata.php:550
msgid "Chyba iná"
msgstr ""
#: idsk-demodata.php:555
msgid "Popíšte chybu bližšie"
msgstr ""
#: idsk-demodata.php:558
msgid "Zostáva Vám 350 znakov"
msgstr ""
#: idsk-demodata.php:568
msgid "Typ chyby:"
msgstr ""
#: idsk-demodata.php:571
msgid "Popis chyby:"
msgstr ""

View File

@@ -0,0 +1,70 @@
{
"name": "piggly/integracao-erede-por-piggly",
"description": "Gateway de pagamento e-Rede para compras em crédito e débito na sua loja Woocommerce.",
"type": "wordpress-plugin",
"homepage": "https://github.com/piggly-dev/integracao-erede-por-piggly",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"authors": [
{
"name": "Caique Araujo",
"email": "caique@piggly.com.br",
"homepage": "https://github.com/caiquearaujo",
"role": "Developer"
},
{
"name": "Piggly Lab",
"email": "dev@piggly.com.br",
"homepage": "https://github.com/piggly-dev",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Piggly\\WooERedeGateway\\": "src/"
},
"classmap": [
"libs"
]
},
"require": {
"php": ">=7.2",
"developersrede/erede-php": "^5.1",
"piggly/wordpress-starter-kit": "^1.0.6",
"monolog/monolog": "^2.3",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"php-stubs/woocommerce-stubs": "^5.6"
},
"scripts": {
"pre-install-cmd": "@create-libs-folder",
"pre-update-cmd": "@create-libs-folder",
"create-libs-folder": "npm run gulp composer:create_prefixed_folder",
"prefix-dependencies": [
"@composer --working-dir=php-scoper install",
"php-scoper/vendor/bin/php-scoper add-prefix --config=php-scoper/config.php --output-dir=./libs --force",
"npm run gulp composer:delete_prefixed_libraries",
"@composer dump-autoload --no-plugins"
],
"dev-composer-install": [
"@create-libs-folder",
"@composer install --prefer-dist --no-scripts",
"@prefix-dependencies"
],
"build": [
"@create-libs-folder",
"npm run gulp composer:delete_lock_and_vendor",
"composer install --no-ansi --no-dev --no-interaction --no-plugins --no-progress --no-scripts --optimize-autoloader",
"@prefix-dependencies"
]
},
"version": "1.0.0"
}

View File

@@ -0,0 +1,242 @@
msgid ""
msgstr ""
"Project-Id-Version: lamoud-pregnancy-calculator 1.0.0\n"
"POT-Creation-Date: 2021-10-03 14:41+0200\n"
"PO-Revision-Date: 2021-10-03 14:42+0200\n"
"Last-Translator: \n"
"Language-Team: info@lamoud.com\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
"X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_html__;esc_html_e;sprintf\n"
"X-Poedit-SearchPath-0: .\n"
#: includes/calc_form.php:5 includes/calc_form.php:10
msgid "Day is required"
msgstr "اليوم مطلوب"
#: includes/calc_form.php:17 includes/calc_form.php:22
msgid "Month is required"
msgstr "الشهر مطلوب"
#: includes/calc_form.php:29 includes/calc_form.php:34
msgid "Year is required"
msgstr "السنة مطلوبة"
#: includes/calc_form.php:58
msgid "Last menstrual period date:"
msgstr "تاريخ آخر دورة شهرية:"
#: includes/calc_form.php:64
msgid "Day"
msgstr "اليوم"
#: includes/calc_form.php:77
msgid "Month"
msgstr "الشهر"
#: includes/calc_form.php:90
msgid "Year"
msgstr "السنة"
#: includes/calc_form.php:99
msgid "CALC"
msgstr "إحسبي"
#: includes/lamoud_pergnancy_content.php:33
msgid "Saturday"
msgstr "السبت"
#: includes/lamoud_pergnancy_content.php:34
msgid "Sunday"
msgstr "الأحد"
#: includes/lamoud_pergnancy_content.php:35
msgid "Monday"
msgstr "الإثنين"
#: includes/lamoud_pergnancy_content.php:36
msgid "Tuesday"
msgstr "الثلاثاء"
#: includes/lamoud_pergnancy_content.php:37
msgid "Wednesday"
msgstr "الأربعاء"
#: includes/lamoud_pergnancy_content.php:38
msgid "Thursday"
msgstr "الخميس"
#: includes/lamoud_pergnancy_content.php:39
msgid "Friday"
msgstr "الجمعة"
#: includes/lamoud_pergnancy_content.php:43
msgid "January"
msgstr "يناير"
#: includes/lamoud_pergnancy_content.php:44
msgid "February"
msgstr "فبراير"
#: includes/lamoud_pergnancy_content.php:45
msgid "March"
msgstr "مارس"
#: includes/lamoud_pergnancy_content.php:46
msgid "April"
msgstr "أبريل"
#: includes/lamoud_pergnancy_content.php:47
msgid "May"
msgstr "مايو"
#: includes/lamoud_pergnancy_content.php:48
msgid "June"
msgstr "يونيو"
#: includes/lamoud_pergnancy_content.php:49
msgid "July"
msgstr "يوليو"
#: includes/lamoud_pergnancy_content.php:50
msgid "August"
msgstr "أغسطس"
#: includes/lamoud_pergnancy_content.php:51
msgid "September"
msgstr "سبتمبر"
#: includes/lamoud_pergnancy_content.php:52
msgid "October"
msgstr "أكتوبر"
#: includes/lamoud_pergnancy_content.php:53
msgid "November"
msgstr "نوفمبر"
#: includes/lamoud_pergnancy_content.php:54
msgid "December"
msgstr "ديسمبر"
#: includes/lamoud_pergnancy_content.php:65
#: includes/lamoud_pergnancy_content.php:72
#: includes/lamoud_pergnancy_content.php:79
msgid "Attention!"
msgstr "تنبيه!"
#: includes/lamoud_pergnancy_content.php:66
msgid ""
"You set a future date for the start of your last menstrual period, though! "
"The results will be displayed assuming that you are planning to become "
"pregnant at this time!"
msgstr ""
"لقد وضعتي تاريخاً مستقبلياً لبداية آخر دورة شهرية، مع ذلك! سيتم عرض النتائج "
"على اعتبار أنك تخططين للحمل في هذا الموعد!"
#: includes/lamoud_pergnancy_content.php:73
msgid ""
"Your due date has passed, however, don't worry ma'am, it's perfectly safe to "
"be two weeks late for your due date!"
msgstr ""
"لقد مر موعد الولادة الطبيعي، مع ذلك لا تقلقي سيدتي فمن الآمن تماماً أن تتأخري "
"عن موعدك الطبيعي بأسبوعين!"
#: includes/lamoud_pergnancy_content.php:80
msgid ""
"You entered a very old date for your last menstrual period. The maximum "
"duration of pregnancy is 9 months and two weeks!"
msgstr ""
"لقد أدخلتي تاريخاَ قديماً جداً لآخر دورة شهرية. أقصى مدة للحمل هي 9 أشهر "
"وأسبوعين!"
#: includes/lamoud_pergnancy_content.php:89
msgid "Pregnancy progress..."
msgstr "تقدم الحمل..."
#: includes/lamoud_pergnancy_content.php:96
msgid "Left "
msgstr "متبقي "
#: includes/lamoud_pergnancy_content.php:101
msgid "One month"
msgstr "شهر واحد"
#: includes/lamoud_pergnancy_content.php:105
msgid "Two months"
msgstr "شهرين"
#: includes/lamoud_pergnancy_content.php:109
msgid " months"
msgstr " شهور"
#: includes/lamoud_pergnancy_content.php:113
#: includes/lamoud_pergnancy_content.php:117
msgid " month"
msgstr " شهر"
#: includes/lamoud_pergnancy_content.php:120
msgid "and"
msgstr "و"
#: includes/lamoud_pergnancy_content.php:124
msgid "One day"
msgstr "يوم واحد"
#: includes/lamoud_pergnancy_content.php:128
msgid "Two days"
msgstr "يومين"
#: includes/lamoud_pergnancy_content.php:132
msgid " days"
msgstr " أيام"
#: includes/lamoud_pergnancy_content.php:136
#: includes/lamoud_pergnancy_content.php:140
msgid " day"
msgstr " يوم"
#: includes/lamoud_pergnancy_content.php:143
msgid " approximately"
msgstr " تقريباً"
#: includes/lamoud_pergnancy_content.php:146
msgid "Expected due date:"
msgstr "موعد الولادة المتوقع:"
#: includes/lamoud_pergnancy_content.php:156
msgid "stages of your pregnancy:"
msgstr "مراحل حملك:"
#: includes/lamoud_pergnancy_content.php:160
msgid "Your last cyle started on"
msgstr "بداية آخر دورة شهرية"
#: includes/lamoud_pergnancy_content.php:165
msgid "Estimated fertilization date"
msgstr "تاريخ الإخصاب المقدر"
#: includes/lamoud_pergnancy_content.php:170
msgid "1st Trimester"
msgstr "الثلث الأول من الحمل"
#: includes/lamoud_pergnancy_content.php:175
msgid "2nd Trimester"
msgstr "الثلث الثاني من الحمل"
#: includes/lamoud_pergnancy_content.php:180
msgid "3rd Trimester"
msgstr "الثلث الثالث من الحمل"
#: includes/lamoud_pergnancy_content.php:185
msgid "Your due date is"
msgstr "موعد الولادة المتوقع"
#: includes/lamoud_pergnancy_content.php:198
msgid "Re-calc"
msgstr "إحسبي مرة أخرى"

View File

@@ -0,0 +1,147 @@
# Copyright (C) 2021 Deep Web Solutions
# This file is distributed under the GPL-3.0+.
msgid ""
msgstr ""
"Project-Id-Version: Linked Orders for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://github.com/deep-web-solutions/woocommerce-plugins-linked-orders/"
"issues\n"
"POT-Creation-Date: 2021-10-25 09:56: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: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Country: United States\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:36
#. translators: 1. Component name, 2. Component version
msgid ""
"<strong>%1$s (%2$s)</strong> has encountered an error. Your environment "
"doesn't meet all of the system requirements listed below:"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:55
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:67
#. translators: PHP version
#. translators: WordPress version
msgid "You're running version %s"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-bootstrapper/src/templates/requirements-error.php:80
msgid ""
"If you need to upgrade your version of PHP you can ask your hosting company "
"for assistance, and if you need help upgrading WordPress you can refer to "
"<a href=\"https://wordpress.org/support/article/updating-wordpress/\" "
"target=\"_blank\">the Codex</a>."
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/InstallationFunctionality.php:169
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/InstallationFunctionality.php:217
#. translators: 1. Installation node name, 2. Error message.
msgid ""
"<strong>%1$s</strong> failed to complete the installation routine. The "
"error is: %2$s"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/InstallationFunctionality.php:225
msgid "<strong>%1$s</strong> was successfully updated."
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/InstallationFunctionality.php:225
msgid "<strong>%1$s</strong> was successfully installed."
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/initialization/error.php:36
#. translators: 1. Plugin name, 2. Plugin version, 3. Support email, 4. Support
#. website
msgid ""
"<strong>%1$s (v%2$s)</strong> initialization failed. Please contact us at "
"<strong><a href=\"mailto:%3$s\">%3$s</a></strong> or visit our <strong><a "
"href=\"%4$s\" target=\"_blank\">support website</a></strong> to get help. "
"Please include this error notice in your support query:"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:23
#. translators: 1. Plugin name, 2. Plugin version, 3. Name of the install
#. button
msgid ""
"<strong>%1$s (v%2$s)</strong> needs to run its installation routine before "
"it can be used. Please click the \"%3$s\" button to proceed:"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:27
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-original.php:36
#. translators: Name of the install button
msgid "Install"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:23
#. translators: 1. Plugin name, 2. Plugin version, 3. Name of the update button
msgid ""
"A data update is available for <strong>%1$s (v%2$s)</strong>. It is "
"recommended to backup your database before proceeding. Please click the "
"\"%3$s\" button when ready:"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:27
#: dependencies/deep-web-solutions/wp-framework-core/src/templates/installation/required-update.php:38
#. translators: Name of the update button
msgid "Update"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/CronEvents/CronIntervalsEnum.php:139
msgid "Every %s minutes"
msgstr ""
#: dependencies/deep-web-solutions/wp-framework-utilities/src/includes/CronEvents/CronIntervalsEnum.php:140
msgid "Every %s hours"
msgstr ""
#: src/templates/admin/composer-error.php:20
#. translators: %s: Plugin Name
msgid "It seems like <strong>%s</strong> is corrupted. Please reinstall!"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Linked Orders for WooCommerce"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://www.deep-web-solutions.com/plugins/linked-orders-for-woocommerce/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"A WooCommerce extension for creating orders that are logically connected to "
"existing ones."
msgstr ""
#. Author of the plugin/theme
msgid "Deep Web Solutions"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://www.deep-web-solutions.com"
msgstr ""
#: src/configs/settings.php:21
msgctxt "settings"
msgid "Yes"
msgstr ""
#: src/configs/settings.php:26
msgctxt "settings"
msgid "No"
msgstr ""

View File

@@ -0,0 +1,461 @@
# Copyright (C) 2021 Microsoft
# This file is distributed under the GPL v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Microsoft Start 1.6.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/microsoft-start\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-22T13:21:18+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
#. Plugin Name of the plugin
#: assets/js/dashboard.js:1
#: assets/js/editorSidebar.js:1
#: dashboard/settings/components/connection.jsx:52
msgid "Microsoft Start"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.msn.com/"
msgstr ""
#. Description of the plugin
msgid "Microsoft Start WordPress plugin to help WordPress content creators to share content to Microsoft Start News feed."
msgstr ""
#. Author of the plugin
msgid "Microsoft"
msgstr ""
#. Author URI of the plugin
msgid "https://www.microsoft.com/"
msgstr ""
#: dashboard/Dashboard.php:27
msgid "Publishing Dashboard"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/authentication.jsx:33
msgid "Grow your audience with Microsoft"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/authentication.jsx:34
msgid "You've been invited to join Microsoft Start Publishing program. With this new program, you can make your WordPress posts available to the millions of people who visit Microsoft Start every day."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/authentication.jsx:35
#: dashboard/content/components/authentication.jsx:50
#: dashboard/settings/components/connection.jsx:55
msgid "Connecting"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/authentication.jsx:35
msgid "Join now"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/authentication.jsx:48
msgid "You're disconnected, reconnect again."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/authentication.jsx:49
msgid "Your WordPress account has been disconnected from Microsoft Start Publishing."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/authentication.jsx:50
msgid "Reconnect"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/welcomeComponent.jsx:17
msgid "Congrats, "
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/welcomeComponent.jsx:19
msgid "We're happy to have you as part of the Microsoft Content Partner Network Program."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/welcomeComponent.jsx:20
msgid "Once your profile is approved you can start posting."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/content/components/welcomeComponent.jsx:30
msgid "Edit Profile"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:44
#: dashboard/settings/settings.jsx:16
msgid "Connection"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:45
msgid "Automatically share your WordPress posts with Microsoft Start Publishing. Sign in to your Microsoft account to get started."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:53
msgid "Share posts to your Microsoft Start feed"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:55
msgid "Connect"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:67
#: dashboard/settings/components/profile.jsx:18
msgid "Edit profile"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:70
msgid "Disconnect"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:79
msgid "Grow your reach and get paid while doing it. Connect to the power of the Microsoft Start network."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/connection.jsx:83
msgid "Get detailed performance insights."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/contentSettings.jsx:41
msgid "Settings saved."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/contentSettings.jsx:49
msgid "Something went wrong."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/contentSettings.jsx:54
msgid "Default publish setting:"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/contentSettings.jsx:56
msgid "These settings help Microsoft Start Publishing target your content to the right audiences. Configuring your default settings will save you time when publishing your content."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/contentSettings.jsx:61
msgid "Automatically publish new posts to Microsoft"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/contentSettings.jsx:68
msgid "Default category:"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/contentSettings.jsx:78
msgid "Save changes"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/profile.jsx:12
msgid "Profile"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/profile.jsx:13
msgid "Configure your profile in the Microsoft Start Publishing."
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/profile.jsx:22
msgid "Name"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/components/profile.jsx:27
msgid "Description"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/settings.jsx:22
#: dashboard/settings/settings.jsx:26
msgid "Account profile"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/settings/settings.jsx:32
#: dashboard/settings/settings.jsx:35
msgid "Content settings"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/dashboard.entry.jsx:24
msgid "Microsoft Start Publishing Dashboard"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/dashboard.entry.jsx:27
msgid "Microsoft Start Publishing"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/dashboard.entry.jsx:37
#: dashboard/dashboard.entry.jsx:67
msgid "Content"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/dashboard.entry.jsx:42
#: dashboard/dashboard.entry.jsx:45
#: dashboard/dashboard.entry.jsx:73
msgid "Monetization"
msgstr ""
#: assets/js/dashboard.js:1
#: dashboard/dashboard.entry.jsx:49
#: dashboard/dashboard.entry.jsx:79
msgid "Settings"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:53
msgid "Microsoft Start Publishing connection needs to setup before being used."
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:73
msgid "Share"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:80
msgid "Microsoft content settings"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:85
msgid "Content image"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:96
msgid "Category"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:111
msgid "Is local news"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:116
msgid "Location"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:126
#: postEditor/components/PostPublishPanel.jsx:13
msgid "View Post in Microsoft"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/components/newsPanelBody.jsx:134
msgid "Share this post to Microsoft Start"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/editorSidebar.entry.jsx:63
msgid "Push to Microsoft"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/editorSidebar.entry.jsx:66
msgid "Push block to Microsoft"
msgstr ""
#: assets/js/editorSidebar.js:1
#: postEditor/editorSidebar.entry.jsx:66
msgid "Do not push block to Microsoft "
msgstr ""
#: posts/status.js:19
msgid "Draft"
msgstr ""
#: posts/status.js:20
msgid "Under review"
msgstr ""
#: posts/status.js:21
msgid "Published"
msgstr ""
#: posts/status.js:22
msgid "Rejected"
msgstr ""
#: posts/status.js:23
msgid "Unpublished"
msgstr ""
#: posts/status.js:24
msgid "Not found"
msgstr ""
#: posts/status.js:25
msgid "Unknown"
msgstr ""
#: posts/status.js:29
msgid "Article length must be a minimum of 450 characters. Select 'edit' to add more text and republish."
msgstr ""
#: posts/status.js:30
#: posts/status.js:56
msgid "At least one hyperlink is broken. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:31
msgid "Document file size exceeds 524 kB. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:32
msgid "Maximum character count of 500K exceeded. Select 'edit' to shorten your post and republish."
msgstr ""
#: posts/status.js:33
msgid "Content source not approved for use."
msgstr ""
#: posts/status.js:34
msgid "At least one term or phrase promotes suicide or self-harm and doesn't meet our guidelines. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:35
msgid "Language mismatch. Select 'edit' to change the language setting and republish."
msgstr ""
#: posts/status.js:36
msgid "The title or article text is missing. Select 'edit' to add and republish."
msgstr ""
#: posts/status.js:37
msgid "At least one image doesn't meet our guidelines."
msgstr ""
#: posts/status.js:38
msgid "At least one image glamorizes the use of tobacco products and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:39
#: posts/status.js:43
msgid "At least one image is considered adult and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:40
#: posts/status.js:44
msgid "At least one image is considered graphic content and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:41
#: posts/status.js:45
msgid "At least one image is considered sexually suggestive and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:42
msgid "Image file size under 10 KB. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:46
msgid "At least one image contains profanity and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:47
msgid "At least one image shows a corpse and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:48
msgid "At least one image glamorizes drug use and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:49
msgid "At least one image glamorizes smoking and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:50
msgid "Content source hasn't been validated."
msgstr ""
#: posts/status.js:51
msgid "At least one image has potential copyright issues. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:52
msgid "Exception. Please try to re-publish the document again later."
msgstr ""
#: posts/status.js:53
msgid "May contain copyrighted material."
msgstr ""
#: posts/status.js:54
msgid "Featured image missing. Select 'edit' to add and republish."
msgstr ""
#: posts/status.js:55
msgid "Canonical URL is broken. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:57
msgid "Slideshows must have between 2 and 200 slides. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:58
msgid "At least one slide is missing an image. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:59
msgid "Exceeds daily posting limit."
msgstr ""
#: posts/status.js:60
msgid "At least one word is considered profanity and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:61
msgid "Video closed captioning missing. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:62
msgid "Video thumbnail needed. Select 'edit' to correct and republish."
msgstr ""
#: posts/status.js:63
msgid "At least one video is considered adult and doesn't meet our guidelines. Select 'edit' to remove or replace and republish."
msgstr ""
#: posts/status.js:88
msgid "Your post does not meet Microsoft Start Publishing Guidelines."
msgstr ""
#: posts/status.js:88
msgid "Reason(s):"
msgstr ""

View File

@@ -0,0 +1,947 @@
msgid ""
msgstr ""
"Project-Id-Version: MWB CF7 Integration with HubSpot 1.0.0\n"
"POT-Creation-Date: 2021-10-05 17:40+0530\n"
"PO-Revision-Date: 2021-10-05 17:40+0530\n"
"Last-Translator: \n"
"Language-Team: MakeWebBetter\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.6\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-mwb-cf7-integration-with-hubspot-admin.php:146
msgid "Back to feeds"
msgstr ""
#: admin/class-mwb-cf7-integration-with-hubspot-admin.php:148
msgid "Internal server error"
msgstr ""
#: admin/class-mwb-cf7-integration-with-hubspot-admin.php:312
#: admin/class-mwb-cf7-integration-with-hubspot-admin.php:488
#: mwb-cf7-integration-with-hubspot.php:74
msgid "MWB CF7 Integration with HubSpot"
msgstr ""
#: admin/class-mwb-cf7-integration-with-hubspot-admin.php:487
msgid "CF7 Integration with HubSpot"
msgstr ""
#: admin/class-mwb-cf7-integration-with-hubspot-admin.php:498
#, php-format
msgid ""
"%1$s is deactivated, Please Update the PRO version as this version is "
"outdated and will not work with the current %2$s Org version"
msgstr ""
#: admin/partials/setup-guide.php:20
msgid "Login"
msgstr ""
#: admin/partials/setup-guide.php:21
msgid " to your developer account."
msgstr ""
#: admin/partials/setup-guide.php:24
msgid ""
"Click on Manage apps to manage your existing app or to create a new one."
msgstr ""
#: admin/partials/setup-guide.php:27
msgid "Click on Create app. It will open a new tab."
msgstr ""
#: admin/partials/setup-guide.php:30
msgid ""
"Fill up mandatory informations like \"Public App Name\" on the app info tab"
msgstr ""
#: admin/partials/setup-guide.php:33
msgid ""
"The new app will be created and its credentials will be displayed on auth "
"info tab."
msgstr ""
#: admin/partials/setup-guide.php:40
#, php-format
msgid "Enter <strong> %s </strong> as Redirect URL."
msgstr ""
#: admin/partials/setup-guide.php:48
msgid ""
"Copy \"Client ID\" and \"Client secret\" from there and enter it in "
"Authentication form."
msgstr ""
#: admin/partials/setup-guide.php:52
msgid "Click on authorize button."
msgstr ""
#: admin/partials/setup-guide.php:55
msgid "It will redirect you to HubSpot login panel."
msgstr ""
#: admin/partials/setup-guide.php:58
msgid "Select the HubSpot portal you want to connect with."
msgstr ""
#: admin/partials/setup-guide.php:61
msgid ""
"After successful login, it will redirect you to consent page, where it will "
"ask your permissions to access the data."
msgstr ""
#: admin/partials/setup-guide.php:64
msgid ""
"Click on allow, it should redirect back to your plugin admin page and your "
"connection part is done."
msgstr ""
#: admin/partials/setup-guide.php:72
#, php-format
msgid ""
"Still facing issue! Please check detailed app setup <a href=\"%s\" target="
"\"_blank\" >documentation</a>."
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:32
msgid "May we have a little info about why you are deactivating?"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:42
msgid "Skip and Deactivate Now"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:34
msgid "Welcome to MakeWebBetter"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:35
msgid ""
"We love making new friends! Subscribe below and we promise to keep you up-to-"
"date with our latest new plugins, updates, awesome deals and a few special "
"offers."
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:45
msgid "Skip For Now"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:123
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:283
msgid "Success"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:142
msgid "Something went wrong!!"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:173
msgid "Something went wrong!! Please try reloading this page."
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:203
msgid "How to get the API keys?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:219
msgid "Something went wrong!! Please try again"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:226
msgid "Validation successful !! Redirecting..."
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:262
msgid "Something went wrong! Check your credentials and authorize again"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:273
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:80
#, php-format
msgid "Access token will expire in %1$s hours %2$s minutes."
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:278
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:86
msgid "Access token has expired."
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:340
msgid "No data found"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:353
msgid "Inavlid email"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:367
msgid "Settings saved successfully"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:548
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:572
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:613
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:698
msgid "Something went wrong, Refresh and try again."
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:734
msgid "No log data available"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-ajax-handler.php:810
msgid "Invalid form"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-onboarding.php:375
msgid "What is your monthly revenue?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-onboarding.php:392
msgid "What industry defines your business?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-onboarding.php:427
msgid "What is the best email address to contact you?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-onboarding.php:437
msgid "What is your contact number?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-onboarding.php:681
msgid "Select Any One Option..."
msgstr ""
#: includes/class-mwb-cf7-integration-with-hubspot-onboarding.php:954
msgid "Unexpected Error Occurred"
msgstr ""
#: mwb-cf7-integration-with-hubspot.php:73
#: mwb-crm-fw/templates/meta-boxes/select-form.php:31
msgid "Contact Form 7"
msgstr ""
#: mwb-cf7-integration-with-hubspot.php:82
#, php-format
msgid " %1$s is not activated, Please activate %1$s first to activate %2$s"
msgstr ""
#: mwb-cf7-integration-with-hubspot.php:187
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:304
msgid "Settings"
msgstr ""
#: mwb-cf7-integration-with-hubspot.php:208
msgid "Demo"
msgstr ""
#: mwb-cf7-integration-with-hubspot.php:209
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:148
msgid "Documentation"
msgstr ""
#: mwb-cf7-integration-with-hubspot.php:210
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:156
msgid "Support"
msgstr ""
#: mwb-crm-fw/api/class-mwb-cf7-integration-hubspot-api.php:472
msgid "Something went wrong"
msgstr ""
#: mwb-crm-fw/api/class-mwb-cf7-integration-hubspot-api.php:516
msgid "Error posting to CRM"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:150
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:166
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:302
msgid "Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:151
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:49
msgid "Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:152
msgid "Crm Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:153
msgid "Parent Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:154
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:32
msgid "All Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:155
msgid "View Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:156
msgid "Add New Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:157
msgid "Add New"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:158
msgid "Edit Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:159
msgid "Update Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:160
msgid "Search Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:161
msgid "Not Found"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:162
msgid "Not found in Trash"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:167
msgid "Feeds for crm"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:201
msgid "Feed details"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-feed-module.php:211
msgid "Conditional Statements"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:214
msgid "Matches exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:215
msgid "Does not match exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:216
msgid "Contains (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:217
msgid "Does not contain (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:218
msgid "Exist in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:219
msgid "Does not Exists in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:220
msgid "Starts with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:221
msgid "Does not start with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:222
msgid "Ends with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:223
msgid "Does not end with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:224
msgid "Less than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:225
msgid "Greater than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:226
msgid "Less than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:227
msgid "Greater than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:228
msgid "Equals (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:229
msgid "Is empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:230
msgid "Is not empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:244
msgid "Feed #"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-framework.php:291
msgid "Application is not connected to HubSpot"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:143
#, php-format
msgid "%s day"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:150
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:169
msgid "Activate"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:153
#, php-format
msgid ""
" the license key before %s or you may risk losing data and the plugin will "
"also become dysfunctional."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:165
msgid "Trail expired !! "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:172
msgid " your license and continue enjoying the pro version features."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:298
msgid "Dashboard"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:303
msgid "Logs"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:397
msgid "API Name : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:401
msgid "Type : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:407
msgid "Length : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:414
msgid "Options : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:421
msgid "Picklist Values : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:427
msgid "Required Field"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:436
msgid "Field Type"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:439
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:452
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:471
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:28
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:28
msgid "Select an Option"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:441
msgid "Standard Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:444
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:467
msgid "Custom Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:450
msgid "Field Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:508
msgid "Select Field"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:518
msgid "Select Condition"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:523
msgid "Enter value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:560
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:68
msgid "Form : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:564
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:72
msgid "Object : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:568
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:76
msgid "Primary Key : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:572
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:80
msgid "Conditions : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:573
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:81
msgid "Applied"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:577
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:86
msgid "Edit feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-hubspot-template-manager.php:580
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:90
msgid "Trash feed"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:22
msgid "Add New Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:52
msgid "Add Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/header.php:23
msgid "Hubspot"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/header.php:26
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:26
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:71
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:27
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:24
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:26
msgid "CF7"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:22
msgid "Condition Filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:33
msgid "Enable to add Conditional filters on form submission"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:51
msgid "Add \"AND\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:53
msgid "Trash"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:59
msgid "Add \"OR\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:22
msgid "Primary Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:49
msgid ""
"Please select a field which should be used as \"primary key\" to update an "
"existing record. \n"
"\t\t\t\t\t\tIn case of duplicate records"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-fields.php:21
msgid "Map Fields"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:23
msgid "Select CF7 Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:30
msgid "Select Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:29
msgid "Select HubSpot Object"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:37
msgid "Select Object"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:52
msgid "Refresh Objects"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:58
msgid "Refresh Fields"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:23
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:68
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:24
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:21
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:23
msgid "HubSpot"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:42
msgid "HubSpot Connection Status"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:46
msgid "Connected"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:58
#, php-format
msgid "Portal ID : %s"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:68
#, php-format
msgid "Account TimeZone : %s"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:91
msgid "Refresh Access Token"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:98
msgid "Reauthorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:101
msgid "Disconnect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:115
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:131
msgid "Synced Contact Forms"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:122
msgid ""
"Total number of Contact Form 7 data successfully synchronized over HubSpot."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:124
msgid "View log"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:145
msgid "Need any help ? Check our documentation."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:153
msgid "Facing any issue ? Open a support ticket."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:161
msgid "Need personalized solution, contact us !"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:164
msgid "Connect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:25
msgid "Getting started with CF7 and HubSpot"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:33
#, php-format
msgid ""
"With this CF7 HubSpot Integration you can easily sync all your Contact Form "
"7 Submissions data over HubSpot. It will create %1$s over HubSpot, based on "
"your Contact Form 7 Feed data."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:41
msgid "Connect your HubSpot account with CF7."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:46
msgid "Sync your data over HubSpot."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:52
msgid "Connect your Account."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:82
msgid "Enter your credentials here"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:90
msgid "Connection has been successful ! Validating ....."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:98
msgid "Use own app"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:102
msgid ""
"Enable this to use your own HubSpot app credentials to authorize with "
"HubSpot."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:116
msgid "Client ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:119
msgid "Enter Client ID from HubSpot"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:129
msgid "Enter Client ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:142
msgid "Client Secret"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:146
msgid "Enter Client Secret from HubSpot"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:156
msgid "Enter Client Secret"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:169
msgid "Scopes"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:173
msgid "Enter Scopes from HubSpot. "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:176
#, php-format
msgid ""
"Kindly select either of the following Scopes </br> 1. %1$s </br> or </br> 2. "
"%2$s. </br> And paste them here seperated by commas."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:197
msgid "Redirect URI"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:201
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:209
msgid ""
"Web-Protocol must be HTTPS in order to successfully authorize with HubSpot"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:220
msgid "Authorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:233
msgid "Dont have a HubSpot account yet . "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:235
msgid "Create A Free Account"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:239
msgid "Get Your Api Key here."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:240
msgid "Get Api Keys"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:243
msgid "Check app setup guide . "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:244
msgid "Show Me How"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:258
msgid ""
"Congrats! Youve successfully set up the MWB CF7 Integration with HubSpot "
"Plugin."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:269
msgid ""
"Now you can go to the dashboard and check connection data. You can create "
"your feeds, edit them in the feeds tab. If you do not see your data over "
"HubSpot, you can check the logs for any possible error."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:274
msgid "View Dashboard"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:31
msgid "Select CF7 form"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:64
msgid "Active"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:64
msgid "Sandbox"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:81
msgid "-"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:100
msgid "Add Feeds"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:30
msgid "Clear Log"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:35
msgid "Download"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:48
msgid "Expand"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:50
msgid "Feed ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:54
#, php-format
msgid "%s Object"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:60
#, php-format
msgid "%s ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:63
msgid "Event"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:64
msgid "Timestamp"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:65
msgid "Request"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:66
msgid "Response"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:73
msgid "Please enable the logs from "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:75
msgid "Settings tab"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:39
msgid "Enable logs"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:44
msgid "Enable logging of all the form data to be sent over HubSpot"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:57
msgid "Wipe Data"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:62
msgid "Enable to delete the plugin data on uninstallation"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:75
msgid "Sync Error Notification"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:80
msgid ""
"Enable this to receive email notification on errors while syncing data to "
"HubSpot"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:109
msgid "Delete logs after N days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:114
msgid "This will delete the logs data after N no. of days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:131
msgid "Save"
msgstr ""
#: public/class-mwb-cf7-integration-with-hubspot-public.php:462
#, php-format
msgid "Error While Posting CF7 form data over %s "
msgstr ""
#: public/class-mwb-cf7-integration-with-hubspot-public.php:487
#, php-format
msgid "MWB CF7 Integration with %s"
msgstr ""
#: public/partials/email-template.php:21 public/partials/email-template.php:27
msgid "Error - "
msgstr ""
#: public/partials/email-template.php:42
msgid "View Logs"
msgstr ""

View File

@@ -0,0 +1,932 @@
msgid ""
msgstr ""
"Project-Id-Version: MWB CF7 Integration with Keap 1.0.0\n"
"POT-Creation-Date: 2021-08-31 17:39+0530\n"
"PO-Revision-Date: 2021-08-31 17:39+0530\n"
"Language-Team: MakeWebBetter\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.6\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
"esc_html;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;"
"translate_nooped_plural\n"
"Last-Translator: \n"
"Language: en_US\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-mwb-cf7-integration-with-keap-admin.php:155
msgid "Back to feeds"
msgstr ""
#: admin/class-mwb-cf7-integration-with-keap-admin.php:157
msgid "Internal server error"
msgstr ""
#: admin/class-mwb-cf7-integration-with-keap-admin.php:308
#: admin/class-mwb-cf7-integration-with-keap-admin.php:487
#: mwb-cf7-integration-with-keap.php:73
#: public/class-mwb-cf7-integration-with-keap-public.php:506
msgid "MWB CF7 Integration with Keap"
msgstr ""
#: admin/class-mwb-cf7-integration-with-keap-admin.php:486
msgid "CF7 Integration with Keap"
msgstr ""
#: admin/class-mwb-cf7-integration-with-keap-admin.php:497
#, php-format
msgid ""
"%1$s is deactivated, Please Update the PRO version as this version is "
"outdated and will not work with the current %2$s Org version"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:32
msgid "May we have a little info about why you are deactivating?"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:42
msgid "Skip and Deactivate Now"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:34
msgid "Welcome to MakeWebBetter"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:35
msgid ""
"We love making new friends! Subscribe below and we promise to keep you up-to-"
"date with our latest new plugins, updates, awesome deals and a few special "
"offers."
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:45
msgid "Skip For Now"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:123
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:202
msgid "Success"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:142
msgid "Something went wrong!!"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:183
msgid "Something went wrong! Check your credentials and authorize again"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:197
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:69
msgid "Access token has expired."
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:259
msgid "No data found"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:272
msgid "Inavlid email"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:286
msgid "Settings saved successfully"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:504
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:528
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:571
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:656
msgid "Something went wrong, Refresh and try again."
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:692
msgid "No log data available"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-ajax-handler.php:770
msgid "Invalid form"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:349
msgid "$"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:375
msgid "What is your monthly revenue?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:392
msgid "What industry defines your business?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:427
msgid "What is the best email address to contact you?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:437
msgid "What is your contact number?"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:681
msgid "Select Any One Option..."
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:901
msgid "USD"
msgstr ""
#: includes/class-mwb-cf7-integration-with-keap-onboarding.php:952
msgid "Unexpected Error Occured"
msgstr ""
#: mwb-cf7-integration-with-keap.php:72
msgid "Contatc Form 7"
msgstr ""
#: mwb-cf7-integration-with-keap.php:81
#, php-format
msgid " %1$s is not activated, Please activate %1$s first to activate %2$s"
msgstr ""
#: mwb-cf7-integration-with-keap.php:186
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:310
msgid "Settings"
msgstr ""
#: mwb-cf7-integration-with-keap.php:208
msgid "Demo"
msgstr ""
#: mwb-cf7-integration-with-keap.php:209
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:128
msgid "Documentation"
msgstr ""
#: mwb-cf7-integration-with-keap.php:210
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:136
msgid "Support"
msgstr ""
#: mwb-crm-fw/api/class-mwb-cf7-integration-keap-api.php:519
msgid "Something went wrong"
msgstr ""
#: mwb-crm-fw/api/class-mwb-cf7-integration-keap-api.php:562
msgid "Error posting to CRM"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:150
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:166
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:308
msgid "Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:151
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:49
msgid "Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:152
msgid "Crm Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:153
msgid "Parent Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:154
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:32
msgid "All Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:155
msgid "View Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:156
msgid "Add New Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:157
msgid "Add New"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:158
msgid "Edit Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:159
msgid "Update Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:160
msgid "Search Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:161
msgid "Not Found"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:162
msgid "Not found in Trash"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:167
msgid "Feeds for crm"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:200
msgid "Feed details"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-feed-module.php:209
msgid "Conditional Statements"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:214
msgid "Matches exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:215
msgid "Does not match exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:216
msgid "Contains (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:217
msgid "Does not contain (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:218
msgid "Exist in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:219
msgid "Does not Exists in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:220
msgid "Starts with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:221
msgid "Does not start with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:222
msgid "Ends with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:223
msgid "Does not end with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:224
msgid "Less than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:225
msgid "Greater than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:226
msgid "Less than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:227
msgid "Greater than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:228
msgid "Equals (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:229
msgid "Is empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:230
msgid "Is not empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:244
msgid "Feed #"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-framework.php:291
msgid "Application is not connected to Keap"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:143
#, php-format
msgid "%s day"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:150
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:169
msgid "Activate"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:153
#, php-format
msgid ""
" the license key before %s or you may risk losing data and the plugin will "
"also become dysfunctional."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:165
msgid "Trail expried !! "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:172
msgid " your license and continue enjoying the pro version features."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:206
msgid "nav-tab-active"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:304
msgid "Dashboard"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:309
msgid "Logs"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:311
msgid "Overview"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:412
msgid "API Name : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:416
msgid "Type : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:421
msgid "Length : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:427
msgid "Options : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:433
msgid "Field : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:438
msgid "Required Field"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:447
msgid "Field Type"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:450
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:463
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:482
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:28
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:28
msgid "Select an Option"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:452
msgid "Standard Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:455
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:478
msgid "Custom Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:461
msgid "Field Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:519
msgid "Select Field"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:529
msgid "Select Condition"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:534
msgid "Enter value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:567
msgid "publish"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:571
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:67
msgid "Form : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:575
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:71
msgid "Object : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:579
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:75
msgid "Primary Key : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:583
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:79
msgid "Conditions : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:584
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:80
msgid "Applied"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:584
msgid "yes"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:588
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:85
msgid "Edit feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-cf7-integration-keap-template-manager.php:591
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:89
msgid "Trash feed"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:22
msgid "Add New Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:48
msgid "Add Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/header.php:23
msgid "Keap"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/header.php:26
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:28
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:80
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:27
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:24
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:26
msgid "CF7"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:22
msgid "Condition Filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:33
msgid "Enable to add Conditional filters on form submission"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:51
msgid "Add \"AND\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:53
msgid "Trash"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:59
msgid "Add \"OR\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:22
msgid "Primary Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:49
msgid ""
"Please select a field which should be used as \"primary key\" to update an "
"existing record. \n"
"\t\t\t\t\t\tIn case of duplicate records"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-fields.php:21
msgid "Map Fields"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:23
msgid "Select CF7 Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:30
msgid "Select Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:31
msgid "Contact Form 7"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:31
#, php-format
msgid "Select %s Object"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:41
msgid "Select Object"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:52
msgid "Refresh Objects"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:53
msgid "Refresh Fields"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:25
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:77
msgid "Insightly"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:44
msgid "Connection Status"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:48
msgid "Connected"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:63
#, php-format
msgid "Access token will expire in %1$s hours %2$s minutes."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:74
msgid "Refresh Access Token"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:81
#: mwb-crm-fw/templates/tab-contents/extras-tab.php:67
msgid "Reauthorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:84
msgid "Disconnect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:98
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:111
msgid "Synced Contact Forms"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:100
msgid "0"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:105
msgid ""
"Total number of Contact Form 7 submission data which are synced over "
"Salesforce CRM."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:106
msgid "View log"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:125
msgid "Need any help ? Check our documentation."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:133
msgid "Facing any issue ? Open a support ticket."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:141
msgid "Need personalized solution, contact us !"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:144
msgid "Connect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:32
#, php-format
msgid ""
"With this CF7 %1$s Integration you can easily sync all your CF7 Form "
"Submissions data over %2$s. It will create %3$s over %4$s CRM, based on your "
"CF7 Form Feed data."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:45
#, php-format
msgid "Connect your %s CRM account with CF7."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:54
#, php-format
msgid "Sync your data over %s CRM."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:62
msgid "Connect your Account."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:91
#: mwb-crm-fw/templates/tab-contents/extras-tab.php:31
msgid "Enter your api credentials here"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:101
#: mwb-crm-fw/templates/tab-contents/extras-tab.php:41
msgid "Client ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:109
#: mwb-crm-fw/templates/tab-contents/extras-tab.php:45
msgid "Enter your Client ID here"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:121
#: mwb-crm-fw/templates/tab-contents/extras-tab.php:53
msgid "Client Secret"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:129
#: mwb-crm-fw/templates/tab-contents/extras-tab.php:57
msgid "Enter your Client Secret here"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:143
msgid "Authorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:156
msgid "Dont have an account yet . "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:158
msgid "Create A Free Account"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:162
msgid "Get Your Api Key here."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:163
msgid "Get Api Keys"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:166
msgid "Check app setup guide . "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:167
msgid "Show Me How"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:183
#, php-format
msgid ""
"Congrats! Youve successfully set up the MWB CF7 Integration with %s Plugin."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:198
msgid ""
"Now you can go to the dashboard and check connection data. You can create "
"your feeds, edit them in the feeds tab. If you do not see your data over %S, "
"you can check the logs for any possible error."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:205
msgid "View Dashboard"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:24
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:21
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:23
msgid "Salesforce"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:31
msgid "Select CF7 form"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:63
msgid "Active"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:63
msgid "Sandbox"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:80
msgid "-"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:99
msgid "Add Feeds"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:30
msgid "Clear Log"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:35
msgid "Download"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:48
msgid "Expand"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:50
msgid "Feed ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:54
#, php-format
msgid "%s Object"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:60
#, php-format
msgid "%s ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:63
msgid "Event"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:64
msgid "Timestamp"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:65
msgid "Request"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:66
msgid "Response"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:73
msgid "Please enable the logs from "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:73
msgid "Settings tab"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:36
msgid "What is MWB CF7 Integration with Keap?"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:37
msgid ""
"MWB CF7 Integration with Keap plugin integrates your Keap account with CF7, "
"sending all data over Keap as per its available modules."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:40
msgid "What does MWB CF7 Integration with Keap do?"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:42
msgid "Smooth CF7 Integration With Your Keap Account."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:43
msgid "Easy CF7 Fields Association With Any Keap Module Fields."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:44
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:78
msgid "Filters CF7 Submissions According To User Input."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:45
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:89
msgid "Detailed Log Of CF7 Submission Sent To Keap."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:46
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:100
msgid "Primary Key To Update Existing Entry Over Keap."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:50
msgid "Salient Features of MWB CF7 Integration with Keap Plugin."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:56
msgid "Smooth CF7 Integration With Your Keap Account"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:58
msgid ""
"MWB CF7 Integration with Keap offers a smooth integration of both. The admin "
"can enter their Keap API credentials to integrate Contact Form 7 with their "
"Keap accounts."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:67
msgid "Easy CF7 Fields Association With Any Keap Module Fields"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:69
msgid ""
"Any Contact Form 7 field can be linked to any Keap module field. Any module "
"field like Contacts, Accounts, Leads, Quotes, Deals, Sales and Orders, "
"integrates perfectly with this plugin."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:80
msgid ""
"The admin can filter the Contact Form 7 submissions based on user input "
"using AND/OR logic. This logic will filter Contact Form 7 forms submissions "
"and send it Keap depending on user inputs."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:91
msgid ""
"MWB Keap Integration plugin will provide a detailed log of each Contact Form "
"7 sent to Keap as per the response from the Keap. There is logging of all "
"the API interaction with Keap for better error handling."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:102
msgid ""
"Suppose an entry made by the user already exists over Keap. In that case, "
"the admin can update it with the help of the “Primary key” provided."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:111
msgid "Error eMail Notification For Admin"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:113
msgid ""
"E-mail notifications are sent to the admin if any input error occurs in the "
"process of data sending entries over to Keap. This way, the admin gets "
"notified of any slight error in real-time."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:39
msgid "Enable logs"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:44
msgid "Enable logging of all the form data to be sent over salesforce"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:57
msgid "Plugin Data"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:62
msgid "Enable to delete the plugin data after uninstallation of plugin"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:75
msgid "Email notification"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:80
msgid "Enable email notification on errors while syncing data to Insightly"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:109
msgid "Delete logs after N days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:114
msgid "This will delete the logs data after N no. of days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:131
msgid "Save"
msgstr ""
#: public/class-mwb-cf7-integration-with-keap-public.php:482
#, php-format
msgid "Error While Posting CF7 form data over %s "
msgstr ""
#: public/partials/email-template.php:21 public/partials/email-template.php:27
msgid "Error - "
msgstr ""
#: public/partials/email-template.php:42
msgid "View Logs"
msgstr ""

View File

@@ -0,0 +1,906 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: MWB GF Integration with Engagebay 1.0.0\n"
"POT-Creation-Date: 2021-10-13 12:28+0530\n"
"PO-Revision-Date: 2021-10-11 13:23+0530\n"
"Last-Translator: \n"
"Language-Team: MakeWebBetter\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_x;_n;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
"esc_html__;esc_html_x;esc_html_e;_n_noop;_nx_noop;translate_nooped_plural\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:154
msgid "Back to feeds"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:160
msgid "Internal server error"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:162
msgid "How to get the API keys?"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:163
msgid "Ok"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:164
msgid "All fields are required."
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:165
msgid "Select a valid GF form!!"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:166
msgid "Please select a valid GF form"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:167
msgid "Select a valid Engagebay object and its corresponding field"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:168
msgid "Please select a form first"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:169
msgid "Process Complete"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:170
msgid "Opps..!!"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:171
msgid "Alert"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:172
#: mwb-crm-fw/api/class-mwb-gf-integration-engagebay-api-base.php:159
msgid "Something went wrong"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:173
msgid "Something went wrong!! Try reloading the page"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:174
msgid "Value must be Integer"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:175
msgid "Loading..."
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:176
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:36
msgid "Download"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:177
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:31
msgid "Clear Log"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:178
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:483
msgid "Enter value"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:179
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:66
msgid "Active"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:180
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:66
msgid "Sandbox"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:181
msgid "*Title field cant't be empty"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:182
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:468
msgid "Select Field"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:183
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:478
msgid "Select Condition"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:184
msgid "Rows per page"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:185
msgid "Please select a Engagebay Object first"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:321
msgid "No data found"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:339
msgid "Invalid email"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:354
msgid "Delete logs after N days must be greater than 7"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:369
msgid "Settings saved successfully"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:418
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:610
#: public/class-mwb-gf-integration-with-engagebay-public.php:482
msgid "MWB GF INTEGRATION WITH ENGAGEBAY"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:609
msgid "GF INTEGRATION WITH ENGAGEBAY"
msgstr ""
#: admin/class-mwb-gf-integration-with-engagebay-admin.php:620
#, php-format
msgid ""
"%1$s is deactivated, Please Update the PRO version as this version is "
"outdated and will not work with the current %2$s Org version"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:32
msgid "May we have a little info about why you are deactivating?"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:39
#: extra-templates/makewebbetter-onboarding-template-display.php:42
msgid "Send Us"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:42
msgid "Skip and Deactivate Now"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:34
msgid "Welcome to MakeWebBetter"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:35
msgid ""
"We love making new friends! Subscribe below and we promise to keep you up-to-"
"date with our latest new plugins, updates, awesome deals and a few special "
"offers."
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:45
msgid "Skip For Now"
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:20
msgid "Login to your EngageBay account."
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:23
msgid "Click on the user profile icon at the right top menu."
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:26
msgid "Click on Account Settings. It will open a new tab."
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:29
msgid "Click on API and Tracking Code tab."
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:32
msgid ""
"Copy \"REST API Key\" from there and enter it in your Authentication form."
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:35
msgid "How to get EngageBay base url?"
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:38
msgid "In Account Settings page click on Domain Settings tab."
msgstr ""
#: extra-templates/makewebbetter-setup-guide.php:41
msgid ""
"From General copy \"Domain Name\" field data along with \".engagebay.com\". "
"For example - domain.engagebay.com"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:114
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:648
msgid "Something went wrong!!"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:136
msgid "Success"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:175
msgid "Something went wrong!! Please try again"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:183
msgid "Validation successful !! Redirecting..."
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:190
msgid "API credentials are incorrect"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:363
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:403
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:488
msgid "Somthing went wrong, Refresh and try again."
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:534
msgid "No log data available"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-ajax-handler.php:610
msgid "Invalid form"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:224
msgid "Select All Suitable Options..."
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:362
msgid "What is your monthly revenue?"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:379
msgid "What industry defines your business?"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:414
msgid "What is the best email address to contact you?"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:424
msgid "What is your contact number?"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:521
msgid "It is a temporary deactivation. I am just debugging an issue."
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:522
msgid "The plugin broke my layout or some functionality."
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:523
msgid "The plugin is too complicated to configure."
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:524
msgid "I no longer need the plugin"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:525
msgid "I found a better plugin"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:526
msgid "Other"
msgstr ""
#: includes/class-mwb-gf-integration-with-engagebay-onboarding.php:945
msgid "Unexpected Error Occured"
msgstr ""
#: mwb-crm-fw/api/class-mwb-gf-integration-engagebay-api-base.php:199
msgid "Error posting to CRM"
msgstr ""
#: mwb-crm-fw/api/class-mwb-gf-integration-engagebay-api-base.php:680
msgid "An unexpected error occurred. Please try again."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-engagebay-framework.php:196
msgid "The file \""
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-engagebay-framework.php:196
msgid "\" does not exist."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:192
msgid "Matches exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:193
msgid "Does not match exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:194
msgid "Contains (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:195
msgid "Does not contain (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:196
msgid "Exist in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:197
msgid "Does not Exists in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:198
msgid "Starts with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:199
msgid "Does not start with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:200
msgid "Ends with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:201
msgid "Does not end with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:202
msgid "Less than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:203
msgid "Greater than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:204
msgid "Less than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:205
msgid "Greater than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:206
msgid "Equals (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:207
msgid "Is empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:208
msgid "Is not empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:262
msgid "Application is not connected to Engagebay CRM"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:150
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:166
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:269
msgid "Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:151
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:50
msgid "Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:152
msgid "Crm Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:153
msgid "Parent Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:154
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:32
msgid "All Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:155
msgid "View Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:156
msgid "Add New Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:157
msgid "Add New"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:158
msgid "Edit Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:159
msgid "Update Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:160
msgid "Search Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:161
msgid "Not Found"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:162
msgid "Not found in Trash"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:167
msgid "Feeds for crm"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:201
msgid "Feed details"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-feed-module.php:211
msgid "Conditional Statements"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:114
#, php-format
msgid "%s day"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:121
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:140
msgid "Activate"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:124
#, php-format
msgid ""
" the license key before %s or you may risk losing data and the plugin will "
"also become dysfunctional."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:136
msgid "Trial expired !! "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:143
msgid " your license and continue enjoying the pro version features."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:268
msgid "Dashboard"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:270
msgid "Logs"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:271
#: mwb-gf-integration-with-engagebay.php:136
msgid "Settings"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:362
msgid "API Name : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:366
msgid "Type : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:371
msgid "Options : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:376
msgid "Required Field"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:385
msgid "Field Type"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:388
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:401
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:420
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:28
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:28
msgid "Select an Option"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:390
msgid "Standard Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:393
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:416
msgid "Custom Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:399
msgid "Field Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:435
msgid "Note: "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:438
msgid ""
"This is a primary field for object, please select the correct field "
"otherwise cause error during syncing."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:524
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:70
msgid "Form : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:528
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:74
msgid "Object : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:532
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:78
msgid "Primary Key : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:536
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:82
msgid "Conditions : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:541
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:88
msgid "Edit feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-engagebay-template-manager.php:543
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:92
msgid "Trash feed"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:22
msgid "Add New Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:47
msgid "Add Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:22
msgid "Condition Filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:40
msgid "Add \"AND\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:42
msgid "Trash"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:48
msgid "Add \"OR\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:22
msgid "Primary Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:46
msgid ""
"Please select a field which should be used as \"primary key\" to update an "
"existing record. \n"
"\t\t\t\t\t\tIn case of duplicate records"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-fields.php:21
msgid "Map Fields"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:22
msgid "Select GF Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:29
msgid "Select Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:30
msgid "Gravity Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:28
msgid "Select Engagebay Object"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:35
msgid "Select Object"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:50
msgid "Refresh Fields"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:43
msgid "Connection Status"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:47
msgid "Connected"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:59
#, php-format
msgid "Account Owner : %s"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:67
msgid "Reauthorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:68
msgid "Disconnect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:81
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:93
msgid "Synced Gravity Forms"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:87
msgid ""
"Total number of Gravity Form submission data which are synced over Engagebay "
"CRM."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:88
msgid "View log"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:107
msgid "Need any help ? Check our documentation."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:110
#: mwb-gf-integration-with-engagebay.php:160
msgid "Documentation"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:115
msgid "Facing any issue ? Open a support ticket."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:118
#: mwb-gf-integration-with-engagebay.php:161
msgid "Support"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:123
msgid "Need personalized solution, contact us !"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:126
msgid "Connect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:26
msgid "Getting started with Gravity Forms and Engagebay"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:34
#, php-format
msgid ""
"With this GF %1$s Integration you can easily sync all your Gravity Form "
"Submissions data over %2$s. It will create %3$s over %4$s CRM, based on your "
"Gravity Form Feed data."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:47
#, php-format
msgid "Connect your %s CRM account with GF."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:56
#, php-format
msgid "Sync your data over %s."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:64
msgid "Connect your Account"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:95
msgid "Enter your credentials here"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:103
msgid "Authorization has been successful ! Validating Connection ....."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:110
msgid "Rest API Key"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:130
msgid "Engagebay Base Url"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:148
msgid "Authorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:161
msgid "Dont have an account yet. "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:162
msgid "Create A Free Account"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:165
msgid "Check app setup guide. "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:166
msgid "Show Me How"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:182
#, php-format
msgid ""
"Congrats! Youve successfully set up the MWB GF Integration with %s Plugin."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:197
#, php-format
msgid ""
"Now you can go to the dashboard and check for the synced data. You can "
"create your feeds, edit them in the feeds tab. If you do not see your data "
"over %s CRM, you can check the logs for any possible error."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:204
msgid "View Dashboard"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:31
msgid "Select GF form"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:83
msgid "-"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:83
msgid "Applied"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:102
msgid "Add Feeds"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:49
msgid "Expand"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:51
msgid "Feed ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:55
#, php-format
msgid "%s Object"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:61
#, php-format
msgid "%s ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:64
msgid "Event"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:65
msgid "Timestamp"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:66
msgid "Request"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:67
msgid "Response"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:74
msgid "Please enable the logs from "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:74
msgid "Settings tab"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:63
msgid "Enable logs"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:68
msgid "Enable logging of all the form data to be sent over Engagebay"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:81
msgid "Plugin Data"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:86
msgid "Enable to delete the plugin data after uninstallation of plugin"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:99
msgid "Email notification"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:104
msgid "Enable email notification on errors while syncing data to Engagebay"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:133
msgid "Delete logs after N days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:138
msgid "This will delete the logs data after N no. of days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:155
msgid "Save"
msgstr ""
#: mwb-gf-integration-with-engagebay.php:159
msgid "Demo"
msgstr ""
#: mwb-gf-integration-with-engagebay.php:232
#, php-format
msgid " %1$s is not activated, Please activate %1$s first to activate %2$s"
msgstr ""
#: public/class-mwb-gf-integration-with-engagebay-public.php:460
#, php-format
msgid "Error While Posting GF form data over %s "
msgstr ""
#: public/partials/email-template.php:21 public/partials/email-template.php:27
msgid "Error - "
msgstr ""
#: public/partials/email-template.php:42
msgid "View Logs"
msgstr ""

View File

@@ -0,0 +1,828 @@
msgid ""
msgstr ""
"Project-Id-Version: MWB GF Integration With Mautic 1.0.0\n"
"POT-Creation-Date: 2021-09-21 16:33+0530\n"
"PO-Revision-Date: 2021-09-21 16:33+0530\n"
"Last-Translator: \n"
"Language-Team: MakeWebBetter\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
"esc_html__;esc_html_e;esc_htnl_x;_n_noop;_nx_noop;translate_nooped_plural\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-mwb-gf-integration-with-mautic-admin.php:170
msgid "Back to feeds"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:176
msgid "Internal server error"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:410
msgid "No data found"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:428
msgid "Inavlid email"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:443
msgid "Delete logs after N days must be greater than 7"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:458
msgid "Settings saved successfully"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:508
#: admin/class-mwb-gf-integration-with-mautic-admin.php:706
#: public/class-mwb-gf-integration-with-mautic-public.php:476
msgid "MWB GF Integration with Mautic"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:706
msgid "GF Integration with Mautic"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:706
msgid ""
"is deactivated, Please Update the PRO version as this version is outdated "
"and will not work with the current"
msgstr ""
#: admin/class-mwb-gf-integration-with-mautic-admin.php:706
msgid "Free version."
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:32
msgid "May we have a little info about why you are deactivating?"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:39
#: extra-templates/makewebbetter-onboarding-template-display.php:42
msgid "Send Us"
msgstr ""
#: extra-templates/makewebbetter-deactivation-template-display.php:42
msgid "Skip and Deactivate Now"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:34
msgid "Welcome to MakeWebBetter"
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:35
msgid ""
"We love making new friends! Subscribe below and we promise to keep you up-to-"
"date with our latest new plugins, updates, awesome deals and a few special "
"offers."
msgstr ""
#: extra-templates/makewebbetter-onboarding-template-display.php:45
msgid "Skip For Now"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:105
msgid "Something went wrong!!"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:127
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:213
msgid "Success"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:202
msgid "Something went wrong! Check your credentials and authorize again"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:209
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:62
msgid "Last token expires in "
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:210
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:56
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:60
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:70
msgid "Connection Type "
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:386
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:410
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:459
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:556
msgid "Somthing went wrong, Refresh and try again."
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:592
msgid "No log data available"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-ajax-handler.php:682
msgid "Invalid form"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:343
msgid "What is your monthly revenue?"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:360
msgid "What industry defines your business?"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:395
msgid "What is the best email address to contact you?"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:405
msgid "What is your contact number?"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:502
msgid "It is a temporary deactivation. I am just debugging an issue."
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:503
msgid "The plugin broke my layout or some functionality."
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:504
msgid "The plugin is too complicated to configure."
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:505
msgid "I no longer need the plugin"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:506
msgid "I found a better plugin"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:507
msgid "Other"
msgstr ""
#: includes/class-mwb-gf-integration-with-mautic-onboarding.php:920
msgid "Unexpected Error Occured"
msgstr ""
#: mwb-crm-fw/api/class-mwb-gf-integration-mautic-api-base.php:618
msgid "Something went wrong"
msgstr ""
#: mwb-crm-fw/api/class-mwb-gf-integration-mautic-api-base.php:650
msgid "Error posting to CRM"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:191
msgid "Matches exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:192
msgid "Does not match exactly"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:193
msgid "Contains (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:194
msgid "Does not contain (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:195
msgid "Exist in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:196
msgid "Does not Exists in (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:197
msgid "Starts with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:198
msgid "Does not start with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:199
msgid "Ends with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:200
msgid "Does not end with (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:201
msgid "Less than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:202
msgid "Greater than (Text)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:203
msgid "Less than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:204
msgid "Greater than (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:205
msgid "Equals (Date/Time)"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:206
msgid "Is empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:207
msgid "Is not empty"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:208
msgid "Is only contains Numbers"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-connect-framework.php:209
msgid "Is only contains String"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:141
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:157
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:266
msgid "Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:142
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:54
msgid "Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:143
msgid "Crm Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:144
msgid "Parent Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:145
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:32
msgid "All Feeds"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:146
msgid "View Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:147
msgid "Add New Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:148
msgid "Add New"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:149
msgid "Edit Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:150
msgid "Update Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:151
msgid "Search Feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:152
msgid "Not Found"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:153
msgid "Not found in Trash"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:158
msgid "Feeds for crm"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:191
msgid "Feed details"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-feed-module.php:200
msgid "Conditional Statements"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:105
#, php-format
msgid "%s day"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:112
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:131
msgid "Activate"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:115
#, php-format
msgid ""
" the license key before %s or you may risk losing data and the plugin will "
"also become dysfunctional."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:127
msgid "Trail expried !! "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:134
msgid " your license and continue enjoying the pro version features."
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:265
msgid "Dashboard"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:267
msgid "Logs"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:268
#: mwb-gf-integration-with-mautic.php:135
msgid "Settings"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:372
msgid "Field Alias : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:375
msgid "Type : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:379
msgid "Picklist Values : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:385
msgid "Field Type"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:387
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:401
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:429
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:28
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:28
msgid "Select an Option"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:389
msgid "Standard Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:393
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:424
msgid "Custom Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:399
msgid "Field Value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:443
msgid "Map with woo order statuses"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:471
msgid "Select Field"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:481
msgid "Select Condition"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:486
msgid "Enter value"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:524
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:81
msgid "Form : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:528
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:85
msgid "Object : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:532
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:89
msgid "Conditions : "
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:537
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:94
msgid "Edit feed"
msgstr ""
#: mwb-crm-fw/framework/class-mwb-gf-integration-mautic-template-manager.php:539
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:96
msgid "Trash feed"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:22
msgid "Add New Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:50
msgid "Add Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/header.php:22
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:23
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:93
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:24
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:26
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:23
msgid "Mautic"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/header.php:25
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:26
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:96
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:27
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:29
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:26
msgid "GF"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:21
msgid "Condition Filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:39
msgid "Add \"AND\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:41
msgid "Trash"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/opt-in-condition.php:47
msgid "Add \"OR\" filter"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:22
msgid "Primary Field"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:51
msgid ""
"Please select a field which should be used as \"primary key\" to update an "
"existing record. \n"
"\t\t\t\t\t\tIn case of duplicate records"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-fields.php:21
msgid "Map Fields"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:22
#: mwb-crm-fw/templates/meta-boxes/select-form.php:29
msgid "Select Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-form.php:30
#: mwb-gf-integration-with-mautic.php:228
msgid "Gravity Form"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:22
#: mwb-crm-fw/templates/meta-boxes/select-object.php:29
msgid "Select Object"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:38
msgid "Refresh Objects"
msgstr ""
#: mwb-crm-fw/templates/meta-boxes/select-object.php:39
msgid "Refresh Fields"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:38
msgid "Connection Status"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:42
msgid "Connected"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:58
msgid "Access token has been expired."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:65
msgid "Refresh Access Token"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:79
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:90
msgid "Connected Instance : "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:99
msgid "Reauthorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:100
msgid "Disconnect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:113
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:126
msgid "Synced Gravity Forms"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:120
msgid ""
"Total number of Gravity Form submission data which are synced over Mautic."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:121
msgid "View log"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:140
msgid "Need any help ? Check our documentation."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:143
#: mwb-gf-integration-with-mautic.php:157
msgid "Documentation"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:148
msgid "Facing any issue ? Open a support ticket."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:151
#: mwb-gf-integration-with-mautic.php:158
msgid "Support"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:156
msgid "Need personalized solution, contact us !"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:159
msgid "Connect"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:37
#, php-format
msgid "Getting started with GF and %s"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:48
#, php-format
msgid ""
"With this GF %1$s Integration you can easily sync all your GF Form "
"Submissions data over %2$s. It will create %3$s over %4$s, based on your GF "
"Form Feed data."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:61
#, php-format
msgid "Connect your %s account with GF."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:70
#, php-format
msgid "Sync your data over %s."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:78
msgid "Connect your Account."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:107
msgid "Enter your credentials here"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:123
msgid "Authentication Type"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:132
msgid "--Select--"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:133
msgid "Basic"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:134
msgid "OAuth2"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:144
msgid "Client ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:164
msgid "User Name"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:181
msgid "Password"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:201
msgid "Client Secret ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:222
msgid "Mautic URL"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:239
msgid "Authorize"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:252
msgid "Dont have a Mautic account yet . "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:254
msgid "Click here to download"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:258
msgid "After downloading mautic ."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:259
msgid "see instructions to setup mautic on your server"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:262
msgid "Check app setup guide . "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:263
msgid "Show Me How"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:279
#, php-format
msgid ""
"Congrats! Youve successfully set up the MWB GF Integration with %s Plugin."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:294
#, php-format
msgid ""
"Now you can go to the dashboard and check connection data. You can create "
"your feeds, edit them in the feeds tab. If you do not see your data over %s, "
"you can check the logs for any possible error."
msgstr ""
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:301
msgid "View Dashboard"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:31
msgid "Select GF form"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:69
msgid "Active"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:73
msgid "Sandbox"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:105
msgid "Add Feeds"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:35
msgid "Clear Log"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:40
msgid "Download"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:53
msgid "Expand"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:55
msgid "Feed ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:56
msgid "Mautic Object"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:57
msgid "Mautic ID"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:58
msgid "Event"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:59
msgid "Timestamp"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:60
msgid "Request"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:61
msgid "Response"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:68
msgid "Please enable the logs from "
msgstr ""
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:68
msgid "Settings tab"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:63
msgid "Enable logs"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:68
msgid "Enable logging of all the form data to be sent over mautic"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:81
msgid "Plugin Data"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:86
msgid "Enable to delete the plugin data after uninstallation of plugin"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:99
msgid "Email notification"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:104
msgid "Enable email notification on errors"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:133
msgid "Delete logs after N days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:138
msgid "This will delete the logs data after N no. of days"
msgstr ""
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:155
msgid "Save"
msgstr ""
#: mwb-gf-integration-with-mautic.php:156
msgid "Demo"
msgstr ""
#: mwb-gf-integration-with-mautic.php:230
msgid " is not activated, Please activate Gravity Form first to activate "
msgstr ""
#: mwb-gf-integration-with-mautic.php:232
msgid " MWB GF Integration with Mautic"
msgstr ""
#: public/class-mwb-gf-integration-with-mautic-public.php:454
msgid "Error While Posting GF form data over Mautic"
msgstr ""
#: public/partials/email-template.php:21 public/partials/email-template.php:27
msgid "Error - "
msgstr ""
#: public/partials/email-template.php:42
msgid "View Logs"
msgstr ""

View File

@@ -0,0 +1,440 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: MWB PayPal Integration for WooCommerce 1.0.0\n"
"POT-Creation-Date: 2021-10-26 18:31+0530\n"
"PO-Revision-Date: 2021-10-11 19:35+0530\n"
"Last-Translator: \n"
"Language-Team: MakeWebBetter\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.6\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
"esc_html;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;"
"translate_nooped_plural\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-mwb-paypal-integration-for-woocommerce-admin.php:363
msgid "Id of some field is missing"
msgstr ""
#: admin/class-mwb-paypal-integration-for-woocommerce-admin.php:366
msgid "Settings saved !"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-admin-dashboard.php:36
#: mwb-paypal-integration-for-woocommerce.php:183
msgid "Documentation"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-admin-dashboard.php:38
#: mwb-paypal-integration-for-woocommerce.php:184
msgid "Support"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:33
msgid "Admin Hooks"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:35
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:70
msgid "Type of Hook"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:36
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:71
msgid "Hooks"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:37
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:72
msgid "Hooks description"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:46
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:81
msgid "Action Hook"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:50
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:85
msgid "Filter Hook"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:56
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:91
msgid "No Hooks Found"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:68
msgid "Public Hooks"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:105
msgid "Enable Tracking"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:107
msgid "Allow usage of this plugin to be tracked"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:112
msgid "YES"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:113
msgid "NO"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-developer.php:119
msgid "Save"
msgstr ""
#: admin/partials/mwb-paypal-integration-for-woocommerce-gateway-setting.php:20
msgid "Go to Gateway Setting"
msgstr ""
#: common/class-mwb-paypal-integration-for-woocommerce-common.php:67
msgid "copied"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:304
msgid "What is your monthly revenue?"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:323
msgid "What industry defines your business?"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:329
msgid "Industry Type"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:359
msgid "What is the best email address to contact you?"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:363
#: includes/paypal/mwb-paypal-gateway-fields.php:58
msgid "Email"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:371
msgid "What is your contact number?"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:376
msgid "Contact Number"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:488
#, php-format
msgid "Let us know why you are deactivating %s so we can improve the plugin"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:494
msgid "Reason"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce-onboarding-steps.php:733
msgid "Unexpected Error Occured"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce.php:333
msgid "PayPal Gateway Settings"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce.php:339
msgid "Developer"
msgstr ""
#: includes/class-mwb-paypal-integration-for-woocommerce.php:368
#, php-format
msgid ""
"Unable to locate file at location \"%s\". Some features may not work "
"properly in this plugin. Please contact us!"
msgstr ""
#: includes/paypal/class-mwb-paypal-requests.php:98
msgid "Unable to generate access token"
msgstr ""
#: includes/paypal/class-mwb-paypal-requests.php:173
msgid "Unable to create order"
msgstr ""
#: includes/paypal/class-mwb-paypal-requests.php:333
msgid "Unable to capture the payment : response"
msgstr ""
#: includes/paypal/class-mwb-paypal-requests.php:397
msgid "Error"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:36
msgid "Proceed to PayPal"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:37
msgid "Paypal Payment"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:38
msgid "Accept Payments from PayPal"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:90
msgid "IPN received from the PayPal"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:93
#, php-format
msgid "Order ID : %1$s , PayPal Txn ID : %2$s"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:104
#, php-format
msgid "payment completed txn ID : %s"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:141
msgid "Gateway disabled"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:141
msgid "PayPal Standard does not support your store currency."
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:171
msgid "Unable to proceed the refund process"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:175
msgid "Please enter the amount to refund"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:186
#, php-format
msgid "Refunded : %1$s from PayPal- Refund ID : %2$s"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:195
msgid "Unable to refund the amount from PayPal."
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:262
#, php-format
msgid ""
"order captured from PayPal for PayPal order ID : %s but waiting for Txn ID"
msgstr ""
#: includes/paypal/class-wc-gateway-mwb-paypal-integration.php:298
msgid "Payment error : Please choose another payment method."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:19
msgid "Enable/Disable"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:21
msgid "Enable PayPal Standard"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:25
msgid "Title"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:27
msgid "This controls the title which the user sees during checkout."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:28
msgid "PayPal"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:32
msgid "Description"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:35
msgid "This controls the description which the user sees during checkout."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:36
msgid ""
"Pay via PayPal; you can pay with your credit card if you don't have a PayPal "
"account."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:39
msgid "PayPal sandbox"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:41
msgid "Enable PayPal sandbox"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:44
#, php-format
msgid ""
"PayPal sandbox can be used to test payments. Sign up for a <a href=\"%s"
"\">developer account</a>."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:47
msgid "IPN email notifications"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:49
msgid "Enable IPN email notifications"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:53
#, php-format
msgid ""
"Send notifications when an IPN is received from PayPal indicating refunds, "
"chargebacks and cancellations. Please make sure to login your PayPal "
"business account navigate to %s <button class=\"mwb-ipn-url-copy-to-"
"clipboard\">Copy</button>"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:60
msgid "You will receive IPN email notifications on this mail."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:66
msgid "Invoice prefix"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:68
msgid ""
"Please enter a prefix for your invoice numbers. If you use your PayPal "
"account for multiple stores ensure this prefix is unique as PayPal will not "
"allow orders with the same invoice number."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:73
msgid "API credentials"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:77
#, php-format
msgid ""
"To get your API credentials please create a <a href=\"%1$s\" target=\"_blank"
"\">PayPal developer account</a>. Visit <a href=\"%2$s\" target=\"_blank\">My "
"Apps & Credentials</a> select the tab ( Sandbox or Live ), Create app and "
"get the below credentials."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:83
msgid "Client ID"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:85
msgid ""
"Please enter client ID here after following the above mentioned process."
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:91
msgid "Client secret"
msgstr ""
#: includes/paypal/mwb-paypal-gateway-fields.php:93
msgid ""
"Please enter client secret here after following the above mentioned process."
msgstr ""
#: index.php:14
msgid "oops looks like nothing is here"
msgstr ""
#: mwb-paypal-integration-for-woocommerce.php:96
#: mwb-paypal-integration-for-woocommerce.php:102
msgid "MWB PayPal Integration for WooCommerce"
msgstr ""
#: mwb-paypal-integration-for-woocommerce.php:168
msgid "Settings"
msgstr ""
#: mwb-paypal-integration-for-woocommerce.php:182
msgid "Demo"
msgstr ""
#: mwb-paypal-integration-for-woocommerce.php:236
msgid "Mwb PayPal Integration For WooCommerce"
msgstr ""
#: mwb-paypal-integration-for-woocommerce.php:237
msgid "WooCommerce"
msgstr ""
#: mwb-paypal-integration-for-woocommerce.php:240
#, php-format
msgid ""
"%1$s requires %2$s to function correctly. Please activate %2$s before "
"activating %1$s. For now, the plugin has been deactivated."
msgstr ""
#: onboarding/templates/mwb-paypal-integration-for-woocommerce-deactivation-template.php:45
msgid "May we have a little info about why you are deactivating?"
msgstr ""
#: onboarding/templates/mwb-paypal-integration-for-woocommerce-deactivation-template.php:63
msgid "Skip and Deactivate Now"
msgstr ""
#: onboarding/templates/mwb-paypal-integration-for-woocommerce-onboarding-template.php:35
msgid "Welcome to MakeWebBetter"
msgstr ""
#: onboarding/templates/mwb-paypal-integration-for-woocommerce-onboarding-template.php:36
msgid ""
"We love making new friends! Subscribe below and we promise to keep you up-to-"
"date with our latest new plugins, updates, awesome deals and a few special "
"offers."
msgstr ""
#: onboarding/templates/mwb-paypal-integration-for-woocommerce-onboarding-template.php:48
msgid "Skip For Now"
msgstr ""
#: src/App.js:29
msgid "General Settings"
msgstr ""
#: src/App.js:29
msgid "Final Step"
msgstr ""
#: src/App.js:43
msgid "Thanks for your details"
msgstr ""
#: src/App.js:45
msgid "Unknown stepIndex"
msgstr ""
#: src/App.js:102
msgid "Welcome to Makewebbetter"
msgstr ""
#: src/App.js:103
msgid "Complete The steps to get started"
msgstr ""
#: src/component/FinalStep.js:17
msgid ""
"This plugin can send a list of active plugins and theme used on your site."
"This allow our support team to help you much faster and to contact you in "
"advance about potentials compatibility problem and their solutions"
msgstr ""
#: src/component/FirstStep.js:16
msgid "Personal Detail"
msgstr ""

View File

@@ -0,0 +1,5 @@
# Changelog
## [1.0.0]
* Initial release!

View File

@@ -0,0 +1,430 @@
# Copyright (C) 2020 Awesome Motive
# This file is distributed under the GPL 2.0.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: MyBooking Templates Importer 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/one-click-demo-"
"import/\n"
"POT-Creation-Date: 2021-09-07 13:29+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"X-Generator: Loco https://localise.biz/\n"
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
"esc_html_x:1,2c;\n"
"Language: \n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Poedit-Country: United States\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
#: inc/MybookingTemplatesImport.php:365
msgid ""
"%1$s%3$sThat's it, all done!%4$s%2$sThe demo import has finished. Please "
"check your page and make sure that everything has imported correctly. If it "
"did, you can deactivate the %3$sMyBooking Templates Importer%4$s plugin, "
"because it has done its job.%5$s"
msgstr ""
#: inc/MybookingTemplatesImport.php:376
msgid ""
"%1$sThe demo import has finished, but there were some import errors.%2$sMore "
"details about the errors can be found in this %3$s%5$slog file%6$s%4$s%7$s"
msgstr ""
#: views/plugin-page.php:35
msgid ""
"%sWarning: your server is using %sPHP safe mode%s. This means that you might "
"experience server timeout errors.%s"
msgstr ""
#: inc/Helpers.php:306
msgid ""
"%sYour user role isn't high enough. You don't have permission to import demo "
"data.%s"
msgstr ""
#: views/plugin-page.php:133
msgid "All"
msgstr ""
#: inc/Helpers.php:177
msgid ""
"An error occurred while reading a file from your server! Tried reading file "
"from path: %s%s."
msgstr ""
#: inc/Helpers.php:224
msgid ""
"An error occurred while retrieving reading/writing permissions to your "
"server (could not retrieve WP filesystem credentials)!"
msgstr ""
#: inc/Helpers.php:143
msgid ""
"An error occurred while writing file to your server! Tried to write a file "
"to: %s%s."
msgstr ""
#: inc/MybookingTemplatesImport.php:191
msgid "Are you sure?"
msgstr ""
#: inc/WPCLICommands.php:71
msgid ""
"At least one of the possible options should be set! Check them with --help"
msgstr ""
#: inc/MybookingTemplatesImport.php:192
msgid "Cancel"
msgstr ""
#: inc/WPCLICommands.php:185
msgid "Content import file provided does not exist! Skipping this import!"
msgstr ""
#: inc/WPCLICommands.php:201
msgid "Content import finished!"
msgstr ""
#: inc/WPCLICommands.php:254
msgid "Customizer import file provided does not exist! Skipping this import!"
msgstr ""
#: inc/CustomizerImporter.php:43
msgid "Customizer settings import finished!"
msgstr ""
#: inc/WPCLICommands.php:263
msgid "Customizer settings imported successfully!"
msgstr ""
#: inc/WPCLICommands.php:148
msgid "Demo import files could not be retrieved!"
msgstr ""
#: inc/WPCLICommands.php:151
msgid "Demo import files retrieved successfully!"
msgstr ""
#: views/plugin-page.php:55
msgid "Elementor"
msgstr ""
#: inc/CustomizerImporter.php:73
msgid "Error: The customizer import file is missing! File path: %s"
msgstr ""
#: inc/CustomizerImporter.php:93
msgid ""
"Error: The customizer import file is not in a correct format. Please make "
"sure to use the correct customizer import file."
msgstr ""
#: inc/CustomizerImporter.php:99
msgid ""
"Error: The customizer import file is not suitable for current theme. You can "
"only import customizer settings for the same theme or a child theme."
msgstr ""
#: inc/WidgetImporter.php:118
msgid ""
"Error: Widget import data could not be read. Please try a different file."
msgstr ""
#: inc/WidgetImporter.php:88
msgid "Error: Widget import file could not be found."
msgstr ""
#: inc/WPCLICommands.php:286
msgid "Executing action: %s ..."
msgstr ""
#: inc/WPCLICommands.php:37
msgid "Here are the predefined demo imports:"
msgstr ""
#. Author URI of the plugin
msgid "https://mybooking.es"
msgstr ""
#. URI of the plugin
msgid "https://mybooking.es/"
msgstr ""
#: views/plugin-page.php:112 views/plugin-page.php:166
msgid "Import"
msgstr ""
#: inc/Helpers.php:212
msgid "Import Site Templates"
msgstr ""
#: inc/WidgetImporter.php:276
msgid "Imported"
msgstr ""
#: inc/WidgetImporter.php:280
msgid "Imported to Inactive"
msgstr ""
#: inc/WPCLICommands.php:196
msgid "Importing content"
msgstr ""
#: inc/WPCLICommands.php:194
msgid "Importing content (this might take a while)..."
msgstr ""
#: inc/CustomizerImporter.php:37 inc/CustomizerImporter.php:45
msgid "Importing customizer settings"
msgstr ""
#: inc/WPCLICommands.php:258
msgid "Importing customizer settings..."
msgstr ""
#: inc/ReduxImporter.php:32 inc/ReduxImporter.php:53 inc/ReduxImporter.php:66
msgid "Importing Redux settings"
msgstr ""
#: inc/WidgetImporter.php:40 inc/WidgetImporter.php:52
msgid "Importing widgets"
msgstr ""
#: inc/WPCLICommands.php:227
msgid "Importing widgets..."
msgstr ""
#: views/plugin-page.php:181
msgid "Importing, please wait!"
msgstr ""
#: inc/WPCLICommands.php:153
msgid "Importing..."
msgstr ""
#: views/plugin-page.php:50
msgid ""
"It creates the reservation process, contact, terms and conditions and legal "
"pages. It also setup the menus and the widgets to create a working site."
msgstr ""
#: views/plugin-page.php:59
msgid "MyBooking"
msgstr ""
#. Author of the plugin
msgid "mybooking"
msgstr ""
#: inc/MybookingTemplatesImport.php:138
msgid "Mybooking Importer"
msgstr ""
#: views/plugin-page.php:54
msgid "MyBooking Reservation Engine"
msgstr ""
#: inc/Helpers.php:211
msgid "MyBooking Templates Importer"
msgstr ""
#. Name of the plugin
#: inc/MybookingTemplatesImport.php:137 views/plugin-page.php:25
msgid "Mybooking Templates Importer"
msgstr ""
#: inc/Helpers.php:272
msgid "MyBooking Templates Importer - "
msgstr ""
#: inc/Importer.php:174
msgid "New AJAX call!"
msgstr ""
#: views/plugin-page.php:67
msgid ""
"No existing posts, pages, categories, images, custom post types or any other "
"data will be deleted or modified."
msgstr ""
#: inc/MybookingTemplatesImport.php:244
msgid "No import files specified!"
msgstr ""
#: inc/MybookingTemplatesImport.php:190
msgid "No preview image defined for this import."
msgstr ""
#: views/plugin-page.php:107 views/plugin-page.php:161
msgid "No preview image."
msgstr ""
#: inc/WidgetImporter.php:333
msgid "No results for widget import!"
msgstr ""
#: inc/WidgetImporter.php:286
msgid "No Title"
msgstr ""
#: views/plugin-page.php:69
msgid ""
"Please click on the Import button only once and wait, it can take a couple "
"of minutes."
msgstr ""
#: views/plugin-page.php:68
msgid ""
"Posts, pages, images, widgets, menus and other theme settings will get "
"imported."
msgstr ""
#: inc/WPCLICommands.php:135
msgid "Predefined demo import started! All other parameters will be ignored!"
msgstr ""
#: inc/WPCLICommands.php:173
msgid "Predefined import finished!"
msgstr ""
#: inc/WPCLICommands.php:143
msgid "Preparing the demo import files..."
msgstr ""
#: views/plugin-page.php:114 views/plugin-page.php:168
msgid "Preview"
msgstr ""
#: inc/ReduxImporter.php:51
msgid "Redux settings import for: %s finished successfully!"
msgstr ""
#: inc/MyBookingTemplateSites.php:16
msgid "Rent Selector with Elementor"
msgstr ""
#: views/plugin-page.php:52
msgid "Required plugins:"
msgstr ""
#: views/plugin-page.php:57
msgid "Required theme:"
msgstr ""
#. Description of the plugin
msgid ""
"Reservation templates importer for Mybooking theme and MyBooking Reservation "
"Engine. It allows to creating a renting or accomoodation website in minutes."
msgstr ""
#: views/plugin-page.php:140
msgid "Search demos..."
msgstr ""
#: views/plugin-page.php:83
msgid "Select one of the following templates:"
msgstr ""
#: inc/MybookingTemplatesImport.php:194
msgid "Selected demo import:"
msgstr ""
#: inc/WPCLICommands.php:140
msgid "Selected predefined demo import: %s"
msgstr ""
#: inc/WidgetImporter.php:157
msgid "Sidebar does not exist in theme (moving widget to Inactive)"
msgstr ""
#: inc/WidgetImporter.php:178
msgid "Site does not support widget"
msgstr ""
#: inc/WPCLICommands.php:122
msgid ""
"The \"predefined\" parameter should be a number (an index of the "
"MybookingTemplatesImporter predefined demo import)!"
msgstr ""
#: mybooking-templates-importer.php:57
#, php-format
msgid ""
"The %2$sMybooking Demo Import%3$s plugin requires %2$sPHP 7.2+%3$s to run "
"properly. Please contact your hosting company and ask them to update the PHP "
"version of your site to at least PHP 7.2.%4$s Your current version of PHP: "
"%2$s%1$s%3$s"
msgstr ""
#: inc/ReduxImporter.php:57
msgid ""
"The Redux option name: %s, was not found in this WP site, so it was not "
"imported!"
msgstr ""
#: inc/ReduxImporter.php:23
msgid "The Redux plugin is not activated, so the Redux import was skipped!"
msgstr ""
#: inc/WPCLICommands.php:128
msgid ""
"The supplied predefined index does not exist! Please take a look at the "
"available predefined demo imports:"
msgstr ""
#: inc/WPCLICommands.php:34
msgid "There are no predefined demo imports for currently active theme!"
msgstr ""
#: inc/WPCLICommands.php:266
msgid "There were some issues while importing customizer settings!"
msgstr ""
#: inc/WPCLICommands.php:204
msgid "There were some issues while importing the content!"
msgstr ""
#: inc/WPCLICommands.php:235
msgid "There were some issues while importing widgets!"
msgstr ""
#: inc/Helpers.php:200
msgid ""
"This WordPress page does not have %sdirect%s write file access. This plugin "
"needs it in order to save the demo import xml file to the upload directory "
"of your site. You can change this setting with these instructions: %s."
msgstr ""
#: views/plugin-page.php:64
msgid "When you import the data, the following things might happen:"
msgstr ""
#: inc/WidgetImporter.php:211
msgid "Widget already exists"
msgstr ""
#: inc/WPCLICommands.php:223
msgid "Widgets import file provided does not exist! Skipping this import!"
msgstr ""
#: inc/WPCLICommands.php:232
msgid "Widgets imported successfully!"
msgstr ""
#: inc/MybookingTemplatesImport.php:193
msgid "Yes, import!"
msgstr ""
#: inc/Helpers.php:232
msgid "Your WordPress login credentials don't allow to use WP_Filesystem!"
msgstr ""

View File

@@ -0,0 +1,36 @@
*** NoFraud Protection for WooCommerce Changelog ***
2021-09-29 - version 2.2.5
* Update - Update the plugin description.
2021-09-27 - version 2.2.4
* Update - Update the plugin description.
2021-09-24 - version 2.2.3
* Update - Update the plugin name to NoFraud Protection for WooCommerce.
2021-09-24 - version 2.2.2
* Fix - Handle get_sku() on bool error.
2021-09-24 - version 2.2.1
* Dev - Send out a custom hook when a new decision is received.
2021-09-23 - version 2.2.0
* Feature - Enable auto adding of device JavaScript code.
* Feature - Cancelling / refunding of order in WooCommerce will cancel the order in the portal.
* Update - Rename product slug from "woocommerce-nofraud" to "nofraud-protection".
2021-08-23 - version 2.1.2
* Feature - Added new dropdown select to allow merchant to select a different Order Status to transition to on NoFraud Decision "fail" and "Fraudulent".
2021-07-13 - version 2.1.1
* Dev - Updated code to be compliant to WooCommerce platform's lint requirements.
* Update - Updated Stripe library to latest.
* Dev - Tested WooCommerce platform to version 5.5.0.
2021-06-29 - version 2.1.0
* Feature - Load Device JavaScript on Card and Checkout pages for better fraud detection.
* Enhancement - On plugin settings page, validate NoFraud API Key.
2021-06-20 - version 2.0.0
* Feature - First official 2.0.0 release of NoFraud Protection for WooCommerce plugin.

View File

@@ -0,0 +1,20 @@
{
"name": "nofraud/nofraud-protection",
"version": "2.2.5",
"description": "NoFraud fraud detection service plugin for WooCommerce",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "NoFraud Engineering",
"email": "engineering@nofraud.com"
}
],
"require": {
"composer/installers": "~1.0",
"stripe/stripe-php": "~7.0",
"square/square": "10.0.0.20210421"
}
}

View File

@@ -0,0 +1,3 @@
== Changelog ==
= 1.0.0 =
* Initial release

View File

@@ -0,0 +1,531 @@
msgid ""
msgstr ""
"Project-Id-Version: One Click Checkout For WooCommerce 1.0.0\n"
"POT-Creation-Date: 2021-10-11 17:44+0530\n"
"PO-Revision-Date: 2021-10-11 17:44+0530\n"
"Last-Translator: \n"
"Language-Team: MakeWebBetter\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.6\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
"esc_html;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;"
"translate_nooped_plural\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-one-click-checkout-for-woocommerce-admin.php:160
#: one-click-checkout-for-woocommerce.php:158
#: one-click-checkout-for-woocommerce.php:164
#: one-click-checkout-for-woocommerce.php:287
msgid "One Click Checkout For WooCommerce"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:303
#: admin/class-one-click-checkout-for-woocommerce-admin.php:584
msgid "Settings saved !"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:318
msgid "Enable plugin"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:320
msgid "Enable plugin to start the functionality."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:325
#: admin/class-one-click-checkout-for-woocommerce-admin.php:512
#: admin/class-one-click-checkout-for-woocommerce-admin.php:524
msgid "YES"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:326
#: admin/class-one-click-checkout-for-woocommerce-admin.php:513
#: admin/class-one-click-checkout-for-woocommerce-admin.php:525
msgid "NO"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:331
msgid "Show Checkout Button On Shop Page"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:333
msgid "Show One-Click Checkout Button on Shop Page."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:337
#: admin/class-one-click-checkout-for-woocommerce-admin.php:347
#: admin/class-one-click-checkout-for-woocommerce-admin.php:500
msgid "Checkbox Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:341
msgid "Show Checkout Button On Single Page"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:343
msgid "Show One-Click Checkout Button On Single Page."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:351
msgid "Select Checkout Button Background Color"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:353
msgid "Select One-Click Checkout Button Background Color"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:357
#: admin/class-one-click-checkout-for-woocommerce-admin.php:367
#: admin/class-one-click-checkout-for-woocommerce-admin.php:434
msgid "Text Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:361
msgid "Select Checkout Button Text Color"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:363
msgid "Select One-Click Checkout Button Text Color"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:371
msgid "Enter Checkout Button Name"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:373
msgid "Enter One-Click Checkout Button Text."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:375
#: public/class-one-click-checkout-for-woocommerce-public.php:117
#: public/class-one-click-checkout-for-woocommerce-public.php:174
#: public/class-one-click-checkout-for-woocommerce-public.php:204
msgid "Buy Now"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:377
msgid "Enter Button Name"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:381
msgid "Select Time Frame For Cookies Save Data"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:384
msgid "Select Time Frame to save customer data within estimated time."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:391
msgid "Enter Number"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:399
#: admin/class-one-click-checkout-for-woocommerce-admin.php:474
msgid "Select option"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:400
msgid "Days"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:401
msgid "Weeks"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:402
msgid "Months"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:403
msgid "Years"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:412
#: admin/partials/one-click-checkout-for-woocommerce-product-option.php:174
msgid "Save Changes"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:428
msgid "Text Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:430
msgid "This is text field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:437
msgid "Number Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:439
msgid "This is number field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:446
msgid "Password Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:448
msgid "This is password field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:455
msgid "Textarea Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:457
msgid "This is textarea field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:463
msgid "Textarea Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:466
msgid "Select Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:468
msgid "This is select field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:472
msgid "Select Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:475
#: admin/class-one-click-checkout-for-woocommerce-admin.php:489
msgid "Rs."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:476
#: admin/class-one-click-checkout-for-woocommerce-admin.php:490
msgid "$"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:480
msgid "Multiselect Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:482
msgid "This is multiselect field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:488
msgid "Select currency code from options"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:494
msgid "Checkbox Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:496
msgid "This is checkbox field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:504
msgid "Radio Field Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:506
msgid "This is radio field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:510
msgid "Radio Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:517
msgid "Enable"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:519
msgid "This is switch field demo follow same structure for further use."
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:532
msgid "Button Demo"
msgstr ""
#: admin/class-one-click-checkout-for-woocommerce-admin.php:581
msgid "Id of some field is missing"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-admin-dashboard.php:30
#: one-click-checkout-for-woocommerce.php:245
msgid "Documentation"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-admin-dashboard.php:32
#: one-click-checkout-for-woocommerce.php:246
msgid "Support"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:33
msgid "Admin Hooks"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:35
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:70
msgid "Type of Hook"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:36
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:71
msgid "Hooks"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:37
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:72
msgid "Hooks description"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:46
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:81
msgid "Action Hook"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:50
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:85
msgid "Filter Hook"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:56
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:91
msgid "No Hooks Found"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-developer.php:68
msgid "Public Hooks"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-product-option.php:36
msgid "Include and Exclude Hidden Product"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-product-option.php:73
msgid "Include Products To Show One-Click Checkout Button"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-product-option.php:110
msgid "Exclude Products For Remove One-Click Checkout Button"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-product-option.php:147
msgid "Select Categories For Showing One-Click Checkout Button"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-system-status.php:30
msgid "WP Variables"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-system-status.php:31
msgid "WP Values"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-system-status.php:56
msgid "System Variables"
msgstr ""
#: admin/partials/one-click-checkout-for-woocommerce-system-status.php:57
msgid "System Values"
msgstr ""
#: common/class-one-click-checkout-for-woocommerce-common.php:74
msgid "Please Select Variation First"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:301
msgid "What is your monthly revenue?"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:320
msgid "What industry defines your business?"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:326
msgid "Industry Type"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:357
msgid "What is the best email address to contact you?"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:361
msgid "Email"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:369
msgid "What is your contact number?"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:374
msgid "Contact Number"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:485
msgid "Let us know why you are deactivating "
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:489
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:502
msgid "Reason"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:498
#, php-format
msgid " Let us know why you are deactivating %s so we can improve the plugin"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce-onboarding-steps.php:744
msgid "Unexpected Error Occured"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:350
msgid "General Setting"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:355
msgid "Product Options"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:360
msgid "System Status"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:365
msgid "Developer"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:394
#, php-format
msgid ""
"Unable to locate file at location \"%s\". Some features may not work "
"properly in this plugin. Please contact us!"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:452
msgid "N/A (phpversion function does not exist)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:461
msgid "N/A (make sure exec function is enabled)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:464
msgid "N/A (ABSPATH constant not defined)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:467
msgid "N/A (php_uname function does not exist)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:470
msgid "N/A (get_bloginfo function does not exist)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:473
msgid "N/A (get_option function does not exist)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:476
#: includes/class-one-click-checkout-for-woocommerce.php:479
#: includes/class-one-click-checkout-for-woocommerce.php:482
msgid "Yes"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:476
#: includes/class-one-click-checkout-for-woocommerce.php:479
#: includes/class-one-click-checkout-for-woocommerce.php:482
msgid "No"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:485
msgid "N/A (count_users function does not exist)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:488
msgid "0"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:491
#: includes/class-one-click-checkout-for-woocommerce.php:497
#: includes/class-one-click-checkout-for-woocommerce.php:500
#: includes/class-one-click-checkout-for-woocommerce.php:528
#: includes/class-one-click-checkout-for-woocommerce.php:531
msgid "N/A (ini_get function does not exist)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:494
msgid "N/A"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:512
msgid "N/A (gethostname function does not exist)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:515
#: includes/class-one-click-checkout-for-woocommerce.php:524
msgid "N/A (make sure exec is enabled)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:538
msgid "N/A (File data not set.)"
msgstr ""
#: includes/class-one-click-checkout-for-woocommerce.php:855
msgid "max="
msgstr ""
#: index.php:14
msgid "oops looks like nothing is here"
msgstr ""
#: onboarding/templates/one-click-checkout-for-woocommerce-deactivation-template.php:40
msgid "May we have a little info about why you are deactivating?"
msgstr ""
#: onboarding/templates/one-click-checkout-for-woocommerce-deactivation-template.php:53
msgid "Skip and Deactivate Now"
msgstr ""
#: onboarding/templates/one-click-checkout-for-woocommerce-onboarding-template.php:30
msgid "Welcome to MakeWebBetter"
msgstr ""
#: onboarding/templates/one-click-checkout-for-woocommerce-onboarding-template.php:31
msgid ""
"We love making new friends! Subscribe below and we promise to keep you up-to-"
"date with our latest new plugins, updates, awesome deals and a few special "
"offers."
msgstr ""
#: onboarding/templates/one-click-checkout-for-woocommerce-onboarding-template.php:43
msgid "Skip For Now"
msgstr ""
#: one-click-checkout-for-woocommerce.php:230
msgid "Settings"
msgstr ""
#: one-click-checkout-for-woocommerce.php:244
msgid "Demo"
msgstr ""
#: one-click-checkout-for-woocommerce.php:287
msgid "WooCommerce"
msgstr ""
#: one-click-checkout-for-woocommerce.php:287
msgid " is not activated, Please activate WooCommerce first to activate "
msgstr ""
#: one-click-checkout-for-woocommerce.php:287
msgid "."
msgstr ""

View File

@@ -0,0 +1,628 @@
# Copyright (C) 2021 Patchstack
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: Patchstack 2.1.7\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/patchstack\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-28T11:23:15+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: patchstack\n"
#. Plugin Name of the plugin
#. Author of the plugin
msgid "Patchstack"
msgstr ""
#. Plugin URI of the plugin
msgid "https://patchstack.com"
msgstr ""
#. Description of the plugin
msgid "Patchstack identifies security vulnerabilities in WordPress plugins, themes, and core."
msgstr ""
#: includes/activation.php:140
msgid "Patchstack could not be activated due to a conflict. See below for information regarding the conflict.<br />"
msgstr ""
#: includes/admin/general.php:61
msgid "The following file/folder could not be written to:<br />"
msgstr ""
#: includes/admin/menu.php:47
#: includes/admin/menu.php:141
#: includes/views/pages/license.php:74
msgid "Settings"
msgstr ""
#: includes/admin/menu.php:112
msgid "Sorry, there was a problem processing your request."
msgstr ""
#: includes/admin/options.php:152
msgid "Security Configurations"
msgstr ""
#: includes/admin/options.php:153
msgid "<hr style=\"height:1px;border:none;background-color: rgba(170, 189, 215, 0.1);\"><br /> reCAPTCHA<br /><span style=\"font-size: 13px; color: #d0d0d0;\">It should be noted that the reCAPTCHA feature only applies to WordPress its core features at this time. Not custom forms or of third party plugins.</span>"
msgstr ""
#: includes/admin/options.php:154
msgid "Firewall settings"
msgstr ""
#: includes/admin/options.php:156
msgid ".htaccess Features"
msgstr ""
#: includes/admin/options.php:158
msgid "Country Blocking"
msgstr ""
#: includes/admin/options.php:159
msgid "IP Whitelist &amp; Blacklist"
msgstr ""
#: includes/admin/options.php:160
msgid "Cookie Notice Settings"
msgstr ""
#: includes/admin/options.php:161
#: includes/views/pages/settings.php:75
msgid "Login Protection"
msgstr ""
#: includes/admin/options.php:162
msgid "<hr style=\"height:1px;border:none;background-color: rgba(170, 189, 215, 0.1);\"><br /> Two Factor Authentication"
msgstr ""
#: includes/admin/options.php:163
msgid "<hr style=\"height:1px;border:none;background-color: rgba(170, 189, 215, 0.1);\"><br /> Currently Blocked IP Addresses"
msgstr ""
#: includes/admin/options.php:164
msgid "<hr style=\"height:1px;border:none;background-color: rgba(170, 189, 215, 0.1);\"><br /> Whitelisted IP Addresses"
msgstr ""
#: includes/admin/options.php:168
msgid "Remove readme.html"
msgstr ""
#: includes/admin/options.php:169
msgid "Auto Update Software"
msgstr ""
#: includes/admin/options.php:171
msgid "Stop readme.txt Scans"
msgstr ""
#: includes/admin/options.php:172
msgid "Disable user enumeration"
msgstr ""
#: includes/admin/options.php:173
msgid "Hide WordPress version"
msgstr ""
#: includes/admin/options.php:174
msgid "Enable activity log"
msgstr ""
#: includes/admin/options.php:175
msgid "Log failed logins"
msgstr ""
#: includes/admin/options.php:176
msgid "Upload failed logins to Patchstack"
msgstr ""
#: includes/admin/options.php:177
msgid "Block Application Passwords"
msgstr ""
#: includes/admin/options.php:178
msgid "Restrict XML-RPC Access"
msgstr ""
#: includes/admin/options.php:179
msgid "Restrict WP REST API Access"
msgstr ""
#: includes/admin/options.php:180
msgid "Registration Email Blacklist"
msgstr ""
#: includes/admin/options.php:183
msgid "Post comments form"
msgstr ""
#: includes/admin/options.php:184
msgid "Login form"
msgstr ""
#: includes/admin/options.php:185
msgid "Registration form"
msgstr ""
#: includes/admin/options.php:186
msgid "Password reset form"
msgstr ""
#: includes/admin/options.php:188
msgid "Site Key "
msgstr ""
#: includes/admin/options.php:189
#: includes/views/2fa-profile-configuration.php:20
#: includes/views/2fa-profile-configuration.php:23
msgid "Secret Key"
msgstr ""
#: includes/admin/options.php:192
msgid "Enable firewall"
msgstr ""
#: includes/admin/options.php:193
msgid "Firewall user role whitelist"
msgstr ""
#: includes/admin/options.php:194
msgid "Country Blocking Enabled"
msgstr ""
#: includes/admin/options.php:195
msgid "Inversed Check"
msgstr ""
#: includes/admin/options.php:196
msgid "Countries To Block"
msgstr ""
#: includes/admin/options.php:198
msgid "IP Address Header Override"
msgstr ""
#: includes/admin/options.php:199
msgid "Disable .htaccess features"
msgstr ""
#: includes/admin/options.php:200
msgid "Add security headers"
msgstr ""
#: includes/admin/options.php:201
msgid "Prevent default WordPress file access"
msgstr ""
#: includes/admin/options.php:202
msgid "Block access to debug.log file"
msgstr ""
#: includes/admin/options.php:203
msgid "Disable index views"
msgstr ""
#: includes/admin/options.php:204
msgid "Forbid proxy comment posting"
msgstr ""
#: includes/admin/options.php:205
msgid "Prevent image hotlinking"
msgstr ""
#: includes/admin/options.php:206
msgid "Add custom .htaccess rules here"
msgstr ""
#: includes/admin/options.php:207
msgid "Custom .htaccess rules location"
msgstr ""
#: includes/admin/options.php:209
msgid "Block IP List"
msgstr ""
#: includes/admin/options.php:210
#: includes/admin/options.php:221
msgid "Whitelist"
msgstr ""
#: includes/admin/options.php:214
msgid "Move and rename login page"
msgstr ""
#: includes/admin/options.php:217
msgid "Automatic brute-force IP ban"
msgstr ""
#: includes/admin/options.php:218
msgid "Logon hours"
msgstr ""
#: includes/admin/options.php:219
msgid "Two Factor Authentication"
msgstr ""
#: includes/admin/options.php:220
msgid "Blocked"
msgstr ""
#: includes/admin/options.php:271
msgid "Select what needs to be automatically updated each time WordPress looks for updates in the background.<br />Keep in mind that if a plugin update contains a bug or a fatal error, it could break your site."
msgstr ""
#: includes/admin/options.php:276
msgid "If enabled and valid countries are specified to be blocked, will block these countries."
msgstr ""
#: includes/admin/options.php:281
msgid "If enabled, instead of checking if the country of the visitor is in the list, check if it is not in the list instead."
msgstr ""
#: includes/admin/options.php:286
msgid "Specify which countries should be blocked.<br />Note that this will also block any type of (legitimate) bot traffic coming from this country. IP to country resolution might also not be 100% accurate."
msgstr ""
#: includes/admin/options.php:299
msgid "Restrict access to xmlrpc.php by only allowing authenticated users to access it."
msgstr ""
#: includes/admin/options.php:304
msgid "Disables the application passwords feature introduced in WordPress 5.6."
msgstr ""
#: includes/admin/options.php:309
msgid "Restrict access to the WP Rest API by only allowing authenticated users to access it."
msgstr ""
#: includes/admin/options.php:314
msgid "<br /><br />Enter patterns here, seperated by commas, which email addresses we should block upon registration.<br />For example if you enter @badsite.com it will block all email addresses that contain @badsite.com."
msgstr ""
#: includes/admin/options.php:319
msgid "If enabled, every user action will be recorded and put to activity logs"
msgstr ""
#: includes/admin/options.php:324
msgid "If this is checked along with the activity logs, we will also log failed login attempts."
msgstr ""
#: includes/admin/options.php:329
msgid "If this is checked along with the failed login logger, we will also upload the failed login logs to Patchstack."
msgstr ""
#: includes/admin/options.php:334
msgid "Check this if you want to enable reCAPTCHA on post comments."
msgstr ""
#: includes/admin/options.php:339
msgid "Check this if you want to display \"Powered by Patchstack\""
msgstr ""
#: includes/admin/options.php:344
msgid "Check this if you want to enable cookie notice message."
msgstr ""
#: includes/admin/options.php:365
msgid "Check this if you want to enable policy link."
msgstr ""
#: includes/admin/options.php:395
msgid "Move login page to hide it from hackers and seekers."
msgstr ""
#: includes/admin/options.php:396
msgid "Hide wp-login and wp-admin page from attackers."
msgstr ""
#: includes/admin/options.php:407
msgid "Patchstack custom login page could not be activated due to your environment setup, it may be conflict with other plugin or specific .htaccess rules."
msgstr ""
#: includes/admin/options.php:416
msgid "Disable direct editing of themes or plugins code from WordPress admin view."
msgstr ""
#: includes/admin/options.php:421
msgid "Add security headers to the response by your webserver."
msgstr ""
#: includes/admin/options.php:426
msgid "This will attempt to stop basic readme.txt scans. These scans are generally used to determine the version of the installed software on the site."
msgstr ""
#: includes/admin/options.php:431
msgid "Disable user enumeration to block hackers from getting your usernames."
msgstr ""
#: includes/admin/options.php:436
msgid "Move wp-content folder into facebook.com folder and link to it in wp-config.php. saving settings after ticking this will take more time than usual. Just let it reload the page on its own and be patient."
msgstr ""
#: includes/admin/options.php:437
msgid "If this setting brakes your website then go to your server files through FTP, rename facebook.com folder to wp-content and erase Patchstack section from the top of wp-config.php file."
msgstr ""
#: includes/admin/options.php:442
msgid "Removes the WordPress version in the <meta> tag in the HTML output."
msgstr ""
#: includes/admin/options.php:447
msgid "Removes the readme.html file from the WordPress root folder."
msgstr ""
#: includes/admin/options.php:452
msgid "Prevent access to such files as license.txt, readme.html and wp-config-sample.php"
msgstr ""
#: includes/admin/options.php:457
msgid "Check this if you want to turn on the advanced firewall protection on your site."
msgstr ""
#: includes/admin/options.php:471
msgid "Against which user roles should the firewall not run against?<br />The firewall will always run against guests.<br />"
msgstr ""
#: includes/admin/options.php:476
msgid "Check this if you want to block known malicious connections."
msgstr ""
#: includes/admin/options.php:481
msgid "If you would like to override the IP address header that we use to grab the IP address of the visitor, enter the value here. This must be a valid value in the $_SERVER array, for example HTTP_X_FORWARDED_FOR. If the $_SERVER value you enter does not exist, it will fallback to the Patchstack IP grab function so ask your hosting company if you are unsure. Leave this empty to use the Patchstack IP address grabbing function."
msgstr ""
#: includes/admin/options.php:486
msgid "Check this if you want to stop us from writing to your .htaccess file. Note that the current changes to the .htaccess file will remain."
msgstr ""
#: includes/admin/options.php:491
msgid "Check this if you want to block access to the debug.log file that WordPress creates when debug logging is enabled."
msgstr ""
#: includes/admin/options.php:496
msgid "Check this if you want to disable directory and file listing."
msgstr ""
#: includes/admin/options.php:501
msgid "Check this if you want to forbid proxy comment posting."
msgstr ""
#: includes/admin/options.php:506
msgid "Check this if you want to automatically ban IP addresses that fail to login multiple times in a short span of time.<br />For this feature to work, make sure that \"Log failed logins\" is turned on at the hardening settings page."
msgstr ""
#: includes/admin/options.php:511
msgid "Check this if you want to enforce specific logon hours."
msgstr ""
#: includes/admin/options.php:516
msgid "Check this if you want to make it possible for users to enable two factor authentication (2FA) on their account."
msgstr ""
#: includes/admin/options.php:552
msgid "These are the IP addresses that are currently blocked because of too many failed login attempts.<br />These are not the IP addresses banned by the firewall itself.<br /><br />"
msgstr ""
#: includes/admin/options.php:563
msgid "Check this if you want to prevent hotlinking to images on your site."
msgstr ""
#: includes/admin/options.php:568
msgid "Add custom .htaccess rules here if you know what you are doing, otherwise you may break your site. So be careful."
msgstr ""
#: includes/admin/options.php:589
msgid "Check this if you want to enable reCAPTCHA on user login."
msgstr ""
#: includes/admin/options.php:594
msgid "Check this if you want to enable reCAPTCHA on registration."
msgstr ""
#: includes/admin/options.php:599
msgid "Check this if you want to enable reCAPTCHA on password reset."
msgstr ""
#: includes/admin/options.php:613
msgid "<br /><br />Enter the reCAPTCHA site key here.<br />Click <a href=\"https://docs.patchstack.com/technical-support-and-troubleshooting/plugin/how-to-get-the-site-and-secret-key-for-the-recaptcha-feature\" target=\"_blank\">here</a> for a guide on how to get the site / secret key."
msgstr ""
#: includes/admin/options.php:618
msgid "<br /><br />Enter the reCAPTCHA secret key here.<br />Click <a href=\"https://docs.patchstack.com/technical-support-and-troubleshooting/plugin/how-to-get-the-site-and-secret-key-for-the-recaptcha-feature\" target=\"_blank\">here</a> for a guide on how to get the site / secret key."
msgstr ""
#: includes/admin/options.php:629
msgid "<p>Each rule must be on a new line.<br /><br /><strong>The following keywords are accepted</strong><br />IP:IPADDRESS<br />PAYLOAD:someval<br />URL:/someurl<br /><br /><strong>Definitions</strong><br />IP = firewall will not run against the IP<br />PAYLOAD = if the entire payload contains the keyword, the firewall will not proceed<br />URL = if the URL contains given URL, firewall will not proceed<br /><br /><strong>Example</strong><br />IP:192.168.1.1<br />PAYLOAD:contact_form<br />URL:water<br />URL:/some-form<br /><br />In this scenario, the firewall will not run if the IP address is 192.168.1.1 or if the payload contains contact_form or if the URL contains water or if the URL contains /some-form.</p>"
msgstr ""
#: includes/api.php:87
msgid "API keys missing! Unable to obtain an access token."
msgstr ""
#: includes/api.php:113
#: includes/api.php:144
msgid "Unexpected error! Unable to obtain an access token."
msgstr ""
#: includes/events/posts.php:32
msgid "(no title)"
msgstr ""
#: includes/hardening.php:370
#: includes/hardening.php:389
msgid "An invalid email address has been supplied."
msgstr ""
#: includes/hide-login.php:78
msgid "New Login URL"
msgstr ""
#: includes/hide-login.php:278
msgid "Patchstack: Please upgrade to the latest version of WordPress to activate"
msgstr ""
#: includes/login.php:84
msgid "Please enter the 2FA authentication code that is generated on your device."
msgstr ""
#: includes/login.php:90
msgid "The 2FA authentication code you entered is invalid."
msgstr ""
#: includes/login.php:222
msgid "Access to the login page has been restricted due to set logon hours."
msgstr ""
#: includes/login.php:222
msgid "Login Disallowed"
msgstr ""
#: includes/login.php:288
msgid "You have entered an incorrect reCAPTCHA value."
msgstr ""
#: includes/login.php:320
msgid "You have entered an incorrect reCAPTCHA value. Refresh this page and try again."
msgstr ""
#: includes/views/2fa-login-form.php:8
msgid "2FA Code"
msgstr ""
#: includes/views/2fa-login-form.php:9
msgid "leave empty if no 2FA setup"
msgstr ""
#: includes/views/2fa-profile-configuration.php:7
msgid "Two Factor Authentication Configuration"
msgstr ""
#: includes/views/2fa-profile-configuration.php:11
#: includes/views/2fa-profile-configuration.php:14
msgid "Enable 2FA"
msgstr ""
#: includes/views/2fa-profile-configuration.php:15
msgid "Enable 2FA on your account."
msgstr ""
#: includes/views/2fa-profile-configuration.php:29
#: includes/views/2fa-profile-configuration.php:32
msgid "QR Code Image"
msgstr ""
#: includes/views/2fa-profile-configuration.php:34
msgid "Scan this image with your 2FA app."
msgstr ""
#: includes/views/access-denied.php:10
#: includes/views/access-denied.php:23
msgid "Access Denied"
msgstr ""
#: includes/views/access-denied.php:30
msgid "Error Code"
msgstr ""
#: includes/views/access-denied.php:31
msgid "This request has been blocked by <a href=\"%s\" target=\"_blank\">Patchstack</a> Web Application Firewall."
msgstr ""
#: includes/views/access-denied.php:32
msgid "If you are a legitimate user, contact the administrator of the site with above error code if this message persists."
msgstr ""
#: includes/views/access-denied.php:33
msgid "Return To Homepage"
msgstr ""
#: includes/views/pages/cookie-notice.php:15
#: includes/views/pages/firewall.php:15
#: includes/views/pages/hardening.php:15
#: includes/views/pages/login.php:15
msgid "Save settings"
msgstr ""
#: includes/views/pages/license-free.php:31
msgid "Set up Patchstack"
msgstr ""
#: includes/views/pages/license-free.php:35
msgid "See full list of Features"
msgstr ""
#: includes/views/pages/license-free.php:65
#: includes/views/pages/license.php:45
msgid "Activate"
msgstr ""
#: includes/views/pages/license-free.php:66
#: includes/views/pages/license.php:46
msgid "Go to App"
msgstr ""
#: includes/views/pages/license.php:92
msgid "Site ID"
msgstr ""
#: includes/views/pages/license.php:99
msgid "Site Secret Key"
msgstr ""
#: includes/views/pages/license.php:106
msgid "Status"
msgstr ""
#: includes/views/pages/license.php:114
msgid "Subscription Type"
msgstr ""
#: includes/views/pages/license.php:123
msgid "Save"
msgstr ""
#: includes/views/pages/logs.php:17
msgid "Firewall Log"
msgstr ""
#: includes/views/pages/logs.php:18
msgid "Activity Log"
msgstr ""
#: includes/views/pages/settings.php:32
msgid "Protect your sites from vulnerabilities"
msgstr ""
#: includes/views/pages/settings.php:49
msgid "Note that because this is a multisite/network environment, this settings page will define all default settings of all sites.<br />If you would like to change the settings of a specific site, visit the administration panel of the site in question. Click <a href=\""
msgstr ""
#: includes/views/pages/settings.php:51
msgid "Note that because this is a multisite/network environment, certain settings can only be managed by the super administrator of the WordPress network."
msgstr ""
#: includes/views/pages/settings.php:65
msgid "Hardening"
msgstr ""
#: includes/views/pages/settings.php:70
msgid "Firewall"
msgstr ""
#: includes/views/pages/settings.php:80
msgid "Cookie Notice"
msgstr ""
#: includes/views/pages/settings.php:86
msgid "Logs"
msgstr ""
#: includes/views/pages/settings.php:93
msgid "License"
msgstr ""

View File

@@ -0,0 +1,116 @@
*** PayGate PayWeb for WooCommerce Changelog ***
= 1.4.4 - 2021-08-31 =
* Add PayPal payment type.
* Move plugin to WordPress.org.
= 1.4.3 - 2021-05-13 =
* Tested on WooCommerce 5.3 and Wordpress 5.7.
* Add SnapScan payment type.
* Remove legacy reference to 'paypopup'.
* Fix error messaging on cancelled and declined transactions.
* Use pending status for checksum failures.
* Add cron job for query function on orders older than 60 minutes.
* Fixed incorrect order note on transaction declined for Notify method.
= 1.4.2 - 2021-01-18 =
* Tested on WooCommerce 4.9 and Wordpress 5.6.
* Fix an issue where PayVault did not work while Payment Type selection was active.
* Remove iFrame support.
* Add PayGate Plus logo option.
* Switch to SVG payment logo.
* Tweak order notes and default gateway title.
* Alternative WC notices handling.
* Add more information to logging when enabled.
= 1.4.1 - 2020-09-18 =
* Add alternate cart handling if cart is not cleared upon successful transaction.
* Compatibility with WordPress 5.5.1.
= 1.4.0 - 2020-08-03 =
* Tested with WooCommerce 4.3.1.
* Add payment types selection on checkout (SiD, eWallet etc.)
* Add custom order meta to payment reference.
* Improved error messaging.
* Fix an issue where the cart was not cleared on some configurations.
* Fix SQL syntax error in PayWeb query cron.
* Code quality improve and refactor.
* Other fixes and improvements.
= 1.3.2 - 2020-07-09 =
* Tested with WooCommerce 4.3.0
* Fix session bug.
* Code quality improve.
* Improve query reliability.
= 1.3.1 - 2020-06-12 =
* Compatible with WooCommerce 4.2.0 and WordPress 5.4.2.
* Minified style and scripts for improved performance.
* Fixed the 'pay' link from the order-pay page and account link.
* Add Order Transaction Query function under order menu.
* Add PayGate Query cron function for 'pending' orders PayGate orders.
* PayVault Bugfix for WooCommerce 4.2.0.
= 1.3.0 - 2020-04-08 =
* WooCommerce 4.0 compatible.
* PHP7.3 compatible.
* Fixed bugs and improved card vaulting.
* Combine iFrame and Redirect implementations.
* Handle iFrame min-width issue for some payment methods that use QR codes.
* Fix SSL Verify which breaks on some servers.
= 1.2.0 - 2019-05-29 =
* WordPress 5.2 Update - check for WP_Error object and handle accordingly.
* Test on WooCommerce 3.6.
* Fix overflow scroll for smaller iPhones.
= 1.1.9 - 2019-01-10 =
* Wordpress 5 compatibility
* Add support for sequential order number plugins (get_order_number and get_id).
* Add support for plugin update icons and 'Tested Version'.
= 1.1.8 - 2018-12-06 =
* Cater for abandoned carts and allow users to 'edit' cart on failed payment.
* Make cancelled transactions have an order status of 'cancelled'
* Use add_notice() for store notices
= 1.1.7 - 2018-11-30 =
* Add auto-update feature
* Add check for terms and conditions on "pay_for_order" page.
= 1.1.6 - 2018-10-24 =
* Use non-conflict jQuery.
= 1.1.5 - 2018-10-13 =
* Apply alternative approach to JS click event.
= 1.1.4 - 2018-08-07 =
* Backwards compatibility with older plugin settings.
= 1.1.3 - 2018-05-16 =
* Add options to toggle redirect OR notify.
* Fix double stock reduction on SiD notify.
* Fix WP debug.log entry when NOTIFY method accessed directly.
* Fix notify url broken on some url rewrites to HTTPS.
* Fix redirect response sometimes not captured.
* Add WC 3.3 compatibility, better declined and cancel handling.
* Change versioning standard to be consistent with other plugins.
= 1.1.1 - 2017-10-17 =
* Fixed WooCommerce compatibility issues and warning errors including order status on 'Thank You' page, order total and order billing email.
* Solved payment method error where post data failed on checkout.
= 1.1.0 - 2017-03-01 =
* Added PayVault tokenization functionality and cleaned up class.
= 1.0.3 - 2016-12-19 =
* Updated return method to better handle transaction status and messages.
= 1.0.2 - 2015-11-10 =
* Updated plugin to update order status with the notify from PayGate and this update helps in making sure that correct pages are displayed based on transaction-status.
= 1.0.1 - 2015-07-10 =
* Update notify function on return from PayGate to echo OK and get Order number.
= 1.0.0 - 2015-03-17 =
* First Release.

View File

@@ -0,0 +1,5 @@
*** Pinterest for WooCommerce Changelog ***
= 1.0.0 - 2021-10-25 =
- Initial release

View File

@@ -0,0 +1,187 @@
# Copyright (C) 2021 Primsmalink International
# This file is distributed under the same license as the PLINK Payment Gateway Woocommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: PLINK Payment Gateway Woocommerce 1.0.3\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/plinkpg-plugin\n"
"Last-Translator: Primsmalink <developer@prismalink.co.id>\n"
"Language-Team: Primsmalink <developer@prismalink.co.id>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-09-13T09:41:39+07:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: plink-payment-gateway-woocommerce\n"
#. Plugin Name of the plugin
msgid "PLINK Payment Gateway Woocommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "http://plink.co.id/"
msgstr ""
#. Description of the plugin
msgid "Plink Payment gateway payment (Virtual Account, Credit Card, Direct Debit)."
msgstr ""
#. Author of the plugin
msgid "Primsmalink International"
msgstr ""
#. Author URI of the plugin
msgid "http://prismalink.co.id/"
msgstr ""
#: index.php:28
msgid "PLINK Payment Gateway"
msgstr ""
#: index.php:29
msgid "PLINK Payment Gateway with Virtual Account, Credit Card, Direct Debit."
msgstr ""
#: index.php:57
msgid "Enable"
msgstr "Aktifkan Plugin"
#: index.php:59
msgid "Enable PLINK Payment Gateway Module."
msgstr "Aktifkan Plugin PLINK Payment Gateway"
#: index.php:63
msgid "Title"
msgstr "Judul Plugin"
#: index.php:65
msgid "The title which the user sees during checkout."
msgstr "Adalah nama plugin yang muncul saat checkout"
#: index.php:69
msgid "Phase"
msgstr "Fase Plugin"
#: index.php:75
msgid "PLINK development Phase."
msgstr "Fase saat menjalankan plugin"
#: index.php:78
msgid "Secret Key"
msgstr ""
#: index.php:80
msgid "Secret Key given by PLINK"
msgstr "Secret Key yang didapatkan dari PLINK"
#: index.php:83
msgid "Merchant ID"
msgstr ""
#: index.php:85
msgid "Your ID given by PLINK"
msgstr "Merchant ID yang diberikan dari PLINK"
#: index.php:88
msgid "Merchant Key ID"
msgstr ""
#: index.php:90
msgid "Your Key ID given by PLINK"
msgstr "Key ID yang diberikan dari PLINK"
#: index.php:94
msgid "Confirm text button "
msgstr "Teks Tombol Konfirmasi"
#: index.php:96
msgid "Your text button for button confirm payment"
msgstr "Teks pada tombol saat konfirmasi"
#: index.php:100
msgid "Other payment method text button"
msgstr "Teks Tombol Pembayaran Lain"
#: index.php:102
msgid "Your text button for button other payment method"
msgstr "Teks pada tombol saat memilih pilihan pembayaran lain"
#: index.php:105
msgid "Description"
msgstr "Deskripsi Plugin"
#: index.php:106
msgid "Checkout with PLINK Payment Gateway(Virtual Account, Credit Card, Direct Debit)"
msgstr "Pesan dengan PLINK Payment Gateway(Virtual Account, Credit Card, Direct Debit)"
#: index.php:109
msgid "This controls the description which the user sees during checkout."
msgstr "Untuk merubah deskripsi pada daftar pembayaran ketika melakukan pemesanan"
#: index.php:113
msgid "Backend Callback Url"
msgstr ""
#: index.php:115
msgid "Backend url needed to be registered before start using this plugin"
msgstr "Backend url didaftarkan ke PLINK sebelum menggunakan plugin"
#: index.php:121
msgid "Frontend Callback Url"
msgstr ""
#: index.php:123
msgid "Frontend url needed to be registered before start using this plugin"
msgstr "Frontend url didaftarkan ke PLINK sebelum menggunakan plugin"
#: index.php:154
msgid "This plugin requires 'IDR' for currency"
msgstr "PLINK hanya menerima pembayaran dengan Rupiah (IDR)"
#: index.php:184
msgid "Thanks for your order, please click confirmation button below to pay with PLINK Payment Gateway."
msgstr "Terimakasih sudah melakukan pemesanan, mohon klik tombol konfirmasi dibawah ini untuk melakukan pembayaran dengan PLINK Payment Gateway"
#: index.php:196
msgid "Other Payment method"
msgstr "Metode Pembayaran Lain"
#: index.php:197
msgid "Confirm order"
msgstr "Konfirmasi Pesanan"
#: index.php:216
msgid "Your order has expired please reorder to checkout page again "
msgstr "Pesanan anda sudah berakhir mohon untuk mengorder kembali atau pergi ke halaman pesanan kembali"
#: index.php:217
msgid "order not found"
msgstr "order tidak ditemukan"
#: index.php:232
msgid "PLINK Paymentgateway Awaiting payment"
msgstr "PLINK Paymentgateway menunggu pembayaran"
#: index.php:458
msgid "Something went wrong. "
msgstr "Ada sebuah kesalahan. "
#: index.php:677
msgid "Please make a payment soon by using Virtual Account numbers in the PLINK window below. To check your payment status you can click the button check payment status"
msgstr "Mohon untuk segera melakukan pembayaran menggunakan nomor VA yang tersedia di jendela PLINK dibawah ini. Untuk memeriksa status pembayaran anda bisa menekan tombol cek status pembayaran"
#: index.php:680
msgid "Return to store"
msgstr "Kembali ke halaman utama"
#: index.php:683
msgid "Check Payment Status"
msgstr "Perikasa Status Pembayaran"
#: index.php:803
msgid "Go to checkout page"
msgstr "Pergi Ke Halaman Pemesanan"
#: index.php:803
msgid "Try again"
msgstr "Coba Lagi"

View File

@@ -0,0 +1,231 @@
# Copyright (C) 2021 Paid Memberships Pro
# This file is distributed under the same license as the Paid Memberships Pro - Pods Add On plugin.
msgid ""
msgstr ""
"Project-Id-Version: Paid Memberships Pro - Pods Add On 1.0\n"
"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
"Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
"Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-26T13:59:55+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: pmpro-pods\n"
#. Plugin Name of the plugin
msgid "Paid Memberships Pro - Pods Add On"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.paidmembershipspro.com/add-ons/pods/"
msgstr ""
#. Description of the plugin
msgid "Pods integration for Paid Memberships Pro"
msgstr ""
#. Author of the plugin
msgid "Paid Memberships Pro"
msgstr ""
#. Author URI of the plugin
msgid "https://www.paidmembershipspro.com/"
msgstr ""
#: includes/objects/member-profile.php:56
#: src/PMPro/Objects/Member_Profile.php:115
msgid "Order Information"
msgstr ""
#: includes/pods-integration.php:71
#: src/Pods/Integration.php:193
msgid "More Fields"
msgstr ""
#: includes/pods-integration.php:128
#: pmpro-pods.php:67
#: src/Covered_Objects.php:57
#: src/Pods/Integration.php:224
msgid "PMPro Membership Level"
msgstr ""
#: includes/pods-integration.php:136
#: includes/pods-integration.php:213
#: src/Pods/Integration.php:472
#: src/Pods/Integration.php:597
msgid "PMPro Options"
msgstr ""
#: includes/pods-integration.php:147
#: src/Pods/Integration.php:495
msgid "Profile area(s) to show this group of fields on"
msgstr ""
#: includes/pods-integration.php:149
#: includes/pods-integration.php:166
#: includes/pods-integration.php:188
#: src/Pods/Integration.php:497
#: src/Pods/Integration.php:514
#: src/Pods/Integration.php:546
msgid "All available fields in this group will show in the sections chosen."
msgstr ""
#: includes/pods-integration.php:152
#: src/Pods/Integration.php:500
msgid "Front-facing Profile"
msgstr ""
#: includes/pods-integration.php:153
#: src/Pods/Integration.php:501
msgid "WP Dashboard Profile"
msgstr ""
#: includes/pods-integration.php:164
#: src/Pods/Integration.php:512
msgid "Checkout Section to show this group of fields on"
msgstr ""
#: includes/pods-integration.php:169
#: src/Pods/Integration.php:517
msgid "Do NOT show on Checkout"
msgstr ""
#: includes/pods-integration.php:170
#: src/Pods/Integration.php:518
msgid "After Level Cost / Before Discount"
msgstr ""
#: includes/pods-integration.php:171
#: src/Pods/Integration.php:520
msgid "After Pricing Fields"
msgstr ""
#: includes/pods-integration.php:172
#: src/Pods/Integration.php:522
msgid "After Username (no heading)"
msgstr ""
#: includes/pods-integration.php:173
#: src/Pods/Integration.php:524
msgid "After Password (no heading)"
msgstr ""
#: includes/pods-integration.php:174
#: src/Pods/Integration.php:526
msgid "After Email (no heading)"
msgstr ""
#: includes/pods-integration.php:175
#: src/Pods/Integration.php:528
msgid "After Billing Fields"
msgstr ""
#: includes/pods-integration.php:176
#: src/Pods/Integration.php:530
msgid "After Payment Information Fields"
msgstr ""
#: includes/pods-integration.php:177
#: src/Pods/Integration.php:532
msgid "After TOS Fields"
msgstr ""
#: includes/pods-integration.php:178
#: src/Pods/Integration.php:534
msgid "After Captcha"
msgstr ""
#: includes/pods-integration.php:179
#: src/Pods/Integration.php:536
msgid "Before Submit Button"
msgstr ""
#: includes/pods-integration.php:186
#: src/Pods/Integration.php:544
msgid "Sections to show this group of fields on"
msgstr ""
#: includes/pods-integration.php:191
#: src/Pods/Integration.php:549
msgid "After Billing Details"
msgstr ""
#: includes/pods-integration.php:192
#: src/Pods/Integration.php:551
msgid "Before Content Settings"
msgstr ""
#: includes/pods-integration.php:193
#: src/Pods/Integration.php:553
msgid "After Content Settings"
msgstr ""
#: includes/pods-integration.php:201
#: src/Pods/Integration.php:562
msgid "Require Membership to see this group of fields"
msgstr ""
#: includes/pods-integration.php:202
#: src/Pods/Integration.php:563
msgid "All available fields in this group will show if the Member has the required membership level(s) chosen."
msgstr ""
#: includes/pods-integration.php:222
msgid "Require Membership to see this field"
msgstr ""
#: pmpro-pods.php:46
#: src/Covered_Objects.php:25
msgid "PMPro Member"
msgstr ""
#: pmpro-pods.php:57
#: src/Covered_Objects.php:42
msgid "PMPro Order"
msgstr ""
#: pmpro-pods.php:296
#: pmpro-pods.php:305
msgid "Sorry, the file type for %s is not permitted for security reasons."
msgstr ""
#: pmpro-pods.php:551
msgid "Unable to add/update PMPro Register Helper registration fields for this member"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.paidmembershipspro.com/add-ons/pods-integration/"
msgstr ""
#. Description of the plugin
msgid "Integrates Paid Memberships Pro with the Pods Framework to add groups of fields to many areas of your membership site including Member Profiles, the Membership Checkout page, and admin screens including Membership Levels and Orders."
msgstr ""
#: pmpro-pods.php:61
#: pmpro-pods.php:75
msgid "The %1$s requires %2$s installed and activated to be used."
msgstr ""
#: src/Pods/Integration.php:573
#: src/Pods/Integration.php:631
msgid "Show on checkout only for selected Required Membership Levels"
msgstr ""
#: src/Pods/Integration.php:574
#: src/Pods/Integration.php:632
msgid "This will allow showing this field on checkout only for a specific checkout level as selected above. This will allow for the field to be able to be shown on checkout for the corresponding required level as well as when editing the profile field (if the group is set to show on front/admin profile)."
msgstr ""
#: src/Pods/Integration.php:619
msgid "Require Membership to update this field"
msgstr ""
#: src/Pods/Integration.php:620
msgid "If this is a checkout field, then having this membership level already will be required to see this field."
msgstr ""
#: src/Pods/Integration.php:661
msgid "PMPro: Enable Require Membership functionality"
msgstr ""

View File

@@ -858,6 +858,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ald-image-gallery/js/ald-script.js?ver=2.0"></script>
<!-- alert-box-block -->
<link rel="stylesheet" id="abb_style-css" href="http://wp.lab/wp-content/plugins/alert-box-block/dist/style.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/alert-box-block/assets/js/font-awesome-kit.js?ver=1.0.1" id="fontAwesomeKit-js"></script>
<script src="http://wp.lab/wp-content/plugins/alert-box-block/dist/script.js?ver=1.0.1" id="abb_script-js"></script>
<!-- alex-player -->
<link rel="stylesheet" id="media_engine_styles-css" href="http://wp.lab/wp-content/plugins/alex-player/media-engine.css?ver=1.07" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/alex-player/media-engine.js?ver=1.07"></script>
@@ -1149,6 +1155,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/appnotch-easy-web-to-app/public/js/easy-web-to-app-public.js?ver=1.0.0"></script>
<!-- appointify -->
<script src="http://wp.lab/wp-content/plugins/appointify/public/js/appointify-public.js?ver=1.0.4" id="appointify-js"></script>
<!-- appointment-booking-for-business -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/appointment-booking-for-business//assets/js/calendar.js?ver=1.0.0"></script>
@@ -1282,6 +1292,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ascend-marketing-tools/public/js/ascend-marketing-public.js?ver=1.0.2"></script>
<!-- ascendoor-logo-slide -->
<link rel="stylesheet" id="ascendoor-logo-slide-public-css" href="http://wp.lab/wp-content/plugins/ascendoor-logo-slide/admin/resources/build/index.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/ascendoor-logo-slide/public/js/ascendoor-logo-slide-public.js?ver=1.0.0" id="ascendoor-logo-slide-public-js"></script>
<!-- asciinema-player -->
<link rel="stylesheet" id="jco-asciinema-player-css" href="http://wp.lab/wp-content/plugins/asciinema-player/public/css/jco-asciinema-player-public.css?ver=1.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/asciinema-player/public/js/jco-asciinema-player-public.js?ver=1.0.1"></script>
@@ -1646,6 +1661,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/azw-woocommerce-file-uploads/public/js/azwwfu-woocommerce-file-uploads-public.js?ver=1.0.0"></script>
<!-- b-chart -->
<script src="http://wp.lab/wp-content/plugins/b-chart/public/assets/js/chart.min.js?ver=1.0.0" id="bpbc-chart-js"></script>
<script src="http://wp.lab/wp-content/plugins/b-chart/public/assets/js/chart-config.js?ver=1.0.0" id="bpbc-chart-config-js"></script>
<!-- b-pinterest-feed -->
<link rel="stylesheet" id="pfree-style-css" href="http://wp.lab/wp-content/plugins/b-pinterest-feed/public/assets/css/style.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/b-pinterest-feed/public/assets/js/jquery.pgallery.min.js?ver=1.0.0"></script>
@@ -1678,6 +1698,15 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/back-to-top-advanced/classes/../assets/script.js?ver=1.1"></script>
<!-- background-animation-blocks -->
<link rel="stylesheet" id="bab-editor-block-css-css" href="http://wp.lab/wp-content/plugins/background-animation-blocks/assets/css/main.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/background-animation-blocks/assets/js/plugins/stars.js?ver=1.0.0" id="bab-stars-js"></script>
<script src="http://wp.lab/wp-content/plugins/background-animation-blocks/assets/js/plugins/blurred-circles.js?ver=1.0.0" id="bab-blurred-circles-js"></script>
<script src="http://wp.lab/wp-content/plugins/background-animation-blocks/assets/js/plugins/bubbles.js?ver=1.0.0" id="bab-bubbles-js"></script>
<script src="http://wp.lab/wp-content/plugins/background-animation-blocks/assets/js/plugins/gooey.js?ver=1.0.0" id="bab-gooey-js"></script>
<script src="http://wp.lab/wp-content/plugins/background-animation-blocks/assets/js/main.js?ver=1.0.0" id="bab-front-js"></script>
<!-- bad-ip-wp -->
<link rel="stylesheet" id="bad_ip_wp-css" href="http://wp.lab/wp-content/plugins/bad-ip-wp/public/css/bad_ip_wp-public.css?ver=1.0.3" media="all">
<script src="http://wp.lab/wp-content/plugins/bad-ip-wp/public/js/bad_ip_wp-public.js?ver=1.0.3"></script>
@@ -1821,6 +1850,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/beam-me-up-scotty/library/js/scripts.min.js?ver=1.0.06"></script>
<!-- beautiful-custom-invoices -->
<link rel="stylesheet" id="bci-css" href="http://wp.lab/wp-content/plugins/beautiful-custom-invoices/public/css/bci-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/beautiful-custom-invoices/public/js/bci-public.js?ver=1.0.0" id="bci-js"></script>
<!-- beautiful-paypal-buttons -->
<link rel="stylesheet" id="beautiful-paypal-buttons-style-css" href="http://wp.lab/wp-content/plugins/beautiful-paypal-buttons/css/button-styles.css?ver=1.0" type="text/css" media="all">
@@ -1987,6 +2021,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bigideas/public/js/ideas-public.js?ver=1.0.0"></script>
<!-- bike-rental -->
<link rel="stylesheet" id="bkrntl-front-end-styles-css" href="http://wp.lab/wp-content/plugins/bike-rental/css/front-end-styles.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/bike-rental/js/script.js?ver=1.0.2" id="bkrntl-front-end-script-js"></script>
<!-- billbee-auftragsabwicklung-warenwirtschaft-automatisierung -->
<link rel="stylesheet" id="billbee-css" href="http://wp.lab/wp-content/plugins/billbee-auftragsabwicklung-warenwirtschaft-automatisierung/public/css/billbee-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/billbee-auftragsabwicklung-warenwirtschaft-automatisierung/public/js/billbee-public.js?ver=1.0.0"></script>
@@ -2122,6 +2161,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blockalyzer-adblock-counter/js/banner.js?ver=1.3"></script>
<!-- blockly -->
<link rel="stylesheet" id="blockly-blocks-style-css-css" href="http://wp.lab/wp-content/plugins/blockly/build/style-index.css?ver=1.0.0" media="all">
<!-- blog-clock -->
<link rel="stylesheet" id="blocks-style-css" href="http://wp.lab/wp-content/plugins/blog-clock/assets/css/custom-backend.css?ver=1.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blog-clock/assets/js/custom-backend.js?ver=1.2"></script>
@@ -2328,6 +2371,11 @@
<script src="http://wp.lab/wp-content/plugins/bold-page-builder/script_fe.js?ver=3.0.5" id="bt_bb_fe-js"></script>
<!-- bonus-for-woo -->
<link rel="stylesheet" id="bonus-computy-style-css" href="http://wp.lab/wp-content/plugins/bonus-for-woo/_inc/bonus-computy-style.css?ver=2.4.1" media="all">
<script src="http://wp.lab/wp-content/plugins/bonus-for-woo/_inc/bonus-computy-script.js?ver=2.4.1" id="bonus-computy-script-js"></script>
<!-- boo-recipes -->
<link rel="stylesheet" id="boorecipe-css" href="http://wp.lab/wp-content/plugins/boo-recipes/public/css/style.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/boo-recipes/public/js/boorecipe-public.js?ver=1.0.0"></script>
@@ -2566,6 +2614,14 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bpmcontext-client-suite/includes/bpm-sdk/js/bpmcontext_missing_menu.js?ver=3.1.12"></script>
<!-- bportfolio -->
<script src="http://wp.lab/wp-content/plugins/bportfolio/public/js/owl.js?ver=1.0.1" id="owl-js-js"></script>
<script src="http://wp.lab/wp-content/plugins/bportfolio/public/js/wow.js?ver=1.0.1" id="wow-js-js"></script>
<script src="http://wp.lab/wp-content/plugins/bportfolio/public/js/jquery.fancybox.js?ver=1.0.1" id="fancybox-js-js"></script>
<script src="http://wp.lab/wp-content/plugins/bportfolio/public/js/isotope.js?ver=1.0.1" id="isotope-js-js"></script>
<script src="http://wp.lab/wp-content/plugins/bportfolio/public/js/script.js?ver=1.0.1" id="main-js-js"></script>
<!-- br-knowledge-base -->
<link rel="stylesheet" id="blue-rooster-main-css" href="http://wp.lab/wp-content/plugins/br-knowledge-base/public/css/main.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="bluer-rooster-public-css" href="http://wp.lab/wp-content/plugins/br-knowledge-base/public/css/BR_KNOWLEDGE_BASE-public.css?ver=1.0.0" type="text/css" media="all">
@@ -2587,6 +2643,11 @@
<link rel="stylesheet" id="lolita-css-loader-css" href="http://wp.lab/wp-content/plugins/branding/LolitaFramework/CssLoader/assets/css/lolita_css_loader.css?ver=1.0" type="text/css" media="all">
<!-- brandnestor -->
<link rel="stylesheet" id="brandnestor-base-css" href="http://wp.lab/wp-content/plugins/brandnestor/assets/css/build/base-style.css?ver=1.1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/brandnestor/assets/js/build/login.js?ver=1.1.0" id="brandnestor-login-js"></script>
<!-- brewpress -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/brewpress/assets/js/bootstrap.bundle.min.js?ver=1.0.4"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/brewpress/assets/js/bootstrap-confirmation.js?ver=1.0.4"></script>
@@ -3429,6 +3490,11 @@
<script src="http://wp.lab/wp-content/plugins/charla-live-chat/public/js/charla-live-chat-public.js?ver=1.0.0"></script>
<!-- chart-block -->
<link rel="stylesheet" id="b_chart_style-css" href="http://wp.lab/wp-content/plugins/chart-block/dist/style.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/chart-block/dist/script.js?ver=1.0.2" id="b_chart_script-js"></script>
<!-- charty -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/charty/js/charty_load_chart.js?ver=1.2"></script>
@@ -3662,6 +3728,11 @@
<link rel="stylesheet" id="ct-css-css" href="http://wp.lab/wp-content/plugins/clients/public/css/ct.css?ver=1.1.3" type="text/css" media="all">
<!-- clima-widget -->
<link rel="stylesheet" id="clima-widget-css" href="http://wp.lab/wp-content/plugins/clima-widget/public/css/clima-widget-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/clima-widget/public/js/clima-widget-public.js?ver=1.0.0" id="clima-widget-js"></script>
<!-- climate-dashboard -->
<link rel="stylesheet" id="climate-dashboard-css" href="http://wp.lab/wp-content/plugins/climate-dashboard/public/css/climate-dashboard-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/climate-dashboard/public/js/climate-dashboard-public.js?ver=1.0.0"></script>
@@ -3899,6 +3970,17 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/comments-with-social-login//js/ixwp-comments-social-login.js?ver=1.0"></script>
<!-- commercioo-wp -->
<link rel="stylesheet" id="commercioo-order-status-css" href="http://wp.lab/wp-content/plugins/commercioo-wp/public/css/commercioo-order-status.css?ver=0.4.6" media="all">
<link rel="stylesheet" id="commercioo-toast-css-css" href="http://wp.lab/wp-content/plugins/commercioo-wp/public/css/vendor/toast/jquery.toast.css?ver=0.4.6" media="all">
<link rel="stylesheet" id="commercioo-global-css" href="http://wp.lab/wp-content/plugins/commercioo-wp/public/css/commercioo-global.css?ver=0.4.6" media="all">
<script src="http://wp.lab/wp-content/plugins/commercioo-wp/public/js/vendor/feather.min.js?ver=0.4.6" id="feather-js"></script>
<script src="http://wp.lab/wp-content/plugins/commercioo-wp/public/js/cart/cart-page.js?ver=0.4.6" id="commercioo-cart-js"></script>
<script src="http://wp.lab/wp-content/plugins/commercioo-wp/public/js/vendor/toast/jquery.toast.js?ver=0.4.6" id="jquery-toast-js"></script>
<script src="http://wp.lab/wp-content/plugins/commercioo-wp/public/js/vendor/jquery.blockUI.js?ver=0.4.6" id="jquery-block-js"></script>
<script src="http://wp.lab/wp-content/plugins/commercioo-wp/public/js/commercioo-public.js?ver=0.4.6" id="commercioo-public-js"></script>
<!-- community-watch -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/community-watch/js/public.js?ver=1.0.0"></script>
@@ -3971,6 +4053,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/connects-tracking/public/js/connects-tracking-public.js?ver=1.0.1"></script>
<!-- consignment-store-for-woocommerce -->
<link rel="stylesheet" id="cws-consignment-css" href="http://wp.lab/wp-content/plugins/consignment-store-for-woocommerce/public/css/cws-consignment-public.css?ver=1.2.0" media="all">
<script src="http://wp.lab/wp-content/plugins/consignment-store-for-woocommerce/public/js/cws-consignment-public.js?ver=1.2.0" id="cws-consignment-js"></script>
<!-- constant-contact-forms -->
<link rel="stylesheet" id="ctct_form_styles-css" href="http://wp.lab/wp-content/plugins/constant-contact-forms/assets/css/style.css?ver=1.3.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/constant-contact-forms/assets/js/ctct-plugin-frontend.min.js?ver=1.3.5"></script>
@@ -4091,6 +4178,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/content-planner/js/badger.js?ver=1.0"></script>
<!-- content-slider-block -->
<link rel="stylesheet" id="csb_style-css" href="http://wp.lab/wp-content/plugins/content-slider-block/dist/style.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/content-slider-block/assets/js/swiper-bundle.min.js?ver=1.0.1" id="swiperJS-js"></script>
<script src="http://wp.lab/wp-content/plugins/content-slider-block/dist/script.js?ver=1.0.1" id="csb_script-js"></script>
<!-- content-views-query-and-display-post-page -->
<link rel="stylesheet" id="pt-cv-public-style-css" href="http://wp.lab/wp-content/plugins/content-views-query-and-display-post-page/public/assets/css/cv.css?ver=1.9.9.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/content-views-query-and-display-post-page/public/assets/js/cv.js?ver=1.9.9.5"></script>
@@ -4415,6 +4508,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/slick-carousel.js?ver=1.0.0"></script>
<!-- crowdaa-sync -->
<link rel="stylesheet" id="crowdaa-sync-css" href="http://wp.lab/wp-content/plugins/crowdaa-sync/public/css/crowdaa-sync-public.css?ver=1.0.50" media="all">
<script src="http://wp.lab/wp-content/plugins/crowdaa-sync/public/js/crowdaa-sync-public.js?ver=1.0.50" id="crowdaa-sync-js"></script>
<!-- crowdfundly -->
<link rel="stylesheet" id="crowdfundly-bootstrap-css" href="http://wp.lab/wp-content/plugins/crowdfundly/assets/bootstrap/css/bootstrap.min.css?ver=1.0.2" media="all">
<link rel="stylesheet" id="crowdfundly-slick-css" href="http://wp.lab/wp-content/plugins/crowdfundly/assets/slick-dist/slick/slick.css?ver=1.0.2" media="all">
@@ -4430,6 +4528,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/crs-post-title-shortener/public/js/crs-post-title-shortener-public.js?ver=1.0.0"></script>
<!-- crucial-real-estate -->
<link rel="stylesheet" id="cre-main-style-css" href="http://wp.lab/wp-content/plugins/crucial-real-estate/assets/css/main.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="cre-style-css" href="http://wp.lab/wp-content/plugins/crucial-real-estate/assets/css/cre-frontend.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/crucial-real-estate/assets/js/cre-frontend.js?ver=1.0.0" id="cre-frontend-js"></script>
<!-- cryout-serious-slider -->
<link rel="stylesheet" id="cryout-serious-slider-style-css" href="http://wp.lab/wp-content/plugins/cryout-serious-slider/resources/style.css?ver=1.0.4" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cryout-serious-slider/resources/jquery.mobile.custom.min.js?ver=1.0.4"></script>
@@ -4580,6 +4684,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-registration-form-builder-with-submission-manager/public/js/script_rm_front.js?ver=3.8.0.4"></script>
<!-- custom-social-media-icons -->
<link rel="stylesheet" id="custom-social-media-icons-font-css" href="http://wp.lab/wp-content/plugins/custom-social-media-icons/css/style.css?ver=1.0" media="all">
<!-- custom-team-manager -->
<link rel="stylesheet" id="stylesheet-css" href="http://wp.lab/wp-content/plugins/custom-team-manager/css/stylesheet.css?ver=2.4.1" media="all">
@@ -4842,6 +4950,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/disable-wp-comments/public/js/disable-wp-comments-public.js?ver=1.0.0"></script>
<!-- disabled-source-disabled-right-click-and-content-protection -->
<link rel="stylesheet" id="disabled-source-and-content-protection-css-css" href="http://wp.lab/wp-content/plugins/disabled-source-disabled-right-click-and-content-protection/assets/css/style.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/disabled-source-disabled-right-click-and-content-protection/assets/js/protection.js?ver=1.0" id="disabled-source-and-content-protection-js-js"></script>
<!-- disclaimer-popup -->
<link rel="stylesheet" id="wp-disclaimer-popup-css" href="http://wp.lab/wp-content/plugins/disclaimer-popup/public/css/wp-disclaimer-popup-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="wp-disclaimer-popup-gen-css" href="http://wp.lab/wp-content/plugins/disclaimer-popup/public/css/wp-disclaimer-popup-public.gen.css?ver=1.0.0" media="all">
@@ -5047,6 +5160,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-form-move-tracker.js?ver=1.7.2"></script>
<!-- dustid-integration-kit -->
<link rel="stylesheet" id="dustid_integration_kit-css" href="http://wp.lab/wp-content/plugins/dustid-integration-kit/public/css/dustid_integration_kit-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/dustid-integration-kit/public/js/autoComplete.js?ver=1.0.0" id="auto-complete-js"></script>
<script src="http://wp.lab/wp-content/plugins/dustid-integration-kit/public/js/rmodal.js?ver=1.0.0" id="r-modal-js"></script>
<script src="http://wp.lab/wp-content/plugins/dustid-integration-kit/public/js/dustid_integration_kit-public.js?ver=1.0.0" id="dustid_integration_kit-js"></script>
<!-- dvk-conf -->
<link rel="stylesheet" id="dvk-conf-css" href="http://wp.lab/wp-content/plugins/dvk-conf/public/css/dvk-conf-public.css?ver=0.0.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dvk-conf/public/js/dvk-conf-public.js?ver=0.0.3"></script>
@@ -5239,6 +5359,10 @@
<link rel="stylesheet" id="easy-nivo-slider-css" href="http://wp.lab/wp-content/plugins/easy-nivo-slider/css/easy-nivo-slider.css?ver=1.6.1" type="text/css" media="all">
<!-- easy-notification-bar -->
<link rel="stylesheet" id="easy-notification-bar-css" href="http://wp.lab/wp-content/plugins/easy-notification-bar/assets/css/easy-notification-bar.css?ver=1.4.3" media="all">
<!-- easy-panorama -->
<link rel="stylesheet" id="easy-panorama-css" href="http://wp.lab/wp-content/plugins/easy-panorama/public/css/paver.min.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-panorama/public/js/jquery.paver.min.js?ver=1.0.2"></script>
@@ -5965,6 +6089,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/eventilla-events/public/js/eventilla-wp-public.js?ver=1.1.0"></script>
<!-- events-calendar-for-google -->
<link rel="stylesheet" id="events_calendar_google-css" href="http://wp.lab/wp-content/plugins/events-calendar-for-google/public/css/events-calendar-for-google-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="gc_font_style-css" href="http://wp.lab/wp-content/plugins/events-calendar-for-google/public/css/fontawesome.min.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/events-calendar-for-google/public/js/events-calendar-for-google-public.js?ver=1.0.0" id="public-event-js-js"></script>
<!-- events-made-easy -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/events-made-easy/js/jquery-select2/select2-4.0.4/dist/js/select2.min.js?ver=2.0.68"></script>
<script type="text/javascript" defer src="http://wp.lab/wp-content/plugins/events-made-easy/js/eme.js?ver=2.0.68"></script>
@@ -6157,6 +6287,37 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ezycookie/public/js/ezycookie-public.js?ver=1.0.0"></script>
<!-- f13-email -->
<link rel="stylesheet" id="f13-email-css" href="http://wp.lab/wp-content/plugins/f13-email/css/f13-email.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/f13-email/js/f13-email-ajax.js?ver=1.0.0" id="f13-email-ajax-js"></script>
<!-- f13-google-maps-shortcode -->
<link rel="stylesheet" id="f13-google-maps-css" href="http://wp.lab/wp-content/plugins/f13-google-maps-shortcode/css/google-maps.css?ver=2.0.1" media="all">
<!-- f13-lightbox -->
<link rel="stylesheet" id="f13-lightbox-css" href="http://wp.lab/wp-content/plugins/f13-lightbox/css/f13-lightbox.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/f13-lightbox/js/f13-lightbox.js?ver=1.0.0" id="f13-lightbox-js"></script>
<!-- f13-movie-shortcode -->
<link rel="stylesheet" id="f13-movies-css" href="http://wp.lab/wp-content/plugins/f13-movie-shortcode/css/f13-movies.css?ver=2.0.1" media="all">
<!-- f13-recaptcha -->
<link rel="stylesheet" id="f13_recaptcha-css" href="http://wp.lab/wp-content/plugins/f13-recaptcha/css/f13-recaptcha.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/f13-recaptcha/js/f13-recaptcha.js?ver=1.0.0" id="f13_recaptcha-js"></script>
<!-- f13-toc -->
<link rel="stylesheet" id="f13-toc-css" href="http://wp.lab/wp-content/plugins/f13-toc/css/f13-toc.css?ver=1.0.1" media="all">
<!-- f13-wp-plugin-shortcode -->
<link rel="stylesheet" id="f13-wordpress-css" href="http://wp.lab/wp-content/plugins/f13-wp-plugin-shortcode/css/f13-wordpress.css?ver=1.0.2" media="all">
<!-- f1press -->
<link rel="stylesheet" id="F1Press-css" href="http://wp.lab/wp-content/plugins/f1press/style.css?ver=2.0" type="text/css" media="all">
@@ -6595,6 +6756,11 @@
<link rel="stylesheet" id="fab-template-4-style-css" href="http://wp.lab/wp-content/plugins/flixy-review-product-boxes-for-affiliate-pages/templates/fab-template-4/css/fab-template-4-style.css?ver=1.0" media="all">
<!-- float-my-icon -->
<link rel="stylesheet" id="float-my-icon-style-css" href="http://wp.lab/wp-content/plugins/float-my-icon/float-my-icon.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/float-my-icon/float-my-icon.js?ver=1.0.0" id="float-my-icon-script-js"></script>
<!-- float-to-top-button -->
<link rel="stylesheet" id="fttb-style-css" href="http://wp.lab/wp-content/plugins/float-to-top-button/css/float-to-top-button.min.css?ver=2.3.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/float-to-top-button/js/jquery.scrollUp.min.js?ver=2.3.1"></script>
@@ -7092,6 +7258,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gamipress/assets/js/gamipress-events.min.js?ver=1.3.5"></script>
<!-- gastcoin-gateway -->
<link rel="stylesheet" id="gastcoin-css" href="http://wp.lab/wp-content/plugins/gastcoin-gateway/public/css/gastcoin-public.css?ver=0.8.1" media="all">
<script src="http://wp.lab/wp-content/plugins/gastcoin-gateway/public/js/gastcoin-public.js?ver=0.8.1" id="gastcoin-js"></script>
<!-- gazchaps-woocommerce-getaddress-io -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gazchaps-woocommerce-getaddress-io/gazchaps-getaddress-io.min.js?ver=1.1"></script>
@@ -7771,6 +7942,13 @@
<link rel="stylesheet" id="guardian_headlines_style-css" href="http://wp.lab/wp-content/plugins/guardian-news-headlines/guardian_headlines.css?ver=0.5.4" type="text/css" media="all">
<!-- guidant -->
<link rel="stylesheet" id="guidant-frontend-slider-css" href="http://wp.lab/wp-content/plugins/guidant/assets/css/rSlider.css?ver=1.0.2" media="all">
<link rel="stylesheet" id="guidant-frontend-css" href="http://wp.lab/wp-content/plugins/guidant/assets/css/frontend.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/guidant/assets/js/rSlider.js?ver=1.0.2" id="guidant-frontend-slider-js"></script>
<script src="http://wp.lab/wp-content/plugins/guidant/assets/js/frontend.js?ver=1.0.2" id="guidant-frontend-main-js"></script>
<!-- guto-toolkit -->
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/bootstrap.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/animate.min.css?ver=1.0.0" media="all">
@@ -8362,6 +8540,11 @@
<script src="http://wp.lab/wp-content/plugins/image-automatic-height-width/assets/js/scrpt.js?ver=1.0.0" id="iahw_script-js"></script>
<!-- image-compare-block -->
<script src="http://wp.lab/wp-content/plugins/image-compare-block/assets/js/image-compare-viewer.js?ver=1.0.0" id="icgb__image-compare-viewer-js-js"></script>
<script src="http://wp.lab/wp-content/plugins/image-compare-block/assets/js/plugin.js?ver=1.0.0" id="icgb__plugin-js-js"></script>
<!-- image-projector -->
<link rel="stylesheet" id="wpiv_style-css" href="http://wp.lab/wp-content/plugins/image-projector/public/css/ip-style.css?ver=1.12" type="text/css" media="all">
@@ -8405,6 +8588,13 @@
<link rel="stylesheet" id="DD_IMIN_WIDGET_CSS-css" href="http://wp.lab/wp-content/plugins/imincom-affiliate-plugin-for-wordpress/css/imin-widget.css?ver=1.0" type="text/css" media="all">
<!-- immersive-designer -->
<link rel="stylesheet" id="immdg-css" href="http://wp.lab/wp-content/plugins/immersive-designer/public/css/immdg-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/immersive-designer/public/js/immdg-public.js?ver=1.0.0" id="immdg-js"></script>
<script src="http://wp.lab/wp-content/plugins/immersive-designer//public/js/threejs/three.js?ver=1.0.0" id="pub-immdg-three-js"></script>
<script src="http://wp.lab/wp-content/plugins/immersive-designer/public/js/immdg-public-model-control.js?ver=1.0.0" type="module"></script>
<!-- immobilien-leadgenerator -->
<link rel="stylesheet" id="prt-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/prt-modern.css?ver=1.6.8.1" type="text/css" media="all">
<link rel="stylesheet" id="nouislider-css-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/nouislider.min.css?ver=1.6.8.1" type="text/css" media="all">
@@ -8794,6 +8984,11 @@
<script src="http://wp.lab/wp-content/plugins/itech-quick-order/public/js/itqo-public.js?ver=1.0.0" id="itqo-js"></script>
<!-- item-list -->
<link rel="stylesheet" id="zwk-item-list-css" href="http://wp.lab/wp-content/plugins/item-list/public/css/zwk-item-list-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/item-list/public/js/zwk-item-list-public.js?ver=1.0.0" id="zwk-item-list-js"></script>
<!-- itempropwp -->
<link rel="stylesheet" id="itempropwp-css" href="http://wp.lab/wp-content/plugins/itempropwp/assets/css/itempropwp.css?ver=3.5.201706131" type="text/css" media="all">
@@ -8868,6 +9063,11 @@
<link rel="stylesheet" id="jgccfr-msg-style-css" href="http://wp.lab/wp-content/plugins/jgc-content-for-registered-users/css/jgc-cfr-style.css?ver=1.1.1" type="text/css" media="all">
<!-- jiangqie-free-mini-program -->
<link rel="stylesheet" id="jiangqie-api-css" href="http://wp.lab/wp-content/plugins/jiangqie-free-mini-program/public/css/jiangqie-api-public.css?ver=1.5.6" media="all">
<script src="http://wp.lab/wp-content/plugins/jiangqie-free-mini-program/public/js/jiangqie-api-public.js?ver=1.5.6" id="jiangqie-api-js"></script>
<!-- jiangqie-official-website-mini-program -->
<link rel="stylesheet" id="jiangqie-ow-free-css" href="http://wp.lab/wp-content/plugins/jiangqie-official-website-mini-program/public/css/jiangqie-ow-free-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/jiangqie-official-website-mini-program/public/js/jiangqie-ow-free-public.js?ver=1.0.0" id="jiangqie-ow-free-js"></script>
@@ -9139,6 +9339,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/keymaster-chord-notation-free/js/print-area.jquery.js?ver=1.0.2"></script>
<!-- keyspider-search -->
<link rel="stylesheet" id="keyspider-search-css" href="http://wp.lab/wp-content/plugins/keyspider-search/public/css/keyspider-search-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/keyspider-search/public/js/keyspider-search-public.js?ver=1.0.0" id="keyspider-search-js"></script>
<!-- ki-live-video-conferences -->
<link rel="stylesheet" id="ki-live-video-conferences-earth-css" href="http://wp.lab/wp-content/plugins/ki-live-video-conferences/earth/assets/css/earth.css?ver=1.2.3" media="all">
<link rel="stylesheet" id="ki-live-video-conferences-zoom-css" href="http://wp.lab/wp-content/plugins/ki-live-video-conferences/video_chat/assets/css/style.css?ver=1.2.3" media="all">
@@ -9321,6 +9526,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/labtheme-companion/public/js/labtheme-companion-public.js?ver=1.0.0"></script>
<!-- lamoud-pregnancy-calculator -->
<link rel="stylesheet" id="lmpc-style-css" href="http://wp.lab/wp-content/plugins/lamoud-pregnancy-calculator/includes/lamoud.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/lamoud-pregnancy-calculator//includes/lamoud.js?ver=1.0.0" id="lmpc-js-js"></script>
<!-- lana-breadcrumb -->
<link rel="stylesheet" id="lana-breadcrumb-css" href="http://wp.lab/wp-content/plugins/lana-breadcrumb//assets/css/lana-breadcrumb.css?ver=1.0.5" type="text/css" media="all">
@@ -9802,6 +10012,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/localtime/localtime.js?ver=1.2.1"></script>
<!-- locatepress -->
<link rel="stylesheet" id="locatepress-css" href="http://wp.lab/wp-content/plugins/locatepress/public/css/locatepress-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/locatepress/public/css/bootstrap.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="owl-min-css-css" href="http://wp.lab/wp-content/plugins/locatepress/public/css/owl.carousel.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="owl-carasoul-css-css" href="http://wp.lab/wp-content/plugins/locatepress/public/css/owl.theme.default.min.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/locatepress/public/js/bootstrap.js?ver=1.0.0" id="bootstrapjs-js"></script>
<script src="http://wp.lab/wp-content/plugins/locatepress/public/js/single-slider.js?ver=1.0.0" id="single-slider-owl-js"></script>
<script src="http://wp.lab/wp-content/plugins/locatepress/public/js/locatepress-public.js?ver=1.0.0" id="locatepress-js"></script>
<!-- location-finder -->
<link rel="stylesheet" id="location-finder-bootstrap-liw-css" href="http://wp.lab/wp-content/plugins/location-finder/public/css/bootstrap-liw.min.css?ver=1.1.1" media="all">
<link rel="stylesheet" id="location-finder-fontawesome-css" href="http://wp.lab/wp-content/plugins/location-finder/public/css/fontawesome.min.css?ver=1.1.1" media="all">
@@ -10042,6 +10262,14 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lz-scroll-bar/js/jquery.nicescroll.min.js?ver=1.0" id="lz-scrollbar-main-js"></script>
<!-- maakapay-invoice-payer -->
<link rel="stylesheet" id="maakapay-wordpress-css" href="http://wp.lab/wp-content/plugins/maakapay-invoice-payer/public/css/maakapay-wordpress-public.css?ver=1.0.1" media="all">
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/maakapay-invoice-payer/public/css/bootstrap.min.css?ver=1.0.1" media="all">
<link rel="stylesheet" id="payment-form-css" href="http://wp.lab/wp-content/plugins/maakapay-invoice-payer/public/css/maakapay-payment-form.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/maakapay-invoice-payer/public/js/maakapay-wordpress-public.js?ver=1.0.1" id="maakapay-wordpress-js"></script>
<script src="http://wp.lab/wp-content/plugins/maakapay-invoice-payer/public/js/jquery.validate.min.js?ver=1.0.1" id="validator-js"></script>
<!-- mabel-shoppable-images-lite -->
<link rel="stylesheet" id="mabel-shoppable-images-lite-css" href="http://wp.lab/wp-content/plugins/mabel-shoppable-images-lite/public/css/public.min.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mabel-shoppable-images-lite/public/js/public.min.js?ver=1.0.2"></script>
@@ -10137,6 +10365,12 @@
<link rel="stylesheet" id="magical-blocks-style-css" href="http://wp.lab/wp-content/plugins/magical-blocks/assets/css/mg-blocks.css?ver=1.0.0" media="all">
<!-- magical-posts-display -->
<link rel="stylesheet" id="mpd-style-css" href="http://wp.lab/wp-content/plugins/magical-posts-display/assets/css/mp-style.css?ver=1.2.1" media="all">
<script src="http://wp.lab/wp-content/plugins/magical-posts-display/assets/js/main.js?ver=1.2.1" id="mpd-main-js"></script>
<link rel="stylesheet" id="mpd-fonts-css" href="http://wp.lab/wp-content/plugins/magical-posts-display/assets/css/fontello.css?ver=1.2.1" media="all">
<!-- mailbluster4wp -->
<link rel="stylesheet" id="mailbluster4wp-css" href="http://wp.lab/wp-content/plugins/mailbluster4wp/public/css/mailbluster4wp-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailbluster4wp/public/js/mailbluster4wp-public.js?ver=1.0.0"></script>
@@ -10571,6 +10805,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mention-comments-authors/js/mca-comment-script.min.js?ver=0.9.8"></script>
<!-- mentor-icon-pack-for-beaver-page-builder -->
<link rel="stylesheet" id="materialdesignicons-css" href="http://wp.lab/wp-content/plugins/mentor-icon-pack-for-beaver-page-builder/assets/css/materialdesignicons.min.css?ver=1.0.0" media="all">
<!-- menu-card -->
<link rel="stylesheet" id="menu-card-plugin-style-css" href="http://wp.lab/wp-content/plugins/menu-card/assets/css/public.css?ver=0.8.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/menu-card/assets/js/lib/jquery.touchSwipe.min.js?ver=0.8.0"></script>
@@ -10602,6 +10840,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/menu-manager/display/js/menu-manager.js?ver=1.0.4"></script>
<!-- menukaart -->
<link rel="stylesheet" id="menukaart-front-css" href="http://wp.lab/wp-content/plugins/menukaart/assets/css/menukaart-front.css?ver=1.0" media="">
<script src="http://wp.lab/wp-content/plugins/menukaart/assets/js/menukaart-front.js?ver=1.0" id="menukaart-front-js"></script>
<!-- meow-gallery -->
<link rel="stylesheet" id="mgl-css-css" href="http://wp.lab/wp-content/plugins/meow-gallery/css/mgl.css?ver=1.0.6" type="text/css" media="all">
<link rel="stylesheet" id="justifiedGallery-css-css" href="http://wp.lab/wp-content/plugins/meow-gallery/css/justifiedGallery.min.css?ver=1.0.6" type="text/css" media="all">
@@ -10701,6 +10944,11 @@
<link rel="stylesheet" id="mw-profile-widget-css" href="http://wp.lab/wp-content/plugins/mihanpanel-lite/css/profile-widget.css?ver=8.5" media="all">
<!-- mihanwp-video-speed -->
<link rel="stylesheet" id="mwspeedcss-css" href="http://wp.lab/wp-content/plugins/mihanwp-video-speed/app.css?ver=1.1" media="all">
<script src="http://wp.lab/wp-content/plugins/mihanwp-video-speed/app.js?ver=1.1" id="mwspeedjs-js"></script>
<!-- militant-moderates-css-parent-selector-mmps -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/militant-moderates-css-parent-selector-mmps/js/mmParentSelector.min.js?ver=1.2.2"></script>
@@ -10822,6 +11070,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mobile-menu/includes/js/mobmenu.js?ver=2.7.4.4"></script>
<!-- mobile-responsive-spacers -->
<script src="http://wp.lab/wp-content/plugins/mobile-responsive-spacers/assets/mobile-responsive-spacers.js?ver=1.2.1" id="maz_mrs_scripts-js"></script>
<!-- mobile-switcher -->
<link rel="stylesheet" id="mobile-switcher-css" href="http://wp.lab/wp-content/plugins/mobile-switcher/public/css/mobile-switcher-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mobile-switcher/public/js/mobile-switcher-public.js?ver=1.0.0"></script>
@@ -11167,6 +11419,16 @@
<script src="http://wp.lab/wp-content/plugins/mwb-quick-view-for-woocommerce/common/src/js/mwb-wqv-quick-view-common.js?ver=1.0.0" id="mwb-quick-view-for-woocommercecommon-js"></script>
<!-- mwb-web-notifications-for-wp -->
<link rel="stylesheet" id="mwb-web-notifications-for-wp-css" href="http://wp.lab/wp-content/plugins/mwb-web-notifications-for-wp/public/css/mwb-web-notifications-for-wp-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="mwb-web-notifications-for-wpmin-css-css" href="http://wp.lab/wp-content/plugins/mwb-web-notifications-for-wp/public/css/mwb-public.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="mwb-web-notifications-for-wpcommon-css" href="http://wp.lab/wp-content/plugins/mwb-web-notifications-for-wp/common/css/mwb-web-notifications-for-wp-common.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/mwb-web-notifications-for-wp/public/js/mwb-web-notifications-for-wp-public.js?ver=1.0.0" id="mwb-web-notifications-for-wp-js"></script>
<script src="http://wp.lab/wp-content/plugins/mwb-web-notifications-for-wp/public/js/mwb-public.min.js?ver=1.0.0" id="mwb-web-notifications-for-wpmin-js"></script>
<script src="http://wp.lab/wp-content/plugins/mwb-web-notifications-for-wp//package/lib/sweet-alert.js?ver=1.0.0" id="mwb-web-notifications-for-wpadmin-sweet-alert-js"></script>
<script src="http://wp.lab/wp-content/plugins/mwb-web-notifications-for-wp/common/js/mwb-web-notifications-for-wp-common.js?ver=1.0.0" id="mwb-web-notifications-for-wpcommon-js"></script>
<!-- mwp-side-menu -->
<link rel="stylesheet" id="mwp-side-menu-css" href="http://wp.lab/wp-content/plugins/mwp-side-menu/public/css/style.css?ver=3.1.1" type="text/css" media="all">
<link rel="stylesheet" id="mwp-side-menu-css-css" href="http://wp.lab/wp-content/plugins/mwp-side-menu/public/css/left.css?ver=3.1.1" type="text/css" media="all">
@@ -11238,6 +11500,11 @@
<script src="http://wp.lab/wp-content/plugins/my-video-room/js/monitor.js?ver=1.5.0" id="myvideoroom-monitor-js"></script>
<!-- myagileprivacy -->
<link rel="stylesheet" id="my-agile-privacy-css" href="http://wp.lab/wp-content/plugins/myagileprivacy/frontend/css/my-agile-privacy-frontend.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/myagileprivacy/frontend/js/my-agile-privacy-frontend.js?ver=1.0.0" id="my-agile-privacy-js"></script>
<!-- myanmar-unipress -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/rabbit.js?ver=1.1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/bunny.js?ver=1.1.0"></script>
@@ -11264,6 +11531,10 @@
<script src="http://wp.lab/wp-content/plugins/mycookie-gdpr-compliance/assets/frontend.min.js?ver=1.0.0"></script>
<!-- mycred-badgr-achievement-badge -->
<script src="http://wp.lab/wp-content/plugins/mycred-badgr-achievement-badge/assets/js/front-script.js?ver=1.0" id="mycred_brfront-js-js"></script>
<!-- myego2go-verified-login-for-woocommerce -->
<link rel="stylesheet" id="myego2go-css" href="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/css/myego2go-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/js/myego2go-public.js?ver=1.0.0"></script>
@@ -11903,6 +12174,10 @@
<script src="http://wp.lab/wp-content/plugins/open-in-new-tab-internal-link/public/js/ndh-ointil-public.js?ver=1.0.0"></script>
<!-- open-links-in-sl -->
<script src="http://wp.lab/wp-content/plugins/open-links-in-sl/open-links-in-sl.js?ver=0.7" id="open_sl_links-js"></script>
<!-- open-source-emoji -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/open-source-emoji/pub/js/emoji.min.js?theme=android&amp;ver=1.0.6"></script>
@@ -12256,6 +12531,7 @@
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/turf.js?ver=2.2.0"></script>
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/turf-jsts.js?ver=2.2.0"></script>
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pma.ui.js?ver=2.2.0"></script>
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/lozad.js?ver=2.2.0" id="pma-wordpress_lozad-js"></script>
<!-- pathshala -->
@@ -12990,6 +13266,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/posts-slider-shortcode/js/owl.carousel.js?ver=1.0"></script>
<!-- postsaver -->
<link rel="stylesheet" id="postsaver_frontendui-css" href="http://wp.lab/wp-content/plugins/postsaver/assets/css/postsaver-main-frontend.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/postsaver/assets/js/postsaver_frontend.min.js?ver=1.0.0" id="postsaver_frontendjs-js"></script>
<!-- potenza-slider -->
<link rel="stylesheet" id="samplestyle-css" href="http://wp.lab/wp-content/plugins/potenza-slider/css/ps-style.css?ver=1.0" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/potenza-slider/js/ps-script.js?ver=1.0"></script>
@@ -13197,6 +13478,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/primer-by-chloedigital/public/js/primer-by-chloedigital-public.js?ver=1.0.2"></script>
<!-- print-page -->
<link rel="stylesheet" id="ppb_style-css" href="http://wp.lab/wp-content/plugins/print-page/dist/style.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/print-page/dist/script.js?ver=1.0.1" id="ppb_script-js"></script>
<!-- printedly -->
<link rel="stylesheet" id="printedly-css" href="http://wp.lab/wp-content/plugins/printedly/public/css/printedly-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/printedly/public/js/printedly-public.js?ver=1.0.0"></script>
@@ -13328,6 +13614,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/product-stock-alert-woocommerce/public/js/product-stock-alert-woocommerce-public.js?ver=1.0.0"></script>
<!-- product-thumbnail-gallery-for-woocommerce -->
<link rel="stylesheet" id="ogo-ptg-style-css" href="http://wp.lab/wp-content/plugins/product-thumbnail-gallery-for-woocommerce/assets/css/style.css?ver=2.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/product-thumbnail-gallery-for-woocommerce/assets/js/script.js?ver=2.0.1" id="ogo-ptg-script-js"></script>
<!-- productdyno -->
<link rel="stylesheet" id="productdyno-css" href="http://wp.lab/wp-content/plugins/productdyno/public/css/productdyno-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/productdyno/public/js/productdyno-public.js?ver=1.0.0"></script>
@@ -14220,6 +14511,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rest-api-cache/public/js/rest-api-cache-public.js?ver=1.0.0"></script>
<!-- rest-api-comment -->
<link rel="stylesheet" id="rest-api-comment-css" href="http://wp.lab/wp-content/plugins/rest-api-comment/public/css/rest-api-comment-public.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/rest-api-comment/public/js/rest-api-comment-public.js?ver=1.0.1" id="rest-api-comment-js"></script>
<!-- restaurant-cafe-addon-for-elementor -->
<link rel="stylesheet" id="niche-frame-css" href="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/css/niche-frame.css?ver=1.0" media="all">
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/css/magnific-popup.min.css?ver=1.0" media="all">
@@ -14287,6 +14583,15 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/review-pro/public/js/review-pro-public.js?ver=1.0.0"></script>
<!-- review-slider-for-woocommerce -->
<link rel="stylesheet" id="review-slider-for-woocommerce-public_template1-css" href="http://wp.lab/wp-content/plugins/review-slider-for-woocommerce/public/css/srfw-public_template1.css?ver=1.0" media="all">
<link rel="stylesheet" id="srfw_w3-css" href="http://wp.lab/wp-content/plugins/review-slider-for-woocommerce/public/css/srfw_w3.css?ver=1.0" media="all">
<link rel="stylesheet" id="unslider-css" href="http://wp.lab/wp-content/plugins/review-slider-for-woocommerce/public/css/srfw_unslider.css?ver=1.0" media="all">
<link rel="stylesheet" id="unslider-dots-css" href="http://wp.lab/wp-content/plugins/review-slider-for-woocommerce/public/css/srfw_unslider-dots.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/review-slider-for-woocommerce/public/js/srfw-public.js?ver=1.0" id="review-slider-for-woocommerce_plublic-js"></script>
<script src="http://wp.lab/wp-content/plugins/review-slider-for-woocommerce/public/js/srfw-unslider-min.js?ver=1.0" id="review-slider-for-woocommerce_unslider-min-js"></script>
<!-- reviewbucket-lite -->
<script src="http://wp.lab/wp-content/plugins/reviewbucket-lite/assets/js/main.js?ver=1.0.0"></script>
@@ -14568,6 +14873,11 @@
<script src="http://wp.lab/wp-content/plugins/safan-doc/public/js/safan-doc-public.js?ver=1.0.0" id="safan-doc-public-js"></script>
<!-- safan-guest-post -->
<link rel="stylesheet" id="ml-guest-post-css" href="http://wp.lab/wp-content/plugins/safan-guest-post/public/css/ml-guest-post-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/safan-guest-post/public/js/ml-guest-post-public.js?ver=1.0.0" id="ml-guest-post-js"></script>
<!-- safari-push -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/safari-push/js/safari-push.min.js?ver=1.0"></script>
@@ -14608,6 +14918,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/saleshybrid-forms/handler.js?ver=1.0"></script>
<!-- salon-manager-widgets -->
<link rel="stylesheet" id="salon-manager-widget-css" href="http://wp.lab/wp-content/plugins/salon-manager-widgets/public/css/salon-manager-widget-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/salon-manager-widgets/public/js/salon-manager-widget-public.js?ver=1.0.0" id="salon-manager-widget-js"></script>
<!-- samba-videos -->
<link rel="stylesheet" id="samba-videos-css" href="http://wp.lab/wp-content/plugins/samba-videos/public/css/samba-videos-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/samba-videos/public/js/samba-videos-public.js?ver=1.0.0"></script>
@@ -15357,6 +15672,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sikshya/assets/public/js/custom/tabs.js?ver=0.0.3"></script>
<!-- similar-posts-ai-spai -->
<link rel="stylesheet" id="spai-short_codes-css" href="http://wp.lab/wp-content/plugins/similar-posts-ai-spai/public/css/spai-short_codes.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="spai-css" href="http://wp.lab/wp-content/plugins/similar-posts-ai-spai/public/css/spai-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/similar-posts-ai-spai/public/js/spai-public.js?ver=1.0.0" id="spai-js"></script>
<!-- simple-ab-testing -->
<link rel="stylesheet" id="simple-ab-testing-css" href="http://wp.lab/wp-content/plugins/simple-ab-testing/public/css/wordpress-ab-testing-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-ab-testing/public/js/wordpress-ab-testing-public.js?ver=1.0.0"></script>
@@ -15663,6 +15984,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-url-tracker/public/js/simple-track-public.js?ver=1.0.0"></script>
<!-- simple-video-post -->
<link rel="stylesheet" id="simple-video-post-backward-compatibility-css" href="http://wp.lab/wp-content/plugins/simple-video-post/public/assets/css/backward-compatibility.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="simple-video-post-public-css" href="http://wp.lab/wp-content/plugins/simple-video-post/public/assets/css/public.css?ver=1.0.0" media="all">
<!-- simple-visitor-registration-form -->
<link rel="stylesheet" id="simple-visitor-registration-css" href="http://wp.lab/wp-content/plugins/simple-visitor-registration-form/public/css/simple-visitor-registration-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/simple-visitor-registration-form/public/js/simple-visitor-registration-public.js?ver=1.0.0"></script>
@@ -15774,6 +16100,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/skip-to/js/SkipTo.min.js?ver=2.0.0"></script>
<!-- sksoftware-postone-for-woocommerce -->
<script src="http://wp.lab/wp-content/plugins/sksoftware-postone-for-woocommerce/public/js/sksoftware-postone-for-woocommerce-public.min.js?ver=1.0.0" id="sksoftware-postone-for-woocommerce-js"></script>
<!-- skt-skill-bar -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/skt-skill-bar/skill_bar/circle/jquery.easy-pie-chart.js?ver=1.5"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/skt-skill-bar/skill_bar/circle/custom.js?ver=1.5"></script>
@@ -15981,6 +16311,11 @@
<script src="http://wp.lab/wp-content/plugins/smartarget-line-chat-contact-us/public/js/smartarget-line-public.js?ver=1.0.4" id="smartarget_line-js"></script>
<!-- smartarget-message-bar -->
<link rel="stylesheet" id="smartarget_message_bar-css" href="http://wp.lab/wp-content/plugins/smartarget-message-bar/public/css/smartarget-message-bar-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/smartarget-message-bar/public/js/smartarget-message-bar-public.js?ver=1.0.0" id="smartarget_message_bar-js"></script>
<!-- smartarget-popup -->
<link rel="stylesheet" id="smartarget_popup-css" href="http://wp.lab/wp-content/plugins/smartarget-popup/public/css/smartarget-popup-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/smartarget-popup/public/js/smartarget-popup-public.js?ver=1.0.0" id="smartarget_popup-js"></script>
@@ -16002,6 +16337,11 @@
<link rel="stylesheet" id="smart-ifw-site-css" href="http://wp.lab/wp-content/plugins/smartifw/assets/css/smart_ifw_site.css?ver=1.0.4" type="text/css" media="all">
<!-- smdp-fly-button -->
<link rel="stylesheet" id="smdp_Fly_Button-frontend-css" href="http://wp.lab/wp-content/plugins/smdp-fly-button/assets/css/frontend.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/smdp-fly-button/assets/js/frontend.min.js?ver=1.0.0" id="smdp_Fly_Button-frontend-js"></script>
<!-- smilebox-widget -->
<link rel="stylesheet" id="style.css-css" href="http://wp.lab/wp-content/plugins/smilebox-widget/assets/css/style.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smilebox-widget/assets/js/smile-pingback.js?ver=1.0"></script>
@@ -16229,6 +16569,7 @@
<!-- socialized -->
<link rel="stylesheet" id="socialized-css" href="http://wp.lab/wp-content/plugins/socialized/assets/styles/socialized.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="socialized-css" href="http://wp.lab/wp-content/plugins/socialized/assets/styles/socialized.min.css?ver=1.0.0" media="all">
<!-- socialsnap -->
@@ -16283,6 +16624,11 @@
<script src="http://wp.lab/wp-content/plugins/sopro/public/js/sopro-plugin-public.js?ver=1.0.0" id="sopro-js"></script>
<!-- sortd -->
<link rel="stylesheet" id="sortd-css" href="http://wp.lab/wp-content/plugins/sortd/public/css/plugin-name-public.css?ver=1.0.7" media="all">
<script src="http://wp.lab/wp-content/plugins/sortd/public/js/plugin-name-public.js?ver=1.0.7" id="sortd-js"></script>
<!-- source-affix -->
<link rel="stylesheet" id="source-affix-plugin-styles-css" href="http://wp.lab/wp-content/plugins/source-affix/css/public.css?ver=1.5.0" type="text/css" media="all">
@@ -16370,6 +16716,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/splash-popup-for-woocommerce/js/frontend.js?ver=1.0.9"></script>
<!-- splashmaker -->
<script src="http://wp.lab/wp-content/plugins/splashmaker/public/js/splashmaker-public.js?ver=1.0.0" id="splashmaker-js"></script>
<script src="http://wp.lab/wp-content/plugins/splashmaker/public/js/splashmaker-custom.js?ver=1.0.0" id="splashmaker-custom.js-js"></script>
<!-- spoken-search -->
<link rel="stylesheet" id="ss2t-css-css" href="http://wp.lab/wp-content/plugins/spoken-search/assets/css/ss2t.min.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/spoken-search/assets/js/ss2t-bundle.min.js?ver=1.0"></script>
@@ -16507,6 +16858,20 @@
<script src="http://wp.lab/wp-content/plugins/stapp-video/includes/js/FrontendScript.js?ver=1.0" id="STAppFrontendVideoScript-js"></script>
<!-- star-addons-for-elementor -->
<link rel="stylesheet" id="star-addons-bootstrap-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/bootstrap.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="star-addons-learnpress-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/learnpress.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="star-addons-owl-carousel-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/owl.carousel.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="star-addons-owl-theme-default-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/owl.theme.default.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="star-addons-animate-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/animate.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="star-addons-meanmenu-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/meanmenu.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="star-addons-public-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/star-addons-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="star-addons-public-responsive-css" href="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/css/star-addons-public-responsive.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/js/bootstrap-bundle-min.js?ver=1.0.0" id="star-addons-bootstrap-js"></script>
<script src="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/js/owl.carousel.min.js?ver=1.0.0" id="star-addons-owl-carousel-js"></script>
<script src="http://wp.lab/wp-content/plugins/star-addons-for-elementor/public/js/meanmenu.min.js?ver=1.0.0" id="star-addons-meanmenu-js"></script>
<!-- status-buddy -->
<link rel="stylesheet" id="status-buddy-css" href="http://wp.lab/wp-content/plugins/status-buddy/public/css/status-buddy-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/status-buddy/public/js/status-buddy-public.js?ver=1.0.0"></script>
@@ -16592,6 +16957,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-related-posts/js/sticky-related-posts.js?ver=1.0"></script>
<!-- sticky-review -->
<link rel="stylesheet" id="review-style-css" href="http://wp.lab/wp-content/plugins/sticky-review/public/assets/css/review-style.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/sticky-review/public/assets/js/main.js?ver=1.0.0" id="sticky-main-js-js"></script>
<!-- sticky-social-icons -->
<link rel="stylesheet" id="sticky-social-icons-css" href="http://wp.lab/wp-content/plugins/sticky-social-icons/public/assets/build/css/sticky-social-icons-public.css?ver=1.0.0" media="all">
@@ -16680,6 +17050,11 @@
<script src="http://wp.lab/wp-content/plugins/streamcast/public/js/streamcast-final.js?ver=1.1"></script>
<!-- streamweasels-twitch-integration -->
<link rel="stylesheet" id="streamweasels-css" href="http://wp.lab/wp-content/plugins/streamweasels-twitch-integration/public/dist/streamweasels-public.min.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/streamweasels-twitch-integration/public/dist/streamweasels-public.min.js?ver=1.0.0" id="streamweasels-js"></script>
<!-- stripe -->
<link rel="stylesheet" id="simpay-public-css" href="http://wp.lab/wp-content/plugins/stripe/assets/css/public.min.css?ver=2.1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stripe/assets/js/vendor/accounting.min.js?ver=2.1.1"></script>
@@ -16846,6 +17221,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/supportifywp/public/js/scripts.min.js?ver=1.0.1"></script>
<!-- supreme-maps -->
<link rel="stylesheet" id="supreme_maps-leaflet-css" href="http://wp.lab/wp-content/plugins/supreme-maps/assets/leaflet/leaflet.css?ver=1.0.4" media="all">
<!-- surbma-smooth-scroll -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/surbma-smooth-scroll/js/surbma-smooth-scroll.js?ver=1.0.2"></script>
@@ -17130,6 +17509,14 @@
<link rel="stylesheet" id="taro-iframe-block-css" href="http://wp.lab/wp-content/plugins/taro-iframe-block/dist/css/style.css?ver=1.0.2" media="all">
<!-- taro-lead-next -->
<link rel="stylesheet" id="tsln-lead-block-css" href="http://wp.lab/wp-content/plugins/taro-lead-next/dist/css/lead-block.css?ver=1.0.3" media="all">
<!-- taro-taxonomy-blocks -->
<link rel="stylesheet" id="taro-terms-block-css" href="http://wp.lab/wp-content/plugins/taro-taxonomy-blocks/dist/css/style-block-terms.css?ver=1.0.6" media="all">
<!-- tashortcodes -->
<link rel="stylesheet" id="ta-shortcodes-plugin-styles-css" href="http://wp.lab/wp-content/plugins/tashortcodes/public/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tashortcodes/public/assets/js/public.js?ver=1.0.0"></script>
@@ -17341,6 +17728,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/the-contento/public/js/wp-contento-public.js?ver=1.2"></script>
<!-- the-moon -->
<script src="http://wp.lab/wp-content/plugins/the-moon/includes/Complications_Moon.min.js?ver=1.0.1" id="complications_moon_main-js"></script>
<script src="http://wp.lab/wp-content/plugins/the-moon/includes/Complications_Moon_Block.min.js?ver=1.0.1" id="complications_moon_block-js"></script>
<!-- the-post-grid -->
<link rel="stylesheet" id="rt-tpg-css-css" href="http://wp.lab/wp-content/plugins/the-post-grid/assets/css/thepostgrid.css?ver=2.2.2" type="text/css" media="all">
@@ -17734,6 +18126,10 @@
<script src="http://wp.lab/wp-content/plugins/tp-woocommerce-product-gallery/public/js/woocommerce-product-gallery-public.js?ver=1.0.0"></script>
<!-- track-the-click -->
<script src="http://wp.lab/wp-content/plugins/track-the-click/public/js/track-the-click-public.js?ver=0.2.15" id="track-the-click-js"></script>
<!-- tractis-identity-verifications -->
<link rel="stylesheet" type="text/css" href="http://wp.lab/wp-content/plugins/tractis-identity-verifications/css/tractis_auth.css?ver=1.4.3">
@@ -18610,6 +19006,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vdpetform/public/js/vdpetform-public.js?ver=1.0.1"></script>
<!-- vdz-content-navigation -->
<script src="http://wp.lab/wp-content/plugins/vdz-content-navigation/assets/js/vdz_content_nav.js?ver=1.1" id="vdz_content_nav-js"></script>
<!-- vdz-show-more -->
<link rel="stylesheet" id="vdz_show_more-css" href="http://wp.lab/wp-content/plugins/vdz-show-more/assets/vdz_show_more.css?ver=1.3.8" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vdz-show-more/assets/vdz_show_more.js?ver=1.3.8"></script>
@@ -18884,6 +19284,10 @@
<link rel="stylesheet" id="w4a-ribbon-style-css" href="http://wp.lab/wp-content/plugins/w4a-ribbon/css/style.css?ver=0.2" type="text/css" media="all">
<!-- w4os-opensimulator-web-interface -->
<link rel="stylesheet" id="w4os-main-css" href="http://wp.lab/wp-content/plugins/w4os-opensimulator-web-interface/css/w4os-min.css?ver=2.1" media="all">
<!-- wa-customer-chat -->
<link rel="stylesheet" id="wcc-public-style-css" href="http://wp.lab/wp-content/plugins/wa-customer-chat/assets/css/wcc-public-style.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wa-customer-chat/assets/js/wcc-public-script.js?ver=1.0"></script>
@@ -18906,6 +19310,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wallkit/public/js/wallkit-wp-public.min.js?v0_1_1&ver=0.1.0"></script>
<!-- wallnament -->
<link rel="stylesheet" id="wallnament-css" href="http://wp.lab/wp-content/plugins/wallnament/public/css/wallnament-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/wallnament/public/js/wallnament-public.js?ver=1.0.0" id="wallnament-js"></script>
<!-- wallsio -->
<link rel="stylesheet" id="wallsio-style-css-css" href="http://wp.lab/wp-content/plugins/wallsio/block/dist/blocks.style.build.css?ver=3.0.4" media="all">
@@ -19005,6 +19414,10 @@
<script src="http://wp.lab/wp-content/plugins/wc-improved-guest-checkout/assets/js/guestCheckout.js?ver=1.0" id="guestCheckout-js"></script>
<!-- wc-instant-shop -->
<link rel="stylesheet" id="instant-shop-for-woocommerce-css" href="http://wp.lab/wp-content/plugins/wc-instant-shop/public/css/instant-shop-for-woocommerce-public.css?ver=1.0.0" media="all">
<!-- wc-mailup -->
<script src="http://wp.lab/wp-content/plugins/wc-mailup/js/mufwc.js?ver=0.9.0" id="mufwc-js-js"></script>
@@ -19265,6 +19678,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/website-password-protection/public/js/website-password-protection-public.js?ver=1.0.0"></script>
<!-- webworkqa -->
<script src="http://wp.lab/wp-content/plugins/webworkqa/assets/js/webwork-redirector.js?ver=1.0.0" id="webwork-redirector-js"></script>
<!-- wechat-shop-download -->
<link rel="stylesheet" id="jquery-loading-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/jquery.loading.min.css?ver=1.0.2" type="text/css" media="all">
<link rel="stylesheet" id="wshop-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/wshop.css?ver=1.0.2" type="text/css" media="all">
@@ -19642,6 +20059,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-correios-calculo-de-frete-na-pagina-do-produto/public/js/woocommerce-correios-calculo-de-frete-na-pagina-do-produto-public.js?ver=1.3.5"></script>
<!-- woo-coupon-reminder -->
<link rel="stylesheet" id="woo-coupon-reminders-css" href="http://wp.lab/wp-content/plugins/woo-coupon-reminder/public/css/woo-coupon-reminder-public.css?ver=2.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/woo-coupon-reminder/public/js/woo-coupon-reminder-public.js?ver=2.0.1" id="woo-coupon-reminders-js"></script>
<!-- woo-coupon-url -->
<link rel="stylesheet" id="woo-coupon-url-css" href="http://wp.lab/wp-content/plugins/woo-coupon-url/public/css/woo-coupon-url-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-coupon-url/public/js/woo-coupon-url-public.js?ver=1.0.0"></script>
@@ -22398,6 +22820,7 @@
<!-- wpdirectorykit -->
<link rel="stylesheet" id="wpdirectorykit-css" href="http://wp.lab/wp-content/plugins/wpdirectorykit/public/css/wpdirectorykit-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/wpdirectorykit/public/js/wpdirectorykit-public.js?ver=1.0.0"></script>
<link rel="stylesheet" id="wpdirectorykit-responsive-css" href="http://wp.lab/wp-content/plugins/wpdirectorykit/public/css/wpdirectorykit-public-responsive.css?ver=1.0.0" media="all">
<!-- wpdownload -->
@@ -23020,6 +23443,11 @@
<script src="http://wp.lab/wp-content/plugins/zhu-posts-icon-carousel/js/zhu-pic-1.js?ver=1.0.0" id="zhu_pic_1_js-js"></script>
<!-- zhuige-user-dummy -->
<link rel="stylesheet" id="zhuige-user-dummy-css" href="http://wp.lab/wp-content/plugins/zhuige-user-dummy/public/css/zhuige-user-dummy-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/zhuige-user-dummy/public/js/zhuige-user-dummy-public.js?ver=1.0.0" id="zhuige-user-dummy-js"></script>
<!-- zi-hide-price-and-add-to-cart-for-woocommerce -->
<link rel="stylesheet" id="zi-woo-hide-price-cart-css" href="http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/css/zi-woo-hide-price-cart-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/js/zi-woo-hide-price-cart-public.js?ver=1.0.0"></script>

View File

@@ -0,0 +1,59 @@
# Copyright (C) 2021 Akshay Shah
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Remove Taxonomy Slug 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/remove-taxonmy-slug\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-13T05:25:44+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: remove-taxonmy-slug\n"
#. Plugin Name of the plugin
msgid "Remove Taxonomy Slug"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/"
msgstr ""
#. Description of the plugin
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
msgstr ""
#. Author of the plugin
msgid "Akshay Shah"
msgstr ""
#: admin/class-remove-taxonmy-slug-admin.php:216
msgid "Nonce are not working"
msgstr ""
#: admin/class-remove-taxonmy-slug-admin.php:231
msgid "Select at least one option"
msgstr ""
#: admin/class-remove-taxonmy-slug-admin.php:247
msgid "Save settings successfully"
msgstr ""
#: admin/partials/remove-taxonmy-slug-admin-display.php:20
msgid "Basic settings"
msgstr ""
#: admin/partials/remove-taxonmy-slug-admin-display.php:31
msgid "List of taxonomy"
msgstr ""
#: admin/partials/remove-taxonmy-slug-admin-display.php:53
msgid "Save Changes"
msgstr ""
#: admin/partials/remove-taxonmy-slug-admin-display.php:59
msgid "You can make the donation if you like the plugin click the <a href =\"https://paypal.me/imobsphere?locale.x=en_GB\" target=\"_blank\">donation</a>."
msgstr ""

View File

@@ -0,0 +1,203 @@
# Copyright (C) 2021 SecurePay Sdn Bhd
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: SecurePay for FluentForms 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/securepay-for-fluentforms\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-29T06:08:54+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: securepayffm\n"
#. Plugin Name of the plugin
msgid "SecurePay for FluentForms"
msgstr ""
#. Plugin URI of the plugin
msgid "https://securepay.my/?utm_source=wp-plugins-fluentforms&utm_campaign=plugin-uri&utm_medium=wp-dash"
msgstr ""
#. Description of the plugin
msgid "Accept payment by using SecurePay. A Secure Marketplace Platform for Malaysian."
msgstr ""
#. Author of the plugin
msgid "SecurePay Sdn Bhd"
msgstr ""
#. Author URI of the plugin
msgid "https://securepay.my/?utm_source=wp-plugins-fluentforms&utm_campaign=author-uri&utm_medium=wp-dash"
msgstr ""
#: includes/src/SecurePayFluentForms.php:77
msgid "SecurePay for FluentForms require Fluent Forms Pro plugin. Please install and activate."
msgstr ""
#: includes/src/SecurePayHandler.php:40
msgid "SecurePay"
msgstr ""
#: includes/src/SecurePayHandler.php:68
msgid "Please provide Sandbox Token"
msgstr ""
#: includes/src/SecurePayHandler.php:72
msgid "Please provide Sandbox Checksum Token"
msgstr ""
#: includes/src/SecurePayHandler.php:76
msgid "Please provide Sandbox UID"
msgstr ""
#: includes/src/SecurePayHandler.php:82
msgid "Please provide Live Token"
msgstr ""
#: includes/src/SecurePayHandler.php:86
msgid "Please provide Live Checksum Token"
msgstr ""
#: includes/src/SecurePayHandler.php:90
msgid "Please provide Live UID"
msgstr ""
#: includes/src/SecurePayHandler.php:97
msgid "Please select Payment Mode"
msgstr ""
#: includes/src/SecurePayHandler.php:124
msgid "Enable SecurePay Payment Method"
msgstr ""
#: includes/src/SecurePayHandler.php:135
msgid "Select the payment mode. For testing purposes you should select Test Mode to test without credentials, or Sandbox Mode, otherwise select Live mode."
msgstr ""
#: includes/src/SecurePayHandler.php:141
msgid "Show Bank List"
msgstr ""
#: includes/src/SecurePayHandler.php:142
#: includes/src/SecurePayHandler.php:148
msgid "Enable"
msgstr ""
#: includes/src/SecurePayHandler.php:147
msgid "Use Supported Bank Logo"
msgstr ""
#: includes/src/SecurePayHandler.php:152
msgid "Your Live API Credentials"
msgstr ""
#: includes/src/SecurePayHandler.php:158
#: includes/src/SecurePayHandler.php:159
msgid "Live Token"
msgstr ""
#: includes/src/SecurePayHandler.php:160
msgid "Provide your SecurePay Live Token"
msgstr ""
#: includes/src/SecurePayHandler.php:167
#: includes/src/SecurePayHandler.php:168
msgid "Live Checksum Token"
msgstr ""
#: includes/src/SecurePayHandler.php:169
msgid "Provide your SecurePay Live Checksum Token"
msgstr ""
#: includes/src/SecurePayHandler.php:176
#: includes/src/SecurePayHandler.php:177
msgid "Live UID"
msgstr ""
#: includes/src/SecurePayHandler.php:178
msgid "Provide your SecurePay Live UID"
msgstr ""
#: includes/src/SecurePayHandler.php:185
msgid "Live Partner UID"
msgstr ""
#: includes/src/SecurePayHandler.php:186
msgid "Live Partner UID (Optional)"
msgstr ""
#: includes/src/SecurePayHandler.php:187
msgid "Provide your SecurePay Live Partner UID"
msgstr ""
#: includes/src/SecurePayHandler.php:192
msgid "Your Sandbox API Credentials"
msgstr ""
#: includes/src/SecurePayHandler.php:198
#: includes/src/SecurePayHandler.php:199
msgid "Sandbox Token"
msgstr ""
#: includes/src/SecurePayHandler.php:200
msgid "Provide your SecurePay Sandbox Token"
msgstr ""
#: includes/src/SecurePayHandler.php:207
#: includes/src/SecurePayHandler.php:208
msgid "Sandbox Checksum Token"
msgstr ""
#: includes/src/SecurePayHandler.php:209
msgid "Provide your SecurePay Sandbox Checksum Token"
msgstr ""
#: includes/src/SecurePayHandler.php:216
#: includes/src/SecurePayHandler.php:217
msgid "Sandbox UID"
msgstr ""
#: includes/src/SecurePayHandler.php:218
msgid "Provide your SecurePay Sandbox UID"
msgstr ""
#: includes/src/SecurePayHandler.php:225
msgid "Sandbox Partner UID"
msgstr ""
#: includes/src/SecurePayHandler.php:226
msgid "Sandbox Partner UID (Optional)"
msgstr ""
#: includes/src/SecurePayHandler.php:227
msgid "Provide your SecurePay Sandbox Partner UID"
msgstr ""
#: includes/src/SecurePayProcessor.php:359
msgid "Payment Completed"
msgstr ""
#: includes/src/SecurePayProcessor.php:381
msgid "Payment Cancelled"
msgstr ""
#: includes/src/SecurePayProcessor.php:381
msgid "Payment Timeout"
msgstr ""
#: includes/src/SecurePayProcessor.php:383
msgid "Looks like you have cancelled the payment"
msgstr ""
#: includes/src/SecurePayProcessor.php:383
msgid "Looks like the payment has been timeout"
msgstr ""
#: includes/src/SecurePayProcessor.php:493
#: includes/src/SecurePayProcessor.php:494
msgid "Invalid response"
msgstr ""

View File

@@ -0,0 +1,252 @@
# Copyright (C) 2021 Suman Bhattarai
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Send Users Email 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/send-users-email\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-09-19T18:04:46+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: send-users-email\n"
#. Plugin Name of the plugin
#: admin/class-send-users-email-admin.php:66
msgid "Send Users Email"
msgstr ""
#. Plugin URI of the plugin
msgid "https://sumanbhattarai.com.np"
msgstr ""
#. Description of the plugin
msgid "Easily send emails to your users. Select individual users or role to send the email."
msgstr ""
#. Author of the plugin
msgid "Suman Bhattarai"
msgstr ""
#. Author URI of the plugin
msgid "http://sumanbhattarai.com.np"
msgstr ""
#: admin/class-send-users-email-admin.php:67
msgid "Email to users"
msgstr ""
#: admin/class-send-users-email-admin.php:76
#: admin/class-send-users-email-admin.php:77
#: admin/partials/admin-dashboard.php:7
msgid "Dashboard"
msgstr ""
#: admin/class-send-users-email-admin.php:85
#: admin/class-send-users-email-admin.php:86
msgid "Email Users"
msgstr ""
#: admin/class-send-users-email-admin.php:94
#: admin/class-send-users-email-admin.php:95
msgid "Email Roles"
msgstr ""
#: admin/class-send-users-email-admin.php:103
#: admin/class-send-users-email-admin.php:104
#: admin/partials/settings.php:7
msgid "Settings"
msgstr ""
#: admin/class-send-users-email-admin.php:169
#: admin/class-send-users-email-admin.php:296
msgid "Subject is required and should be between 2 and 200 characters."
msgstr ""
#: admin/class-send-users-email-admin.php:173
#: admin/class-send-users-email-admin.php:300
msgid "Please provide email content."
msgstr ""
#: admin/class-send-users-email-admin.php:177
msgid "Please select users."
msgstr ""
#: admin/class-send-users-email-admin.php:304
msgid "Please select role(s)."
msgstr ""
#: admin/class-send-users-email-admin.php:443
msgid "Please provide valid image URL.."
msgstr ""
#: admin/class-send-users-email-admin.php:447
msgid "Please provide a bit more title."
msgstr ""
#: admin/class-send-users-email-admin.php:451
msgid "Please provide a bit more tagline."
msgstr ""
#: admin/class-send-users-email-admin.php:455
msgid "Please provide a bit more footer content."
msgstr ""
#: admin/partials/admin-dashboard.php:12
msgid "Total Users"
msgstr ""
#: admin/partials/admin-dashboard.php:23
msgid "%s"
msgstr ""
#: admin/partials/admin-dashboard.php:39
msgid "About"
msgstr ""
#: admin/partials/admin-dashboard.php:40
msgid "Send email to users by selecting individual users or bulk send emails using roles."
msgstr ""
#: admin/partials/admin-dashboard.php:46
msgid "Please don't SPAM"
msgstr ""
#: admin/partials/admin-dashboard.php:47
msgid "You don't like spam, I don't like spam, nobody likes spam."
msgstr ""
#: admin/partials/admin-dashboard.php:48
msgid "Please be responsible and don't spam your users."
msgstr ""
#: admin/partials/admin-dashboard.php:49
msgid "With great power comes great responsibility."
msgstr ""
#: admin/partials/roles-email.php:7
msgid "Send email to selected roles"
msgstr ""
#: admin/partials/roles-email.php:13
#: admin/partials/users-email.php:13
msgid "Email Subject"
msgstr ""
#: admin/partials/roles-email.php:15
#: admin/partials/users-email.php:15
msgid "Email subject here"
msgstr ""
#: admin/partials/roles-email.php:20
msgid "Select Role(s)"
msgstr ""
#: admin/partials/roles-email.php:46
#: admin/partials/users-email.php:48
msgid "Email Message"
msgstr ""
#: admin/partials/roles-email.php:62
#: admin/partials/users-email.php:64
msgid "Send Message"
msgstr ""
#: admin/partials/roles-email.php:89
#: admin/partials/settings.php:88
#: admin/partials/users-email.php:89
msgid "Instruction"
msgstr ""
#: admin/partials/roles-email.php:90
msgid "Send email to all users belonging to selected roles."
msgstr ""
#: admin/partials/roles-email.php:95
#: admin/partials/users-email.php:95
msgid "Placeholder"
msgstr ""
#: admin/partials/roles-email.php:96
#: admin/partials/users-email.php:96
msgid "You can use following placeholder to replace user detail on email."
msgstr ""
#: admin/partials/roles-email.php:101
#: admin/partials/users-email.php:101
msgid "Use this placeholder to display user display name"
msgstr ""
#: admin/partials/roles-email.php:107
#: admin/partials/users-email.php:107
msgid "Use this placeholder to display user first name"
msgstr ""
#: admin/partials/roles-email.php:113
#: admin/partials/users-email.php:113
msgid "Use this placeholder to display user last name"
msgstr ""
#: admin/partials/roles-email.php:119
#: admin/partials/users-email.php:119
msgid "Use this placeholder to display user email"
msgstr ""
#: admin/partials/settings.php:19
msgid "Add email header logo URL here. If left blank, logo will not be used."
msgstr ""
#: admin/partials/settings.php:31
msgid "This value will be shown below logo image."
msgstr ""
#: admin/partials/settings.php:43
msgid "This value will be shown below email title image."
msgstr ""
#: admin/partials/settings.php:55
msgid "Email footer content will be added to all emails at footer part of email."
msgstr ""
#: admin/partials/settings.php:72
msgid "Save Settings"
msgstr ""
#: admin/partials/settings.php:89
msgid "Please configure email settings before sending emails."
msgstr ""
#: admin/partials/settings.php:90
msgid "If the settings fields are left blank, the corresponding section will not be added to email."
msgstr ""
#: admin/partials/settings.php:91
msgid "Example: If you leave logo setting blank, no logo will be added to outgoing emails."
msgstr ""
#: admin/partials/users-email.php:7
msgid "Send email to selected users"
msgstr ""
#: admin/partials/users-email.php:21
msgid "Select Users"
msgstr ""
#: admin/partials/users-email.php:26
msgid "ID"
msgstr ""
#: admin/partials/users-email.php:27
msgid "Name"
msgstr ""
#: admin/partials/users-email.php:28
msgid "Email"
msgstr ""
#: admin/partials/users-email.php:90
msgid "Send email to individual users by selecting them from the user list.."
msgstr ""

View File

@@ -0,0 +1,244 @@
# Copyright (C) 2021 seocopy
# This file is distributed under the same license as the seocopy plugin.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: "
"seocopy 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/"
"support/plugin/seocopy\n"
"PO-Revision-Date: \n"
"Last-Translator: seocopy "
"<you@example.com>\n"
"Language-Team: seocopy "
"<translations@example."
"com>\n"
"Report-Msgid-Bugs-To: "
"seocopy "
"<translations@example."
"com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/"
"plain; charset=UTF-8\n"
"Content-Transfer-"
"Encoding: 8bit\n"
"Plural-Forms: "
"nplurals=2; plural=n != "
"1;\n"
"X-Textdomain-Support: "
"yesX-Generator: Poedit "
"1.6.4\n"
"X-Poedit-SourceCharset: "
"UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;esc_html_e;"
"esc_html_x:1,2c;"
"esc_html__;esc_attr_e;"
"esc_attr_x:1,2c;"
"esc_attr__;_ex:1,2c;"
"_nx:4c,1,2;"
"_nx_noop:4c,1,2;_x:1,2c;"
"_n:1,2;_n_noop:1,2;"
"__ngettext:1,2;"
"__ngettext_noop:1,2;_c,"
"_nc:4c,1,2\n"
"X-Poedit-Basepath: ..\n"
"POT-Creation-Date: \n"
"Language: en_US\n"
"X-Generator: Poedit "
"2.1.1\n"
"X-Poedit-"
"SearchPath-0: .\n"
#: admin/class-seocopy-admin.php:135
msgid ""
"There was an error "
"adding this setting. "
"Please try again. If "
"this persists, shoot us "
"an email."
msgstr ""
#: admin/class-seocopy-admin.php:175
msgid "Key not valid"
msgstr ""
#: admin/class-seocopy-admin.php:184
msgid ""
"You can register to "
"seocopy for free at <a "
"target=\"_blank\" ref="
"\"nofollow\" href="
"\"https://www.seocopy."
"com/\">seocopy.com</a>"
msgstr ""
#: admin/class-seocopy-admin.php:246
msgid "English"
msgstr ""
#: admin/class-seocopy-admin.php:246
msgid "Italian"
msgstr ""
#: admin/class-seocopy-admin.php:246
msgid "French"
msgstr ""
#: admin/class-seocopy-admin.php:246
msgid "Spanish"
msgstr ""
#: admin/includes/class-seocopy-api.php:9
msgid ""
"Connection unavailable, "
"error"
msgstr ""
#: admin/includes/class-seocopy-api.php:13
msgid ""
"Connection unavailable"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:5
msgid "Wrong tag used"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:6
msgid "Article title"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:7
msgid "Bold"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:8
msgid "Paragraph"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:9
msgid "Title 2"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:14
msgid "Language"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:21
msgid ""
"Enter a keyword or a "
"topic"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:23
msgid "Search"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:26
msgid ""
"Loading results.. Please "
"wait"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:32
msgid ""
"We are looking for "
"keywords.. meawhile, you "
"can start writing! "
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:33
msgid ""
"Try to write an in depth "
"long article for your "
"keyword"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:34
msgid ""
"Remember to use your "
"goal keyword “$query” in "
"titles and paragraphs."
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:35
msgid ""
"Optimize titles, "
"subtitles and text with "
"semantic related "
"keywords for better "
"rankings"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:36
msgid ""
"Use images and remember "
"to use keywords in "
"images too!"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:37
msgid ""
"Write short paragraphs, "
"and use subtitles to "
"make an article easy to "
"understand"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:46
msgid ""
"Unable to connect.. "
"Please retry"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:47
msgid ""
"Balance finished, you "
"can top it up clicking "
"here"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:48
msgid ""
"No key added, please "
"click here to set it"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:49
msgid ""
"Wrong key, please check"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:64
msgid "Reset"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:66
msgid ""
"Are you sure? The "
"current search will be "
"lost and you will have "
"to submit a new one"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:67
msgid "Cancel reset"
msgstr ""
#: admin/partials/seocopy-admin-custom-box.php:68
msgid "Confirm reset"
msgstr ""
#: admin/partials/seocopy-admin-display.php:3
msgid "seocopy Settings"
msgstr ""
#: admin/partials/seocopy-admin-display.php:18
msgid "Balance"
msgstr ""
#: admin/partials/seocopy-admin-display.php:19
msgid ""
"Your current balance is:"
msgstr ""

View File

@@ -0,0 +1,31 @@
# Copyright (C) 2021 Sepordeh
# This file is distributed under the same license as the Sepordeh payment gateway for Easy Digital Downloads (EDD) plugin.
msgid ""
msgstr ""
"Project-Id-Version: Sepordeh payment gateway for Easy Digital Downloads (EDD) 3.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sepordeh-payment-gateway-for-easy-digital-downloads-edd\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-05-08T07:36:36+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: sepordeh-payment-gateway-for-easy-digital-downloads-edd\n"
#. Plugin Name of the plugin
msgid "Sepordeh payment gateway for Easy Digital Downloads (EDD)"
msgstr ""
#. Description of the plugin
msgid "This plugin adds <a href="https://sepordeh.com">Sepordeh</a> payment method for Easy Digital Downloads (EDD)"
msgstr ""
#. Author of the plugin
msgid "Sepordeh"
msgstr ""
#. Author URI of the plugin
msgid "https://sepordeh.com"
msgstr ""

View File

@@ -0,0 +1,31 @@
# Copyright (C) 2021 Sepordeh
# This file is distributed under the same license as the Sepordeh payment gateway for Woocommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: Sepordeh payment gateway for Woocommerce 1.4.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sepordeh-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-05-08T07:36:36+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: sepordeh-woocommerce\n"
#. Plugin Name of the plugin
msgid "Sepordeh payment gateway for Woocommerce"
msgstr ""
#. Description of the plugin
msgid "This plugin adds <a href="https://sepordeh.com">Sepordeh</a> payment method for WooCommerce"
msgstr ""
#. Author of the plugin
msgid "Sepordeh"
msgstr ""
#. Author URI of the plugin
msgid "https://sepordeh.com"
msgstr ""

View File

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

View File

@@ -0,0 +1,522 @@
# Copyright (C) 2021 Simeon Kolev & Martin Shterev from SK Software Ltd.
# This file is distributed under the same license as the SKSoftware PostOne for WooCommerce plugin.
msgid ""
msgstr ""
"Project-Id-Version: SKSoftware PostOne for WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sksoftware-postone-for-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-18T18:57:13+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: sksoftware-postone-for-woocommerce\n"
#. Plugin Name of the plugin
msgid "SKSoftware PostOne for WooCommerce"
msgstr ""
#. Plugin URI of the plugin
msgid "https://sk-soft.net/plugins/postone-for-woocommerce/"
msgstr ""
#. Description of the plugin
msgid "This plugin integrates PostOne shipping method for WooCommerce."
msgstr ""
#. Author of the plugin
msgid "Simeon Kolev & Martin Shterev from SK Software Ltd."
msgstr ""
#. Author URI of the plugin
msgid "https://sk-soft.net"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-admin.php:85
msgid "SKSoftware PostOne for WooCommerce requires WooCommerce to be installed and active."
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-admin.php:115
msgid "WooCommerce currency is set to one of BGN, EUR, USD, GBP, CHF, JPY, RUB"
msgstr ""
#. translators: %s: Error message
#: admin/class-sksoftware-postone-for-woocommerce-admin.php:120
msgid "SKSoftware PostOne for WooCommerce requires that %s"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-admin.php:121
msgid "and"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-create-shipment-order-action.php:59
msgid "Create PostOne shipment"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-create-shipment-order-action.php:71
#: admin/class-sksoftware-postone-for-woocommerce-delete-shipment-order-action.php:73
#: admin/class-sksoftware-postone-for-woocommerce-print-shipment-label-order-action.php:72
msgid "Order shipping method must be PostOne."
msgstr ""
#. translators: %s: Shipment number
#: admin/class-sksoftware-postone-for-woocommerce-create-shipment-order-action.php:85
msgid "PostOne shipment created."
msgstr ""
#. translators: %s: Shipment number
#: admin/class-sksoftware-postone-for-woocommerce-create-shipment-order-action.php:85
msgid "Shipment number %s."
msgstr ""
#. translators: %s: Tracking link
#: admin/class-sksoftware-postone-for-woocommerce-create-shipment-order-action.php:99
msgid "Your tracking link is: %s"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-delete-shipment-order-action.php:61
msgid "Delete PostOne shipment"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-delete-shipment-order-action.php:81
msgid "Unable to delete PostOne shipment."
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-delete-shipment-order-action.php:84
msgid "PostOne shipment deleted."
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:57
msgid "Settings for your PostOne shipment."
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:78
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:115
msgid "Invalid post type."
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:122
msgid "Order shipping method is not PostOne."
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:208
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:173
msgid "No insurance"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:229
msgid "Delivered At Place (named place of destination)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:230
msgid "Delivered Duty Paid (named place of destination)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:231
msgid "EX Works (named place)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:232
msgid "Free Carrier (named place)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:233
msgid "Free Alongside Ship (named port of shipment)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:234
msgid "Free On Board (named port of shipment)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:235
msgid "Cost and Freight (named port of destination)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:236
msgid "Cost, Insurance and Freight (named port of destination)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:237
msgid "Carriage Paid To (named place of destination)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:238
msgid "Carriage and Insurance Paid То (named place of destination)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:239
msgid "Delivered At Terminal (named terminal of destination)"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:249
msgid "No"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-order-meta-box.php:250
msgid "Yes"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-print-shipment-label-order-action.php:57
msgid "Print PostOne shipment label"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-recalculate-shipping-order-action.php:59
msgid "Recalculate PostOne shipping"
msgstr ""
#: admin/class-sksoftware-postone-for-woocommerce-recalculate-shipping-order-action.php:93
msgid "PostOne shipping recalculated."
msgstr ""
#: admin/partials/meta_box_form_field.php:9
msgid "Weight (in kg)"
msgstr ""
#: admin/partials/meta_box_form_field.php:10
msgid "Height (in cm)"
msgstr ""
#: admin/partials/meta_box_form_field.php:11
msgid "Width (in cm)"
msgstr ""
#: admin/partials/meta_box_form_field.php:12
msgid "Length (in cm)"
msgstr ""
#: admin/partials/meta_box_form_field.php:13
msgid "Receiver Name"
msgstr ""
#: admin/partials/meta_box_form_field.php:14
msgid "Receiver Email"
msgstr ""
#: admin/partials/meta_box_form_field.php:15
msgid "Receiver Country"
msgstr ""
#: admin/partials/meta_box_form_field.php:16
msgid "Receiver Region"
msgstr ""
#: admin/partials/meta_box_form_field.php:17
msgid "Receiver Postal Code"
msgstr ""
#: admin/partials/meta_box_form_field.php:18
msgid "Receiver City"
msgstr ""
#: admin/partials/meta_box_form_field.php:19
msgid "Receiver Address Line 1"
msgstr ""
#: admin/partials/meta_box_form_field.php:20
msgid "Receiver Address Line 2"
msgstr ""
#: admin/partials/meta_box_form_field.php:21
msgid "Receiver Address Number"
msgstr ""
#: admin/partials/meta_box_form_field.php:22
msgid "Receiver Phone"
msgstr ""
#: admin/partials/meta_box_form_field.php:23
msgid "Receiver Company Name"
msgstr ""
#: admin/partials/meta_box_form_field.php:24
msgid "Receiver Vat Number"
msgstr ""
#: admin/partials/meta_box_form_field.php:25
msgid "Product"
msgstr ""
#: admin/partials/meta_box_form_field.php:26
msgid "Content"
msgstr ""
#: admin/partials/meta_box_form_field.php:27
msgid "Quantity"
msgstr ""
#: admin/partials/meta_box_form_field.php:28
msgid "Sender Country"
msgstr ""
#: admin/partials/meta_box_form_field.php:29
msgid "HS Tariff Code"
msgstr ""
#: admin/partials/meta_box_form_field.php:30
msgid "Insurance"
msgstr ""
#: admin/partials/meta_box_form_field.php:31
msgid "Unit Value"
msgstr ""
#: admin/partials/meta_box_form_field.php:32
msgid "Unit Value Currency"
msgstr ""
#: admin/partials/meta_box_form_field.php:33
msgid "Terms Of Delivery"
msgstr ""
#: admin/partials/meta_box_form_field.php:34
msgid "Notify Receiver"
msgstr ""
#: admin/partials/meta_box_form_field.php:35
msgid "Reference Number"
msgstr ""
#: admin/partials/meta_box_form_field.php:41
msgid "N/A"
msgstr ""
#: admin/partials/meta_box_form_field.php:46
msgid "Should be filled if the shipment goes through customs."
msgstr ""
#: admin/partials/meta_box_form_field.php:49
msgid "Shipment content (items)."
msgstr ""
#: admin/partials/meta_box_form_field.php:50
msgid "Shipment item quantity."
msgstr ""
#: admin/partials/meta_box_form_field.php:51
msgid "Which country does your shipment come from?"
msgstr ""
#: admin/partials/meta_box_form_field.php:53
msgid "Do you want the receiver of the shipment to be notified for its status by PostOne?"
msgstr ""
#: admin/partials/meta_box_form_field.php:54
msgid "Reference number should be the ID of the order in you store."
msgstr ""
#: admin/partials/meta_box_output.php:7
msgid "Unable to connect to PostOne API."
msgstr ""
#: admin/partials/meta_box_output.php:14
msgid "General"
msgstr ""
#: admin/partials/meta_box_output.php:20
msgid "Receiver"
msgstr ""
#: admin/partials/meta_box_output.php:25
msgid "Shipping"
msgstr ""
#: admin/partials/meta_box_output.php:30
msgid "Other"
msgstr ""
#: admin/partials/meta_box_output.php:100
msgid "Recalculate shipping"
msgstr ""
#: admin/partials/meta_box_output.php:104
msgid "Create shipment"
msgstr ""
#: admin/partials/meta_box_output.php:110
msgid "Delete shipment"
msgstr ""
#: admin/partials/meta_box_output.php:114
msgid "Print label"
msgstr ""
#: admin/partials/settings_table_html.php:17
msgid "Actions"
msgstr ""
#: admin/partials/settings_table_html.php:25
msgid "Add new row"
msgstr ""
#: admin/partials/settings_table_row_html.php:15
msgid "Delete"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-api-client.php:253
#: includes/class-sksoftware-postone-for-woocommerce-api-client.php:258
msgid "Unable to create PostOne shipment."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:49
msgid "Allows customers to receive shipments using PostOne."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:80
msgid "SK Software API Key"
msgstr ""
#. translators: %s: SK Software PostOne for WooCommerce plugin link
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:83
msgid "API Key provided by SK Software Ltd. You can buy a license on %s."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:87
msgid "Sender ID"
msgstr ""
#. translators: %1$s: PostOne link %2$s: PostOne senders and users link
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:90
msgid "You can check this value by navigating to %1$s => Settings => Senders and Users => ID or clicking %2$s if you are already signed in."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:94
msgid "Client ID"
msgstr ""
#. translators: %s: PostOne API link
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:97
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:104
msgid "You can generate API keys from %s."
msgstr ""
#. translators: %s: PostOne API link
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:97
msgid "Login with your PostOne account and click \"Create New Client\". In the \"Name\" field type your store name and \"Redirect URL\" should be the URL of your store."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:101
msgid "Client Secret"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:108
msgid "Send tracking link"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:110
msgid "This option can send the tracking number of the shipment to the customer. If the shipment you generated has a tracking number, it will automatically send a note to the customer."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:117
msgid "Title"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:119
msgid "This controls the title of the shipping method, which the user sees during checkout."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:123
msgid "Description"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:125
msgid "This controls the description of the shipping method, which the user sees during checkout."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:128
msgid "Default product weight in kg"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:130
msgid "Weight to be used for products that are without weight."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:134
msgid "Default box height in cm"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:136
msgid "Height to be used for shipment volume."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:140
msgid "Default box width in cm"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:142
msgid "Width to be used for shipment volume."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:146
msgid "Default box length in cm"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:148
msgid "Length to be used for shipment volume."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:152
msgid "PostOne service"
msgstr ""
#. translators: %s: PostOne link
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:155
msgid "Choose which PostOne service to be used. More information about delivery time, pricing and maximum weight of each service can be found in %s."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:168
msgid "PostOne insurance"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:170
msgid "Fill this field if you want your shipment to be insured."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:180
msgid "Merchant shipping fee"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:182
msgid "Used to add the amount you pay for your delivery to go through Econt or another courier to reach PostOne."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:186
msgid "Pricing override"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:188
msgid "This table allows you to change the price according to the conditions set in it. You can learn more about how it works and sample settings for different cases in our documentation."
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:191
msgid "Type"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:194
msgid "Flat rate"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:195
msgid "Merchant pays all below"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:196
msgid "Merchant pays all above"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:200
msgid "Order amount equal or above"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:204
msgid "Weight equal or below"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:208
msgid "Shipping cost equals"
msgstr ""
#: includes/class-sksoftware-postone-for-woocommerce-shipping-method.php:295
msgid "Unable to authenticate PostOne. Please check your API keys and try again."
msgstr ""

View File

@@ -0,0 +1,2 @@
= 1.0.0 =
* Initial release

View File

@@ -0,0 +1,11 @@
=== Customiser Tools For GinkGos ===
== Archived Changelog Entries ==
This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/stats4wp/trunk/readme.txt).
= 1.0.0 (2110) =
*Release Date - 23 October 2021*
* Initial version

View File

@@ -0,0 +1,34 @@
# Changelog
## [1.0.8] - 2021-10-22
## Bug fix
- Fixed bug support all oceanwp demo templates as well
## [1.0.7] - 2021-10-22
### Support WordPress 5.8
- Supporting until the latest version of WordPress 5.8
- Fixed `z-index` issue, works with woocommerce quick previews as well.
- Appreciate @mdmosharofsk for helping solve the bug
## [1.0.6] - 2021-03-27
### Support WordPress 5.7
- Supporting until latest version of WordPress 5.7
### Changed
- Changed the functions order on the main.js file
- Fixed issue number #3
## [1.0.5] - 2020-05-25
### Origial version from wordpress repository
- Oceanwp sticky header plugin publish / updated on wordpress plugins repository.
### Changed
- Readme file fixed
### Added
- Changelog file.
- France translations (.mo/.po) files, Thank's to: momo-fr, Bruno Tritsch (btpub).
## [Unreleased]
## [1.0.5] - 2018-09-24

View File

@@ -0,0 +1,51 @@
# Copyright (C) 2021 Vincent Dubroeucq
# This file is distributed under the same license as the Tiny Block Testimonial plugin.
msgid ""
msgstr ""
"Project-Id-Version: Tiny Block Testimonial 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tiny-block-testimonial\n"
"Last-Translator: Vincent Dubroeucq <vincent@vincentdubroeucq.com>\n"
"Language-Team: Vincent Dubroeucq <vincent@vincentdubroeucq.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-09-29T14:02:52+02:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: tiny-block-testimonial\n"
#. Plugin Name of the plugin
msgid "Tiny Block Testimonial"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/tiny-block-testimonial"
msgstr ""
#. Description of the plugin
msgid "Declares a simple testimonial block."
msgstr ""
#. Author of the plugin
msgid "Vincent Dubroeucq"
msgstr ""
#. Author URI of the plugin
msgid "https://vincentdubroeucq.com/"
msgstr ""
#: build/index.js:1
msgid "Remove image"
msgstr ""
#: build/index.js:1
msgid "Upload testimonial author image"
msgstr ""
#: build/index.js:1
msgid "Write the author testimonial"
msgstr ""
#: build/index.js:1
msgid "Author name"
msgstr ""

View File

@@ -0,0 +1,35 @@
# Copyright (C) 2021 WP Desk
# This file is distributed under the same license as the ShopMagic Multilingual Support plugin.
msgid ""
msgstr ""
"Project-Id-Version: ShopMagic Multilingual Support 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/translate-emails-woocommerce\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-20T07:48:07+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: shopmagic-multilingual\n"
#. Plugin Name of the plugin
msgid "ShopMagic Multilingual Support"
msgstr ""
#. Plugin URI of the plugin
msgid "https://shopmagic.app/products/shopmagic-multilingual/?utm_source=add_plugin_details&utm_medium=link&utm_campaign=plugin_homepage"
msgstr ""
#. Description of the plugin
msgid "Allows creating automations with follow-up and custom emails in two or more languages."
msgstr ""
#. Author of the plugin
msgid "WP Desk"
msgstr ""
#. Author URI of the plugin
msgid "https://shopmagic.app/?utm_source=user-site&utm_medium=quick-link&utm_campaign=author"
msgstr ""

View File

@@ -0,0 +1,2 @@
= 1.0.0 =
* Release Vidjet plugin

View File

@@ -0,0 +1,4 @@
*** Changelog ***
= 0.1 - 2021-09-19 =
* Первый релиз

View File

@@ -0,0 +1,159 @@
# Copyright (C) 2021 Instant Shop for WooCommerce
# This file is distributed under the same license as the Instant Shop for WooCommerce package
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Instant Shop for WooCommerce 1.0.0\n"
"POT-Creation-Date: 2021-09-15 19:04+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: PressTigers <support@presstigers.com>\n"
"Language-Team: PressTigers <support@presstigers.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Loco https://localise.biz/\n"
"X-Poedit-KeywordsList: __;_e;gettext;gettext_noop\n"
"X-Poedit-Basepath: /wp-content/plugins/instant-shop-for-woocommerce/\n"
"Language: \n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;"
#: public/class-instant-shop-for-woocommerce-shop.php:432
#: public/class-instant-shop-for-woocommerce-shop.php:437
msgid " to your cart."
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:425
#, php-format
msgid "%s Product has been added"
msgid_plural "%s Products have been added"
msgstr[0] ""
msgstr[1] ""
#: public/class-instant-shop-for-woocommerce-shop.php:157
msgid "Add to cart"
msgstr ""
#: public/class-instant-shop-for-woocommerce-public.php:106
msgid "AJAX is not working"
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:90
msgid "Completed status"
msgstr ""
#. URI of the plugin
msgid "https://wordpress.org/plugins/instant-shop-for-woocommerce/"
msgstr ""
#. Author URI of the plugin
msgid "https://www.presstigers.com/"
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:70
msgid ""
"If you want to show checkout page on single product page,just enable this "
"checkbox."
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:38
msgid "Instant Shop"
msgstr ""
#. Name of the plugin
msgid "Instant Shop for WooCommerce"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:402
msgid "Not available"
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:62
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:68
msgid "One Page Checkout"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:362
msgid "only allow one of this item"
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:78
msgid "Order Again"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:137
msgid "Order again"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:382
msgid "out of stock"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:62
msgid "Place an Order"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:141
msgid "Please order again against the order id"
msgstr ""
#: public/class-instant-shop-for-woocommerce-public.php:105
msgid "Please select a product"
msgstr ""
#. Author of the plugin
msgid "PressTigers"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:187
msgid "price"
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:84
msgid "Processing status"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:186
msgid "Product"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:182
msgid "Select All"
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:80
msgid ""
"Select the below order status options to allow the customers to reorder a "
"product instantly."
msgstr ""
#: admin/class-instant-shop-for-woocommerce-admin.php:67
msgid "Settings"
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:92
msgid "Show order again button against completed status."
msgstr ""
#: admin/class-instant-shop-for-woocommerce-shop-tab.php:86
msgid "Show order again button against processing status."
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:188
msgid "Total"
msgstr ""
#. Description of the plugin
msgid ""
"User friendly plugin for WooCommerce with single page checkout which "
"facilitates users to shop instantly and to reorder their previously "
"purchased products."
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:425
msgid "View cart"
msgstr ""
#: public/class-instant-shop-for-woocommerce-shop.php:432
#: public/class-instant-shop-for-woocommerce-shop.php:437
msgid "You cannot add another"
msgstr ""

View File

@@ -0,0 +1,4 @@
Spoddano - Cardano For Woocommerce Payment Gateway Plugin - v1.0.0
= 1.0.0 =
* First Stable version released

View File

@@ -0,0 +1,36 @@
# This file is distributed under the same license as the WP LibreJS plugin.
msgid ""
msgstr ""
"Project-Id-Version: WP LibreJS 1.0.0\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Domain: librejs\n"
#. Plugin Name of the plugin
msgid "WP LibreJS"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/wp-librejs/"
msgstr ""
#. Description of the plugin
msgid "Indicate that the JavaScript code used by the site is free software."
msgstr ""
#. Author of the plugin
msgid "Minsc"
msgstr ""
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/minsc78/"
msgstr ""
#: src/Loader.php:169
msgid "Web label"
msgstr ""
#: src/Loader.php:168
msgid "Web labels"
msgstr ""

View File

@@ -0,0 +1,5 @@
/** 1.0.1 - 2021.10.19 **/
-Fix: Taxonomy filter
/** 1.0.0 - 2021.xx.xx **/
~ The first released.

View File

@@ -0,0 +1,303 @@
# Copyright (C) 2021 bttrs
# This file is distributed under the GPLv3.
msgid ""
msgstr ""
"Project-Id-Version: WPSwlr 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpswlr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: WP-CLI 2.5.0\n"
"X-Domain: wpswlr\n"
#. Plugin Name of the plugin
msgid "WPSwlr"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wpswlr.bttrs.org"
msgstr ""
#. Description of the plugin
msgid "Load posts from your Facebook Page to the WordPress website in a simple way."
msgstr ""
#. Author of the plugin
msgid "bttrs"
msgstr ""
#. Author URI of the plugin
msgid "https://bttrs.org"
msgstr ""
#: src/Facebook/Client/FacebookClient.php:34
#: src/Facebook/Client/FacebookClient.php:56
msgid "Missing Facebook Token"
msgstr ""
#: src/Facebook/Client/FacebookClient.php:40
#: src/Facebook/Client/FacebookClient.php:89
msgid "Wrong Facebook response"
msgstr ""
#: src/Facebook/Client/FacebookClient.php:59
msgid "Missing Facebook Page ID"
msgstr ""
#: src/Facebook/Client/FacebookClient.php:86
msgid "Wrong Facebook response: %s"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:56
msgid "Facebook Posts"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:57
msgid "Facebook Post"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:58
msgid "All Facebook Posts"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:59
msgid "Facebook Post Preview"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:60
msgid "View Facebook Post"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:61
msgid "View Facebook Posts"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:62
msgid "Search Facebook Posts"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:63
msgid "No Facebook Posts found"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:64
msgid "No Facebook Posts found in trash"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:65
msgid "Filter Facebook Posts list"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:66
msgid "Facebook Posts list navigation"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:67
msgid "Facebook Posts list"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:68
msgid "Facebook Posts attributes"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:69
msgid "Facebook Post published."
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:70
msgid "Facebook Post published privately."
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:71
msgid "Facebook Post reverted to draft."
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:72
msgid "Facebook Post scheduled."
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:77
msgid "Posts loaded from Facebook feed"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:141
msgid "Facebook Info"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:147
msgid "Post ID"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:153
msgid "URL"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:218
msgid "View"
msgstr ""
#: src/Facebook/PostTypes/FacebookPost.php:227
msgid "Open Original"
msgstr ""
#: src/Facebook/Services/FacebookLoaderService.php:82
#: src/Facebook/Services/FacebookLoaderService.php:90
msgid "Failed to load Facebook data"
msgstr ""
#: src-ui/src/i18n.js:5
msgid "Loading data failed"
msgstr ""
#: src-ui/src/i18n.js:6
msgid "Failed to save settings"
msgstr ""
#: src-ui/src/i18n.js:7
msgid "Settings successfully saved"
msgstr ""
#: src-ui/src/i18n.js:10
msgid "Facebook SDK can't be loaded"
msgstr ""
#: src-ui/src/i18n.js:11
msgid "Authorization Expired"
msgstr ""
#: src-ui/src/i18n.js:12
msgid "Failed to get access token"
msgstr ""
#: src-ui/src/i18n.js:14
msgid "Username:"
msgstr ""
#: src-ui/src/i18n.js:15
msgid "Disconnect Facebook Page"
msgstr ""
#: src-ui/src/i18n.js:16
msgid "Update Facebook Data"
msgstr ""
#: src-ui/src/i18n.js:19
msgid "Load Pages"
msgstr ""
#: src-ui/src/i18n.js:20
msgid "Connect Page"
msgstr ""
#: src-ui/src/i18n.js:21
msgid "Reset"
msgstr ""
#: src-ui/src/i18n.js:22
#: src-ui/src/i18n.js:25
msgid "Token"
msgstr ""
#: src-ui/src/i18n.js:23
msgid "You don't have any facebook pages."
msgstr ""
#: src-ui/src/i18n.js:24
msgid "Facebook App"
msgstr ""
#: src-ui/src/i18n.js:26
msgid "Page ID"
msgstr ""
#: src-ui/src/i18n.js:27
msgid "App ID"
msgstr ""
#: src-ui/src/i18n.js:28
msgid "App Secret"
msgstr ""
#: src-ui/src/i18n.js:29
msgid "Both Token and Page ID have to be set."
msgstr ""
#: src-ui/src/i18n.js:30
msgid "Page ID has to be a numeric value."
msgstr ""
#: src-ui/src/i18n.js:31
msgid "Both App ID and App Secret have to be set."
msgstr ""
#: src-ui/src/i18n.js:32
msgid "App ID has to be a numeric value."
msgstr ""
#: src-ui/src/i18n.js:35
msgid "Posts slug has to contain only lowercase letters and \"-\"(dash) and has to be at least 3 character length"
msgstr ""
#: src-ui/src/i18n.js:36
msgid "Enabled Post Types"
msgstr ""
#: src-ui/src/i18n.js:37
msgid "Videos"
msgstr ""
#: src-ui/src/i18n.js:38
msgid "Albums"
msgstr ""
#: src-ui/src/i18n.js:39
msgid "Posts slug"
msgstr ""
#: src-ui/src/i18n.js:40
msgid "Prefix used in single post URL. For example: https://www.mysite.sk/wpswlr-facebook-post/my-post"
msgstr ""
#: src-ui/src/i18n.js:41
msgid "Max Loaded Posts"
msgstr ""
#: src-ui/src/i18n.js:42
msgid "A value larger than 100 can cause performance issues."
msgstr ""
#: src-ui/src/i18n.js:43
msgid "Default categories"
msgstr ""
#: src-ui/src/i18n.js:44
msgid "Selected categories will be assigned to posts loaded from Facebook"
msgstr ""
#: src-ui/src/i18n.js:45
msgid "General Category"
msgstr ""
#: src-ui/src/i18n.js:46
msgid "Will be used if no other category applies."
msgstr ""
#: src-ui/src/i18n.js:47
msgid "Image Category"
msgstr ""
#: src-ui/src/i18n.js:48
msgid "Gallery Category"
msgstr ""
#: src-ui/src/i18n.js:49
msgid "Video Category"
msgstr ""
#: src-ui/src/i18n.js:50
msgid "Save Changes"
msgstr ""
#: src-ui/src/i18n.js:54
msgid "Dismiss this alert."
msgstr ""

View File

@@ -0,0 +1,9 @@
== Changelog ==
1.0
Initial release.
1.0.1
add wordpress.org translation support.
fix translated string typo
when settings are saved, return an appropriate response when settings do not change

View File

@@ -0,0 +1,701 @@
# Copyright (C) 2021 Whodunit
# This file is distributed under the GPLv2.
msgid ""
msgstr ""
"Project-Id-Version: Yetix Request Form for Zendesk 1.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yetix-request-form\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-10-25T12:26:05+02:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.1-alpha-41c44d5\n"
"X-Domain: yetix-request-form\n"
#. Plugin Name of the plugin
msgid "Yetix Request Form for Zendesk"
msgstr ""
#. Plugin URI of the plugin
msgid "https://www.yetix.io/"
msgstr ""
#. Description of the plugin
msgid "Add a Zendesk Support Form easily to your WordPress site."
msgstr ""
#. Author of the plugin
msgid "Whodunit"
msgstr ""
#. Author URI of the plugin
msgid "https://www.whodunit.fr"
msgstr ""
#. translators: argument 1 is opening code tag , argument 1 is a list of valid authentication strategies separated by , argument 2 is a closing code tag
#: class/whodunit/client/zendesk/ExtendedAuth.php:39
msgid "Invalid auth strategy set, please use %1$s %2$s %3$s"
msgstr ""
#. translators: argument 1 is a opening code tag, argument 2 is a closing code tag
#: class/whodunit/client/zendesk/ExtendedAuth.php:52
msgid "Please provide %1$susername%2$s for basic auth."
msgstr ""
#. translators: argument 1 is a opening code tag, argument 2 is a closing code tag
#: class/whodunit/client/zendesk/ExtendedAuth.php:56
msgid "Please provide %1$stoken%2$s for basic auth."
msgstr ""
#. translators: argument 1 is a opening code tag, argument 2 is a closing code tag
#: class/whodunit/client/zendesk/ExtendedAuth.php:61
msgid "Please provide %1$susername%2$s for password auth."
msgstr ""
#. translators: argument 1 is a opening code tag, argument 2 is a closing code tag
#: class/whodunit/client/zendesk/ExtendedAuth.php:65
msgid "Please provide %1$spassword%2$s for password auth."
msgstr ""
#. translators: argument 1 is a opening code tag, argument 2 is a closing code tag
#: class/whodunit/client/zendesk/ExtendedAuth.php:70
msgid "Please provide %1$stoken%2$s for oauth."
msgstr ""
#: class/whodunit/client/zendesk/ExtendedAuth.php:101
msgid "Please set authentication to send requests."
msgstr ""
#: class/whodunit/client/zendesk/ZendeskApiClient.php:45
msgid "subdomain not defined"
msgstr ""
#: class/whodunit/client/zendesk/ZendeskApiClient.php:49
msgid "Unknown error"
msgstr ""
#: class/whodunit/client/zendesk/ZendeskApiClient.php:53
msgid "Invalid user"
msgstr ""
#: class/whodunit/client/zendesk/ZendeskApiClient.php:57
msgid "Insufficient user rights"
msgstr ""
#: class/whodunit/utility/Helpers.php:16
#: class/whodunit/utility/Localize.php:18
#: assets/js/admin_setting.js:117
#: assets/js/admin_setting.js:137
msgid "Name"
msgstr ""
#: class/whodunit/utility/Helpers.php:23
#: class/whodunit/utility/Localize.php:20
#: assets/js/admin_setting.js:159
#: assets/js/admin_setting.js:161
msgid "Email"
msgstr ""
#: class/whodunit/utility/Helpers.php:30
#: class/whodunit/utility/Helpers.php:60
#: class/whodunit/utility/Localize.php:22
#: assets/js/admin_setting.js:183
#: assets/js/admin_setting.js:185
msgid "Attachment"
msgstr ""
#: class/whodunit/utility/Helpers.php:67
msgid "Add one or more files"
msgstr ""
#: class/whodunit/utility/Helpers.php:70
msgid "Upload"
msgstr ""
#: class/whodunit/utility/Helpers.php:144
#: assets/js/admin_setting.js:101
msgid "Date"
msgstr ""
#: class/whodunit/utility/Tracker.php:20
msgid "Zendesk connected"
msgstr ""
#: class/whodunit/yetix/block/Block.php:17
#: class/whodunit/yetix/page/PageAdminSettings.php:22
msgid "Yetix"
msgstr ""
#: class/whodunit/yetix/page/Page.php:100
msgid "Thank you for using our product :)"
msgstr ""
#: class/whodunit/yetix/page/PageAdminSettings.php:21
msgid "General Settings"
msgstr ""
#: class/whodunit/yetix/page/PageAdminSettings.php:66
msgid "Settings"
msgstr ""
#. translators: argument 1 is a link opening tag to the plugin rating page, argument 2 a link closing tag
#: class/whodunit/yetix/page/PageAdminSettings.php:83
msgid "Thank you for using Yetix Request Form! %1$sPlease rate us ★★★★★ on WordPress.org%2$s to help us spread the word."
msgstr ""
#. translators: argument 1 is the plugin display name
#: class/whodunit/yetix/Plugin.php:184
msgid "%s has been activated with success."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:55
msgid "Your documents exceed the size limit. Try to upload one file at the time"
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:61
msgid "No document specified."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:67
#: class/whodunit/yetix/rest/RestRouteTicketFields.php:37
#: class/whodunit/yetix/rest/RestRouteTickets.php:97
msgid "Cannot connect to zendesk, please contact an administrator."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:77
msgid "This document type is not allowed."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:79
msgid "This document exceed the size limit."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:89
msgctxt "upload_success"
msgid "This document have been uploaded."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:99
msgctxt "upload_error_ini_size"
msgid "This document exceed the server upload limit."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:100
msgctxt "upload_error_form_size"
msgid "This document exceed the form upload limit."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:101
msgctxt "upload_error_err_partial"
msgid "This document have been partially upload."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:102
msgctxt "upload_error_no_file"
msgid "There is no document to upload."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:103
msgctxt "upload_error_no_tmp_dir"
msgid "This document cant be uploaded due to a server error."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:104
msgctxt "upload_error_cant_write"
msgid "This document cant be uploaded due to a server error."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:105
msgctxt "upload_error_extention"
msgid "This document cant be uploaded due to a server error."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:109
msgctxt "upload_error_unknown"
msgid "This document cant be uploaded due to a unknown error."
msgstr ""
#. translators: argument 1 is an error code from zendesk
#: class/whodunit/yetix/rest/RestRouteAttachments.php:120
#: class/whodunit/yetix/rest/RestRouteTicketFields.php:46
msgid "An unknown error has occurred, please contact a administrator with this error code %s."
msgstr ""
#: class/whodunit/yetix/rest/RestRouteAttachments.php:138
msgid "Attachment uploaded"
msgstr ""
#: class/whodunit/yetix/rest/RestRouteSettings.php:44
msgid "yetix options load"
msgstr ""
#: class/whodunit/yetix/rest/RestRouteSettings.php:58
msgid "yetix options saved"
msgstr ""
#: class/whodunit/yetix/rest/RestRouteSettings.php:63
msgid "yetix options have not change"
msgstr ""
#: class/whodunit/yetix/rest/RestRouteSettings.php:68
msgid "yetix options cant save"
msgstr ""
#. translators: argument 1 is the number of field return by zendesk
#: class/whodunit/yetix/rest/RestRouteTicketFields.php:62
msgid "%s ticket fields find."
msgstr ""
#. translators: argument 1 is a error code send by zendesk
#: class/whodunit/yetix/rest/RestRouteTickets.php:135
msgid "An unknown error has occurred, please contact a administrator with this error code : %s."
msgstr ""
#. translators: argument 1 is a ticket number send by zendesk
#: class/whodunit/yetix/rest/RestRouteTickets.php:151
msgid "Ticket #%s created."
msgstr ""
#: views/blocks/requestform/default.php:56
#: views/shortcodes/requestform/default.php:49
msgid "Required fields are marked *"
msgstr ""
#: views/blocks/requestform/default.php:58
#: views/shortcodes/requestform/default.php:51
msgid "Send"
msgstr ""
#: views/blocks/requestform/default.php:66
#: views/shortcodes/requestform/default.php:60
msgid "Yetix could not establish a connection to Zendesk, please check your Yetix configuration or ask an administrator to do it."
msgstr ""
#: views/pages/admin_settings.php:22
msgid "Yetix settings"
msgstr ""
#: views/pages/admin_settings.php:26
msgid "General settings"
msgstr ""
#: views/pages/admin_settings.php:28
msgid "Once Zendesk is successfully connected, use Yetix Request Form block or shortcode to add the form to any post."
msgstr ""
#: views/pages/admin_settings.php:33
msgid "Zendesk subdomain: "
msgstr ""
#: views/pages/admin_settings.php:39
msgid "my subdomain"
msgstr ""
#: views/pages/admin_settings.php:48
msgid "Zendesk user: "
msgstr ""
#: views/pages/admin_settings.php:61
msgid "Zendesk API token: "
msgstr ""
#: views/pages/admin_settings.php:81
#: assets/js/admin_setting.js:125
msgid "Save settings"
msgstr ""
#: assets/js/admin_setting.js:82
msgid "Current connection status"
msgstr ""
#: assets/js/admin_setting.js:93
#: assets/js/admin_setting.js:100
#: assets/js/admin_setting.js:139
msgid "Text"
msgstr ""
#: assets/js/admin_setting.js:94
msgid "Ticket type"
msgstr ""
#: assets/js/admin_setting.js:95
msgid "Dropdown list"
msgstr ""
#: assets/js/admin_setting.js:96
msgid "Description"
msgstr ""
#: assets/js/admin_setting.js:97
msgid "Multiline"
msgstr ""
#: assets/js/admin_setting.js:98
msgid "Status"
msgstr ""
#: assets/js/admin_setting.js:99
msgid "Priority"
msgstr ""
#: assets/js/admin_setting.js:102
msgid "Group"
msgstr ""
#: assets/js/admin_setting.js:103
msgid "Assignee"
msgstr ""
#: assets/js/admin_setting.js:104
msgid "Multiselect Dropdown list"
msgstr ""
#: assets/js/admin_setting.js:105
msgid "Decimal"
msgstr ""
#: assets/js/admin_setting.js:106
msgid "Credit card"
msgstr ""
#: assets/js/admin_setting.js:107
msgid "Checkbox"
msgstr ""
#: assets/js/admin_setting.js:108
msgid "Numeric"
msgstr ""
#: assets/js/admin_setting.js:109
msgid "Regular expression"
msgstr ""
#: assets/js/admin_setting.js:112
msgid "Zendesk ticket fields"
msgstr ""
#: assets/js/admin_setting.js:114
msgid "Set default fields settings."
msgstr ""
#: assets/js/admin_setting.js:118
msgid "Type"
msgstr ""
#: assets/js/admin_setting.js:119
msgid "Format"
msgstr ""
#: assets/js/admin_setting.js:120
msgid "Display"
msgstr ""
#: assets/js/admin_setting.js:121
msgid "Required"
msgstr ""
#: assets/js/admin_setting.js:138
#: assets/js/admin_setting.js:160
#: assets/js/admin_setting.js:184
#: assets/js/admin_setting.js:218
msgid "System"
msgstr ""
#: assets/js/admin_setting.js:144
#: assets/js/admin_setting.js:165
#: assets/js/admin_setting.js:190
#: assets/js/admin_setting.js:237
msgid "Overwrite label"
msgstr ""
#: assets/js/admin_setting.js:145
#: assets/js/admin_setting.js:166
#: assets/js/admin_setting.js:239
msgid "Default value"
msgstr ""
#: assets/js/admin_setting.js:192
msgid "Maximum file size"
msgstr ""
#. translators: argument 1 is a maximum bytes size accepted by wp and the server config
#: assets/js/admin_setting.js:195
msgid "Bytes ( %s max )"
msgstr ""
#: assets/js/admin_setting.js:197
msgid "Allowed file extensions list"
msgstr ""
#: assets/js/admin_setting.js:218
msgid "Custom"
msgstr ""
#: assets/js/blocks/requestform.js:120
msgid "Request Form"
msgstr ""
#: assets/js/blocks/requestform.js:125
msgctxt "block_search_keyword"
msgid "form"
msgstr ""
#: assets/js/blocks/requestform.js:125
msgctxt "block_search_keyword"
msgid "ticket"
msgstr ""
#: assets/js/blocks/requestform.js:125
msgctxt "block_search_keyword"
msgid "zendesk"
msgstr ""
#: assets/js/blocks/requestform.js:161
msgid "Request Form Settings"
msgstr ""
#: assets/js/blocks/requestform.js:164
msgid "Return type"
msgstr ""
#: assets/js/blocks/requestform.js:167
msgid "Display result in the form"
msgstr ""
#: assets/js/blocks/requestform.js:170
msgid "Redirect to a specific url"
msgstr ""
#: assets/js/blocks/requestform.js:179
msgid "Redirect behavior"
msgstr ""
#: assets/js/blocks/requestform.js:182
msgid "Redirection url"
msgstr ""
#: assets/js/blocks/requestform.js:192
msgid "redirection timeout"
msgstr ""
#: assets/js/blocks/requestform.js:203
msgid "Display behavior"
msgstr ""
#: assets/js/blocks/requestform.js:206
msgid "hide form when send"
msgstr ""
#: assets/js/blocks/requestform.js:214
msgid "re-enable form timeout"
msgstr ""
#: assets/js/requestform_script.js:66
msgid "Upload complete"
msgstr ""
#: assets/js/requestform_script.js:73
msgid "Upload error"
msgstr ""
#: assets/js/requestform_script.js:149
msgid "Processing"
msgstr ""
#. translators: argument 1 is the field label
#: assets/js/requestform_script.js:261
msgid "%s field is invalid."
msgstr ""
#. translators: argument 1 is the number of invalid field, argument 2 is a line break, argument 3 is a list of all labels
#: assets/js/requestform_script.js:267
msgid "%1$s field is invalid.%2$s %3$s."
msgid_plural "%1$s fields are invalid.%2$s %3$s."
msgstr[0] ""
msgstr[1] ""
#. translators: argument 1 is the field label
#: assets/js/requestform_script.js:280
msgid "%s field is missing."
msgstr ""
#. translators: argument 1 is the number of invalid field, argument 2 is a line break, argument 3 is a list of all labels
#: assets/js/requestform_script.js:286
msgid "%1$s field is missing.%2$s %3$s."
msgid_plural "%1$s fields are missing.%2$s %3$s."
msgstr[0] ""
msgstr[1] ""
#: assets/js/requestform_script.js:409
msgctxt "first letter of Sunday"
msgid "S"
msgstr ""
#: assets/js/requestform_script.js:410
msgctxt "first letter of Monday"
msgid "M"
msgstr ""
#: assets/js/requestform_script.js:411
msgctxt "first letter of Tuesday"
msgid "T"
msgstr ""
#: assets/js/requestform_script.js:412
msgctxt "first letter of Wednesday"
msgid "W"
msgstr ""
#: assets/js/requestform_script.js:413
msgctxt "first letter of Thursday"
msgid "T"
msgstr ""
#: assets/js/requestform_script.js:414
msgctxt "first letter of Friday"
msgid "F"
msgstr ""
#: assets/js/requestform_script.js:415
msgctxt "first letter of Saturday"
msgid "S"
msgstr ""
#: assets/js/requestform_script.js:418
msgid "January"
msgstr ""
#: assets/js/requestform_script.js:419
msgid "February"
msgstr ""
#: assets/js/requestform_script.js:420
msgid "March"
msgstr ""
#: assets/js/requestform_script.js:421
msgid "April"
msgstr ""
#: assets/js/requestform_script.js:422
msgid "May"
msgstr ""
#: assets/js/requestform_script.js:423
msgid "June"
msgstr ""
#: assets/js/requestform_script.js:424
msgid "July"
msgstr ""
#: assets/js/requestform_script.js:425
msgid "August"
msgstr ""
#: assets/js/requestform_script.js:426
msgid "September"
msgstr ""
#: assets/js/requestform_script.js:427
msgid "October"
msgstr ""
#: assets/js/requestform_script.js:428
msgid "November"
msgstr ""
#: assets/js/requestform_script.js:429
msgid "December"
msgstr ""
#: assets/js/requestform_script.js:432
msgctxt "short for January"
msgid "Jan"
msgstr ""
#: assets/js/requestform_script.js:433
msgctxt "short for February"
msgid "Feb"
msgstr ""
#: assets/js/requestform_script.js:434
msgctxt "short for March"
msgid "Mar"
msgstr ""
#: assets/js/requestform_script.js:435
msgctxt "short for April"
msgid "Apr"
msgstr ""
#: assets/js/requestform_script.js:436
msgctxt "short for May"
msgid "May"
msgstr ""
#: assets/js/requestform_script.js:437
msgctxt "short for June"
msgid "Jun"
msgstr ""
#: assets/js/requestform_script.js:438
msgctxt "short for July"
msgid "Jul"
msgstr ""
#: assets/js/requestform_script.js:439
msgctxt "short for August"
msgid "Aug"
msgstr ""
#: assets/js/requestform_script.js:440
msgctxt "short for September"
msgid "Sep"
msgstr ""
#: assets/js/requestform_script.js:441
msgctxt "short for October"
msgid "Oct"
msgstr ""
#: assets/js/requestform_script.js:442
msgctxt "short for November"
msgid "Nov"
msgstr ""
#: assets/js/requestform_script.js:443
msgctxt "short for December"
msgid "Dec"
msgstr ""
#: assets/js/requestform_script.js:445
msgid "Today"
msgstr ""
#: assets/js/requestform_script.js:446
msgid "Now"
msgstr ""
#: assets/js/requestform_script.js:447
msgctxt "short for ante meridiem"
msgid "AM"
msgstr ""
#: assets/js/requestform_script.js:448
msgctxt "short for post meridiem"
msgid "PM"
msgstr ""
#: assets/js/requestform_script.js:486
msgid "No files selected."
msgstr ""
#. translators: argument 1 is the number of file selected
#: assets/js/requestform_script.js:489
msgid "%s file selected."
msgid_plural "%s files selected."
msgstr[0] ""
msgstr[1] ""

View File

@@ -27,10 +27,10 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.10.0'
s.add_development_dependency 'rspec-its', '~> 1.3.0'
s.add_development_dependency 'rubocop', '~> 1.21.0'
s.add_development_dependency 'rubocop-performance', '~> 1.11.0'
s.add_development_dependency 'rubocop', '~> 1.22.3'
s.add_development_dependency 'rubocop-performance', '~> 1.12.0'
s.add_development_dependency 'simplecov', '~> 0.21.0'
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
s.add_development_dependency 'stackprof', '~> 0.2.12'
s.add_development_dependency 'webmock', '~> 3.13.0'
s.add_development_dependency 'webmock', '~> 3.14.0'
end