Compare commits
45 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
90b61d035e | ||
|
|
05c21fb0a8 | ||
|
|
28cdf8e649 | ||
|
|
d1f2781929 | ||
|
|
6b57da0d8a | ||
|
|
b38f94ef39 | ||
|
|
06e3c76ac6 | ||
|
|
885bf041c4 | ||
|
|
ffe8574c51 | ||
|
|
910d34c721 | ||
|
|
5fec3a97c5 | ||
|
|
37f7dddac7 | ||
|
|
05d912e658 | ||
|
|
4bd87b2953 | ||
|
|
a4c843e51e | ||
|
|
7f9295ad54 | ||
|
|
0ab3d16be9 | ||
|
|
93f2e18811 | ||
|
|
ccd7324590 | ||
|
|
7323e8aa08 | ||
|
|
035830d7bc | ||
|
|
eaaefe2cf5 | ||
|
|
9499caf7b8 | ||
|
|
a677cf87cd | ||
|
|
2fc872ae6f | ||
|
|
27d4d14303 | ||
|
|
434f8819a2 | ||
|
|
97ad2dc158 | ||
|
|
8c1b8b5fda | ||
|
|
e179b7ae66 | ||
|
|
3af18b4fcb | ||
|
|
f4ddff64e9 | ||
|
|
0f587c4292 | ||
|
|
cc7f284d93 | ||
|
|
ebe6c50e15 | ||
|
|
19a4671e59 | ||
|
|
e505afe9df | ||
|
|
2632c6ed86 | ||
|
|
2f5ad3a338 | ||
|
|
7ea45a5f9b | ||
|
|
9d06ffe83a | ||
|
|
11394eaa9f | ||
|
|
8353161451 | ||
|
|
cbc52b977f | ||
|
|
e0b47d7501 |
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -9,14 +9,14 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7, 3.0]
|
||||
ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v2.4.0
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
|
||||
13
.github/workflows/docker.yml
vendored
13
.github/workflows/docker.yml
vendored
@@ -7,7 +7,7 @@ on:
|
||||
release:
|
||||
types: [published]
|
||||
schedule:
|
||||
- cron: '0 7 * * *'
|
||||
- cron: "0 7 * * *"
|
||||
|
||||
jobs:
|
||||
images:
|
||||
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v2.4.0
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
@@ -33,11 +33,17 @@ jobs:
|
||||
echo DOCKER_TAG is not set!
|
||||
exit 1
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
id: buildx
|
||||
with:
|
||||
install: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1.10.0
|
||||
uses: docker/login-action@v1.13.0
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
@@ -45,5 +51,6 @@ jobs:
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
tags: wpscanteam/wpscan:${{ env.DOCKER_TAG }}
|
||||
|
||||
2
.github/workflows/gempush.yml
vendored
2
.github/workflows/gempush.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: actions/checkout@v2.4.0
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
with:
|
||||
|
||||
@@ -59,13 +59,13 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The best version number detected from the changelog section
|
||||
def from_changelog_section(body)
|
||||
extracted_versions = body.scan(%r{=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[ \ta-z0-9().\-/]*=+}i)
|
||||
extracted_versions = body.scan(/^=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[^=]*=+$/i)
|
||||
|
||||
return if extracted_versions.nil? || extracted_versions.empty?
|
||||
|
||||
extracted_versions.flatten!
|
||||
# must contain at least one number
|
||||
extracted_versions = extracted_versions.select { |x| x =~ /[0-9]+/ }
|
||||
extracted_versions = extracted_versions.grep(/[0-9]+/)
|
||||
|
||||
sorted = extracted_versions.sort do |x, y|
|
||||
Gem::Version.new(x) <=> Gem::Version.new(y)
|
||||
|
||||
@@ -24,6 +24,10 @@ module WPScan
|
||||
|
||||
FileUtils.mkdir_p(repo_directory.to_s) unless Dir.exist?(repo_directory.to_s)
|
||||
|
||||
# When --no-update is passed, return to avoid raising an error if the directory is not writable
|
||||
# Mainly there for Homebrew: https://github.com/wpscanteam/wpscan/pull/1455
|
||||
return if ParsedCli.update == false
|
||||
|
||||
unless repo_directory.writable?
|
||||
raise "#{repo_directory} is not writable (uid: #{Process.uid}, gid: #{Process.gid})"
|
||||
end
|
||||
@@ -131,7 +135,7 @@ module WPScan
|
||||
res = Typhoeus.get(file_url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
File.open(file_path, 'wb') { |f| f.write(res.body) }
|
||||
File.binwrite(file_path, res.body)
|
||||
|
||||
local_file_checksum(filename)
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.19'
|
||||
VERSION = '3.8.21'
|
||||
end
|
||||
|
||||
@@ -108,7 +108,8 @@ describe WPScan::Finders::PluginVersion::Readme do
|
||||
'advanced-most-recent-posts-mod' => '1.6.5.2',
|
||||
'a-lead-capture-contact-form-and-tab-button-by-awebvoicecom' => '3.1',
|
||||
'backup-scheduler' => '1.5.9',
|
||||
'release_date_slash' => '1.0.4'
|
||||
'release_date_slash' => '1.0.4',
|
||||
'cool_tag_cloud' => '2.27'
|
||||
}.each do |file, version_number|
|
||||
context "whith #{file}.txt" do
|
||||
it 'returns the expected version' do
|
||||
|
||||
6118
spec/fixtures/db/dynamic_finders.yml
vendored
6118
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
2691
spec/fixtures/dynamic_finders/expected.yml
vendored
2691
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -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 ""
|
||||
@@ -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 ""
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "fragment-amzn",
|
||||
"version": "1.0.1",
|
||||
"description": "Amazonの商品を検索してブロックに追加します。",
|
||||
"author": "fragment.co.jp",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^7.0.2",
|
||||
"@wordpress/blocks": "^11.1.0",
|
||||
"@wordpress/i18n": "^4.2.2",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^8.2.2",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-preset-env": "^1.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.5"
|
||||
}
|
||||
}
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with minor modifications,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0] - 8th Dec 2021
|
||||
Initial plugin release.
|
||||
|
||||
@@ -0,0 +1,254 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Logo Slide 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-logo-slide\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-21T10:44:52+05:45\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-logo-slide\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:75
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:76
|
||||
msgid "Ascendoor Logo Slide"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple logo slide with CSS transition effects."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. PHP Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:33
|
||||
msgid "Ascendoor Logo Slide plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. WordPress Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:48
|
||||
msgid "Ascendoor Logo Slide plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/build/index.js:1
|
||||
#: admin/resources/src/components/Loading/index.js:6
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:18
|
||||
#: admin/resources/src/components/Header/Info.js:136
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:26
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:40
|
||||
#: admin/resources/src/components/Header/Info.js:118
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:48
|
||||
msgid "Tablet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:62
|
||||
#: admin/resources/src/components/Header/Info.js:100
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:70
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:24
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:49
|
||||
msgid "Close info content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:62
|
||||
msgid "You have some inactive columns. Please use the guide below for the recommended setup."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:68
|
||||
msgid "Total Added Logos:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:80
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:99
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:83
|
||||
msgid "Min. No. of Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:89
|
||||
msgid "Inactive Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:167
|
||||
msgid "Duplicate logos to fill the inactive columns."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:19
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:21
|
||||
msgid "Select Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:101
|
||||
msgid "Add Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:61
|
||||
msgid "Logo Alt Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:74
|
||||
msgid "Logo Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:87
|
||||
msgid "Logo Link To"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:102
|
||||
msgid "Link Open In"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:63
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:87
|
||||
msgid "Close Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:109
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:144
|
||||
msgid "Manage Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:92
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:115
|
||||
msgid "Column Gap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:49
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:55
|
||||
msgid "Slide Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:71
|
||||
msgid "Slide Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:74
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:104
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:107
|
||||
msgid "Pause on Hover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:40
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:51
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:160
|
||||
msgid "Select Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:162
|
||||
msgid "Select Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:304
|
||||
msgid "Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:311
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:390
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:181
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:469
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:260
|
||||
msgid "Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:481
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:495
|
||||
msgid "Background Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:516
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:535
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:582
|
||||
msgid "Update Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:564
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:599
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:610
|
||||
msgid "Background Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:658
|
||||
msgid "Background Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:686
|
||||
msgid "Background Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:718
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:145
|
||||
msgid "Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:152
|
||||
msgid "Height (in PX)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:163
|
||||
msgid "Hint: 0 = Auto. The frontend logo container and the current backend preview container might not be the same. Set height based on frontend view."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,186 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Metadata Manager 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-metadata-manager\n"
|
||||
"Last-Translator: Ascendoor <info@ascendoor.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-27T14:44:34+05:45\n"
|
||||
"PO-Revision-Date: 2021-10-27 00:00+05:45\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-metadata-manager\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ascendoor Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "View and manage posts, terms, users and comments metadata."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:109
|
||||
msgid "Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:110
|
||||
msgid "Invalid Request!!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:111
|
||||
msgid "This meta data seems to be private. Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:112
|
||||
msgid "Reload page?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:113
|
||||
msgid "This meta data seems to be private. Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:114
|
||||
msgid "Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:83
|
||||
msgid "Comment Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:112
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:124
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:133
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:122
|
||||
msgid "Meta Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:115
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:127
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:136
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:125
|
||||
msgid "Meta Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:118
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:130
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:139
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:128
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:104
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:156
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:168
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:166
|
||||
msgid "Meta data list is empty."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:165
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:186
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:175
|
||||
msgid "Meta data not found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:198
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:210
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:218
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:207
|
||||
msgid "You are not allowed to delete this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:230
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:242
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:250
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:239
|
||||
msgid "You are not allowed to update this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:95
|
||||
msgid "Post Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:78
|
||||
msgid "Disable Metadata Manager for Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:109
|
||||
msgid "Disable Metadata Manager for Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:138
|
||||
msgid "Disable Metadata Manager for Users or Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:145
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:157
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:187
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:287
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:100
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:107
|
||||
msgid "Term Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:90
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:97
|
||||
msgid "User Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:41
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:73
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:48
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:80
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:59
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:91
|
||||
msgid "While updating, meta value will be sanitized and filtered with %1$s (if meta value contains HTML tags) or %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:107
|
||||
msgid "Delete meta key and value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:118
|
||||
msgid "Edit meta value"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - PHP Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:34
|
||||
msgid "Ascendoor Metadata Manager plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - WordPress Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:49
|
||||
msgid "Ascendoor Metadata Manager plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
# Atlas Content Modeler Changelog
|
||||
|
||||
## 0.8.0 - 2021-10-13
|
||||
|
||||
### Added
|
||||
- Share models between sites using the new Export and Import models feature. Visit Content Modeler → Tools to get started.
|
||||
- Added "author" support to custom post types. This unlocks new functionality such as assigning specific users to a post, and querying posts by author in WPGraphQL.
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the model icon could not be changed when editing an existing model.
|
||||
- Fixed bug in the Number field where you could not define a Step value without also defining a Max value.
|
||||
- Improved duplicate field slug detection to ensure forward and reverse slugs for the Relationship field are unique in WPGraphQL.
|
||||
|
||||
### Changed
|
||||
- The `@wordpress/i18n` package is no longer bundled in the plugin's scripts, relying on the version that ships with WordPress instead.
|
||||
|
||||
## 0.7.0 - 2021-10-04
|
||||
|
||||
### Added
|
||||
- Relationship Field: one-to-one and one-to-many relationships were renamed to many-to-one and many-to-many to accurately reflect their function.
|
||||
- Relationship Field: fields can now optionally include reverse references.
|
||||
- Relationship Field: added [Beta] flag as the feature takes shape.
|
||||
- Chore: set "Requires at least" to WordPress version 5.7
|
||||
- Chore: set "Requires PHP" to version 7.2
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the app prompted about "Unsaved changes" when no changes had been made.
|
||||
|
||||
## 0.6.0 - 2021-09-09
|
||||
|
||||
### Added
|
||||
- Create one-to-one and one-to-many relationships between model entries with the new Relationship field.
|
||||
- A plugin icon will appear on the plugin update page during future updates.
|
||||
|
||||
### Fixed
|
||||
- Improved modal scroll behavior and positioning.
|
||||
|
||||
## 0.5.0 - 2021-08-12
|
||||
|
||||
### Added
|
||||
- You can now add custom Taxonomies and assign them to your models. Visit Atlas Content Modeler → Taxonomies to get started.
|
||||
- Models and Taxonomies submenu items now appear in the admin sidebar below Atlas Content Modeler.
|
||||
|
||||
### Changed
|
||||
- Refactored PHP tests.
|
||||
|
||||
## 0.4.2 - 2021-08-04
|
||||
|
||||
### Added
|
||||
- Ability to choose an icon when creating or editing a model.
|
||||
- Option to restrict file types for the media field.
|
||||
- Generate WordPress changelog from the Markdown changelog so that changes are visible from the WordPress changes modal.
|
||||
- Plugin developer improvements: GitHub Pull Request template; Code Climate configuration; Makefile for test environments.
|
||||
|
||||
### Changed
|
||||
- Change “API Identifier” field title on model entry forms to “Model ID” with a new description to better reflect its use.
|
||||
- Continuous Integration: the generated plugin zip is now tested and verified before deploying.
|
||||
|
||||
### Fixed
|
||||
- Improve query generation for “Open in GraphiQL” to include lowercase model names and models with the same plural and singular name.
|
||||
- Improve sanitization of model slugs. Includes safe migration of existing model slugs.
|
||||
- Prevent a PHP warning during title filtering if post info can not be found.
|
||||
- Improve number field validation.
|
||||
|
||||
## 0.4.1 - 2021-06-24
|
||||
### Added
|
||||
- Generate POT language file for translations.
|
||||
|
||||
### Changed
|
||||
- Use `include` in place of `require` so that missing or corrupt files do not take WordPress down.
|
||||
|
||||
### Removed
|
||||
- Removed the Multiple Choice field for now while we add support for custom choice API IDs.
|
||||
|
||||
## 0.4.0 - 2021-06-22
|
||||
- First public release. There may be breaking changes until 1.0.0.
|
||||
|
||||
### Added
|
||||
- New Multiple Choice field (beta) to create radio and checklist groups.
|
||||
- New “Send Feedback” button to share your experience with us.
|
||||
- New model option for “Private” or “Public” API visibility.
|
||||
- The Text field now includes an optional character minimum and maximum count in Advanced Settings.
|
||||
- The Number field now includes an optional minimum, maximum and step value in Advanced Settings.
|
||||
- Prompt to complete edits to an open field when attempting to open another field.
|
||||
- Added LICENSE, CONTRIBUTING and CHANGELOG files.
|
||||
|
||||
### Changed
|
||||
- REST responses now show Atlas Content Modeler fields under an `acm_fields` property.
|
||||
- REST responses now display detailed information about media fields.
|
||||
- Changed “Text Length” to “Input Type” in the Text field. Text length is now determined in Advanced Settings. Input type lets developers choose an input or textarea field.
|
||||
- Increased the clickable area on dropdown menu items in the developer app.
|
||||
- Adjusted styling in the publisher app.
|
||||
- Refactored default value handling to improve field load times.
|
||||
- Internal REST routes now include an `atlas` prefix.
|
||||
- The README now includes a getting started guide.
|
||||
|
||||
### Fixed
|
||||
- Pressing return in the publisher app will now submit the form, instead of clearing fields.
|
||||
- Corrected an issue preventing fields from appearing in REST responses.
|
||||
- Prevented custom fields from showing in REST when `show_in_rest` is false.
|
||||
- Strings in the publisher and developer interfaces are now translatable.
|
||||
- Fixed Jest tests and add to Continuous Integration workflow.
|
||||
- Improved admin URL handling for WordPress sites hosted in a subfolder.
|
||||
- Improved plugin update error messages to include the name of the plugin reporting them.
|
||||
- Prevented a styling issue with the Content Modeler admin menu item.
|
||||
|
||||
## 0.3.0 - 2021-06-01
|
||||
### Added
|
||||
- Developers can now mark fields as required.
|
||||
- Publishers will see inline errors prompting them to fill required fields.
|
||||
|
||||
### Changed
|
||||
- Rebranded to Atlas Content Modeler.
|
||||
- Changed data storage format.
|
||||
- Changed model data option name from wpe_content_model_post_types to atlas_content_modeler_post_types.
|
||||
- Updated admin sidebar icons for settings and entries.
|
||||
- Improved Rich Text fields, including adding media support.
|
||||
- Open fields now close when another field is created or opened.
|
||||
- Media fields now have a WPGraphQL type of MediaItem instead of String to enable complete queries for media information.
|
||||
|
||||
### Fixed
|
||||
- Improved model and field list appearance at mobile screen widths.
|
||||
- Improved client-side field validation for publishers.
|
||||
- Hid duplicate page title on new entry screens.
|
||||
- Corrected headers when editing entries.
|
||||
- Protected meta fields to prevent them appearing in the Custom Fields meta box.
|
||||
|
||||
### Removed
|
||||
- Repeater fields have been removed.
|
||||
- Screen options have been removed from entry pages for content model post types.
|
||||
- Post thumbnail support has been removed for content model post types.
|
||||
|
||||
## 0.2.0 - 2021-05-07
|
||||
### Added
|
||||
- Publishers can now enter model entries via a form.
|
||||
- Developers have the option to set a field as the title field.
|
||||
- The plugin now checks for updates.
|
||||
- Model and field options now close on blur or when the escape key is pressed.
|
||||
- Model options include “Open in GraphiQL” if the WPGraphQL plugin is active.
|
||||
- Improved developer tooling for linting, including pre-commit hooks.
|
||||
|
||||
### Changed
|
||||
- The media field is restricted to single file uploads for now.
|
||||
|
||||
### Removed
|
||||
- Unused “Created on” column from the model table.
|
||||
|
||||
## 0.1.0
|
||||
- Initial version.
|
||||
File diff suppressed because it is too large
Load Diff
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1.0.1
|
||||
* Initial release
|
||||
@@ -0,0 +1,146 @@
|
||||
# Copyright (C) 2021 Valice
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Banner Alerts 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/banner-alerts\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-28T21:27:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: banner-alerts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Admin/AdminPages.php:42
|
||||
msgid "Banner Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.banneralertsplugin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Provides an easy interface for creating and displaying alerts or notices as a banner on a website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Valice"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.valice.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:55
|
||||
msgid "Display title?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:58
|
||||
#: src/Admin/AdminPages.php:77
|
||||
#: src/Admin/AdminPages.php:92
|
||||
#: src/Admin/AdminPages.php:149
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:62
|
||||
#: src/Admin/AdminPages.php:81
|
||||
#: src/Admin/AdminPages.php:96
|
||||
#: src/Admin/AdminPages.php:153
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:66
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:70
|
||||
msgid "Display the title of alert in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:74
|
||||
msgid "Display read more link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:85
|
||||
msgid "Display read more link in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:89
|
||||
msgid "Display dismiss link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:100
|
||||
msgid "Allow alerts to be dismissed?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:104
|
||||
msgid "Display content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:107
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:111
|
||||
msgid "Full Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:115
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:119
|
||||
msgid "Choose the display setting for the alert message in the banner alert popup"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:123
|
||||
msgid "Open/Close Speed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:126
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:130
|
||||
msgid "Faster"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:134
|
||||
msgid "Slower"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:138
|
||||
msgid "Immediate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:142
|
||||
msgid "Choose the speed in which the alert is opened and closed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:146
|
||||
msgid "Use Slider"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:157
|
||||
msgid "Display alerts in a slider when multiple alerts are active?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:161
|
||||
msgid "Display styles"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:118
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:119
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:131
|
||||
msgid "A valid unix timestamp is required."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "wordpress-invoices-plugin",
|
||||
"version": "1.0.0",
|
||||
"description": "Beautiful and easy invoices for Wordpress",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"clone": "git clone https://github.com/mokuappio/serverless-invoices.git",
|
||||
"pull": "cd serverless-invoices && git pull",
|
||||
"config": "copy vue.config.js serverless-invoices\\vue.config.js && copy app.config.js serverless-invoices\\src\\config\\app.config.js",
|
||||
"build": "npm run config && cd serverless-invoices && npm i && npm run build",
|
||||
"prepare-release": "mv serverless-invoices/node_modules ../node_modules_temp && cp -r . ../bci",
|
||||
"clean-release": "rm -rf ../bci/.idea && rm -rf ../bci/.git && rm -rf ../bci/serverless-invoices/.git && mv ../node_modules_temp serverless-invoices/node_modules",
|
||||
"compress-release": "mv ../bci beautiful-custom-invoices && tar -a -c -f beautiful-custom-invoices.zip beautiful-custom-invoices && rm -rf beautiful-custom-invoices",
|
||||
"release": "npm run prepare-release && npm run clean-release && npm run compress-release"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org/elevateou/wordpress-invoices-plugin.git"
|
||||
},
|
||||
"author": "Elevate OU",
|
||||
"license": "ISC",
|
||||
"homepage": "https://bitbucket.org/elevateou/wordpress-invoices-plugin#readme"
|
||||
}
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
## [1.0.1] - 2021-09-29
|
||||
|
||||
- Fix fa-icon block type
|
||||
|
||||
## [1.0.0] - 2021-09-29
|
||||
|
||||
- First release
|
||||
@@ -0,0 +1,43 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR BeTheme
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BeThemesMe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-09 11:42+0530\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: includes/elementor-elements/features.php:42
|
||||
#: includes/elementor-elements/features.php:87
|
||||
msgid "Our Process"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:96
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:99
|
||||
msgid "Enter the title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:105
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:108
|
||||
msgid "Enter the description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:115
|
||||
msgid "Process Tabs"
|
||||
msgstr ""
|
||||
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "buddypress-birthdays",
|
||||
"version": "1.6.0",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays",
|
||||
"license": "GPL-2.0+",
|
||||
"description": "buddypress-birthdays",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-wp-i18n": "^1.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays"
|
||||
},
|
||||
"dependencies": {
|
||||
"load-grunt-tasks": "^3.5.2",
|
||||
"npm": "^8.1.4"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 02-12-2021 =
|
||||
* Initial release
|
||||
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
@@ -0,0 +1,204 @@
|
||||
# Copyright (c) 2021 Zabir Anik. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Boostimer - Product Availability Countdown And Scheduler For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/xaviranik/boostimer/issues\n"
|
||||
"Last-Translator: zabiranik.me@gmail.com\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-11-27T16:21:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: boostimer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Boostimer - Product Availability Countdown And Scheduler For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "From sale to stock, Store-wise availability management in a breeze."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Zabir Anik"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://zabiranik.com"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "View Boostimer documentation"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Visit Boostimer forums"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Community support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menu.php:32
|
||||
#: includes/Admin/Menu.php:33
|
||||
msgid "Boostimer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:52
|
||||
msgid "Show sale timer?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:55
|
||||
msgid "Show sale countdown timer if sale price and schedules are set"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:77
|
||||
#: src/pages/Settings.js:63
|
||||
msgid "Settings have been updated successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:121
|
||||
msgid "Sale timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:127
|
||||
msgid "Sale timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:135
|
||||
msgid "Is sale timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:144
|
||||
msgid "Stock timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:150
|
||||
msgid "Stock timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:158
|
||||
msgid "Is stock timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/SaleTimer.php:22
|
||||
#: src/pages/Settings.js:153
|
||||
msgid "Sale ends in:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/StockTimer.php:22
|
||||
#: src/pages/Settings.js:170
|
||||
msgid "Expected restock in:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:20
|
||||
msgid "Show restock timer?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:23
|
||||
msgid "Show restock countdown timer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:31
|
||||
msgid "Stock available after"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:35
|
||||
msgid "Sets probable restock date"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:34
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:38
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:42
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:46
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/notice.php:24
|
||||
msgid "Boostimer is inactive"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:33
|
||||
msgid "%1$sLooks like, WooCommerce is not installed.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sinstall WooCommerce »%6$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:42
|
||||
msgid "%1$sLooks like, WooCommerce is deactivated.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sactivate WooCommerce%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Sidebar.js:41
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Home.js:11
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:58
|
||||
msgid "Saving settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:68
|
||||
msgid "Settings could not be saved. Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:107
|
||||
msgid "Show Countdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:114
|
||||
msgid "Show Sale Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:115
|
||||
msgid "Enable this to show countdown timer for sale duration on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:129
|
||||
msgid "Show Stock Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:130
|
||||
msgid "Enable this to show countdown timer for next available stock on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:141
|
||||
msgid "Timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:148
|
||||
msgid "Sale Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:149
|
||||
msgid "This text will show on the sale timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:165
|
||||
msgid "Stock Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:166
|
||||
msgid "This text will show on the stock timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:189
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,13 @@
|
||||
/**1.0.2 - 2021.11.29 **/
|
||||
- Fixed: Fixed bundle price with tax include/exclude
|
||||
|
||||
/**1.0.1 - 2021.11.25 **/
|
||||
- Updated: Compatible with WooCommerce 5.7.1
|
||||
- Updated: Update support file
|
||||
- Updated: Add language default template
|
||||
- Updated: Add product type prefix when searching the product on bundle product setting
|
||||
- Updated: Prevent image resize on bundle view
|
||||
- Updated: Slider for select product popup
|
||||
|
||||
/**1.0 - 2021.11 **/
|
||||
- The first released
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "brandnestor",
|
||||
"version": "1.1.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"scripts": {
|
||||
"build": "gulp",
|
||||
"watch": "gulp watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/icons": "^6.0.1",
|
||||
"@wordpress/scripts": "^18.1.0",
|
||||
"cssnano": "^5.0.8",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-postcss": "^9.0.1",
|
||||
"gulp-sass": "^5.0.0",
|
||||
"sass": "^1.42.1",
|
||||
"webpack": "^5.59.0",
|
||||
"webpack-stream": "^7.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,705 @@
|
||||
# Copyright (C) 2021 Nikos Papadakis
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BrandNestor 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brandnestor\n"
|
||||
"Last-Translator: Nikos Papadakis <nikos@papadakis.xyz>\n"
|
||||
"Language-Team: WebNestors <info@webnestors.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"PO-Revision-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"X-Generator: WP-CLI 2.5.1-alpha-70ffdce\n"
|
||||
"X-Domain: brandnestor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BrandNestor"
|
||||
msgstr "BrandNestor"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Customize the WordPress dashboard, login/register pages, and more."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου του WordPress, τις σελίδες σύνδεσης/εγγραφής, και πολλά άλλα."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nikos Papadakis"
|
||||
msgstr "Νίκος Παπαδάκης"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://gitlab.com/nikopap/brandnestor"
|
||||
msgstr "https://gitlab.com/nikopap/brandnestor"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:115
|
||||
msgid "General"
|
||||
msgstr "Γενικά"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:116
|
||||
msgid "General options."
|
||||
msgstr "Γενικές επιλογές."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:122
|
||||
#: src/Admin/Settings/Settings.php:244
|
||||
msgid "Dashboard"
|
||||
msgstr "Πίνακας Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:123
|
||||
msgid "Customize the Dashboard page with your own Welcome Panel. You can choose to create it with standard HTML, or using an Elementor Template page."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου με το δικό σας Welcome Panel. Επιλέξτε να το δημιουργήσετε με HTML, ή με ένα Template του Elementor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:129
|
||||
msgid "Admin Menus"
|
||||
msgstr "Μενού Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:130
|
||||
msgid "Hide admin menu items for user roles and for users."
|
||||
msgstr "Κρύψτε στοιχεία του μενού ανά ρόλο χρήστη ή ανά χρήστη."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:136
|
||||
msgid "Admin Bar"
|
||||
msgstr "Μπάρα Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:137
|
||||
msgid "Options for the admin bar on top of the page."
|
||||
msgstr "Επιλογές για την μπάρα διαχειριστικού στο πάνω μέρος της σελίδας."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:143
|
||||
msgid "Authentication"
|
||||
msgstr "Αυθεντικοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:144
|
||||
msgid "Enable custom login & registration pages for your users or clients. BrandNestor registers new Elementor Login and Registration Widgets that allow authentication execution to exist on the frontend by skipping using the wp-login.php page"
|
||||
msgstr "Ενεργοποιήστε δικές σας σελίδες εισόδου και εγγραφής για τους χρήστες ή του πελάτες. Το BrandNestor ενεργοποιεί νέα Widgets του Elementor που επιτρέπουν την πιστοποίηση να γίνεται στο frontend παραλείποντας το wp-login.php."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:169
|
||||
msgid "Are you sure you want to reset the plugin? This will permanently delete all of the plugin data!"
|
||||
msgstr "Σίγουρα θέλετε να επαναφέρετε το πρόσθετο; Η ενέργεια θα διαγράψει τα δεδομένα του πρόσθετου μόνιμα!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:170
|
||||
msgid "An error occured during the request. See the developer console for details."
|
||||
msgstr "Υπήρξε λάθος κατά τη διάρκεια της άιτησης. Δείτε την κονσόλα προγραμματιστή για περισσότερες λεπτομέρειες."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:171
|
||||
msgid "Rule deleted"
|
||||
msgstr "Ο κανόνας διαγράφηκε"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:172
|
||||
msgid "Settings saved!"
|
||||
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:180
|
||||
msgid "Brand Name"
|
||||
msgstr "Όνομα Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:181
|
||||
msgid "Your Brand name. Will be used to replace any WordPress mentions in admin pages."
|
||||
msgstr "Το Όνομα της Εταιρείας σας. Θα χρησιμοποιηθεί για να αντικαταστήσει το WordPress στις σελίδες Admin."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:190
|
||||
msgid "Footer Text"
|
||||
msgstr "Κείμενο footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:191
|
||||
msgid "Text to display on the WordPress admin footer."
|
||||
msgstr "Κείμενο για εμφάνιση στο Footer του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:200
|
||||
msgid "Footer Image"
|
||||
msgstr "Εικόνα footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:201
|
||||
msgid "Image to display next to the footer text."
|
||||
msgstr "Εικόνα για εμφάνιση δίπλα στο κείμενο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:210
|
||||
msgid "Footer URL"
|
||||
msgstr "Footer URL"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:211
|
||||
msgid "The link URL for the footer text."
|
||||
msgstr "Ο σύνδεσμος για το κείμενο του footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:220
|
||||
msgid "Hide Dashboard Contextual Help"
|
||||
msgstr "Απόκρυψη βοήθειας του πίνακα ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:221
|
||||
msgid "Hide the WordPress dashboard contextual help box that is on the top of admin pages."
|
||||
msgstr "Κρύψτε την βοήθεια του πίνακα ελέγχου που βρίσκεται στην κορυφή του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:223
|
||||
#: src/Admin/Settings/Settings.php:234
|
||||
#: src/Admin/Settings/Settings.php:259
|
||||
#: src/Widgets/Login.php:98
|
||||
#: src/Widgets/Login.php:110
|
||||
#: src/Widgets/Register.php:88
|
||||
#: src/Widgets/Register.php:111
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:231
|
||||
msgid "Hide WordPress Version"
|
||||
msgstr "Απόκρυψη αριθμού έκδοσης WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:232
|
||||
msgid "Hide the WordPress version number that is displayed on the footer."
|
||||
msgstr "Απόκρυψη του αριθμού έκδοσης του WordPress που εμφανίζεται στο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:247
|
||||
#: src/Admin/Settings/Settings.php:334
|
||||
#: src/Admin/Settings/Settings.php:346
|
||||
msgid "Enable"
|
||||
msgstr "Ενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:255
|
||||
msgid "Hide Widgets"
|
||||
msgstr "Απόκρυψη Widget"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:256
|
||||
msgid "Hide all Dashboard widgets."
|
||||
msgstr "Απόκρυψη όλων των Widget του Πίνακα Ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:267
|
||||
msgid "Welcome Panel Type"
|
||||
msgstr "Τύπος Πίνακα Καλωσορίσματος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:268
|
||||
msgid "Choose between writing as HTML or an Elementor template as the type of the Dashboard Welcome Panel."
|
||||
msgstr "Επιλέξτε μεταξύ του HTML ή ενός Template του Elementor ως τύπο πίνακα καλωσορίσματος."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:287
|
||||
msgid "Elementor Template"
|
||||
msgstr "Template Elementor"
|
||||
|
||||
#. translators: %s Elementor library URL link
|
||||
#: src/Admin/Settings/Settings.php:290
|
||||
msgid "Choose a custom Welcome Panel from an Elementor Template page. <a href=\"%s\">Create one from here.</a>"
|
||||
msgstr "Επιλέξτε ένα δικό σας πίνακα Welcome από τα Templates του Elementor. <a href=\"%s\">Δημιουργία νέου από εδώ.</a>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:303
|
||||
msgid "Dashboard HTML"
|
||||
msgstr "HTML Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:304
|
||||
msgid "Insert custom HTML that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο HTML που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:314
|
||||
msgid "Dashboard CSS"
|
||||
msgstr "CSS Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:315
|
||||
msgid "Insert custom CSS styling that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο CSS που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:359
|
||||
msgid "Hide admin menus for:"
|
||||
msgstr "Απόκρυψη μενού διαχειριστή για:"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:363
|
||||
msgid "Role"
|
||||
msgstr "Ρόλος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:364
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:392
|
||||
msgid "Guest"
|
||||
msgstr "Επισκέπτης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:399
|
||||
msgid "Branding Logo"
|
||||
msgstr "Λογότυπο Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:400
|
||||
msgid "Image logo to display on the Dashboard Admin Bar."
|
||||
msgstr "Εικόνα λογότυπου για εμφάνιση στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:409
|
||||
msgid "Branding Logo URL"
|
||||
msgstr "URL Λογότυπου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:410
|
||||
msgid "Link URL for the Branding Logo on the Dashboard Admin Bar."
|
||||
msgstr "Σύνδεσομς URL για το λογότυπο στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:419
|
||||
msgid "Bar Menu Visibility"
|
||||
msgstr "Ορατότητα Μπάρας Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:420
|
||||
msgid "With this, you can change the Admin Bar menu visibility for logged in or logged out users on the frontend."
|
||||
msgstr "Με αυτό, μπορείτε να αλλάξετε την ορατότητα της μπάρας διαχειριστή για συνδεδεμένους ή αποσυνδεδεμένους χρήστες στο frontend."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:441
|
||||
msgid "Login Page"
|
||||
msgstr "Σελίδα Εισόδου"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:444
|
||||
msgid "Enable a custom Login Page for WordPress. Login URLs and redirects will point to this page. To add a login form to a page use the <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εισόδου για το WordPress. Τα URLs εισόδου θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εισόδου σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:457
|
||||
msgid "Register Page"
|
||||
msgstr "Σελίδα Εγγραφής"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:460
|
||||
msgid "Enable a custom Register Page for WordPress. Register URLs and redirects will point to this page. To add a register form to a page use the <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εγγραφής για το WordPress. Τα URL για εγγραφή θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εγγραφής σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:473
|
||||
msgid "Redirect URL On Login"
|
||||
msgstr "URL ανακατεύθυνσης σύνδεσης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:474
|
||||
msgid "URL to redirect to on successful user login. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή σύνδεση χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:483
|
||||
msgid "Redirect URL On Registration"
|
||||
msgstr "URL ανακατεύθυνσης εγγραφής"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:484
|
||||
msgid "URL to redirect to on successful user registration. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή εγγραφή χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:493
|
||||
msgid "WordPress Login Page Logo"
|
||||
msgstr "Λογότυπο σελίδας σύνδεσης του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:494
|
||||
msgid "Replace the default WordPress login page logo with your own <strong>(84x84 pixels).</strong> Useful if there are plugins that rely on the default WP login form, such as Two Factor."
|
||||
msgstr "Αντικαθιστά το λογότυπο του WordPress στην σελίδα σύνδεσης με το δικό σας <strong>(84x84 pixel).</strong> Χρήσιμο αν υπάρχουν πρόσθετα που βασίζονται στην προεπιλεγμένη σελίδα σύνδεσης, όπως το Two Factor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:503
|
||||
msgid "Disable Default WordPress Login Page"
|
||||
msgstr "Απενεργοποίηση Προεπιλεγμένης Σελίδας Εισόδου του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:504
|
||||
msgid "Disable the default WordPress login & register page. <span style=\"color:red\">WARNING: Make sure that your custom login and register pages work correctly, otherwise <strong>nobody</strong> will be able to sign in!</span>"
|
||||
msgstr "Απενεργοποίηση των προεπιλεγμένων σελίδων εισόδου και εγγραφής του WordPress. <span style=\"color:red\">ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Σιγουρευτείτε ότι οι δικές σας σελίδες εισόδου και εγγραφής δουλεύουν σωστά, διαφορετικά <strong>κανένας</strong> δεν θα μπορεί να κάνει είσοδο!</span>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:506
|
||||
#: src/Admin/Settings/Settings.php:517
|
||||
msgid "Disable"
|
||||
msgstr "Απενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:514
|
||||
msgid "Disable /wp-admin/ Page Redirect"
|
||||
msgstr "Απενεργοποίηση Ανακατεύθυνσης /wp-admin/"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:515
|
||||
msgid "Disables /wp-admin/ to login page redirection for non-logged in users to proactively hide your login and registration pages as a security feature."
|
||||
msgstr "Απενεργοποιεί το /wp-admin/ στην σελίδα εισόδου για χρήστες που δεν έχουν κάνει είσοδο ώστε να κρύψει την σελίδα εισόδου και εγγραφής."
|
||||
|
||||
#: src/Admin/Settings/SettingsImageField.php:26
|
||||
msgid "Upload Image"
|
||||
msgstr "Μεταφόρτωση εικόνας"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:53
|
||||
msgid "Add New"
|
||||
msgstr "Προσθήκεη νέου"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:67
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: src/Admin/Settings/SettingsSelectField.php:44
|
||||
msgid "-- None Selected --"
|
||||
msgstr "-- Κανένα Επιλεγμένο --"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:59
|
||||
msgid "View Documentation"
|
||||
msgstr "Προβολή εγχειριδίου"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:72
|
||||
msgid "Save Changes"
|
||||
msgstr "Αποθήκευση αλλαγών"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:80
|
||||
msgid "Upload"
|
||||
msgstr "Μεταφόρτωση"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:84
|
||||
msgid "Import Settings"
|
||||
msgstr "Εισαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:87
|
||||
msgid "Export Settings"
|
||||
msgstr "Εξαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:90
|
||||
msgid "Reset Plugin"
|
||||
msgstr "Επαναφορά προσθέτου"
|
||||
|
||||
#: src/Core/AjaxHandler.php:43
|
||||
#: src/Core/AjaxHandler.php:60
|
||||
#: src/Core/AjaxHandler.php:72
|
||||
#: src/Core/AjaxHandler.php:103
|
||||
#: src/Core/AjaxHandler.php:130
|
||||
#: src/Core/AjaxHandler.php:154
|
||||
msgid "Current user does not have the required capability"
|
||||
msgstr "Ο χρήστης δεν έχει τα απαιτούμενα δικαιώματα"
|
||||
|
||||
#: src/Core/RequestHandler.php:57
|
||||
msgid "<strong>Error:</strong> Incorrect username/email or password."
|
||||
msgstr "<strong>Λάθος:</strong> Εσφαλμένο όνομα χρήστη/email ή κωδικός."
|
||||
|
||||
#: src/Core/RequestHandler.php:299
|
||||
msgid "Import error: The uploaded file type is not allowed."
|
||||
msgstr "Σφάλμα εισαγωγής: Ο τύπος αρχείου φόρτωσης δεν επιτρέπεται."
|
||||
|
||||
#: src/Core/RequestHandler.php:314
|
||||
msgid "Settings successfully imported. It is recommended to manually check that all image URLs are pointing to your site, and that all page reference their correct IDs."
|
||||
msgstr "Οι ρυθμίσεις εισάχθηκαν με επιτυχία. Συνιστάται ο χειροκίνητος έλεγχος οτι οι επιλογές με URL αντιστοιχούν για την ιστοσελίδα σας, και ότι όλες αναφορές σελιδών είναι σωστές."
|
||||
|
||||
#: src/Core/RequestHandler.php:316
|
||||
msgid "Import error: The upload file is invalid."
|
||||
msgstr "Σφάλμα εισαγωγής: Το αρχείο φόρτωσης δεν είναι έγκυρο."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:45
|
||||
#: src/Front/Models/RegisterModel.php:40
|
||||
#: src/Widgets/Base_Form.php:479
|
||||
#: src/Widgets/Base_Form.php:480
|
||||
msgid "Submit"
|
||||
msgstr "Υποβολή"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:46
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
#: assets/js/src/blocks/login/block.js:33
|
||||
#: assets/js/build/blocks/blocks.js:119
|
||||
msgid "Get New Password"
|
||||
msgstr "Ζητήστε νέο συνθηματικό"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:62
|
||||
msgid "You are now logged out."
|
||||
msgstr "Έχετε αποσυνδεθεί."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:66
|
||||
msgid "User registration is currently disabled."
|
||||
msgstr "Η εγγραφή χρηστών έχει απενεργοποιηθεί προς το παρόν."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:70
|
||||
msgid "Your password has been reset. You can now log in with the form below."
|
||||
msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί. Μπορείτε τώρα να συνδεθείτε με την παρακάτω φόρμα."
|
||||
|
||||
#. translators: %s login page URL
|
||||
#: src/Front/Models/LoginModel.php:75
|
||||
msgid "Registration complete. Please check your email, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Η εγγραφή σας ολοκληρώθηκε. Παρακαλώ δείτε το email σας και στην συνέχεια επισκεφτείτε την <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#. translators: %s register page URL
|
||||
#: src/Front/Models/LoginModel.php:80
|
||||
msgid "Check your email for the confirmation link, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Ελέγξτε το email σας για τον σύνδεσμο επιβεβαίωσης και στη συνέχεια επισκεφτείτε τη <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:84
|
||||
msgid "Your password reset link has expired. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης έχει λήξει. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:88
|
||||
msgid "Your password reset link appears to be invalid. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης φαίνεται να μην είναι έγκυρος. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Widgets/Base_Form.php:32
|
||||
msgid "Style"
|
||||
msgstr "Στιλ"
|
||||
|
||||
#: src/Widgets/Base_Form.php:40
|
||||
msgid "Form Label Typography"
|
||||
msgstr "Τυπογραφία ετικέτας εισόδου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:49
|
||||
msgid "Text Typography"
|
||||
msgstr "Τυπογραφία κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:58
|
||||
#: src/Widgets/Base_Form.php:92
|
||||
#: src/Widgets/Base_Form.php:359
|
||||
msgid "Text Color"
|
||||
msgstr "Χρώμα κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:76
|
||||
msgid "Inputs"
|
||||
msgstr "Εισόδοι"
|
||||
|
||||
#: src/Widgets/Base_Form.php:104
|
||||
#: src/Widgets/Base_Form.php:370
|
||||
msgid "Background Color"
|
||||
msgstr "Χρώμα Φόντου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:155
|
||||
#: src/Widgets/Base_Form.php:469
|
||||
msgid "Button"
|
||||
msgstr "Κουμπί"
|
||||
|
||||
#: src/Widgets/Base_Form.php:343
|
||||
msgid "Message Box"
|
||||
msgstr "Κουτί μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:351
|
||||
msgid "Message Styling"
|
||||
msgstr "Στυλ μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:389
|
||||
msgid "Error Message Styling"
|
||||
msgstr "Στυλ μηνύματος σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:397
|
||||
msgid "Error Text Color"
|
||||
msgstr "Χρώμα κειμένου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:408
|
||||
msgid "Error Background Color"
|
||||
msgstr "Χρώμα φόντου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:477
|
||||
msgid "Button Label"
|
||||
msgstr "Κείμενου κουμπιού"
|
||||
|
||||
#: src/Widgets/Base_Form.php:487
|
||||
msgid "Alignment"
|
||||
msgstr "Ευθυγράμμιση"
|
||||
|
||||
#: src/Widgets/Base_Form.php:491
|
||||
msgid "Left"
|
||||
msgstr "Αριστερά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:495
|
||||
msgid "Center"
|
||||
msgstr "Κέντρο"
|
||||
|
||||
#: src/Widgets/Base_Form.php:499
|
||||
msgid "Right"
|
||||
msgstr "Δεξιά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:503
|
||||
msgid "Justified"
|
||||
msgstr "Justified"
|
||||
|
||||
#: src/Widgets/Base_Form.php:513
|
||||
msgid "Button Icon"
|
||||
msgstr "Εικονίδιο κουμπιού"
|
||||
|
||||
#: src/Widgets/Login.php:57
|
||||
#: src/Widgets/Register.php:57
|
||||
#: assets/js/build/blocks/blocks.js:283
|
||||
#: assets/js/build/blocks/blocks.js:523
|
||||
#: assets/js/src/blocks/login/edit.js:49
|
||||
#: assets/js/src/blocks/register/edit.js:48
|
||||
#: assets/js/build/blocks/blocks.js:194
|
||||
#: assets/js/build/blocks/blocks.js:404
|
||||
msgid "Content"
|
||||
msgstr "Περιεχόμενο"
|
||||
|
||||
#: src/Widgets/Login.php:65
|
||||
msgid "Login Label"
|
||||
msgstr "Ετικέτα ψευδώνυμου"
|
||||
|
||||
#: src/Widgets/Login.php:75
|
||||
msgid "Password Label"
|
||||
msgstr "Ετικέτα συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:85
|
||||
msgid "Remember Me Label"
|
||||
msgstr "Ετικέτα «να με θυμάσαι»"
|
||||
|
||||
#: src/Widgets/Login.php:95
|
||||
#: assets/js/build/blocks/blocks.js:285
|
||||
#: assets/js/src/blocks/login/edit.js:51
|
||||
#: assets/js/build/blocks/blocks.js:196
|
||||
msgid "Show Lost Password"
|
||||
msgstr "Εμφάνιση φόρμας υπενθύμισης συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:97
|
||||
#: src/Widgets/Login.php:109
|
||||
#: src/Widgets/Register.php:87
|
||||
#: src/Widgets/Register.php:110
|
||||
msgid "Show"
|
||||
msgstr "Εμφάνιση"
|
||||
|
||||
#: src/Widgets/Login.php:107
|
||||
#: assets/js/build/blocks/blocks.js:292
|
||||
#: assets/js/src/blocks/login/edit.js:61
|
||||
#: assets/js/build/blocks/blocks.js:206
|
||||
msgid "Show Register URL"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: src/Widgets/Login.php:119
|
||||
msgid "New Password Button Label"
|
||||
msgstr "Ετικέτα κουμπιού νέου συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:135
|
||||
#: src/Widgets/Register.php:137
|
||||
#: assets/js/build/blocks/blocks.js:334
|
||||
#: assets/js/build/blocks/blocks.js:568
|
||||
#: assets/js/src/blocks/login/edit.js:96
|
||||
#: assets/js/src/blocks/register/edit.js:89
|
||||
#: assets/js/build/blocks/blocks.js:241
|
||||
#: assets/js/build/blocks/blocks.js:445
|
||||
msgid "Sample message."
|
||||
msgstr "Δείγμα μηνύματος"
|
||||
|
||||
#: src/Widgets/Login.php:136
|
||||
#: src/Widgets/Register.php:138
|
||||
msgid "Sample <strong>error</strong> message."
|
||||
msgstr "Δείγμα μηνύματος <strong>σφάλματος</strong>."
|
||||
|
||||
#: src/Widgets/Register.php:65
|
||||
msgid "Username Label"
|
||||
msgstr "Ετικέτα ψευδόνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:75
|
||||
msgid "Email Label"
|
||||
msgstr "Ετικέτα Email"
|
||||
|
||||
#: src/Widgets/Register.php:85
|
||||
#: assets/js/build/blocks/blocks.js:525
|
||||
#: assets/js/src/blocks/register/edit.js:50
|
||||
#: assets/js/build/blocks/blocks.js:406
|
||||
msgid "Show First Name Input"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:97
|
||||
msgid "First Name Label"
|
||||
msgstr "Ετικέτα Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:108
|
||||
#: assets/js/build/blocks/blocks.js:532
|
||||
#: assets/js/src/blocks/register/edit.js:60
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
msgid "Show Last Name Input"
|
||||
msgstr "Εμφάνιση Επώνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:120
|
||||
msgid "Last Name Label"
|
||||
msgstr "Ετικέτα Επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:175
|
||||
#: assets/js/src/blocks/login/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:92
|
||||
msgid "BrandNestor Login"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:176
|
||||
#: assets/js/src/blocks/login/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:93
|
||||
msgid "A custom Login widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget σύνδεσης για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:201
|
||||
msgid "Showing lost password link"
|
||||
msgstr "Εμφάνιση συνδέσμου χαμένου συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:57
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
msgid "Toggle to show lost password link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος χαμένου κωδικού πρόσβασης"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:211
|
||||
msgid "Showing register link"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:67
|
||||
#: assets/js/build/blocks/blocks.js:212
|
||||
msgid "Toggle to show register link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:299
|
||||
#: assets/js/src/blocks/login/edit.js:71
|
||||
#: assets/js/build/blocks/blocks.js:216
|
||||
msgid "New Password Button Text"
|
||||
msgstr "Κείμενο κουμπιού Νέου Συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
#: assets/js/build/blocks/blocks.js:538
|
||||
#: assets/js/src/blocks/login/edit.js:76
|
||||
#: assets/js/src/blocks/register/edit.js:70
|
||||
#: assets/js/build/blocks/blocks.js:221
|
||||
#: assets/js/build/blocks/blocks.js:426
|
||||
msgid "Button Alignment"
|
||||
msgstr "Ευθυγράμμιση κουμπιού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:336
|
||||
#: assets/js/build/blocks/blocks.js:570
|
||||
#: assets/js/src/blocks/login/edit.js:97
|
||||
#: assets/js/src/blocks/register/edit.js:90
|
||||
#: assets/js/build/blocks/blocks.js:242
|
||||
#: assets/js/build/blocks/blocks.js:446
|
||||
msgid "Sample error message."
|
||||
msgstr "Δείγμα μηνύματος σφάλματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:346
|
||||
#: assets/js/build/blocks/blocks.js:580
|
||||
#: assets/js/src/blocks/login/edit.js:105
|
||||
#: assets/js/src/blocks/register/edit.js:98
|
||||
#: assets/js/build/blocks/blocks.js:250
|
||||
#: assets/js/build/blocks/blocks.js:454
|
||||
msgid "Add a username label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος χρήστη…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:358
|
||||
#: assets/js/src/blocks/login/edit.js:114
|
||||
#: assets/js/build/blocks/blocks.js:259
|
||||
msgid "Add a password label…"
|
||||
msgstr "Προσθέστε ετικέτα συνθηματικού…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:415
|
||||
#: assets/js/src/blocks/register/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:303
|
||||
msgid "BrandNestor Register"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
#: assets/js/src/blocks/register/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
msgid "A custom Register widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget εγγραφής για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:55
|
||||
#: assets/js/src/blocks/register/edit.js:65
|
||||
#: assets/js/build/blocks/blocks.js:411
|
||||
#: assets/js/build/blocks/blocks.js:421
|
||||
msgid "Showing a first name input field"
|
||||
msgstr "Εμφάνιση πεδίου εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/src/blocks/register/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:412
|
||||
msgid "Toggle to show the first name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:422
|
||||
msgid "Toggle to show the last name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:592
|
||||
#: assets/js/src/blocks/register/edit.js:107
|
||||
#: assets/js/build/blocks/blocks.js:463
|
||||
msgid "Add an email label…"
|
||||
msgstr "Προσθέστε ετικέτα email…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:604
|
||||
#: assets/js/src/blocks/register/edit.js:117
|
||||
#: assets/js/build/blocks/blocks.js:473
|
||||
msgid "Add a first name label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:616
|
||||
#: assets/js/src/blocks/register/edit.js:128
|
||||
#: assets/js/build/blocks/blocks.js:484
|
||||
msgid "Add a last name label…"
|
||||
msgstr "Προσθέστε ετικέτα επώνυμου…"
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "BTCPayWall",
|
||||
"version": "1.0.0",
|
||||
"description": "BTCPayWall is a WordPress plugin for publishers to charge for paid content. With the help of WordPress BTCPayWall plugin you can offer previews of your blog posts and accept bitcoin payment for a single post (pay-per-post) via Lightning Network.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^17.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,370 @@
|
||||
# Copyright (C) 2021 Casso Team
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Casso - Automatically confirm bank transfer payments 2.0."
|
||||
"0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/casso-wordpress-"
|
||||
"plugin\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tiếng Việt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-06-08T08:18:22+00:00\n"
|
||||
"PO-Revision-Date: 2021-07-23 07:29+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: casso-wordpress-plugin\n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Loco-Version: 2.5.2; wp-5.7.2"
|
||||
|
||||
#: inc/banks/class-casso-base.php:735
|
||||
msgid ""
|
||||
" <div class='power_by'>Automatic transaction checking by Casso Robot</div>"
|
||||
msgstr ""
|
||||
" <div class='power_by'>Tra soát giao dịch tự động bởi Casso Robot</div>"
|
||||
|
||||
#: inc/class-casso-admin-page.php:268
|
||||
msgid "Acceptance difference"
|
||||
msgstr "Chênh lệch chấp nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:404 inc/banks/class-casso-momo.php:152
|
||||
msgid "Account number"
|
||||
msgstr "Số tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:213
|
||||
msgid "Account on/off"
|
||||
msgstr "Bật/tắt tài khoản"
|
||||
|
||||
#: wc-gateway-casso.php:322
|
||||
msgid "Active"
|
||||
msgstr "Đang hoạt động"
|
||||
|
||||
#: inc/banks/class-casso-base.php:281 inc/banks/class-casso-base.php:424
|
||||
#: inc/banks/class-casso-momo.php:91 inc/banks/class-casso-momo.php:172
|
||||
msgid "Amount"
|
||||
msgstr "Số tiền"
|
||||
|
||||
#: inc/class-casso-admin-page.php:163
|
||||
msgid "Authorization code"
|
||||
msgstr "Mã xác nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:412 inc/banks/class-casso-momo.php:160
|
||||
msgid "Bank"
|
||||
msgstr "Ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-base.php:333 inc/banks/class-casso-momo.php:123
|
||||
msgid "Bank transfer QR code"
|
||||
msgstr "Mã QR chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:186
|
||||
msgid "Bussiness name"
|
||||
msgstr "Tên doanh nghiệp"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Casso - Tự động xác nhận thanh toán chuyển khoản ngân hàng"
|
||||
msgstr ""
|
||||
|
||||
#: wc-gateway-casso.php:437
|
||||
msgid ""
|
||||
"Casso announces received <b>%s</b> VND, content <B>%s</B> has been moved to "
|
||||
"<b>Account number %s</b>"
|
||||
msgstr ""
|
||||
"Casso thông báo nhận <b>%s</b> VND, nội dung <B>%s</B> chuyển vào <b>STK "
|
||||
"%s</b>"
|
||||
|
||||
#: wc-gateway-casso.php:263
|
||||
msgid ""
|
||||
"Casso is not running because WooCommerce is not active. Please activate both "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
"Casso không chạy vì WooCommerce không hoạt động. Vui lòng kích hoạt cả hai "
|
||||
"plugin."
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Casso plugin developed to connect Vietnamese banks with Wordpress. Help "
|
||||
"automatically confirm the order has been paid by wire transfer in Vietnam."
|
||||
msgstr ""
|
||||
"Plugin Casso phát triển để kết nối các ngân hàng Việt Nam vào Wordpress. "
|
||||
"Giúp tự động xác nhận các đơn hàng được thanh toán bằng hình thức chuyển "
|
||||
"khoản ngân hàng Việt Nam."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Casso Team"
|
||||
msgstr "Casso Team"
|
||||
|
||||
#: inc/class-casso-admin-page.php:155
|
||||
msgid "Click here to show manual configuration"
|
||||
msgstr "Click vào đây hiện thị cấu hình thủ công"
|
||||
|
||||
#: inc/class-casso-admin-page.php:178
|
||||
msgid "Connection Information"
|
||||
msgstr "Thông tin kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:285 inc/banks/class-casso-base.php:436
|
||||
#: inc/banks/class-casso-momo.php:95 inc/banks/class-casso-momo.php:184
|
||||
msgid "Content"
|
||||
msgstr "Nội dung"
|
||||
|
||||
#: inc/class-casso-admin-page.php:369 inc/class-casso-admin-page.php:394
|
||||
msgid "Default"
|
||||
msgstr "Mặc định"
|
||||
|
||||
#: inc/class-casso-admin-page.php:147
|
||||
msgid "Enable QR code display mode VietQR"
|
||||
msgstr "Bật chế độ hiển thị mã VietQR"
|
||||
|
||||
#: inc/class-casso-admin-page.php:129
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Mở/Đóng"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://casso.vn/"
|
||||
msgstr "https://casso.vn/"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
msgstr "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
|
||||
#: inc/banks/class-casso-base.php:307 inc/banks/class-casso-base.php:620
|
||||
msgid "I have already paid"
|
||||
msgstr "Tôi đã thanh toán"
|
||||
|
||||
#: wc-gateway-casso.php:320
|
||||
msgid "Inactive"
|
||||
msgstr "Ngưng hoạt động"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Link Casso"
|
||||
msgstr "Liên kết Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:188
|
||||
msgid "List of bank accounts"
|
||||
msgstr "Danh sách tài khoản ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:32
|
||||
msgid "Make payment by bank transfer via Momo."
|
||||
msgstr "Thanh toán bằng chuyển khoản qua Momo."
|
||||
|
||||
#: inc/banks/class-casso-acb.php:32 inc/banks/class-casso-agribank.php:30
|
||||
#: inc/banks/class-casso-bidv.php:31 inc/banks/class-casso-mbbank.php:31
|
||||
#: inc/banks/class-casso-ocb.php:31 inc/banks/class-casso-techcombank.php:30
|
||||
#: inc/banks/class-casso-timoplus.php:33 inc/banks/class-casso-tpbank.php:31
|
||||
#: inc/banks/class-casso-vietcombank.php:32
|
||||
#: inc/banks/class-casso-vietinbank.php:31 inc/banks/class-casso-vpbank.php:31
|
||||
msgid "Make payment by bank transfer."
|
||||
msgstr "Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. "
|
||||
|
||||
#: inc/banks/class-casso-momo.php:25
|
||||
msgid ""
|
||||
"Make payment by money transfer via momo. The system automatically confirms "
|
||||
"the order payment after the transfer is completed"
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/class-casso-admin-page.php:254
|
||||
msgid ""
|
||||
"Maximum 15 characters, no spaces and no special characters. If contained, it "
|
||||
"will be deleted"
|
||||
msgstr ""
|
||||
"Tối đa 15 kí tự, không chứa khoảng trắng và kí tự đặc biệt. Nếu chứa sẽ bị "
|
||||
"xóa"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:20
|
||||
msgid "Momo Wallet"
|
||||
msgstr "Ví Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:184
|
||||
msgid "No banks found"
|
||||
msgstr "Không tìm thấy tài khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:181 inc/class-casso-admin-page.php:337
|
||||
msgid "No connection"
|
||||
msgstr "Chưa kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:459
|
||||
msgid ""
|
||||
"No matching transfers were found. The system is still checking the "
|
||||
"transaction"
|
||||
msgstr ""
|
||||
"Không tìm thấy giao dịch nào phù hợp. Hệ thống vẫn đang kiểm tra. Có thể tốn "
|
||||
"1 khoảng thời gian "
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "or"
|
||||
msgstr "hoặc"
|
||||
|
||||
#: wc-gateway-casso.php:460
|
||||
msgid "Order has been overpaid"
|
||||
msgstr "Đơn hàng đã thanh toán dư"
|
||||
|
||||
#: wc-gateway-casso.php:324
|
||||
msgid "Out of money"
|
||||
msgstr "Hết tiền"
|
||||
|
||||
#: wc-gateway-casso.php:140 wc-gateway-casso.php:145 wc-gateway-casso.php:171
|
||||
msgid "Paid"
|
||||
msgstr "Đã thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:25 inc/banks/class-casso-agribank.php:23
|
||||
#: inc/banks/class-casso-bidv.php:24 inc/banks/class-casso-mbbank.php:24
|
||||
#: inc/banks/class-casso-ocb.php:24 inc/banks/class-casso-techcombank.php:23
|
||||
#: inc/banks/class-casso-timoplus.php:26 inc/banks/class-casso-tpbank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:24 inc/banks/class-casso-vpbank.php:24
|
||||
msgid ""
|
||||
"Payment by bank transfer. The system automatically confirms the paid order "
|
||||
"after the transfer is completed."
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:26 inc/banks/class-casso-momo.php:31
|
||||
msgid "Payment Momo"
|
||||
msgstr "Thanh toán Momo"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:24 inc/banks/class-casso-acb.php:26
|
||||
#: inc/banks/class-casso-acb.php:31 inc/banks/class-casso-agribank.php:22
|
||||
#: inc/banks/class-casso-agribank.php:24 inc/banks/class-casso-agribank.php:29
|
||||
#: inc/banks/class-casso-bidv.php:23 inc/banks/class-casso-bidv.php:25
|
||||
#: inc/banks/class-casso-bidv.php:30 inc/banks/class-casso-mbbank.php:23
|
||||
#: inc/banks/class-casso-mbbank.php:25 inc/banks/class-casso-mbbank.php:30
|
||||
#: inc/banks/class-casso-ocb.php:23 inc/banks/class-casso-ocb.php:25
|
||||
#: inc/banks/class-casso-ocb.php:30 inc/banks/class-casso-techcombank.php:22
|
||||
#: inc/banks/class-casso-techcombank.php:24
|
||||
#: inc/banks/class-casso-techcombank.php:29
|
||||
#: inc/banks/class-casso-timoplus.php:25 inc/banks/class-casso-timoplus.php:27
|
||||
#: inc/banks/class-casso-timoplus.php:32 inc/banks/class-casso-tpbank.php:23
|
||||
#: inc/banks/class-casso-tpbank.php:25 inc/banks/class-casso-tpbank.php:30
|
||||
#: inc/banks/class-casso-vietcombank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:26
|
||||
#: inc/banks/class-casso-vietcombank.php:31
|
||||
#: inc/banks/class-casso-vietinbank.php:23
|
||||
#: inc/banks/class-casso-vietinbank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:30 inc/banks/class-casso-vpbank.php:23
|
||||
#: inc/banks/class-casso-vpbank.php:25 inc/banks/class-casso-vpbank.php:30
|
||||
msgid "Payment via bank %s"
|
||||
msgstr "Thanh toán ngân hàng %s"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:108
|
||||
msgid "Phone number"
|
||||
msgstr "Số điện thoại"
|
||||
|
||||
#: inc/banks/class-casso-base.php:385 inc/banks/class-casso-momo.php:133
|
||||
msgid ""
|
||||
"Please transfer the correct content <b style='font-size: 20px;'>%s</b> for "
|
||||
"we can confirm the payment"
|
||||
msgstr ""
|
||||
"Vui lòng chuyển đúng nội dung <b style = 'font-size: 20px;'>% s </b> để "
|
||||
"chúng tôi xác nhận thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-base.php:367
|
||||
msgid "SAVE IMAGE QR"
|
||||
msgstr "LƯU ẢNH QR"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:24
|
||||
msgid "Scan code Momo"
|
||||
msgstr "Quét mã Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:203
|
||||
msgid "Security Key"
|
||||
msgstr "Key bảo mật"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Set up a link with Casso"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "Set up automatic Casso link"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: wc-gateway-casso.php:331
|
||||
msgid "Settings"
|
||||
msgstr "Thiết lập"
|
||||
|
||||
#: inc/class-casso-admin-page.php:182 inc/class-casso-admin-page.php:338
|
||||
msgid "Show details"
|
||||
msgstr "Hiển thị chi tiết"
|
||||
|
||||
#: inc/class-casso-admin-page.php:334
|
||||
msgid "Show less"
|
||||
msgstr "Thu gọn"
|
||||
|
||||
#: inc/class-casso-admin-page.php:274
|
||||
msgid "Status after full payment or balance:"
|
||||
msgstr "Trạng thái sau khi thanh toán đủ hoặc dư:"
|
||||
|
||||
#: inc/class-casso-admin-page.php:289
|
||||
msgid "Status if payment is missing:"
|
||||
msgstr "Trạng thái nếu thanh toán bị thiếu:"
|
||||
|
||||
#: wc-gateway-casso.php:443
|
||||
msgid "The order is underpaid so it is not completed"
|
||||
msgstr "Đơn hàng bị thanh toán thiếu nên chưa hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-base.php:368
|
||||
msgid "Then open the banking App and scan the transfer QR"
|
||||
msgstr " Sau đó mở App ngân hàng quét QR chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:433
|
||||
msgid "Transaction is too old, not processed"
|
||||
msgstr "Giao dịch quá cũ, không xử lý"
|
||||
|
||||
#: inc/class-casso-admin-page.php:251
|
||||
msgid "Transaction prefix"
|
||||
msgstr "Tiền tố giao dịch"
|
||||
|
||||
#: inc/banks/class-casso-base.php:90
|
||||
msgid "Transfer"
|
||||
msgstr "Chuyển khoản"
|
||||
|
||||
#: inc/banks/class-casso-base.php:97
|
||||
msgid ""
|
||||
"Transfer money to our account<b> %s</b>. The order will be confirmed "
|
||||
"immediately after the transfer"
|
||||
msgstr ""
|
||||
"Chuyển khoản vào tài khoản <b>%s</b> của chúng tôi. Đơn hàng sẽ được xác "
|
||||
"nhận ngay sau khi chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:323
|
||||
msgid "Trial"
|
||||
msgstr "Dùng thử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:137
|
||||
msgid "Turn on bank transfer"
|
||||
msgstr "Bật chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:258 inc/class-casso-admin-page.php:262
|
||||
msgid "Turn on Case Sensitivity"
|
||||
msgstr "Bật Phân biệt chữ hoa / chữ thường"
|
||||
|
||||
#: wc-gateway-casso.php:148 wc-gateway-casso.php:153 wc-gateway-casso.php:172
|
||||
msgid "Underpaid"
|
||||
msgstr "Thanh toán thiếu"
|
||||
|
||||
#: inc/class-casso-admin-page.php:229
|
||||
msgid "Updating account name"
|
||||
msgstr "Đang cập nhật tên tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:187
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:142
|
||||
msgid "VietQR"
|
||||
msgstr ""
|
||||
|
||||
#: inc/banks/class-casso-momo.php:107
|
||||
msgid "Wallet"
|
||||
msgstr "Ví điện tử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:204 inc/class-casso-admin-page.php:245
|
||||
msgid "Webhook URL"
|
||||
msgstr "Webhook URL"
|
||||
|
||||
#: inc/banks/class-casso-base.php:312 inc/banks/class-casso-base.php:615
|
||||
msgid "You paid"
|
||||
msgstr "Bạn đã thanh toán thành công"
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2021.10.15**/
|
||||
- Updated: Update support file
|
||||
|
||||
/**1.0.0 - 2021.10.14**/
|
||||
~ The first released
|
||||
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2022 Arshid
|
||||
# This file is distributed under the same license as the CF7 Signature plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CF7 Signature 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-signature\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-01-01T02:00:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cf7-signature\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "CF7 Signature"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://ciphercoin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Signature input field for contact form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Arshid"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:92
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:105
|
||||
msgid "sign"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:113
|
||||
msgid "Generate a form-tag for a date input field. For more details, see %s."
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:115
|
||||
msgid "https://contactform7.com/date-field/"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:115
|
||||
msgid "Date field"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:125
|
||||
#: cf7-signature.php:128
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:129
|
||||
msgid "Required field"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:135
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:141
|
||||
msgid "Id attribute"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:146
|
||||
msgid "Class attribute"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:158
|
||||
msgid "Insert Tag"
|
||||
msgstr ""
|
||||
|
||||
#: cf7-signature.php:163
|
||||
msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab."
|
||||
msgstr ""
|
||||
@@ -1237,3 +1237,7 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
<!-- This Google structured data (Rich Snippet) auto generated by RadiusTheme Review Schema plugin version 1.0.1 -->
|
||||
|
||||
|
||||
<!-- gofer-seo -->
|
||||
<!-- Gofer SEO - 1.0.1 -->
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2021.12.22 **/
|
||||
- Fixed: Attributes hide/show
|
||||
|
||||
/**1.0.0 - 2021.12 **/
|
||||
- The first released
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "copysmithai",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"publish": "webpack --env production",
|
||||
"staging": "webpack --env staging",
|
||||
"start": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.15.0",
|
||||
"@babel/preset-env": "^7.15.0",
|
||||
"acorn": "^8.4.1",
|
||||
"babel-loader": "^8.2.2",
|
||||
"webpack": "^5.50.0",
|
||||
"webpack-cli": "^4.8.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/preset-react": "^7.14.5",
|
||||
"@copysmith/api": "0.0.74-5",
|
||||
"@emotion/react": "^11.4.1",
|
||||
"@emotion/styled": "^11.3.0",
|
||||
"@material-ui/core": "^4.12.3",
|
||||
"@material-ui/icons": "^4.11.2",
|
||||
"@mui/material": "^5.0.0",
|
||||
"axios": "^0.21.1",
|
||||
"dotenv": "^10.0.0",
|
||||
"formik": "^2.2.9",
|
||||
"luxon": "^2.0.2",
|
||||
"prop-types": "^15.7.2",
|
||||
"react": "^17.0.2",
|
||||
"react-dnd": "^14.0.3",
|
||||
"react-dnd-html5-backend": "^14.0.1",
|
||||
"react-dom": "^17.0.2",
|
||||
"react-query": "^3.19.6",
|
||||
"react-tag-input": "^6.7.3",
|
||||
"yup": "^0.32.11"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/crucial-real-estate/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/crucial-real-estate/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - September 22 2021 =
|
||||
* Initial release
|
||||
@@ -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 ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/dev-studio/change_log/changelog.txt
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/dev-studio/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
= 2.0.0 =
|
||||
* Update - New UI
|
||||
* Update - Plugin built on vanilla JS instead of using jQuery
|
||||
* Update - Data collection time improvement
|
||||
* Update - Optimized scripts and styles
|
||||
* Update - Wordpress support up to latest version
|
||||
* Update - WooCommerce support up to latest version
|
||||
* Add - Storage instance options (uploads directory or custom directory or Redis)
|
||||
* Add - Storage statistics
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,766 @@
|
||||
# Copyright (C) 2022 Diller AS
|
||||
# This file is distributed under the MIT.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Diller Loyalty 2 2.0.12\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/diller-loyalty\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-01-08T17:05:13+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: diller-loyalty\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Diller Loyalty 2"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://diller.no/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Diller is a loyalty platform for businesses that is easy, affordable and profitable and integrates seamlessly with your WooCommerce shop."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Diller AS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://diller.no/kontakt/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:110
|
||||
msgid "Diller Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:125
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:176
|
||||
#: admin/partials/diller-loyalty-admin-display.php:53
|
||||
msgid "Store connected successfully"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error description provided by the API.
|
||||
#: admin/class-diller-loyalty-admin.php:189
|
||||
msgid "Could not connect store. Details: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-diller-loyalty-admin.php:220
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:28
|
||||
msgid "Connect your store"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:30
|
||||
msgid "Connected successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:34
|
||||
msgid "Contact your partner to get your API-Key and Store ID."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:41
|
||||
msgid "Store name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:48
|
||||
msgid "API-Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:51
|
||||
msgid "Your API-Key (32 chars long)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:55
|
||||
msgid "Store Pin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:58
|
||||
msgid "Your store PIN (6-digit long)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:63
|
||||
msgid "Reconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-connect.php:63
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:21
|
||||
#: includes/class-diller-loyalty-auth.php:23
|
||||
msgid "You don't have permission to authenticate Diller Loyalty Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:48
|
||||
msgid "Thanks for installing Diller Loyalty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:56
|
||||
msgid "Environment:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-display.php:57
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:36
|
||||
msgid "Allow phone numbers from all countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:37
|
||||
msgid "Allow phone numbers from all countries, except for…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:38
|
||||
msgid "Allow phone numbers from specific countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:46
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:54
|
||||
msgid "Phone lookup - 1881.no"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:58
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:75
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:167
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:59
|
||||
msgid "If checked, Diller will try to fetch name and address automatically from 1881.no, by using the phone number."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:63
|
||||
msgid "Default phone country code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:70
|
||||
msgid "Enhanced phone field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:76
|
||||
msgid "If checked, form displays an enhanced phone input field, with dropdown to pick country codes and validate phone numbers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:80
|
||||
msgid "Phone numbers allowed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:87
|
||||
msgid "This option lets you define countries for which phone numbers are allowed or not."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:91
|
||||
msgid "Countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:102
|
||||
msgid "Preferred countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:109
|
||||
msgid "Choose one or more countries, to display on the top of the list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:117
|
||||
msgid "Formats"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:119
|
||||
msgid "Configure date formats, etc"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:124
|
||||
msgid "Default date placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: new line break
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:130
|
||||
msgid "The default placeholder for date input fields to provide a hint on how to type the date.%1$sEg. Norway: dd.mm.åååå, Sweden: åååå-mm-dd, UK: dd/mm/yyyy, US: mm/dd/yyyyetc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:148
|
||||
msgid "My Account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:155
|
||||
msgid "Minimum age for enrollment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:158
|
||||
msgid "The minimum age allowed, for enrolling the Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:163
|
||||
msgid "Enable stamps usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:168
|
||||
msgid "If checked, Stamps feature will be available for this store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/diller-loyalty-admin-settings.php:176
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: diller-loyalty.php:119
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-api-request.php:178
|
||||
msgid "Invalid authentication. Please make sure you typed the correct API-key and Store Pin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-api-request.php:180
|
||||
msgid "The API was unreachable."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: placeholder adds the response code.
|
||||
#: includes/class-diller-loyalty-api-request.php:188
|
||||
msgid "The API returned a <strong>%s</strong> response"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:206
|
||||
msgid "Could not extract the country code from the phone number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:221
|
||||
#: includes/class-diller-loyalty-utils.php:236
|
||||
#: includes/class-diller-loyalty-utils.php:253
|
||||
msgid "Invalid input. Could not parse phone number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:360
|
||||
msgid "Reason: The API was unreachable because the Airplane Mode plugin is active."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-utils.php:381
|
||||
msgid "Reason: The API was unreachable because no external hosts are allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:41
|
||||
#: includes/class-diller-loyalty-woocommerce.php:283
|
||||
msgid "My coupons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:42
|
||||
#: includes/class-diller-loyalty-woocommerce.php:426
|
||||
msgid "My stamp cards"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:43
|
||||
#: includes/class-diller-loyalty-woocommerce.php:179
|
||||
#: includes/forms/class-diller-refer-friend-form.php:10
|
||||
#: includes/shortcodes/class-diller-refer-friend-shortcode.php:15
|
||||
msgid "Refer a friend"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:44
|
||||
#: includes/class-diller-loyalty-woocommerce.php:145
|
||||
#: includes/class-diller-loyalty-woocommerce.php:708
|
||||
#: includes/class-diller-loyalty-woocommerce.php:983
|
||||
#: includes/class-diller-loyalty-woocommerce.php:1061
|
||||
#: includes/class-diller-loyalty-woocommerce.php:1079
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:45
|
||||
msgid "Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:76
|
||||
msgid "Loyalty Program Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:78
|
||||
msgid "My level"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:82
|
||||
msgid "Points for use"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:83
|
||||
#: includes/class-diller-loyalty-woocommerce.php:93
|
||||
#: includes/class-diller-loyalty-woocommerce.php:97
|
||||
#: includes/class-diller-loyalty-woocommerce.php:241
|
||||
#: includes/class-diller-loyalty-woocommerce.php:292
|
||||
#: includes/class-diller-loyalty-woocommerce.php:360
|
||||
#: includes/class-diller-loyalty-woocommerce.php:438
|
||||
#: includes/class-diller-loyalty-woocommerce.php:506
|
||||
#: includes/class-diller-loyalty-woocommerce.php:713
|
||||
#: includes/class-diller-loyalty-woocommerce.php:752
|
||||
msgid "points"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:92
|
||||
msgid "Points till next level"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:97
|
||||
msgid "Points earned for the period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:138
|
||||
msgid "Member level qualification period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:139
|
||||
msgid "Qualification period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:140
|
||||
msgid "Never expire"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to my account page. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:149
|
||||
msgid "Become a member of our Loyalty Program to get exclusive benefits and offers from us.%1$s%2$sClick here%3$s to enroll now"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Loyalty Program enrollment form URL. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:193
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can invite your friends.%1$sTo enroll, please %2$sclick here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:229
|
||||
#: includes/class-diller-loyalty-woocommerce.php:348
|
||||
msgid "My Coupons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:241
|
||||
#: includes/class-diller-loyalty-woocommerce.php:292
|
||||
#: includes/class-diller-loyalty-woocommerce.php:360
|
||||
#: includes/class-diller-loyalty-woocommerce.php:438
|
||||
#: includes/class-diller-loyalty-woocommerce.php:506
|
||||
msgid "My points"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:253
|
||||
#: includes/class-diller-loyalty-woocommerce.php:303
|
||||
#: includes/class-diller-loyalty-woocommerce.php:377
|
||||
msgid "Coupon can be used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:254
|
||||
#: includes/class-diller-loyalty-woocommerce.php:304
|
||||
#: includes/class-diller-loyalty-woocommerce.php:378
|
||||
#: includes/class-diller-loyalty-woocommerce.php:451
|
||||
#: includes/class-diller-loyalty-woocommerce.php:524
|
||||
msgid "unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:255
|
||||
#: includes/class-diller-loyalty-woocommerce.php:305
|
||||
#: includes/class-diller-loyalty-woocommerce.php:379
|
||||
#: includes/class-diller-loyalty-woocommerce.php:395
|
||||
#: includes/class-diller-loyalty-woocommerce.php:452
|
||||
#: includes/class-diller-loyalty-woocommerce.php:525
|
||||
#: includes/class-diller-loyalty-woocommerce.php:541
|
||||
msgid "time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:255
|
||||
#: includes/class-diller-loyalty-woocommerce.php:305
|
||||
#: includes/class-diller-loyalty-woocommerce.php:379
|
||||
#: includes/class-diller-loyalty-woocommerce.php:395
|
||||
#: includes/class-diller-loyalty-woocommerce.php:452
|
||||
#: includes/class-diller-loyalty-woocommerce.php:525
|
||||
#: includes/class-diller-loyalty-woocommerce.php:541
|
||||
msgid "times"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:267
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:275
|
||||
#: includes/class-diller-loyalty-woocommerce.php:323
|
||||
msgid "You have no coupons available at the time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:315
|
||||
msgid "Go to coupon"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Loyalty Program enrollment form URL. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:331
|
||||
#: includes/class-diller-loyalty-woocommerce.php:411
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can access your coupons.%1$sTo enroll, please %2$sclick here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:387
|
||||
#: includes/class-diller-loyalty-woocommerce.php:535
|
||||
#: includes/class-diller-loyalty-woocommerce.php:555
|
||||
msgid "Expires:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:387
|
||||
#: includes/class-diller-loyalty-woocommerce.php:535
|
||||
#: includes/class-diller-loyalty-woocommerce.php:555
|
||||
msgid "expired"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:395
|
||||
msgid "Coupon has been used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:400
|
||||
msgid "Promo code:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:450
|
||||
msgid "Stamp can be used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:462
|
||||
msgid "Go to stamp"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:471
|
||||
msgid "You have no stamps available at the time"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Loyalty Program enrollment form URL. 3: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:479
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can access your stamp cards.%1$sTo enroll, please %2$sclick here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:495
|
||||
msgid "My stamps"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:523
|
||||
msgid "Stamp can be used:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:541
|
||||
msgid "Stamp has been used"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: link to Loyalty Program enrollment form URL. 2: closing link
|
||||
#: includes/class-diller-loyalty-woocommerce.php:568
|
||||
msgid "You need to enroll on the Loyalty Program first, before you can access your stamp cards. To enroll, please %1$sclick here%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:635
|
||||
#: includes/forms/class-diller-form.php:256
|
||||
msgid "You must enter a valid mobile number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:647
|
||||
#: includes/forms/class-diller-enrollment-form.php:183
|
||||
msgid "I want to get offers and benefits that suit me based on my preferences and purchase history."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Store Name, 2: link to Terms & Conditions URL, 3: closing url
|
||||
#: includes/class-diller-loyalty-woocommerce.php:650
|
||||
#: includes/forms/class-diller-enrollment-form.php:186
|
||||
msgid "I want to join %1$s's loyalty club and receive benefits, offers and other marketing communications electronically, including email, SMS and the like. Read our %2$sprivacy policy here%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty-woocommerce.php:712
|
||||
#: includes/class-diller-loyalty-woocommerce.php:734
|
||||
#: includes/class-diller-loyalty-woocommerce.php:769
|
||||
#: includes/forms/class-diller-refer-friend-form.php:109
|
||||
msgid "Points earned"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: link to Terms & Conditions URL, 2: closing url
|
||||
#: includes/class-diller-loyalty-woocommerce.php:1065
|
||||
msgid "You have unsubscribed the Loyalty Program. To enroll again and enjoy the benefits, please %1$sclick here%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-diller-loyalty.php:845
|
||||
msgid "Join Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:18
|
||||
msgid "Mobile number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:29
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:35
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:42
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:49
|
||||
msgid "Gender"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:53
|
||||
msgid "Male"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:54
|
||||
msgid "Female"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:55
|
||||
msgid "Prefer not to answer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:58
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:59
|
||||
msgid "Postal code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:67
|
||||
msgid "Postal city"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:75
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:80
|
||||
msgid "Birth date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:222
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:330
|
||||
msgid "There is already a member with this phone number associated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:346
|
||||
msgid "Ooops! An error has occurred while we tried to enroll you in the loyalty program. Please try again later. If the problem persists please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-enrollment-form.php:353
|
||||
msgid "Congratulations! You are now registered successfully in our loyalty program."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: is a line break <br>. 2: link to Webshop page. 3: closing link
|
||||
#: includes/forms/class-diller-enrollment-form.php:357
|
||||
msgid "You can access your loyalty program status and benefits by %1$sclicking here%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/class-diller-enrollment-form.php:390
|
||||
msgid "Field: %s has an invalid date value."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/class-diller-enrollment-form.php:412
|
||||
#: includes/forms/fields/class-diller-base-field.php:417
|
||||
msgid "Field: %s is required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:255
|
||||
msgid "Date value cannot be higher than today's date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:257
|
||||
msgid "You must enter a valid date value"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Minimum age for enrolling the Loyalty Program
|
||||
#: includes/forms/class-diller-form.php:260
|
||||
msgid "You must be at least %1$s years old to join the Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:265
|
||||
msgid "This phone number is already in use."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-form.php:266
|
||||
msgid "This email is already in use."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Loyalty Program, Enrollment Form URL (Inside My Account), 2: closing url
|
||||
#: includes/forms/class-diller-form.php:269
|
||||
msgid "Go to %1$sMy Account%2$s page instead to join the Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:16
|
||||
msgid "Your friend's first name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:23
|
||||
msgid "Your friend's last name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:30
|
||||
#: includes/forms/class-diller-refer-friend-form.php:106
|
||||
msgid "Your friend's email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:36
|
||||
msgid "Send invitation"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the number of points.
|
||||
#: includes/forms/class-diller-refer-friend-form.php:51
|
||||
msgid "Earn %s points for each friend you refer to sign up for our Loyalty Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:84
|
||||
msgid "There is already a member in our loyalty club with this email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:88
|
||||
msgid "Thank you! You friend was successfully invited to join the loyalty program!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:105
|
||||
msgid "Your friend's name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:107
|
||||
msgid "Invite status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:119
|
||||
msgid "Registration completed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:121
|
||||
msgid "Awaiting registration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-refer-friend-form.php:127
|
||||
msgid "points earned"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:10
|
||||
msgid "SMS: I want to receive benefits, offers and other marketing electronically in connection with the customer club via SMS."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:11
|
||||
msgid "E-mail: I want to receive benefits, offers and other marketing electronically in connection with the customer club by E-mail."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:28
|
||||
msgid "Save my preferences"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:46
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:78
|
||||
msgid "You are unsubscribed from the Loyalty Program. Please allow 10 days for us to come to terms with this change and update our system."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:84
|
||||
msgid "Ooops! An error has occurred while trying to unsubscribe you from the Loyalty Program. Please try again later. If the problem persists please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:118
|
||||
msgid "Your loyalty program preferences were successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:121
|
||||
msgid "Welcome back!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:130
|
||||
msgid "Ooops! An error has occurred while we tried to update your loyalty program preferences. Please try again later. If the problem persists please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:167
|
||||
msgid "Loyalty Program - Unsubscribe"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:168
|
||||
msgid "Are you sure you want to leave the Loyalty Program ? You will miss out on great our special offers and discounts."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:174
|
||||
msgid "Stay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-enrollment-form.php:181
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:37
|
||||
msgid "New mobile number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:46
|
||||
msgid "Verification code (sent by SMS)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:56
|
||||
msgid "Verify phone number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:114
|
||||
msgid "Your phone number has been successfully changed!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:114
|
||||
msgid "The verification code you entered is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Phone number.
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:130
|
||||
msgid "We just sent an SMS to <b>%s</b> with your verification code. It may take some seconds to arrive."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Phone number.
|
||||
#: includes/forms/class-diller-wc-update-phone-form.php:135
|
||||
msgid "We could not send the verification code to <b>%s</b>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/fields/class-diller-base-field.php:160
|
||||
msgid "%s is required"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Field name, 2: Field min length
|
||||
#: includes/forms/fields/class-diller-base-field.php:187
|
||||
msgid "%1$s must be minimum %2$d characters long"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: Field max length
|
||||
#: includes/forms/fields/class-diller-base-field.php:201
|
||||
msgid " and maximum of %d characters long"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Field name, 2: Field length
|
||||
#: includes/forms/fields/class-diller-base-field.php:206
|
||||
msgid "%1$s cannot be longer than %2$d characters"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Field name.
|
||||
#: includes/forms/fields/class-diller-email-field.php:44
|
||||
msgid "Please provide a valid value for field: %s ."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/fields/class-diller-phone-field.php:52
|
||||
msgid "Phone number is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/fields/class-diller-select-field.php:71
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Line break 2: Loyalty Program, Enrollment Form URL (Inside My Account), 3: closing url
|
||||
#: includes/shortcodes/class-diller-enrollment-form-shortcode.php:24
|
||||
msgid "You have already joined our Loyalty Program.%1$sGo to %2$sMy Account%3$s page, if you wish to change your preferences and view your benefits."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright (C) 2021 Sanjeev Aryal
|
||||
# This file is distributed under the same license as the Do Not Send Emails If package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Do Not Send Emails If 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-24 04:38:58+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: src/Settings.php:105
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Do Not Send Emails If"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Do not send emails if conditions matches. You set the condition."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sanjeev Aryal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.sanjeebaryal.com.np"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
## [1.0.2] - 2021-09-17
|
||||
- Added missing files for WordPress plugin repository
|
||||
## [1.0.1] - 2021-09-17
|
||||
- Changed name of plugin from openapi-generator to document-generator-for-openapi
|
||||
## [1.0.0] - 2021-09-17
|
||||
- Initial release
|
||||
@@ -0,0 +1,2 @@
|
||||
1.2.6
|
||||
* Initial release
|
||||
@@ -0,0 +1,204 @@
|
||||
# Copyright (C) 2021 WP Desk
|
||||
# This file is distributed under the same license as the Dropshipping XML for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dropshipping XML for WooCommerce 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dropshipping-xml-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-28T10:11:07+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: dropshipping-xml-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Dropshipping XML for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#: dropshipping-xml-for-woocommerce.php:50
|
||||
msgid "https://www.wpdesk.net/products/dropshipping-xml-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
#: dropshipping-xml-for-woocommerce.php:49
|
||||
msgid "Import wholesale products to your store. Synchronize your WooCommerce products with the current offer of your suppliers."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Desk"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.wpdesk.net/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Action/Installer/PluginUnistallerAction.php:48
|
||||
msgid "Free version of plugin Dropshipping XML for WooCommerce was deactivated because Pro version is active."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Action/Loader/Plugin/PluginLinksLoaderAction.php:13
|
||||
#: src/Plugin/Template/FormFields/form-field-free.php:46
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:94
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:250
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:391
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:427
|
||||
msgid "https://www.wpdesk.net/products/dropshipping-xml-woocommerce/?utm_source=wp-admin-plugins&utm_medium=link&utm_campaign=dropshipping"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Action/Loader/Plugin/PluginLinksLoaderAction.php:13
|
||||
msgid "Purchase PRO version"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/FormFields/form-field-free.php:46
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:94
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:250
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:391
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:427
|
||||
msgid "Purchase PRO version to fully unlock this feature"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: page step
|
||||
#: src/Plugin/Template/Import/Options.php:18
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:21
|
||||
msgid "Step %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Options.php:22
|
||||
msgid "Set the product import cycle. Select the days of the week and hours for the cron process to run. The process will automatically synchronize the products in selected days and hours. See more in the <a href=\"https://wpde.sk/dropshipping-sync-options\" target=\"_blank\">documentation</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:25
|
||||
msgid "Map the tags of the supplier's file with the WooCommerce product fields. To do this you can drag&drop the name of the tag from the preview into the selected product field. <a href=\"https://www.wpdesk.pl/wp-content/uploads/2020/09/dropshipping_draganddrop.gif\">See how</a>. Learn more about mapping in the plugin <a href=\"https://wpde.sk/dropshipping-import\" target=\"_blank\">documentation</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:57
|
||||
msgid "Product data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:63
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:66
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:69
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:72
|
||||
msgid "Related products"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:75
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:78
|
||||
msgid "Variants"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:92
|
||||
msgid "If you want to have prices in WooCommerce higher that in the file, you can modify the prices on the fly by adding a certain amount or percentage."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:111
|
||||
msgid "Tax Class"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:135
|
||||
msgid "If you want to add multiple tax classes to mapper just separate dragged fields by comma."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:149
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:241
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:447
|
||||
msgid "Add +"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:237
|
||||
msgid "Add attributes to the products by mapping their names and / or values from the file."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:248
|
||||
msgid "Attributes added as taxonomy are available globally to the entire site."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: url to docs
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:259
|
||||
msgid "Read how to import variable products in <a href=\"%s\" style=\"text-decoration:none\">plugins docs →</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:268
|
||||
msgid "Select this option if each product variant has the same name in the product feed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:276
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:338
|
||||
msgid "There is an entry in the product feed containing the parent product."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:291
|
||||
msgid "Select this option if each product variant has the same SKU in the product feed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:307
|
||||
msgid "Select this option if each product variation has the same ID in the product feed but different xpath to ID."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:328
|
||||
msgid "Select this option if the product feed contains a field that identifies variants."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:356
|
||||
msgid "Short product description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:367
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:369
|
||||
msgid "Image URLs detected below will be downloaded to the WordPress library and product's gallery. <a href=\"https://wpde.sk/dropshipping-images-mapping\" target=\"_blank\">Visit docs site for more info</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:374
|
||||
msgid "Type in a separator character which will be used in the field below to separate image URLs."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:382
|
||||
msgid "Enable this option to automatically convert the HTML tags () to URLs, if they appear."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:389
|
||||
msgid "Enable this option to remove the featured image from gallery."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:396
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:398
|
||||
msgid "<a href=\"https://wpde.sk/dropshipping-categories-mapping\" target=\"_blank\">Docs of categories mapping</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:419
|
||||
msgid "Only the products from the feed that are assigned to the categories mapped below, will be imported. Checking will disable the option \"Create or select categories automatically\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:425
|
||||
msgid "Check to import categories from the file based on the values completed in the \"Product category field\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:433
|
||||
msgid "If you want to add multiple categories to mapper just separate dragged fields by comma."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin/Template/Import/Product_mapper.php:473
|
||||
msgid "Virtual"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,188 @@
|
||||
# Copyright (C) 2021 Guaven Labs
|
||||
# This file is distributed under the same license as the DxTag - Auto-Generated Product and Post Listings plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DxTag - Auto-Generated Product and Post Listings 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/guaven_dxtag\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-11-01T18:12:18+04:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: guaven_dxtag\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "DxTag - Auto-Generated Product and Post Listings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://guaven.com/dxtag/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The plugin generates dynamic taxonomy pages where it lists any kind posts, pages, products etc. under the rules you set.(f.e. price limits, stock quantity, some match in a post title etc.)"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Guaven Labs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://guaven.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-guaven_dxtag-admin.php:105
|
||||
msgid "Special Listings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-guaven_dxtag-admin.php:106
|
||||
#: admin/class-guaven_dxtag-admin.php:107
|
||||
msgid "DxTag Listings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-guaven_dxtag-admin.php:288
|
||||
msgid "Done! But there is no found product match under the rules you have just set. Try to adjust the rules."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d here is the number of found products.
|
||||
#: admin/class-guaven_dxtag-admin.php:291
|
||||
msgid "Success! %d products has been added to this DxTag."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:24
|
||||
msgid ""
|
||||
"By using DxTag tool you can auto-create dynamyc listing pages (with sidebar filters if your theme supports it) \n"
|
||||
" which is great for SEO, UX and E-Commerce Sale Boost."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s here is admin URL where we list already created custom rules.
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:30
|
||||
msgid ""
|
||||
"To get started, you can directly go to %s pages where we prepared \n"
|
||||
" <b>pre-installed samples for you</b>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:31
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:53
|
||||
msgid "Manage existing Rules"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s here is admin URL where we create our custom rules.
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:36
|
||||
msgid ""
|
||||
"To create your new rule you can use <b>%1$s</b> button below. For more help, read our \n"
|
||||
" %2$s\n"
|
||||
" or just %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:39
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:51
|
||||
msgid "Create new rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:40
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:41
|
||||
msgid "contact us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:57
|
||||
msgid "Setting fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-display.php:67
|
||||
msgid ""
|
||||
"For example, for default WordPress post tags this slug is a\"tag\", and an URL has <i>DOMAIN/tag/name</i> structure. \n"
|
||||
"The same for dynamic tags - just set any desired name. <br>\n"
|
||||
"Examples: <i>listing, collections, morehere, pick, additional,</i> etc.\n"
|
||||
"Default value is <b>\"dxtag\"</b>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:127
|
||||
msgid "URL for the created DxTag: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:129
|
||||
msgid "You can edit desciption and other fields of created taxonomy term: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:133
|
||||
msgid "You can directly use this URL anywhere you want.<br> Alternatively, as the plugin generates native WP custom tags, You can find and insert these tags in Menus, Widgets, Post Editor, etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:138
|
||||
msgid "Once You save/publish the rule, URL for the created dynamic tag will appear here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:143
|
||||
msgid "Additional Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:145
|
||||
msgid "- Value field should be like {taxonomy}:{slug_value} if you choose \"WP Term\" rule. f.e. product_cat:shoes or category:news etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:147
|
||||
msgid "- To use <i>OR</i> operand in Value field, you can use | separator. For example: <i>product | product_variation</i>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:149
|
||||
msgid "- To see how the rule works you need to publish it. To keep rule draft, private, pending etc. equals \"not publishing\" it yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:151
|
||||
msgid "- Once you published the rule, simply click to UPDATE RULE TAGS button above."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:153
|
||||
msgid "- If you unpublish/delete already published rule, then related taxonomy term will be deleted as well."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/guaven_dxtag-admin-meta-box.php:155
|
||||
msgid "- If URL for the DxTag gives 404 not found error, just fo to Settings->Permalinks, and click to SAVE button. This will rebuild rewrite rules."
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:17
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:118
|
||||
msgid "Post Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:119
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:120
|
||||
msgid "Meta Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:121
|
||||
msgid "WP Term"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:122
|
||||
msgid "WooCommerce: Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:123
|
||||
msgid "WooCommerce: Sale Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:124
|
||||
msgid "WooCommerce: Stock Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:125
|
||||
msgid "WooCommerce: Stock Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/guaven_dxtag-admin-helper.php:126
|
||||
msgid "WooCommerce: Product Category"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/dynamic-block-content/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/dynamic-block-content/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
= 0.1.0 =
|
||||
* Initial release.
|
||||
|
||||
@@ -0,0 +1,241 @@
|
||||
# Copyright (C) 2021 Vincent Dubroeucq
|
||||
# This file is distributed under the same license as the E-Connector for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: E-Connector for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/e-connector-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-09-30T09:28:07+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: e-connector-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "E-Connector for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/econnector-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Additional functionality to enhance your e-connector experience"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Vincent Dubroeucq"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://vincentdubroeucq.com/"
|
||||
msgstr ""
|
||||
|
||||
#: e-connector-for-woocommerce.php:73
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: e-connector-for-woocommerce.php:98
|
||||
msgid "The plugin E-Connector for WooCommerce requires WooCommerce to be active to work properly. Please install or activate WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:19
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:73
|
||||
msgid "Document name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:74
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:75
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:76
|
||||
msgid "Total paid"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:77
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:78
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: document date, %2$s: document date, %3$s: document time
|
||||
#: inc/class-account-page.php:125
|
||||
msgctxt "Documents table date column"
|
||||
msgid "On <time datetime=\"%1$s\">%2$s at %3$s</time>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:174
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-account-page.php:180
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin-pages.php:17
|
||||
msgid "E-Connector"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin-pages.php:54
|
||||
msgid "E-Connector Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:111
|
||||
msgid "Filter by document type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:113
|
||||
msgid "All types"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:129
|
||||
msgid "You do not have the rights to do that."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:132
|
||||
msgid "No document id was provided."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-content-manager.php:140
|
||||
msgid "You do not have the right to access this document."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wc-rest-documents-controller.php:123
|
||||
msgid "Sorry, you are not allowed to upload documents."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wc-rest-documents-controller.php:215
|
||||
#: inc/class-wc-rest-documents-controller.php:249
|
||||
msgid "Sorry, the file you try to upload is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wc-rest-documents-controller.php:257
|
||||
msgid "Sorry, there was an error uploading the file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:20
|
||||
msgid "New document available - Customer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:21
|
||||
msgid "Email the customer receives when a document is available in his account."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:25
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:26
|
||||
msgid "A new document is available in your account."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:107
|
||||
#: inc/emails/class-wc-email-new-document.php:98
|
||||
msgid "Attachments"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-customer-new-document.php:109
|
||||
#: inc/emails/class-wc-email-new-document.php:100
|
||||
msgid "Attach documents to email ?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-new-document.php:20
|
||||
msgid "New document available - Admin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-new-document.php:21
|
||||
msgid "Email the site admin receives when a document has been uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/class-wc-email-new-document.php:25
|
||||
#: inc/emails/class-wc-email-new-document.php:26
|
||||
msgid "A new document has just been uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:56
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:57
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:58
|
||||
msgid "Shipping label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:59
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: name of the document, $2$s owner of the document
|
||||
#: templates/emails/admin-new-document.php:27
|
||||
msgid "A new document named <strong>%1$s</strong> has been uploaded, and its owner set to <strong>%2$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/admin-new-document.php:32
|
||||
#: templates/emails/plain/admin-new-document.php:30
|
||||
msgid "You can find the document attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: name of the document
|
||||
#: templates/emails/customer-new-document.php:20
|
||||
msgid "A new document named <strong>%s</strong> is available in your account."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: document page url
|
||||
#: templates/emails/customer-new-document.php:25
|
||||
msgid "Visit your <a href=\"%s\">account page</a> to view/download the document."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: document page url
|
||||
#: templates/emails/customer-new-document.php:31
|
||||
msgid "You can find the document attached to this email, or visit your <a href=\"%s\">account page</a> to view/download it."
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/plain/admin-new-document.php:14
|
||||
msgid "New document"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: name of the document, $2$s owner of the document
|
||||
#: templates/emails/plain/admin-new-document.php:25
|
||||
msgid "A new document named %1$s has been uploaded, and its owner set to %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: document page url
|
||||
#: templates/emails/plain/admin-new-document.php:34
|
||||
msgid "Edit this document : %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: user edit page url
|
||||
#: templates/emails/plain/admin-new-document.php:39
|
||||
msgid "View the user : %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: name of the document
|
||||
#: templates/emails/plain/customer-new-document.php:21
|
||||
msgid "A new document named %s is available in your account."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: account page url
|
||||
#: templates/emails/plain/customer-new-document.php:26
|
||||
msgid "Visit your account page to view/download the document : %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: account page url
|
||||
#: templates/emails/plain/customer-new-document.php:32
|
||||
msgid "You can find the document attached to this email, or visit your account page to view/download it. : %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/myaccount/documents.php:30
|
||||
msgid "Sorry, you have no documents yet."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "camoo/enkap-woocommerce-gateway",
|
||||
"description": "Enkap - Mobile Money Gateway for WooCommerce",
|
||||
"type": "wordpress-plugin",
|
||||
"require": {
|
||||
"php": ">=7.3",
|
||||
"camoo/enkap-oauth": "^1.0"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"homepage": "https://camoo.cm",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"prefer-stable" : true,
|
||||
"version": "1.0.2",
|
||||
"authors": [
|
||||
{
|
||||
"name": "CAMOO SARL",
|
||||
"email": "ecommerce@camoo.sarl"
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
"CAMOO",
|
||||
"Mobile money Gateway Cameroon",
|
||||
"Plugin camoo Pay",
|
||||
"MTN Cameroon Mobile Money",
|
||||
"ORANGE Cameroon Mobile Money",
|
||||
"Express Union Cameroon Mobile Money",
|
||||
"Smobil Cash pay",
|
||||
"enkap",
|
||||
"smobilpay for e-commerce"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/camoo/enkap-woocommerce-gateway/issues",
|
||||
"source": "https://github.com/camoo/enkap-woocommerce-gateway"
|
||||
}
|
||||
}
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/educare/change_log/changelog.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/educare/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## [1.0.0]
|
||||
|
||||
### Happy Release!!!
|
||||
|
||||
- Plugin launch. Everything's new!
|
||||
@@ -0,0 +1,215 @@
|
||||
# Copyright (C) 2021 WP Clevel
|
||||
# This file is distributed under the same license as the Elemental Theme Builder plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Elemental Theme Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elemental-theme-builder\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-13T16:31:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: elemental-theme-builder\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Elemental Theme Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/elemental-theme-builder"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "An intuitive theme builder for Elementor Page Builder (the free version)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Clevel"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclevel.com"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: loading class.
|
||||
#: elemental-theme-builder.php:42
|
||||
msgid "Autoloading failed. Class \"%s\" not found."
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:59
|
||||
msgid "Elemental Theme Builder requires PHP version 7.2 at least!"
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:62
|
||||
msgid "Elemental Theme Builder requires WordPress version 5.6 at least!"
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:65
|
||||
msgid "WordPress content directory is inaccessible."
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:68
|
||||
msgid "Elemental Theme Builder requires Elementor version 3.3.0 at least."
|
||||
msgstr ""
|
||||
|
||||
#: elemental-theme-builder.php:76
|
||||
msgid "Plugin Activation Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:34
|
||||
msgid "Select a header template to display on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:46
|
||||
msgid "Select a footer template to display on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:79
|
||||
msgid "Inherit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Blocks/PostMeta/PageLayoutSettings.php:83
|
||||
msgid "Theme Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:59
|
||||
msgid "Footer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:120
|
||||
#: src/Documents/SiteHeader.php:120
|
||||
msgid "Display Condition"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:129
|
||||
#: src/Documents/SiteHeader.php:129
|
||||
msgid "If multiple templates have the same display condition, the last updated one will be used."
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:137
|
||||
#: src/Documents/SiteHeader.php:137
|
||||
msgid "Show On"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:142
|
||||
#: src/Documents/SiteHeader.php:142
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:143
|
||||
#: src/Documents/SiteHeader.php:143
|
||||
msgid "Entire Site"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:144
|
||||
#: src/Documents/SiteHeader.php:144
|
||||
msgid "Blog Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:145
|
||||
#: src/Documents/SiteHeader.php:145
|
||||
msgid "Front Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:146
|
||||
#: src/Documents/SiteHeader.php:146
|
||||
msgid "Archive Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:147
|
||||
#: src/Documents/SiteHeader.php:147
|
||||
msgid "Singular Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:148
|
||||
#: src/Documents/SiteHeader.php:148
|
||||
msgid "Error 404 Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:149
|
||||
#: src/Documents/SiteHeader.php:149
|
||||
msgid "Search Result Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:150
|
||||
#: src/Documents/SiteHeader.php:150
|
||||
msgid "Privacy Policy Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:151
|
||||
#: src/Documents/SiteHeader.php:151
|
||||
msgid "WooCommerce Shop Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:152
|
||||
#: src/Documents/SiteHeader.php:152
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:160
|
||||
#: src/Documents/SiteHeader.php:160
|
||||
msgid "Select Type(s) of the Singular Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:174
|
||||
#: src/Documents/SiteHeader.php:174
|
||||
msgid "Select Type(s) of the Archive Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:196
|
||||
#: src/Documents/SiteHeader.php:196
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:197
|
||||
#: src/Documents/SiteHeader.php:197
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:198
|
||||
#: src/Documents/SiteHeader.php:198
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:218
|
||||
#: src/Documents/SiteHeader.php:218
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:219
|
||||
#: src/Documents/SiteHeader.php:219
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:220
|
||||
#: src/Documents/SiteHeader.php:220
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteFooter.php:221
|
||||
#: src/Documents/SiteHeader.php:221
|
||||
msgid "Category "
|
||||
msgstr ""
|
||||
|
||||
#: src/Documents/SiteHeader.php:59
|
||||
msgid "Header"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/components/FooterTemplateSelectBox.js:8
|
||||
msgid "Elementor Footer Template:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/components/HeaderTemplateSelectBox.js:8
|
||||
msgid "Elementor Header Template:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/meta-sidebar.js:12
|
||||
msgid "Layout Settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/meta-sidebar.js:14
|
||||
msgid "\"Inherit\" will display the template assigned for \"Entire Site\". \"Theme Default\" will display the template from the current theme."
|
||||
msgstr ""
|
||||
355
spec/fixtures/dynamic_finders/plugin_version/elform/translation_file/languages/elform.pot
vendored
Normal file
355
spec/fixtures/dynamic_finders/plugin_version/elform/translation_file/languages/elform.pot
vendored
Normal file
@@ -0,0 +1,355 @@
|
||||
# Copyright (C) 2021 mhmdm
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Elform 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elform\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-08T17:04:10+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: elform\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Elform"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/mhmdmu/elform"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Advanced Elementor form builder widget."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "mhmdm"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:27
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:38
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:55
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:69
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:84
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget-base/widget-base.php:95
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:39
|
||||
msgid "Elementor Form Builder"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:98
|
||||
msgid "Form Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:107
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:111
|
||||
#: src/widget/form-builder.php:621
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:112
|
||||
#: src/widget/form-builder.php:733
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:113
|
||||
msgid "Textarea"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:114
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:115
|
||||
msgid "Tel"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:116
|
||||
msgid "Radio"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:117
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:118
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:119
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:120
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:121
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:122
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:123
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:124
|
||||
#: src/widget/form-builder.php:207
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:125
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:126
|
||||
msgid "reCAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:134
|
||||
msgid "Rows"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:151
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:153
|
||||
msgid "Enter each option in a new line."
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:173
|
||||
msgid "Allowed File Types"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:175
|
||||
msgid ".pdf,.jpg,.txt"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:190
|
||||
msgid "Multiple Files"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:243
|
||||
#: src/widget/form-builder.php:562
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:263
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:282
|
||||
msgid "Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:309
|
||||
msgid "Default value"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:333
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:335
|
||||
msgid "Name is required. It is used to send the data to your email."
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:373
|
||||
msgid "Column Width"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:377
|
||||
msgid "20%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:378
|
||||
msgid "25%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:379
|
||||
msgid "33%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:380
|
||||
msgid "40%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:381
|
||||
msgid "50%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:382
|
||||
msgid "60%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:383
|
||||
msgid "66%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:384
|
||||
msgid "75%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:385
|
||||
msgid "80%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:386
|
||||
msgid "100%"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:430
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:432
|
||||
#: src/widget/form-builder.php:710
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:433
|
||||
#: src/widget/form-builder.php:711
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:481
|
||||
msgid "Custom Class"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:505
|
||||
msgid "Custom ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:528
|
||||
#: src/widget/form-builder.php:781
|
||||
msgid "Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:565
|
||||
#: src/widget/form-builder.php:576
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:566
|
||||
#: src/widget/form-builder.php:577
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:574
|
||||
msgid "Required Mark"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:587
|
||||
#: src/widget/form-builder.php:800
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:594
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:598
|
||||
#: src/widget/form-builder.php:646
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:602
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:606
|
||||
#: src/widget/form-builder.php:650
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:630
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:642
|
||||
msgid "Icon Position"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:662
|
||||
msgid "Button ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:672
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:679
|
||||
msgid "Success Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:681
|
||||
msgid "Your message has been sent"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:689
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:691
|
||||
msgid "Can't send the email"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:701
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:708
|
||||
msgid "Redirect to another URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:719
|
||||
msgid "Redirect To"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:721
|
||||
msgid "https://your-link.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:740
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:748
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:763
|
||||
msgid "From Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/widget/form-builder.php:771
|
||||
msgid "From Name"
|
||||
msgstr ""
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/exmage-wp-image-links/change_log/CHANGELOG.txt
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/exmage-wp-image-links/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/**1.0.2.1 - 2021.12.13**/
|
||||
- Updated: Missing css/image files for class VillaTheme_Support
|
||||
|
||||
/**1.0.2 - 2021.12.11**/
|
||||
- Added: Button to store external images to server in Media library/list view mode
|
||||
|
||||
/**1.0.1 - 2021.12.08**/
|
||||
- Updated: Do not allow to edit(crop, rotate...) external images to avoid unexpected errors
|
||||
|
||||
/**1.0.0 - 2021.12.07**/
|
||||
- Released
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/fastpicker/composer_file/composer.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/fastpicker/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "woo-orderpicker/woo-orderpicker",
|
||||
"version": "1.0.0",
|
||||
"authors": [
|
||||
{
|
||||
"name": "David Stomph",
|
||||
"email": "david@yuluma.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Kanger",
|
||||
"email": "chris@3rdfloorcoding.nl"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": ["src/"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
== 1.0.0 - 24/09/2019 ==
|
||||
Initial release
|
||||
93
spec/fixtures/dynamic_finders/plugin_version/faustwp/change_log/CHANGELOG.md
vendored
Normal file
93
spec/fixtures/dynamic_finders/plugin_version/faustwp/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# FaustWP
|
||||
|
||||
## 0.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- f948c04: Fixed plugin icon SVG display issue in Chrome [#683](https://github.com/wpengine/faustjs/pull/683)
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Changed the plugin name to FaustWP.
|
||||
- Changed all internal PHP function names to use namespaces.
|
||||
- Changed the WP_HEADLESS_SECRET_KEY constant to FAUSTWP_SECRET_KEY.
|
||||
- Changed the authentication endpoint namespace from `wpac/v1` to `faustwp/v1`
|
||||
- Changed settings option name from `wpe_headless` to `faustwp_settings`
|
||||
- Changed the following filter names:
|
||||
- `wpe_headless_setting` to `faustwp_setting`
|
||||
- `wpe_headless_settings` to `faustwp_settings`
|
||||
- `wpe_headless_domain_replacement_enabled` to `faustwp_domain_replacement_enabled`
|
||||
- Changed the text domain to `faustwp`.
|
||||
- Changed minimum required PHP version to 7.2.
|
||||
- Changed minimum required WordPress version to 5.7.
|
||||
- Changed the hook used for public route redirection.
|
||||
- Fixed the "headless post preview" link on the FaustWP settings page.
|
||||
- Fixed "unexpected output" error during plugin activation.
|
||||
- Fixed skipped domain replacement in GraphQL responses that include `generalSettings`.
|
||||
- Added LICENSE file.
|
||||
|
||||
## 0.6.1
|
||||
|
||||
- Fixed the headless options page sidebar links to new Faust.js documentation site.
|
||||
|
||||
## 0.6.0
|
||||
|
||||
- [Breaking Change] Added support for access/refresh token based auth flow in the authorize endpoint.
|
||||
- Added `page_id` query param to preview pages when the content type is `page`
|
||||
|
||||
## 0.5.8
|
||||
|
||||
- Lowering link filter priority to allow other plugins to run prior to swapping the domain
|
||||
|
||||
## 0.5.7
|
||||
|
||||
- Updated settings page docs links
|
||||
- Added an admin notice on the Headless settings page to prompt users to configure permalinks if they are not set
|
||||
|
||||
## 0.5.6
|
||||
|
||||
- Fixes an issue where the templates hierarchy from the templates hierarchy filter was not being returned.
|
||||
|
||||
## 0.5.5
|
||||
|
||||
- Prevents the frontend site URL being prepended to post URI paths in GraphQL responses if “Enable Post and Category URL rewrites” is checked.
|
||||
|
||||
## 0.5.4
|
||||
|
||||
- Prevents authentication failures when using an authorization header to authenticate with WPGraphQL JWT Authentication or similar.
|
||||
|
||||
## 0.5.3
|
||||
|
||||
Requires the @wpengine/headless package 0.6.3+ for features such as post previews. https://www.npmjs.com/package/@wpengine/headless
|
||||
|
||||
- Fixes post previews for frontend apps running from a subfolder.
|
||||
|
||||
## 0.5.2
|
||||
|
||||
Requires the @wpengine/headless package 0.6.2+ for features such as post previews. https://www.npmjs.com/package/@wpengine/headless
|
||||
|
||||
- Fixes an issue that could cause a 404 response for post previews.
|
||||
|
||||
## 0.5.1
|
||||
|
||||
Requires the @wpengine/headless package 0.6.1+ for features such as post previews. https://www.npmjs.com/package/@wpengine/headless
|
||||
|
||||
- The site URL is longer rewritten as the app URL in WPGraphQL responses for general settings queries.
|
||||
|
||||
## 0.5.0
|
||||
|
||||
- WPE_HEADLESS_SECRET_KEY has been renamed to WP_HEADLESS_SECRET_KEY.
|
||||
|
||||
## 0.4.1
|
||||
|
||||
- Fixed potential authentication issue with WP GraphQL
|
||||
|
||||
## 0.4.0
|
||||
|
||||
- Redesigned settings page.
|
||||
|
||||
## 0.1.0
|
||||
|
||||
- Proof of concept
|
||||
@@ -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 ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/fix-pay-signature-wc/change_log/changelog.txt
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/fix-pay-signature-wc/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 =
|
||||
* Beta release
|
||||
|
||||
= 1.0.1 =
|
||||
* Ajuste url bandeiras
|
||||
@@ -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 →"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,180 @@
|
||||
# Copyright (C) 2021 Fluidcoins
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Fluidcoins Payment Gateway for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fluidcoins-wc-payment-gateway\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-11-08T20:20:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: fluidcoins-wc-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Fluidcoins Payment Gateway for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://fluidcoins.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WooCommerce payment gateway for Fluidcoins"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/class-wc-fluidcoins-gateway.php:217
|
||||
#: includes/class-wc-fluidcoins-gateway.php:264
|
||||
msgid "Fluidcoins"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. Fluidcoins settings page URL link.
|
||||
#: fluidcoins-wc-payment-gateway.php:85
|
||||
msgid "Fluidcoins test mode is still enabled, Click <strong><a href=\"%s\">here</a></strong> to disable it when you want to start accepting live payment on your site."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: URL to WooCommerce general settings page
|
||||
#: includes/class-wc-fluidcoins-gateway.php:152
|
||||
msgid "Fluidcoins does not support your store currency. Kindly set it to either NGN (₦) <a href=\"%s\">here</a>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Fluidcoins WooCommerce payment gateway settings page
|
||||
#: includes/class-wc-fluidcoins-gateway.php:185
|
||||
msgid "Please enter your Fluidcoins merchant details <a href=\"%s\">here</a> to be able to accept payment via Fluidcoins on your WooCommerce store."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: URL to Fluidcoins developers settings page, 2: Fluidcoins WooCommerce payment gateway webhool URL.
|
||||
#: includes/class-wc-fluidcoins-gateway.php:223
|
||||
msgid "Required: To avoid situations where bad network makes it impossible to verify transactions, set your webhook URL <a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">here</a> to the URL below<span style=\"color: red\"><pre><code>%2$s</code></pre></span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:239
|
||||
msgid "Fluidcoins Payment Gateway Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:252
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:253
|
||||
msgid "Enable Fluidcoins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:255
|
||||
msgid "Enable Fluidcoins as a payment option on the checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:260
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:262
|
||||
msgid "This controls the payment method title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:267
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:269
|
||||
msgid "This controls the payment method description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:271
|
||||
msgid "Make payment via crypto."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:274
|
||||
msgid "Test mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:275
|
||||
msgid "Enable Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:277
|
||||
msgid "Test mode enables you to test payments before going live. <br />Once you are live uncheck this."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:282
|
||||
msgid "Test Public Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:284
|
||||
msgid "Required: Enter your Test Public Key here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:289
|
||||
msgid "Test Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:291
|
||||
msgid "Required: Enter your Test Secret Key here"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:296
|
||||
msgid "Live Public Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:298
|
||||
msgid "Required: Enter your Live Public Key here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:303
|
||||
msgid "Live Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:305
|
||||
msgid "Required: Enter your Live Secret Key here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:310
|
||||
msgid "Autocomplete Order After Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:311
|
||||
msgid "Autocomplete Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:313
|
||||
msgid "If enabled, the order will be marked as complete after successful payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:429
|
||||
msgid "Thank you for your order, please click the button below to pay with Fluidcoins."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:431
|
||||
msgid "Pay Now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:432
|
||||
msgid "Cancel order & restore cart"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Line break, 2: Line break, 3: Line break.
|
||||
#: includes/class-wc-fluidcoins-gateway.php:491
|
||||
#: includes/class-wc-fluidcoins-gateway.php:609
|
||||
msgid "Thank you for shopping with us.%1$sYour payment transaction was successful but it was underpaid.%2$sYour order has been cancelled.%3$sA mail has been sent to you on how to request for a refund."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Line break, 2: Fluidcoins transaction reference.
|
||||
#: includes/class-wc-fluidcoins-gateway.php:499
|
||||
#: includes/class-wc-fluidcoins-gateway.php:616
|
||||
msgid "<strong>Order cancelled</strong>%1$sReason: It was underpaid. Fluidcoins Transaction Reference:</strong> %2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Fluidcoins transaction reference.
|
||||
#: includes/class-wc-fluidcoins-gateway.php:512
|
||||
#: includes/class-wc-fluidcoins-gateway.php:625
|
||||
msgid "Payment via Fluidcoins successful (Transaction Reference: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-fluidcoins-gateway.php:525
|
||||
msgid "Fluidcoins payment failed."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,95 @@
|
||||
# Copyright (C) 2022 sanderdekroon
|
||||
# This file is distributed under the same license as the Front-end javascript error monitoring with Bugsnag plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Front-end javascript error monitoring with Bugsnag 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/front-end-error-monitoring-with-bugsnag\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-01-07T08:20:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: sdk-bugsnag-js\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Front-end javascript error monitoring with Bugsnag"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/sanderdekroon/wp-bugsnag-js"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily add Bugsnag error monitoring for your front-end"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "sanderdekroon"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/sanderdekroon/"
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:10
|
||||
msgid "Bugsnag Browser settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:11
|
||||
msgid "Bugsnag automatically detects errors & crashes in Javascript files for all plugins & themes."
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:13
|
||||
msgid "Errors are sent to your Bugsnag Dashboard for you to view and debug. If you do not have an account yet, simply signup at"
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:17
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:21
|
||||
msgid "Bugsnag Browser API Key"
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:29
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:35
|
||||
msgid "Custom options"
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:39
|
||||
msgid "If you want to add custom configuration options, use the %1$s filter. View %2$s to see which options are available."
|
||||
msgstr ""
|
||||
|
||||
#: assets/views/admin.configuration.php:41
|
||||
msgid "the Bugsnag documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/SettingsServiceProvider.php:71
|
||||
msgid "Unable to update Bugsnag settings: invalid nonce."
|
||||
msgstr ""
|
||||
|
||||
#: src/SettingsServiceProvider.php:81
|
||||
msgid "The API key was not updated, because it has not changed."
|
||||
msgstr ""
|
||||
|
||||
#: src/SettingsServiceProvider.php:89
|
||||
msgid "The API key could not be updated."
|
||||
msgstr ""
|
||||
|
||||
#: src/SettingsServiceProvider.php:96
|
||||
msgid "The API key was updated succesfully."
|
||||
msgstr ""
|
||||
|
||||
#: src/SettingsServiceProvider.php:108
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/SettingsServiceProvider.php:113
|
||||
msgid "Source code"
|
||||
msgstr ""
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/generate-audiogram-block/composer_file/package.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/generate-audiogram-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "generate-audiogram-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Generate and customize audiograms in the block editor.",
|
||||
"author": "firewatch",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ffmpeg/core": "^0.9.0",
|
||||
"@ffmpeg/ffmpeg": "^0.9.8",
|
||||
"@wordpress/block-editor": "^6.2.0",
|
||||
"@wordpress/blocks": "^10.0.0",
|
||||
"@wordpress/i18n": "^4.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^17.0.0"
|
||||
}
|
||||
}
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/gofer-seo/change_log/changelog.txt
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/gofer-seo/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Add backwards compatibility with WP Sitemaps 5.5.0
|
||||
* Fix files not loading on multi-site.
|
||||
* Refactor Google Analytics.
|
||||
* Fix excluding roles from Google Analytics tracking.
|
||||
* Fix missing operations for autotrack.js plugins.
|
||||
* Fix output syntax.
|
||||
* Exclude roles without needing to enable advanced settings.
|
||||
* Change arrangement of Analytics settings.
|
||||
* Change input titles to better reflect Google Analytics documents.
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
@@ -0,0 +1,157 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mailjet Integration v0.3.2\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2021-12-15 14:19+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Jay Trees <github.jay@grandel.anonaddy.me>\n"
|
||||
"Language-Team: Jay Trees <github.jay@grandel.anonaddy.me>\n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-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: ../inc\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: ajax/subscribe.php:106
|
||||
msgid "Newsletter subscription failed"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/subscribe.php:109
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The user %1$s tried to subscribe to your newsletter but couldn't due to an "
|
||||
"error. %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/subscribe.php:120
|
||||
msgid ""
|
||||
"It seems like something went wrong. The administrator has been notified "
|
||||
"about the error."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/subscribe.php:131
|
||||
msgid "Please confirm your email address."
|
||||
msgstr "Bitte bestätigen Sie Ihre E-Mail Adresse."
|
||||
|
||||
#: ajax/subscribe.php:140
|
||||
msgid ""
|
||||
"It seems like something went wrong. The administrator could not be notified "
|
||||
"about the error."
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:23
|
||||
msgid "Mailjet API"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:31
|
||||
msgid "Mailjet Template"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:39
|
||||
msgid "WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:49
|
||||
msgid "WPML"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:76
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:100
|
||||
msgid "Version (Send)"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:124
|
||||
msgid "Key"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:148
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:176
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Email from"
|
||||
msgstr "E-Mail Adresse"
|
||||
|
||||
#: hooks/admin-init.php:200
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Email name"
|
||||
msgstr "E-Mail Adresse"
|
||||
|
||||
#: hooks/admin-init.php:228
|
||||
msgid "Page ID Confirmation (Success)"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:252
|
||||
msgid "Page ID Confirmation (Failure)"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-init.php:286
|
||||
#, php-format
|
||||
msgid "Confirmation Template ID (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-menu.php:69
|
||||
msgid "Save Mailjet API Settings"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-menu.php:77
|
||||
msgid "Save Mailjet Template Settings"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-menu.php:85
|
||||
msgid "Save WordPress Settings"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/admin-menu.php:94
|
||||
msgid "Save WPML Settings"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/wp-enqueue-script.php:42
|
||||
msgid "Loading. Please wait..."
|
||||
msgstr "Wird geladen. Bitte warten..."
|
||||
|
||||
#: hooks/wp.php:38 hooks/wp.php:55
|
||||
msgid "The link appears to no longer be valid."
|
||||
msgstr "Der Link scheint nicht mehr gültig zu sein."
|
||||
|
||||
#: hooks/wp.php:114
|
||||
msgid "Unable to add contact properties"
|
||||
msgstr ""
|
||||
|
||||
#: hooks/wp.php:117
|
||||
#, php-format
|
||||
msgid "The below listed contact properties could not be added for %1$s. %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/mailjet-integration.php:20
|
||||
msgid "Email address"
|
||||
msgstr "E-Mail Adresse"
|
||||
|
||||
#: shortcodes/mailjet-integration.php:21
|
||||
msgid ""
|
||||
"I agree to the processing of my personal data for advertising purposes and "
|
||||
"to receive e-mail for advertising purposes. I can revoke the given consent "
|
||||
"at any time with effect for the future in any appropriate form."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/mailjet-integration.php:22
|
||||
msgid "Subscribe"
|
||||
msgstr "Abonnieren"
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/gs-acf-icons/change_log/changelog.txt
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/gs-acf-icons/change_log/changelog.txt
vendored
Normal 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
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/gsmtasks-integration/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/gsmtasks-integration/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*** GSMTasks Integration Changelog ***
|
||||
|
||||
2021-05-19 - version 1.0
|
||||
* Initial release
|
||||
@@ -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"
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/helpdeskwp/change_log/changelog.txt
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/helpdeskwp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
= v1.1.0 - 14 January 2022 =
|
||||
- Added tickets search
|
||||
- Added customers dashboard
|
||||
- Added customers search
|
||||
- Added customers info in the tickets sidebar
|
||||
|
||||
= v1.0.1 - 31 December 2021 =
|
||||
- Added overview and chart
|
||||
|
||||
= v1.0.0 - 24 December 2021 =
|
||||
- First release of the plugin
|
||||
@@ -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 ""
|
||||
@@ -0,0 +1,73 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Blank WordPress Pot "
|
||||
"v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"POT-Creation-Date: "
|
||||
"2021-12-25 14:59+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\n"
|
||||
"Language-Team: Your Team "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit "
|
||||
"3.0.1\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: hide-admin-menu-items.php:62
|
||||
msgid "Menu items"
|
||||
msgstr ""
|
||||
|
||||
#: hide-admin-menu-items.php:63
|
||||
msgid "Hide items"
|
||||
msgstr ""
|
||||
|
||||
#: hide-admin-menu-items.php:97
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: hide-admin-menu-items.php:104
|
||||
msgid ""
|
||||
"Check the items to hide."
|
||||
msgstr ""
|
||||
|
||||
#: hide-admin-menu-items.php:146
|
||||
msgid "Number of items : "
|
||||
msgstr ""
|
||||
195
spec/fixtures/dynamic_finders/plugin_version/hootkit/change_log/CHANGELOG.txt
vendored
Normal file
195
spec/fixtures/dynamic_finders/plugin_version/hootkit/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,195 @@
|
||||
== Changelog ==
|
||||
|
||||
= 2.0.10 =
|
||||
* Added icon options to Content Blocks widget for supporting themes
|
||||
* Added social icons alt color option for supporting themes
|
||||
* Added Image slider Style 3 and Subtitle option for supporting themes
|
||||
|
||||
= 2.0.9 =
|
||||
* Updated Font Awesome to 5.15.3 (increase icons from 991 to 1608 )
|
||||
* Added TikTok to Social Icons List
|
||||
|
||||
= 2.0.8 =
|
||||
* Fix "Indirect access to variables, properties and methods" bug with older PHP version (< 7.0) on Settings screen
|
||||
|
||||
= 2.0.7 =
|
||||
* Fix widget name issue with SiteOrigins Page Builder
|
||||
|
||||
= 2.0.6 =
|
||||
* Fixed hootSetupWidget not running on saving widget in classic widgets screen
|
||||
|
||||
= 2.0.5 =
|
||||
* Reinstate widgets for non hoot themes
|
||||
* Update to WordPress 5.8 compatibility
|
||||
|
||||
= 2.0.4 =
|
||||
* Fix syntax issue with older PHP versions (7.0-7.3)
|
||||
|
||||
= 2.0.3 =
|
||||
* Add 'load_hootkit' filter to selectively load plugin modules
|
||||
* Refactored config['modules'] to separately allow widgets, blocks and miscallaneous
|
||||
* Refactored assets class on how assets are added for loading
|
||||
* Refactored helper mod data set (include assets and adminasset attributes)
|
||||
* Updated structure and values stored in 'hootkit-activate' option
|
||||
* Added Settings page to enable/disable modules
|
||||
* Compatibility with Legacy_Widget_Block_WP5.8_beta1 (checked upto RC1)
|
||||
* Fixed widget group bug (pass $this->number to js to assign correct fieldnames)
|
||||
|
||||
= 2.0.2 =
|
||||
* Add filters to allow force load hootkit for non hoot themes
|
||||
|
||||
= 2.0.1 =
|
||||
* Refactored dirname() usage for compatibility with PHP < 7.0
|
||||
|
||||
= 2.0.0 =
|
||||
* Refactored internal code for more modularity for blocks implementation
|
||||
* Add hk-gridunit-imglink class to content-grid-link (css bug fix for background image link)
|
||||
* Added offset option to post grid widget
|
||||
|
||||
= 1.2.3 =
|
||||
* Fix bug for certain widgets with SiteOrigin Page Builder
|
||||
|
||||
= 1.2.2 =
|
||||
* Fix undeclared variable bug from v1.2.1
|
||||
* Fix post-grid attr to hk-gridunit name bug from v1.2.1
|
||||
|
||||
= 1.2.1 =
|
||||
* Added variable passed in context for link urls in various widgets
|
||||
* Refactor Content Grid widget template
|
||||
* Refactor Cover Image widget template
|
||||
* Add slider option to Cover Image widget
|
||||
|
||||
= 1.2.0 =
|
||||
* Added Top Banner with customizer settings for supporting themes
|
||||
* Added Fly Cart with customizer settings for supporting themes
|
||||
* Added Content Grid widget, Hero Image widget
|
||||
* Include default support for 'post-grid-firstpost-slider' and 'announce-headline'
|
||||
* Added Timer shortcode for supporting themes
|
||||
* Added multiple woocommerce widgets
|
||||
* Added max-width option for sliders
|
||||
* Refactored code for activated/deactivated module variables
|
||||
* Settings page for all modules
|
||||
|
||||
= 1.1.3 =
|
||||
* Update hootkit.js for jQuery 3.5 for future versions of WordPress
|
||||
|
||||
= 1.1.2 =
|
||||
* Improve accessibility (keyboard navigation) for ticker widget
|
||||
* Fix select2 css for z-index in customizer view and overqualify over other plugins loading select2 css
|
||||
|
||||
= 1.1.1 =
|
||||
* Added single/multiple line option to ticker and post ticker
|
||||
* Bug fix: Adaptive height calculation in horizontal carousel upon load
|
||||
* Updated select2 script from 4.0.7 to 4.0.13
|
||||
* Fix select2 css for z-index in customizer view and overqualify over other plugins loading select2 css
|
||||
* Fixed number argument in HootLit::get_terms()
|
||||
* Fixed syntax from Hoot_List::categories('category') to Hoot_List::categories(0)
|
||||
* Fixed polylang issue: Set extract_overwrite filter default to false so widget_title filter results stay
|
||||
|
||||
= 1.1.0 =
|
||||
* Added settings page for user option - activate/deactivate specific modules. Also let themes define default activated modules.
|
||||
* Updated arguments of apply_filter function for hook 'widget_title'
|
||||
* Added Subtitle option and css class for widgets for themes which support it
|
||||
* Combined 'viewall' link in widgets to single template function
|
||||
* Combined string titles to separate location
|
||||
* Add notices module, subsequently Add hootkit activate option with time (used for notices)
|
||||
* Fix ticker post widget - remove flexbox in order to have max-width for content, add empty image to maintain unit height
|
||||
* Remove height setting for ticker msg box using javascript
|
||||
* Remove postlistcarousel markup for navigation (let theme templates handle it individually)
|
||||
* Allow html tags in title (sanitized during display) by setting extract to overwrite - can be changed using filter
|
||||
* Updated 'seperator' widget option type to simply display a visual separating line
|
||||
* CSS fix for select2 container - overqualify to override display inline-block set in custom-sdiebars plugin
|
||||
* Removed deprecated importer code (refer version 1.0.12)
|
||||
|
||||
= 1.0.17 =
|
||||
* Updated image size for post-grid and post-list to croped sizes to prevent blurry images
|
||||
* Add compatibility (for content block 5 images) with Jetpack lazy load (and other lazy plugins)
|
||||
|
||||
= 1.0.16 =
|
||||
* Updates Announce widget options
|
||||
* Bug Fix: Prevent error when active child theme deleted using FTP
|
||||
|
||||
= 1.0.15 =
|
||||
* Add icon to Widget Ticker
|
||||
|
||||
= 1.0.14 =
|
||||
* Added Post List Carousel widget for themes which support it
|
||||
* Added wp_reset_postdata() for Ticker Posts
|
||||
* Add ID to slider hoot data (for easy access via modification hook)
|
||||
|
||||
= 1.0.13 =
|
||||
* Add Ticker Posts widget
|
||||
* Add option to exclude posts categories in widgets ticker-posts, post-list, post-grid, slider-postcarousel, slider-postimage, content-posts-blocks
|
||||
* Post Grid widget option changed from number of posts to number of rows
|
||||
|
||||
= 1.0.12 =
|
||||
* Remove comma in inline background-image css (to prevent escape attribute which confuses lazy load plugins)
|
||||
* Bug fix for empty values (widgets added via customizer)
|
||||
* Disable importer since wptrt does not allow demo content to be included in themes anymore (code will be deleted shortly)
|
||||
* Add child theme data (name and author uri) to hoot data
|
||||
|
||||
= 1.0.11 =
|
||||
* Display Widget IDs for each widget on the Widgets screen (hence remove 'widgetid' option from HootKit widgets)
|
||||
* Highlight Parent Theme in Theme list when a child theme is active
|
||||
* Fixed args for 'hootkit_content_blocks_start' and 'hootkit_content_blocks_end' action in Content Block widget
|
||||
* Improved javascript for 'content-block-style5' for newer themes
|
||||
|
||||
= 1.0.10 =
|
||||
* Run script on content-block-style5 on $(window).load instead of $(document).ready to properly calculate image heights
|
||||
* Added singleSlideView class to slider template (corresponds to multiSlideView for carousels in themes)
|
||||
* Fixed args for 'hootkit_content_blocks_start' action in Content Block widget
|
||||
* Added multiselect option (select2 script) for various posts widgets
|
||||
* SiteOrigin Page Builder compatibility (live preview) (new widget instance doesnt have all option values when post is saved without editing widget even once (in Gutenberg only))
|
||||
|
||||
= 1.0.9 =
|
||||
* Widget Post List - Added No thumbnail option
|
||||
* Added 'View All' option to Posts Blocks widget, Posts Image slider and Posts Carousel Slider
|
||||
* Fixed content-block-style5 javascript for certain edge case scenarios (height not set properly when js loads before image or mouse hover out)
|
||||
* Improved one click description to make sure user understands (added manual input Accept)
|
||||
* Increased hoot_admin_list_item_count to 999 to remove limitation on terms lists
|
||||
* Added missing argument for 'the_title' filter to prevent error with certain plugins
|
||||
* Added data-type argument to slider template
|
||||
|
||||
= 1.0.8 =
|
||||
* Improved slider/carousel template to use custom classes (for different slider styles)
|
||||
* Link titles for post slider and carousel
|
||||
|
||||
= 1.0.6 =
|
||||
* Added style 5 and 6 support for Content Block and Content Posts Block widgets
|
||||
* Added variables for scrollspeed and scrollpadding for developers to override it using child themes
|
||||
* Fixed limit for Content Block widget
|
||||
|
||||
= 1.0.5 =
|
||||
* Added compatibility with latest Hoot Framework functions in v3.0.1
|
||||
* Added style option for Call To Action widget for themes which support it
|
||||
* Added profile widget
|
||||
* Fixed array_search sanitization for vcard urls
|
||||
|
||||
= 1.0.4 =
|
||||
* Bug Fix: Removed Composer autoloader for OCDI whcih did not work on certain installation environments
|
||||
|
||||
= 1.0.3 =
|
||||
* Added support for content installation (ocdi) functionality
|
||||
* Added nav option and pause time option for sliders and carousels
|
||||
* Exclude carousel images from Jetpack lazyload
|
||||
* Update register and load action priority
|
||||
* Added wphoot themelist to register
|
||||
* Set theme details data if not present
|
||||
* Menu order function for wphoot themes
|
||||
|
||||
= 1.0.2 =
|
||||
* Added preset combo (preset colors with bright option)
|
||||
* Slider and Icon template - Minor updates
|
||||
* Slider template - Remove counter break (for more slides option)
|
||||
* Added new widgets
|
||||
|
||||
= 1.0.1 =
|
||||
* Added Icon color option for announce widget
|
||||
* Added several action and filter hooks for developer modifications
|
||||
* Compatibility fix for for Jetpack lazy load with sliders
|
||||
* Reworked widget options array syntax for easy modification using filters
|
||||
* Cleaned up code at several locations and removed redundant functions
|
||||
* Updated CSS
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial Public Release
|
||||
71
spec/fixtures/dynamic_finders/plugin_version/http-requests-tracker/composer_file/composer.json
vendored
Normal file
71
spec/fixtures/dynamic_finders/plugin_version/http-requests-tracker/composer_file/composer.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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 ""
|
||||
@@ -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 ""
|
||||
@@ -0,0 +1,6 @@
|
||||
|
||||
{
|
||||
"name": "influenseller-plugin",
|
||||
"version": "1.0.0",
|
||||
"author": "Yinfluenseller ltd"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
*** iPROM integration for WooCommerce ***
|
||||
|
||||
2021.11.05 - version 1.0.0
|
||||
* Initial release.
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/jagif-woo-free-gift/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/jagif-woo-free-gift/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/**1.0.0 - 20..**/
|
||||
- First release
|
||||
@@ -324,14 +324,6 @@ var give_scripts = {"ajaxurl":"http:\/\/wp.lab\/wp-admin\/admin-ajax.php","loadi
|
||||
|
||||
|
||||
|
||||
<!-- instagram-feed -->
|
||||
<!-- Instagram Feed JS -->
|
||||
<script type="text/javascript">
|
||||
var sbiajaxurl = "https://wp.lab/wp-admin/admin-ajax.php";
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<!-- jquery-colorbox -->
|
||||
<script type="text/javascript">
|
||||
/* <![CDATA[ */
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2022 JSM's Decolorize Menu Icons
|
||||
# This file is distributed under the same license as the JSM's Decolorize Menu Icons package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSM's Decolorize Menu Icons 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jsm-decolorize\n"
|
||||
"POT-Creation-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "JSM's Decolorize Menu Icons"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/extend/plugins/jsm-decolorize/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A simple plugin to decolorize the colorful admin menu icons added by some "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/"
|
||||
msgstr ""
|
||||
36
spec/fixtures/dynamic_finders/plugin_version/kiwi-com-widget/composer_file/package.json
vendored
Normal file
36
spec/fixtures/dynamic_finders/plugin_version/kiwi-com-widget/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "kiwicom-widget",
|
||||
"private": "true",
|
||||
"version": "1.0.0",
|
||||
"description": "Kiwi.com Widget plugin for Wordpress",
|
||||
"author": "Tequila Team",
|
||||
"scripts": {
|
||||
"build": "NODE_ENV=production webpack",
|
||||
"lint": "eslint src/*.js src/__tests__/*.js src/block/**",
|
||||
"test": "jest",
|
||||
"watch": "webpack -w",
|
||||
"dev": "webpack-dev-server --hot",
|
||||
"package": "./bin/zip.sh"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.15.0",
|
||||
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
||||
"@babel/plugin-transform-react-jsx": "^7.14.9",
|
||||
"@babel/preset-env": "^7.15.0",
|
||||
"@babel/preset-react": "^7.14.5",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"babel-jest": "^27.0.6",
|
||||
"babel-loader": "^8.2.2",
|
||||
"prettier": "^2.3.2",
|
||||
"react-hot-loader": "^4.13.0",
|
||||
"webpack": "^5.50.0",
|
||||
"webpack-cli": "^4.8.0",
|
||||
"webpack-dev-server": "^4.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/element": "^4.0.0",
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2"
|
||||
}
|
||||
}
|
||||
8700
spec/fixtures/dynamic_finders/plugin_version/kubio/translation_file/languages/kubio.pot
vendored
Normal file
8700
spec/fixtures/dynamic_finders/plugin_version/kubio/translation_file/languages/kubio.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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 "إحسبي مرة أخرى"
|
||||
@@ -0,0 +1,155 @@
|
||||
# Copyright (C) 2021 Lenbox
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lenbox Paiement plusieurs fois 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lenbox-cbnx\n"
|
||||
"POT-Creation-Date: 2021-12-23T09:11:30+00:00\n"
|
||||
"PO-Revision-Date: 2021-12-23 10:11+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr_FR\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-Domain: lenbox-cbnx\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lenbox Paiement plusieurs fois"
|
||||
msgstr "Lenbox Paiement plusieurs fois"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows users to demand EMI from Lenbox and it's partner FLOA"
|
||||
msgstr ""
|
||||
"Permet de faire des paiements plusieurs fois avec le module Lenbox et leur "
|
||||
"partenaire FLOA Bank"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Lenbox"
|
||||
msgstr "Lenbox"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.lenbox.io/"
|
||||
msgstr "https://www.lenbox.io/"
|
||||
|
||||
#: lenbox-cbnx.php:34
|
||||
msgid "Orders"
|
||||
msgstr "Commandes"
|
||||
|
||||
#: lenbox-cbnx.php:45
|
||||
msgid "Transactions"
|
||||
msgstr "Transactions"
|
||||
|
||||
#. translators: 1. URL link.
|
||||
#: lenbox-cbnx.php:65
|
||||
msgid ""
|
||||
"Lenbox Paiement plusieurs fois requires WooCommerce to be installed and "
|
||||
"active. You can download %s here."
|
||||
msgstr ""
|
||||
"Lenbox Paiement plusieurs fois requires WooCommerce to be installed and "
|
||||
"active. You can download %s here."
|
||||
|
||||
#: views/order_table.php:15
|
||||
msgid "order"
|
||||
msgstr "commande"
|
||||
|
||||
#: views/order_table.php:16
|
||||
msgid "orders"
|
||||
msgstr "commandes"
|
||||
|
||||
#: views/order_table.php:62
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#: views/order_table.php:63
|
||||
msgid "Order ID"
|
||||
msgstr "ID de la demande"
|
||||
|
||||
#: views/order_table.php:64
|
||||
msgid "First Name"
|
||||
msgstr "Prenom"
|
||||
|
||||
#: views/order_table.php:65
|
||||
msgid "Last Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: views/order_table.php:66
|
||||
msgid "Amount to finance"
|
||||
msgstr "Montant à financer"
|
||||
|
||||
#: views/order_table.php:67
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#: views/order_table.php:133 views/order_table.php:139
|
||||
#: views/order_table.php:143
|
||||
msgid "Error: Cannot load data from lenbox. Please check your configuration"
|
||||
msgstr ""
|
||||
"Erreur : Impossible d'afficher les donnes. Valider votre configuration"
|
||||
|
||||
#: woocommerce/config.php:7
|
||||
msgid "Client ID in test environment"
|
||||
msgstr "Client ID en version test"
|
||||
|
||||
#: woocommerce/config.php:11
|
||||
msgid "Authkey in test environment"
|
||||
msgstr "Authkey en version test"
|
||||
|
||||
#: woocommerce/config.php:15
|
||||
msgid "Client ID in live environment"
|
||||
msgstr "Client ID en version live"
|
||||
|
||||
#: woocommerce/config.php:19
|
||||
msgid "Authkey in live environment"
|
||||
msgstr "Authkey en version live"
|
||||
|
||||
#: woocommerce/config.php:23
|
||||
msgid "Use test environment"
|
||||
msgstr "Utiliser le mode test"
|
||||
|
||||
#: woocommerce/config.php:30
|
||||
msgid "Payment 4X with charges"
|
||||
msgstr "Paiement en 4X avec frais"
|
||||
|
||||
#: woocommerce/config.php:37
|
||||
msgid "Payment 4X without charges"
|
||||
msgstr "Paiement en 4X sans frais"
|
||||
|
||||
#: woocommerce/config.php:44
|
||||
msgid "Payment 10X"
|
||||
msgstr "Paiement en 10X"
|
||||
|
||||
#: woocommerce/config.php:51
|
||||
msgid "Text displayed for Lenbox when choosing payment method"
|
||||
msgstr "Titre affiché sur votre page de paiement"
|
||||
|
||||
#: woocommerce/config.php:54
|
||||
msgid "Paiement en plusieurs fois"
|
||||
msgstr "Paiement en plusieurs fois"
|
||||
|
||||
#: woocommerce/config.php:58
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: woocommerce/config.php:60
|
||||
msgid "Description when user chooses lenbox as payment option"
|
||||
msgstr ""
|
||||
"Ceci modifie le texte que le client voit durant son processus de paiement"
|
||||
|
||||
#: woocommerce/config.php:61
|
||||
msgid "Request an EMI with Lenbox."
|
||||
msgstr "Demande un paiement plusieurs fois avec Lenbox."
|
||||
|
||||
#: woocommerce/gateway.php:18
|
||||
msgid "Paiement plusieurs fois"
|
||||
msgstr "Paiement plusieurs fois"
|
||||
|
||||
#: woocommerce/gateway.php:92
|
||||
msgid "Connection error."
|
||||
msgstr "Erreur connexion."
|
||||
|
||||
#: woocommerce/gateway.php:98
|
||||
msgid "Payment Failed"
|
||||
msgstr "Echec Payment"
|
||||
@@ -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 ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/livechat-elementor/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/livechat-elementor/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* First LiveChat plugin version
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/luway-upsale/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/luway-upsale/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "luway-upsale",
|
||||
"version": "1.1.0",
|
||||
"description": "Luway WooCommerce Upsale",
|
||||
"author": "Alexey Ponomarev",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^8.0.1",
|
||||
"@wordpress/blocks": "^11.1.3",
|
||||
"@wordpress/i18n": "^4.2.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^19.1.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
# Copyright (C) 2021 Bind OÜ
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mediamodifier for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mediamodifier-pod-"
|
||||
"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-25 13:28+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"Language: \n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Mediamodifier for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin_Product_Table_Pod_Extending.php:29
|
||||
#: mediamodifier-pod-for-woocommerce.php:308
|
||||
msgctxt "Redigeeri PoD malli"
|
||||
msgid "Edit PoD Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin_Product_Table_Pod_Extending.php:34
|
||||
#: mediamodifier-pod-for-woocommerce.php:309
|
||||
msgctxt "Lisage PoD mall"
|
||||
msgid "Add PoD Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin_Product_Table_Pod_Extending.php:44
|
||||
msgctxt "PoD mall"
|
||||
msgid "PoD Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:106
|
||||
msgctxt "Mall"
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:107
|
||||
msgctxt "Muuda"
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:108
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:109
|
||||
msgid "New Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:110 includes/Pod_Template_Post.php:111
|
||||
msgid "View Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:112
|
||||
msgid "Search Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:113
|
||||
msgid "No Templates found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:114
|
||||
msgid "No Templates found in trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:192
|
||||
msgid "POD Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pod_Template_Post.php:193
|
||||
msgid "POD Template"
|
||||
msgstr ""
|
||||
|
||||
#: mediamodifier-pod-for-woocommerce.php:166
|
||||
msgctxt "Sätted"
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mediamodifier-pod-for-woocommerce.php:176
|
||||
msgctxt "Mallid"
|
||||
msgid "Templates"
|
||||
msgstr ""
|
||||
|
||||
#: mediamodifier-pod-for-woocommerce.php:260
|
||||
msgctxt "PoD global sätted."
|
||||
msgid "PoD global settings."
|
||||
msgstr ""
|
||||
|
||||
#: partials/pod-main-settings.php:18
|
||||
msgctxt "Mediamodifier PoD sätted"
|
||||
msgid "Mediamodifier PoD Settings"
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/modula-foo-migrator/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/modula-foo-migrator/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
First Release ! Yay !
|
||||
47
spec/fixtures/dynamic_finders/plugin_version/modula-foo-migrator/composer_file/package.json
vendored
Normal file
47
spec/fixtures/dynamic_finders/plugin_version/modula-foo-migrator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"name": "modula-deeplink",
|
||||
"main": "Gruntfile.js",
|
||||
"version": "1.0.0",
|
||||
"author": "Macho Themes",
|
||||
"license": "GPL v3",
|
||||
"repository": "https://github.com/machothemes/simple-author-box.git",
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"watch": "webpack --watch",
|
||||
"production": "cross-env NODE_ENV=production webpack"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^9.7.4",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^8.0.6",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"babel-preset-react": "^6.24.1",
|
||||
"browser-sync": "^2.26.7",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"classnames": "^2.2.6",
|
||||
"cross-env": "^7.0.0",
|
||||
"css-entry-webpack-plugin": "^1.0.0-beta.4",
|
||||
"css-loader": "^3.4.2",
|
||||
"cssnano": "^4.1.10",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-cli": "^1.3.2",
|
||||
"grunt-contrib-clean": "^2.0.0",
|
||||
"grunt-contrib-compress": "^1.6.0",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-cssmin": "^3.0.0",
|
||||
"grunt-contrib-uglify": "^4.0.1",
|
||||
"grunt-wp-i18n": "^1.0.3",
|
||||
"load-grunt-tasks": "^5.1.0",
|
||||
"node-sass": "^4.13.1",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"sass-loader": "^8.0.2",
|
||||
"style-loader": "^1.1.3",
|
||||
"webpack": "^4.41.5"
|
||||
},
|
||||
"dependencies": {
|
||||
"npm": "^6.13.7"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
First Release ! Yay !
|
||||
47
spec/fixtures/dynamic_finders/plugin_version/modula-nextgen-migrator/composer_file/package.json
vendored
Normal file
47
spec/fixtures/dynamic_finders/plugin_version/modula-nextgen-migrator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"name": "modula-deeplink",
|
||||
"main": "Gruntfile.js",
|
||||
"version": "1.0.0",
|
||||
"author": "Macho Themes",
|
||||
"license": "GPL v3",
|
||||
"repository": "https://github.com/machothemes/simple-author-box.git",
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"watch": "webpack --watch",
|
||||
"production": "cross-env NODE_ENV=production webpack"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^9.7.4",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^8.0.6",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"babel-preset-react": "^6.24.1",
|
||||
"browser-sync": "^2.26.7",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"classnames": "^2.2.6",
|
||||
"cross-env": "^7.0.0",
|
||||
"css-entry-webpack-plugin": "^1.0.0-beta.4",
|
||||
"css-loader": "^3.4.2",
|
||||
"cssnano": "^4.1.10",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-cli": "^1.3.2",
|
||||
"grunt-contrib-clean": "^2.0.0",
|
||||
"grunt-contrib-compress": "^1.6.0",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-cssmin": "^3.0.0",
|
||||
"grunt-contrib-uglify": "^4.0.1",
|
||||
"grunt-wp-i18n": "^1.0.3",
|
||||
"load-grunt-tasks": "^5.1.0",
|
||||
"node-sass": "^4.13.1",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"sass-loader": "^8.0.2",
|
||||
"style-loader": "^1.1.3",
|
||||
"webpack": "^4.41.5"
|
||||
},
|
||||
"dependencies": {
|
||||
"npm": "^6.13.7"
|
||||
}
|
||||
}
|
||||
@@ -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 "Don’t 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! You’ve 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 ""
|
||||
@@ -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 "Don’t 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! You’ve 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 ""
|
||||
@@ -0,0 +1,927 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB GF Integration for Hubspot 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-11-12 14:02+0530\n"
|
||||
"PO-Revision-Date: 2021-11-12 14:02+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-gf-integration-for-hubspot-admin.php:150
|
||||
msgid "Back to feeds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-for-hubspot-admin.php:152
|
||||
msgid "Internal server error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-for-hubspot-admin.php:230
|
||||
msgid "MWB GF Integration for HubSpot"
|
||||
msgstr ""
|
||||
|
||||
#: admin/js/mwb-gf-integration-for-hubspot-admin.min.js:1
|
||||
msgid "Please select a form first"
|
||||
msgstr ""
|
||||
|
||||
#: admin/js/mwb-gf-integration-for-hubspot-admin.min.js:1
|
||||
msgid "Select a valid HubSpot object and its corresponding field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/js/mwb-gf-integration-for-hubspot-admin.min.js:1
|
||||
msgid "Please select a valid gf form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/js/mwb-gf-integration-for-hubspot-admin.min.js:1
|
||||
msgid "Please select a valid GF form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/js/mwb-gf-integration-for-hubspot-admin.min.js:1
|
||||
msgid "Select a valid GF form!!"
|
||||
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 ""
|
||||
"New app will be created and its 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 connet 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-gf-integration-for-hubspot-ajax-handler.php:123
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:283
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:142
|
||||
msgid "Something went wrong!!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:173
|
||||
msgid "Something went wrong!! Please try reloading this page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:203
|
||||
msgid "How to get the API keys?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:219
|
||||
msgid "Something went wrong!! Please try again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:226
|
||||
msgid "Validation successful !! Redirecting..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:262
|
||||
msgid "Something went wrong! Check your credentials and authorize again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:273
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:81
|
||||
#, php-format
|
||||
msgid "Access token will expire in %1$s hours %2$s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:278
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:87
|
||||
msgid "Access token has expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:340
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:353
|
||||
msgid "Inavlid email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:367
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:548
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:572
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:613
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:698
|
||||
msgid "Something went wrong, Refresh and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:734
|
||||
msgid "No log data available"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-ajax-handler.php:809
|
||||
msgid "Invalid form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-onboarding.php:343
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-onboarding.php:360
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-onboarding.php:395
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-onboarding.php:405
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-for-hubspot-onboarding.php:927
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/api/class-mwb-gf-integration-hubspot-api.php:473
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/api/class-mwb-gf-integration-hubspot-api.php:517
|
||||
msgid "Error posting to CRM"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:150
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:166
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:301
|
||||
msgid "Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-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-gf-integration-hubspot-feed-module.php:152
|
||||
msgid "Crm Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:153
|
||||
msgid "Parent Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-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-gf-integration-hubspot-feed-module.php:155
|
||||
msgid "View Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:156
|
||||
msgid "Add New Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:157
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:158
|
||||
msgid "Edit Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:159
|
||||
msgid "Update Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:160
|
||||
msgid "Search Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:161
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:162
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:167
|
||||
msgid "Feeds for crm"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:201
|
||||
msgid "Feed details"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-feed-module.php:211
|
||||
msgid "Conditional Statements"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:189
|
||||
msgid "Matches exactly"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:190
|
||||
msgid "Does not match exactly"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:191
|
||||
msgid "Contains (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:192
|
||||
msgid "Does not contain (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:193
|
||||
msgid "Exist in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:194
|
||||
msgid "Does not Exists in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:195
|
||||
msgid "Starts with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:196
|
||||
msgid "Does not start with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:197
|
||||
msgid "Ends with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:198
|
||||
msgid "Does not end with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:199
|
||||
msgid "Less than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:200
|
||||
msgid "Greater than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:201
|
||||
msgid "Less than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:202
|
||||
msgid "Greater than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:203
|
||||
msgid "Equals (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:204
|
||||
msgid "Is empty"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:205
|
||||
msgid "Is not empty"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:219
|
||||
msgid "Feed #"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-framework.php:261
|
||||
msgid "Application is not connected to HubSpot"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:143
|
||||
#, php-format
|
||||
msgid "%s day"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:150
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:169
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-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-gf-integration-hubspot-template-manager.php:165
|
||||
msgid "Trail expired !! "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:172
|
||||
msgid " your license and continue enjoying the pro version features."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:297
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:302
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:303
|
||||
#: mwb-gf-integration-for-hubspot.php:217
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:396
|
||||
msgid "API Name : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:400
|
||||
msgid "Type : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:406
|
||||
msgid "Length : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:413
|
||||
msgid "Options : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:420
|
||||
msgid "Picklist Values : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:426
|
||||
msgid "Required Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:435
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:438
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:451
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:470
|
||||
#: 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-hubspot-template-manager.php:440
|
||||
msgid "Standard Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:443
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:466
|
||||
msgid "Custom Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:449
|
||||
msgid "Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:507
|
||||
msgid "Select Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:517
|
||||
msgid "Select Condition"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:522
|
||||
msgid "Enter value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:559
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:72
|
||||
msgid "Form : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:563
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:76
|
||||
msgid "Object : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:567
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:80
|
||||
msgid "Primary Key : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:571
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:84
|
||||
msgid "Conditions : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:572
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:85
|
||||
msgid "Applied"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:576
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:90
|
||||
msgid "Edit feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-gf-integration-hubspot-template-manager.php:579
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:94
|
||||
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:27
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:82
|
||||
#: 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 "GF"
|
||||
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 Gravity 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 "Gravity 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:24
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:79
|
||||
#: 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: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 "Portal ID : %s"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:69
|
||||
#, php-format
|
||||
msgid "Account TimeZone : %s"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:92
|
||||
msgid "Refresh Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:99
|
||||
msgid "Reauthorize"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:102
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:116
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:129
|
||||
msgid "Synced Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:123
|
||||
msgid ""
|
||||
"Total number of Gravity Form submission data which are synced 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:143
|
||||
msgid "Need any help ? Check our documentation."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:146
|
||||
#: mwb-gf-integration-for-hubspot.php:186
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:151
|
||||
msgid "Facing any issue ? Open a support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:154
|
||||
#: mwb-gf-integration-for-hubspot.php:187
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:159
|
||||
msgid "Need personalized solution, contact us !"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:162
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:33
|
||||
#, 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:46
|
||||
#, php-format
|
||||
msgid "Connect your %s account with GF."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:55
|
||||
#, php-format
|
||||
msgid "Sync your data over %s."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:63
|
||||
msgid "Connect your Account."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:93
|
||||
msgid "Enter your credentials here"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:101
|
||||
msgid "Connection has been successful ! Validating ....."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:109
|
||||
msgid "Use own app"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:122
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:130
|
||||
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:150
|
||||
msgid "Enter Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:162
|
||||
msgid "Scopes"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:171
|
||||
msgid ""
|
||||
"Copy Scopes from your HubSpot app and paste here seperated by commas. For "
|
||||
"eg: {oauth, contacts, tickets} or {crm.objects.contacts.read, crm.objects."
|
||||
"contacts.write}"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:180
|
||||
msgid "Redirect URI"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:186
|
||||
msgid ""
|
||||
"Web-Protocol must be HTTPS in order to successfully authorize with HubSpot"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:197
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:210
|
||||
msgid "Don’t have an account yet . "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:212
|
||||
msgid "Create A Free Account"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:216
|
||||
msgid "Get Your Api Key here."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:217
|
||||
msgid "Get Api Keys"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:220
|
||||
msgid "Check app setup guide . "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:221
|
||||
msgid "Show Me How"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:237
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Congrats! You’ve successfully set up the MWB GF Integration with %s Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:252
|
||||
#, 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:259
|
||||
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:68
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:68
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:85
|
||||
msgid "-"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:104
|
||||
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 "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 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 ""
|
||||
|
||||
#: mwb-gf-integration-for-hubspot.php:84
|
||||
#, php-format
|
||||
msgid " %1$s is not activated, Please activate %1$s first to activate %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-gf-integration-for-hubspot.php:185
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-gf-integration-for-hubspot-public.php:443
|
||||
#, php-format
|
||||
msgid "Error While Posting GF form data over %s "
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-gf-integration-for-hubspot-public.php:468
|
||||
#, php-format
|
||||
msgid "MWB GF Integration For %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 ""
|
||||
@@ -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 "Don’t 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! You’ve 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 ""
|
||||
@@ -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 "Don’t 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! You’ve 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 ""
|
||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user