Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d92152a557 | ||
|
|
2cc243ac13 | ||
|
|
e735a68102 | ||
|
|
d50ee2217e | ||
|
|
e78d948f82 | ||
|
|
dd10991f93 | ||
|
|
99963c9b24 | ||
|
|
9acac36b85 | ||
|
|
460f10b4ad | ||
|
|
48f5e7c4ab | ||
|
|
866504c2ab | ||
|
|
ec6417feed | ||
|
|
b02f65888c | ||
|
|
9db97d0730 | ||
|
|
36a35279f2 | ||
|
|
d9f3c682d0 | ||
|
|
42dee6cfa9 | ||
|
|
d41e73727a | ||
|
|
9b2755020d | ||
|
|
91388a787a | ||
|
|
2690ab324f | ||
|
|
84993f7bd6 | ||
|
|
5b5cac925c | ||
|
|
854ad45d84 | ||
|
|
7078943b90 | ||
|
|
d59a4799f5 | ||
|
|
cac9d4cc71 |
49
.github/workflows/docker.yml
vendored
Normal file
49
.github/workflows/docker.yml
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
name: Build Docker Images
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
release:
|
||||
types: [published]
|
||||
schedule:
|
||||
- cron: '0 7 * * *'
|
||||
|
||||
jobs:
|
||||
images:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v2.3.4
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
run: |
|
||||
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
|
||||
|
||||
- name: Set tag to release name
|
||||
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')
|
||||
run: |
|
||||
echo "DOCKER_TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
|
||||
|
||||
- name: Check if DOCKER_TAG is set
|
||||
if: env.DOCKER_TAG == ''
|
||||
run: |
|
||||
echo DOCKER_TAG is not set!
|
||||
exit 1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1.10.0
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
tags: wpscanteam/wpscan:${{ env.DOCKER_TAG }}
|
||||
@@ -1 +1 @@
|
||||
2.7.2
|
||||
3.0.2
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM ruby:2.7.2-alpine AS builder
|
||||
FROM ruby:3.0.2-alpine AS builder
|
||||
LABEL maintainer="WPScan Team <contact@wpscan.com>"
|
||||
|
||||
RUN echo "install: --no-document --no-post-install-message\nupdate: --no-document --no-post-install-message" > /etc/gemrc
|
||||
@@ -19,7 +19,7 @@ RUN rake install --trace
|
||||
RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
|
||||
FROM ruby:2.7.2-alpine
|
||||
FROM ruby:3.0.2-alpine
|
||||
LABEL maintainer="WPScan Team <contact@wpscan.com>"
|
||||
LABEL org.opencontainers.image.source https://github.com/wpscanteam/wpscan
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
|
||||
return unless [200, 302].include?(res.code)
|
||||
return if res.code == 302 && location&.include?('wp-login.php?action=register')
|
||||
return unless res.code == 200 || res.code == 302 && location&.include?('wp-signup.php')
|
||||
return unless res.code == 200 || (res.code == 302 && location&.include?('wp-signup.php'))
|
||||
|
||||
target.multisite = true
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ module WPScan
|
||||
def vulnerabilities
|
||||
vulns = []
|
||||
|
||||
vulns << rce_webshot_vuln if version == false || version > '1.35' && version < '2.8.14' && webshot_enabled?
|
||||
vulns << rce_webshot_vuln if version == false || (version > '1.35' && version < '2.8.14' && webshot_enabled?)
|
||||
vulns << rce_132_vuln if version == false || version < '1.33'
|
||||
|
||||
vulns
|
||||
|
||||
@@ -24,7 +24,9 @@ module WPScan
|
||||
|
||||
FileUtils.mkdir_p(repo_directory.to_s) unless Dir.exist?(repo_directory.to_s)
|
||||
|
||||
raise "#{repo_directory} is not writable" unless repo_directory.writable?
|
||||
unless repo_directory.writable?
|
||||
raise "#{repo_directory} is not writable (uid: #{Process.uid}, gid: #{Process.gid})"
|
||||
end
|
||||
|
||||
delete_old_files
|
||||
end
|
||||
|
||||
@@ -5,16 +5,16 @@ module WPScan
|
||||
class PluginsThresholdReached < Standard
|
||||
def to_s
|
||||
"The number of plugins detected reached the threshold of #{ParsedCli.plugins_threshold} " \
|
||||
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
|
||||
'option to ignore the bad responses.'
|
||||
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
|
||||
'option to ignore the bad responses.'
|
||||
end
|
||||
end
|
||||
|
||||
class ThemesThresholdReached < Standard
|
||||
def to_s
|
||||
"The number of themes detected reached the threshold of #{ParsedCli.themes_threshold} " \
|
||||
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
|
||||
'option to ignore the bad responses.'
|
||||
'which might indicate False Positive. It would be recommended to use the --exclude-content-based ' \
|
||||
'option to ignore the bad responses.'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -26,7 +26,7 @@ module WPScan
|
||||
class WpContentDirNotDetected < Standard
|
||||
def to_s
|
||||
'Unable to identify the wp-content dir, please supply it with --wp-content-dir,' \
|
||||
' use the --scope option or make sure the --url value given is the correct one'
|
||||
' use the --scope option or make sure the --url value given is the correct one'
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -56,7 +56,9 @@ module WPScan
|
||||
|
||||
homepage_result = find(target.homepage_res, opts)
|
||||
|
||||
return homepage_result unless homepage_result.nil? || homepage_result.is_a?(Array) && homepage_result&.empty?
|
||||
unless homepage_result.nil? || (homepage_result.is_a?(Array) && homepage_result&.empty?)
|
||||
return homepage_result
|
||||
end
|
||||
|
||||
find(target.error_404_res, opts)
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.18'
|
||||
VERSION = '3.8.19'
|
||||
end
|
||||
|
||||
@@ -35,7 +35,7 @@ describe WPScan::Finders::Passwords::WpLogin do
|
||||
context 'when multiple cookies set' do
|
||||
let(:headers) do
|
||||
"Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/\r\n" \
|
||||
'Set-Cookie: something=value; path=/'
|
||||
'Set-Cookie: something=value; path=/'
|
||||
end
|
||||
|
||||
it 'returns false' do
|
||||
@@ -47,9 +47,9 @@ describe WPScan::Finders::Passwords::WpLogin do
|
||||
context 'when logged_in cookie set' do
|
||||
let(:headers) do
|
||||
"Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/\r\r" \
|
||||
"Set-Cookie: wordpress_xxx=yyy; path=/wp-content/plugins; httponly\r\n" \
|
||||
"Set-Cookie: wordpress_xxx=yyy; path=/wp-admin; httponly\r\n" \
|
||||
'Set-Cookie: wordpress_logged_in_xxx=yyy; path=/; httponly'
|
||||
"Set-Cookie: wordpress_xxx=yyy; path=/wp-content/plugins; httponly\r\n" \
|
||||
"Set-Cookie: wordpress_xxx=yyy; path=/wp-admin; httponly\r\n" \
|
||||
'Set-Cookie: wordpress_logged_in_xxx=yyy; path=/; httponly'
|
||||
end
|
||||
|
||||
it 'returns false' do
|
||||
|
||||
4945
spec/fixtures/db/dynamic_finders.yml
vendored
4945
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1967
spec/fixtures/dynamic_finders/expected.yml
vendored
1967
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
||||
= 4.0.0 =
|
||||
* Released 2021.07.20
|
||||
* Upgraded to use V4 of the what3words AutoSuggest Component with improved styling and functionality.
|
||||
* Updated admin section interface.
|
||||
* Addition of advanced clipping options to restrict suggestions displayed to a user.
|
||||
* Addition of options to store latitude and longitude coordinates and nearest place against a record.
|
||||
* Added ability to change the field label.
|
||||
|
||||
= 3.0.11 =
|
||||
* Released 2021.06.30
|
||||
* Fixes non-fatal debugging log output for PHP "Variable assignment" error
|
||||
|
||||
= 3.0.10 =
|
||||
* Released 2021.03.09
|
||||
* Fixes passing API key to autosuggest for requests.
|
||||
|
||||
= 3.0.9 =
|
||||
* Released 2021.02.03
|
||||
* Updated screenshots
|
||||
* Send key version numbers to what3words API via `X-W3W-Plugin` request header.
|
||||
|
||||
= 3.0.8 =
|
||||
* Released 2020.12.11
|
||||
* Improved interoperability, errors in 3rd party scripts will be less likely to prevent the plugin operating.
|
||||
* Bumped to latest WordPress release, 5.6
|
||||
|
||||
= 3.0.7 =
|
||||
* Released 2020.06.17
|
||||
* Addresses an error that prevented the plugin loading on Internet Explorer.
|
||||
* Minor styling improvements.
|
||||
|
||||
= 3.0.6 =
|
||||
* Released 2020.06.02
|
||||
* Further improvements to match theme styling
|
||||
* Clarified the purpose of the `Input Selector(s)` field
|
||||
* Updated readme
|
||||
|
||||
= 3.0.5 =
|
||||
* Released 2020.06.01
|
||||
* Apply missing `font-size` property.
|
||||
|
||||
= 3.0.4 =
|
||||
* Released 2020.06.01
|
||||
* Hotfix missing `font-size` property.
|
||||
|
||||
= 3.0.3 =
|
||||
* Released 2020.06.01
|
||||
* Plugin tweaked to take up less vertical height on themes with slimmer text inputs.
|
||||
|
||||
= 3.0.2 =
|
||||
* Released 2020.06.01
|
||||
* The plugin now inherits styles from the current wordpress theme for more seamless integration.
|
||||
* The following css properties are automatically applied to the upgraded input: `background-color`, `border`, `border-radius`, `color`, `font`, `height`.
|
||||
|
||||
= 3.0.1 =
|
||||
* Released 2020.05.27
|
||||
* Fixes an issue where country clipping would not work when shipping and billing addresses were in different countries.
|
||||
* Updated screenshots
|
||||
|
||||
= 3.0.0 =
|
||||
* Released 2020.05.26
|
||||
* Updated the plugin to use new web component and V3 of the what3words API. Note that this release simplifies the plugin setup and removes some settings.
|
||||
* Updated links to what3words documentation and developer site
|
||||
* Settings available are now:
|
||||
* API key
|
||||
* CSS selector to specify which inputs should be upgraded to the auto suggest component
|
||||
* Placeholder text shown on inputs
|
||||
* Turn on/off the WooCommerce integration, to automatically add what3words address fields to your checkout forms
|
||||
|
||||
= 2.0.4 =
|
||||
* Released 2019.01.16
|
||||
* Added new function to allow a country field to be specified for country clipping
|
||||
|
||||
= 2.0.3 =
|
||||
* Released 2018.04.05
|
||||
* bug fixes
|
||||
|
||||
= 2.0.2 =
|
||||
* Released 2018.03.16
|
||||
* bug fixes
|
||||
|
||||
= 2.0.1 =
|
||||
* Released 2018.01.09
|
||||
* bug fixes
|
||||
|
||||
= 2.0.0 =
|
||||
* Released 2018.01.08
|
||||
* Reworked and redesigned plugin code base
|
||||
|
||||
= 1.1.0 =
|
||||
* uses what3words autosuggest jQuery plugin 1.2.0
|
||||
|
||||
= 1.0.1 =
|
||||
* General fixes
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,66 @@
|
||||
# Copyright (C) 2021 AbsolutePlugins
|
||||
# This file is distributed under the GPLv3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Absolute Thumbnail Column 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/absolute-thumbnail-column\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-07-07T14:49:00+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: absp-thumbnail-column\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Absolute Thumbnail Column"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://absoluteplugins.com/plugins/absolute-thumbnail-column/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Absolute Thumbnail column allows you to upload, select and change thumbnail on any post-types right from the post table."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AbsolutePlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://absoluteplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#: absolute-thumbnail-column.php:112
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: absolute-thumbnail-column.php:175
|
||||
#: absolute-thumbnail-column.php:177
|
||||
msgid "Click the image to edit or update"
|
||||
msgstr ""
|
||||
|
||||
#: absolute-thumbnail-column.php:179
|
||||
#: absolute-thumbnail-column.php:181
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: absolute-thumbnail-column.php:189
|
||||
msgid "No Thumb"
|
||||
msgstr ""
|
||||
|
||||
#: absolute-thumbnail-column.php:197
|
||||
#: absolute-thumbnail-column.php:199
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: absolute-thumbnail-column.php:360
|
||||
msgid "Could not set that as the thumbnail image. Try a different attachment."
|
||||
msgstr ""
|
||||
|
||||
#: absolute-thumbnail-column.php:362
|
||||
msgid "Could not remove the post thumbnail image. Try a again later."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright (C) 2021 Brickdots
|
||||
# This file is distributed under the same license as the Admin Todotastic plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Admin Todotastic 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/src\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: n/a\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 "Admin Todotastic"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/admin-todotastic"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Assign todo to internal users by mentioning them"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Brickdots"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://brickdots.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,495 @@
|
||||
# Copyright (C) 2021 All Embed Addons for elementor
|
||||
# This file is distributed under the same license as the All Embed Addons for elementor package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: All Embed Addons for elementor 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/All-Embed-Elementor-Addons\n"
|
||||
"POT-Creation-Date: 2021-05-28 04:47:21+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"
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor
|
||||
|
||||
#: All-Embed.php:129
|
||||
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: All-Embed.php:130
|
||||
msgid "Media Player Addon"
|
||||
msgstr ""
|
||||
|
||||
#: All-Embed.php:131 All-Embed.php:154
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
|
||||
|
||||
#: All-Embed.php:152 All-Embed.php:176
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: All-Embed.php:153
|
||||
msgid "unlimited addon"
|
||||
msgstr ""
|
||||
|
||||
#: All-Embed.php:177
|
||||
msgid "venus wp"
|
||||
msgstr ""
|
||||
|
||||
#: All-Embed.php:178
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:167
|
||||
msgid "All Embed For Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/Sirv.php:40
|
||||
msgid "Sirv Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/Sirv.php:90
|
||||
msgid "Sirv Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/Sirv.php:99
|
||||
msgid "Sirv Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/Sirv.php:102 widgets/appointly.php:102 widgets/bandcamp.php:102
|
||||
#: widgets/codepen.php:102 widgets/creddle.php:102 widgets/dailymotion.php:102
|
||||
#: widgets/dartfish.php:102 widgets/facebook.php:102 widgets/genial.php:102
|
||||
#: widgets/giphy.php:102 widgets/google-map.php:102 widgets/imgur.php:102
|
||||
#: widgets/invison.php:102 widgets/jotform.php:102 widgets/kuula.php:102
|
||||
#: widgets/linkedin.php:102 widgets/mixcloud.php:102 widgets/pinterest.php:102
|
||||
#: widgets/reddit.php:102 widgets/slideshare.php:102 widgets/soundcloud.php:102
|
||||
#: widgets/spotify.php:102 widgets/twitch.php:102 widgets/twitframe.php:102
|
||||
#: widgets/vimeo_addon.php:102 widgets/youtube_addon.php:102
|
||||
msgid "https://your-link.com"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/Sirv.php:112
|
||||
msgid "Sirv Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/Sirv.php:119 widgets/appointly.php:119 widgets/bandcamp.php:119
|
||||
#: widgets/codepen.php:119 widgets/creddle.php:119 widgets/dailymotion.php:118
|
||||
#: widgets/dartfish.php:119 widgets/facebook.php:119 widgets/genial.php:119
|
||||
#: widgets/giphy.php:119 widgets/google-map.php:119 widgets/imgur.php:119
|
||||
#: widgets/invison.php:119 widgets/jotform.php:119 widgets/kuula.php:119
|
||||
#: widgets/linkedin.php:119 widgets/mixcloud.php:119 widgets/pinterest.php:119
|
||||
#: widgets/reddit.php:119 widgets/slideshare.php:119 widgets/soundcloud.php:119
|
||||
#: widgets/spotify.php:119 widgets/twitch.php:119 widgets/twitframe.php:119
|
||||
#: widgets/vimeo_addon.php:119 widgets/youtube_addon.php:119
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/Sirv.php:147 widgets/appointly.php:148 widgets/bandcamp.php:147
|
||||
#: widgets/codepen.php:147 widgets/creddle.php:147 widgets/dailymotion.php:146
|
||||
#: widgets/dartfish.php:147 widgets/facebook.php:147 widgets/genial.php:147
|
||||
#: widgets/giphy.php:147 widgets/google-map.php:147 widgets/invison.php:147
|
||||
#: widgets/jotform.php:147 widgets/kuula.php:147 widgets/linkedin.php:147
|
||||
#: widgets/mixcloud.php:147 widgets/pinterest.php:147 widgets/reddit.php:147
|
||||
#: widgets/slideshare.php:147 widgets/soundcloud.php:147
|
||||
#: widgets/spotify.php:147 widgets/twitch.php:147 widgets/twitframe.php:147
|
||||
#: widgets/vimeo_addon.php:147 widgets/youtube_addon.php:147
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/appointly.php:40
|
||||
msgid "appointly Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/appointly.php:90
|
||||
msgid "appointly Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/appointly.php:99 widgets/dartfish.php:99 widgets/invison.php:99
|
||||
#: widgets/jotform.php:99 widgets/soundcloud.php:99 widgets/vimeo_addon.php:99
|
||||
#: widgets/youtube_addon.php:99
|
||||
msgid "Video Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/appointly.php:112
|
||||
msgid "appointly Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bandcamp.php:40
|
||||
msgid "bandcamp Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bandcamp.php:90
|
||||
msgid "bandcamp Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bandcamp.php:99
|
||||
msgid "bandcamp Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bandcamp.php:112
|
||||
msgid "bandcamp Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/codepen.php:40
|
||||
msgid "Codepen Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/codepen.php:90
|
||||
msgid "Codepen Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/codepen.php:99
|
||||
msgid "Codepen Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/codepen.php:112
|
||||
msgid "Codepen Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/creddle.php:40
|
||||
msgid "creddle Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/creddle.php:90
|
||||
msgid "creddle Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/creddle.php:99
|
||||
msgid "creddle Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/creddle.php:112
|
||||
msgid "creddle Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/dailymotion.php:40
|
||||
msgid "dailymotion Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/dailymotion.php:90
|
||||
msgid "dailymotion Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/dailymotion.php:99
|
||||
msgid "dailymotion Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/dailymotion.php:112
|
||||
msgid "dailymotion Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/dartfish.php:40
|
||||
msgid "dartfish Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/dartfish.php:90
|
||||
msgid "dartfish Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/dartfish.php:112
|
||||
msgid "Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/facebook.php:40
|
||||
msgid "facebook Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/facebook.php:90
|
||||
msgid "facebook Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/facebook.php:99
|
||||
msgid "facebook Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/facebook.php:112
|
||||
msgid "facebook Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/genial.php:40
|
||||
msgid "genial Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/genial.php:90
|
||||
msgid "genial Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/genial.php:99
|
||||
msgid "genial Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/genial.php:112
|
||||
msgid "genial Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/giphy.php:40
|
||||
msgid "giphy Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/giphy.php:90
|
||||
msgid "Giphy Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/giphy.php:99
|
||||
msgid "Giphy Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/giphy.php:112
|
||||
msgid "Giphy Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/google-map.php:40
|
||||
msgid "Google Map Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/google-map.php:90
|
||||
msgid "Map Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/google-map.php:99
|
||||
msgid "Map Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/google-map.php:112
|
||||
msgid "Map Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/imgur.php:40
|
||||
msgid "imgur Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/imgur.php:90
|
||||
msgid "imgur Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/imgur.php:99
|
||||
msgid "imgur Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/imgur.php:112
|
||||
msgid "imgur Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/invison.php:40
|
||||
msgid "invison Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/invison.php:90
|
||||
msgid "invison Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/invison.php:112
|
||||
msgid "invison Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/jotform.php:40
|
||||
msgid "jotform Embed Form"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/jotform.php:90
|
||||
msgid "jotform Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/jotform.php:112
|
||||
msgid "jotform Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/kuula.php:40
|
||||
msgid "kuula Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/kuula.php:90
|
||||
msgid "kuula Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/kuula.php:99
|
||||
msgid "kuula Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/kuula.php:112
|
||||
msgid "kuula Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/linkedin.php:40
|
||||
msgid "linkedin Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/linkedin.php:90
|
||||
msgid "linkedin Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/linkedin.php:99
|
||||
msgid "linkedin Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/linkedin.php:112
|
||||
msgid "linkedin Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/mixcloud.php:40
|
||||
msgid "mixcloud Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/mixcloud.php:90
|
||||
msgid "mixcloud Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/mixcloud.php:99
|
||||
msgid "mixcloud Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/mixcloud.php:112
|
||||
msgid "mixcloud Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/pinterest.php:40
|
||||
msgid "pinterest Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/pinterest.php:90
|
||||
msgid "pinterest Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/pinterest.php:99
|
||||
msgid "pinterest Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/pinterest.php:112
|
||||
msgid "pinterest Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/reddit.php:40
|
||||
msgid "reddit Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/reddit.php:90
|
||||
msgid "reddit Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/reddit.php:99
|
||||
msgid "reddit Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/reddit.php:112
|
||||
msgid "reddit Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/slideshare.php:40
|
||||
msgid "Slideshare Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/slideshare.php:90
|
||||
msgid "Slideshare Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/slideshare.php:99
|
||||
msgid "Slideshare Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/slideshare.php:112
|
||||
msgid "Slideshare Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/soundcloud.php:40
|
||||
msgid "Soundcloud Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/soundcloud.php:90
|
||||
msgid "Soundcloud Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/soundcloud.php:112
|
||||
msgid "Soundcloud Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/spotify.php:40
|
||||
msgid "Spotify Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/spotify.php:90
|
||||
msgid "spotify Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/spotify.php:99
|
||||
msgid "Spotify Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/spotify.php:112
|
||||
msgid "Spotify Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitch.php:40
|
||||
msgid "twitch Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitch.php:90
|
||||
msgid "twitch Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitch.php:99
|
||||
msgid "twitch Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitch.php:112
|
||||
msgid "twitch Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitframe.php:40
|
||||
msgid "twitframe Embed"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitframe.php:90
|
||||
msgid "twitframe Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitframe.php:99
|
||||
msgid "twitframe Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/twitframe.php:112
|
||||
msgid "twitframe Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/vimeo_addon.php:40
|
||||
msgid "Vimeo Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/vimeo_addon.php:90
|
||||
msgid "Vimeo Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/vimeo_addon.php:112
|
||||
msgid "Vimeo Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/youtube_addon.php:40
|
||||
msgid "Youtube Embed Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/youtube_addon.php:90
|
||||
msgid "Youtube Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/youtube_addon.php:112
|
||||
msgid "Youtube Player Other Settings"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "All Embed Addons for elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Collection of All types of Embed files such as YouTube, Vimeo and more...."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://bPlugins.com"
|
||||
msgstr ""
|
||||
50
spec/fixtures/dynamic_finders/plugin_version/all-in-one-music-player/composer_file/package.json
vendored
Normal file
50
spec/fixtures/dynamic_finders/plugin_version/all-in-one-music-player/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"name": "all-in-one-music-player",
|
||||
"title": "All in One Music Player",
|
||||
"version": "1.0.0",
|
||||
"homepage": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sanzeeb3/music-player.git"
|
||||
},
|
||||
"license": "GPL-3.0+",
|
||||
"main": "Gruntfile.js",
|
||||
"scripts": {
|
||||
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
|
||||
"dev": "cross-env BABEL_ENV=default webpack --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "~9.1.5",
|
||||
"babel-core": "^6.25.0",
|
||||
"babel-loader": "^7.1.1",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-preset-env": "^1.6.0",
|
||||
"cross-env": "^5.0.1",
|
||||
"grunt": "~1.3.0",
|
||||
"lint-staged": "^9.5.0",
|
||||
"grunt-checktextdomain": "~1.0.1",
|
||||
"grunt-contrib-compress": "^1.5.0",
|
||||
"grunt-contrib-cssmin": "~2.2.1",
|
||||
"grunt-contrib-jshint": "~1.1.0",
|
||||
"grunt-contrib-uglify": "4.0.1",
|
||||
"grunt-contrib-watch": "~1.1.0",
|
||||
"grunt-phpcs": "~0.4.0",
|
||||
"grunt-postcss": "~0.9.0",
|
||||
"grunt-replace": "^2.0.2",
|
||||
"grunt-rtlcss": "~2.0.1",
|
||||
"grunt-sass": "~3.0.1",
|
||||
"grunt-stylelint": "~0.10.1",
|
||||
"grunt-wp-i18n": "^1.0.3",
|
||||
"node-sass": "^4.14.1",
|
||||
"stylelint": "~9.5.0",
|
||||
"webpack": "^3.1.0",
|
||||
"husky": "^3.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.9.3",
|
||||
"npm": ">=5.5.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"save": "^2.3.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2021 Sanjeev Aryal
|
||||
# This file is distributed under the same license as the All in One Music Player package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: All in One Music Player 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-06-18 04:53:28+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/Plugin.php:243
|
||||
msgid "No music player selected."
|
||||
msgstr ""
|
||||
|
||||
#: templates/a-player.php:2 templates/circular-spikes.php:5
|
||||
msgid "Searching media files..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/a-player.php:3 templates/circular-spikes.php:6
|
||||
msgid "Please upload your audio files in the media library."
|
||||
msgstr ""
|
||||
|
||||
#: templates/flat-black.php:5
|
||||
msgid "Hide Playlist"
|
||||
msgstr ""
|
||||
|
||||
#: templates/flat-black.php:57
|
||||
msgid "Show Playlist"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "All in One Music Player"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Easily embed your favourite music player in your website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sanjeev Aryal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.sanjeebaryal.com.np"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,6 @@
|
||||
*** WP Davies Alpha Insights ***
|
||||
|
||||
= 2020.10.2 - version 1.0.0 =
|
||||
* Initial release
|
||||
|
||||
// Fix, Tweak, Feature, Update, Add, Remove
|
||||
@@ -0,0 +1,281 @@
|
||||
# Copyright (C) 2021 Ali Ali
|
||||
# This file is distributed under the same license as the Alpha Price Table For Elementor plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Alpha Price Table For Elementor 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/alpha-price-table-for-elementor\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-06-05T02:56:49+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: alpha-pricetable-for-elementor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Alpha Price Table For Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Premium Price Table for wordpress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ali Ali"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/Ali-A-Ali"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-pricetable.php:87
|
||||
msgid "%1$sAlpha Price Table for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be active. Please activate Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-pricetable.php:88
|
||||
msgid "Activate Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-pricetable.php:95
|
||||
msgid "%1$sAlpha Price Table for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be installed and activated. Please install Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-pricetable.php:96
|
||||
msgid "Install Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#: include/alpha-pricetable.php:110
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-pricetable.php:111
|
||||
msgid "Alpha Price Table for Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-pricetable.php:112
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Required PHP version
|
||||
#: include/alpha-pricetable.php:126
|
||||
msgid "\"%1$s\" requires PHP version %2$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-pricetable.php:127
|
||||
#: include/alpha_price_table.php:21
|
||||
msgid "Alpha Price Table"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:36
|
||||
#: include/alpha_price_table.php:227
|
||||
msgid "Header"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:43
|
||||
#: include/alpha_price_table.php:263
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:45
|
||||
msgid "Enter your title"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:52
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:57
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:61
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:65
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:78
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:80
|
||||
msgid "Enter your description"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:87
|
||||
msgid "Heading Tag"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:105
|
||||
#: include/alpha_price_table.php:323
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:114
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:116
|
||||
msgid "List Item"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:128
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:138
|
||||
msgid "Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:150
|
||||
msgid "Icon Position"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:154
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:155
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:170
|
||||
msgid "List Item #1"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:175
|
||||
msgid "List Item #2"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:180
|
||||
msgid "List Item #3"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:194
|
||||
#: include/alpha_price_table.php:400
|
||||
msgid "Footer"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:201
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:203
|
||||
msgid "Click Here"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:210
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:212
|
||||
msgid "https://your-link.com"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:236
|
||||
#: include/alpha_price_table.php:332
|
||||
#: include/alpha_price_table.php:409
|
||||
#: include/alpha_price_table.php:502
|
||||
#: include/alpha_price_table.php:587
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:251
|
||||
#: include/alpha_price_table.php:344
|
||||
#: include/alpha_price_table.php:420
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:272
|
||||
#: include/alpha_price_table.php:301
|
||||
#: include/alpha_price_table.php:356
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:292
|
||||
msgid "Sub Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:381
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:432
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:444
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:448
|
||||
msgid "Extra Small"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:449
|
||||
msgid "Small"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:450
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:451
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:452
|
||||
msgid "Extra Large"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:465
|
||||
msgid "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:475
|
||||
#: include/alpha_price_table.php:573
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:531
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:546
|
||||
msgid "Text Padding"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:563
|
||||
msgid "Hover"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:601
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:615
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:632
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:641
|
||||
msgid "Overflow"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:645
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_price_table.php:646
|
||||
msgid "Visible"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,222 @@
|
||||
# Copyright (C) 2021 Ali Ali
|
||||
# This file is distributed under the same license as the Alpha Single Product For Elementor plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Alpha Single Product For Elementor 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/alpha-single-product-for-elementor\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-06-09T04:33:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: alpha-single-product-for-elementor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Alpha Single Product For Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Single WooCommerce Product Widget Addon For Elementor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ali Ali"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/Ali-A-Ali"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:80
|
||||
#: include/alpha_sp_product.php:463
|
||||
msgid "Go to cart"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-sp.php:109
|
||||
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be active. Please activate Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:110
|
||||
msgid "Activate Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-sp.php:117
|
||||
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin to be installed and activated. Please install Elementor to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:118
|
||||
msgid "Install Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-sp.php:137
|
||||
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"WooCommerce\"%2$s plugin to be active. Please activate WooCommerce to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:138
|
||||
msgid "Activate WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Just text decoration 2: Just text decoration
|
||||
#: include/alpha-sp.php:145
|
||||
msgid "%1$sAlpha Single Product Widget for Elementor%2$s requires %1$s\"WooCommerce\"%2$s plugin to be installed and activated. Please install WooCommerce to continue."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:146
|
||||
msgid "Install WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#: include/alpha-sp.php:160
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:161
|
||||
msgid "Alpha Single Product Widget for Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:162
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Required PHP version
|
||||
#: include/alpha-sp.php:176
|
||||
msgid "\"%1$s\" requires PHP version %2$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha-sp.php:177
|
||||
msgid "Alpha Single Product Widget"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:20
|
||||
msgid "Alpha SP Widget"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:36
|
||||
msgid "Query Settings"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:43
|
||||
msgid "Select Product"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:57
|
||||
msgid "Product Settings"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:63
|
||||
msgid "Hide Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:74
|
||||
msgid "Hide Price"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:85
|
||||
msgid "Action Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:87
|
||||
msgid "ADD TO CART"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:94
|
||||
msgid "Add CSS Class"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:102
|
||||
msgid "Product Image Size"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:111
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:122
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:136
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:144
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:156
|
||||
#: include/alpha_sp_product.php:211
|
||||
#: include/alpha_sp_product.php:254
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:169
|
||||
msgid "Product Title"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:187
|
||||
msgid "Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:199
|
||||
msgid "Title Hover Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:224
|
||||
msgid "Product Price"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:233
|
||||
msgid "Price Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:269
|
||||
msgid "Action Button Style"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:277
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:291
|
||||
msgid "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:298
|
||||
#: include/alpha_sp_product.php:387
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:319
|
||||
#: include/alpha_sp_product.php:398
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:342
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:354
|
||||
msgid "Button Padding"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:366
|
||||
msgid "Button Margin"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:380
|
||||
msgid "Hover"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:409
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: include/alpha_sp_product.php:431
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/api-cache-pro/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/api-cache-pro/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "api-cache-pro",
|
||||
"version": "0.0.3",
|
||||
"description": "A simple plugin to cache WP Rest API Requests.",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/hubbardlabs/api-cache-pro.git"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/hubbardlabs/api-cache-pro/issues"
|
||||
},
|
||||
"homepage": "https://github.com/hubbardlabs/api-cache-pro#readme"
|
||||
}
|
||||
@@ -0,0 +1,345 @@
|
||||
# Copyright (C) 2021 aThemes
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: aThemes Blocks 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/athemes-blocks\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-07-23T15:39:37+00:00\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: athemes-blocks\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "aThemes Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "aThemes Blocks is a Gutenberg plugin extending the WordPress editor with awesome blocks."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "aThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://athemes.com"
|
||||
msgstr ""
|
||||
|
||||
#: athemes-blocks.php:36
|
||||
msgid "aThemes Blocks plugin requires PHP version %s+. Please update your server PHP version to get the plugin working."
|
||||
msgstr ""
|
||||
|
||||
#: athemes-blocks.php:46
|
||||
msgid "aThemes Blocks plugin requires WordPress version %s+. Please update the WordPress version to get the plugin working."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:25
|
||||
msgid "Container Block"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:27
|
||||
msgid "A style wrapper to combine different blocks in a single row."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:30
|
||||
msgid "wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:31
|
||||
msgid "athemes"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:32
|
||||
msgid "container"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:33
|
||||
msgid "section"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:46
|
||||
msgid "Lorem ipsum dolor"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/index.js:53
|
||||
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam id tempus metus. Donec vestibulum, purus at eleifend maximus."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:107
|
||||
#: src/components/global-advanced-controls/index.js:29
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:115
|
||||
#: src/block/container/edit.js:123
|
||||
#: src/block/container/edit.js:131
|
||||
msgid "Content Width"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:140
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:152
|
||||
msgid "Moves the block to backward or forward"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:154
|
||||
msgid "Z-index"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:167
|
||||
msgid "Content Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:262
|
||||
msgid "Spacing"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:271
|
||||
msgid "Paddings"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/container/edit.js:450
|
||||
msgid "Margins"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/panel-tabs-buttons/index.js:25
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/panel-tabs-buttons/index.js:31
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/panel-tabs-buttons/index.js:37
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/responsive-controls/index.js:141
|
||||
msgid "Units"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/responsive-controls/index.js:155
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/advanced-control/index.js:28
|
||||
msgid "Element ID"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:36
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:42
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:48
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:54
|
||||
msgid "Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:60
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:65
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:73
|
||||
msgid "Gradient Color #1"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:78
|
||||
msgid "Gradient Color #2"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:83
|
||||
msgid "Degree"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:92
|
||||
msgid "Color #1 position"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:101
|
||||
msgid "Color #2 position"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:127
|
||||
#: src/components/background-control/index.js:134
|
||||
msgid "Select a image"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:134
|
||||
msgid "Replace image"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:150
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:157
|
||||
msgid "Background Size"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:161
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:162
|
||||
msgid "Contain"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:163
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:167
|
||||
msgid "Background Position"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:171
|
||||
msgid "Top left"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:172
|
||||
msgid "Top center"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:173
|
||||
msgid "Top right"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:174
|
||||
msgid "Center left"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:175
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:176
|
||||
msgid "Center right"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:177
|
||||
msgid "Bottom left"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:178
|
||||
msgid "Bottom center"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:179
|
||||
msgid "Bottom right"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:183
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:187
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:188
|
||||
msgid "Scroll"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:192
|
||||
msgid "Background Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:196
|
||||
msgid "No repeat"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:197
|
||||
msgid "Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:198
|
||||
msgid "Repeat X"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:199
|
||||
msgid "Repeat Y"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:200
|
||||
msgid "Round"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/components/background-control/index.js:201
|
||||
msgid "Space"
|
||||
msgstr ""
|
||||
272
spec/fixtures/dynamic_finders/plugin_version/autodate/translation_file/languages/default.pot
vendored
Normal file
272
spec/fixtures/dynamic_finders/plugin_version/autodate/translation_file/languages/default.pot
vendored
Normal file
@@ -0,0 +1,272 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Autodate (Wordpress plugin) 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/autodate\n"
|
||||
"POT-Creation-Date: 2021-05-02 11:00+0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Sergei Sahapov <s.sahapov@hotmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin allows you to add dates to your site that will update automatically according to the interval you specify"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: ../php_inc/autodate.php:60
|
||||
#, php-format
|
||||
msgid "Autodate"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:60 ../php_inc/autodate.php:362
|
||||
#, php-format
|
||||
msgid "Autodate management"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:87
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error occurred while transferring data.\n"
|
||||
" Refresh the Autodate page and try changing the data again"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:96
|
||||
#, php-format
|
||||
msgid "Failed to update data for field *Short description*"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:102
|
||||
#, php-format
|
||||
msgid "Failed to update data for field *When to update the date*"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:108
|
||||
#, php-format
|
||||
msgid "Failed to update data for field *Update frequency*"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:114
|
||||
#, php-format
|
||||
msgid "Failed to update data for field *Displayed date*"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:120
|
||||
#, php-format
|
||||
msgid "Failed to update data for field *How much to shift the date*"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:126
|
||||
#, php-format
|
||||
msgid "Failed to update the state of switch *Switched on/Switched off*"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:206
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error occured while saving your changes.\n"
|
||||
" Refresh the plugin page"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:209
|
||||
#, php-format
|
||||
msgid "New date information has been saved"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:213 ../php_inc/autodate.php:218
|
||||
#, php-format
|
||||
msgid "Data changes saved"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:221
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error occurred while saving data.\n"
|
||||
" Refresh the Autodate page and try changing the data again"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Switched on"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Switched off"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Delete this data"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Are you sure you want to delete this data?"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Data has not been deleted!\\n Refresh the Autodate page and try again"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Data deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:357
|
||||
#, php-format
|
||||
msgid "Want to add new data?"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:362
|
||||
#, php-format
|
||||
msgid "On this plugin page you can: manage automatically updated dates, create new ones, delete existing ones"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:373
|
||||
#, php-format
|
||||
msgid "Autodate usage hint"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:376
|
||||
#, php-format
|
||||
msgid "How to use Autodate"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:379
|
||||
#, php-format
|
||||
msgid "To use the plugin, you need to take a few steps:"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:381
|
||||
#, php-format
|
||||
msgid "Create new date (button <strong>Add date</strong>)"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:382
|
||||
#, php-format
|
||||
msgid "Customize the date:"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:384
|
||||
#, php-format
|
||||
msgid "Specify the value of the <strong>Displayed date</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:385
|
||||
#, php-format
|
||||
msgid "Specify the value of the <strong>How much to shift the date</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:386
|
||||
#, php-format
|
||||
msgid "Specify the value of the <strong>When to update the date</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:387
|
||||
#, php-format
|
||||
msgid "Specify the value of the <strong>Update frequency</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:388
|
||||
#, php-format
|
||||
msgid "For further convenience of editing the date, it is recommended to specify a value for the <strong>short description</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:391
|
||||
#, php-format
|
||||
msgid "Switch on date (<strong>Switched on/Switched off</strong>)<br><em>Please note that if the target date is <strong>switched off</strong>, then it will not be displayed on the site, BUT it will be updated in accordance with the specified settings.</em>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:392
|
||||
#, php-format
|
||||
msgid "Save the date (button <strong>Save changes</strong>)"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:393
|
||||
#, php-format
|
||||
msgid "Copy the generated <strong>shortcode</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:394
|
||||
#, php-format
|
||||
msgid "Add <strong>shortcode</strong> to post or page content<br><em>Please note that the date will be displayed in the format specified in your Wordpress settings ( <strong>Settings</strong> --> <strong>General</strong> --> item <strong>Date format</strong> )</em><br>P.S. Please note that the <strong style='color: #f00;'>Autodate only works with the date</strong>, data that determine the time (hours, minutes, seconds) are not taken into account."
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:396
|
||||
#, php-format
|
||||
msgid "You can also:"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:398
|
||||
#, php-format
|
||||
msgid "Delete previously created dates (red button <strong>X</strong>)"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:399
|
||||
#, php-format
|
||||
msgid "Edit settings of previously created dates (Remember to save your changes - button <strong>Save changes</strong>)"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:410 ../php_inc/autodate.php:413
|
||||
#, php-format
|
||||
msgid "How to manage date settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:416
|
||||
#, php-format
|
||||
msgid "Let's say the Autodate settings fields contain the following values:"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:416
|
||||
#, php-format
|
||||
msgid "<strong>Displayed date:</strong> 15.01.2021"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:416
|
||||
#, php-format
|
||||
msgid "How much to shift the date"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:416
|
||||
#, php-format
|
||||
msgid "<strong>When to update the date:</strong> 13.01.2021"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:416
|
||||
#, php-format
|
||||
msgid "Update frequency"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:416
|
||||
#, php-format
|
||||
msgid "This means that until <strong>13.01.2021</strong> the website will display the date <strong>15.01.2021</strong>.<br>From <strong>13.01.2021</strong> to <strong>22.01.2021</strong> <em>(13.01 + 10 is the date of the next update)</em> the date on the website will be as follows: <strong>25.01.2021</strong> <em>(15.01 + 10 is the date shift)</em>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:424
|
||||
#, php-format
|
||||
msgid "<th>Switch on/Switch off </th><th>Shortcode</th><th>Short description</th><th>Displayed date</th><th>How much to shift the date</th><th>When to update the date</th><th>Update frequency</th>"
|
||||
msgstr ""
|
||||
|
||||
#: ../php_inc/autodate.php:424
|
||||
#, php-format
|
||||
msgid "Add date"
|
||||
msgstr ""
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/bankval/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/bankval/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
== Changelog ==
|
||||
= 1.0.1 =
|
||||
fixed bug in the validate_account function that caused an incorrect response when a valid uname and invalid pin were passed in
|
||||
|
||||
= 1.0.0 =
|
||||
initial release
|
||||
47002
spec/fixtures/dynamic_finders/plugin_version/beautiful-image-card/composer_file/package-lock.json
generated
vendored
Normal file
47002
spec/fixtures/dynamic_finders/plugin_version/beautiful-image-card/composer_file/package-lock.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,167 @@
|
||||
# Copyright (C) 2021 Nguyen Pham
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/best-suggestion-boxes"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.0\n"
|
||||
"Project-Id-Version: Best Suggestion Boxes 1.0.0\n"
|
||||
"Language-Team: \n"
|
||||
"Language: en_US\n"
|
||||
"X-Poedit-KeywordsList: _e;__\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Best Suggestion Boxes
|
||||
#: admin/class-admin.php:285
|
||||
msgid "Best Suggestion Boxes"
|
||||
msgstr ""
|
||||
|
||||
#. A Better Way to Connect With Customers. You don't have time to talk with some online customers? This plugin will help you connect with them.
|
||||
#: admin/class-admin.php:286
|
||||
msgid "A Better Way to Connect With Customers. You don't have time to talk with some online customers? This plugin will help you connect with them."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nguyen Pham"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:60 admin/class-admin.php:216 admin/class-admin.php:221
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:198
|
||||
msgid "Suggestion"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:201 admin/partials/admin-display.php:21
|
||||
msgid "Add New Screen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:202 admin/partials/admin-display.php:22
|
||||
msgid "Add New Suggest"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:222 admin/class-admin.php:289
|
||||
msgid "Copyright"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:237
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:239
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:240
|
||||
msgid "Chat with us!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:243
|
||||
msgid "Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:247
|
||||
msgid "Style color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:250
|
||||
msgid "Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:253
|
||||
msgid "Title Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:256
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:259
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:261
|
||||
msgid "Bottom Right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:262
|
||||
msgid "Bottom Left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:263
|
||||
msgid "Top Right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:264
|
||||
msgid "Top Left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:268
|
||||
msgid "Padding X"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:271
|
||||
msgid "Padding Y"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:282 admin/class-admin.php:291
|
||||
msgid "Section Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin.php:294
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/admin-display.php:18
|
||||
msgid "Screens and Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/admin-display.php:44 admin/partials/admin-display.php:63
|
||||
#: admin/partials/admin-display.php:70
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/admin-display.php:45 admin/partials/admin-display.php:64
|
||||
#: admin/partials/admin-display.php:70 admin/partials/screen.php:47
|
||||
#: admin/partials/suggest.php:71
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/admin-display.php:61
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/admin-display.php:62
|
||||
msgid "Go to"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/screen.php:27
|
||||
msgid "Screen's name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/screen.php:42
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/screen.php:47 admin/partials/suggest.php:71
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/suggest.php:28 admin/partials/suggest.php:62
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/suggest.php:43
|
||||
msgid "Screen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/suggest.php:52
|
||||
msgid "Click go to screen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/suggest.php:54
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/blocks-for-wp-editor/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/blocks-for-wp-editor/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 - 2021-06-17 =
|
||||
* Initial Release
|
||||
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/bulk-plugin-toggle/change_log/CHANGELOG.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/bulk-plugin-toggle/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.1 _(2021-07-13)_
|
||||
* Change: Note compatibility through WP 5.7+
|
||||
* Change: Add a tad more to the plugin's longer description
|
||||
* Change: Update copyright date (2021)
|
||||
* Change: Trivial code tweaks
|
||||
* Change: Fix typo in inline parameter documentation
|
||||
* Change: Unit tests: Move `phpunit/` into `tests/`
|
||||
|
||||
## 1.0 _(2020-08-07)_
|
||||
* Initial public release.
|
||||
@@ -0,0 +1,2 @@
|
||||
/** 1.0.0 - 2021.07.23 **/
|
||||
~ The first released.
|
||||
@@ -0,0 +1,339 @@
|
||||
# Copyright (C) 2021 Vinny Alves
|
||||
# This file is distributed under the same license as the UseStrict's Calendly Embedder plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: UseStrict's Calendly Embedder 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cal-embedder-lite\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-08-22T01:24:35+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: cal-embedder-lite\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "UseStrict's Calendly Embedder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://usestrict.net/cal-embedder-pro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple embedding for Calendly (and soon various other calendar services)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Vinny Alves"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://usestrict.consulting"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:9
|
||||
msgid "Refresh URLs"
|
||||
msgstr ""
|
||||
|
||||
#. translators: the plugin version
|
||||
#: admin-settings.tmpl.php:23
|
||||
msgid "UseStrict's Calendly Embedder (v%s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:26
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:31
|
||||
msgid "Please enter your Calendly API key below and click \"Connect\". This will help us get your Event Types from Calendly and display them in the shortcode builder."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:33
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:37
|
||||
msgid "Your Calendly API Key."
|
||||
msgstr ""
|
||||
|
||||
#. translators: link to calendly integrations
|
||||
#: admin-settings.tmpl.php:48
|
||||
msgid "You can find it <a href=\"%s\" target=\"_blank\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:70
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:90
|
||||
msgid "Shortcode Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:96
|
||||
msgid "Required Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:100
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:128
|
||||
msgid "Embed Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:131
|
||||
msgid "Inline"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:132
|
||||
msgid "Pop-up Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:133
|
||||
msgid "Pop-up Widget"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:140
|
||||
msgid "Widget Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:145
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:147
|
||||
#: cal-embedder-lite.php:235
|
||||
#: cal-embedder-lite.php:336
|
||||
msgid "Schedule time with me"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:152
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:159
|
||||
#: admin-settings.tmpl.php:243
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:166
|
||||
msgid "Include Branding"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:176
|
||||
msgid "Booking Page Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:181
|
||||
msgid "Prefill User Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:186
|
||||
msgid "Allow Query Strings"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:191
|
||||
msgid "Min. Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:196
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:201
|
||||
msgid "Extra Classes"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:206
|
||||
msgid "Extra Styles"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d is the number of the custom answer
|
||||
#: admin-settings.tmpl.php:214
|
||||
msgid "Custom Answer %d"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:221
|
||||
msgid "Hide GDPR Banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:226
|
||||
msgid "Hide Landing Page Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:231
|
||||
msgid "Hide Event Type Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:236
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:250
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:260
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:262
|
||||
msgid "Click to Copy."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:263
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:264
|
||||
msgid "Click to copy."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:267
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:268
|
||||
msgid "Select the options and then click the \"copy\" link to copy the shortcode into the clipboard. Then paste it in the post/page where you want the Calendly widget to appear."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:269
|
||||
msgid "Required Fields:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:272
|
||||
msgid "URL:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:273
|
||||
msgid "This is the URL that is passed to the Calendly widget. Choose the \"Profile\" URL to display all of your Event Types."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:276
|
||||
msgid "Embed Type:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: link to Calendly help
|
||||
#: admin-settings.tmpl.php:279
|
||||
msgid "See <a href=\"%s\" target=\"_blank\">this</a> for information on each type."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:284
|
||||
msgid "Booking Page Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:287
|
||||
msgid "Prefill User Info:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:288
|
||||
msgid "Turn this on if you want to pre-populate the booking form with the logged-in user's Name, First and Last Name, and Email, depending on your form fields."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:291
|
||||
msgid "Allow Query Strings:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:292
|
||||
msgid "Whether to allow Calendly to fetch information from the page URL. If the user is logged in, the Prefill information will take precedence."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:295
|
||||
msgid "Min. Width and Height:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:296
|
||||
msgid "Adjust dimensions of the iframe that Calendly creates."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:299
|
||||
msgid "Custom Answers 1 to 10:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Calendly help URL
|
||||
#: admin-settings.tmpl.php:302
|
||||
msgid "Calendly allows for up to 10 extra fields of various types. They explain the values you can enter <a href=\"%s\" target=\"_blank\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Link to plugin author site
|
||||
#: admin-settings.tmpl.php:311
|
||||
msgid "For more powerful control of your widgets, check out our Calendly Embedder Pro plugin over at <a href=\"%s\">UseStrict Consulting</a>."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:314
|
||||
msgid "Features include:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:316
|
||||
msgid "Save your shortcodes in the shortcode library for ease of use."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:317
|
||||
msgid "Embed using a Gutenberg block."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:318
|
||||
msgid "Embed using an Elementor widget."
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:319
|
||||
msgid "Setting Google Analytics variables (Campaign, Source, Medium, Content and Term)"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:320
|
||||
msgid "Track interaction such as:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:322
|
||||
msgid "Profile page was viewed"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:323
|
||||
msgid "Event type page was viewed"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:324
|
||||
msgid "Invitee selected date and time"
|
||||
msgstr ""
|
||||
|
||||
#: admin-settings.tmpl.php:325
|
||||
msgid "Invitee successfully booked a meeting"
|
||||
msgstr ""
|
||||
|
||||
#: cal-embedder-lite.php:182
|
||||
msgid "You MUST provide a URL for the Calendly shortcode"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: the type of shortcode 2: the widget type
|
||||
#: cal-embedder-lite.php:195
|
||||
msgid "I do not know how to handle these attributes. type: \"%1$s\", widget: \"%2$s\""
|
||||
msgstr ""
|
||||
|
||||
#: cal-embedder-lite.php:550
|
||||
msgid "Missing or bad nonce"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: the Calendly account holder's name
|
||||
#: cal-embedder-lite.php:642
|
||||
msgid "Profile (%1$s)"
|
||||
msgstr ""
|
||||
|
||||
#: cal-embedder-lite.php:680
|
||||
msgid "The API Key is required"
|
||||
msgstr ""
|
||||
|
||||
#: cal-embedder-lite.php:687
|
||||
msgid "Disconnected!"
|
||||
msgstr ""
|
||||
|
||||
#: cal-embedder-lite.php:691
|
||||
msgid "Refreshed!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: the URL of the settings page
|
||||
#: cal-embedder-lite.php:710
|
||||
msgid "<a href=\"%s\">Settings</a>"
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/candescent/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/candescent/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "candescent",
|
||||
"version": "1.0.0",
|
||||
"description": "Accessibility Guidance Tool",
|
||||
"author": "Ignition72",
|
||||
"license": "GPL-2.0",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"check-licenses": "wp-scripts build & wp-scripts check-licenses --prod --gpl2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"tinycolor2": "^1.4.1"
|
||||
}
|
||||
}
|
||||
33
spec/fixtures/dynamic_finders/plugin_version/centrobill-payment-gateway/change_log/changelog.txt
vendored
Normal file
33
spec/fixtures/dynamic_finders/plugin_version/centrobill-payment-gateway/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 2.0.4 - 2021-06-14 =
|
||||
* Update - readme.txt
|
||||
* Add - changelog.txt
|
||||
|
||||
= 2.0.3 - 2021-06-09 =
|
||||
* Fix - Renaming gateway ID from `centrobill_cc` to `centrobill`
|
||||
* Fix - Substring SKU title (max length - 64 chars)
|
||||
|
||||
= 2.0.2 - 2021-04-29 =
|
||||
* Add - Enable/disable cardholder name field on checkout form
|
||||
|
||||
= 2.0.1 - 2021-04-26 =
|
||||
* Add - Collect browser info to payment requests (for 3DS payments)
|
||||
* Add - Hook `woocommerce_create_order`
|
||||
* Add - Hook `woocommerce_before_thankyou`
|
||||
|
||||
= 2.0.0 - 2021-04-19 =
|
||||
* Tweak - Refactored code base
|
||||
* Add - Credit Card form
|
||||
* Add - Bancontact
|
||||
* Add - EPS
|
||||
* Add - Giropay
|
||||
* Add - iDeal
|
||||
* Add - MyBank
|
||||
* Add - Online Banking
|
||||
* Add - Przelewy24
|
||||
* Add - SEPA Direct Debit
|
||||
* Add - SOFORT Banking
|
||||
|
||||
= 1.0.0 - 2018-01-11 =
|
||||
* First Release
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "checkout-field-customizer",
|
||||
"version": "1.0.0",
|
||||
"description": "Woocommerce Checkout Field Customizer",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"axios": "^0.21.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"laravel-mix": "^6.0.25",
|
||||
"qs": "^6.9.4",
|
||||
"resolve-url-loader": "^4.0.0",
|
||||
"sass": "^1.30.0",
|
||||
"sass-loader": "^8.0.2",
|
||||
"vue": "^2.6.12",
|
||||
"vue-loader": "^15.9.7",
|
||||
"vue-template-compiler": "^2.6.12"
|
||||
},
|
||||
"dependencies": {
|
||||
"vue-js-modal": "^2.0.0-rc.6",
|
||||
"vue-sweetalert2": "^4.2.0",
|
||||
"vuedraggable": "^2.24.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,740 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cocoon Scenery Color v1.0.0\n"
|
||||
"POT-Creation-Date: 2021-06-21 20:07+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: lacaraterra.site<https://lacaraterra.site/>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-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;_e_my;__my;my_generate_tips_tag;translateText\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 3.0\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: languages\n"
|
||||
"X-Poedit-SearchPathExcluded-1: options\n"
|
||||
|
||||
#: cocoon-scenery-color.php:142 cocoon-scenery-color.php:360
|
||||
msgid "カラー設定"
|
||||
msgstr "Color setting"
|
||||
|
||||
#: cocoon-scenery-color.php:143 cocoon-scenery-color.php:343
|
||||
msgid "サイトカラー設定"
|
||||
msgstr "Site color setting"
|
||||
|
||||
#: cocoon-scenery-color.php:191 cocoon-scenery-color.php:236
|
||||
msgid "設定は保存されました。"
|
||||
msgstr "The settings have been saved."
|
||||
|
||||
#: cocoon-scenery-color.php:346
|
||||
msgid "サイトカラーの設定"
|
||||
msgstr "Site color setting"
|
||||
|
||||
#: cocoon-scenery-color.php:348
|
||||
msgid "サイトのカラーを設定します。"
|
||||
msgstr "Set the color of the site."
|
||||
|
||||
#: cocoon-scenery-color.php:363 cocoon-scenery-color.php:441
|
||||
msgid "全ての投稿、固定ページに設定したカラーが適用されます。"
|
||||
msgstr "The color set for all posts and fixed pages will be applied."
|
||||
|
||||
#: cocoon-scenery-color.php:378
|
||||
msgid "プレビュー"
|
||||
msgstr "Preview"
|
||||
|
||||
#: cocoon-scenery-color.php:380
|
||||
msgid "個別にコピーする場合は各項目をダブルクリックします。"
|
||||
msgstr "Double-click each item to copy them individually."
|
||||
|
||||
#: cocoon-scenery-color.php:380
|
||||
msgid "一括コピー →"
|
||||
msgstr "Bulk copy →"
|
||||
|
||||
#: cocoon-scenery-color.php:382 cocoon-scenery-color.php:461
|
||||
msgid "カラーの作成"
|
||||
msgstr "Color creation"
|
||||
|
||||
#: cocoon-scenery-color.php:386
|
||||
msgid "ダブルクリックで右側へコピーします。"
|
||||
msgstr "Double-click to copy to the right."
|
||||
|
||||
#: cocoon-scenery-color.php:436
|
||||
msgid "カラーを選択してください"
|
||||
msgstr "Please select a color"
|
||||
|
||||
#: cocoon-scenery-color.php:440
|
||||
msgid "サイトカラーの変更"
|
||||
msgstr "Change site color"
|
||||
|
||||
#: cocoon-scenery-color.php:440
|
||||
msgid "サイトのカラーを変更します。"
|
||||
msgstr "Change the color of the site."
|
||||
|
||||
#: cocoon-scenery-color.php:445 cocoon-scenery-color.php:447
|
||||
msgid "カラー作成後にサイトカラーの変更も行います。"
|
||||
msgstr "You can also change the site color after creating the color."
|
||||
|
||||
#: cocoon-scenery-color.php:446
|
||||
msgid "サイトカラーの変更も行う"
|
||||
msgstr "Also change the site color"
|
||||
|
||||
#: cocoon-scenery-color.php:455
|
||||
msgid "カラーの削除"
|
||||
msgstr "Delete color"
|
||||
|
||||
#: cocoon-scenery-color.php:455 cocoon-scenery-color.php:456
|
||||
msgid "カラーを削除します。"
|
||||
msgstr "Delete the color."
|
||||
|
||||
#: cocoon-scenery-color.php:461 cocoon-scenery-color.php:462
|
||||
msgid "新しいカラーファイルを作成するか、既存のファイルを変更します。"
|
||||
msgstr "Create a new color file or modify an existing file."
|
||||
|
||||
#: select-color.js:49
|
||||
msgid "プレビュー画像がありません"
|
||||
msgstr "No preview image"
|
||||
|
||||
#: select-color.js:115
|
||||
msgid "[カラーの名称]:ファイル名に指定できない文字が含まれています。"
|
||||
msgstr "'Color name': The file name contains characters that cannot be specified."
|
||||
|
||||
#: select-color.js:144
|
||||
msgid "[カラーの名称]:カラーの原本は変更できません。名称を変更し新たなカラーとして作成してください。"
|
||||
msgstr "'Color name': The original color cannot be changed.Please change the name and create it as a new color."
|
||||
|
||||
msgid "クリックでカラーパレットを表示します。"
|
||||
msgstr "Click to display the color palette."
|
||||
|
||||
msgid "カラーの説明"
|
||||
msgstr "Color description"
|
||||
|
||||
msgid "カラーの名称(ファイル名)"
|
||||
msgstr "Color name (file name)"
|
||||
|
||||
msgid "サイトキーカラー"
|
||||
msgstr "Site key color"
|
||||
|
||||
msgid "サイトキーテキストカラー"
|
||||
msgstr "Site key text color"
|
||||
|
||||
msgid "サイト選択文字色"
|
||||
msgstr "Site selection text color"
|
||||
|
||||
msgid "サイト内のテキストを選択した際の文字色を指定します。"
|
||||
msgstr "Specifies the text color when selecting text on the site."
|
||||
|
||||
msgid "サイト選択文字背景色"
|
||||
msgstr "Site selection text background color"
|
||||
|
||||
msgid "サイト内のテキストを選択した際の背景色を指定します。"
|
||||
msgstr "Specifies the background color when selecting text on the site."
|
||||
|
||||
msgid "サイトフォント"
|
||||
msgstr "Site font"
|
||||
|
||||
msgid "ヒラギノ角ゴ, メイリオ"
|
||||
msgstr "Hiragino Kakugo, Meirio"
|
||||
|
||||
msgid "メイリオ, ヒラギノ角ゴ"
|
||||
msgstr "Meiryo, Hiragino Kaku Gothic Pro"
|
||||
|
||||
msgid "游ゴシック体, ヒラギノ角ゴ"
|
||||
msgstr "YuGothic, Hiragino Kaku Gothic Pro"
|
||||
|
||||
msgid "MS Pゴシック, ヒラギノ角ゴ"
|
||||
msgstr "MS P Gothic, Hiragino Kaku Gothic Pro"
|
||||
|
||||
msgid "Noto Sans JP(WEBフォント)"
|
||||
msgstr "Noto Sans JP (web font)"
|
||||
|
||||
msgid "Noto Serif JP(WEBフォント)"
|
||||
msgstr "Noto Serif JP (web font)"
|
||||
|
||||
msgid "Mplus 1p(WEBフォント)"
|
||||
msgstr "Mplus 1p (web font)"
|
||||
|
||||
msgid "Rounded Mplus 1c(WEBフォント)"
|
||||
msgstr "Rounded Mplus 1c (web font)"
|
||||
|
||||
msgid "小杉ゴシック(WEBフォント)"
|
||||
msgstr "Kosugi Gothic (web font)"
|
||||
|
||||
msgid "小杉丸ゴシック(WEBフォント)"
|
||||
msgstr "Kosugimaru Gothic (web font)"
|
||||
|
||||
msgid "さわらびゴシック(WEBフォント)"
|
||||
msgstr "Sawarabi Gothic (web font)"
|
||||
|
||||
msgid "さわらび明朝(WEBフォント)"
|
||||
msgstr "Sawarabi Mincho (web font)"
|
||||
|
||||
msgid "サイト文字サイズ"
|
||||
msgstr "Site font size"
|
||||
|
||||
msgid "サイト文字の太さ"
|
||||
msgstr "Site font weight"
|
||||
|
||||
msgid "サイト文字色"
|
||||
msgstr "Site text color"
|
||||
|
||||
msgid "サイト背景色"
|
||||
msgstr "Site background color"
|
||||
|
||||
msgid "リンク色"
|
||||
msgstr "Link color"
|
||||
|
||||
msgid "日付フォーマット"
|
||||
msgstr "Date format"
|
||||
|
||||
msgid "ヘッダーの高さ"
|
||||
msgstr "Header height"
|
||||
|
||||
msgid "ヘッダーの高さ(モバイル)"
|
||||
msgstr "Header height (mobile)"
|
||||
|
||||
msgid "ヘッダーの表示形式"
|
||||
msgstr "Header display format"
|
||||
|
||||
msgid "センターロゴ(デフォルト)"
|
||||
msgstr "Center logo (default)"
|
||||
|
||||
msgid "センターロゴ(トップメニュー)"
|
||||
msgstr "Center logo (top menu)"
|
||||
|
||||
msgid "センターロゴ(スリムメニュー)"
|
||||
msgstr "Center logo (slim menu)"
|
||||
|
||||
msgid "センターロゴ(スリムトップメニュー)"
|
||||
msgstr "Center logo (slim top menu)"
|
||||
|
||||
msgid "トップメニュー"
|
||||
msgstr "Top menu"
|
||||
|
||||
msgid "トップメニュー(右寄せ)"
|
||||
msgstr "Top menu (right-justified)"
|
||||
|
||||
msgid "トップメニュー小"
|
||||
msgstr "Top menu small"
|
||||
|
||||
msgid "トップメニュー小(右寄せ)"
|
||||
msgstr "Top menu small (right-justified)"
|
||||
|
||||
msgid "ヘッダー全体背景色"
|
||||
msgstr "Entire header color"
|
||||
|
||||
msgid "ヘッダー全体文字色"
|
||||
msgstr "Entire header text color"
|
||||
|
||||
msgid "ロゴエリア背景色"
|
||||
msgstr "Logo area background color"
|
||||
|
||||
msgid "ロゴ文字色"
|
||||
msgstr "Logo text color"
|
||||
|
||||
msgid "グローバルナビ色"
|
||||
msgstr "Global navigation color"
|
||||
|
||||
msgid "グローバルナビ文字色"
|
||||
msgstr "Global navigation text color"
|
||||
|
||||
msgid "通知エリア背景色"
|
||||
msgstr "Notification area background color"
|
||||
|
||||
msgid "通知エリア文字色"
|
||||
msgstr "Notification area text color"
|
||||
|
||||
msgid "通知タイプ"
|
||||
msgstr "Notification type"
|
||||
|
||||
msgid "通知(緑色)"
|
||||
msgstr "Notification (green)"
|
||||
|
||||
msgid "注意(黄色)"
|
||||
msgstr "Attention (yellow)"
|
||||
|
||||
msgid "警告(赤色)"
|
||||
msgstr "Warning (red)"
|
||||
|
||||
msgid "アピールエリア背景色"
|
||||
msgstr "Announcement area background color"
|
||||
|
||||
msgid "アピールエリアボタン色"
|
||||
msgstr "Announcement area button color"
|
||||
|
||||
msgid "アピールエリア表示ページ"
|
||||
msgstr "Display the announcement area"
|
||||
|
||||
msgid "表示しない"
|
||||
msgstr "Do not display"
|
||||
|
||||
msgid "全ページで表示"
|
||||
msgstr "Display on all pages"
|
||||
|
||||
msgid "フロントページのみで表示"
|
||||
msgstr "Display on the front page only"
|
||||
|
||||
msgid "投稿・固定ページ以外で表示"
|
||||
msgstr "Display on pages other than posts/pages"
|
||||
|
||||
msgid "投稿・固定ページのみで表示"
|
||||
msgstr "Display only on posts/pages"
|
||||
|
||||
msgid "投稿ページのみで表示"
|
||||
msgstr "Display on posts only"
|
||||
|
||||
msgid "固定ページのみで表示"
|
||||
msgstr "Display on pages only"
|
||||
|
||||
msgid "フッター背景色"
|
||||
msgstr "Footer background color"
|
||||
|
||||
msgid "フッター文字色"
|
||||
msgstr "Footer text color"
|
||||
|
||||
msgid "フッター表示タイプ"
|
||||
msgstr "Footer display type"
|
||||
|
||||
msgid "ロゴ&メニュー&クレジット"
|
||||
msgstr "Logos & Menus & Credits"
|
||||
|
||||
msgid "メニュー&クレジット(左右)"
|
||||
msgstr "Menus & Credits (Left and Right)"
|
||||
|
||||
msgid "メニュー&クレジット(中央揃え)"
|
||||
msgstr "Menus & Credits (Center)"
|
||||
|
||||
msgid "ブロックエディター拡張色A"
|
||||
msgstr "Block editor extended color A"
|
||||
|
||||
msgid "ブロックエディター拡張色B"
|
||||
msgstr "Block editor extended color B"
|
||||
|
||||
msgid "ブロックエディター拡張色C"
|
||||
msgstr "Block editor extended color C"
|
||||
|
||||
msgid "ブロックエディター拡張色D"
|
||||
msgstr "Block editor extended color D"
|
||||
|
||||
msgid "ブロックエディター拡張色E"
|
||||
msgstr "Block editor extended color E"
|
||||
|
||||
msgid "ブロックエディター拡張色F"
|
||||
msgstr "Block editor extended color F"
|
||||
|
||||
msgid "エディター背景色"
|
||||
msgstr "Editor background color"
|
||||
|
||||
msgid "エディターの背景色を指定します。"
|
||||
msgstr "Specifies the background color of the editor."
|
||||
|
||||
msgid "エディターテキスト色"
|
||||
msgstr "Editor text color"
|
||||
|
||||
msgid "エディターのテキスト色を指定します。"
|
||||
msgstr "Specifies the text color of the editor."
|
||||
|
||||
msgid "コンテンツ枠線色"
|
||||
msgstr "Content border color"
|
||||
|
||||
msgid "メインカラムのボーダー色を指定します。未入力でデフォルトの透過色になります。"
|
||||
msgstr "Specifies the border color of the main column. If left blank, transparent color is used by default."
|
||||
|
||||
msgid "サイドバー枠線色"
|
||||
msgstr "Sidebar border color"
|
||||
|
||||
msgid "サイドバーのボーダー色を指定します。未入力でデフォルトの透過色になります。"
|
||||
msgstr "Specifies the border color of the side bar. If left blank, transparent color is used by default."
|
||||
|
||||
msgid "コメント入力案内メッセージ"
|
||||
msgstr "Comment input guidance message"
|
||||
|
||||
msgid "キャッチフレーズの配置"
|
||||
msgstr "Tagline placement"
|
||||
|
||||
msgid "ヘッダートップ(デフォルト)"
|
||||
msgstr "Header top (default)"
|
||||
|
||||
msgid "ヘッダーボトム"
|
||||
msgstr "Header bottom"
|
||||
|
||||
msgid "サイドバーの位置"
|
||||
msgstr "Sidebar position"
|
||||
|
||||
msgid "サイドバー右"
|
||||
msgstr "Sidebar right"
|
||||
|
||||
msgid "サイドバー左"
|
||||
msgstr "Sidebar left"
|
||||
|
||||
msgid "サイドバーの表示状態"
|
||||
msgstr "Display status of the sidebar"
|
||||
|
||||
msgid "全てのページで表示"
|
||||
msgstr "Display on all pages"
|
||||
|
||||
msgid "全てのページで非表示"
|
||||
msgstr "Hide on all pages"
|
||||
|
||||
msgid "フロントページで非表示"
|
||||
msgstr "Hide on the front page"
|
||||
|
||||
msgid "インデックスページで非表示"
|
||||
msgstr "Hide on index pages"
|
||||
|
||||
msgid "固定ページで非表示"
|
||||
msgstr "Hide on pages"
|
||||
|
||||
msgid "投稿ページで非表示"
|
||||
msgstr "Hide on post pages"
|
||||
|
||||
msgid "404ページで非表示"
|
||||
msgstr "Hide on 404 pages"
|
||||
|
||||
msgid "関連記事表示タイプ"
|
||||
msgstr "Related articles display type"
|
||||
|
||||
msgid "エントリーカード(デフォルト)"
|
||||
msgstr "Entry card (default)"
|
||||
|
||||
msgid "ミニカード(推奨表示数:偶数)"
|
||||
msgstr "Mini card (recommended display count: an even number)"
|
||||
|
||||
msgid "縦型カード3列(推奨表示数:6, 12, 18...)"
|
||||
msgstr "Vertical card 3-column (recommended display count: 6, 12, 18,...)"
|
||||
|
||||
msgid "縦型カード4列(推奨表示数:4, 8, 12...)"
|
||||
msgstr "Vertical card 4-column (recommended display count: 4, 8, 12,...)"
|
||||
|
||||
msgid "関連記事表示投稿数"
|
||||
msgstr "Number of posts in related article display"
|
||||
|
||||
msgid "最小:2"
|
||||
msgstr "minimum: 2"
|
||||
|
||||
msgid "最大:30"
|
||||
msgstr "maximum: 30"
|
||||
|
||||
msgid "ページ送りナビ表示タイプ"
|
||||
msgstr "Page feed navigation display type"
|
||||
|
||||
msgid "デフォルト"
|
||||
msgstr "default"
|
||||
|
||||
msgid "サムネイル正方形"
|
||||
msgstr "Thumbnail square"
|
||||
|
||||
msgid "投稿ページパンくずリスト表示位置"
|
||||
msgstr "The breadcrumb display position for post pages"
|
||||
|
||||
msgid "メインカラム手前"
|
||||
msgstr "Above the main column"
|
||||
|
||||
msgid "メインカラムトップ"
|
||||
msgstr "Above the page/post title"
|
||||
|
||||
msgid "メインカラムボトム(デフォルト)"
|
||||
msgstr "Bottom of the main column (default)"
|
||||
|
||||
msgid "フッター手前"
|
||||
msgstr "Above the footer"
|
||||
|
||||
msgid "固定ページパンくずリスト表示位置"
|
||||
msgstr "The breadcrumb display position for pages"
|
||||
|
||||
msgid "サイト全体のポイントとなる部分に適用される背景色を指定します。"
|
||||
msgstr "Specifies the background color to be applied to the part that becomes the point of the entire site."
|
||||
|
||||
msgid "サイト全体のポイントとなる部分に適用されるテキスト色を指定します。"
|
||||
msgstr "Specifies the text color to be applied to the part that becomes the point of the entire site."
|
||||
|
||||
msgid "サイト全体に適用されるフォントを選択します。"
|
||||
msgstr "Select the font to be applied to the entire site."
|
||||
|
||||
msgid "サイト全体のフォントサイズを選択します。"
|
||||
msgstr "Change the font size of the entire site."
|
||||
|
||||
msgid "フォントの太さを選択します。"
|
||||
msgstr "Select the font weight."
|
||||
|
||||
msgid "サイト全体の文字色を指定します。"
|
||||
msgstr "Change the text color of the entire site."
|
||||
|
||||
msgid "サイト全体の背景色を指定します。"
|
||||
msgstr "Select the background color for the entire site."
|
||||
|
||||
msgid "サイトで利用されるリンク色を指定します。"
|
||||
msgstr "Select the link color to be used on the site."
|
||||
|
||||
msgid "テーマ全体に使われている日付のフォーマット形式です。"
|
||||
msgstr "Enter the date format to be used for the entire theme (initial values: Y.m.d)."
|
||||
|
||||
msgid "ヘッダーの高さをpx数で指定します。(最小:0px、最大:800px)"
|
||||
msgstr "Specifies the header height in pixels. If left blank, the default height will be used. (minimum: 0 px, maximum: 800 px)"
|
||||
|
||||
msgid "モバイルでのヘッダーの高さをpx数で指定します。(最小:0px、最大:600px)"
|
||||
msgstr "Specifies the header height for mobile devices in pixels. If left blank, the default height will be used. (minimum: 0 px, maximum: 600 px)"
|
||||
|
||||
msgid "ヘッダーの表示形式を選択します。"
|
||||
msgstr "Select the header display format."
|
||||
|
||||
msgid "ヘッダのロゴ部分やグローバルナビ全てを含めた背景色を指定します。"
|
||||
msgstr "Select the background color including for the header logo part and all global navigation."
|
||||
|
||||
msgid "ヘッダーのロゴ部分やグローバルナビ全てを含めたテキスト色を指定します。"
|
||||
msgstr "Select the text color including for the header logo part and all global navigation."
|
||||
|
||||
msgid "ヘッダーロゴエリア背景色"
|
||||
msgstr "Header logo area background color"
|
||||
|
||||
msgid "グローバルナビ上のヘッダー背景色を指定します。"
|
||||
msgstr "Select the header background color above global navigation."
|
||||
|
||||
msgid "ヘッダーロゴ文字色"
|
||||
msgstr "Header logo text color"
|
||||
|
||||
msgid "グローバルナビ上のヘッダーテキスト色を指定します。"
|
||||
msgstr "Select the text color above color navigation."
|
||||
|
||||
msgid "グローバルナビ全体の背景色を指定します。"
|
||||
msgstr "Select the background color for the entire global navigation."
|
||||
|
||||
msgid "グローバルナビ全体のテキスト色を指定します。"
|
||||
msgstr "Select the text color for the entire global navigation."
|
||||
|
||||
msgid "メッセージに対して独自の背景色を設定したい場合は色を指定してください。"
|
||||
msgstr "Select a color if you want to set your own background color for messages."
|
||||
|
||||
msgid "メッセージに対して独自のテキスト色を設定したい場合は色を指定してください。"
|
||||
msgstr "Select a color if you want to set your own text color for messages."
|
||||
|
||||
msgid "通知の種類を選択します。背景色も変わり、重要度が変わります。"
|
||||
msgstr "Select the type of notification. The background color and the importance will change."
|
||||
|
||||
msgid "アピールエリアの背景色を指定します。"
|
||||
msgstr "Set the background color of the announcement area."
|
||||
|
||||
msgid "アピールエリアのボタン全体の色を指定します。"
|
||||
msgstr "Select the color of the entire button in the announcement area."
|
||||
|
||||
msgid "アピールエリアを表示するページを選択します。"
|
||||
msgstr "Set the page for displaying the announcement area."
|
||||
|
||||
msgid "サイト下部(フッター部分)の背景色を指定します。"
|
||||
msgstr "Specifies the background color for the bottom part of the site (footer section)."
|
||||
|
||||
msgid "サイト下部(フッター部分)のテキスト色を指定します。"
|
||||
msgstr "Specifies the text color for the bottom part of the site (footer section)."
|
||||
|
||||
msgid "フッターの表示タイプを選択します。"
|
||||
msgstr "Select the footer display type."
|
||||
|
||||
msgid "トップへ戻るボタン背景色"
|
||||
msgstr "\"Back to top\" button background color"
|
||||
|
||||
msgid "トップへ戻るボタンの背景色を指定します。"
|
||||
msgstr "Sets the background color of the 'Back to top' button."
|
||||
|
||||
msgid "トップへ戻るボタン文字色"
|
||||
msgstr "\"Back to top\" button text color"
|
||||
|
||||
msgid "トップへ戻るボタンの文字色を指定します。"
|
||||
msgstr "Sets the text color of the 'Back to top' button."
|
||||
|
||||
msgid "ブロックエディターのカラーパレットに色を追加できます。"
|
||||
msgstr "You can add colors to the block editor's color palette."
|
||||
|
||||
msgid "コメント入力フォームの上に表示する案内メッセージです。"
|
||||
msgstr "Enter a guidance message to be displayed on the comment input form."
|
||||
|
||||
msgid "キャッチフレーズの表示位置を選択します。※[ヘッダーの表示形式]が「センターロゴ」の場合に有効となります。"
|
||||
msgstr "Sets the display position of a tagline. *When 'Header layout' is set to 'Center logo'."
|
||||
|
||||
msgid "サイドバーの表示位置を選択します。"
|
||||
msgstr "Select the display position of the sidebar."
|
||||
|
||||
msgid "サイドバーを表示するページの設定です。"
|
||||
msgstr "This is the setting of pages on which the sidebar will be displayed."
|
||||
|
||||
msgid "カテゴリ・タグ表示"
|
||||
msgstr "Category and tag display"
|
||||
|
||||
msgid "カテゴリとタグの表示を制御します。"
|
||||
msgstr "Control the display of categories and tags."
|
||||
|
||||
msgid "カテゴリ・タグ2列"
|
||||
msgstr "Categories/tags 2-column"
|
||||
|
||||
msgid "カテゴリ・タグ1列"
|
||||
msgstr "Categories/tags 1-column"
|
||||
|
||||
msgid "カテゴリのみ"
|
||||
msgstr "Categories only"
|
||||
|
||||
msgid "タグのみ"
|
||||
msgstr "Tags only"
|
||||
|
||||
msgid "カテゴリもタグも表示しない"
|
||||
msgstr "Do not display categories or tags"
|
||||
|
||||
msgid "カテゴリ・タグ表示位置"
|
||||
msgstr "Category and tag display position"
|
||||
|
||||
msgid "カテゴリとタグの表示位置を選択します。"
|
||||
msgstr "Sets the display position of categories and tags."
|
||||
|
||||
msgid "タイトル上"
|
||||
msgstr "Above title"
|
||||
|
||||
msgid "本文上"
|
||||
msgstr "Content top"
|
||||
|
||||
msgid "本文下(デフォルト)"
|
||||
msgstr "Content bottom (default)"
|
||||
|
||||
msgid "関連記事の表示タイプを選択します。"
|
||||
msgstr "Select the display type of related articles."
|
||||
|
||||
msgid "関連記事で表示する投稿数を選択します。(最小:2、最大:30)"
|
||||
msgstr "The post count setting to be displayed for related articles. (minimum: 2, maximum: 30)"
|
||||
|
||||
msgid "ページ送りナビの見た目を選択します。"
|
||||
msgstr "Change the look of the page feed navigation."
|
||||
|
||||
msgid "投稿でのパンくずリストの表示位置を選択します。"
|
||||
msgstr "Set the breadcrumb display position for posts."
|
||||
|
||||
msgid "固定ページでのパンくずリストの表示位置を選択します。"
|
||||
msgstr "Set the breadcrumb display position for pages."
|
||||
|
||||
msgid "カラーの説明です。カラーの選択リストに表示されます。"
|
||||
msgstr "A description of the color.It will appear in the color selection list."
|
||||
|
||||
msgid "カラーの名称です。ファイル名に使用します。"
|
||||
msgstr "The name of the color.Used for the file name."
|
||||
|
||||
msgid "カラーファイルを上書きできるようにします。"
|
||||
msgstr "Allows you to overwrite color files."
|
||||
|
||||
msgid "全て選択または解除します。"
|
||||
msgstr "Select or deselect all."
|
||||
|
||||
msgid "全選択"
|
||||
msgstr "Select all"
|
||||
|
||||
msgid "値として''を格納します。"
|
||||
msgstr "Store '' as the value."
|
||||
|
||||
msgid "値無し"
|
||||
msgstr "No value"
|
||||
|
||||
msgid "Cocoonで定義しているカラーなどの情報を簡単に設定することができます。"
|
||||
msgstr "You can easily set information such as colors defined in Cocoon."
|
||||
|
||||
msgid "設定したカラーなどの情報をファイルとして保存することができます。"
|
||||
msgstr "Information such as the set color can be saved as a file."
|
||||
|
||||
msgid "ファイルとして保存した情報をもとにあらたなファイルを作成することもできます。"
|
||||
msgstr "You can also create a new file based on the information saved as a file."
|
||||
|
||||
msgid "カラーを選択します。"
|
||||
msgstr "Select a color."
|
||||
|
||||
msgid "スキン制御:"
|
||||
msgstr "Skin control:"
|
||||
|
||||
msgid "※スキンでCocoon設定値を制御している場合は、実際にサイトを表示する際にはここでの設定値よりもスキンの設定値が優先して使われます。"
|
||||
msgstr "* If the skin controls the Cocoon settings, the skin settings will be used in preference to the settings here when actually displaying the site."
|
||||
|
||||
msgid "DBの現在値です"
|
||||
msgstr "The current value of DB"
|
||||
|
||||
msgid "※Cocoon設定の一部が変更されますので、事前にバックアップファイルを取得してください。"
|
||||
msgstr "* Please obtain a backup file in advance as some Cocoon settings will be changed."
|
||||
|
||||
msgid "カラー(カラーファイル)を更新しました。"
|
||||
msgstr "The color (color file) has been updated."
|
||||
|
||||
msgid "カラー(カラーファイル)を作成しました。"
|
||||
msgstr "The color (color file) has been created."
|
||||
|
||||
msgid "カラー(カラーファイル)を削除します。"
|
||||
msgstr "Delete the color (color file)."
|
||||
|
||||
msgid "カラー(カラーファイル)を削除しました。"
|
||||
msgstr "The color (color file) has been deleted."
|
||||
|
||||
msgid "バックアップ・リストア"
|
||||
msgstr "Backup / Restore"
|
||||
|
||||
msgid "作成したカラー情報(カラーファイル)のバックアップとリストアを行います。"
|
||||
msgstr "Back up and restore the created color information (color file)."
|
||||
|
||||
msgid "※本プラグインのバージョンアップを行うと作成したカラー情報が失われますので、プラグインのバージョンアップを行う前にはバックアップを取得してください。"
|
||||
msgstr "* If you upgrade this plug-in, the created color information will be lost, so please make a backup before upgrading the plug-in."
|
||||
|
||||
msgid "※本プラグインのバージョンアップを行ったあとは、カラー情報を復元するためにバックアップしたファイルをリストアしてください。"
|
||||
msgstr "* After upgrading the version of this plug-in, restore the backed up file to restore the color information."
|
||||
|
||||
msgid "バックアップ"
|
||||
msgstr "Backup"
|
||||
|
||||
msgid "バックアップファイルの取得"
|
||||
msgstr "Download backed up file"
|
||||
|
||||
msgid "カラー情報(カラーファイル)をバックアップする場合はボタンをクリックしてください。"
|
||||
msgstr "Click the button to back up the color information (color file)."
|
||||
|
||||
msgid "リストア"
|
||||
msgstr "Restore"
|
||||
|
||||
msgid "バックアップしたファイルをアップロード: "
|
||||
msgstr "Upload backed up files:"
|
||||
|
||||
msgid "カラー情報(カラーファイル)の復元"
|
||||
msgstr "Restoration of color information (color file)"
|
||||
|
||||
msgid "[ファイルを選択]ボタンをクリックしてバックアップしたファイルを選択し、[カラー情報(カラーファイル)の復元]ボタンをクリックしてください。"
|
||||
msgstr "Click the 'Select File' button to select the backed up file, and then click the 'Restoration of color information (color file)' button."
|
||||
|
||||
msgid "カラー(カラーファイル)を復元しました。"
|
||||
msgstr "Restored color (color file)."
|
||||
|
||||
msgid "アップロードファイルを移動できませんでした。"
|
||||
msgstr "The upload file could not be moved."
|
||||
|
||||
msgid "ファイルをアップロードできませんでした。エラー情報:"
|
||||
msgstr "The file could not be uploaded. Error information:"
|
||||
|
||||
msgid "アップロードファイルのサイズが上限値を超えています。上限値:"
|
||||
msgstr "The size of the uploaded file exceeds the upper limit. Upper limit:"
|
||||
|
||||
msgid "アップロードファイルはzip形式ではありません。エラー情報:"
|
||||
msgstr "The uploaded file is not in zip format. Error information:"
|
||||
|
||||
msgid "ZipArchiveクラスが無効です。"
|
||||
msgstr "The ZipArchive class is invalid."
|
||||
|
||||
msgid "ZipArchiveクラスのextractToメソッドでエラーが発生しました。"
|
||||
msgstr "An error occurred in the extractTo method of the ZipArchive class."
|
||||
|
||||
msgid "ZipArchiveクラスのopenメソッドでエラーが発生しました。エラーコード:"
|
||||
msgstr "An error occurred in the open method of the ZipArchive class. Error code:"
|
||||
|
||||
msgid "アップロードファイルのフォルダ構成が正しくありません。"
|
||||
msgstr "The folder structure of the uploaded file is incorrect."
|
||||
|
||||
msgid "ファイルコピーでエラーが発生しました。エラーメッセージ:"
|
||||
msgstr "There was an error copying the file. Error message:"
|
||||
|
||||
msgid "SILK(シルク)スキンで提供されているカラーファイルを元にしています。"
|
||||
msgstr "It is based on the color file provided by SILK skin."
|
||||
|
||||
@@ -167,9 +167,6 @@ Ahalogy wordpress plugin [version 2.1.0] is installed but Client ID not set
|
||||
<!-- / Google Analytics by MonsterInsights -->
|
||||
|
||||
|
||||
<!-- Hotjar Tracking Code for wp.lab -->
|
||||
|
||||
|
||||
<!-- Powered by iMP Download v1.4 -->
|
||||
|
||||
|
||||
@@ -1236,3 +1233,7 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
|
||||
|
||||
|
||||
<!-- review-schema -->
|
||||
<!-- This Google structured data (Rich Snippet) auto generated by RadiusTheme Review Schema plugin version 1.0.1 -->
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,805 @@
|
||||
# Copyright (C) 2021 kraftplugins
|
||||
# This file is distributed under the same license as the Demo Importer Plus package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Demo Importer Plus 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/demo-importer-plus\n"
|
||||
"POT-Creation-Date: 2021-06-12 15:49: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"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: admin/partials/getting-started.php:11
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/getting-started.php:16
|
||||
msgid "Select Page Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/getting-started.php:17
|
||||
msgid ""
|
||||
"We offer starter templates that can be imported in one click. These sites "
|
||||
"are available in the following page builders. Please choose your preferred "
|
||||
"page builder from the list below."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:38
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:39
|
||||
msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:40
|
||||
msgid "Pro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:56 admin/partials/menu-page.php:99
|
||||
msgid "Heading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:65
|
||||
msgid "Available Templates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:125 admin/partials/menu-page.php:490
|
||||
msgid "Page Templates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:168
|
||||
msgid "Import Complete Site"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:169
|
||||
msgid "Import Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:191
|
||||
#: inc/classes/class-demo-importer-plus.php:156
|
||||
msgid "Your Selected Website is Being Imported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:193
|
||||
#: inc/classes/class-demo-importer-plus.php:157
|
||||
msgid "Your Selected Template is Being Imported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:207
|
||||
msgid "Delete Previously Imported Site"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:209
|
||||
msgid ""
|
||||
"Selecting this option will delete all the data from the previous import. "
|
||||
"Kindly uncheck this option if this is not intended."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:209
|
||||
msgid "You can find the backup to the current customizer settings at "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:209
|
||||
msgid "/wp-content/uploads/demo-importer-plus/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:231
|
||||
msgid "Install & Activate Compatible Theme"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:233
|
||||
msgid ""
|
||||
"To import the site in the original format, you would need the same theme "
|
||||
"activated. You can import it with any other theme, but the site might lose "
|
||||
"some of the design settings and look a bit different."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:241
|
||||
msgid "Import Customizer Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:243
|
||||
msgid ""
|
||||
"This will import the customizer settings of the template you have chosen. "
|
||||
"Please note that, this will override your current customizer settings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:254
|
||||
msgid "Import Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:261
|
||||
msgid "Install Required Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:264
|
||||
msgid "Required plugins will be installed and activated automatically."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:273
|
||||
msgid "Import Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:276
|
||||
msgid ""
|
||||
"Selecting this option will import the demo content of the template you have "
|
||||
"chosen. It will import all the dummy pages, posts, images, and menus. If "
|
||||
"you do not want the demo content, kindly uncheck this option."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:294
|
||||
#. translators: %s is the dynamic string.
|
||||
msgid ""
|
||||
"Depending on the %s you have chosen and your server configuration, the "
|
||||
"process can take a couple of minutes to import the demo content."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:300
|
||||
#. translators: %s is the dynamic string.
|
||||
msgid "Please do NOT close this browser window until the %s is imported completely."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:314
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:315 admin/partials/menu-page.php:393
|
||||
#: admin/partials/menu-page.php:399 admin/partials/menu-page.php:401
|
||||
msgid "Skip & Import"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:316 admin/partials/menu-page.php:394
|
||||
#: admin/partials/menu-page.php:402
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:323 admin/partials/menu-page.php:354
|
||||
msgid "Imported Successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:327
|
||||
msgid "The Website Imported Successfully! 🎉"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:329 admin/partials/menu-page.php:359
|
||||
msgid ""
|
||||
"You can now start customizing the website to suit your preference. Enjoy "
|
||||
"website your building!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:331 admin/partials/menu-page.php:360
|
||||
msgid ""
|
||||
"PS: The images used in the demo are free for personal uses. We strong "
|
||||
"recommend you to replace the images and any copyrighted media before "
|
||||
"publishing your website online."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:334
|
||||
msgid "View Site"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:343
|
||||
msgid "Your website is facing a temporary issue connecting to the template server."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:347
|
||||
#: inc/classes/class-demo-importer-plus.php:173
|
||||
#: inc/classes/class-demo-importer-plus.php:178
|
||||
#: inc/classes/class-demo-importer-plus.php:183
|
||||
#. translators: %s doc link.
|
||||
msgid ""
|
||||
"Read an article <a href=\"%s\" target=\"_blank\">here</a> to resolve the "
|
||||
"issue."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:358
|
||||
msgid "The Template Imported Successfully! 🎉"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:363
|
||||
msgid "View Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:371
|
||||
msgid "We're Almost There!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:380
|
||||
msgid ""
|
||||
"Currently, WordPress debug mode is enabled on your website. With this "
|
||||
"option enabled, any errors caused by the third-party plugin will hinder the "
|
||||
"import process."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:381
|
||||
msgid ""
|
||||
"We recommend you to disable it before starting the import process. You can "
|
||||
"do this, by adding the following code into the wp-config.php file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:382
|
||||
msgid "define('WP_DEBUG', false);"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:384
|
||||
msgid ""
|
||||
"Updates for some of the installed plugins used in this template are "
|
||||
"available."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:385
|
||||
msgid ""
|
||||
"Please update them for the successful import. You can also skip this but it "
|
||||
"might affect the template imported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:398
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:426
|
||||
msgid "Site Templates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:435 admin/partials/menu-page.php:499
|
||||
#: admin/partials/menu-page.php:573
|
||||
msgid "Make as Favorite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:481 admin/partials/menu-page.php:542
|
||||
#: admin/partials/menu-page.php:619
|
||||
#. translators: %s are white label strings.
|
||||
msgid "Agency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:555
|
||||
msgid "Sorry No Results Found."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Demo Importer Plus"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:64
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:141
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:428
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:606
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:643
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:702
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:125
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:166
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:230
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:301
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:343
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:387
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:518
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:543
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:574
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:621
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:660
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:694
|
||||
msgid "You are not allowed to perform this action"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:68
|
||||
msgid "Invalid API URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:81
|
||||
msgid "Invalid Post Meta"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:88
|
||||
msgid "Invalid Post ID or Elementor Meta"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:151
|
||||
msgid "Theme Activated"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:163
|
||||
msgid "Provided API URL is empty! Please try again!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:301
|
||||
msgid ""
|
||||
"Insufficient Permission. Please contact your Super Admin to allow the "
|
||||
"install required plugin permissions."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:381
|
||||
msgid "Error: You don't have the required permissions to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:415
|
||||
msgid "Plugin Activated"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:570
|
||||
msgid "User does not have permission!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:630
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:151
|
||||
msgid "Customizer data is empty!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:647
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:170
|
||||
msgid ""
|
||||
"If XMLReader is not available, it imports all other settings and only skips "
|
||||
"XML import. This creates an incomplete website. We should bail early and "
|
||||
"not import anything if this is not present."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:675
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:201
|
||||
msgid "There was an error downloading the XML file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-ajax.php:689
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:215
|
||||
msgid "Invalid site XML file!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:87
|
||||
msgid "Required File Permissions to import the templates are missing."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:89
|
||||
msgid "This is usually due to inconsistent file permissions."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:92
|
||||
msgid ""
|
||||
"You can easily update permissions by adding the following code into the "
|
||||
"wp-config.php file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:231
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:234
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:303
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:347
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:306
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:350
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:362
|
||||
msgid "You currently have no scheduled cron events."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:325
|
||||
msgid "Site options are empty!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer.php:371
|
||||
msgid "Widget data is empty!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:122
|
||||
msgid ""
|
||||
"Syncing template library in the background. The process can take anywhere "
|
||||
"between 2 to 3 minutes. We will notify you once done."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:123
|
||||
msgid ""
|
||||
"Some of the files required during the import process are "
|
||||
"missing.<br/><br/>Please try again after some time."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:124
|
||||
msgid ""
|
||||
"<p>WordPress debug mode is currently enabled on your website. This has "
|
||||
"interrupted the import process..</p><p>Kindly disable debug mode and try "
|
||||
"importing Starter Template again.</p><p>You can add the following code into "
|
||||
"the wp-config.php file to disable debug "
|
||||
"mode.</p><p><code>define('WP_DEBUG', false);</code></p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:126
|
||||
#: inc/classes/class-demo-importer-plus.php:128
|
||||
#. translators: %s is a documentation link.
|
||||
msgid ""
|
||||
"<p>Your website is facing a temporary issue in connecting the template "
|
||||
"server.</p><p>Read <a href=\"%s\" target=\"_blank\">article</a> to resolve "
|
||||
"the issue and continue importing template.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:132
|
||||
#. translators: %s are white label strings.
|
||||
msgid ""
|
||||
"Warning! Import process is not complete. Don't close the window until "
|
||||
"import process complete. Do you still want to leave the window?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:133
|
||||
msgid "Done! View Site"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:135
|
||||
#. translators: %s is a template name
|
||||
msgid "Import \"%s\" Template"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:138
|
||||
msgid "Installing Required Plugins.."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:140
|
||||
#. translators: %s are white label strings.
|
||||
msgid "Installing Theme.."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:151
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:155
|
||||
msgid "One Last Step.."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:171
|
||||
msgid "XMLReader Support Missing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:173
|
||||
#. translators: %s doc link.
|
||||
msgid ""
|
||||
"You're close to importing the template. To complete the process, enable "
|
||||
"XMLReader support on your website.."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:176
|
||||
msgid "cURL Support Missing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:178
|
||||
#. translators: %s doc link.
|
||||
msgid "To run a smooth import, kindly enable cURL support on your website."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:181
|
||||
msgid "Disable Debug Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:183
|
||||
#. translators: %s doc link.
|
||||
msgid ""
|
||||
"WordPress debug mode is currently enabled on your website. With this, any "
|
||||
"errors from third-party plugins might affect the import process."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:183
|
||||
msgid ""
|
||||
"Kindly disable it to continue importing the Starter Template. To do so, you "
|
||||
"can add the following code into the wp-config.php file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:186
|
||||
msgid "Update Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:188
|
||||
#. translators: %s update page link.
|
||||
msgid "Updates are available for plugins used in this starter template."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:188
|
||||
msgid ""
|
||||
"Kindly <a href=\"%s\" target=\"_blank\">update</a> them for a successful "
|
||||
"import. Skipping this step might break the template design/feature."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:191
|
||||
msgid "Required Plugins Missing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:192
|
||||
msgid ""
|
||||
"This starter template requires premium plugins. As these are third party "
|
||||
"premium plugins, you'll need to purchase, install and activate them first."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:195
|
||||
msgid "Dynamic Page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:196
|
||||
msgid ""
|
||||
"The page template you are about to import contains a dynamic widget/module. "
|
||||
"Please note this dynamic data will not be available with the imported page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:196
|
||||
msgid "You will need to add it manually on the page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:196
|
||||
msgid "This dynamic content will be available when you import the entire site."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus.php:339
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/batch-processing/helpers/class-wp-background-process-demo-importer-plus-importer.php:80
|
||||
msgid "All processes are complete"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/batch-processing/helpers/class-wp-background-process.php:440
|
||||
#. translators: %d are the minutes.
|
||||
msgid "Every %d Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-demo-importer-plus-widget-importer.php:73
|
||||
msgid "Import data could not be read. Please try a different file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-demo-importer-plus-widget-importer.php:108
|
||||
msgid "Widget area does not exist in theme (using Inactive)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-demo-importer-plus-widget-importer.php:126
|
||||
msgid "Site does not support widget"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-demo-importer-plus-widget-importer.php:147
|
||||
msgid "Widget already exists"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-demo-importer-plus-widget-importer.php:204
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-demo-importer-plus-widget-importer.php:207
|
||||
msgid "Imported to Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/class-demo-importer-plus-widget-importer.php:212
|
||||
msgid "No Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-demo-importer-plus-wxr-importer.php:352
|
||||
msgid "Import complete!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:224
|
||||
msgid "Could not open the file for parsing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:262
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:381
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:457
|
||||
#. translators: %1$s is WXR version, %2$s is max supported WXR version.
|
||||
msgid ""
|
||||
"This WXR file (version %1$s) is newer than the importer (version %2$s) and "
|
||||
"may not be supported. Please consider updating."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:608
|
||||
msgid "The file does not exist, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:668
|
||||
msgid "Invalid author mapping"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:769
|
||||
msgid "Cannot import auto-draft posts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:864
|
||||
#. translators: %1$s is the import message, %2$s is post type.
|
||||
msgid "Failed to import \"%1$s\": Invalid post type %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:877
|
||||
#. translators: %1$s single post type, %2$s is post title.
|
||||
msgid "%1$s \"%2$s\" already exists."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:974
|
||||
#. translators: %s is post title
|
||||
msgid "Skipping attachment \"%s\", fetching attachments disabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:998
|
||||
#. translators: %1$s is the post title, %2$s is post type.
|
||||
msgid "Failed to import \"%1$s\" (%2$s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1033
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1921
|
||||
#. translators: %1$s is the post title, %2$s is post type.
|
||||
#. translators: %1$s is the taxonomy name, %2$s is taxonomy.
|
||||
msgid "Imported \"%1$s\" (%2$s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1041
|
||||
#. translators: %1$s is the original post id, %2$s is old post id.
|
||||
msgid "Post %1$d remapped to %2$d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1192
|
||||
msgid "Invalid file type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1698
|
||||
#. translators: %s user login name
|
||||
msgid "Failed to import user \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1722
|
||||
#. translators: %s user login name
|
||||
msgid "Imported user \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1729
|
||||
#. translators: %1$s original user Id, %2$s old user Id.
|
||||
msgid "User %1$d remapped to %2$d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1894
|
||||
#. translators: %1$s is the taxonomy, %2$s is taxonomy name.
|
||||
msgid "Failed to import %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1929
|
||||
#. translators: %1$s is term original id, %2$s is term id.
|
||||
msgid "Term %1$d remapped to %2$d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:1987
|
||||
#. translators: %1$s is error code, %2$s is error code header, %3$s is url.
|
||||
msgid "Remote server returned %1$d %2$s for %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2000
|
||||
msgid "Remote file is incorrect size"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2005
|
||||
msgid "Zero size file downloaded"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2012
|
||||
#. translators: %s max file size.
|
||||
msgid "Remote file is too large, limit is %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2045
|
||||
#. translators: %d is post id.
|
||||
msgid "Running post-processing for post %d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2061
|
||||
#. translators: %1$s is post title, %2$s is post id.
|
||||
msgid "Could not find the post parent for \"%1$s\" (post #%2$d)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2069
|
||||
#. translators: %1$d is post id, %2$d is parent post id.
|
||||
msgid "Post %1$d was imported with parent %2$d, but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2086
|
||||
#. translators: %1$s is the post title, %2$s is post id.
|
||||
msgid "Could not find the author for \"%1$s\" (post #%2$d)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2094
|
||||
#. translators: %1$d is post id, %2$s is author slug.
|
||||
msgid "Post %1$d was imported with author \"%2$s\", but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2123
|
||||
#. translators: %d is post id.
|
||||
msgid "Post %d was marked for post-processing, but none was required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2137
|
||||
#. translators: %1$s is the post title, %2$s is post id.
|
||||
msgid "Could not update \"%1$s\" (post #%2$d) with mapped data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2191
|
||||
#. translators: %1$s is the post title, %2$s is post id.
|
||||
msgid "Could not find the menu object for \"%1$s\" (post #%2$d)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2199
|
||||
#. translators: %1$s is post id, %2$s is post object id, %3$s is menu type.
|
||||
msgid ""
|
||||
"Post %1$d was imported with object \"%2$d\" of type \"%3$s\", but could not "
|
||||
"be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2230
|
||||
#. translators: %d is comment id.
|
||||
msgid "Could not find the comment parent for comment #%d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2237
|
||||
#. translators: %1$s is comment id, %2$s is parent comment id.
|
||||
msgid "Comment %1$d was imported with parent %2$d, but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2254
|
||||
#. translators: %d is comment id.
|
||||
msgid "Could not find the author for comment #%d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2261
|
||||
#. translators: %1$d is comment id, %2$d is author id.
|
||||
msgid "Comment %1$d was imported with author %2$d, but could not be found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/importers/wxr-importer/class-wxr-importer.php:2281
|
||||
#. translators: %d is comment id.
|
||||
msgid "Could not update comment #%d with mapped data"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://kraftplugins.com/demo-importer-plus"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Demo Importer Plus allows you to Import the demo content, widgets, "
|
||||
"customizer settings and theme settings with a single click without any "
|
||||
"hassle."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "kraftplugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://kraftplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/menu-page.php:81
|
||||
msgctxt "no. of templates"
|
||||
msgid "%s template"
|
||||
msgid_plural "%s templates"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:249
|
||||
#. translators: %1$s Memory Limit, %2$s Recommended memory limit.
|
||||
msgctxt "Recommended Memory Limit"
|
||||
msgid "Current memory limit %1$s. We recommend setting memory to at least %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-demo-importer-plus-sites-importer-log.php:314
|
||||
msgctxt "PHP Version"
|
||||
msgid "We recommend to use php 5.4 or higher"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,231 @@
|
||||
# Copyright (C) 2021 Acowebs
|
||||
# This file is distributed under the same license as the Deposits & Partial Payments for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Deposits & Partial Payments for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/deposits-partial-payments-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-07-03T11:21:45+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: deposits-partial-payments-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Deposits & Partial Payments for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WooCommerce Deposits allows customers to pay for products using a fixed or percentage amount in WooCommerce store"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:144
|
||||
msgid "Deposits For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:144
|
||||
#: includes/class-awcdp-backend.php:276
|
||||
msgid "Deposits"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:163
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:291
|
||||
msgid "Enable Deposit "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:293
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:294
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:296
|
||||
msgid "Allow customers to pay a deposit for this product."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:302
|
||||
msgid "Deposit type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:304
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:305
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:311
|
||||
#: includes/class-awcdp-front-end.php:541
|
||||
#: includes/class-awcdp-front-end.php:588
|
||||
#: includes/class-awcdp-front-end.php:1331
|
||||
#: includes/class-awcdp-front-end.php:1866
|
||||
msgid "Deposit Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:312
|
||||
msgid "The amount of deposit needed. Do not include currency or percent symbols."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:368
|
||||
#: includes/class-awcdp-front-end.php:915
|
||||
#: includes/class-awcdp-front-end.php:1281
|
||||
#: templates/order/awcdp-partial-payment-details.php:36
|
||||
msgid "Deposit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:373
|
||||
#: includes/class-awcdp-front-end.php:499
|
||||
#: includes/class-awcdp-front-end.php:550
|
||||
#: includes/class-awcdp-front-end.php:965
|
||||
#: includes/class-awcdp-front-end.php:1330
|
||||
#: includes/class-awcdp-front-end.php:1865
|
||||
#: templates/order/awcdp-partial-payment-details.php:34
|
||||
msgid "Future Payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:407
|
||||
msgid "Partial Payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:418
|
||||
#: templates/emails/email-partial-payments-details.php:9
|
||||
#: templates/order/awcdp-partial-payment-details.php:16
|
||||
msgid "Partial payment details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:473
|
||||
msgid "This is a partial payment for order %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-backend.php:474
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-deposits.php:51
|
||||
#: includes/class-awcdp-deposits.php:56
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-deposits.php:52
|
||||
#: templates/admin/order-partial-payments.php:20
|
||||
#: templates/emails/email-partial-payments-details.php:14
|
||||
#: templates/order/awcdp-partial-payment-details.php:21
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-deposits.php:53
|
||||
msgctxt "custom post type setting"
|
||||
msgid "Edit Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-deposits.php:54
|
||||
msgid "Search Payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-deposits.php:55
|
||||
msgctxt "custom post type setting"
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-deposits.php:96
|
||||
msgctxt "Order status"
|
||||
msgid "Partially Paid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-deposits.php:101
|
||||
msgid "Partially Paid <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Partially Paid <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:267
|
||||
#: includes/class-awcdp-front-end.php:276
|
||||
msgid "per item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:287
|
||||
msgid "Pay Deposit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:288
|
||||
msgid "Pay Full Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:289
|
||||
msgid "Pay a deposit of "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:498
|
||||
#: includes/class-awcdp-front-end.php:964
|
||||
#: includes/class-awcdp-front-end.php:1329
|
||||
#: includes/class-awcdp-front-end.php:1864
|
||||
msgid "Due Today"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:591
|
||||
msgid "%s payable in deposit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:804
|
||||
msgid "Future payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:1140
|
||||
msgid "Partially Paid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-front-end.php:1519
|
||||
msgid "Partial Payment for order %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-list.php:121
|
||||
msgid "Partial Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awcdp-order.php:318
|
||||
msgid "Partial Payment amount:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/order-partial-payments.php:11
|
||||
msgid "No payment schedule found."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/order-partial-payments.php:19
|
||||
#: templates/emails/email-partial-payments-details.php:13
|
||||
#: templates/order/awcdp-partial-payment-details.php:20
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/order-partial-payments.php:21
|
||||
#: templates/emails/email-partial-payments-details.php:15
|
||||
msgid "Payment method"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/order-partial-payments.php:22
|
||||
#: templates/emails/email-partial-payments-details.php:16
|
||||
#: templates/order/awcdp-partial-payment-details.php:22
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/order-partial-payments.php:23
|
||||
#: templates/emails/email-partial-payments-details.php:17
|
||||
#: templates/order/awcdp-partial-payment-details.php:23
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,662 @@
|
||||
# Copyright (C) 2021 Document Embedder Addons for Elementor
|
||||
# This file is distributed under the same license as the Document Embedder Addons for Elementor package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Document Embedder Addons for Elementor 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/document-embedder-addons-for-elementor\n"
|
||||
"POT-Creation-Date: 2021-04-07 05:34:36+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"
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor
|
||||
|
||||
#: document-embedder-addons-for-elementor.php:132
|
||||
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: document-embedder-addons-for-elementor.php:133
|
||||
#: document-embedder-addons-for-elementor.php:180
|
||||
msgid "Document Embedder Addons"
|
||||
msgstr ""
|
||||
|
||||
#: document-embedder-addons-for-elementor.php:134
|
||||
#: document-embedder-addons-for-elementor.php:157
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
|
||||
|
||||
#: document-embedder-addons-for-elementor.php:155
|
||||
#: document-embedder-addons-for-elementor.php:179
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: document-embedder-addons-for-elementor.php:156
|
||||
msgid "b addon"
|
||||
msgstr ""
|
||||
|
||||
#: document-embedder-addons-for-elementor.php:181
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:128
|
||||
msgid "B Addon"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:17
|
||||
msgid "Doc Embedder"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:32
|
||||
msgid "Docs Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:39
|
||||
#: public/widgets/bae-excel-embedder.php:38
|
||||
#: public/widgets/bae-excel-viewer.php:40 public/widgets/bae-google-docs.php:40
|
||||
#: public/widgets/bae-google-sheets.php:40
|
||||
#: public/widgets/bae-google-slides.php:40
|
||||
#: public/widgets/bae-pdf-embedder.php:40
|
||||
#: public/widgets/bae-pdf-native-embedder.php:39
|
||||
#: public/widgets/bae-pdf-viewer-2.php:39
|
||||
#: public/widgets/bae-powerpoint-embedder.php:39
|
||||
#: public/widgets/bae-powerpoint-viewer.php:40
|
||||
#: public/widgets/bae-word-viewer.php:40
|
||||
msgid "Source options"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:48
|
||||
#: public/widgets/bae-excel-embedder.php:46
|
||||
#: public/widgets/bae-excel-viewer.php:49 public/widgets/bae-google-docs.php:49
|
||||
#: public/widgets/bae-google-sheets.php:49
|
||||
#: public/widgets/bae-google-slides.php:49
|
||||
#: public/widgets/bae-pdf-embedder.php:49
|
||||
#: public/widgets/bae-pdf-native-embedder.php:47
|
||||
#: public/widgets/bae-pdf-viewer-2.php:47
|
||||
#: public/widgets/bae-powerpoint-embedder.php:48
|
||||
#: public/widgets/bae-powerpoint-viewer.php:49
|
||||
#: public/widgets/bae-word-viewer.php:49
|
||||
msgid "Source Type"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:50
|
||||
#: public/widgets/bae-excel-embedder.php:48
|
||||
#: public/widgets/bae-excel-viewer.php:51 public/widgets/bae-google-docs.php:51
|
||||
#: public/widgets/bae-google-sheets.php:51
|
||||
#: public/widgets/bae-google-slides.php:51
|
||||
#: public/widgets/bae-pdf-embedder.php:51
|
||||
#: public/widgets/bae-pdf-native-embedder.php:49
|
||||
#: public/widgets/bae-pdf-viewer-2.php:49
|
||||
#: public/widgets/bae-powerpoint-embedder.php:50
|
||||
#: public/widgets/bae-powerpoint-viewer.php:51
|
||||
#: public/widgets/bae-word-viewer.php:51
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:51
|
||||
#: public/widgets/bae-excel-embedder.php:49
|
||||
#: public/widgets/bae-excel-viewer.php:52 public/widgets/bae-google-docs.php:52
|
||||
#: public/widgets/bae-google-sheets.php:52
|
||||
#: public/widgets/bae-google-slides.php:52
|
||||
#: public/widgets/bae-pdf-embedder.php:52
|
||||
#: public/widgets/bae-pdf-native-embedder.php:50
|
||||
#: public/widgets/bae-pdf-viewer-2.php:50
|
||||
#: public/widgets/bae-powerpoint-embedder.php:51
|
||||
#: public/widgets/bae-powerpoint-viewer.php:52
|
||||
#: public/widgets/bae-word-viewer.php:52
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:60
|
||||
msgid "Upload Doc File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:62
|
||||
msgid "Upload a word file here."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:76
|
||||
msgid "Doc URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:78 public/widgets/bae-google-docs.php:78
|
||||
#: public/widgets/bae-word-viewer.php:78
|
||||
msgid "Paste a word file link here."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:98
|
||||
msgid "Doc Content Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:104
|
||||
#: public/widgets/bae-excel-embedder.php:98
|
||||
#: public/widgets/bae-excel-viewer.php:134
|
||||
#: public/widgets/bae-google-docs.php:133
|
||||
#: public/widgets/bae-google-sheets.php:133
|
||||
#: public/widgets/bae-google-slides.php:133
|
||||
#: public/widgets/bae-pdf-embedder.php:94
|
||||
#: public/widgets/bae-pdf-native-embedder.php:126
|
||||
#: public/widgets/bae-pdf-viewer-2.php:119
|
||||
#: public/widgets/bae-powerpoint-embedder.php:104
|
||||
#: public/widgets/bae-powerpoint-viewer.php:133
|
||||
#: public/widgets/bae-word-viewer.php:133
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:132
|
||||
#: public/widgets/bae-excel-embedder.php:125
|
||||
#: public/widgets/bae-excel-viewer.php:105
|
||||
#: public/widgets/bae-google-docs.php:105
|
||||
#: public/widgets/bae-google-sheets.php:105
|
||||
#: public/widgets/bae-google-slides.php:105
|
||||
#: public/widgets/bae-pdf-embedder.php:122
|
||||
#: public/widgets/bae-pdf-native-embedder.php:99
|
||||
#: public/widgets/bae-pdf-viewer-2.php:91
|
||||
#: public/widgets/bae-powerpoint-embedder.php:132
|
||||
#: public/widgets/bae-powerpoint-viewer.php:105
|
||||
#: public/widgets/bae-word-viewer.php:105
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:159
|
||||
#: public/widgets/bae-excel-embedder.php:152
|
||||
#: public/widgets/bae-excel-viewer.php:162
|
||||
#: public/widgets/bae-google-docs.php:161
|
||||
#: public/widgets/bae-google-sheets.php:161
|
||||
#: public/widgets/bae-google-slides.php:161
|
||||
#: public/widgets/bae-pdf-embedder.php:150
|
||||
#: public/widgets/bae-pdf-native-embedder.php:154
|
||||
#: public/widgets/bae-pdf-viewer-2.php:146
|
||||
#: public/widgets/bae-powerpoint-embedder.php:160
|
||||
#: public/widgets/bae-powerpoint-viewer.php:162
|
||||
#: public/widgets/bae-word-viewer.php:161
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:164
|
||||
#: public/widgets/bae-excel-embedder.php:157
|
||||
#: public/widgets/bae-excel-viewer.php:167
|
||||
#: public/widgets/bae-google-docs.php:166
|
||||
#: public/widgets/bae-google-sheets.php:166
|
||||
#: public/widgets/bae-google-slides.php:166
|
||||
#: public/widgets/bae-pdf-embedder.php:155
|
||||
#: public/widgets/bae-pdf-native-embedder.php:159
|
||||
#: public/widgets/bae-pdf-viewer-2.php:151
|
||||
#: public/widgets/bae-powerpoint-embedder.php:165
|
||||
#: public/widgets/bae-powerpoint-viewer.php:167
|
||||
#: public/widgets/bae-word-viewer.php:166
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:168
|
||||
#: public/widgets/bae-excel-embedder.php:161
|
||||
#: public/widgets/bae-excel-viewer.php:171
|
||||
#: public/widgets/bae-google-docs.php:170
|
||||
#: public/widgets/bae-google-sheets.php:170
|
||||
#: public/widgets/bae-google-slides.php:170
|
||||
#: public/widgets/bae-pdf-embedder.php:159
|
||||
#: public/widgets/bae-pdf-native-embedder.php:163
|
||||
#: public/widgets/bae-pdf-viewer-2.php:155
|
||||
#: public/widgets/bae-powerpoint-embedder.php:169
|
||||
#: public/widgets/bae-powerpoint-viewer.php:171
|
||||
#: public/widgets/bae-word-viewer.php:170
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:172
|
||||
#: public/widgets/bae-excel-embedder.php:165
|
||||
#: public/widgets/bae-excel-viewer.php:175
|
||||
#: public/widgets/bae-google-docs.php:174
|
||||
#: public/widgets/bae-google-sheets.php:174
|
||||
#: public/widgets/bae-google-slides.php:174
|
||||
#: public/widgets/bae-pdf-embedder.php:163
|
||||
#: public/widgets/bae-pdf-native-embedder.php:167
|
||||
#: public/widgets/bae-pdf-viewer-2.php:159
|
||||
#: public/widgets/bae-powerpoint-embedder.php:173
|
||||
#: public/widgets/bae-powerpoint-viewer.php:175
|
||||
#: public/widgets/bae-word-viewer.php:174
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-doc-embedder.php:198
|
||||
#: public/widgets/bae-pdf-embedder.php:189
|
||||
#: public/widgets/bae-pdf-native-embedder.php:264
|
||||
#: public/widgets/bae-pdf-viewer-2.php:324
|
||||
msgid "Paste the pdf file link from setting widget."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-embedder.php:17
|
||||
msgid "Excel Embedder"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-embedder.php:32
|
||||
msgid "Excel Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-embedder.php:57
|
||||
#: public/widgets/bae-excel-viewer.php:61
|
||||
msgid "Upload Excel File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-embedder.php:71
|
||||
#: public/widgets/bae-excel-viewer.php:76
|
||||
msgid "Excel URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-embedder.php:73
|
||||
#: public/widgets/bae-excel-viewer.php:78
|
||||
#: public/widgets/bae-google-sheets.php:78
|
||||
msgid "Paste an excel file link here."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-embedder.php:92
|
||||
msgid "Excel Content Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-embedder.php:191
|
||||
#: public/widgets/bae-excel-viewer.php:271
|
||||
#: public/widgets/bae-google-sheets.php:238
|
||||
msgid "Paste the excel file link from setting widget."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:17
|
||||
msgid "Excel Viewer (MS Office)"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:33
|
||||
msgid "Excel Viewer Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:98
|
||||
msgid "Excel Viewer Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:190
|
||||
#: public/widgets/bae-google-docs.php:189
|
||||
#: public/widgets/bae-google-sheets.php:189
|
||||
#: public/widgets/bae-google-slides.php:189
|
||||
#: public/widgets/bae-pdf-native-embedder.php:182
|
||||
#: public/widgets/bae-pdf-viewer-2.php:173
|
||||
#: public/widgets/bae-powerpoint-viewer.php:190
|
||||
#: public/widgets/bae-word-viewer.php:189
|
||||
msgid "Show File Name On top"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:192
|
||||
#: public/widgets/bae-excel-viewer.php:219
|
||||
#: public/widgets/bae-google-docs.php:191
|
||||
#: public/widgets/bae-google-sheets.php:191
|
||||
#: public/widgets/bae-google-slides.php:191
|
||||
#: public/widgets/bae-pdf-native-embedder.php:184
|
||||
#: public/widgets/bae-pdf-native-embedder.php:211
|
||||
#: public/widgets/bae-pdf-viewer-2.php:175
|
||||
#: public/widgets/bae-pdf-viewer-2.php:200
|
||||
#: public/widgets/bae-pdf-viewer-2.php:226
|
||||
#: public/widgets/bae-pdf-viewer-2.php:252
|
||||
#: public/widgets/bae-pdf-viewer-2.php:266
|
||||
#: public/widgets/bae-powerpoint-viewer.php:192
|
||||
#: public/widgets/bae-powerpoint-viewer.php:219
|
||||
#: public/widgets/bae-word-viewer.php:191
|
||||
#: public/widgets/bae-word-viewer.php:218
|
||||
msgid "On"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:193
|
||||
#: public/widgets/bae-excel-viewer.php:220
|
||||
#: public/widgets/bae-google-docs.php:192
|
||||
#: public/widgets/bae-google-sheets.php:192
|
||||
#: public/widgets/bae-google-slides.php:192
|
||||
#: public/widgets/bae-pdf-native-embedder.php:185
|
||||
#: public/widgets/bae-pdf-native-embedder.php:212
|
||||
#: public/widgets/bae-pdf-viewer-2.php:176
|
||||
#: public/widgets/bae-pdf-viewer-2.php:201
|
||||
#: public/widgets/bae-pdf-viewer-2.php:227
|
||||
#: public/widgets/bae-pdf-viewer-2.php:253
|
||||
#: public/widgets/bae-pdf-viewer-2.php:267
|
||||
#: public/widgets/bae-powerpoint-viewer.php:193
|
||||
#: public/widgets/bae-powerpoint-viewer.php:220
|
||||
#: public/widgets/bae-word-viewer.php:192
|
||||
#: public/widgets/bae-word-viewer.php:219
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:196
|
||||
#: public/widgets/bae-google-docs.php:195
|
||||
#: public/widgets/bae-google-sheets.php:195
|
||||
#: public/widgets/bae-google-slides.php:195
|
||||
#: public/widgets/bae-pdf-native-embedder.php:188
|
||||
#: public/widgets/bae-pdf-viewer-2.php:179
|
||||
#: public/widgets/bae-powerpoint-viewer.php:196
|
||||
#: public/widgets/bae-word-viewer.php:195
|
||||
msgid "On, if you want to show the file name in the top of the viewer."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:203
|
||||
#: public/widgets/bae-google-docs.php:202
|
||||
#: public/widgets/bae-google-sheets.php:202
|
||||
#: public/widgets/bae-google-slides.php:202
|
||||
#: public/widgets/bae-pdf-native-embedder.php:195
|
||||
#: public/widgets/bae-pdf-viewer-2.php:185
|
||||
#: public/widgets/bae-powerpoint-viewer.php:203
|
||||
#: public/widgets/bae-word-viewer.php:202
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:206
|
||||
#: public/widgets/bae-google-docs.php:205
|
||||
#: public/widgets/bae-google-sheets.php:205
|
||||
#: public/widgets/bae-google-slides.php:205
|
||||
#: public/widgets/bae-pdf-native-embedder.php:198
|
||||
#: public/widgets/bae-pdf-viewer-2.php:188
|
||||
#: public/widgets/bae-powerpoint-viewer.php:206
|
||||
#: public/widgets/bae-word-viewer.php:205
|
||||
msgid "Write Here File Name"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:207
|
||||
msgid "Excel Test File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:217
|
||||
#: public/widgets/bae-pdf-native-embedder.php:209
|
||||
#: public/widgets/bae-pdf-viewer-2.php:198
|
||||
#: public/widgets/bae-powerpoint-viewer.php:217
|
||||
#: public/widgets/bae-word-viewer.php:216
|
||||
msgid "Show Download button on top"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:224
|
||||
#: public/widgets/bae-pdf-native-embedder.php:216
|
||||
#: public/widgets/bae-pdf-viewer-2.php:205
|
||||
#: public/widgets/bae-powerpoint-viewer.php:224
|
||||
#: public/widgets/bae-word-viewer.php:223
|
||||
msgid "On, if you want to show \"Download\" Button in the top of the viewer."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:231
|
||||
#: public/widgets/bae-pdf-native-embedder.php:223
|
||||
#: public/widgets/bae-pdf-viewer-2.php:211
|
||||
#: public/widgets/bae-pdf-viewer-2.php:237
|
||||
#: public/widgets/bae-powerpoint-viewer.php:231
|
||||
#: public/widgets/bae-word-viewer.php:230
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:234
|
||||
#: public/widgets/bae-pdf-native-embedder.php:226
|
||||
#: public/widgets/bae-pdf-viewer-2.php:214
|
||||
#: public/widgets/bae-powerpoint-viewer.php:234
|
||||
#: public/widgets/bae-word-viewer.php:233
|
||||
msgid "Write Here Download Button Name"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-excel-viewer.php:235
|
||||
msgid "Download Excel"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-docs.php:17
|
||||
msgid "Google Docs"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-docs.php:33
|
||||
msgid "Google Docs Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-docs.php:61
|
||||
#: public/widgets/bae-google-sheets.php:61
|
||||
#: public/widgets/bae-google-slides.php:61
|
||||
#: public/widgets/bae-word-viewer.php:61
|
||||
msgid "Upload Word File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-docs.php:76
|
||||
#: public/widgets/bae-google-sheets.php:76
|
||||
#: public/widgets/bae-google-slides.php:76
|
||||
msgid "Google docs URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-docs.php:98
|
||||
msgid "Google Docs Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-docs.php:206
|
||||
msgid "Docs Test File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-docs.php:238
|
||||
#: public/widgets/bae-word-viewer.php:271
|
||||
msgid "Paste the word file link from setting widget."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-sheets.php:17
|
||||
msgid "Google Sheets"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-sheets.php:33
|
||||
msgid "Google Sheets Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-sheets.php:98
|
||||
msgid "Google Sheets Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-sheets.php:206
|
||||
msgid "Sheets Test File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-slides.php:17
|
||||
msgid "Google Slides"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-slides.php:33
|
||||
msgid "Google Slides Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-slides.php:78
|
||||
#: public/widgets/bae-powerpoint-embedder.php:77
|
||||
#: public/widgets/bae-powerpoint-viewer.php:78
|
||||
msgid "Paste a powerpoint file link here."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-slides.php:98
|
||||
msgid "Google Slides Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-slides.php:206
|
||||
msgid "Slides Test File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-google-slides.php:236
|
||||
#: public/widgets/bae-powerpoint-embedder.php:199
|
||||
#: public/widgets/bae-powerpoint-viewer.php:271
|
||||
msgid "Paste the powerpoint file link from setting widget."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-embedder.php:17
|
||||
msgid "PDF Embedder"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-embedder.php:33
|
||||
#: public/widgets/bae-pdf-native-embedder.php:33
|
||||
#: public/widgets/bae-pdf-viewer-2.php:33
|
||||
msgid "PDF Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-embedder.php:61
|
||||
#: public/widgets/bae-pdf-native-embedder.php:58
|
||||
#: public/widgets/bae-pdf-viewer-2.php:58
|
||||
msgid "Upload PDF File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-embedder.php:63
|
||||
msgid "Upload a pdf file here."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-embedder.php:74
|
||||
#: public/widgets/bae-pdf-native-embedder.php:72
|
||||
#: public/widgets/bae-pdf-viewer-2.php:72
|
||||
msgid "PDF URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-embedder.php:76
|
||||
#: public/widgets/bae-pdf-native-embedder.php:74
|
||||
#: public/widgets/bae-pdf-viewer-2.php:74
|
||||
msgid "Paste a pdf file link here."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-embedder.php:88
|
||||
msgid "PDF Content Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-native-embedder.php:17
|
||||
msgid "PDF Native embedder"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-native-embedder.php:93
|
||||
#: public/widgets/bae-pdf-viewer-2.php:85
|
||||
msgid "PDF Viewer Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-native-embedder.php:199
|
||||
#: public/widgets/bae-pdf-viewer-2.php:189
|
||||
msgid "PDF Test File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-native-embedder.php:227
|
||||
#: public/widgets/bae-pdf-viewer-2.php:215
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:17
|
||||
msgid "PDF Viewer 2"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:224
|
||||
msgid "View Full Screen"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:231
|
||||
msgid "On, if you want to show off \"View Full Screen\" Button in the top of the viewer."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:240
|
||||
msgid "Write Here Full Screen Button Name"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:241
|
||||
msgid "Full Screen PDF"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:250
|
||||
msgid "Thumbnails Toggle Menu"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:257
|
||||
msgid "On, to enable Thumbnails Toogle Menu in the viewer."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:264
|
||||
msgid "Jump to page"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:271
|
||||
msgid "On, Enter the page number that will be shown in the viewer."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:277
|
||||
msgid "Page No."
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-pdf-viewer-2.php:280
|
||||
msgid "1"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-embedder.php:17
|
||||
msgid "PowerPoint Embedder"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-embedder.php:32
|
||||
msgid "PowerPoint Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-embedder.php:60
|
||||
#: public/widgets/bae-powerpoint-viewer.php:61
|
||||
msgid "Upload PowerPoint File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-embedder.php:75
|
||||
#: public/widgets/bae-powerpoint-viewer.php:76
|
||||
msgid "PowerPoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-embedder.php:97
|
||||
msgid "PowerPoint Content Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-viewer.php:17
|
||||
msgid "PowerPoint Viewer (MS Office)"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-viewer.php:33
|
||||
msgid "PowerPoint Viewer Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-viewer.php:98
|
||||
msgid "PowerPoint Viewer Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-viewer.php:207
|
||||
msgid "PowerPoint Test File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-powerpoint-viewer.php:235
|
||||
msgid "Download PowerPoint File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-word-viewer.php:17
|
||||
msgid "Word Viewer (MS Office)"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-word-viewer.php:33
|
||||
msgid "Word Viewer Content"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-word-viewer.php:76
|
||||
msgid "Word URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-word-viewer.php:98
|
||||
msgid "Word Viewer Setting"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-word-viewer.php:206
|
||||
msgid "Word Test File"
|
||||
msgstr ""
|
||||
|
||||
#: public/widgets/bae-word-viewer.php:234
|
||||
msgid "Download Word File"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Document Embedder Addons for Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "You can easily Embed pdf, docs, xlsx, pptx files in wordress post, page, widget area and theme template file."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://bplugins.com"
|
||||
msgstr ""
|
||||
3116
spec/fixtures/dynamic_finders/plugin_version/downloadio/translation_file/languages/downloadio.pot
vendored
Normal file
3116
spec/fixtures/dynamic_finders/plugin_version/downloadio/translation_file/languages/downloadio.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1183
spec/fixtures/dynamic_finders/plugin_version/dozent-lms/translation_file/languages/dozent-lms.pot
vendored
Normal file
1183
spec/fixtures/dynamic_finders/plugin_version/dozent-lms/translation_file/languages/dozent-lms.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,2 @@
|
||||
v1.0.0
|
||||
- Initial Release
|
||||
@@ -0,0 +1,129 @@
|
||||
# Copyright (C) 2021 Navanath Bhosale
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Theme Plugin Switcher 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/easy-theme-plugin-switcher\n"
|
||||
"POT-Creation-Date: 2021-07-24 12:55:05+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 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"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:171
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:172
|
||||
msgid "Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:173
|
||||
msgid "Activate All"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:174
|
||||
msgid "Deactivate All"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:175
|
||||
msgid "Activate Selected"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:176
|
||||
msgid "Deactivate Selected"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:177
|
||||
msgid "Activating"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:178
|
||||
msgid "Deactivating"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:179
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:197
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:240
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:283
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:326
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:380
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:423
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:479
|
||||
msgid "WordPress Nonce not validated."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:204
|
||||
msgid "No theme specified"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:225
|
||||
msgid "Theme Successfully Activated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:247
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:290
|
||||
msgid "No plugin specified"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:268
|
||||
msgid "Plugin Successfully Activated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:311
|
||||
msgid "Plugin Successfully Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:333
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:387
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:430
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:486
|
||||
msgid "No plugins specified"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:365
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:464
|
||||
msgid "Plugins Successfully Activated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:408
|
||||
#: classes/class-easy-theme-plugin-switcher-config.php:518
|
||||
msgid "Plugins Successfully Deactivated"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Easy Theme Plugin Switcher"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/easy-theme-plugin-switcher/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Switch your WP themes, plugins with one click. The plugin will reduce your "
|
||||
"several clicks to one click for theme switching & plugins activations / "
|
||||
"deactivations."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Navanath Bhosale"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,473 @@
|
||||
# Copyright (C) 2021 Rouergue Creation
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Editor Custom Color Palette 1.2\n"
|
||||
"Report-Msgid-Bugs-To: ntickets\n"
|
||||
"POT-Creation-Date: 2021-06-25 13:16+0200\n"
|
||||
"PO-Revision-Date: 2021-07-14 22:27+0200\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: \n"
|
||||
"X-Generator: Poedit 3.0\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Language: fr\n"
|
||||
|
||||
# Traduction editor-custom-color-palette.php
|
||||
# #########################################################
|
||||
#: editor-custom-color-palette.php:786 inc/eccp-multiple-settings.php:1130
|
||||
#: inc/eccp-multiple-settings.php:1122
|
||||
msgid "primary color"
|
||||
msgstr "couleur primaire"
|
||||
|
||||
#: editor-custom-color-palette.php:791 inc/eccp-multiple-settings.php:1188
|
||||
#: inc/eccp-multiple-settings.php:1177
|
||||
msgid "secondary color"
|
||||
msgstr "couleur secondaire"
|
||||
|
||||
#: editor-custom-color-palette.php:796 inc/eccp-multiple-settings.php:1241
|
||||
#: inc/eccp-multiple-settings.php:1230
|
||||
msgid "accent color"
|
||||
msgstr "couleur accent"
|
||||
|
||||
#: editor-custom-color-palette.php:801 inc/eccp-multiple-settings.php:1294
|
||||
#: inc/eccp-multiple-settings.php:1283
|
||||
msgid "title color"
|
||||
msgstr "couleur du titre"
|
||||
|
||||
#: editor-custom-color-palette.php:806 inc/eccp-multiple-settings.php:1347
|
||||
#: inc/eccp-multiple-settings.php:1336
|
||||
msgid "text color"
|
||||
msgstr "couleur du texte"
|
||||
|
||||
#: editor-custom-color-palette.php:811 inc/eccp-multiple-settings.php:1400
|
||||
#: inc/eccp-multiple-settings.php:1389
|
||||
msgid "light off-white"
|
||||
msgstr "blanc cassé clair"
|
||||
|
||||
#: editor-custom-color-palette.php:816 inc/eccp-multiple-settings.php:1453
|
||||
#: inc/eccp-multiple-settings.php:1442
|
||||
msgid "dark off-white"
|
||||
msgstr "blanc cassé fonçé"
|
||||
|
||||
#: editor-custom-color-palette.php:821 inc/eccp-multiple-settings.php:1506
|
||||
#: inc/eccp-multiple-settings.php:1495
|
||||
msgid "white"
|
||||
msgstr "blanc"
|
||||
|
||||
#: editor-custom-color-palette.php:826 inc/eccp-multiple-settings.php:1559
|
||||
#: inc/eccp-multiple-settings.php:1548
|
||||
msgid "green"
|
||||
msgstr "vert"
|
||||
|
||||
#: editor-custom-color-palette.php:831 inc/eccp-multiple-settings.php:1613
|
||||
#: inc/eccp-multiple-settings.php:1602
|
||||
msgid "light green"
|
||||
msgstr "vert pâle"
|
||||
|
||||
#: editor-custom-color-palette.php:836 inc/eccp-multiple-settings.php:1666
|
||||
#: inc/eccp-multiple-settings.php:1655
|
||||
msgid "red"
|
||||
msgstr "rouge"
|
||||
|
||||
#: editor-custom-color-palette.php:841 inc/eccp-multiple-settings.php:1719
|
||||
#: inc/eccp-multiple-settings.php:1708
|
||||
msgid "light yellow"
|
||||
msgstr "jaune pâle"
|
||||
|
||||
#: editor-custom-color-palette.php:905
|
||||
msgid "Small"
|
||||
msgstr "Petite"
|
||||
|
||||
#: editor-custom-color-palette.php:912
|
||||
msgid "Regular"
|
||||
msgstr "Normale"
|
||||
|
||||
#: editor-custom-color-palette.php:919
|
||||
msgid "Large"
|
||||
msgstr "Large"
|
||||
|
||||
#: editor-custom-color-palette.php:926
|
||||
msgid "Huge"
|
||||
msgstr "Énorme"
|
||||
|
||||
# Traduction eccp-admin-menu.php
|
||||
# #########################################################
|
||||
#: eccp-admin-menu.php:32 eccp-admin-menu.php:64
|
||||
msgid "Editor Custom Color Palette General Settings"
|
||||
msgstr "Réglages Généraux Palette de Couleurs Personnalisée de l'Éditeur"
|
||||
|
||||
#: eccp-admin-menu.php:33
|
||||
msgid "ECCP Settings"
|
||||
msgstr "ECCP Réglages"
|
||||
|
||||
#: eccp-admin-menu.php:75
|
||||
msgid "Table of content"
|
||||
msgstr "Table des matières"
|
||||
|
||||
#: eccp-admin-menu.php:77 inc/eccp-multiple-settings.php:117
|
||||
msgid "Default settings"
|
||||
msgstr "Paramètres par défaut"
|
||||
|
||||
#: eccp-admin-menu.php:79 inc/eccp-multiple-settings.php:159
|
||||
msgid "EDITOR COLOR PALETTE GUTENBERG"
|
||||
msgstr "PALETTE DE COULEURS EDITEUR GUTENBERG"
|
||||
|
||||
#: eccp-admin-menu.php:81 inc/eccp-multiple-settings.php:692
|
||||
msgid "EDITOR TEXT SIZES"
|
||||
msgstr "TAILLES DE TEXTE DE L'ÉDITEUR"
|
||||
|
||||
#: eccp-admin-menu.php:83 inc/eccp-multiple-settings.php:769
|
||||
msgid "CUSTOMIZING GUTENBERG EDITOR"
|
||||
msgstr "PERSONNALISATION DE L'ÉDITEUR GUTENBERG"
|
||||
|
||||
#: eccp-admin-menu.php:94
|
||||
msgid "Save Settings"
|
||||
msgstr "Enregistrer les paramètres"
|
||||
|
||||
# Traduction eccp-multiple-settings.php
|
||||
# #################################################################
|
||||
#: inc/eccp-multiple-settings.php:126
|
||||
msgid "initialize the plugin with default settings"
|
||||
msgstr "initialiser le plugin avec les paramètres par défaut"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:135
|
||||
msgid "delete data during uninstallation?"
|
||||
msgstr "supprimer les données lors de la désinstallation?"
|
||||
|
||||
#: eccp-admin-menu.php:81 inc/eccp-multiple-settings.php:169
|
||||
#: inc/eccp-multiple-settings.php:905
|
||||
msgid "customizing color palette"
|
||||
msgstr "personnalisation de la palette de couleurs"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:175 inc/eccp-multiple-settings.php:668
|
||||
#: inc/eccp-multiple-settings.php:681 inc/eccp-multiple-settings.php:707
|
||||
#: inc/eccp-multiple-settings.php:759 inc/eccp-multiple-settings.php:783
|
||||
#: inc/eccp-multiple-settings.php:796 inc/eccp-multiple-settings.php:809
|
||||
#: inc/eccp-multiple-settings.php:823
|
||||
msgid "activate"
|
||||
msgstr "activer"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:182
|
||||
msgid "number of colors in the palette"
|
||||
msgstr "nombre de couleurs dans la palette"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:188
|
||||
msgid "7"
|
||||
msgstr "7"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:189
|
||||
msgid "8"
|
||||
msgstr "8"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:190
|
||||
msgid "9"
|
||||
msgstr "9"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:191
|
||||
msgid "10"
|
||||
msgstr "10"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:192
|
||||
msgid "11"
|
||||
msgstr "11"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:193
|
||||
msgid "12"
|
||||
msgstr "12"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:205
|
||||
msgid "color 1"
|
||||
msgstr "couleur 1"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:243
|
||||
msgid "color 2"
|
||||
msgstr "couleur 2"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:214 inc/eccp-multiple-settings.php:252
|
||||
#: inc/eccp-multiple-settings.php:291 inc/eccp-multiple-settings.php:329
|
||||
#: inc/eccp-multiple-settings.php:367 inc/eccp-multiple-settings.php:405
|
||||
#: inc/eccp-multiple-settings.php:443 inc/eccp-multiple-settings.php:481
|
||||
#: inc/eccp-multiple-settings.php:519 inc/eccp-multiple-settings.php:557
|
||||
#: inc/eccp-multiple-settings.php:595 inc/eccp-multiple-settings.php:633
|
||||
msgid "opacity: 0 to 100"
|
||||
msgstr "opacité: 0 à 100"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:223 inc/eccp-multiple-settings.php:261
|
||||
#: inc/eccp-multiple-settings.php:300 inc/eccp-multiple-settings.php:338
|
||||
#: inc/eccp-multiple-settings.php:376 inc/eccp-multiple-settings.php:414
|
||||
#: inc/eccp-multiple-settings.php:452 inc/eccp-multiple-settings.php:490
|
||||
#: inc/eccp-multiple-settings.php:528 inc/eccp-multiple-settings.php:566
|
||||
#: inc/eccp-multiple-settings.php:604 inc/eccp-multiple-settings.php:642
|
||||
msgid "name"
|
||||
msgstr "nom"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:232 inc/eccp-multiple-settings.php:270
|
||||
#: inc/eccp-multiple-settings.php:309 inc/eccp-multiple-settings.php:347
|
||||
#: inc/eccp-multiple-settings.php:385 inc/eccp-multiple-settings.php:423
|
||||
#: inc/eccp-multiple-settings.php:461 inc/eccp-multiple-settings.php:499
|
||||
#: inc/eccp-multiple-settings.php:537 inc/eccp-multiple-settings.php:575
|
||||
#: inc/eccp-multiple-settings.php:613 inc/eccp-multiple-settings.php:651
|
||||
msgid "slug"
|
||||
msgstr "slug"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:282
|
||||
msgid "color 3"
|
||||
msgstr "couleur 3"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:320
|
||||
msgid "color 4"
|
||||
msgstr "couleur 4"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:358
|
||||
msgid "color 5"
|
||||
msgstr "couleur 5"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:396
|
||||
msgid "color 6"
|
||||
msgstr "couleur 6"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:434
|
||||
msgid "color 7"
|
||||
msgstr "couleur 7"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:472
|
||||
msgid "color 8"
|
||||
msgstr "couleur 8"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:510
|
||||
msgid "color 9"
|
||||
msgstr "couleur 9"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:586
|
||||
msgid "color 11"
|
||||
msgstr "couleur 11"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:624
|
||||
msgid "color 12"
|
||||
msgstr "couleur 12"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:662
|
||||
msgid "disabling custom colors"
|
||||
msgstr "désactiver les couleurs personnalisées"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:675
|
||||
msgid "disabling custom gradients"
|
||||
msgstr "désactiver les dégradés personnalisés"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:701
|
||||
msgid "activate editor text sizes setting"
|
||||
msgstr "activer le réglage des tailles de texte de l'éditeur"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:716
|
||||
msgid "font size: small in pixel"
|
||||
msgstr "taille de la police: petite en pixel"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:725
|
||||
msgid "font size: normal in pixel"
|
||||
msgstr "taille de la police: normale en pixel"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:734
|
||||
msgid "font size: large in pixel"
|
||||
msgstr "taille de la police: large en pixel"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:743
|
||||
msgid "font size: huge in pixel"
|
||||
msgstr "taille de la police: énorme en pixel"
|
||||
|
||||
#: eccp-admin-menu.php:86 inc/eccp-multiple-settings.php:753
|
||||
#: inc/eccp-multiple-settings.php:1835
|
||||
msgid "Disable the custom font size"
|
||||
msgstr "Désactiver la taille de police personnalisée"
|
||||
|
||||
#: eccp-admin-menu.php:91 inc/eccp-multiple-settings.php:777
|
||||
#: inc/eccp-multiple-settings.php:948
|
||||
msgid "disable fullscreen mode of Gutenberg editor"
|
||||
msgstr "désactiver le mode plein écran de l'éditeur Gutenberg"
|
||||
|
||||
#: eccp-admin-menu.php:93 inc/eccp-multiple-settings.php:790
|
||||
#: inc/eccp-multiple-settings.php:1873
|
||||
msgid "activate the default style sheet of Gutenberg blocks on Front End"
|
||||
msgstr "activer la feuille de style par défaut des blocs Gutenberg sur Front End"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:803
|
||||
msgid "align wide option for the block editor"
|
||||
msgstr "option alignement large pour l'éditeur de blocs"
|
||||
|
||||
#: eccp-admin-menu.php:97 inc/eccp-multiple-settings.php:817
|
||||
#: inc/eccp-multiple-settings.php:1906
|
||||
msgid "responsive embeds(for example integration vidéos YouTube)"
|
||||
msgstr "embeds responsive(par exemple intégration de vidéos YouTube)"
|
||||
|
||||
#: eccp-admin-menu.php:103 inc/eccp-multiple-settings.php:836
|
||||
msgid "ADDONS REUSABLE BLOCKS"
|
||||
msgstr "ADDONS BLOCS RÉUTILISABLES"
|
||||
|
||||
#: eccp-admin-menu.php:105 inc/eccp-multiple-settings.php:976
|
||||
msgid "Introduction"
|
||||
msgstr "Introduction"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:977
|
||||
msgid "More blocks for Gutenberg editor"
|
||||
msgstr "Plus de blocs pour l'éditeur Gutenberg"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:979
|
||||
msgid "In this section you can download reusable blocks in json format."
|
||||
msgstr "Dans cette section vous pouvez télécharger des blocs réutilisables au format json."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:981
|
||||
msgid "You must first install the extension:"
|
||||
msgstr "Vous devez au préalable installer l'extension:"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:983
|
||||
msgid "After install Settings menu/Kadence Blocks:"
|
||||
msgstr "Après installation menu Réglages/Kadence Blocks:"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:985
|
||||
msgid "Choose whether or not to enable the option: Match the width of the editor to the width of your sites."
|
||||
msgstr "Choisisez d'activer ou non l'option: Faites correspondre la largeur de l'éditeur à la largeur de vos sites."
|
||||
|
||||
#: eccp-admin-menu.php:108 inc/eccp-multiple-settings.php:998
|
||||
msgid "Manage reusable blocks"
|
||||
msgstr "Gérer les blocs réutilisables"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1004
|
||||
msgid "• Access to the menu for reusable block management is done directly from the Gutenberg editor."
|
||||
msgstr "• L'accès au menu pour la gestion des blocs réutilisables se fait directement a partir de l'editeur Gutenberg."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1006
|
||||
msgid "• Click on Import from JSON and select the JSON file and after refresh the screen key F5."
|
||||
msgstr "• Cliquez sur Importer depuis le JSON et sélectionnez le fichier JSON,après rafraichissez l'ecran touche F5."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1008
|
||||
msgid "• Now in the Gutenberg editor click on the + icon to add a block from the reusable blocks tab."
|
||||
msgstr "• Maintenant a partir de l'editeur Gutenberg cliquer sur l'icone + pour ajouter un bloc depuis l'onglet blocs réutilisables."
|
||||
|
||||
#: eccp-admin-menu.php:110 inc/eccp-multiple-settings.php:1014
|
||||
msgid "Download advice block"
|
||||
msgstr "Télécharger le bloc conseil"
|
||||
|
||||
#: eccp-admin-menu.php:112 inc/eccp-multiple-settings.php:1028
|
||||
msgid "Download information block"
|
||||
msgstr "Télécharger le bloc information"
|
||||
|
||||
#: eccp-admin-menu.php:114 inc/eccp-multiple-settings.php:1040
|
||||
msgid "Download warning block"
|
||||
msgstr "Télécharger le bloc attention"
|
||||
|
||||
#: eccp-admin-menu.php:116 inc/eccp-multiple-settings.php:1052
|
||||
msgid "Download alert block"
|
||||
msgstr "Télécharger le bloc alerte"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:885
|
||||
msgid "Customize the color palette"
|
||||
msgstr "Personnaliser la palette de couleurs"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:887
|
||||
msgid "You can customize a palette of twelve colors."
|
||||
msgstr "Vous pouvez personnaliser une palette de douze couleurs."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:889
|
||||
msgid "The color is defined in hexadecimal,the opacity allows to apply an RGBA color."
|
||||
msgstr "La couleur est définie en hexadécimal,l'opacité permet d'appliquer une couleur RGBA."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:891
|
||||
msgid "Choose a simple name for the color, max 25 characters alphanumeric."
|
||||
msgstr "Choisissez un nom simple pour la couleur, max 25 caractères alphanumérique."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:893
|
||||
msgid "The slug is automatically created from the name of the color and allows the style to be applied in the front end."
|
||||
msgstr "Le slug est automatiquement créé à partir du nom de la couleur et permet d'appliquer le style sur le front-end."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:895
|
||||
msgid "two options allow:"
|
||||
msgstr "deux options permettent :"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:897
|
||||
msgid "• Disabling custom colors"
|
||||
msgstr "• Désactivation des couleurs personnalisées(Custom color)"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:899
|
||||
msgid "• Disabling custom gradients"
|
||||
msgstr "• Désactivation des dégradés personnalisés(Gradient)"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:914
|
||||
msgid "Customize the text sizes proposed in the paragraph"
|
||||
msgstr "Personnaliser les tailles de texte proposées dans le paragraphe"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:916
|
||||
msgid "When you add a paragraph, an option allows you to choose the size of the text: small,regular,large,huge."
|
||||
msgstr "Lorsque vous ajoutez un paragraphe, une option vous permet de choisir la taille du texte : petite, normale, large, énorme."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:918
|
||||
msgid "The style is then applied to the paragraph, both in the editor and on the Front End."
|
||||
msgstr "Le style est ensuite appliqué au paragraphe, à la fois dans l'éditeur et sur le Front End."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:920
|
||||
msgid "In order to better control this option, you will be able to choose the corresponding sizes."
|
||||
msgstr "Afin de mieux maîtriser cette option,vous pouvez choisir les tailles correspondantes."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:922
|
||||
msgid "Added option:"
|
||||
msgstr "Ajout de l'option :"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:924
|
||||
msgid "• Disable custom font size"
|
||||
msgstr "• Désactiver la taille de police personnalisée"
|
||||
|
||||
#: eccp-admin-menu.php:88 inc/eccp-multiple-settings.php:932
|
||||
msgid "Customize the text sizes"
|
||||
msgstr "Personnaliser les tailles de texte"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:938
|
||||
msgid "Customize Gutenberg editor"
|
||||
msgstr "Personnaliser l'éditeur Gutenberg"
|
||||
|
||||
#: eccp-admin-menu.php:95 inc/eccp-multiple-settings.php:940
|
||||
#: inc/eccp-multiple-settings.php:1888
|
||||
msgid "align wide option for the block editor:"
|
||||
msgstr "option d'alignement large pour l'éditeur de blocs :"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:942
|
||||
msgid "Some blocks such as the image block have the possibility to define a wide or full alignment."
|
||||
msgstr "Certains blocs comme le bloc image ont la possibilité de définir un alignement large ou pleine largeur."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:944
|
||||
msgid "Not all themes take these styles into account."
|
||||
msgstr "Tous les thèmes ne prennent pas en compte ces styles."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:995 inc/eccp-multiple-settings.php:998
|
||||
#: inc/eccp-multiple-settings.php:1018 inc/eccp-multiple-settings.php:1021
|
||||
msgid "no"
|
||||
msgstr "non"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1009 inc/eccp-multiple-settings.php:1032
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1070
|
||||
msgid "Choose an option"
|
||||
msgstr "Sélectionner une option"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1082
|
||||
msgid "According to your choice for the number of color."
|
||||
msgstr "Selon votre choix pour le nombre de couleur."
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1084
|
||||
msgid "Choice of 7 colors: enter colors 1 to 7 below"
|
||||
msgstr "Choix de 7 couleurs : entrez les couleurs 1 à 7 ci-dessous"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1086
|
||||
msgid "Choice of 8 colors: enter colors 1 to 8 below"
|
||||
msgstr "Choix de 8 couleurs : entrez les couleurs 1 à 8 ci-dessous"
|
||||
|
||||
#: inc/eccp-multiple-settings.php:1088
|
||||
msgid "etc ..."
|
||||
msgstr "etc ..."
|
||||
|
||||
#: eccp-admin-menu.php:81 inc/eccp-multiple-settings.php:1733
|
||||
msgid "Disabling custom colors & gradients"
|
||||
msgstr "Désactiver les couleurs et dégradés personnalisés"
|
||||
968
spec/fixtures/dynamic_finders/plugin_version/eidlogin/translation_file/languages/eidlogin-de_DE.po
vendored
Normal file
968
spec/fixtures/dynamic_finders/plugin_version/eidlogin/translation_file/languages/eidlogin-de_DE.po
vendored
Normal file
@@ -0,0 +1,968 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eID-Login 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/eid-login-"
|
||||
"wordpress\n"
|
||||
"POT-Creation-Date: 2021-08-04T10:30:03+02:00\n"
|
||||
"PO-Revision-Date: 2021-08-04 10:30+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Domain: eidlogin\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "eID-Login"
|
||||
msgstr "eID-Login"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://eid.services/eidlogin/wordpress"
|
||||
msgstr "https://eid.services/eidlogin/wordpress"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"The eID-Login plugin allows to use the German eID-card and similar "
|
||||
"electronic identity documents for <strong>secure and privacy-friendly login</"
|
||||
"strong> to WordPress. For this purpose, a so-called eID-Client, such as the "
|
||||
"AusweisApp2 or the Open eCard App and eID-Service are required. In the "
|
||||
"default configuration a suitable eID-Service is provided without any "
|
||||
"additional costs."
|
||||
msgstr ""
|
||||
"Mit dem eID-Login Plugin kann die Online-Ausweisfunktion (u.a. vom "
|
||||
"Personalausweis) für eine <strong>sichere und datenschutzfreundliche "
|
||||
"Anmeldung</strong> an WordPress verwendet werden. Hierfür wird auf dem "
|
||||
"System des Benutzers ein so genannter eID-Client, wie z.B. die AusweisApp2 "
|
||||
"oder die Open eCard App, und ein eID-Service benötigt. In der "
|
||||
"Standardkonfiguration steht ein geeigneter eID-Service kostenfrei zur "
|
||||
"Verfügung."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ecsec GmbH"
|
||||
msgstr "ecsec GmbH"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.ecsec.de"
|
||||
msgstr "https://www.ecsec.de"
|
||||
|
||||
#: admin/class-eidlogin-admin.php:199
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: admin/class-eidlogin-admin.php:211
|
||||
msgid "Settings › eID-Login"
|
||||
msgstr "Einstellungen › eID-Login"
|
||||
|
||||
#: admin/class-eidlogin-rest.php:159
|
||||
msgid "The activation checkbox is missing."
|
||||
msgstr "Die Aktivierungs-Checkbox fehlt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:163
|
||||
msgid "The EntityID of the Service Provider is missing."
|
||||
msgstr "Die EntityID des Service Providers fehlt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:167
|
||||
msgid "The enforce encryption parameter is missing."
|
||||
msgstr "Der Parameter zur erzwungenen Verschlüsselung fehlt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:171
|
||||
msgid "The EntityID of the Identity Provider is missing."
|
||||
msgstr "Die EntityID des Identity Providers fehlt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:175
|
||||
msgid "Invalid Single Sign-On URL of the Identity Provider."
|
||||
msgstr "Ungültige Identity Provider Single Sign-On URL."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:179
|
||||
msgid "The Signature Certificate of the Identity Provider is missing."
|
||||
msgstr "Das Signatur-Zertifikat des Identity Providers fehlt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:183
|
||||
msgid "The Encryption Certificate of the Identity Provider is missing."
|
||||
msgstr "Das Verschlüsselungszertifikat des Identity Providers fehlt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:187
|
||||
msgid "The AuthnRequestExtension XML element is no valid XML."
|
||||
msgstr "Das AuthnRequestExtension XML-Element ist kein valides XML."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:191
|
||||
msgid "The value of the confirmation dialog is missing."
|
||||
msgstr "Der Wert aus dem Bestätigungsdialog fehlt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:319
|
||||
msgid "Settings have been saved."
|
||||
msgstr "Die Einstellungen wurden gespeichert."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:327
|
||||
msgid "Settings have been reset."
|
||||
msgstr "Die Einstellungen wurden zurückgesetzt."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:413
|
||||
msgid "Certificate Rollover has been prepared."
|
||||
msgstr "Zertifikatswechsel erfolgreich vorbereitet."
|
||||
|
||||
#: admin/class-eidlogin-rest.php:441
|
||||
msgid "Certificate Rollover has been executed."
|
||||
msgstr "Zertifikatswechsel erfolgreich durchgeführt."
|
||||
|
||||
#: db/class-eidlogin-user.php:107
|
||||
msgid "Cannot save eID for the current user."
|
||||
msgstr "Die eID konnte für den aktuellen Benutzer nicht gespeichert werden."
|
||||
|
||||
#. Translators: %s: the type of the certificate (signature or encryption)
|
||||
#: includes/class-eidlogin-certificates.php:262
|
||||
msgid "The %s of the Identity Provider could not be read."
|
||||
msgstr "Das %s des Identity Providers konnte nicht gelesen werden."
|
||||
|
||||
#. Translators: %1$s The type of the certificate (signature or encryption) and %2$s the minimal valid key length
|
||||
#: includes/class-eidlogin-certificates.php:285
|
||||
msgid ""
|
||||
"The %1$s of the Identity Provider has an insufficient public key length. The "
|
||||
"minimal valid key length is %2$s."
|
||||
msgstr ""
|
||||
"Das %1$s des Identity Providers beinhaltet einen öffentlichen Schlüssel "
|
||||
"unzureichender Länge. Die minimal gültige Schlüssellänge ist %2$s."
|
||||
|
||||
#: includes/class-eidlogin-helper.php:126
|
||||
msgid "Signature Certificate"
|
||||
msgstr "Signaturzertifikat"
|
||||
|
||||
#: includes/class-eidlogin-helper.php:141
|
||||
msgid "Encryption Certificate"
|
||||
msgstr "Verschlüsselungszertifikat"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:45
|
||||
msgid "Overview"
|
||||
msgstr "Überblick"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:46
|
||||
msgid "Select IdP"
|
||||
msgstr "IdP wählen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:47
|
||||
msgid "Configure IdP"
|
||||
msgstr "IdP konfigurieren"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:48
|
||||
msgid "Connect eID"
|
||||
msgstr "eID verknüpfen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:49
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:50
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:51
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:52
|
||||
msgid "Next"
|
||||
msgstr "Weiter"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:55
|
||||
msgid "What is the eID-Login plugin?"
|
||||
msgstr "Was ist das eID-Login Plugin?"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:56
|
||||
msgid ""
|
||||
"The eID-Login plugin enables users to login to WordPress using an <b>eID-"
|
||||
"Card</b>, i.e. the <a href=\"https://www.personalausweisportal.de/Webs/PA/EN/"
|
||||
"citizens/electronic-identification/electronic-identification-node.html\" "
|
||||
"target=\"_blank\">eID function</a> of the German Identity Card. For the "
|
||||
"connection of an eID to their WordPress account and the eID based login, "
|
||||
"users need an <b>eID-Client</b>, this means an application like AusweisApp2 "
|
||||
"or the Open e-Card App."
|
||||
msgstr ""
|
||||
"Das eID-Login Plugin ermöglicht Nutzern die Anmeldung an WordPress mit einer "
|
||||
"<b>eID-Karte</b> z.B. der <a href=\"https://www.personalausweisportal.de/"
|
||||
"Webs/PA/DE/buergerinnen-und-buerger/online-ausweisen/online-ausweisen-node."
|
||||
"html\" target=\"_blank\">Online-Ausweisfunktion</a> des Personalausweises. "
|
||||
"Für die Verknüpfung der eID mit dem Nutzerkonto bei WordPress, sowie für die "
|
||||
"Anmeldung mittels eID benötigen die Nutzer einen <b>eID-Client</b>, d.h. "
|
||||
"eine Anwendung wie z.B. die AusweisApp2 oder die Open e-Card App."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:57
|
||||
msgid ""
|
||||
"By using the German eID card (or another eID) and the associated PIN code "
|
||||
"the eID-Login provides a secure alternative to the login using username and "
|
||||
"password."
|
||||
msgstr ""
|
||||
"Durch die Verwendung der Online-Ausweisfunktion des Personalausweises (bzw. "
|
||||
"einer anderen eID) und der zugehörigen selbstgewählten PIN stellt der eID-"
|
||||
"Login eine sicherere Alternative zur Anmeldung mit Benutzername und Passwort "
|
||||
"dar."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:58
|
||||
msgid ""
|
||||
"<b>Important!</b> When using the eID-Login plugin in it`s default "
|
||||
"configuration, no personal data from the eID card will be read. Only the <a "
|
||||
"href=\"https://www.personalausweisportal.de/SharedDocs/faqs/Webs/PA/DE/"
|
||||
"Haeufige-Fragen/9_pseudonymfunktikon/pseudonymfunktion-liste.html\" target="
|
||||
"\"_blank\">pseudonym function</a> of the eID is being used. If any other "
|
||||
"data is being read, the user will be informed about it."
|
||||
msgstr ""
|
||||
"<b>Wichtig!</b> Bei der Verwendung des eID-Logins werden in der "
|
||||
"Standardkonfiguration keine persönlichen Daten aus dem Personalausweis "
|
||||
"ausgelesen. Stattdessen wird die <a href=\"https://www.personalausweisportal."
|
||||
"de/SharedDocs/faqs/Webs/PA/DE/Haeufige-Fragen/9_pseudonymfunktikon/"
|
||||
"pseudonymfunktion-liste.html\" target=\"_blank\">Pseudonymfunktion</a> des "
|
||||
"Ausweises verwendet. Werden davon abweichend weitere Daten ausgelesen, so "
|
||||
"wird der Benutzer darüber informiert."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:59
|
||||
msgid "Setup with SkIDentity as Identity Provider"
|
||||
msgstr "Einrichtung mit SkIDentity als Identity Provider"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:60
|
||||
msgid ""
|
||||
"The easiest way to setup the eID-Login plugin is by using the <a href="
|
||||
"\"https://skidentity.com/\" target=\"_blank\">SkIDentity Service</a> which "
|
||||
"has been preconfigured for ease of use. For the default setup, which means "
|
||||
"only using the pseudonym function, no costs incur. The only requirement is "
|
||||
"the <a href=\"https://sp.skidentity.de/\" target=\"_blank\">registration</a> "
|
||||
"at SkIDentity."
|
||||
msgstr ""
|
||||
"Die einfachste Art das eID-Login Plugin einzurichten ist die Verwendung des "
|
||||
"<a href=\"https://skidentity.de/\" target=\"_blank\">SkIDentity Service</"
|
||||
"a> , welcher bereits für die unkomplizierte Nutzung vorkonfiguriert ist. Für "
|
||||
"die Standardkonfiguration, bei der die Pseudonymfunktion bei der Anmeldung "
|
||||
"verwendet wird, fallen keine Kosten an. Einzige Voraussetzung ist die <a "
|
||||
"href=\"https://sp.skidentity.de/\" target=\"_blank\">Registrierung</a> bei "
|
||||
"SkIDentity."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:61
|
||||
msgid "Setup with another Identity Provider"
|
||||
msgstr "Einrichtung mit einem anderen Identity Provider"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:62
|
||||
msgid ""
|
||||
"For the eID-Login any Identity Provider using the SAML protocol for "
|
||||
"communication with WordPress can be used. Beyond that any service providing "
|
||||
"an eID-Server according to <a href=\"https://www.bsi.bund.de/DE/Themen/"
|
||||
"Unternehmen-und-Organisationen/Standards-und-Zertifizierung/Technische-"
|
||||
"Richtlinien/TR-nach-Thema-sortiert/tr03130/TR-03130_node.html\" target="
|
||||
"\"_blank\">BSI TR-03130</a> (also based on SAML) can be used."
|
||||
msgstr ""
|
||||
"Es können für den eID-Login alle Identity Provider angebunden werden, welche "
|
||||
"das SAML Protokoll nutzen, um mit WordPress zu kommunizieren. Darüber hinaus "
|
||||
"ist die Nutzung von Diensten möglich, die einen eID-Server gemäß <a href="
|
||||
"\"https://www.bsi.bund.de/DE/Themen/Unternehmen-und-Organisationen/Standards-"
|
||||
"und-Zertifizierung/Technische-Richtlinien/TR-nach-Thema-sortiert/tr03130/"
|
||||
"TR-03130_node.html\" target=\"_blank\">BSI TR-03130</a> zur Verfügung "
|
||||
"stellen, welcher auch auf SAML basiert."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:63
|
||||
msgid "Technical background information"
|
||||
msgstr "Technischer Hintergrund"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:64
|
||||
msgid ""
|
||||
"The eID-Login plugin uses the SAML protocol to let users login into "
|
||||
"WordPress via an external service (Identity Provider) using an eID."
|
||||
msgstr ""
|
||||
"Das eID-Login Plugin nutzt das SAML Protokoll, damit sich Benutzer Ihrer "
|
||||
"WordPress-Instanz über einen externen Dienst (Identity Provider) unter "
|
||||
"Nutzung der Online-Ausweisfunktion anmelden können."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:65
|
||||
msgid "The SAML protocol defines two major and collaborating entities:"
|
||||
msgstr "Das SAML Protokoll definiert die folgenden beiden Entitäten:"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:66
|
||||
msgid ""
|
||||
"<b>Service Provider (SP)</b>: An entity which provides any kind of service "
|
||||
"over the web. In the scope of the eID-Login plugin this is your WordPress "
|
||||
"instance, which contains a SAML Service Provider component."
|
||||
msgstr ""
|
||||
"<b>Service Provider (SP)</b>: Eine Entität, welche einen Dienst über das Web "
|
||||
"bereitstellt. Im Rahmen des eID-Login Plugins ist es Ihre WordPress-Instanz, "
|
||||
"welche eine SAML Service Provider Komponente enthält."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:67
|
||||
msgid ""
|
||||
"<b>Identity Provider (IdP)</b>: An entity which authenticates the User and "
|
||||
"returns a corresponding assertion to the Service Provider. In the scope of "
|
||||
"the eID-Login plugin this can be any standard compliant SAML Identity "
|
||||
"Provider which supports eID-based authentication, for example the <a href="
|
||||
"\"https://skidentity.com/\" target=\"_blank\">SkIDentity Service</a>."
|
||||
msgstr ""
|
||||
"<b>Identity Provider (IdP)</b>: Eine Entität, welche den Benutzer "
|
||||
"authentifiziert und eine entsprechende Bestätigung (Assertion) an den "
|
||||
"Service Provider zurück gibt. Im Rahmen des eID-Login Plugins kann dies "
|
||||
"jeder zum SAML-Standard kompatible Identity Provider sein, welcher eID-"
|
||||
"basierte Authentisierung unterstützt, wie zum Beispiel der <a href=\"https://"
|
||||
"skidentity.de/\" target=\"_blank\">SkIDentity Service</a>."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:68
|
||||
msgid "The eID-Login procedure comprises the following steps:"
|
||||
msgstr "Der eID-Login Prozess besteht aus folgenden Schritten:"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:69
|
||||
msgid "The User initiates the login procedure at the Service Provider."
|
||||
msgstr "Der Benutzer initiert den Anmeldevorgang am Service Provider."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:70
|
||||
msgid ""
|
||||
"The Service Provider creates a SAML authentication request (<AuthnRequest>) "
|
||||
"and sends it together with the User via redirect to the Identity Provider."
|
||||
msgstr ""
|
||||
"Der Service Provider erstellt eine SAML Authentisierungsanfrage "
|
||||
"(<AuthnRequest>) und sendet diese zusammen mit dem Benutzer über einen "
|
||||
"Redirect an den Identity Provider."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:71
|
||||
msgid ""
|
||||
"The Identity Provider authenticates the User using her eID via an eID-Client."
|
||||
msgstr ""
|
||||
"Der Identity Provider authentifiziert den Benutzer über einen eID-Client "
|
||||
"unter Verwendung der eID."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:72
|
||||
msgid ""
|
||||
"The Identity Provider returns the result of the authentication procedure to "
|
||||
"the Service Provider (<Response>)."
|
||||
msgstr ""
|
||||
"Der Identity Provider gibt das Ergebnis der Authentifizierung an den Service "
|
||||
"Provider zurück (<Response>)."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:73
|
||||
msgid ""
|
||||
"The Service Provider validates the provided response and logs in the User in "
|
||||
"case of success."
|
||||
msgstr ""
|
||||
"Der Service Provider validiert das erhaltene Ergebnis und meldet im "
|
||||
"Erfolgsfall den Benutzer an."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:76
|
||||
msgid ""
|
||||
"The eID-Login plugin offers an alternative way of login for the registered "
|
||||
"users of your WordPress instance, using their electronic identity (<b>eID</"
|
||||
"b>). For example the German eID can then be used for a secure login."
|
||||
msgstr ""
|
||||
"Das eID-Login Plugin ermöglicht eine alternative Anmeldung für registrierte "
|
||||
"Benutzer Ihrer WordPress-Instanz mittels einer elektronischen Identität "
|
||||
"(<b>eID</b>). Benutzer können sich dann z.B. mit der Online-Ausweisfunktion "
|
||||
"ihres Personalausweises auf sichere Weise anmelden."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:77
|
||||
msgid "Setup of the eID-Login plugin consists of three steps:"
|
||||
msgstr "Die Einrichtung des eID-Login Plugins erfolgt in drei Schritten:"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:78 includes/class-eidlogin-i18n.php:88
|
||||
msgid "Select Identity Provider"
|
||||
msgstr "Identity Provider wählen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:79
|
||||
msgid ""
|
||||
"For the usage of the eID-Login plugin a service which makes the eID "
|
||||
"accessible is needed. This service is called <b>Identity Provider</b> or in "
|
||||
"short <b>IdP</b>. You can choose to use the preconfigured <a target=\"_blank"
|
||||
"\" href=\"https://skidentity.com\">SkIDentity</a> service or select another "
|
||||
"service."
|
||||
msgstr ""
|
||||
"Für die Nutzung des eID-Login Plugins wird ein Dienst benötigt, der die eID "
|
||||
"zugänglich macht. Dieser wird als <b>Identity Provider</b> oder kurz <b>IdP</"
|
||||
"b> bezeichnet. Sie haben die Möglichkeit den <a target=\"_blank\" href="
|
||||
"\"https://skidentity.de\">SkIDentity</a> Dienst mit Voreinstellungen zu "
|
||||
"nutzen oder einen anderen Dienst zu wählen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:80
|
||||
msgid "Configuration at the Identity Provider"
|
||||
msgstr "Konfiguration am Identity Provider"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:81
|
||||
msgid ""
|
||||
"At the Identity Provider your WordPress instance, which serves as <b>Service "
|
||||
"Provider</b>, must be registered. The process of registration depends on the "
|
||||
"respective Identity Provider. The information needed for registration is "
|
||||
"provided in step 2."
|
||||
msgstr ""
|
||||
"Beim Identity Provider muss Ihre WordPress-Instanz, die als <b>Service "
|
||||
"Provider</b> dient, eingetragen werden. Das exakte Vorgehen ist vom "
|
||||
"jeweiligen Anbieter abhängig. Die benötigten Informationen werden Ihnen in "
|
||||
"Schritt 2 bereitgestellt."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:82
|
||||
msgid ""
|
||||
"In order to use a German eID (\"Personalausweis\") or another eID for the "
|
||||
"login at WordPress, the eID must be connected to an user account."
|
||||
msgstr ""
|
||||
"Um sich künftig mit dem Personalausweis oder einer anderen eID bei WordPress "
|
||||
"anmelden zu können, muss diese noch mit dem Nutzerkonto verknüpft werden."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:83
|
||||
msgid ""
|
||||
"Please click on the (?) icon for help regarding the setup or more "
|
||||
"information."
|
||||
msgstr ""
|
||||
"Klicken Sie auf das (?) Icon für Hilfe bei der Einrichtung oder für weitere "
|
||||
"Informationen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:84
|
||||
msgid "Continue with SkIDentity"
|
||||
msgstr "Weiter mit SkIDentity"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:85
|
||||
msgid "Continue with another IdP"
|
||||
msgstr "Weiter mit anderem IdP"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:89
|
||||
msgid "Select an Identity Provider. It must support the SAML protocol."
|
||||
msgstr ""
|
||||
"Wählen Sie einen Identity Provider. Dieser muss das SAML-Protokoll "
|
||||
"unterstützen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:90
|
||||
msgid ""
|
||||
"Insert the Identity Providers Metadata URL in the respective form field and "
|
||||
"assign an Entity ID, which must be used for the configuration of the "
|
||||
"Identity Provider in the next step."
|
||||
msgstr ""
|
||||
"Tragen Sie dessen Metadaten URL in das entsprechende Feld ein und bestimmen "
|
||||
"Sie die EntityID, die Sie im nächsten Schritt bei Ihrem Identity Provider "
|
||||
"eintragen müssen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:91
|
||||
msgid "Identity Provider Metadata URL"
|
||||
msgstr "Identity Provider Metadaten URL"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:92
|
||||
msgid ""
|
||||
"When inserting the Metadata URL, the values in the advanced settings will be "
|
||||
"updated. Alternatively the advanced settings can be inserted by hand."
|
||||
msgstr ""
|
||||
"Durch das Eintragen der Metadaten URL werden die Werte in den "
|
||||
"fortgeschrittenen Einstellungen aktualisiert. Alternativ können Sie die "
|
||||
"fortgeschrittenen Einstellungen von Hand anpassen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:93
|
||||
msgid "Service Provider EntityID"
|
||||
msgstr "Service Provider EntityID"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:94
|
||||
msgid "Usually the domain of your WordPress instance is used."
|
||||
msgstr "Üblicherweise wird die Domain Ihrer WordPress-Instanz genutzt."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:95 includes/class-eidlogin-i18n.php:132
|
||||
msgid ""
|
||||
"Enforce encryption of SAML assertions (Check only if the selected Identity "
|
||||
"Provider supports this feature!)"
|
||||
msgstr ""
|
||||
"Verschlüsselung von Authentifizierungsanworten erzwingen (Aktivieren Sie "
|
||||
"diese Option nur, wenn dies vom Identity Provider unterstützt wird!)"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:96
|
||||
msgid "Edit Advanced Settings"
|
||||
msgstr "Fortgeschrittene Einstellungen bearbeiten"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:99 admin/js/eidlogin-admin.js:67
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Fortgeschrittene Einstellungen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:100 includes/class-eidlogin-i18n.php:136
|
||||
msgid ""
|
||||
"URL of the Identity Provider to which the SAML authentication request will "
|
||||
"be sent."
|
||||
msgstr ""
|
||||
"URL des Identity Provider zu welcher die SAML Authentisierungsanfrage "
|
||||
"gesendet wird."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:101
|
||||
msgid "Signature Certificate of the Identity Provider"
|
||||
msgstr "Signatur-Zertifikat des Identity Provider"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:102
|
||||
msgid "Certificate to validate the signature of the authentication response."
|
||||
msgstr ""
|
||||
"Zertifikat um die Signatur der Authentifizierungsantwort zu validieren."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:103
|
||||
msgid "Encryption Certificate of the Identity Provider"
|
||||
msgstr "Verschlüsselungszertifikat des Identity Provider"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:104
|
||||
msgid ""
|
||||
"Certificate to encrypt the authentication request. Omitting the element "
|
||||
"means that the SAML requests are not encrypted."
|
||||
msgstr ""
|
||||
"Zertifikat um die Authentisierungsanfrage zu verschlüsseln. Falls kein Wert "
|
||||
"eingetragen ist, so werden Anfragen nicht verschlüsselt."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:105
|
||||
msgid "AuthnRequestExtension XML element"
|
||||
msgstr "AuthnRequestExtension XML Element"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:106
|
||||
msgid ""
|
||||
"For a connection according to <a href=\"https://www.bsi.bund.de/SharedDocs/"
|
||||
"Downloads/DE/BSI/Publikationen/TechnischeRichtlinien/TR03130/TR-03130_TR-eID-"
|
||||
"Server_Part1.pdf?__blob=publicationFile&v=1\" target=\"_blank\">BSI "
|
||||
"TR-03130</a>, the corresponding <AuthnRequestExtension> XML element must be "
|
||||
"inserted here."
|
||||
msgstr ""
|
||||
"Um eine Verbindung gemäß <a href=\"https://www.bsi.bund.de/SharedDocs/"
|
||||
"Downloads/DE/BSI/Publikationen/TechnischeRichtlinien/TR03130/TR-03130_TR-eID-"
|
||||
"Server_Part1.pdf?__blob=publicationFile&v=1\" target=\"_blank\">BSI "
|
||||
"TR-03130</a> zu nutzen, muss das entsprechende <AuthnRequestExtension> XML "
|
||||
"Element hier eingetragen werden."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:109
|
||||
msgid ""
|
||||
"Now go to the selected Identity Provider and use the following data to "
|
||||
"register the Service Provider there:"
|
||||
msgstr ""
|
||||
"Gehen Sie jetzt zum ausgewählten Identity Provider und nutzen Sie die "
|
||||
"folgenden Daten, um den Service Provider dort einzutragen:"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:110
|
||||
msgid ""
|
||||
"You have selected SkIDentity. Click the button to the right to go to "
|
||||
"SkIDentity."
|
||||
msgstr ""
|
||||
"Sie haben SkIDentity ausgewählt. Klicken Sie den Button rechts um zu "
|
||||
"SkIDentity zu gelangen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:111
|
||||
msgid "Open SkIDentity"
|
||||
msgstr "SkIDentity öffnen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:112
|
||||
msgid "The metadata as provided by the Service Provider at the URL"
|
||||
msgstr "Die Service Provider Metadaten, auch bereitgestellt unter"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:115
|
||||
msgid ""
|
||||
"To use the eID-Login, the eID must be connected to the user account. For "
|
||||
"this you need an eID-Card, like the German eID, a suitable cardreader and an "
|
||||
"active eID-Client (for example <a href=\"https://www.openecard.org/en/"
|
||||
"download/pc/\" target=\"_blank\">Open eCard-App</a> or <a href=\"https://www."
|
||||
"ausweisapp.bund.de/ausweisapp2/\" target=\"_blank\">AusweisApp2</a>). After "
|
||||
"establishing the connection the eID-Login can be used with the button on the "
|
||||
"login page."
|
||||
msgstr ""
|
||||
"Um den eID-Login nutzen zu können, muss die eID mit dem Konto verknüpft "
|
||||
"werden. Dafür benötigt man eine eID-Karte, z.B. einen Personalausweis, einen "
|
||||
"geeigneten Kartenleser und einen gestarteten eID-Client (z.B. <a href="
|
||||
"\"https://www.openecard.org/en/download/pc/\" target=\"_blank\">Open eCard-"
|
||||
"App</a> oder <a href=\"https://www.ausweisapp.bund.de/ausweisapp2/\" target="
|
||||
"\"_blank\">AusweisApp2</a>). Nach der Verknüpfung kann der eID-Login mit dem "
|
||||
"entsprechenden Button auf der Anmeldeseite verwendet werden."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:116
|
||||
msgid ""
|
||||
"You can connect your account with an eID now. This step is optional and can "
|
||||
"be done and reverted any time later in your personal settings under the "
|
||||
"security section."
|
||||
msgstr ""
|
||||
"Sie können Ihr Konto nun mit Ihrer eID verknüpfen. Dieser Schritt ist "
|
||||
"optional und kann jederzeit später im Bereich 'Sicherheit' der persönlichen "
|
||||
"'Einstellungen' erfolgen und rückgängig gemacht werden."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:117
|
||||
msgid ""
|
||||
"<b>Please note</b>: After connecting the eID or finishing the wizard, this "
|
||||
"page will show a form for direct access to the eID-Login settings. To use "
|
||||
"the wizard again, reset the settings of the eID-Login plugin."
|
||||
msgstr ""
|
||||
"<b>Bitte beachten Sie</b>: Nach dem Erstellen der Verknüpfung oder dem "
|
||||
"Abschließen der Konfiguration wird auf dieser Seite ein Formular für den "
|
||||
"direkten Zugriff auf die eID-Login Konfiguration angezeigt. Um den Wizard "
|
||||
"erneut zu nutzen, setzen Sie die Einstellungen des eID-Login Plugins zurück."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:118 saml/class-eidlogin-saml.php:726
|
||||
msgid "Create connection to eID"
|
||||
msgstr "Verknüpfung zu eID erstellen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:119
|
||||
msgid "Finish wizard"
|
||||
msgstr "Konfiguration abschließen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:122
|
||||
msgid ""
|
||||
"If the eID-Login is activated, the eID-Login button is shown and users can "
|
||||
"edit eID connections."
|
||||
msgstr ""
|
||||
"Ist der eID-Login aktiviert, so wird der eID-Login Button angezeigt und "
|
||||
"Benutzer können Ihre eID-Verknüpfung editieren."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:123
|
||||
msgid "eID-Login is activated"
|
||||
msgstr "eID-Login ist aktiviert"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:124
|
||||
msgid ""
|
||||
"Please Note: Required values in the following form are labeled with an *."
|
||||
msgstr "Bitte beachten Sie: Pflichtfelder sind mit einem * markiert."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:126
|
||||
msgid "Service Provider Settings"
|
||||
msgstr "Service Provider Einstellungen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:127
|
||||
msgid ""
|
||||
"EntityID of the Service Provider as configured at the Identity Provider."
|
||||
msgstr ""
|
||||
"EntityID des Service Provider, wie beim Identity Provider konfiguriert."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:128
|
||||
msgid ""
|
||||
"Assertion Consumer URL is determined by the domain of your Service Provider "
|
||||
"and cannot be changed. Use this value to configure the Service Provider at "
|
||||
"the Identity Provider."
|
||||
msgstr ""
|
||||
"Die Assertion Consumer URL ist bestimmt durch die Domain des Service "
|
||||
"Providers und kann nicht geändert werden. Nutzen Sie diesen Wert, um den "
|
||||
"Service Provider beim Identity Provider zu konfigurieren."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:129
|
||||
msgid ""
|
||||
"SAML Metadata URL is determined by the domain of your Service Provider and "
|
||||
"cannot be changed. Use this value to configure the Service Provider at the "
|
||||
"Identity Provider."
|
||||
msgstr ""
|
||||
"Die SAML Metadaten URL ist bestimmt durch die Domain des Service Providers "
|
||||
"und kann nicht geändert werden. Nutzen Sie diesen Wert, um den Service "
|
||||
"Provider beim Identity Provider zu konfigurieren."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:130
|
||||
msgid "SAML Metadata URL"
|
||||
msgstr "SAML Metadaten URL"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:131
|
||||
msgid "Encrypted assertions"
|
||||
msgstr "Verschlüsselte Authentifizierungsantworten"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:134
|
||||
msgid "Identity Provider Settings"
|
||||
msgstr "Identity Provider Einstellungen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:135
|
||||
msgid "EntityID of the Identity Provider"
|
||||
msgstr "EntityID des Identity Provider"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:138
|
||||
msgid "Save Changes"
|
||||
msgstr "Änderungen speichern"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:139
|
||||
msgid "Reset Settings"
|
||||
msgstr "Einstellungen zurücksetzen"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:142
|
||||
msgid "SAML Certificate Rollover"
|
||||
msgstr "SAML Zertifikatswechsel"
|
||||
|
||||
#. Translators: %s: the remaining days
|
||||
#: includes/class-eidlogin-i18n.php:144
|
||||
msgid ""
|
||||
"The active certificates expire in %s days. For a regular certificate "
|
||||
"rollover no action is required. The rollover will be done automatically. But "
|
||||
"you always have the option to do a manual rollover, if needed."
|
||||
msgstr ""
|
||||
"Die aktuellen Zertifikate laufen in %s Tagen ab. Für einen regulären "
|
||||
"Zertifikatswechsel ist kein Handeln erforderlich. Der Wechsel auf ein neues "
|
||||
"Zertifikat erfolgt automatisch. Sie haben aber jeder Zeit auch die "
|
||||
"Möglichkeit bei Bedarf einen manuellen Zertifikatswechsel durchzuführen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:146
|
||||
msgid "Current certificates"
|
||||
msgstr "Aktuelle Zertifikate"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:147
|
||||
msgid "The currently active certificate ends with:"
|
||||
msgstr "Das aktuell verwendete Zertifikat endet mit:"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:148
|
||||
msgid "The newly prepared certificate, which is not yet active, ends with:"
|
||||
msgstr ""
|
||||
"Das vorbereitetet Zertifikat, welches noch nicht aktiviert ist, endet mit:"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:149
|
||||
msgid "Signature"
|
||||
msgstr "Signatur"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:150
|
||||
msgid "Encryption"
|
||||
msgstr "Verschlüsselung"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:151 admin/js/eidlogin-admin.js:616
|
||||
#: admin/js/eidlogin-admin.js:617
|
||||
msgid "No new certificate prepared yet."
|
||||
msgstr "Noch kein neues Zertifikat vorbereitet."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:153
|
||||
msgid "Manual Certificate Rollover"
|
||||
msgstr "Manueller Zertifikatswechsel"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:154
|
||||
msgid "Certificate Rollover Preparation"
|
||||
msgstr "Vorbereitung des Zertifikatswechsels"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:155
|
||||
msgid ""
|
||||
"In a first step new certificates will be created, which will be in the state "
|
||||
"<i>prepared</i> but not activated."
|
||||
msgstr ""
|
||||
"In einem ersten Schritt werden neue Zertifikate erzeugt, welche den Status "
|
||||
"<i>vorbereitet</i> haben, aber noch nicht aktiviert sind."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:156
|
||||
msgid ""
|
||||
"After some time the Identity Provider should have noticed the presence of "
|
||||
"the new certificates or you must explicitly inform the Identity Provider "
|
||||
"about them. After this has happened the rollover can be executed."
|
||||
msgstr ""
|
||||
"Nach einiger Zeit sollte der Identity Provider die neuen Zertifikate erkannt "
|
||||
"und eingelesen haben, oder Sie müssen diese dort explizit konfigurieren. "
|
||||
"Danach kann der Zertifikatswechsel durchgeführt werden."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:157
|
||||
msgid "Prepare Certificate Rollover"
|
||||
msgstr "Zertifikatswechsel vorbereiten"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:159
|
||||
msgid "Activation of prepared certificates"
|
||||
msgstr "Aktivierung der vorbereiteten Zertifikate"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:160
|
||||
msgid ""
|
||||
"The activation of the new certificates will happen automatically after some "
|
||||
"time, but can also be done by clicking the button below."
|
||||
msgstr ""
|
||||
"Die Aktivierung der vorbereiteten Zertifikate erfolgt nach einiger Zeit "
|
||||
"automatisch, kann aber auch durch Klick auf den untenstehenden Button sofort "
|
||||
"ausgeführt werden."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:161
|
||||
msgid ""
|
||||
"CAUTION: Only do this step manually, if you have made sure that the prepared "
|
||||
"certificates have been successfully configured at the Identity Provider or "
|
||||
"there are other important reasons to change the certificates immediately."
|
||||
msgstr ""
|
||||
"ACHTUNG: Führen Sie diesen Schritt nur dann durch, wenn Sie sicher sind, "
|
||||
"dass die vorbereiteten Zertifikate erfolgreich beim Identity Provider "
|
||||
"konfiguriert wurden oder es andere wichtige Gründe für einen sofortigen "
|
||||
"Zertifikatswechsel gibt."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:162
|
||||
msgid "Activate prepared certificates"
|
||||
msgstr "Vorbereitete Zertifikate aktivieren"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:163
|
||||
msgid "The button is only active if the rollover has been prepared already!"
|
||||
msgstr ""
|
||||
"Dieser Knopf ist nur aktiv, wenn ein Zertifikatswechsel bereits vorbereitet "
|
||||
"wurde!"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:166
|
||||
msgid "Change status"
|
||||
msgstr "Status ändern"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:167
|
||||
msgid "Disable password"
|
||||
msgstr "Passwort deaktivieren"
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:168
|
||||
msgid ""
|
||||
"Disable password based login. This will be unset if you use the password "
|
||||
"recovery."
|
||||
msgstr ""
|
||||
"Anmelden mit Passwort deaktivieren. Diese Option wird zurückgesetzt, falls "
|
||||
"Sie Ihr Passwort zurücksetzen."
|
||||
|
||||
#: includes/class-eidlogin-i18n.php:169
|
||||
msgid ""
|
||||
"After the deletion you will not be able to access your account via eID-"
|
||||
"Login. Are you sure?"
|
||||
msgstr ""
|
||||
"Nach dem Löschen können Sie sich nicht mehr über eID-Login an Ihrem Konto "
|
||||
"anmelden. Sind Sie sicher?"
|
||||
|
||||
#: saml/class-eidlogin-saml.php:323
|
||||
msgid "Error while validating the SAML Response."
|
||||
msgstr "Validierung der SAML Response fehlgeschlagen."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:498
|
||||
msgid "Creation of eID connection aborted"
|
||||
msgstr "Erstellung der eID-Verknüpfung abgebrochen"
|
||||
|
||||
#: saml/class-eidlogin-saml.php:512
|
||||
msgid ""
|
||||
"Creation of eID connection failed! Please ensure the used eID-Card is valid."
|
||||
msgstr ""
|
||||
"Erstellung der eID-Verknüpfung fehlgeschlagen! Bitte stellen Sie sicher, "
|
||||
"dass die genutzte eID-Karte gültig ist."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:596
|
||||
msgid "The eID is already connected to another account."
|
||||
msgstr "Diese eID ist schon mit einem anderen Konto verknüpft."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:642
|
||||
msgid ""
|
||||
"The SAML plugin is not configured properly. Please contact your "
|
||||
"administrator."
|
||||
msgstr ""
|
||||
"Die Konfiguration des SAML Plugins ist fehlerhaft. Bitte wenden Sie sich an "
|
||||
"den Administrator."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:645
|
||||
msgid "Login with eID failed! Please ensure the used eID-Card is valid."
|
||||
msgstr ""
|
||||
"Login mit eID ist fehlgeschlagen! Bitte stellen Sie sicher, dass die "
|
||||
"genutzte eID-Karte gültig ist."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:648
|
||||
msgid "eID-Login is not yet set up for your account."
|
||||
msgstr "eID-Login wurde für Ihr Konto noch nicht eingerichtet."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:651
|
||||
msgid "Log in with eID aborted."
|
||||
msgstr "Anmelden mit eID abgebrochen."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:654
|
||||
msgid "An unknown error occurred."
|
||||
msgstr "Ein unbekannter Fehler ist aufgetreten."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:676
|
||||
msgid "The eID-Login is not activated! Please contact the administrator!"
|
||||
msgstr ""
|
||||
"Der eID-Login ist nicht aktiviert! Bitte wenden Sie sich an den "
|
||||
"Administrator!"
|
||||
|
||||
#: saml/class-eidlogin-saml.php:682 saml/class-eidlogin-saml.php:740
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: saml/class-eidlogin-saml.php:719
|
||||
msgid ""
|
||||
"Your account is currently connected to your eID. By default you can use "
|
||||
"Username and Password or eID to login. Activate the following option, to "
|
||||
"prevent the login by username and password and enhance the security of your "
|
||||
"account."
|
||||
msgstr ""
|
||||
"Ihr Konto ist derzeit mit Ihrer eID verknüpft. In der Grundeinstellung "
|
||||
"können Sie sich sowohl mit Nutzername und Passwort als auch mit Ihrer eID an "
|
||||
"ihrem Benutzerkonto anmelden. Aktivieren Sie die nachfolgende Option, um die "
|
||||
"Anmeldung mit Nutzername und Passwort zu verhindern und so die Sicherheit "
|
||||
"Ihres Kontos zu erhöhen."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:721
|
||||
msgid "Delete connection to eID"
|
||||
msgstr "eID-Verknüpfung löschen"
|
||||
|
||||
#: saml/class-eidlogin-saml.php:724
|
||||
msgid ""
|
||||
"Your account is currently not connected to your eID. Create a connection to "
|
||||
"use your German eID (\"Personalausweis\") or another eID for the login to "
|
||||
"WordPress. More information can be found in the <a href=\"https://eid."
|
||||
"services/eidlogin/wordpress/userdocs?lang=en\" target=\"_blank\">FAQ</a>."
|
||||
msgstr ""
|
||||
"Ihr Konto ist derzeit nicht mit Ihrer eID verknüpft. Erstellen Sie eine "
|
||||
"Verknüpfung, um sich künftig auf sichere Weise mit ihrem Personalausweis "
|
||||
"oder einer anderen eID bei WordPress anzumelden. Weitere Informationen "
|
||||
"finden Sie in den <a href=\"https://eid.services/eidlogin/wordpress/userdocs?"
|
||||
"lang=en\" target=\"_blank\">FAQ</a>."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:882
|
||||
msgid ""
|
||||
"You can use your eID (for example your German identity card) to login to "
|
||||
"WordPress. Connect your eID to your account in the settings now."
|
||||
msgstr ""
|
||||
"Sie können Ihre eID (z.B. Ihren Personalausweis) für das Anmelden bei "
|
||||
"WordPress nutzen. Verknüpfen Sie jetzt in den Einstellungen Ihr Konto mit "
|
||||
"Ihrer eID."
|
||||
|
||||
#: saml/class-eidlogin-saml.php:883
|
||||
msgid "Go to Settings"
|
||||
msgstr "Zu den Einstellungen"
|
||||
|
||||
#: saml/class-eidlogin-saml.php:908
|
||||
msgid "Login with username and password is disabled. Please use the eID-Login."
|
||||
msgstr ""
|
||||
"Login mit Benutzername und Passwort ist deaktiviert. Bitte verwenden Sie den "
|
||||
"eID-Login."
|
||||
|
||||
#: admin/js/eidlogin-admin.js:68
|
||||
msgid "Hide Advanced Settings"
|
||||
msgstr "Fortgeschrittene Einstellungen verbergen"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:69
|
||||
msgid "Show Service Provider Metadata"
|
||||
msgstr "Service Provider Metadaten anzeigen"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:70
|
||||
msgid "Hide Service Provider Metadata"
|
||||
msgstr "Service Provider Metadaten verbergen"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:374
|
||||
msgid ""
|
||||
"Please confirm that the Service Provider has been registered at the Identity "
|
||||
"Provider. Pressing the \"Next\" button will activate the eID-Login."
|
||||
msgstr ""
|
||||
"Bitte stellen Sie sicher, dass Sie den Service Provider beim Identity "
|
||||
"Provider eingetragen haben. Die eID-Login App wird mit dem Klick auf \"Weiter"
|
||||
"\" aktiviert."
|
||||
|
||||
#: admin/js/eidlogin-admin.js:420
|
||||
msgid "Service Provider metadata could not be fetched"
|
||||
msgstr "Service Provider Metadaten konnten nicht geladen werden"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:474
|
||||
msgid ""
|
||||
"Changing the Identity Provider Settings will very likely make existing eID "
|
||||
"connections not work anymore, as they are bound to a specific Identity "
|
||||
"Provider! You maybe should make a backup of the settings before saving! Are "
|
||||
"you sure you want to save now?"
|
||||
msgstr ""
|
||||
"Änderungen an den Identity Provider Einstellungen führen mit hoher "
|
||||
"Wahrscheinlichkeit dazu, dass bestehende eID-Verknüpfungen nicht mehr "
|
||||
"genutzt werden können, da sie jeweils an einen bestimmten Identity Provider "
|
||||
"gebunden sind! Sie sollten ein Backup Ihrer Einstellungen machen, bevor Sie "
|
||||
"speichern! Sind Sie sicher, dass Sie jetzt speichern möchten?"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:480
|
||||
msgid "Should all existing eID connections be deleted?"
|
||||
msgstr "Sollen alle bestehenden eID-Verknüpfungen gelöscht werden?"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:502
|
||||
msgid ""
|
||||
"Reset of settings will also delete eID connections of all accounts. After "
|
||||
"this no account will be able to use the eID-Login anymore and all users must "
|
||||
"create a new eID connection! Are you sure?"
|
||||
msgstr ""
|
||||
"Das Zurücksetzen der Einstellungen wird auch die eID-Verknüpfungen aller "
|
||||
"Konten löschen. Danach wird kein Konto mehr über eID-Login zugänglich sein "
|
||||
"und jeder Benutzer muss eine neue eID-Verknüpfung erstellen. Sind Sie sicher?"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:549
|
||||
msgid ""
|
||||
"This will create new certificates which will be propagated in the Service "
|
||||
"Provider SAML Metadata. Are you sure?"
|
||||
msgstr ""
|
||||
"Dies wird neue Zertifikate erzeugen und über die Service Provider SAML "
|
||||
"Metadaten veröffentlichen. Sind Sie sicher?"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:555
|
||||
msgid ""
|
||||
"This will replace the already prepared certificates and replace them with a "
|
||||
"new ones which will be propagated in the Service Provider SAML Metadata. Are "
|
||||
"you sure?"
|
||||
msgstr ""
|
||||
"Dies wird die schon vorbereiteten Zertifikate aus den Service Provider SAML "
|
||||
"Metadaten entfernen und Sie durch neue Zertifikate ersetzen. Sind Sie sicher?"
|
||||
|
||||
#: admin/js/eidlogin-admin.js:603
|
||||
msgid ""
|
||||
"This will remove the currently used certificates from the Service Provider "
|
||||
"SAML Metadata and activate the prepared certificates. Are you sure?"
|
||||
msgstr ""
|
||||
"Dies wird die derzeit genutzten Zertifikate aus den Service Provider SAML "
|
||||
"Metadaten entfernen und die vorbereiteten Zertifikate aktivieren. Sind Sie "
|
||||
"sicher?"
|
||||
@@ -0,0 +1,46 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Astaoundify
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: elementify-visual-widgets 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-06-07 18:15+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:41
|
||||
msgid "About Company Features"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:85
|
||||
msgid "Company Features"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:94
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:97
|
||||
msgid "Enter the title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:103
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:106
|
||||
msgid "Enter the description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:113
|
||||
msgid "Company Tabs"
|
||||
msgstr ""
|
||||
43
spec/fixtures/dynamic_finders/plugin_version/fiber-admin/change_log/changelog.txt
vendored
Normal file
43
spec/fixtures/dynamic_finders/plugin_version/fiber-admin/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.6 =
|
||||
*Release Date - 24 August 2021*
|
||||
|
||||
* Fixed: Some minor bugs, security issues
|
||||
* Changed: Revise code for PHP warnings
|
||||
|
||||
= 1.0.5 =
|
||||
*Release Date - 20 August 2021*
|
||||
|
||||
* Fixed: Some minor bugs, security issues
|
||||
|
||||
= 1.0.4 =
|
||||
*Release Date - 19 August 2021*
|
||||
|
||||
* Fixed: Some minor bugs, security issues
|
||||
* Changed: Update Stable Tag
|
||||
|
||||
= 1.0.3 =
|
||||
*Release Date - 18 August 2021*
|
||||
|
||||
* Fixed: Some minor bugs, security issues
|
||||
* Changed: Update source code by WordPress review
|
||||
|
||||
= 1.0.2 =
|
||||
*Release Date - 17 August 2021*
|
||||
|
||||
* Fixed: Color picker not working
|
||||
* Fixed: Link color setting not working
|
||||
* Added: Extra CSS for login page
|
||||
* Fixed: Update include directory
|
||||
* Changed: Improve preview image upload
|
||||
* Added: Background image for login page
|
||||
* Added: Auto convert email text to a link
|
||||
|
||||
= 1.0.1 =
|
||||
* Fixed: default option with Hide WordPress branding option
|
||||
|
||||
= 1.0.0 =
|
||||
*Release Date - 15 August 2021*
|
||||
|
||||
* The very first version
|
||||
@@ -0,0 +1,55 @@
|
||||
# Copyright (C) 2021 Dinesh Yadav
|
||||
# This file is distributed under the same license as the Filter WC Orders plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Filter WC Orders 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/filter-wc-orders\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-07-25T19:43:03+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: filter-wc-orders\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Filter WC Orders"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://dineshinaublog.wordpress.com/filter-wc-orders/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "It helps in sorting woocommerce orders based on a payment gateway."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Dinesh Yadav"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://dineshinaublog.wordpress.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-dkfwco-admin.php:66
|
||||
msgid "No filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-dkfwco-admin.php:68
|
||||
msgid "By Payment Method"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-dkfwco-admin.php:75
|
||||
msgid "By User Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-dkfwco-admin.php:76
|
||||
msgid "Guest Users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-dkfwco-admin.php:77
|
||||
msgid "Logged in Users"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,8 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
Follow latest changes on project website (finpose.com/changelog)
|
||||
|
||||
## [1.0.0] - 2019-12-11
|
||||
### Added:
|
||||
- Initial Release
|
||||
40
spec/fixtures/dynamic_finders/plugin_version/fluid-checkout/composer_file/package.json
vendored
Normal file
40
spec/fixtures/dynamic_finders/plugin_version/fluid-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "fluid-checkout",
|
||||
"version": "1.2.2",
|
||||
"description": "Provides a fluid checkout experience for any WooCommerce store. Ask for shipping information before billing in a linear and multi-step checkout, add options for gift message and packaging and add a coupon code field at the checkout page that does not distract your customers. Similar to the Shopify checkout, and even better.",
|
||||
"main": "fluid-checkout.php",
|
||||
"scripts": {
|
||||
"version": "gulp build && git add -A",
|
||||
"postversion": "git push && git push --tags",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {},
|
||||
"author": "Fluidweb.co",
|
||||
"license": "GPL-3.0",
|
||||
"copyright": "Copyright (c) 2021, Fluidweb OÜ",
|
||||
"homepage": "https://fluidcheckout.com",
|
||||
"devDependencies": {
|
||||
"del": "^5.1.0",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-cssnano": "^2.1.3",
|
||||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-rename": "^2.0.0",
|
||||
"gulp-replace": "^1.0.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sourcemaps": "^2.6.5",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-watch": "^5.0.1",
|
||||
"load-json-file": "^6.2.0",
|
||||
"uglify-js": "^3.8.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"collapsible-block": "^1.1.6",
|
||||
"flyout-block": "^1.1.2",
|
||||
"mailcheck": "^1.1.1",
|
||||
"require-bundle-js": "^1.0.0",
|
||||
"require-polyfills": "^1.0.0",
|
||||
"sticky-states": "^1.0.6"
|
||||
}
|
||||
}
|
||||
52
spec/fixtures/dynamic_finders/plugin_version/fuerte-wp/change_log/CHANGELOG.md
vendored
Normal file
52
spec/fixtures/dynamic_finders/plugin_version/fuerte-wp/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
# Changelog
|
||||
|
||||
# 1.3.1 / 2021-08-27
|
||||
- Reworked as full featured plugin.
|
||||
- Added an options page for easy configuration.
|
||||
- New logo, courtesy of [Nicolás Franz](https://nicolasfranz.com). Many thanks, pal!
|
||||
|
||||
# 1.2.0 / 2021-08-13
|
||||
- Converted to a plugin.
|
||||
- Added ability to access plugins management, but don't allow install or upload new plugins. Also Fuerte-WP will auto-protect itself from deactivation.
|
||||
- Added ability to restrict access to Permalinks configuration.
|
||||
- Added ability to use custom site logo (from Customizer) as WP login logo.
|
||||
|
||||
# 1.1.3 / 2021-04-22
|
||||
- Added ability to disable the old XML-RPC API.
|
||||
- Now it hides ACF cog inside ACF meta fields UI, and prevent opening ACF custom post type (acf-field-group), to avoid non super admins to access ACF editing UI. So, non super-admin users can't access ACF Custom Fields UI, even if they put the URL directly into the address bar.
|
||||
|
||||
# 1.1.2 / 2021-04-16
|
||||
- Added missing support to disable update emails for plugins and themes.
|
||||
|
||||
## 1.1.1 / 2021-04-09
|
||||
- Added support to control several WP's automatic emails.
|
||||
- Added support to disable WP admin bar for specific roles.
|
||||
|
||||
## 1.1.0 / 2021-04-07
|
||||
- Fuerte-WP configuration file now lives outside wp-config.php file, into his own wp-config-fuerte.php file. This to make it easier to deploy it to several WP installations, without the need to edit the wp-config.php file in all of them. Check the readme on how to install it.
|
||||
- Added option to enable or disable strong passwords enforcing.
|
||||
- Added support to prevent use of weak passwords.
|
||||
- Added support for remove_menu_page.
|
||||
- Added ability to disable WordPress's new Application Passwords feature.
|
||||
|
||||
## 1.0.1 / 2020-10-29
|
||||
- Now using a proper Class.
|
||||
- Added option to change WP sender email address.
|
||||
- Added configuration to remove custom submenu items (remove_submenu_page).
|
||||
- Force user creation and editing to use WP default strong password suggestion, for non super users.
|
||||
- Prevent admin accounts creation or edition, for non super users.
|
||||
- Customizable not allowed error message.
|
||||
|
||||
## 1.0.0 / 2020-10-27
|
||||
- Initial release.
|
||||
- Enable and force auto updates for WP core.
|
||||
- Enable and force auto updates for plugins.
|
||||
- Enable and force auto updates for themes.
|
||||
- Enable and force auto updates for translations.
|
||||
- Disables email triggered when WP auto updates.
|
||||
- Change [WP recovery email](https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/) so WP crashes will go to a different email than the Administration Email Address in WP General Settings.
|
||||
- Disables WP theme and plugin editor for non super users.
|
||||
- Remove items from WP menu for non super users.
|
||||
- Restrict editing or deleting super users.
|
||||
- Disable ACF Custom Fields editor access for non super users.
|
||||
- Restrict access to some pages inside wp-admin, like plugins or theme uploads, for non super users. Restricted pages can be extended vía configuration.
|
||||
@@ -0,0 +1,413 @@
|
||||
# Copyright (C) 2021 Garanti BBVA Sanal POS Başvurusu & WooCommerce Entegrasyonu
|
||||
# This file is distributed under the same license as the Garanti BBVA Sanal POS Başvurusu & WooCommerce Entegrasyonu package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Garanti BBVA Sanal POS Başvurusu & WooCommerce "
|
||||
"Entegrasyonu 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/garanti-bbva-wp-"
|
||||
"plugin\n"
|
||||
"POT-Creation-Date: 2021-08-16 11:27+0300\n"
|
||||
"PO-Revision-Date: 2021-08-16 11:27+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: Gl_Garanti_Pos.php:43
|
||||
msgid "Response could not parse!"
|
||||
msgstr "Sunucu yanıtı anlaşılamadı!"
|
||||
|
||||
#: Gl_Garanti_Pos.php:44
|
||||
msgid "Status could not detect!"
|
||||
msgstr "Durum bilgisi anlaşılamadı."
|
||||
|
||||
#: Gl_Garanti_Pos.php:45
|
||||
msgid "An error has occurred: %s"
|
||||
msgstr "Bir hata oluştu: %s"
|
||||
|
||||
#: Gl_Garanti_Pos.php:93 Gl_Garanti_Pos.php:147
|
||||
msgid "Response status not detected!"
|
||||
msgstr "Yanıt durumu algılanmadı!"
|
||||
|
||||
#: Gl_Garanti_Pos.php:109 Gl_Garanti_Pos.php:163
|
||||
msgid "Not allowed HTTP method!"
|
||||
msgstr "İzin verilmeyen HTTP yöntemi!"
|
||||
|
||||
#: Gl_Garanti_Pos.php:189
|
||||
msgid "No response from service!"
|
||||
msgstr "Servisten cevap yok!"
|
||||
|
||||
#: Gl_Garanti_Pos.php:207 Gl_Garanti_Pos.php:208
|
||||
msgid "Garanti BBVA Application"
|
||||
msgstr "Garanti BBVA Başvuru"
|
||||
|
||||
#: views/content.php:19
|
||||
msgid "Entering Application Information"
|
||||
msgstr "Başvuru Bilgilerinin Girilmesi"
|
||||
|
||||
#: views/content.php:22
|
||||
msgid "Becoming a Garanti BBVA Customer"
|
||||
msgstr "Garanti BBVA Müşterisi Olunması"
|
||||
|
||||
#: views/content.php:25
|
||||
msgid "Approval of Application by Garanti BBVA "
|
||||
msgstr "Başvurunun Garanti BBVA Tarafından Onaylanması "
|
||||
|
||||
#: views/content.php:28
|
||||
msgid "Forwarding Installation Request to Gri"
|
||||
msgstr "Kurulum Talebinin Gri’ye İletilmesi"
|
||||
|
||||
#: views/content.php:45
|
||||
msgid "Free Integration & Installation"
|
||||
msgstr "Ücretsiz Entegrasyon & Kurulum"
|
||||
|
||||
#: views/content.php:46
|
||||
msgid ""
|
||||
"Make your virtual pos application here, get the integration plugin for free."
|
||||
msgstr ""
|
||||
"Sanal pos başvurunuzu buradan gerçekleştirin, entegrasyon eklentisine "
|
||||
"ücretsiz sahip olun."
|
||||
|
||||
#: views/content.php:49
|
||||
msgid "Special Working Conditions"
|
||||
msgstr "Özel Çalışma Koşulları"
|
||||
|
||||
#: views/content.php:50
|
||||
msgid ""
|
||||
"Opportunity to pay the next day with <span class=\"bg-garanti text-white p-1 "
|
||||
"rounded\">1.59%</span> commission special for applications made through the "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
"Eklenti içerisinden yapılan başvurulara özel <span class=\"bg-garanti text-"
|
||||
"white p-1 rounded\">%1.59</span> komisyon ile ertesi gün ödeme fırsatı."
|
||||
|
||||
#: views/content.php:53
|
||||
msgid "Bonus Merchant Privileges"
|
||||
msgstr "Bonus Üye İş Yeri Ayrıcalıkları"
|
||||
|
||||
#: views/content.php:54
|
||||
msgid ""
|
||||
"You can appeal to 15.000.000+ Bonus holders and receive virtual pos service "
|
||||
"with special offers and conditions."
|
||||
msgstr ""
|
||||
"15.000.000+ Bonuslu’ya hitap eder, özel kampanya ve koşullarla sanal pos "
|
||||
"hizmeti alırsınız."
|
||||
|
||||
#: views/content.php:79
|
||||
msgid "Application and Activation Steps"
|
||||
msgstr "Başvuru ve Aktivasyon Adımları"
|
||||
|
||||
#: views/header.php:21
|
||||
msgid "Welcome to Garanti BBVA Virtual POS privileges!"
|
||||
msgstr "Garanti BBVA Sanal POS ayrıcalıklarına hoşgeldiniz!"
|
||||
|
||||
#: views/modals/forward-buy-commercial-module.php:13
|
||||
msgid ""
|
||||
"The campaign only covers new virtual POS applications made through "
|
||||
"<strong>this form</strong>."
|
||||
msgstr ""
|
||||
"Kampanya sadece <strong>bu form</strong> üzerinden yapılan yeni sanal POS "
|
||||
"başvurularını kapsamaktadır."
|
||||
|
||||
#: views/modals/forward-buy-commercial-module.php:16
|
||||
msgid ""
|
||||
"You can purchase <strong>Garanti BBVA Virtual POS Module</strong> now to use "
|
||||
"your existing Garanti BBVA virtual POS on your WooCommerce website."
|
||||
msgstr ""
|
||||
"Mevcut Garanti BBVA sanal POS'unuzu WooCommerce web sitenizde kullanmak için "
|
||||
"<strong>Garanti BBVA Sanal Pos Modülü</strong>'nü hemen satın alabilirsiniz."
|
||||
|
||||
#: views/modals/forward-buy-commercial-module.php:30 views/step-3.php:41
|
||||
msgid "Cancel"
|
||||
msgstr "Vazgeç"
|
||||
|
||||
#: views/modals/forward-buy-commercial-module.php:34
|
||||
msgid "Buy"
|
||||
msgstr "SATIN AL"
|
||||
|
||||
#: views/modals/forward-garanti-customer.php:14
|
||||
msgid "You must be a Garanti BBVA customer to apply for virtual pos."
|
||||
msgstr "Sanal pos başvurusu için Garanti BBVA müşterisi olmalısınız."
|
||||
|
||||
#: views/modals/forward-garanti-customer.php:23
|
||||
msgid "FOR PERSONAL COMPANIES"
|
||||
msgstr "ŞAHIS FİRMALARI İÇİN"
|
||||
|
||||
#: views/modals/forward-garanti-customer.php:28
|
||||
msgid ""
|
||||
"By downloading the Garanti BBVA mobile application, you can instantly become "
|
||||
"a Garanti BBVA customer without going to the branch, and continue your "
|
||||
"virtual pos application here."
|
||||
msgstr ""
|
||||
"Garanti BBVA mobil uygulamasını indirerek şubeye gitmeden anında Garanti "
|
||||
"BBVA müşterisi olabilir, buradan sanal pos başvurusuna devam edebilirsiniz."
|
||||
|
||||
#: views/modals/forward-garanti-customer.php:52
|
||||
msgid "FOR LIMITED / JOINT STOCK COMPANIES"
|
||||
msgstr "LİMİTED/ANONİM ŞİRKETLER İÇİN"
|
||||
|
||||
#: views/modals/forward-garanti-customer.php:56
|
||||
msgid ""
|
||||
"You can become a Garanti BBVA customer by going to the nearest branch.<br/"
|
||||
"><strong>IMPORTANT:</strong> For free integration and special commission "
|
||||
"rate, you must continue your virtual pos application here after opening an "
|
||||
"account at the branch."
|
||||
msgstr ""
|
||||
"Size en yakın şubeye giderek Garanti BBVA müşterisi olabilirsiniz.<br/> "
|
||||
"<strong>ÖNEMLİ:</strong> Ücretsiz entegrasyon ve özel komisyon oranı için "
|
||||
"şubeden hesap açılışı yaptıktan sonra sanal pos başvurunuza buradan devam "
|
||||
"etmelisiniz."
|
||||
|
||||
#: views/modals/forward-garanti-customer.php:60
|
||||
msgid "Branches"
|
||||
msgstr "Şubeler"
|
||||
|
||||
#: views/modals/forward-garanti-customer.php:70
|
||||
msgid "I became a Garanti BBVA customer, continue the virtual pos application."
|
||||
msgstr "Garanti BBVA müşterisi oldum, sanal pos başvurusuna devam et."
|
||||
|
||||
#: views/sidebar.php:11
|
||||
msgid ""
|
||||
"Create your application here to take advantage of the free integration "
|
||||
"opportunity and special working conditions."
|
||||
msgstr ""
|
||||
"Ücretsiz entegrasyon fırsatı ve özel çalışma koşullarından faydalanmak için "
|
||||
"buradan başvurunuzu oluşturun."
|
||||
|
||||
#: views/sidebar.php:17
|
||||
msgid "Campaign Conditions"
|
||||
msgstr "Kampanya Koşulları"
|
||||
|
||||
#: views/sidebar.php:20
|
||||
msgid ""
|
||||
"The merchant must have made the Garanti BBVA virtual pos application through "
|
||||
"Gri, not through the branch or other channels."
|
||||
msgstr ""
|
||||
"Üye iş yeri, Garanti BBVA sanal pos başvurusunu şube veya diğer kanallar "
|
||||
"üzerinden değil Gri aracılığıyla yapmış olmalıdır."
|
||||
|
||||
#: views/sidebar.php:22
|
||||
msgid ""
|
||||
"After Garanti BBVA approves the merchant's application, free license, "
|
||||
"initial installation service, free technical support for the first 90 days "
|
||||
"and free access to updates for 1 year will be offered."
|
||||
msgstr ""
|
||||
"Garanti BBVA, üye iş yerinin başvurusunu onayladıktan sonra ücretsiz lisans, "
|
||||
"ilk kurulum hizmeti, ilk 90 gün ücretsiz teknik destek ve 1 yıl "
|
||||
"güncellemelere ücretsiz erişim seçeneği sunulacaktır."
|
||||
|
||||
#: views/sidebar.php:24
|
||||
msgid ""
|
||||
"For free license identification, the installation must be done by the Gray "
|
||||
"Installation Team and the installation must be confirmed with the test shot."
|
||||
msgstr ""
|
||||
"Ücretsiz lisans tanımlaması için kurulumun Gri Kurulum Ekibi tarafından "
|
||||
"yapılması ve test çekimi ile kurulumun teyit edilmesi gerekmektedir."
|
||||
|
||||
#: views/sidebar.php:26
|
||||
msgid ""
|
||||
"3 months free GarantiPay integration will be given to businesses that meet "
|
||||
"the conditions."
|
||||
msgstr ""
|
||||
"Koşulları sağlayan iş yerlerine 3 ay ücretsiz GarantiPay entegrasyonu hediye "
|
||||
"edilecektir."
|
||||
|
||||
#: views/sidebar.php:28
|
||||
msgid ""
|
||||
"After 3 months, you can purchase a GarantiPay license or deactivate "
|
||||
"GarantiPay with a 50% discount, depending on your workplace preference."
|
||||
msgstr ""
|
||||
"3 ay sonra iş yeri tercihine göre %50 indirimle GarantiPay lisansı satın "
|
||||
"alabilir veya GarantiPay’i devre dışı bırakabilir."
|
||||
|
||||
#: views/sidebar.php:35
|
||||
msgid "Call us for detailed information and inquiries."
|
||||
msgstr "Detaylı bilgi ve merak ettikleriniz için bizi arayın."
|
||||
|
||||
#: views/sidebar.php:48
|
||||
msgid "CANCEL THE APPLICATION"
|
||||
msgstr "BAŞVURUYU İPTAL ET"
|
||||
|
||||
#: views/step-1.php:14
|
||||
msgid "Name Surname"
|
||||
msgstr "Ad Soyad"
|
||||
|
||||
#: views/step-1.php:18
|
||||
msgid "Your Name Surname"
|
||||
msgstr "Adınız Soyadınız"
|
||||
|
||||
#: views/step-1.php:26
|
||||
msgid "Citizenship Number"
|
||||
msgstr "T.C. Kimlik Numarası"
|
||||
|
||||
#: views/step-1.php:40
|
||||
msgid "Phone Number"
|
||||
msgstr "Telefon Numarası"
|
||||
|
||||
#: views/step-1.php:53
|
||||
msgid "Email Address"
|
||||
msgstr "E-posta Adresi"
|
||||
|
||||
#: views/step-1.php:56
|
||||
msgid "mail@example.com"
|
||||
msgstr "mail@ornek.com"
|
||||
|
||||
#: views/step-1.php:65 views/step-1.php:69
|
||||
msgid "Your Message"
|
||||
msgstr "Mesajınız"
|
||||
|
||||
#: views/step-1.php:77
|
||||
msgid ""
|
||||
"I have read the relevant <a target=\"_blank\" href=\"https://garantibbvapos."
|
||||
"com.tr/kisisel-verilerin-korunmasi\">\"Information\"</a> carried out in "
|
||||
"accordance with the Law on the Protection of Personal Data."
|
||||
msgstr ""
|
||||
"Kişisel Verilerin Korunması Kanunu uyarınca gerçekleştirilen ilgili <a "
|
||||
"target=\"_blank\" href=\"https://garantibbvapos.com.tr/kisisel-verilerin-"
|
||||
"korunmasi\">“Bilgilendirme”</a> yi okudum."
|
||||
|
||||
#: views/step-1.php:81
|
||||
msgid ""
|
||||
"I have read the <a target=\"_blank\" href=\"https://www.gri.net/kullanim-"
|
||||
"sozlesmesi\">gri.net agreement</a>, I accept it."
|
||||
msgstr ""
|
||||
"<a target=\"_blank\" href=\"https://www.gri.net/kullanim-sozlesmesi\">“gri."
|
||||
"net kullanım sözleşmesi”</a>ni okudum, kabul ediyorum."
|
||||
|
||||
#: views/step-1.php:93
|
||||
msgid "Submit"
|
||||
msgstr "Gönder"
|
||||
|
||||
#: views/step-1.php:104
|
||||
msgid "Your application information has been saved."
|
||||
msgstr "Başvuru bilgileriniz kaydedildi."
|
||||
|
||||
#: views/step-1.php:105
|
||||
msgid "You are being guided for other stages. Please wait."
|
||||
msgstr "Diğer aşamalar için yönlendiriliyorsunuz. Lütfen bekleyiniz."
|
||||
|
||||
#: views/step-1.php:109
|
||||
msgid "An error occurred while applying!"
|
||||
msgstr "Başvuru sırasında bir hata oluştu!"
|
||||
|
||||
#: views/step-2.php:10
|
||||
msgid "Are you a Garanti BBVA customer?"
|
||||
msgstr "Garanti BBVA müşterisi misiniz?"
|
||||
|
||||
#: views/step-2.php:13 views/step-2.php:28
|
||||
msgid "NO"
|
||||
msgstr "HAYIR"
|
||||
|
||||
#: views/step-2.php:17 views/step-2.php:32
|
||||
msgid "YES"
|
||||
msgstr "EVET"
|
||||
|
||||
#: views/step-2.php:25
|
||||
msgid "Do you have an active Garanti BBVA virtual pos?"
|
||||
msgstr "Aktif bir Garanti BBVA sanal posunuz bulunuyor mu?"
|
||||
|
||||
#: views/step-2.php:44
|
||||
msgid "GO ON"
|
||||
msgstr "DEVAM ET"
|
||||
|
||||
#: views/step-3.php:10
|
||||
msgid "Your application is being evaluated by the bank."
|
||||
msgstr "Başvurunuz banka tarafından değerlendiriliyor."
|
||||
|
||||
#: views/step-3.php:12
|
||||
msgid ""
|
||||
"When the application is approved, you can report the situation by visiting "
|
||||
"the page again."
|
||||
msgstr ""
|
||||
"Başvuru onaylandığında sayfayı tekrar ziyaret ederek durumu "
|
||||
"bildirebilirsiniz."
|
||||
|
||||
#: views/step-3.php:16
|
||||
msgid "My Application Has Been Approved, Continue For Integration"
|
||||
msgstr "Başvurum Onaylandı, Entegrasyon İçin Devam Et"
|
||||
|
||||
#: views/step-3.php:26
|
||||
msgid ""
|
||||
"Please provide the requested information for the Gri Installation Team to "
|
||||
"perform the virtual pos integration on your website."
|
||||
msgstr ""
|
||||
"Gri Kurulum Ekibi’nin sanal pos entegrasyonunu web sitenizde "
|
||||
"gerçekleştirmesi için lütfen istenen bilgileri iletiniz."
|
||||
|
||||
#: views/step-3.php:31
|
||||
msgid "Merchant No"
|
||||
msgstr "Üye İşyeri Numarası"
|
||||
|
||||
#: views/step-3.php:35
|
||||
msgid "Terminal No"
|
||||
msgstr "Terminal Numarası"
|
||||
|
||||
#: views/step-3.php:44
|
||||
msgid "Create Installation Request"
|
||||
msgstr "Kurulum Talebi Oluştur"
|
||||
|
||||
#: views/step-4.php:10
|
||||
msgid ""
|
||||
"Your installation request has been forwarded to <a target=\"_blank\" href="
|
||||
"\"%s\"><strong>Gri</strong></a>!"
|
||||
msgstr ""
|
||||
"Kurulum talebiniz <a target=\"_blank\" href=\"%s\"><strong>Gri</strong></"
|
||||
"a>'ye iletildi!"
|
||||
|
||||
#: views/step-4.php:12
|
||||
msgid ""
|
||||
"The installation team will process your request as soon as possible. You can "
|
||||
"follow the process from your gri.net customer account."
|
||||
msgstr ""
|
||||
"Kurulum ekibi, talebinizi en kısa sürede işleme alacaktır. Süreci gri.net "
|
||||
"müşteri hesabınızdan takip edebilirsiniz."
|
||||
|
||||
#: views/step-4.php:13
|
||||
msgid ""
|
||||
"When the installation is complete, you will receive SMS and e-mail "
|
||||
"notifications."
|
||||
msgstr ""
|
||||
"Kurulum tamamlandığında, tarafınıza SMS ve e-posta bildirimleri ulaşacaktır."
|
||||
|
||||
#: views/step-4.php:14
|
||||
msgid ""
|
||||
"You can delete this plugin that you used for the virtual pos application "
|
||||
"process from the <strong>Wordpress > Plugins</strong> page."
|
||||
msgstr ""
|
||||
"Sanal pos başvuru süreci için kullandığınız bu eklentiyi <strong>Wordpress > "
|
||||
"Eklentiler</strong> sayfasından silebilirsiniz."
|
||||
|
||||
#: views/step-4.php:19
|
||||
msgid "Check Installation Status"
|
||||
msgstr "Kurulum Durumunu Kontrol Et"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Garanti BBVA Virtual POS Application & WooCommerce Integration"
|
||||
msgstr "Garanti BBVA Sanal POS Başvurusu & WooCommerce Entegrasyonu"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/garanti-bbva-vpos-application/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Make your Garanti BBVA virtual POS application now and get the WooCommerce "
|
||||
"integration plugin for free!"
|
||||
msgstr ""
|
||||
"Garanti BBVA sanal POS başvunuzu hemen yapın ve WooCommerce entegrasyon "
|
||||
"eklentisine ücretsiz sahip olun!"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "grilabs"
|
||||
msgstr "grilabs"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.gri.net"
|
||||
msgstr "https://www.gri.net"
|
||||
|
||||
#~ msgid "grilabs - Garanti"
|
||||
#~ msgstr "grilabs - Garanti"
|
||||
@@ -0,0 +1,188 @@
|
||||
# Copyright (C) 2021 Gelato
|
||||
# This file is distributed under the same license as the Gelato Integration for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gelato Integration for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gelato\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-07-26T14:20:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: gelato-integration-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gelato Integration for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin helps to connect your WooCommerce store with Gelato."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Gelato"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://gelato.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoMain.php:23
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:87
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:89
|
||||
msgid "Enable Gelato shipping method."
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:93
|
||||
msgid "Enable Gelato live shipping methods."
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:95
|
||||
msgid "Use live shipping methods instead of flat rates."
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:99
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:101
|
||||
msgid "Title to be display on site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:102
|
||||
msgid "Gelato Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:105
|
||||
msgid "Disable Woocommerce rates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/GelatoShipping.php:107
|
||||
msgid "Disable standard Woocommerce rates for products fulfilled by Gelato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/GelatoPage.php:17
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/GelatoPage.php:22
|
||||
#: templates/status.php:27
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:16
|
||||
msgid "WordPress Permalinks"
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:17
|
||||
msgid "Ensure that your permalinks are NOT set to \"plain\" in Settings > Permalinks. Any other setting than \"plain\" is ok."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:21
|
||||
msgid "WooCommerce Webhooks"
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:22
|
||||
msgid "Gelato requires webhooks in WooCommerce to be set up to capture your orders, product updates etc in close to real-time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:26
|
||||
msgid "WooCommerce Gelato API keys are set and valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:27
|
||||
msgid "For the integration to work Gelato needs access to your WooCommerce API - otherwise we can't keep your store updated with products."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:31
|
||||
msgid "Check connection with Gelato."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:32
|
||||
msgid "We check that connection between Gelato and WooCommerce accessible via API."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:36
|
||||
msgid "Write permissions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:37
|
||||
msgid "To be able to push mockups to your store the upload directory needs to be writable. If you need help with this contact your hosting provider."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:41
|
||||
msgid "PHP memory limit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:42
|
||||
msgid "Set PHP allocated memory limit to at least 128mb. Contact your hosting provider if you need help with this."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:46
|
||||
msgid "PHP script time limit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:47
|
||||
msgid "Set PHP script execution time limit to at least 30 seconds. This is required to add products with many variants. Contact your hosting provider if you need help with this."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:51
|
||||
msgid "Check SSL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:52
|
||||
msgid "We are checking is everything is ok with SSL."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:56
|
||||
msgid "Check site redirection."
|
||||
msgstr ""
|
||||
|
||||
#: includes/StatusChecker/GelatoStatusChecker.php:57
|
||||
msgid "There are might be some issues if your site is configured with redirection to another URL. Usually this happens with incorrect http to https redirects or yourdomain.com to www.yourdomain.com. Please check your settings."
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:3
|
||||
msgid "Please copy the information below and send it to support. Thank you!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:6
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:25
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:26
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:39
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:41
|
||||
msgid "WARNING"
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:43
|
||||
msgid "FAIL"
|
||||
msgstr ""
|
||||
|
||||
#: templates/status.php:45
|
||||
msgid "SKIPPED"
|
||||
msgstr ""
|
||||
105
spec/fixtures/dynamic_finders/plugin_version/gfdesigns/translation_file/languages/gfdesigns.pot
vendored
Normal file
105
spec/fixtures/dynamic_finders/plugin_version/gfdesigns/translation_file/languages/gfdesigns.pot
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GfDesigns - 1.0\n"
|
||||
"POT-Creation-Date: 2021-08-16 12:00+0200\n"
|
||||
"PO-Revision-Date: 2020-04-09 14:41+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \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-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: class-gfdesigns.php:50 class-gfdesigns.php:85
|
||||
msgid "Designs"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:88
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:95 class-gfdesigns.php:111
|
||||
msgid "Layouts"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:98
|
||||
msgid "Tooltip Layouts"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:101 class-gfdesigns.php:104
|
||||
msgid "Show layout in dark mode"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:120 class-gfdesigns.php:203
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:125 class-gfdesigns.php:208
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:130
|
||||
msgid "Shadows"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:148
|
||||
msgid "Colors"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:151
|
||||
msgid "Tooltip Colors style"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:154
|
||||
msgid "Main color"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:161
|
||||
msgid "Main text color"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:178
|
||||
msgid "Checkboxes & RadioButtons"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:181
|
||||
msgid "Tooltip Checkboxes & RadioButtons styles"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:184 class-gfdesigns.php:187
|
||||
msgid "Show Checkboxes & RadioButtons inline"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:194
|
||||
msgid "Checkboxes style"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:198
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:213
|
||||
msgid "Switch"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:236 class-gfdesigns.php:242
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:239
|
||||
msgid "Tooltip Columns style"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:407
|
||||
msgid "Activate design for this form"
|
||||
msgstr ""
|
||||
|
||||
#: class-gfdesigns.php:606
|
||||
msgid "Show this field in one column"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/gif-search-and-embed/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/gif-search-and-embed/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "gif-search-and-embed",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start --mode development",
|
||||
"build": "wp-scripts build --mode production"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/api-fetch": "^3.23.1",
|
||||
"@wordpress/blocks": "^6.25.2",
|
||||
"@wordpress/scripts": "^4.1.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
# Copyright (C) 2021 GrandPlugins
|
||||
# This file is distributed under the same license as the WP GIF Uploader [GrandPlugins] plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP GIF Uploader [GrandPlugins] 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-gif-uploader\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-07-19T10:16:52+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: wp-gif-uploader\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP GIF Uploader [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://grandplugins.com/product/quick-view-and-buy-now-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The plugin offers resizing GIF without losing animation."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "GrandPlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/grandplugins/"
|
||||
msgstr ""
|
||||
|
||||
#: gpls-wgr-wp-gif-uploader.php:221
|
||||
#: wp-gif-uploader/gpls-wgr-wp-gif-uploader.php:221
|
||||
msgid "Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gif-editor.php:78
|
||||
#: wp-gif-uploader/includes/class-gif-editor.php:78
|
||||
msgid "Pro"
|
||||
msgstr ""
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/gosign-buttonblock/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/gosign-buttonblock/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "full-button-block-cgb-guten-block",
|
||||
"version": "2.8.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.17.0",
|
||||
"classnames": "^2.2.6",
|
||||
"react-material-ui-icon-picker": "0.0.1",
|
||||
"style-it": "^2.1.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "contact-person-box-block-cgb-guten-block",
|
||||
"version": "1.3.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.18.1",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
1361
spec/fixtures/dynamic_finders/plugin_version/gridflow/translation_file/languages/gridflow.pot
vendored
Normal file
1361
spec/fixtures/dynamic_finders/plugin_version/gridflow/translation_file/languages/gridflow.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,160 @@
|
||||
# Copyright (C) 2021 Manjil
|
||||
# This file is distributed under the same license as the Himalayan Bank Payment For WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Himalayan Bank Payment For WooCommerce 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-06-28 03:20:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 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"
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:18
|
||||
msgid "Accept payments via Himalyan Bank Ltd.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:53
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:55
|
||||
msgid "Enable Himalayan Bank Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:60
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:62
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:63
|
||||
msgid "Himalayan Pay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:67
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:69
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:70
|
||||
msgid "Pay with your credit card via our super-cool payment gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:74
|
||||
msgid "Test mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:75
|
||||
msgid "Enable Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:77
|
||||
msgid "Place the payment gateway in test mode using test API keys."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:83
|
||||
msgid "Test Merchant Id"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:85
|
||||
msgid "Place The Pagment Gateway Test API Key."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:90
|
||||
msgid "Test Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:92
|
||||
msgid ""
|
||||
"Place The Pagment Gateway Test Secret Key to encrypt and decrypt then "
|
||||
"response."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:97
|
||||
msgid "Live Merchant Id"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:99
|
||||
msgid "Place The Pagment Gateway Live API Key."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:104
|
||||
msgid "Live Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:106
|
||||
msgid ""
|
||||
"Place The Pagment Gateway Live Secret Key to encrypt and decrypt then "
|
||||
"response."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:137
|
||||
msgid "Awaiting Card payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:152
|
||||
msgid "Please Wait you have been redirected to bank payment site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:220
|
||||
msgid "Amount Field Was Empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:244
|
||||
msgid "Currency was empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-hbl-payment-gateway.php:269
|
||||
msgid "Value Field Was Empty"
|
||||
msgstr ""
|
||||
|
||||
#: templates/canceled.php:140
|
||||
msgid "Canceled !"
|
||||
msgstr ""
|
||||
|
||||
#: templates/canceled.php:141
|
||||
msgid ""
|
||||
"We are so sorry to see that you have canceled the payment. Please do let us "
|
||||
"know if we could help you change your decision."
|
||||
msgstr ""
|
||||
|
||||
#: templates/canceled.php:148 templates/declined.php:143
|
||||
msgid "Please save this number so that we can verify it later."
|
||||
msgstr ""
|
||||
|
||||
#: templates/canceled.php:152
|
||||
msgid "Back to home"
|
||||
msgstr ""
|
||||
|
||||
#: templates/declined.php:139
|
||||
msgid "Declined !"
|
||||
msgstr ""
|
||||
|
||||
#: templates/declined.php:140
|
||||
msgid "Sorry the payment was declined. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Himalayan Bank Payment For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Payment Gateway for Himalayan Bank."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Manjil"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://github.com/lijnam/"
|
||||
msgstr ""
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/heslo-login/composer_file/package.json
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/heslo-login/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"name": "heslo-login",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"watch": "webpack --mode=development --watch --config webpack-config.js",
|
||||
"build": "webpack --mode=production --config webpack-config.js",
|
||||
"develop": "webpack-dev-server --config webpack-config.js"
|
||||
},
|
||||
"author": "Chris McCaw",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.1.5",
|
||||
"@babel/core": "^7.1.6",
|
||||
"@babel/plugin-transform-runtime": "^7.14.2",
|
||||
"@babel/preset-env": "^7.1.6",
|
||||
"@babel/preset-react": "^7.13.13",
|
||||
"babel-loader": "^8.0.4",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"lodash": "^4.17.11",
|
||||
"webpack": "^4.26.1",
|
||||
"webpack-cli": "^3.1.2",
|
||||
"webpack-dev-server": "^3.1.14"
|
||||
},
|
||||
"dependencies": {
|
||||
"core-js": "^3.12.1",
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2",
|
||||
"regenerator-runtime": "^0.13.7"
|
||||
}
|
||||
}
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/hyperlink-group-block/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/hyperlink-group-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "hyperlink-group",
|
||||
"version": "1.0.1",
|
||||
"description": "Combine blocks into a group wrapped with an hyperlink.",
|
||||
"author": "kometschuh",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"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": "^5.3.0",
|
||||
"@wordpress/blocks": "^8.0.0",
|
||||
"@wordpress/i18n": "^3.19.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^14.0.1"
|
||||
}
|
||||
}
|
||||
50
spec/fixtures/dynamic_finders/plugin_version/i-toolbar/translation_file/languages/i-toolbar.pot
vendored
Normal file
50
spec/fixtures/dynamic_finders/plugin_version/i-toolbar/translation_file/languages/i-toolbar.pot
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2021 them.es
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Icon Toolbar 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/them-es/emoji-toolbar/issues\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-08-27T05:40:33+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: i-toolbar\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Icon Toolbar"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/i-toolbar"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple Icon picker for rich-text blocks. Integrates the awesome Bootstrap Icons (MIT) library."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "them.es"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://them.es/plugins/i-toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:1
|
||||
#: blocks/src/index.js:66
|
||||
msgid "Add Icon"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:1
|
||||
#: blocks/src/index.js:74
|
||||
msgid "Icons Popover"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:1
|
||||
#: blocks/src/index.js:78
|
||||
msgid "Filter..."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,57 @@
|
||||
# Copyright (C) 2018 10up
|
||||
# This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Insecure Content Warning 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/insecure-content-warning\n"
|
||||
"POT-Creation-Date: 2018-03-29 15:40:49+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.0.5\n"
|
||||
|
||||
#: insecure-content-warning.php:31
|
||||
msgid "More Information"
|
||||
msgstr ""
|
||||
|
||||
#: insecure-content-warning.php:32
|
||||
msgid "How to add media"
|
||||
msgstr ""
|
||||
|
||||
#: insecure-content-warning.php:33
|
||||
msgid "Mixed Content"
|
||||
msgstr ""
|
||||
|
||||
#: insecure-content-warning.php:34
|
||||
msgid "element"
|
||||
msgstr ""
|
||||
|
||||
#: insecure-content-warning.php:35
|
||||
msgid "elements"
|
||||
msgstr ""
|
||||
|
||||
#: insecure-content-warning.php:36
|
||||
msgid ""
|
||||
"%d insecure %s found. Please update element paths to https. Media files "
|
||||
"should always be added to the media library and then inserted."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Insecure Content Warning"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Prevent editors from adding insecure content in the editor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "10up"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://10up.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,136 @@
|
||||
# Copyright (C) 2021 Deep Web Solutions
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Internal Comments 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/deep-web-solutions/internal-comments/issues\n"
|
||||
"POT-Creation-Date: 2021-07-27 15:35:34+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 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/Installation.php:175
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:223
|
||||
#. 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/Installation.php:231
|
||||
msgid "<strong>%1$s</strong> was successfully updated."
|
||||
msgstr ""
|
||||
|
||||
#: dependencies/deep-web-solutions/wp-framework-core/src/includes/PluginComponents/Installation.php:231
|
||||
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 "Internal Comments"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.deep-web-solutions.com/plugins/internal-comments/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A WordPress plugin for administrators and other users with admin area "
|
||||
"access to post private admin-side comments to any registered post type."
|
||||
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 ""
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "inxpressapps/woocommerce",
|
||||
"version": "3.2.3",
|
||||
"description": "InXpress shipping rate provider for Woocommerce",
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"plugin",
|
||||
"woocommerce",
|
||||
"inxpress"
|
||||
],
|
||||
"homepage": "https://www.inxpressapps.com/",
|
||||
"type": "wordpress-plugin",
|
||||
"license": "proprietary",
|
||||
"authors": [
|
||||
{
|
||||
"email": "developers@inxpress.com",
|
||||
"name": "InXpress"
|
||||
}
|
||||
],
|
||||
"scripts": {
|
||||
"test": "phpcs wc-inxpress.php includes",
|
||||
"fix": "phpcbf wc-inxpress.php includes"
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"require": {
|
||||
"php": "^7.3|^8.0",
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "*",
|
||||
"phpcompatibility/php-compatibility": "*",
|
||||
"wp-coding-standards/wpcs": "^2.1.1"
|
||||
}
|
||||
}
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/juneteenth-banner/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/juneteenth-banner/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "juneteenth",
|
||||
"version": "1.0.2",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"babel": {
|
||||
"presets": [
|
||||
"@babel/preset-env"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "webpack --mode=development --watch --config webpack-config.js",
|
||||
"build": "webpack --mode=production --config webpack-config.js"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"webpack",
|
||||
"javascript"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.1.5",
|
||||
"@babel/core": "^7.1.6",
|
||||
"@babel/preset-env": "^7.1.6",
|
||||
"babel-loader": "^8.0.4",
|
||||
"lodash": "^4.17.11",
|
||||
"webpack": "^4.26.1",
|
||||
"webpack-cli": "^3.1.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"micromodal": "^0.4.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,523 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: federsammler-1.0\n"
|
||||
"POT-Creation-Date: 2021-06-04 15:19+0200\n"
|
||||
"PO-Revision-Date: 2021-06-04 15:19+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"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-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: class/Customers_List.php:22
|
||||
msgid "Customer"
|
||||
msgstr "Vielen Dank für Ihren Einkauf bei"
|
||||
|
||||
#: class/Customers_List.php:23 class/KVoucherCustomers.php:28
|
||||
#: class/KVoucherCustomers.php:47
|
||||
msgid "Customers"
|
||||
msgstr "Kunden"
|
||||
|
||||
#: class/Customers_List.php:177
|
||||
msgid "No customers avaliable."
|
||||
msgstr "Keine Kunden verfügbar."
|
||||
|
||||
#: class/Customers_List.php:237
|
||||
msgid "show"
|
||||
msgstr "anzeigen"
|
||||
|
||||
#: class/Customers_List.php:238
|
||||
msgid "cancel"
|
||||
msgstr "stornieren"
|
||||
|
||||
#: class/Customers_List.php:248 class/Customers_List.php:445
|
||||
msgid "open"
|
||||
msgstr "offen"
|
||||
|
||||
#: class/Customers_List.php:251 class/Customers_List.php:446
|
||||
msgid "redeemed"
|
||||
msgstr "eingelöst"
|
||||
|
||||
#: class/Customers_List.php:255 class/Customers_List.php:447
|
||||
msgid "canceled"
|
||||
msgstr "storniert"
|
||||
|
||||
#: class/Customers_List.php:291
|
||||
msgid "Coupon"
|
||||
msgstr "Gutschein"
|
||||
|
||||
#: class/Customers_List.php:294
|
||||
msgid "Bill"
|
||||
msgstr "Rechnung"
|
||||
|
||||
#: class/Customers_List.php:310
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#: class/Customers_List.php:311 class/Customers_List.php:556
|
||||
#: class/KVoucherFrontStuff.php:155 class/KVoucherFrontStuff.php:195
|
||||
#: class/KVoucherFrontStuff.php:314
|
||||
msgid "Value"
|
||||
msgstr "Wert"
|
||||
|
||||
#: class/Customers_List.php:312 class/Customers_List.php:538
|
||||
#: class/Customers_List.php:560 class/Customers_List.php:588
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: class/Customers_List.php:313 class/Customers_List.php:542
|
||||
#: class/Customers_List.php:564 class/Customers_List.php:592
|
||||
#: class/KVoucherFrontStuff.php:237 class/KVoucherFrontStuff.php:270
|
||||
#: class/KVoucherFrontStuff.php:310 class/KVoucherFrontStuff.php:324
|
||||
#: class/KVoucherFrontStuff.php:421 kvoucher.php:261
|
||||
#: php/ScCompanySettings.php:16
|
||||
msgid "Last Name"
|
||||
msgstr "Nachname"
|
||||
|
||||
#: class/Customers_List.php:314 class/Customers_List.php:566
|
||||
#: class/Customers_List.php:594 class/KVoucherFrontStuff.php:326
|
||||
#: class/KVoucherFrontStuff.php:348
|
||||
msgid "Street"
|
||||
msgstr "Straße"
|
||||
|
||||
#: class/Customers_List.php:315 class/Customers_List.php:568
|
||||
#: class/Customers_List.php:596 class/KVoucherFrontStuff.php:243
|
||||
#: class/KVoucherFrontStuff.php:276 class/KVoucherFrontStuff.php:328
|
||||
#: class/KVoucherFrontStuff.php:350 kvoucher.php:264
|
||||
#: php/ScCompanySettings.php:22
|
||||
msgid "City"
|
||||
msgstr "Stadt"
|
||||
|
||||
#: class/Customers_List.php:316 class/Customers_List.php:558
|
||||
#: class/KVoucherFrontStuff.php:338 class/KVoucherFrontStuff.php:354
|
||||
#: class/KVoucherFrontStuff.php:443 class/KVoucherFrontStuff.php:447
|
||||
#: class/KVoucherFrontStuff.php:461 class/KVoucherFrontStuff.php:477
|
||||
#: php/ScCompanySettings.php:38
|
||||
msgid "Shipping"
|
||||
msgstr "Versand"
|
||||
|
||||
#: class/Customers_List.php:317
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#: class/Customers_List.php:318
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: class/Customers_List.php:319
|
||||
msgid "Documents"
|
||||
msgstr "Dokumente"
|
||||
|
||||
#: class/Customers_List.php:444
|
||||
msgid "all"
|
||||
msgstr "alle"
|
||||
|
||||
#: class/Customers_List.php:514
|
||||
msgid "The voucher has not yet been redeemed"
|
||||
msgstr "Der Guschein wurde noch nicht eingelöst"
|
||||
|
||||
#: class/Customers_List.php:516
|
||||
msgid "The voucher is redeemed"
|
||||
msgstr "Der Gutschein ist einglöst"
|
||||
|
||||
#: class/Customers_List.php:518
|
||||
msgid "The voucher has been canceled"
|
||||
msgstr "der Gutschein wurde storniert"
|
||||
|
||||
#: class/Customers_List.php:520
|
||||
msgid "Redeem voucher"
|
||||
msgstr "Gutschein einlösen"
|
||||
|
||||
#: class/Customers_List.php:520
|
||||
msgid "'Are you sure you want to redeem the voucher?'"
|
||||
msgstr "'Sind sie sicher das sie die Gutschein einlösen möchten?'"
|
||||
|
||||
#: class/Customers_List.php:522
|
||||
msgid "Cancel voucher"
|
||||
msgstr "Gutschein stornieren"
|
||||
|
||||
#: class/Customers_List.php:522
|
||||
msgid "'Are you sure you want to cancel the voucher?'"
|
||||
msgstr "'Sind sie sicher das sie den Gutschein stonieren möchten?'"
|
||||
|
||||
#: class/Customers_List.php:524
|
||||
msgid "Mark the voucher as OPEN again"
|
||||
msgstr "Gutschein wieder als OFFEN markieren"
|
||||
|
||||
#: class/Customers_List.php:524
|
||||
msgid "'Are you sure you want to mark the voucher as OPEN again?'"
|
||||
msgstr ""
|
||||
"'Sind sie sicher das sie den Gutschein wieder als offen markieren möchten?'"
|
||||
|
||||
#: class/Customers_List.php:528
|
||||
msgid "Voucher recipient"
|
||||
msgstr "Gutscheinempfänger"
|
||||
|
||||
#: class/Customers_List.php:536
|
||||
msgid "Issued on"
|
||||
msgstr "Ausgestellt am"
|
||||
|
||||
#: class/Customers_List.php:540 class/KVoucherFrontStuff.php:344
|
||||
msgid "First name"
|
||||
msgstr "Vorname"
|
||||
|
||||
#: class/Customers_List.php:544 class/KVoucherFrontStuff.php:312
|
||||
#: class/KVoucherFrontStuff.php:423
|
||||
msgid "Occasion"
|
||||
msgstr "Anlass"
|
||||
|
||||
#: class/Customers_List.php:550 class/KVoucherFrontStuff.php:223
|
||||
msgid "Billing address"
|
||||
msgstr "Rechnungsadresse"
|
||||
|
||||
#: class/Customers_List.php:562 class/Customers_List.php:590
|
||||
#: class/KVoucherFrontStuff.php:235 class/KVoucherFrontStuff.php:268
|
||||
#: class/KVoucherFrontStuff.php:308 class/KVoucherFrontStuff.php:322
|
||||
#: class/KVoucherFrontStuff.php:419 kvoucher.php:260
|
||||
#: php/ScCompanySettings.php:14
|
||||
msgid "First Name"
|
||||
msgstr "Vorname"
|
||||
|
||||
#: class/Customers_List.php:570 class/Customers_List.php:598
|
||||
#: class/KVoucherFrontStuff.php:245 class/KVoucherFrontStuff.php:278
|
||||
#: class/KVoucherFrontStuff.php:330 class/KVoucherFrontStuff.php:352
|
||||
#: kvoucher.php:265 php/ScCompanySettings.php:24
|
||||
msgid "Country"
|
||||
msgstr "Land"
|
||||
|
||||
#: class/Customers_List.php:574 class/KVoucherFrontStuff.php:247
|
||||
#: class/KVoucherFrontStuff.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: class/Customers_List.php:582 class/KVoucherFrontStuff.php:262
|
||||
msgid "Differing Shipping Address"
|
||||
msgstr "Abweichende Versandadresse"
|
||||
|
||||
#: class/KVoucherCustomers.php:63
|
||||
msgid "search"
|
||||
msgstr "suchen"
|
||||
|
||||
#: class/KVoucherCustomers.php:74
|
||||
msgid "Awesome Premium Features"
|
||||
msgstr "Verfügbar in KVoucher Premium"
|
||||
|
||||
#: class/KVoucherCustomers.php:76
|
||||
msgid "Upgrade Now!"
|
||||
msgstr "Upgrade Jetzt!"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:36
|
||||
msgid "Specify a different delivery address"
|
||||
msgstr "Abweichende Lieferadresse"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:225
|
||||
msgid "Privat"
|
||||
msgstr "Privat"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:227 class/KVoucherFrontStuff.php:233
|
||||
#: class/KVoucherFrontStuff.php:320 php/ScCompanySettings.php:12
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:229 class/KVoucherFrontStuff.php:264
|
||||
#: class/KVoucherFrontStuff.php:415
|
||||
msgid "Mr"
|
||||
msgstr "Herr"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:231 class/KVoucherFrontStuff.php:266
|
||||
#: class/KVoucherFrontStuff.php:417
|
||||
msgid "Mrs"
|
||||
msgstr "Frau"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:239 class/KVoucherFrontStuff.php:272
|
||||
msgid "Street + No."
|
||||
msgstr "Straße + Nr"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:241 class/KVoucherFrontStuff.php:274
|
||||
#: kvoucher.php:263 php/ScCompanySettings.php:20
|
||||
msgid "Postal-Code"
|
||||
msgstr "Postleitzahl"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:249 class/KVoucherFrontStuff.php:280
|
||||
#: class/KVoucherFrontStuff.php:332 class/KVoucherFrontStuff.php:354
|
||||
msgid "E-mail"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:304 class/KVoucherFrontStuff.php:411
|
||||
msgid "Voucher for"
|
||||
msgstr "Gutschein für"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:306 class/KVoucherFrontStuff.php:413
|
||||
msgid "Dates appear on the voucher"
|
||||
msgstr "Daten erscheinen auf dem Gutschein"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:318
|
||||
msgid "Billing Adress"
|
||||
msgstr "Rechnungsadresse"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:334
|
||||
msgid "Shipping costs"
|
||||
msgstr "Versandkosten"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:336
|
||||
msgid "Total"
|
||||
msgstr "Summe"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:342
|
||||
msgid "Shipping Adress"
|
||||
msgstr "Lieferadresse"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:346
|
||||
msgid "Last name"
|
||||
msgstr "Nachname"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:375
|
||||
msgid "Please confirm our"
|
||||
msgstr "Bitte bestätigen sie unsere"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:375
|
||||
msgid "terms and conditions"
|
||||
msgstr "AGB's"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:382
|
||||
msgid "close"
|
||||
msgstr "schliesen"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:393
|
||||
msgid "Thank you for shopping at"
|
||||
msgstr "Vielen dank für den Einkauf bei"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:397
|
||||
msgid "Back to selection"
|
||||
msgstr "Zurück zur Auswahl"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:447
|
||||
msgid "via Post"
|
||||
msgstr "per Post"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:451
|
||||
msgid "via E-mail (PDF)"
|
||||
msgstr "per E-mail (PDF)"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:463
|
||||
msgid "The dispatch takes place via E-mail (PDF)"
|
||||
msgstr "Der Versand efolgt per E-mail(PDF)"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:479
|
||||
msgid "The dispatch takes place by Post"
|
||||
msgstr "Der Versand erfolgt per Post"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:740
|
||||
msgid ""
|
||||
"Please enable javascript in your browser. Otherwise it is not possible to "
|
||||
"buy a voucher."
|
||||
msgstr ""
|
||||
"Bitte aktivieren Sie JavaScript in ihrem Browser. Der kauf eines Gutscheins "
|
||||
"ist sonst nicht möglich."
|
||||
|
||||
#: class/KVoucherFrontStuff.php:760 class/KVoucherFrontStuff.php:792
|
||||
msgid "Next"
|
||||
msgstr "Weiter"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:792 class/KVoucherFrontStuff.php:814
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
#: class/KVoucherFrontStuff.php:824
|
||||
msgid ""
|
||||
"Unfortunately, our online voucher service is currently not available. Please "
|
||||
"accept our apologies"
|
||||
msgstr ""
|
||||
"Leider ist unser Online- Gutscheindienst momentan nicht verfügbar. Wir "
|
||||
"bitten vielmals um Entschuldigung"
|
||||
|
||||
#: kvoucher.php:259
|
||||
msgid "Company name"
|
||||
msgstr "Firma"
|
||||
|
||||
#: kvoucher.php:262
|
||||
msgid "Streetname"
|
||||
msgstr "Straße"
|
||||
|
||||
#: kvoucher.php:266 php/ScCompanySettings.php:28
|
||||
msgid "Phonenumber"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: kvoucher.php:267 php/ScCompanySettings.php:30
|
||||
msgid "Company Domain"
|
||||
msgstr "Firmen Domain"
|
||||
|
||||
#: kvoucher.php:268 php/ScCompanySettings.php:32
|
||||
msgid "Company E-mail"
|
||||
msgstr "Firmen E-mail"
|
||||
|
||||
#: kvoucher.php:275 kvoucher.php:321
|
||||
msgid "is required!"
|
||||
msgstr "ist erforderlich!"
|
||||
|
||||
#: kvoucher.php:284
|
||||
msgid "cUrl is not installed on the web server but is required"
|
||||
msgstr "cUrl ist nicht auf dem Web-Server installiert aber erforderlich"
|
||||
|
||||
#: kvoucher.php:302
|
||||
msgid "The creation of the general terms and conditions is recommended!"
|
||||
msgstr "Die Erstellung der Allgemeinen Geschäftsbedingungen wird empfohlen!"
|
||||
|
||||
#: kvoucher.php:334
|
||||
msgid "KVoucher Options"
|
||||
msgstr "KVoucher Einstellungen"
|
||||
|
||||
#: kvoucher.php:356
|
||||
msgid "Company Settings"
|
||||
msgstr "Firmen-Einstellungen"
|
||||
|
||||
#: kvoucher.php:359
|
||||
msgid "PayPal Settings"
|
||||
msgstr "PayPal Einstellungen"
|
||||
|
||||
#: kvoucher.php:362 php/ScTermsOfServiceSettings.php:14
|
||||
msgid "Terms of Service"
|
||||
msgstr "Nutzungsbedingungen"
|
||||
|
||||
#: kvoucher.php:365
|
||||
msgid "Style Settings"
|
||||
msgstr "Stil Einstellungen"
|
||||
|
||||
#: kvoucher.php:368 kvoucher.php:369
|
||||
msgid "Handbook"
|
||||
msgstr "Handbuch"
|
||||
|
||||
#: php/ScCompanySettings.php:10
|
||||
msgid "Company Options"
|
||||
msgstr "Firmenoptionen"
|
||||
|
||||
#: php/ScCompanySettings.php:18
|
||||
msgid "No. /Streetname"
|
||||
msgstr "Straße /Nr."
|
||||
|
||||
#: php/ScCompanySettings.php:26
|
||||
msgid "Tax number"
|
||||
msgstr "Steuernummer"
|
||||
|
||||
#: php/ScCompanySettings.php:34
|
||||
msgid "Validity"
|
||||
msgstr "Gültigkeit"
|
||||
|
||||
#: php/ScCompanySettings.php:36
|
||||
msgid "Currency"
|
||||
msgstr "Währung"
|
||||
|
||||
#: php/ScCompanySettings.php:40
|
||||
msgid "Shipping costs by post"
|
||||
msgstr "Versandkosten"
|
||||
|
||||
#: php/ScCompanySettings.php:42
|
||||
msgid "Value added tax in percent"
|
||||
msgstr "UmSt."
|
||||
|
||||
#: php/ScCompanySettings.php:57
|
||||
msgid "Register your company data."
|
||||
msgstr "Registrieren Sie Ihre Unternehmensdaten."
|
||||
|
||||
#: php/ScCompanySettings.php:73 php/ScCompanySettings.php:109
|
||||
#: php/ScCompanySettings.php:125 php/ScCompanySettings.php:142
|
||||
#: php/ScCompanySettings.php:161 php/ScCompanySettings.php:178
|
||||
#: php/ScCompanySettings.php:194 php/ScCompanySettings.php:227
|
||||
#: php/ScCompanySettings.php:244 php/ScCompanySettings.php:261
|
||||
#: php/ScPayPalSettings.php:32 php/ScTermsOfServiceSettings.php:30
|
||||
msgid "required"
|
||||
msgstr "erforderlich"
|
||||
|
||||
#: php/ScCompanySettings.php:201
|
||||
msgid "your country"
|
||||
msgstr "dein Land"
|
||||
|
||||
#: php/ScCompanySettings.php:338
|
||||
msgid "Year(s)"
|
||||
msgstr "Jahr(e)"
|
||||
|
||||
#: php/ScPayPalSettings.php:11
|
||||
msgid "PayPal Options"
|
||||
msgstr "PayPal-Optionen"
|
||||
|
||||
#: php/ScPayPalSettings.php:16
|
||||
msgid "PayPal Client-ID"
|
||||
msgstr "PayPal Client-ID"
|
||||
|
||||
#: php/ScPayPalSettings.php:25
|
||||
msgid "Provide your PayPal Client-ID"
|
||||
msgstr "Geben Sie Ihre PayPal-Client-ID an"
|
||||
|
||||
#: php/ScStyleSettings.php:10
|
||||
msgid "Style Options"
|
||||
msgstr "Stil-Optionen"
|
||||
|
||||
#: php/ScStyleSettings.php:15
|
||||
msgid "Previews"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: php/ScStyleSettings.php:17
|
||||
msgid "Font-Color"
|
||||
msgstr "Schrift-Farbe"
|
||||
|
||||
#: php/ScStyleSettings.php:19
|
||||
msgid "Background-Color"
|
||||
msgstr "Hintergrund-Farbe"
|
||||
|
||||
#: php/ScStyleSettings.php:30
|
||||
msgid "Provide your Custom-Style"
|
||||
msgstr "Geben Sie Ihren benutzerdefinierten Stil an"
|
||||
|
||||
#: php/ScStyleSettings.php:61
|
||||
msgid "Preview Coupon"
|
||||
msgstr "Vorschau Gutschein"
|
||||
|
||||
#: php/ScStyleSettings.php:63
|
||||
msgid "Preview Bill"
|
||||
msgstr "Vorschau Rechnung"
|
||||
|
||||
#: php/ScStyleSettings.php:90 php/ScStyleSettings.php:113
|
||||
msgid "(available in KVoucher Premium)"
|
||||
msgstr "(verfügbar in KVoucher Premium)"
|
||||
|
||||
#: php/ScStyleSettings.php:90 php/ScStyleSettings.php:113
|
||||
msgid " Upgrade Now!"
|
||||
msgstr "Upgrade Jetzt!"
|
||||
|
||||
#: php/ScStyleSettings.php:127
|
||||
msgid "Upload Image"
|
||||
msgstr "Bild hochladen"
|
||||
|
||||
#: php/ScTermsOfServiceSettings.php:9
|
||||
msgid "Terms of Service Options"
|
||||
msgstr "Nutzungsbedingungen Optionen"
|
||||
|
||||
#: php/ScTermsOfServiceSettings.php:23
|
||||
msgid "Provide your Terms of Service"
|
||||
msgstr "Geben Sie Ihre Nutzungsbedingungen an"
|
||||
|
||||
#: php/ScTermsOfServiceSettings.php:23
|
||||
msgid "You can use HTML Code"
|
||||
msgstr "Sie können HTML-Code verwenden"
|
||||
|
||||
#~ msgid "Streetname/No."
|
||||
#~ msgstr "Straße/Nr."
|
||||
|
||||
#~ msgid "Koboldcoupon Customers"
|
||||
#~ msgstr "KoboldCoupon Kunden"
|
||||
|
||||
#~ msgid "Pay now"
|
||||
#~ msgstr "Jetzt bezahlen"
|
||||
|
||||
#~ msgid "Show"
|
||||
#~ msgstr "Anzeigen"
|
||||
|
||||
#~ msgid "Company URL"
|
||||
#~ msgstr "Firmen-URL"
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/lipsum-dynamo/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/lipsum-dynamo/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
*Release Date - 07 Septempber 2021*
|
||||
|
||||
* The very first version
|
||||
@@ -0,0 +1,391 @@
|
||||
# Copyright (C) 2021 MailUp
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MailUp for Wordpress | Email and Newsletter Subscription Form 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-mailup/"
|
||||
"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-06-04T16:00:26+00:00\n"
|
||||
"PO-Revision-Date: 2021-06-18 16:42+0200\n"
|
||||
"X-Generator: Poedit 3.0\n"
|
||||
"X-Domain: mailup\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: it_IT\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WordPress Plugin Mailup"
|
||||
msgstr "MailUp for Wordpress | Email and Newsletter Subscription Form"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://integrations.mailup.com/it/wordpress/"
|
||||
msgstr "https://integrations.mailup.com/it/wordpress/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The MailUp plugin for WordPress makes it easy to add a subscription form to a WordPress website and, to collect recipient for your email and sms campaigns. With the MailUp plugin you can easily create a sign-up form, personalise required fields and make it available your website or blog in few clicks."
|
||||
msgstr "Il plugin di MailUp per WordPress semplifica l’aggiunta di un form di iscrizione su un sito WordPress e la raccolta di destinatari per le tue campagne email e sms. Con il plugin di MailUp puoi creare facilmente un modulo di iscrizione, personalizzare i campi richiesti e posizionarlo in pochi clic sul tuo sito web o blog."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MailUp"
|
||||
msgstr "MailUp"
|
||||
|
||||
#. Author URI of the plugin
|
||||
#: admin/partials/mailup-admin-display.php:20
|
||||
#: admin/partials/mailup-login-platform.php:21
|
||||
msgid "https://www.mailup.com"
|
||||
msgstr "https://www.mailup.it"
|
||||
|
||||
#: admin/class-mailup-admin.php:131
|
||||
msgid "One of \"email\" or \"phone\" field is required"
|
||||
msgstr "Il form deve contenere almeno l’email o il numero di telefono"
|
||||
|
||||
#: admin/class-mailup-admin.php:230
|
||||
#: admin/class-mailup-admin.php:261
|
||||
#: includes/class-mailup-model.php:378
|
||||
msgid "There was an error. Please try again later."
|
||||
msgstr "Ops! C’è stato un errore. Per favore, riprova più tardi."
|
||||
|
||||
#: admin/class-mailup-admin.php:259
|
||||
msgid "Form saved succesfully"
|
||||
msgstr "Form salvato con successo"
|
||||
|
||||
#: admin/class-mailup-admin.php:289
|
||||
#: admin/class-mailup-admin.php:291
|
||||
msgid "Overview"
|
||||
msgstr "Panoramica"
|
||||
|
||||
#: admin/class-mailup-admin.php:292
|
||||
msgid "The MailUp plugin for WordPress makes it easy to add a subscription form to your WordPress website and, to collect recipient for your email and sms campaigns."
|
||||
msgstr "Il plugin di MailUp per WordPress semplifica l’aggiunta di un form di "
|
||||
"iscrizione su un sito WordPress e la raccolta di destinatari per le "
|
||||
"campagne email e sms."
|
||||
|
||||
#: admin/class-mailup-admin.php:293
|
||||
msgid "Connect your MailUp account to WordPress, select a list and start designing your ready-to-use sign-up form."
|
||||
msgstr "Collega il tuo account MailUp a WordPress, seleziona una lista e inizia a "
|
||||
"progettare il tuo modulo di iscrizione pronto all’uso."
|
||||
|
||||
#: admin/class-mailup-admin.php:300
|
||||
#: admin/class-mailup-admin.php:302
|
||||
msgid "How to use it"
|
||||
msgstr "Come usare il form"
|
||||
|
||||
#: admin/class-mailup-admin.php:303
|
||||
msgid "Once you have created and customized your form you can:"
|
||||
msgstr "Dopo aver creato e personalizzato il form puoi:"
|
||||
|
||||
#: admin/class-mailup-admin.php:304
|
||||
msgid "<ul><li>place it wherever you want, using the shortcode: [mailup_form]. Please note that you can have only one form per page.</li><li>add it to the sidebar activating a new Widget. The form will inherit your WordPress styles.</li></ul>"
|
||||
msgstr "<ul><li>posizionarlo dove vuoi usando lo shortcode: [mailup_form]. Tieni "
|
||||
"presente che puoi avere un solo modulo per pagina.</li>\n"
|
||||
"<li>Aggiungerlo alla barra laterale attivando un nuovo Widget. Il form "
|
||||
"erediterà I tuoi stili di WordPress.</li></ul>"
|
||||
|
||||
#: admin/class-mailup-admin.php:310
|
||||
#: admin/class-mailup-admin.php:312
|
||||
#: admin/partials/mailup-admin-display.php:32
|
||||
msgid "General Settings"
|
||||
msgstr "Impostazioni generali"
|
||||
|
||||
#: admin/class-mailup-admin.php:309
|
||||
msgid "In the General Settings you can set up:"
|
||||
msgstr "Nelle Impostazioni generali trovi:"
|
||||
|
||||
#: admin/class-mailup-admin.php:314
|
||||
msgid "<ul><li>List: choose the MailUp list in which you want to collect your recipients</li><li>Group: give a name or select the group where you will find your new subscribers</li><li>Title form and description: tell your visitors why they should fill in your form</li><li>Submit button: personalise your submit button text</li></ul>"
|
||||
msgstr "<ul>\n"
|
||||
"<li>Lista: scegli la lista MailUp in cui vuoi raccogliere I tuoi "
|
||||
"destinatari</li>\n"
|
||||
"<li>Gruppo: dai un nome o seleziona il gruppo in cui troverai I tuoi nuovi "
|
||||
"iscritti</li>\n"
|
||||
"<li>Titolo e descrizione del form: spiega ai tuoi visitatori perché "
|
||||
"dovrebbero compilare il tuo modulo</li>\n"
|
||||
"<li>Testo del pulsante: personalizza il testo del pulsante di iscrizione</"
|
||||
"li>\n"
|
||||
"</ul>"
|
||||
|
||||
#: admin/class-mailup-admin.php:321
|
||||
#: admin/class-mailup-admin.php:323
|
||||
#: admin/partials/mailup-admin-display.php:35
|
||||
msgid "Form Fields"
|
||||
msgstr "Campi del form"
|
||||
|
||||
#: admin/class-mailup-admin.php:324
|
||||
msgid "In the Form Fields tab you can add and remove fields to your form. For each field you can decide the corresponding recipient field in MailUp platform, what type of content it will contain, the label displayed and if the field is required or not to submit it."
|
||||
msgstr "Nel tab Campi del form puoi aggiungere e rimuovere i campi del modulo. Per "
|
||||
"ogni campo puoi decidere il campo anagrafico in cui deve essere riportato "
|
||||
"nella piattaforma MailUp, che tipo di contenuto, l’etichetta visualizzata e "
|
||||
"se il campo è obbligatorio o meno."
|
||||
|
||||
#: admin/class-mailup-admin.php:325
|
||||
msgid "The Terms and Conditions section gives you the possibility to add up to three custom T&Cs. Each T&C will automatically create a dedicated group in your MailUp account, so that you can easily retrieve those who accepted them and easily create your marketing campaigns."
|
||||
msgstr "La sezione Termini e Condizioni ti dà la possibilità di aggiungere fino a "
|
||||
"tre campi personalizzati. Ogni condizione creerà automaticamente un gruppo "
|
||||
"dedicato nel tuo account MailUp, in modo che tu possa recuperare facilmente "
|
||||
"chi li ha accettati e creare le tue campagne di marketing."
|
||||
|
||||
#: admin/class-mailup-admin.php:332
|
||||
#: admin/class-mailup-admin.php:334
|
||||
#: admin/partials/mailup-admin-display.php:38
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Impostazioni avanzate"
|
||||
|
||||
#: admin/class-mailup-admin.php:335
|
||||
msgid "In the tab Advanced Settings you can decide if you what your users to receive a Confirmation email, personalize some feedback messages and decide to use placeholders instead of labels."
|
||||
msgstr "Nel tab Impostazioni avanzate puoi, per prima cosa, decidere se le persone "
|
||||
"che si iscrivono devono ricevere un'email di richiesta conferma. Puoi "
|
||||
"personalizzare alcuni messaggi di feedback e decidere se utilizzare i "
|
||||
"placeholder al posto delle etichette."
|
||||
|
||||
#: admin/class-mailup-admin.php:336
|
||||
msgid "Your form will inherit your WordPress styles. But if you want to further personalize it, you can use the Custom CSS section."
|
||||
msgstr "Il tuo modulo erediterà i tuoi stili di WordPress. Ma se vuoi "
|
||||
"personalizzarlo ulteriormente, usa la sezione CSS personalizzato."
|
||||
|
||||
#: admin/class-mailup-admin.php:341
|
||||
msgid "For more information:"
|
||||
msgstr "Per approfondire:"
|
||||
|
||||
#: admin/class-mailup-admin.php:342
|
||||
msgid "https://help.mailup.com/display/mailupUserGuide/WordPress"
|
||||
msgstr "https://help.mailup.com/display/mailupUserGuide/WordPress"
|
||||
|
||||
#: admin/class-mailup-admin.php:338
|
||||
msgid "MailUp Help"
|
||||
msgstr "Documentazione MailUp"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:3
|
||||
msgid "Other Settings"
|
||||
msgstr "Altre impostazioni"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:8
|
||||
msgid "Request confirmation by email"
|
||||
msgstr "Invia una email di conferma ai nuovi iscritti"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:16
|
||||
msgid "Use placeholders instead of labels"
|
||||
msgstr "Usa i placeholder al posto delle etichette"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:26
|
||||
msgid "Messages"
|
||||
msgstr "Messaggi"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:28
|
||||
msgid "Edit default messages for subscription status."
|
||||
msgstr "Modifica i testi predefiniti sull’esito dell’iscrizione."
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:33
|
||||
msgid "Successful registration"
|
||||
msgstr "Registrazione avvenuta con successo"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:42
|
||||
msgid "Generic Error"
|
||||
msgstr "Errore generico"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:54
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS Personalizzato"
|
||||
|
||||
#: admin/partials/mailup-admin-advanced-settings.php:56
|
||||
msgid "Insert here your custom CSS:"
|
||||
msgstr "Inserisci qui il tuo stile personalizzato."
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:16
|
||||
msgid "Form Fields:"
|
||||
msgstr "Campi del form:"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:19
|
||||
msgid "Create your form including some custom fields. Including at least email or "
|
||||
"phone, is mandatory."
|
||||
msgstr "Aggiungi tutti i campi che vuoi inserire nel tuo form, inclusi quelli "
|
||||
"personalizzati. Il form deve contenere almeno l’email o il numero di "
|
||||
"telefono."
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:23
|
||||
msgid "Field ID on MailUp"
|
||||
msgstr "Campo anagrafico di MailUp"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:25
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:27
|
||||
msgid "Displayed Name"
|
||||
msgstr "Etichetta"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:29
|
||||
#: admin/partials/mailup-admin-fields.php:71
|
||||
#: admin/partials/mailup-admin-fields.php:103
|
||||
#: admin/partials/mailup-admin-fields.php:146
|
||||
#: admin/partials/mailup-admin-terms.php:41
|
||||
msgid "Required"
|
||||
msgstr "Obbligatorio"
|
||||
|
||||
#: admin/class-mailup-admin.php:134
|
||||
#: admin/partials/mailup-admin-fields.php:75
|
||||
#: admin/partials/mailup-admin-fields.php:107
|
||||
msgid "Remove"
|
||||
msgstr "Elimina"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:86
|
||||
#: admin/partials/mailup-admin-fields.php:92
|
||||
#: admin/partials/mailup-admin-fields.php:98
|
||||
#: admin/partials/mailup-admin-fields.php:136
|
||||
msgid "email"
|
||||
msgstr "Email"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:130
|
||||
msgid "text"
|
||||
msgstr "Testo"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:132
|
||||
msgid "date"
|
||||
msgstr "Data"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:134
|
||||
msgid "number"
|
||||
msgstr "Numero"
|
||||
|
||||
#: admin/partials/mailup-admin-fields.php:150
|
||||
msgid "Add"
|
||||
msgstr "Aggiungi"
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:5
|
||||
msgid "List:"
|
||||
msgstr "Lista:"
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:7
|
||||
msgid "Select the list you want to use."
|
||||
msgstr "Scegli la lista di MailUp che vuoi usare."
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:19
|
||||
msgid "Group:"
|
||||
msgstr "Gruppo:"
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:22
|
||||
msgid "Users will always be part of this group. They will also be placed in "
|
||||
"specific groups based on privacy choices."
|
||||
msgstr "Dai un nome al gruppo in cui raccoglierai i tuoi iscritti."
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:28
|
||||
msgid "Form Title:"
|
||||
msgstr "Titolo del form:"
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:31
|
||||
msgid "Used to give your form title. Leave blank if you think is not necessary."
|
||||
msgstr "Usa questo spazio per dare un titolo al tuo form. Il titolo verrà mostrato "
|
||||
"all’inizio del modulo. Se non vuoi inserirlo, lascia il campo vuoto."
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:36
|
||||
msgid "Form Description:"
|
||||
msgstr "Descrizione del form:"
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:39
|
||||
msgid "Used to give your form a description. Leave blank if you think is not "
|
||||
"necessary."
|
||||
msgstr "Usa questo spazio per inserire una descrizione del tuo form. Essa verrà "
|
||||
"mostrata all’inizio del modulo, subito dopo il titolo. Se non vuoi "
|
||||
"inserirla, lascia il campo vuoto."
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:43
|
||||
msgid "Submit button text:"
|
||||
msgstr "Testo del pulsate:"
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:46
|
||||
msgid "Used to pesonalize the submit button text (e.g. Send, Subscribe, Sign-in, "
|
||||
"Sign-up...)"
|
||||
msgstr "Personalizza il testo del pulsante per iscriversi (es. Invia, Iscriviti, "
|
||||
"Salva…)"
|
||||
|
||||
#: admin/partials/mailup-admin-form.php:48
|
||||
msgid "Send"
|
||||
msgstr "Iscriviti"
|
||||
|
||||
#: admin/partials/mailup-admin-terms.php:1
|
||||
msgid "Terms and Conditions"
|
||||
msgstr "Termini e Condizioni"
|
||||
|
||||
#. translators: Parameter "Term Index Included"
|
||||
#: admin/partials/mailup-admin-terms.php:7
|
||||
msgid "%s - Usually required and used for general terms of service"
|
||||
msgstr "%s - Termini e condizioni (es. Termini e condizioni generali del servizio)"
|
||||
|
||||
#. translators: Parameter "Term Index Included"
|
||||
#: admin/partials/mailup-admin-terms.php:9
|
||||
msgid "%s - Usually used for marketing communication"
|
||||
msgstr "%s - Termini e condizioni (es. Ricezione di comunicazioni di marketing)"
|
||||
|
||||
#. translators: Parameter "Term Index Included"
|
||||
#: admin/partials/mailup-admin-terms.php:11
|
||||
msgid "%s - Usually used for data profilation"
|
||||
msgstr "%s - Termini e condizioni (es. Profilazione utenti)"
|
||||
|
||||
#: admin/partials/mailup-admin-terms.php:15
|
||||
msgid "Here you can set your terms and conditions acceptances."
|
||||
msgstr "Inserisci le accettazioni dei termini e condizioni di servizio che vuoi "
|
||||
"richiedere ai tuoi iscritti."
|
||||
|
||||
#: admin/partials/mailup-admin-terms.php:37
|
||||
msgid "Include"
|
||||
msgstr "Inserisci"
|
||||
|
||||
#. translators: First Parameter "Group Name" - Second Parameter "Term Index Included"
|
||||
#: admin/partials/mailup-admin-terms.php:57
|
||||
msgid "whoever accepts, will be included in the group <b><span>%1$s</span> Terms and Conditions %2$s</b>"
|
||||
msgstr "Le persone che accetterano questi termini e condizioni, faranno parte anche del gruppo <b>%1$s Termini e Condizioni %2$s</b>"
|
||||
|
||||
#: admin/partials/mailup-login-platform.php:33
|
||||
msgid "Create your integrated MailUp form!"
|
||||
msgstr "Crea il tuo form con MailUp!"
|
||||
|
||||
#: admin/partials/mailup-login-platform.php:37
|
||||
msgid "Connect your account with MailUp to activate the plugin"
|
||||
msgstr "Collega il tuo account MailUp per iniziare a creare il tuo form"
|
||||
|
||||
#: admin/partials/mailup-login-platform.php:41
|
||||
msgid "Connect your account"
|
||||
msgstr "Collega il tuo account"
|
||||
|
||||
#: admin/partials/mailup-login-platform.php:48
|
||||
msgid "Don't have an account?"
|
||||
msgstr "Non hai ancora un account?"
|
||||
|
||||
#: admin/partials/mailup-login-platform.php:49
|
||||
msgid "https://lp.mailup.com/en/free-trial/"
|
||||
msgstr "https://lp.mailup.com/it/prova-gratuita/"
|
||||
|
||||
#: admin/partials/mailup-login-platform.php:50
|
||||
msgid "Create a free trial"
|
||||
msgstr "Prova MailUp gratuitamente"
|
||||
|
||||
#: admin/partials/mailup-reset-tokens.php:19
|
||||
msgid "⛔ Disconnect Plugin ⛔"
|
||||
msgstr "⛔ Disconnetti il plugin ⛔"
|
||||
|
||||
#: admin/partials/mailup-reset-tokens.php:20
|
||||
msgid "Disconnecting your plugin all your forms included in your website will stop "
|
||||
"working.<br>If you no longer want to use the plugin, remove all your MailUp "
|
||||
"forms before."
|
||||
msgstr "Disconnettendo il plugin i form che hai incluso nel tuo sito smetteranno di "
|
||||
"funzionare.<br>Se non hai più intenzione di usare il plugin, rimuovi prima "
|
||||
"tutti i form."
|
||||
|
||||
#: admin/partials/mailup-reset-tokens.php:24
|
||||
msgid "Disconnect"
|
||||
msgstr "Disconnetti"
|
||||
|
||||
#: includes/class-mailup-form.php:14
|
||||
#: includes/class-mailup-model.php:155
|
||||
msgid "Wordpress MailUp Plugin"
|
||||
msgstr "Plugin WordPress"
|
||||
|
||||
#: includes/class-mailup-model.php:377
|
||||
msgid "Successful registration."
|
||||
msgstr "Ti sei iscritto correttamente."
|
||||
|
||||
#: widgets/class-mailup-widget.php:18
|
||||
msgid "Add a Mailup Form to the sidebar"
|
||||
msgstr "Aggiungi un form di iscrizione collegato al tuo account MailUp."
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/max-addons-for-bricks/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/max-addons-for-bricks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
== 1.0.0 ==
|
||||
Release date: June 19, 2021
|
||||
* Initial Release
|
||||
File diff suppressed because it is too large
Load Diff
32
spec/fixtures/dynamic_finders/plugin_version/mobiloud-commerce/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/mobiloud-commerce/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "woocommerce-integration",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "webpack --mode=development --watch",
|
||||
"prod": "webpack --mode=production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@github-mobiloud-sid:mobiloudsupport/woocommerce-integration.git"
|
||||
},
|
||||
"author": "Siddharth Thevaril",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"debounce": "^1.2.0",
|
||||
"onsenui": "^2.10.10",
|
||||
"throttle-debounce": "^3.0.1",
|
||||
"tiny-slider": "^2.9.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"css-loader": "^4.0.0",
|
||||
"file-loader": "^6.2.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"sass": "^1.26.10",
|
||||
"sass-loader": "^9.0.2",
|
||||
"style-loader": "^1.2.1",
|
||||
"webpack": "^4.44.0",
|
||||
"webpack-cli": "^3.3.12"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/mw-auto-download/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/mw-auto-download/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*** Auto download by Michael Willems Changelog ***
|
||||
|
||||
2021-06-14 - version 1.0.0
|
||||
* First release.
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,929 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: This plugin integrates your Mautic account with CF7, "
|
||||
"sending all data over Mautic as per its available modules 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-08-27 13:26+0530\n"
|
||||
"PO-Revision-Date: 2021-08-26 19:18+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;esx_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:162
|
||||
msgid "Back to feeds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:168
|
||||
msgid "Internal server error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:216
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:217
|
||||
#: 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 ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:401
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:419
|
||||
msgid "Inavlid email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:434
|
||||
msgid "Delete logs after N days must be greater than 7"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:449
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:499
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:697
|
||||
#: public/class-mwb-cf7-integration-with-mautic-public.php:485
|
||||
msgid "MWB CF7 Integration with Mautic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:697
|
||||
msgid "CF7 Integration with Mautic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:697
|
||||
msgid ""
|
||||
"is deactivated, Please Update the PRO version as this version is outdated "
|
||||
"and will not work with the current"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-mautic-admin.php:697
|
||||
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-cf7-integration-with-mautic-ajax-handler.php:105
|
||||
msgid "Something went wrong!!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:127
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:185
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:174
|
||||
msgid "Something went wrong! Check your credentials and authorize again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:181
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:62
|
||||
msgid "Last token expires in "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:182
|
||||
#: 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-cf7-integration-with-mautic-ajax-handler.php:346
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:370
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:407
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:492
|
||||
msgid "Somthing went wrong, Refresh and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:528
|
||||
msgid "No log data available"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-ajax-handler.php:663
|
||||
msgid "Invalid form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:343
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:360
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:395
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:405
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:502
|
||||
msgid "It is a temporary deactivation. I am just debugging an issue."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:503
|
||||
msgid "The plugin broke my layout or some functionality."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:504
|
||||
msgid "The plugin is too complicated to configure."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:505
|
||||
msgid "I no longer need the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:506
|
||||
msgid "I found a better plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:507
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-mautic-onboarding.php:920
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-mautic.php:135
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:273
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-mautic.php:156
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-mautic.php:157
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:145
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-mautic.php:158
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:153
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-mautic.php:228
|
||||
msgid "Contatc Form 7"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-mautic.php:230
|
||||
msgid " is not activated, Please activate Contact Form 7 first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-mautic.php:232
|
||||
msgid " MWB CF7 Integration with Mautic"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/api/class-mwb-cf7-integration-mautic-api-base.php:617
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/api/class-mwb-cf7-integration-mautic-api-base.php:649
|
||||
msgid "Error posting to CRM"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:203
|
||||
msgid "Matches exactly"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:204
|
||||
msgid "Does not match exactly"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:205
|
||||
msgid "Contains (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:206
|
||||
msgid "Does not contain (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:207
|
||||
msgid "Exist in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:208
|
||||
msgid "Does not Exists in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:209
|
||||
msgid "Starts with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:210
|
||||
msgid "Does not start with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:211
|
||||
msgid "Ends with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:212
|
||||
msgid "Does not end with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:213
|
||||
msgid "Less than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:214
|
||||
msgid "Greater than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:215
|
||||
msgid "Less than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:216
|
||||
msgid "Greater than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:217
|
||||
msgid "Equals (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:218
|
||||
msgid "Is empty"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:219
|
||||
msgid "Is not empty"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:220
|
||||
msgid "Is only contains Numbers"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:221
|
||||
msgid "Is only contains String"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:141
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:157
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:271
|
||||
msgid "Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-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-cf7-integration-mautic-feed-module.php:143
|
||||
msgid "Crm Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:144
|
||||
msgid "Parent Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-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-cf7-integration-mautic-feed-module.php:146
|
||||
msgid "View Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:147
|
||||
msgid "Add New Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:148
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:149
|
||||
msgid "Edit Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:150
|
||||
msgid "Update Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:151
|
||||
msgid "Search Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:152
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:153
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:158
|
||||
msgid "Feeds for crm"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:191
|
||||
msgid "Feed details"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-feed-module.php:200
|
||||
msgid "Conditional Statements"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:105
|
||||
#, php-format
|
||||
msgid "%s day"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:112
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:131
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-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-cf7-integration-mautic-template-manager.php:127
|
||||
msgid "Trail expried !! "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:134
|
||||
msgid " your license and continue enjoying the pro version features."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:270
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:272
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:274
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:386
|
||||
msgid "Field Alias : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:389
|
||||
msgid "Type : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:393
|
||||
msgid "Picklist Values : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:399
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:401
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:415
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:443
|
||||
#: 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-mautic-template-manager.php:403
|
||||
msgid "Standard Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:407
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:438
|
||||
msgid "Custom Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:413
|
||||
msgid "Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:457
|
||||
msgid "Map with woo order statuses"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:485
|
||||
msgid "Select Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:495
|
||||
msgid "Select Condition"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:500
|
||||
msgid "Enter value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:539
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:69
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:543
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:73
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:552
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:82
|
||||
msgid "Form : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:556
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:86
|
||||
msgid "Object : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:560
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:90
|
||||
msgid "Conditions : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:565
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:95
|
||||
msgid "Edit feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-mautic-template-manager.php:567
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:97
|
||||
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: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 "CF7"
|
||||
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:23
|
||||
#: 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: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:78
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:91
|
||||
msgid "Connected Instance : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:101
|
||||
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:115
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:128
|
||||
msgid "Synced Contact Forms"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:122
|
||||
msgid ""
|
||||
"Total number of Contact Form 7 submission data which are synced over Mautic."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:123
|
||||
msgid "View log"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:142
|
||||
msgid "Need any help ? Check our documentation."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:150
|
||||
msgid "Facing any issue ? Open a support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:158
|
||||
msgid "Need personalized solution, contact us !"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:161
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:37
|
||||
#, php-format
|
||||
msgid "Getting started with CF7 and %s"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:48
|
||||
#, 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, based on your CF7 "
|
||||
"Form Feed data."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/authorisation-tab.php:61
|
||||
#, php-format
|
||||
msgid "Connect your %s account with CF7."
|
||||
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 CF7 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 CF7 form"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:106
|
||||
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/overview-tab.php:35
|
||||
msgid "What is MWB CF7 Integration with Mautic?"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:36
|
||||
msgid ""
|
||||
"MWB CF7 Integration with Mautic plugin integrates your Mautic account with "
|
||||
"CF7, sending all data over Mautic as per its available modules."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:39
|
||||
msgid "What does MWB CF7 Integration with Mautic do?"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:41
|
||||
msgid "Smooth CF7 Integration With Your Mautic Account."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:42
|
||||
msgid "Easy CF7 Fields Association With Any Mautic Module Fields."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:43
|
||||
msgid "Filters CF7 submissions According To User Input."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:44
|
||||
msgid "Detailed Log Of CF7 Submission Sent To Mautic."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:48
|
||||
msgid "Salient Features of MWB CF7 Integration with Mautic Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:54
|
||||
msgid "Integrate-CF7-with-Mautic-Account-Hassle-free"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:56
|
||||
msgid ""
|
||||
"MWB CF7 Integration with Mautic offers a smooth integration of both. The "
|
||||
"admin can enter their Mautic API credentials to integrate Contact Form 7 "
|
||||
"with their Mautic accounts."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:65
|
||||
msgid "Easy CF7 Fields Association With Any Mautic Module Fields"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:67
|
||||
msgid ""
|
||||
"Any Contact Form 7 field can be linked to any Mautic module field. Any "
|
||||
"module field like Contacts, Company, integrates perfectly with this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:76
|
||||
msgid "Filter-CF7-Submissions-as-per-Feeds."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:78
|
||||
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 Mautic depending on user inputs."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:87
|
||||
msgid "Detailed-Logs-with-Data-Sync-Details."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:89
|
||||
msgid ""
|
||||
"MWB Mautic Integration plugin will provide a detailed log of each Contact "
|
||||
"Form 7 sent to Mautic as per the response from the Mautic. There is logging "
|
||||
"of all the API interaction with Mautic for better error handling."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:98
|
||||
msgid "Error Email Notification For Admin"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:100
|
||||
msgid ""
|
||||
"E-mail notifications are sent to the admin if any input error occurs in the "
|
||||
"process of data sending entries over to Mautic. This way, the admin gets "
|
||||
"notified of any slight error in real-time."
|
||||
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 ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-mautic-public.php:463
|
||||
msgid "Error While Posting CF7 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 ""
|
||||
@@ -0,0 +1,883 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB CF7 Integration with Salesforce CRM 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-06-25 16:24+0530\n"
|
||||
"PO-Revision-Date: 2021-06-25 16:26+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-salesforce-crm-admin.php:162
|
||||
msgid "Back to feeds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:164
|
||||
msgid "Internal server error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:366
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:384
|
||||
msgid "Inavlid email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:399
|
||||
msgid "Delete logs after N days must be greater than 7"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:414
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:645
|
||||
msgid "CF7 Integration with Salesforce CRM"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:645
|
||||
msgid ""
|
||||
"is deactivated, Please Update the PRO version as this version is outdated "
|
||||
"and will not work with the current"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:645
|
||||
#: public/class-mwb-cf7-integration-with-salesforce-crm-public.php:492
|
||||
msgid "MWB CF7 Integration with Salesforce CRM"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-cf7-integration-with-salesforce-crm-admin.php:645
|
||||
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: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-salesforce-crm-ajax-handler.php:105
|
||||
msgid "Something went wrong!!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:127
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:172
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:163
|
||||
msgid "Something went wrong! Check your credentials and authorize again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:169
|
||||
msgid "Last token issued at "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:330
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:354
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:391
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:476
|
||||
msgid "Somthing went wrong, Refresh and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:512
|
||||
msgid "No log data available"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-ajax-handler.php:647
|
||||
msgid "Invalid form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-onboarding.php:343
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-onboarding.php:360
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-onboarding.php:395
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-onboarding.php:405
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-cf7-integration-with-salesforce-crm-onboarding.php:920
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-salesforce-crm.php:137
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:298
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-salesforce-crm.php:158
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-salesforce-crm.php:159
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:111
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-salesforce-crm.php:160
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:119
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-salesforce-crm.php:232
|
||||
msgid "Contatc Form 7"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-salesforce-crm.php:234
|
||||
msgid " is not activated, Please activate Contact Form 7 first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-cf7-integration-with-salesforce-crm.php:236
|
||||
msgid " MWB CF7 Integration with Salesforce CRM"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/api/class-mwb-cf7-integration-salesforce-api-base.php:693
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/api/class-mwb-cf7-integration-salesforce-api-base.php:728
|
||||
msgid "Error posting to CRM"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:207
|
||||
msgid "Matches exactly"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:208
|
||||
msgid "Does not match exactly"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:209
|
||||
msgid "Contains (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:210
|
||||
msgid "Does not contain (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:211
|
||||
msgid "Exist in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:212
|
||||
msgid "Does not Exists in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:213
|
||||
msgid "Starts with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:214
|
||||
msgid "Does not start with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:215
|
||||
msgid "Ends with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:216
|
||||
msgid "Does not end with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:217
|
||||
msgid "Less than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:218
|
||||
msgid "Greater than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:219
|
||||
msgid "Less than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:220
|
||||
msgid "Greater than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:221
|
||||
msgid "Equals (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:222
|
||||
msgid "Is empty"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-connect-framework.php:223
|
||||
msgid "Is not empty"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:141
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:157
|
||||
msgid "Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:142
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:50
|
||||
msgid "Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:143
|
||||
msgid "Crm Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:144
|
||||
msgid "Parent Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:145
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:32
|
||||
msgid "All Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:146
|
||||
msgid "View Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:147
|
||||
msgid "Add New Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:148
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:149
|
||||
msgid "Edit Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:150
|
||||
msgid "Update Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:151
|
||||
msgid "Search Feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:152
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:153
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:158
|
||||
msgid "Feeds for crm"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:191
|
||||
msgid "Feed details"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-feed-module.php:200
|
||||
msgid "Conditional Statements"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:129
|
||||
#, php-format
|
||||
msgid "%s day"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:136
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:155
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:139
|
||||
#, 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-salesforce-template-manager.php:151
|
||||
msgid "Trail expried !! "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:158
|
||||
msgid " your license and continue enjoying the pro version features."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:295
|
||||
msgid "Salesforce Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:296
|
||||
msgid "Salesforce Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:297
|
||||
msgid "Salesforce Logs"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:299
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:421
|
||||
msgid "API Name : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:424
|
||||
msgid "Type : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:427
|
||||
msgid "Length : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:431
|
||||
msgid "Picklist Values : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:437
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:439
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:453
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:481
|
||||
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:29
|
||||
#: mwb-crm-fw/templates/meta-boxes/primary-field.php:28
|
||||
msgid "Select an Option"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:441
|
||||
msgid "Standard Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:445
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:476
|
||||
msgid "Custom Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:451
|
||||
msgid "Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:495
|
||||
msgid "Map with woo order statuses"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:523
|
||||
msgid "Select Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:533
|
||||
msgid "Select Condition"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:538
|
||||
msgid "Enter value"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:576
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:68
|
||||
msgid "Form : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:580
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:72
|
||||
msgid "Object : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:584
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:76
|
||||
msgid "Primary Key : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:588
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:80
|
||||
msgid "Conditions : "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:593
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:86
|
||||
msgid "Edit feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/class-mwb-cf7-integration-salesforce-template-manager.php:595
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:90
|
||||
msgid "Trash feed"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:23
|
||||
msgid "Add New Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/meta-boxes/add-new-field.php:45
|
||||
msgid "Add Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/meta-boxes/header.php:23
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:24
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:24
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:22
|
||||
#: mwb-crm-fw/templates/tab-contents/settings-tab.php:23
|
||||
msgid "Salesforce"
|
||||
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/feeds-tab.php:27
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:25
|
||||
#: 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: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:45
|
||||
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:22
|
||||
msgid "Select Salesforce Object"
|
||||
msgstr ""
|
||||
|
||||
#: 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:39
|
||||
msgid "Connection Status"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:43
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:50
|
||||
msgid "Access token has been expired."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:52
|
||||
msgid "Last token issued "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:55
|
||||
msgid "Refresh Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:60
|
||||
msgid "Connected Instance : "
|
||||
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:80
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:93
|
||||
msgid "Synced Contact Forms"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:87
|
||||
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:88
|
||||
msgid "View log"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:108
|
||||
msgid "Need any help ? Check our documentation."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:116
|
||||
msgid "Facing any issue ? Open a support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:124
|
||||
msgid "Need personalized solution, contact us !"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:127
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:138
|
||||
msgid "If you don't have a Salesforce account, you can "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:138
|
||||
msgid "sign up here"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:141
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:155
|
||||
msgid "Environment"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:164
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:165
|
||||
#: mwb-crm-fw/templates/tab-contents/feeds-tab.php:64
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:175
|
||||
msgid "Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:195
|
||||
msgid "Consumer Secret"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:216
|
||||
msgid "Callback URL"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:222
|
||||
msgid ""
|
||||
"Web-Protocol must be HTTPS in order to successfully authorize with Salesforce"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:232
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:239
|
||||
msgid ""
|
||||
"Go to Setup->Apps->App Manager in Salesforce and Choose \"New Connected App\""
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:240
|
||||
msgid ""
|
||||
"Enter application name( For eg. My app or Demo app ) and check \"Enable "
|
||||
"OAuth Settings\""
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:241
|
||||
msgid "Enter "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:241
|
||||
msgid "as callback URL"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:242
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:242
|
||||
msgid "Access & manage your data(api)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:242
|
||||
msgid ""
|
||||
"Perform requests on your behalf at any time (refresh_token, offline_access)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:242
|
||||
msgid " as OAuth Scopes"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:243
|
||||
msgid "Save app"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:244
|
||||
msgid "Copy Consumer Key & Secret Key and paste it the following fields"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/accounts-tab.php:255
|
||||
msgid "Authorize"
|
||||
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:100
|
||||
msgid "Add Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:31
|
||||
msgid "Clear Log"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:36
|
||||
msgid "Download"
|
||||
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:52
|
||||
msgid "Salesforce Object"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:53
|
||||
msgid "Salesforce ID"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:54
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:55
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:56
|
||||
msgid "Request"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:57
|
||||
msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:64
|
||||
msgid "Please enable the logs from "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/logs-tab.php:64
|
||||
msgid "Settings tab"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:36
|
||||
msgid "What is MWB CF7 Integration with Salesforce CRM?"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:37
|
||||
msgid ""
|
||||
"MWB CF7 Integration with Salesforce CRM plugin integrates your Salesforce "
|
||||
"CRM account with CF7, sending all data over Salesforce CRM as per its "
|
||||
"available modules."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:40
|
||||
msgid "What does MWB CF7 Integration with Salesforce CRM do?"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:42
|
||||
msgid "Smooth CF7 Integration With Your Salesforce Account."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:43
|
||||
msgid "Easy CF7 Fields Association With Any Salesforce 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 Salesforce."
|
||||
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 Salesforce CRM."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:50
|
||||
msgid "Salient Features of MWB CF7 Integration with Salesforce CRM Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:56
|
||||
msgid "Smooth CF7 Integration With Your Salesforce Account"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:58
|
||||
msgid ""
|
||||
"MWB CF7 Integration with Salesforce CRM offers a smooth integration of both. "
|
||||
"The admin can enter their Salesforce API credentials to integrate Contact "
|
||||
"Form 7 with their Salesforce accounts."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:67
|
||||
msgid "Easy CF7 Fields Association With Any Salesforce Module Fields"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:69
|
||||
msgid ""
|
||||
"Any Contact Form 7 field can be linked to any Salesforce 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 Salesforce CRM depending on user inputs."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/templates/tab-contents/overview-tab.php:91
|
||||
msgid ""
|
||||
"MWB Salesforce Integration plugin will provide a detailed log of each "
|
||||
"Contact Form 7 sent to Salesforce CRM as per the response from the "
|
||||
"Salesforce CRM. There is logging of all the API interaction with Salesforce "
|
||||
"CRM 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 Salesforce CRM. 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 Salesforce CRM. This way, the admin "
|
||||
"gets notified of any slight error in real-time."
|
||||
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 salesforce"
|
||||
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 ""
|
||||
|
||||
#: public/class-mwb-cf7-integration-with-salesforce-crm-public.php:470
|
||||
msgid "Error While Posting CF7 form data over Salesforce"
|
||||
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,798 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB GF Integration with Zoho CRM 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-07-22 11:23+0530\n"
|
||||
"PO-Revision-Date: 2021-07-11 17:45+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-with-zoho-crm-admin.php:123
|
||||
msgid "Back to feeds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:127
|
||||
msgid "Settings not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:128
|
||||
msgid "Internal server error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:343
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:243
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:345
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:245
|
||||
msgid "Standard Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:346
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:356
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:246
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:256
|
||||
msgid "Custom Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:351
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:251
|
||||
msgid "Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:392
|
||||
msgid "Matches exactly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:393
|
||||
msgid "Does not match exactly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:394
|
||||
msgid "Contains (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:395
|
||||
msgid "Does not contain (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:396
|
||||
msgid "Exist in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:397
|
||||
msgid "Does not Exists in (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:398
|
||||
msgid "Starts with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:399
|
||||
msgid "Does not start with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:400
|
||||
msgid "Ends with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:401
|
||||
msgid "Does not end with (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:402
|
||||
msgid "Less than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:403
|
||||
msgid "Greater than (Text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:404
|
||||
msgid "Less than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:405
|
||||
msgid "Greater than (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:406
|
||||
msgid "Equals (Date/Time)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:407
|
||||
msgid "Is empty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:408
|
||||
msgid "Is not empty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:432
|
||||
msgid "Select Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:438
|
||||
msgid "Select Condition"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:443
|
||||
msgid "Enter value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:470
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:488
|
||||
msgid "Inavlid email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-gf-integration-with-zoho-crm-admin.php:509
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:31
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:27
|
||||
#: admin/partials/templates/zoho-gf-logs.php:25
|
||||
#: admin/partials/templates/zoho-gf-settings.php:35
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/header.php:22
|
||||
msgid "Zoho"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:34
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:30
|
||||
#: admin/partials/templates/zoho-gf-logs.php:28
|
||||
#: admin/partials/templates/zoho-gf-settings.php:38
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/header.php:25
|
||||
msgid "Gravity Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:42
|
||||
msgid "Connection Authorized"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:46
|
||||
msgid "Access token has been expired."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:55
|
||||
msgid "Reauthorize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:56
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:64
|
||||
msgid "Synced Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:70
|
||||
msgid ""
|
||||
"Total number of Gravity Form submission data which are synced over Zoho CRM."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:71
|
||||
msgid "View log"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:84
|
||||
msgid "Need any help ? Check our documentation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:87
|
||||
#: mwb-gf-integration-with-zoho-crm.php:155
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:92
|
||||
msgid "Facing any issue ? Open a support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:95
|
||||
#: mwb-gf-integration-with-zoho-crm.php:156
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:100
|
||||
msgid "Need personalized solution, contact us !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:103
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:112
|
||||
msgid "If you don't have a Zoho account, you can "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:112
|
||||
msgid "sign up here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:115
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:118
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:125
|
||||
msgid "Create new client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:125
|
||||
msgid " here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:126
|
||||
msgid "Choose client type as \"Server based\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:127
|
||||
msgid "Enter client name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:127
|
||||
msgid "For eg. Demo app or My app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:128
|
||||
msgid "Enter "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:128
|
||||
msgid "as redirect URI"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:129
|
||||
msgid "Create app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:139
|
||||
msgid "Zoho Domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:144
|
||||
msgid "Select Zoho domain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:150
|
||||
msgid "India (.in)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:151
|
||||
msgid "China (.com.cn)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:152
|
||||
msgid "Australia (.com.au)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:153
|
||||
msgid "Europe (.eu)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:154
|
||||
msgid "USA & Others (.com)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:163
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:168
|
||||
msgid "Enter app id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:186
|
||||
msgid "Secret key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:191
|
||||
msgid "Enter secret key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:210
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:215
|
||||
msgid "Enter redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-accounts.php:229
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:33
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:53
|
||||
msgid "Add New Feed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:38
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:40
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:50
|
||||
msgid "Form Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:82
|
||||
msgid "Form : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:83
|
||||
msgid "Object : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-feeds.php:84
|
||||
msgid "Primary key : "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:35
|
||||
msgid "Clear Log"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:40
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:54
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:55
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:49
|
||||
msgid "Feed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:56
|
||||
msgid "Feed ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:57
|
||||
msgid "Zoho Object"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:58
|
||||
msgid "Zoho ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:59
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:60
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:61
|
||||
msgid "Request"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:62
|
||||
msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:69
|
||||
msgid "Please enable the logs from "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-logs.php:69
|
||||
msgid "Settings tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:30
|
||||
msgid "What is MWB GF Integration with ZOHO CRM?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:31
|
||||
msgid ""
|
||||
"The MWB Gravity Forms integration with ZOHO CRM lets you effortlessly "
|
||||
"integrate your ZOHO CRM account with Gravity Forms and migrate all records "
|
||||
"via ZOHO CRM as per the modules it offers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:34
|
||||
msgid "What does MWB Gravity Forms Integration with ZOHO CRM do?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:36
|
||||
msgid "Integrates Gravity Forms with your ZOHO account with ease."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:37
|
||||
msgid "Map Gravity Forms and ZOHO Fields smoothly and effortlessly."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:38
|
||||
msgid ""
|
||||
"Offers Detailed Gravity Forms Submission Log, and sends it over to ZOHO."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:39
|
||||
msgid "Update an existing ZOHO CRM record utilizing a unique identifier."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:40
|
||||
msgid "Filter user inputs which are provided as GF Submissions."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:41
|
||||
msgid "Delete created Logs after ‘N’ days"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:45
|
||||
msgid "Outstanding Features of MWB GF Integration with ZOHO CRM Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:51
|
||||
msgid "Seamless Integration Of Your Gravity Forms ZOHO CRM Account "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:53
|
||||
msgid ""
|
||||
"The MWB Gravity Forms Integration with ZOHO CRM provides a seamless "
|
||||
"connection between the two. To combine Gravity Forms with their ZOHO "
|
||||
"accounts, the admin can provide their ZOHO API credentials."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:62
|
||||
msgid "Fields From Any ZOHO Module Could Be Easily Associated With GF Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:64
|
||||
msgid ""
|
||||
"Any ZOHO module field can be mapped to a Gravity Forms field. This plugin "
|
||||
"works with any module field, including Contacts, Accounts, Leads, Quotes, "
|
||||
"Deals, Sales, and Orders, etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:73
|
||||
msgid "Filters GF Submissions Based On User Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:75
|
||||
msgid ""
|
||||
"Using AND/OR logic, the admin can filter Gravity Forms submissions based on "
|
||||
"user input. Based on user inputs, this logic will filter GF form entries and "
|
||||
"deliver them to ZOHO CRM."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:84
|
||||
msgid "Full Log History Of GF Submissions Delivered To ZOHO CRM."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:86
|
||||
msgid ""
|
||||
"The MWB Gravity Forms ZOHO CRM Integration plugin will offer a detailed log "
|
||||
"of each Gravity Forms submission sent to ZOHO CRM based on the response. For "
|
||||
"improved error management, all API interactions with ZOHO CRM are logged."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:95
|
||||
msgid "To Update An Existing Entry In ZOHO CRM, Use The Unique Identifier."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:97
|
||||
msgid ""
|
||||
"Assume that a user-created entry already exists in ZOHO CRM. In that "
|
||||
"instance, the administrator can update it using the \"Primary Key\" provided."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:106
|
||||
msgid "Error Email Notification"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-overview.php:108
|
||||
msgid ""
|
||||
"If an issue occurs while submitting data to Zoho CRM, an email with the "
|
||||
"error details will be sent to the specified email address. After the form "
|
||||
"has been submitted, an email can only be sent if the ZOHO CRM response "
|
||||
"includes an error."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:68
|
||||
msgid "Enable logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:73
|
||||
msgid "Enable logging of all the forms data to be sent over zoho"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:88
|
||||
msgid "Plugin Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:93
|
||||
msgid "Enable plugin data delete at uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:108
|
||||
msgid "Email notification"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:113
|
||||
msgid "Enable email notification on errors"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:132
|
||||
msgid "Enter email address. An email will be sent if any sort of error occurs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:146
|
||||
msgid "Delete log after N days"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:151
|
||||
msgid "This will delete the log data after N no. of days"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/zoho-gf-settings.php:169
|
||||
msgid "Save"
|
||||
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-with-zoho-crm-ajax-handler.php:30
|
||||
msgid "Something went wrong!!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:51
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:95
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:88
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-ajax-handler.php:116
|
||||
msgid "Something went wrong! Check your credentials and authorize again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:48
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:65
|
||||
msgid "Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:50
|
||||
msgid "Parent Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:51
|
||||
msgid "All Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:52
|
||||
msgid "View Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:54
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:55
|
||||
msgid "Edit Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:56
|
||||
msgid "Update Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:57
|
||||
msgid "Search Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:58
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:59
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:66
|
||||
msgid "Feeds for crm"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:91
|
||||
msgid "Feed details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-feed-cpt.php:92
|
||||
msgid "Conditional Statements"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-onboarding.php:337
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-onboarding.php:354
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-onboarding.php:389
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-onboarding.php:399
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-onboarding.php:907
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-template-manager.php:62
|
||||
msgid "MWB GF Integration with ZOHO CRM"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-template-manager.php:151
|
||||
msgid "Zoho Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-template-manager.php:152
|
||||
msgid "Zoho Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-template-manager.php:153
|
||||
msgid "Zoho Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-template-manager.php:154
|
||||
#: mwb-gf-integration-with-zoho-crm.php:133
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-gf-integration-with-zoho-crm-template-manager.php:155
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/add-new-field.php:23
|
||||
msgid "Add New Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/add-new-field.php:32
|
||||
msgid "Add Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:23
|
||||
msgid "Condition Filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:26
|
||||
msgid ""
|
||||
"If the condition filters are set, only those submissions will be exported "
|
||||
"which fullfills the condition."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:48
|
||||
msgid "Add \"AND\" filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/opt-in-condition.php:56
|
||||
msgid "Add \"OR\" filter"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:21
|
||||
msgid "Primary Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:24
|
||||
msgid "Select a unique identifier, if you want to update a pre-existing record"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:32
|
||||
msgid "Select Primary Field"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/primary-field.php:39
|
||||
msgid ""
|
||||
"Please select a field which should be used as \"primary key\" to update an "
|
||||
"existing record."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-fields.php:21
|
||||
msgid "Map Fields"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-fields.php:24
|
||||
msgid "Map your gravity form fields with appropriate Zoho fields."
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:24
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:36
|
||||
msgid "Select Form"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:27
|
||||
msgid "Select the form you would like to integrate with zoho"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-form.php:37
|
||||
#: mwb-gf-integration-with-zoho-crm.php:217
|
||||
msgid "Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:23
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:35
|
||||
msgid "Select Object"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:26
|
||||
msgid "Select the zoho object to create on form submission"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:44
|
||||
msgid "Refresh Objects"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-crm-fw/framework/templates/meta-boxes/select-object.php:45
|
||||
msgid "Refresh Fields"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-gf-integration-with-zoho-crm.php:154
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-gf-integration-with-zoho-crm.php:217
|
||||
msgid " is not activated, Please activate Gravity Forms first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-gf-integration-with-zoho-crm.php:217
|
||||
msgid " Gravity Form - Zoho Integration"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-gf-integration-with-zoho-crm.php:217
|
||||
msgid "."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-gf-integration-with-zoho-crm-public.php:546
|
||||
msgid "Error While Posting form data over Zoho"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-gf-integration-with-zoho-crm-public.php:559
|
||||
msgid "Go to logs"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-gf-integration-with-zoho-crm-public.php:571
|
||||
msgid "Zoho error"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,890 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB Multi Currency Switcher For WooCommerce 1.0.1\n"
|
||||
"POT-Creation-Date: 2021-06-16 18:50+0530\n"
|
||||
"PO-Revision-Date: 2021-06-16 18:51+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.3\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-multi-currency-switcher-for-woocommerce-admin.php:107
|
||||
msgid "Regular price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:108
|
||||
msgid "Sales price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:109
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:25
|
||||
msgid " Currency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:110
|
||||
msgid "Coupon Amount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:112
|
||||
msgid "Please Enter 3 letters of Country Code !!! "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:113
|
||||
msgid "No currency available!!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:144
|
||||
#: onboarding/templates/mwb-multi-currency-switcher-for-woocommerce-onboarding-template.php:27
|
||||
msgid "MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:177
|
||||
#: mwb-multi-currency-switcher-for-woocommerce.php:87
|
||||
#: mwb-multi-currency-switcher-for-woocommerce.php:93
|
||||
msgid "MWB Multi Currency Switcher For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:222
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:292
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:472
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-geolocation-tab.php:90
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:241
|
||||
msgid "Enable Side Switcher"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:243
|
||||
msgid "Enable to see switcher at the front-end "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:249
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:399
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:412
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:425
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:438
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:451
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:465
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:565
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:250
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:400
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:413
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:426
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:439
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:452
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:466
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:566
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:254
|
||||
msgid "Switcher Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:261
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:272
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:387
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:577
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:588
|
||||
msgid "Select Demo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:265
|
||||
msgid "Switcher Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:310
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:592
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:616
|
||||
msgid "Select option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:311
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:312
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:326
|
||||
msgid "Roll Block"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:357
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:535
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:672
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:606
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:669
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:360
|
||||
msgid "Side Switcher Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:380
|
||||
msgid "Select Welcome Currency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:391
|
||||
msgid "Hide Side Switcher on Checkout Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:393
|
||||
msgid "Hide switcher on the checkout page for any of your reason"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:404
|
||||
msgid "Hide Widget on Checkout Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:406
|
||||
msgid "Hide widget on the checkout page for any of your reason"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:417
|
||||
msgid "Enable Geolocation Rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:419
|
||||
msgid "Enable Geoip rules for visitors"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:430
|
||||
msgid "Enable Custom Price for Product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:432
|
||||
msgid "Enable To set a custom price for the product according to currency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:443
|
||||
msgid "Enable Custom Coupon for Product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:445
|
||||
msgid "Enable To set custom coupon according to currency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:456
|
||||
msgid "Enable Shipping Price for Product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:458
|
||||
msgid "Enable To set custom shipping price according to currency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:538
|
||||
msgid "Advance Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:558
|
||||
msgid "Enable Plugin Functionality "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:560
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:570
|
||||
msgid "Select Currency Aggregator"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:581
|
||||
msgid "Currency rate auto-update"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:593
|
||||
msgid "Every 15 minutes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:594
|
||||
msgid "Every 30 minutes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:595
|
||||
msgid "Every 45 minutes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:596
|
||||
msgid "Every Hour"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:597
|
||||
msgid "Twice Daily"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:598
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:599
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:600
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:617
|
||||
msgid "Yahoo Finance API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:618
|
||||
msgid "www.bnr.ro (Bank of romaniei)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:619
|
||||
msgid "The Free Currency Converter by European Central Bank"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:620
|
||||
msgid "Bank of Italy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:621
|
||||
msgid "Exchange rate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:675
|
||||
msgid "Currency Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:860
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:879
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:896
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:910
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:915
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:935
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:951
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:969
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:974
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:1000
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:1012
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:1034
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:1055
|
||||
#: admin/class-mwb-multi-currency-switcher-for-woocommerce-admin.php:1064
|
||||
msgid "no data for "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-mwb-mmcsfw-currency-switcher-widget.php:29
|
||||
msgid "Currency Switcher Widget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-mwb-mmcsfw-currency-switcher-widget.php:31
|
||||
msgid "Widget for currency conversion"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-mwb-mmcsfw-currency-switcher-widget.php:70
|
||||
msgid "Currency Switcher !!!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-mwb-mmcsfw-currency-switcher-widget.php:136
|
||||
msgid "New title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-mwb-mmcsfw-currency-switcher-widget.php:141
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-geolocation-tab.php:25
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-geolocation-tab.php:50
|
||||
msgid "Please first set the currency in the currency tab !!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-side-switcher.php:33
|
||||
msgid "Switcher Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-side-switcher.php:42
|
||||
msgid "Currency Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-side-switcher.php:53
|
||||
msgid "Currency Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-side-switcher.php:64
|
||||
msgid "Currency Description Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:67
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:68
|
||||
msgid "Currency Code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:69
|
||||
msgid "Symbol"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:70
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:71
|
||||
msgid "Rate and Interest"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:72
|
||||
msgid "Decimal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:73
|
||||
msgid "Flag"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:74
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:106
|
||||
msgid "Money signs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:148
|
||||
msgid "$P - left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:155
|
||||
msgid "P$ - right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:162
|
||||
msgid "$ P - left space"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-currency-switcher.php:169
|
||||
msgid "P $ - right space"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-dashboard.php:26
|
||||
msgid "MWB MULTI CURRENCY SWITCHER FOR WOOCOMMERCE"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-dashboard.php:28
|
||||
#: mwb-multi-currency-switcher-for-woocommerce.php:175
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-dashboard.php:30
|
||||
#: mwb-multi-currency-switcher-for-woocommerce.php:177
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-admin-dashboard.php:37
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-general.php:23
|
||||
msgid "Add Currency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-general.php:43
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-general.php:46
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-general.php:44
|
||||
msgid ""
|
||||
"Currency Code will be 3 letters of the respective country. You can refer to "
|
||||
"this link for currency code "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-general.php:44
|
||||
msgid "Get Currency Code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-general.php:47
|
||||
msgid "Flags will load automatically when you enter the currency code."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:21
|
||||
msgid "What is MWB Multi Currency Switcher For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:25
|
||||
msgid ""
|
||||
"MWB Multi Currency Switcher For WooCommerce is the plugin that allows "
|
||||
"merchants to provide multiple currencies on the WooCommerce store. This "
|
||||
"helps international users to view and pay for your products in their local "
|
||||
"currency. Using a currency switcher for WooCommerce will help you expand "
|
||||
"your business globally."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:33
|
||||
msgid ""
|
||||
"The MWB Multi Currency Switcher For WooCommerce allows you to provide "
|
||||
"options for 3 currencies at a time to your users. This multi-currency "
|
||||
"converter also provides a user-friendly interface and design besides "
|
||||
"providing multi-lingual support."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:38
|
||||
msgid "With our MWB Multi-Currency Switcher for WooCommerce plugin, you can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:40
|
||||
msgid ""
|
||||
"Add functionality of three currencies to your WooCommerce store for "
|
||||
"international users."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:41
|
||||
msgid "Add currency symbols and set the currency position."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:42
|
||||
msgid "Set custom thousand and decimal separators."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:43
|
||||
msgid "Synchronize currency with respect to the users’s geolocation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:44
|
||||
msgid ""
|
||||
"Use of efficient aggregators for currency conversion without the need for an "
|
||||
"API key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:45
|
||||
msgid "Set welcome currency for visitors."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:46
|
||||
msgid "Side switcher for more user friendly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:47
|
||||
msgid "Flag of specific country will auto load and can also set custom flag."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:50
|
||||
msgid "The Free Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:58
|
||||
msgid "User Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:62
|
||||
msgid ""
|
||||
"The plugin allows a user-friendly interface for your customers. You can "
|
||||
"allow them to choose their currency easily by putting up convenient currency "
|
||||
"switcher formats such as a dropdown menu, side switcher, and country flags."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:76
|
||||
msgid "Local Currency Detection"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:77
|
||||
msgid ""
|
||||
"The multi-currency switcher allows you to detect the visitors’ IP and hence, "
|
||||
"set the native currency according to the GeoIP rule defined by the "
|
||||
"merchant. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:87
|
||||
msgid "Custom Price Formats"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:91
|
||||
msgid ""
|
||||
"You can ensure price formats as per your choice by predefining the thousands "
|
||||
"and decimal separators. You also get to place the currency symbol and price "
|
||||
"on either side of your choice. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:105
|
||||
msgid "Efficient Currency Aggregators"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:109
|
||||
msgid ""
|
||||
"The multi-currency switcher allows for 5 currency aggregators enabling "
|
||||
"effective currency conversions. MWB multi-currency switcher plugin provides "
|
||||
"exclusivity in the fact that merchants do not need an API key for the "
|
||||
"currency aggregators. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:123
|
||||
msgid "Welcome Currency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-overview.php:127
|
||||
msgid ""
|
||||
"You can also set a default welcome currency for users. It helps them get a "
|
||||
"global perspective of your products. You can set a predefined currency for "
|
||||
"your customers irrespective of their location and allow them to switch "
|
||||
"currency as per their convenience."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:27
|
||||
msgid "Shortcode Name "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:28
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:60
|
||||
msgid "Description "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:29
|
||||
msgid "Code for use"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:36
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:68
|
||||
msgid "Currency Switcher Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:37
|
||||
msgid ""
|
||||
"This shortcode will add currency dropdown and selected currency flag and "
|
||||
"will also change the value of the page where it is applied"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:38
|
||||
msgid " [currency_switcher_dropdown]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:42
|
||||
msgid "Currency Converter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:43
|
||||
msgid ""
|
||||
"This shortcode will allow you to convert currency and see value of the "
|
||||
"currency at the real time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:44
|
||||
msgid " [currency_converter]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:59
|
||||
msgid "Widget Name "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:61
|
||||
#: mwb-multi-currency-switcher-for-woocommerce.php:174
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-plugin-currency-shortcodes.php:69
|
||||
msgid ""
|
||||
"This shortcode will add currency dropdown and selected currency flag and "
|
||||
"will also change the value of the page when it is applied."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-multi-currency-switcher-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:78
|
||||
msgid "Geolocation Rules Settings saved !!"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:359
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:379
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:397
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:411
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:416
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:436
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:452
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:470
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:476
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:504
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:516
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:538
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:557
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:565
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:154
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:171
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:189
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:203
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:208
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:226
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:242
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:260
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:266
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:291
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:303
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:325
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:342
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:349
|
||||
msgid "no data available for "
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:609
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-multi-currency-switcher-for-woocommerce-common.php:672
|
||||
msgid "Geolocation Rules Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:300
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:319
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:325
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:356
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:360
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:368
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:373
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:484
|
||||
msgid "Let us know why you are deactivating "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:484
|
||||
msgid "so we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:488
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce-onboarding-steps.php:729
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:87
|
||||
msgid "mwb-multi-currency-switcher-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:362
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:366
|
||||
msgid "Currency Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:370
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:374
|
||||
msgid "Geolocation Rules"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:379
|
||||
msgid "Side Switcher"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:383
|
||||
msgid "Shortcodes And Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:389
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:411
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:469
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:478
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:481
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:484
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:487
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:490
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:493
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:496
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:499
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:493
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:496
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:499
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:502
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:505
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:508
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:514
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:517
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:545
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:548
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:511
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:529
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:532
|
||||
#: includes/class-mwb-multi-currency-switcher-for-woocommerce.php:541
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/dependency/class-mwb-multi-currency-switcher-for-woocommerce-dependency.php:139
|
||||
msgid "1"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:14
|
||||
msgid "oops looks like nothing is here"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-multi-currency-switcher-for-woocommerce.php:160
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-multi-currency-switcher-for-woocommerce.php:217
|
||||
msgid ""
|
||||
"WooCommerce is not activated, Please activate WooCommerce first to activate "
|
||||
"MWB Multi Currency Switcher for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-multi-currency-switcher-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-multi-currency-switcher-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-multi-currency-switcher-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-multi-currency-switcher-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-multi-currency-switcher-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-multi-currency-switcher-for-woocommerce-public.php:493
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-multi-currency-switcher-for-woocommerce-public.php:548
|
||||
#: public/class-mwb-multi-currency-switcher-for-woocommerce-public.php:705
|
||||
#: public/class-mwb-multi-currency-switcher-for-woocommerce-public.php:724
|
||||
msgid "--Select Any--"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:33
|
||||
msgid "Custom Symbol"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:43
|
||||
msgid "Custom Flag"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:60
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:65
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:79
|
||||
msgid "Thousand separator"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:89
|
||||
msgid "Decimal separator"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:99
|
||||
msgid "cents"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:109
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:116
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/mwb-multi-currency-switcher-for-woocommerce-admin-currency-table-edit-tab.php:125
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,616 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB Quick View for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-06-22 16:06+0530\n"
|
||||
"PO-Revision-Date: 2021-06-22 16:06+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;__;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;"
|
||||
"translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mwb-wqv-quick-view-admin.php:123
|
||||
msgid "MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-wqv-quick-view-admin.php:155
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-admin-dashboard.php:26
|
||||
#: mwb-quick-view-for-woocommerce.php:75 mwb-quick-view-for-woocommerce.php:81
|
||||
msgid "MWB Quick View for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/index.php:8 includes/index.php:12 index.php:14 public/index.php:12
|
||||
msgid "oops looks like nothing is here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-admin-dashboard.php:27
|
||||
#: mwb-quick-view-for-woocommerce.php:163
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-admin-dashboard.php:29
|
||||
#: mwb-quick-view-for-woocommerce.php:164
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:24
|
||||
msgid "What is Quick View for WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:28
|
||||
msgid ""
|
||||
"MWB Quick View for WooCommerce is a WooCommerce extension to let your "
|
||||
"visitors view your products without having to go to the product page. As a "
|
||||
"merchant, you can choose to remove the quick view button for a product or "
|
||||
"category. The MWB Quick View for WooCommerce extension also enables you to "
|
||||
"change the text of the preview button, change the background color of the "
|
||||
"modal window and change the closing button hover cover. \n"
|
||||
"\n"
|
||||
"\t\t\t\t\tThere are many other features that come with this Quick View for "
|
||||
"WooCommerce extension such as allowing you to customize product description "
|
||||
"display options. You can choose to animate the popup window as well from "
|
||||
"three given animations.\n"
|
||||
"\t\t\t\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:36
|
||||
msgid "As a store owner, you get to:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:38
|
||||
msgid "Change the text for the quick view button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:39
|
||||
msgid "Customize the background and text color for the quick view button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:40
|
||||
msgid "Opt to disable quick view for mobile devices."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:41
|
||||
msgid ""
|
||||
"Include or exclude a product or category to display the quick view option."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:42
|
||||
msgid "Choose a color from the options for the closing button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:45
|
||||
msgid "The Free Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:50
|
||||
msgid "admin/image/Customize-Quick-View-Button.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:53
|
||||
msgid " Customize Quick View Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:57
|
||||
msgid ""
|
||||
"You can customize the quick view button to put up your desired text. The "
|
||||
"extension also allows you to change the background color and text color "
|
||||
"according to your choice for the quick view button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:68
|
||||
msgid "admin/image/Animation-Effects-For-Quick-View-Modal.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:71
|
||||
msgid "Animation Effects For Quick View Modal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:72
|
||||
msgid ""
|
||||
"The extension provides animation effects for the quick view functionality in "
|
||||
"your online store. In the extension, you are provided to choose from three "
|
||||
"options for the animation of the quick view modal window. There is a default "
|
||||
"animation option besides 2 others."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:79
|
||||
msgid "admin/image/Customize-Modal-Window.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:82
|
||||
msgid "Customize Modal Window"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:86
|
||||
msgid ""
|
||||
"You also get the option to customize the closing button for the quick view "
|
||||
"modal window using this extension. Also, choose the options you want to "
|
||||
"display for your product details such as product image, SKU, title, price, "
|
||||
"and so on. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:97
|
||||
msgid "admin/image/Add-To-Cart.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:100
|
||||
#: public/partials/mwb-wqv-quick-view-public-display-animation.php:65
|
||||
msgid "Add To Cart"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:104
|
||||
msgid ""
|
||||
"The extension allows you to enable the Add to Cart functionality in the "
|
||||
"quick view modal window. When the user clicks on the Add to Cart button, the "
|
||||
"default messages will be displayed as in the cart page and shop page in "
|
||||
"WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:115
|
||||
msgid "admin/image/View-Details-button.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:118
|
||||
msgid "View Details button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-overview.php:122
|
||||
msgid ""
|
||||
"The extension allows you to display a ‘View Details’ button on the front "
|
||||
"end. The user will be redirected to the product page once they click the "
|
||||
"button. This allows the user to view the detailed product description."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-quick-view-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wqv-quick-view-preview-modal.php:28
|
||||
msgid "happy ninja"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wqv-quick-view-preview-modal.php:37
|
||||
msgid ""
|
||||
"A product description is the marketing copy that explains what a product is "
|
||||
"and why it’s worth purchasing. The purpose of a product description is to "
|
||||
"supply customers with important information about the features and benefits "
|
||||
"of the product so they’re compelled to buy."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wqv-quick-view-preview-modal.php:44
|
||||
msgid "Add to cart"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wqv-quick-view-preview-modal.php:47
|
||||
msgid "categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wqv-quick-view-preview-modal.php:48
|
||||
msgid "T-shirts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wqv-quick-view-preview-modal.php:49
|
||||
msgid "clothing"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:124
|
||||
msgid "Enable plugin"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:126
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:131
|
||||
#: common/class-mwb-wqv-quick-view-common.php:242
|
||||
#: common/class-mwb-wqv-quick-view-common.php:255
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:132
|
||||
#: common/class-mwb-wqv-quick-view-common.php:243
|
||||
#: common/class-mwb-wqv-quick-view-common.php:256
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:137
|
||||
msgid "Text for QuickView button"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:139
|
||||
msgid "Enter the text you want to show on the QuickView button."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:143
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:147
|
||||
msgid "Disable QuickView for mobile view"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:149
|
||||
msgid "This is a checkbox field to disable QuickView for mobile view."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:153
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:157
|
||||
msgid "QuickView button background color"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:159
|
||||
msgid "This is the color field for QuickView button background color."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:166
|
||||
msgid "Closing button color"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:168
|
||||
msgid "This is the color field for the closing button."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:175
|
||||
msgid "QuickView button text color"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:177
|
||||
msgid "This is the color field for QuickView button text color."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:184
|
||||
msgid "Closing button hover color"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:186
|
||||
msgid "This is the color field for the closing button on hover."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:193
|
||||
msgid "Closing button cross color"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:195
|
||||
msgid "This is the color field for the closing button cross."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:202
|
||||
msgid "QuickView button type"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:204
|
||||
msgid "This is radio field for QuickView button type"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:210
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:211
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:218
|
||||
#: common/class-mwb-wqv-quick-view-common.php:309
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:235
|
||||
msgid "Exclude products from QuickView"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:237
|
||||
msgid "Enable to exclude product."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:248
|
||||
msgid "Exclude categories from QuickView"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:250
|
||||
msgid "Enable to exclude categories."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:261
|
||||
msgid "Select products to be excluded"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:263
|
||||
msgid "This is a multi-select field to select the products to be excluded."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:273
|
||||
msgid "Select categories to be excluded"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:275
|
||||
msgid "This is a multi-select field to select the categories to be excluded."
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:285
|
||||
msgid "Animation effects"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:287
|
||||
msgid "This is radio field for Modal animation"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:293
|
||||
msgid "Default animation"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:294
|
||||
msgid "Animation 1"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:295
|
||||
msgid "Animation 2"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:302
|
||||
msgid "Animation Preview"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:346
|
||||
#: common/class-mwb-wqv-quick-view-common.php:386
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-wqv-quick-view-common.php:349
|
||||
#: common/class-mwb-wqv-quick-view-common.php:389
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:300
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:319
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:325
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:356
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:360
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:368
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:373
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:484
|
||||
msgid ""
|
||||
"Let us know why you are deactivating MWB QUICKVIEW FOR WOOCOMMERCE PLUGIN so "
|
||||
"we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:488
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view-onboarding-steps.php:730
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:339
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:344
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:349
|
||||
msgid "QuickView Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:354
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:380
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:438
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:447
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:450
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:453
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:456
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:459
|
||||
#: includes/class-mwb-wqv-quick-view.php:462
|
||||
#: includes/class-mwb-wqv-quick-view.php:465
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:459
|
||||
#: includes/class-mwb-wqv-quick-view.php:462
|
||||
#: includes/class-mwb-wqv-quick-view.php:465
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:468
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:471
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:474
|
||||
#: includes/class-mwb-wqv-quick-view.php:480
|
||||
#: includes/class-mwb-wqv-quick-view.php:483
|
||||
#: includes/class-mwb-wqv-quick-view.php:508
|
||||
#: includes/class-mwb-wqv-quick-view.php:511
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:477
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:495
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wqv-quick-view.php:504
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-quick-view-for-woocommerce.php:148
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-quick-view-for-woocommerce.php:162
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-quick-view-for-woocommerce.php:198
|
||||
msgid ""
|
||||
"Sorry, but MWB quick view for woocommerce Plugin requires the Woocommerce "
|
||||
"plugin to be installed and active"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-wqv-quick-view-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-wqv-quick-view-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-wqv-quick-view-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-wqv-quick-view-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-wqv-quick-view-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:83
|
||||
msgid "Product price"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:84
|
||||
msgid "Sale Price"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:85
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:86
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:87
|
||||
msgid "Choose an option"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:88
|
||||
msgid "No variation exists of these attributes."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:159
|
||||
#: public/class-mwb-wqv-quick-view-public.php:163
|
||||
msgid "Quick View"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:245
|
||||
#: public/class-mwb-wqv-quick-view-public.php:265
|
||||
msgid "Out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:249
|
||||
#: public/class-mwb-wqv-quick-view-public.php:271
|
||||
msgid "Available on backorder"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:253
|
||||
#: public/class-mwb-wqv-quick-view-public.php:260
|
||||
msgid "in stock"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:257
|
||||
msgid "in stock(can be back-ordered)"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-wqv-quick-view-public.php:300
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-wqv-quick-view-public-display-animation.php:39
|
||||
msgid "Product Title"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-wqv-quick-view-public-display-animation.php:58
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-wqv-quick-view-public-display-animation.php:70
|
||||
msgid "View More Details"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-wqv-quick-view-public-display-animation.php:77
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,587 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB Role Based Pricing For WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-06-09 16:40+0530\n"
|
||||
"PO-Revision-Date: 2021-06-09 16: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.3\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-role-based-pricing-for-woocommerce-admin.php:151
|
||||
#: mwb-role-based-pricing-for-woocommerce.php:82
|
||||
#: mwb-role-based-pricing-for-woocommerce.php:88
|
||||
msgid "MWB Role Based Pricing For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:193
|
||||
msgid "Enable Plugin's Functionality"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:204
|
||||
msgid "Price Rule Apply on"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:210
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:30
|
||||
msgid "Regular Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:211
|
||||
msgid "Sale Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:219
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:496
|
||||
msgid "Save Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:255
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:530
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:258
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:533
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:577
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:273
|
||||
msgid "User Role Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:277
|
||||
msgid "Text Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:290
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:292
|
||||
msgid "Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:291
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:307
|
||||
msgid "Price Rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:293
|
||||
msgid "Parent Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:294
|
||||
msgid "All Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:295
|
||||
msgid "View Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:296
|
||||
msgid "Add New Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:297
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:298
|
||||
msgid "Edit Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:299
|
||||
msgid "Update Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:300
|
||||
msgid "Search Price Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:301
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:302
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:306
|
||||
msgid "price-rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:332
|
||||
msgid "Price Rule Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:394
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:395
|
||||
msgid "Rule Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:396
|
||||
msgid "Discount Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:397
|
||||
msgid "Priority"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:398
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:451
|
||||
msgid "Back to rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:465
|
||||
msgid "Regular Price text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:467
|
||||
msgid "This text appears next to regular price."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:474
|
||||
msgid "On Sale Price text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:476
|
||||
msgid "This text appears next to on sale price."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:483
|
||||
msgid "Role Based Price text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:485
|
||||
msgid "This text appears next to role based price."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-role-based-pricing-for-woocommerce-admin.php:579
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/index.php:10 includes/index.php:10 index.php:14 public/index.php:10
|
||||
msgid "oops looks like nothing is here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-admin-dashboard.php:48
|
||||
msgid "MWB ROLE BASED PRICING FOR WOOCOMMERCE"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-admin-dashboard.php:49
|
||||
#: mwb-role-based-pricing-for-woocommerce.php:170
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-admin-dashboard.php:51
|
||||
#: mwb-role-based-pricing-for-woocommerce.php:171
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:59
|
||||
msgid "Enable the Rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:77
|
||||
msgid "Choose A Role"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:91
|
||||
msgid "Select Rule Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:95
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:104
|
||||
msgid "All Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:96
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:97
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:131
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:157
|
||||
msgid "Product Tag"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:181
|
||||
msgid "Select Discount Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:185
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:186
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:192
|
||||
msgid "Price Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:195
|
||||
msgid "Please Enter the Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:200
|
||||
msgid "Priority For Price Rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-metabox.php:203
|
||||
msgid "Please Enter the Priority"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:21
|
||||
msgid "What Is MWB Role Based Pricing For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:24
|
||||
msgid ""
|
||||
"The MWB Role Based Pricing For WooCommerce allows the WooCommerce merchants "
|
||||
"to show prices on their online store based on different user roles. For "
|
||||
"example, wholesalers, retailers, and distributors, etc. The merchants can "
|
||||
"create a dedicated pricing list for either selected products or selected "
|
||||
"categories using this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:27
|
||||
msgid "With MWB Role Based Pricing For WooCommerce the admin can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:29
|
||||
msgid ""
|
||||
"Show the right price separately to wholesalers, retailers, distributors, and "
|
||||
"customers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:30
|
||||
msgid "Priority-based rule application on products for different roles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:31
|
||||
msgid "Apply role based pricing on particular selected products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:32
|
||||
msgid "Hide price for selected user roles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:33
|
||||
msgid "Enable Role based pricing on your store with unlimited rule."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:34
|
||||
msgid "Create, edit, and implement role based pricing rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:37
|
||||
msgid "Features Of MWB Role Based Pricing For WooCommerce "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:38
|
||||
msgid "Take a glance at the key features of this plugin:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:46
|
||||
msgid "User Role Based Add-To-Cart Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:50
|
||||
msgid ""
|
||||
"The plugin allows the admin to remove or replace the Add-to-cart button for "
|
||||
"guest users or other desired user roles. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:64
|
||||
msgid "Priority-Based Pricing Rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:68
|
||||
msgid ""
|
||||
"Admin can create priority-based pricing rules for different user roles. The "
|
||||
"admin can give priority to the created rules. The first priority rule will "
|
||||
"be applied first then the second and so on"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:82
|
||||
msgid "Unlimited User Role Based Pricing Rules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:86
|
||||
msgid ""
|
||||
"Admin can create unlimited pricing rules and apply them to the regular price "
|
||||
"or sale price as desired. Admin may apply restrictions to specific products, "
|
||||
"tags, or categories as well."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:100
|
||||
msgid "Enable/ Disable Role Based Pricing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:104
|
||||
msgid ""
|
||||
"Admin can show or hide the role based price, Regular Price, and Sale price "
|
||||
"to users. Settings for the priority of each user have been provided."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:118
|
||||
msgid "Hide Price For User-Roles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-overview.php:122
|
||||
msgid ""
|
||||
"The MWB Role Based Pricing plugin lets the store owner hide certain specific "
|
||||
"product prices from specific user roles. Admin can completely adjust pricing "
|
||||
"for user roles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:29
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:31
|
||||
msgid "On Sale Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:32
|
||||
msgid "Role Based Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:33
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:34
|
||||
msgid "Show Price Incl. Tax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:35
|
||||
msgid "Show total discount ( % )"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-role-based-pricing-for-woocommerce-user-role.php:99
|
||||
msgid "Save User Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:296
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:315
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:321
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:352
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:356
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:364
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:369
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:480
|
||||
msgid "Let us know why you are deactivating so we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:484
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce-onboarding-steps.php:723
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:392
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:396
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:402
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:426
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:484
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:493
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:496
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:499
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:502
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:505
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:508
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:511
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:514
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:508
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:511
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:514
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:517
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:520
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:523
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:529
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:532
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:560
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:563
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:526
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:544
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:547
|
||||
#: includes/class-mwb-role-based-pricing-for-woocommerce.php:556
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-role-based-pricing-for-woocommerce.php:155
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-role-based-pricing-for-woocommerce.php:169
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-role-based-pricing-for-woocommerce.php:204
|
||||
msgid ""
|
||||
"Woocommerce is not activated, Please activate Woocommerce first to install "
|
||||
"MWB Role Based Pricing for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-role-based-pricing-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-role-based-pricing-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-role-based-pricing-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-role-based-pricing-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-role-based-pricing-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:499
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:829
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1251
|
||||
msgid "incl.VAT"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:501
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:831
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1253
|
||||
msgid "excl.VAT"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1027
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1058
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1093
|
||||
msgid "Total Discount "
|
||||
msgstr ""
|
||||
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1030
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1061
|
||||
#: public/class-mwb-role-based-pricing-for-woocommerce-public.php:1096
|
||||
msgid "% Discount"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,661 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MWB Shipping Rates For WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-07-16 17:39+0530\n"
|
||||
"PO-Revision-Date: 2021-07-16 17:39+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;"
|
||||
"translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:170
|
||||
#: mwb-shipping-rates-for-woocommerce.php:92
|
||||
#: mwb-shipping-rates-for-woocommerce.php:98
|
||||
msgid "MWB Shipping Rates For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:227
|
||||
msgid "Enable plugin "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:229
|
||||
msgid "Enable plugin to start the functionality of the MWB Shipping Rates."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:234
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:246
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:235
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:247
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:239
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:241
|
||||
msgid "Show shipping method only to the logged in user on front end."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:254
|
||||
msgid "Save Change"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:294
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-shipping-rates-for-woocommerce-admin.php:297
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-admin-dashboard.php:29
|
||||
msgid "MWB SHIPPING RATES FOR WOOCOMMERCE"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-admin-dashboard.php:30
|
||||
#: mwb-shipping-rates-for-woocommerce.php:177
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-admin-dashboard.php:32
|
||||
#: mwb-shipping-rates-for-woocommerce.php:178
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:25
|
||||
msgid "What Is MWB Shipping Rates For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:29
|
||||
msgid ""
|
||||
"The MWB WooCommerce Shipping Rates plugin is a full-featured and extremely "
|
||||
"versatile plugin for setting numerous shipping ways with different shipping "
|
||||
"regulations and maximizing earnings from the shipping methods on offer.\n"
|
||||
" MWB Shipping Rates for WooCommerce is used to calculate "
|
||||
"shipping rates based on the total weight of the order, the total price of "
|
||||
"all products in the cart, different product categories, and other factors. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:35
|
||||
msgid "As a store owner, you get to:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:37
|
||||
msgid ""
|
||||
"This plugin makes it simple for your customers to access shipping rates."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:38
|
||||
msgid "Create a number of MWB shipping methods."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:39
|
||||
msgid "Customers can choose from a variety of shipping options."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:40
|
||||
msgid "Shipments should be deployed more strategically manner."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:41
|
||||
msgid "Shipping rates can be molded to optimize shipping"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:44
|
||||
msgid "The Free Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:49
|
||||
msgid "admin/image/category-wise.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:52
|
||||
msgid " Category Wise Shipping "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:56
|
||||
msgid ""
|
||||
"Set shipping costs according to product categories. The delivery charges for "
|
||||
"Product Categories A, B, and C are the same. With the shipping costs for the "
|
||||
"Shipping category of the products in your cart, you can effortlessly "
|
||||
"estimate your total shipping cost."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:67
|
||||
msgid "admin/image/Weight-and-Volume-Wise-Shipping.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:70
|
||||
msgid " Weight and Volume-Wise Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:72
|
||||
msgid ""
|
||||
"You can easily determine delivery fees depending on the weight and volume of "
|
||||
"the cart. The use of different shipping costs based on weight and volume "
|
||||
"slab is a typical occurrence. You can define a delivery charge according to "
|
||||
"the weight and volume unit outside of the stated range."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:80
|
||||
msgid "admin/image/Price-Range-Wise-Shipping.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:83
|
||||
msgid "Price Range Wise Shipping "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:87
|
||||
msgid ""
|
||||
"The cost of shipping varies depending on the price of the cart range in "
|
||||
"between the given price."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:98
|
||||
msgid "admin/image/Conditional-Free-Shipping.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:101
|
||||
msgid "Conditional Free Shipping "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:105
|
||||
msgid ""
|
||||
"Configure the conditional rules to allow free shipping on the certain "
|
||||
"Condition of the cart applied."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:116
|
||||
msgid "admin/image/Support.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:119
|
||||
msgid "Support "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-overview.php:123
|
||||
msgid ""
|
||||
"Phone, Email & Skype support. Our Support is ready to assist you regarding "
|
||||
"any query, issue, or feature request and if that doesn`t help our Technical "
|
||||
"team will connect with you personally and have your query\n"
|
||||
"\t\t\t\t\t\t\tresolved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-shipping-rates-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-shipping-rates-for-woocommerce-common.php:181
|
||||
msgid "Expected to be delivered by "
|
||||
msgstr ""
|
||||
|
||||
#: common/class-mwb-shipping-rates-for-woocommerce-common.php:196
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:28
|
||||
msgid "MWB Shipping Rates"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:29
|
||||
msgid "MWB Shipping Method With Different Conditioning Rules For Shipping."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:74
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:77
|
||||
msgid "Checkbox to set this shipping method as default selected option "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:81
|
||||
msgid "Enable General Charge"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:84
|
||||
msgid "Checkbox to apply general shipping charges."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:88
|
||||
msgid "Shipping Title"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:90
|
||||
msgid "Title to be display on the site"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:91
|
||||
msgid "MWB Shipping "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:95
|
||||
msgid "Shipping Cost"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:97
|
||||
msgid "general shipping cost"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:102
|
||||
msgid "Tax Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:105
|
||||
msgid "Taxation on shipping"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:108
|
||||
msgid "Taxable"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:109
|
||||
msgid "Not Taxable"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:114
|
||||
msgid "Expected Delivery Date"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:116
|
||||
msgid "Expected delivery date for shipping "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:121
|
||||
msgid "Free Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:124
|
||||
msgid "Enable to apply conditional free shipping"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:126
|
||||
msgid "Free shipping will override the configuration mention below."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:132
|
||||
msgid "Pre Discount Price"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:134
|
||||
msgid "Checkbox to apply free shipping on pre-discounted price."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:135
|
||||
msgid "Apply conditional free shipping on the pre-discounted price"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:140
|
||||
msgid "Free Shipping base on"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:143
|
||||
msgid "Condition on which free shipping is allowed"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:147
|
||||
msgid "--Select One--"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:148
|
||||
msgid "Minimum Order"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:149
|
||||
msgid "Shipping Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:153
|
||||
msgid "Free Shipping title"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:155
|
||||
msgid "Free Shipping label on site"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:156
|
||||
msgid "Mwb Free Shipping Applied"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:160
|
||||
msgid "Free Shipping Amount"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:162
|
||||
msgid "Minimum amount for Free Shipping "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:167
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:169
|
||||
msgid "Apply Advanced Shipping rules"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:170
|
||||
msgid "Advance shipping rules for the shipping charge"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:175
|
||||
msgid "Include General Shipping Charges"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:177
|
||||
msgid ""
|
||||
"Check to include general shipping charges applied above into advance charges."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:181
|
||||
msgid "Categories Wise"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:183
|
||||
msgid "Categories to apply shipping charge "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:188
|
||||
msgid "Shipping charge by categories wise"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:190
|
||||
msgid "Shipping amount charge for selected categories per quantity-wise."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:195
|
||||
msgid "Apply Weight Range Rule"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:197
|
||||
msgid "Check to enable weight range rule."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:201
|
||||
msgid "Apply Price Range Rule"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:203
|
||||
msgid "Check to enable price range rule."
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:207
|
||||
msgid "Appy Volume Range Rule"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:209
|
||||
msgid "Check to enable volume range rule. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:213
|
||||
msgid "Maximum Weight (Kg)"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:215
|
||||
msgid "Maximum weight of the cart, on which shipping charge applied. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:220
|
||||
msgid "Minimum Weight (Kg)"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:222
|
||||
msgid "Minimum weight of the cart on which shipping charge applied. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:227
|
||||
msgid "Charge Weight Wise"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:229
|
||||
msgid "shipping charge on the selected weight of the cart. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:234
|
||||
msgid "Maximum Price"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:236
|
||||
msgid "Minimum price of the cart on which shipping charge applied. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:241
|
||||
msgid "Minimum Price"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:243
|
||||
msgid "Minimum price of the cart, on which shipping charge applied. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:248
|
||||
msgid "Charge Price Wise"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:250
|
||||
msgid "Charge the shipping cost on the selected price of the cart. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:255
|
||||
msgid "Maximun Volume (cm<sup>3</sup>)"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:257
|
||||
msgid "Maximum volume of the cart, on which shipping charge applied. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:262
|
||||
msgid "Minimum Volume (cm<sup>3</sup>)"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:264
|
||||
msgid "Minimum volume of the cart, on which shipping charge applied. "
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:269
|
||||
msgid "Charge Volume Wise"
|
||||
msgstr ""
|
||||
|
||||
#: common/classes/class-mwb-shipping-rate-method.php:271
|
||||
msgid "charge the shipping cost on selected volume of the cart. "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:301
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:320
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:326
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:357
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:361
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:369
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:374
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:485
|
||||
msgid ""
|
||||
"Let us know why you are deactivating MWB Shipping Rates For WooCommerce so "
|
||||
"we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:489
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce-onboarding-steps.php:731
|
||||
msgid "Unexpected Error Occurred"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:337
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:342
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:347
|
||||
msgid "System Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:373
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:408
|
||||
msgid "mwb-shipping-rates-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:430
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:439
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:442
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:445
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:448
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:451
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:454
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:457
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:460
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:454
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:457
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:460
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:463
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:466
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:469
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:475
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:478
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:506
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:509
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:472
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:490
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:493
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:502
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:515
|
||||
msgid "N/A (File data not set.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-shipping-rates-for-woocommerce.php:836
|
||||
msgid "max="
|
||||
msgstr ""
|
||||
|
||||
#: index.php:14
|
||||
msgid "oops looks like nothing is here"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-shipping-rates-for-woocommerce.php:162
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-shipping-rates-for-woocommerce.php:176
|
||||
msgid "Demo"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-shipping-rates-for-woocommerce.php:194
|
||||
msgid ""
|
||||
" Woocommerce is not activated, Please activate Woocommerce first to install "
|
||||
"MWB Shipping Rates For Woocomerce . "
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-shipping-rates-for-woocommerce-deactivation-template.php:40
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-shipping-rates-for-woocommerce-deactivation-template.php:53
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-shipping-rates-for-woocommerce-onboarding-template.php:30
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-shipping-rates-for-woocommerce-onboarding-template.php:31
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-shipping-rates-for-woocommerce-onboarding-template.php:43
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/paperform-form-builder/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/paperform-form-builder/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "paperform-wordpress",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject",
|
||||
"bundle": "cgb-scripts build && node zip"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^6.1.1",
|
||||
"cgb-scripts": "1.23.1",
|
||||
"fs-extra": "^5.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,569 @@
|
||||
# Copyright (C) 2021 Paymendo Bank Transfer
|
||||
# This file is distributed under the same license as the Paymendo Bank Transfer package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Paymendo Bank Transfer 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/paymendo-bank-"
|
||||
"transfer-lite\n"
|
||||
"POT-Creation-Date: 2021-09-04 11:48:09+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"
|
||||
|
||||
#: PaymendoBankTransfer.php:110
|
||||
msgid "Total Amount: %s"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:111
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:112 PaymendoBankTransfer.php:169
|
||||
msgid "An error has occurred."
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:114
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:115
|
||||
msgid "Cancel the Payment"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:116
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:117 views/payments.php:39
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:118
|
||||
msgid "Set Unconfirmed"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:120
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:121
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:122
|
||||
msgid "Last a Week"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:123
|
||||
msgid "Last a Month"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:124
|
||||
msgid "This Month"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:125
|
||||
msgid "Last Month"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:126
|
||||
msgid "This Year"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:127
|
||||
msgid "Last Year"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:128
|
||||
msgid "Custom Range"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:133
|
||||
msgid "No data available in table"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:134
|
||||
msgid "Showing _START_ to _END_ of _TOTAL_ entries"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:135
|
||||
msgid "Showing 0 to 0 of 0 entries"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:136
|
||||
msgid "(filtered from _MAX_ total entries)"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:139
|
||||
msgid "Show _MENU_ entries"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:140
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:141
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:143
|
||||
msgid "No matching records found"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:145
|
||||
msgid "First"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:146
|
||||
msgid "Last"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:147
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:148
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:151
|
||||
msgid ": activate to sort column ascending"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:152
|
||||
msgid ": activate to sort column descending"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:177 PaymendoBankTransfer.php:178
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:9
|
||||
msgid "paymendo - Bank Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:187 PaymendoBankTransfer.php:188
|
||||
#: views/blocks/header.php:30
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:194 PaymendoBankTransfer.php:195
|
||||
#: views/blocks/header.php:37
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: PaymendoBankTransfer.php:261 PaymendoBankTransfer.php:308
|
||||
#: PaymendoBankTransfer.php:449 PaymendoBankTransfer.php:470
|
||||
#: PaymendoBankTransfer.php:490 PaymendoBankTransfer.php:514
|
||||
msgid "Not allowed HTTP method!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:10
|
||||
msgid ""
|
||||
"Define your bank accounts and keep control of incoming payments by bank "
|
||||
"transfer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:31
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:32
|
||||
msgid "Enable Paymendo EFT/Transfer Method"
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:38
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:40
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:41
|
||||
msgid "Bank Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:45
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:47
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/WC_Gateway_Paymendo_Bank_Transfer.php:48
|
||||
msgid "Payment option by bank transfer!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/payment-completed.php:6
|
||||
msgid "Bank Transfer Completed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/payment-completed.php:7
|
||||
msgid "This email is received when the bank transfer completed of the order."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/payment-completed.php:17
|
||||
msgid "[{site_title}]: Transfer payment has been completed #{order_number}"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/payment-completed.php:21
|
||||
msgid "Transfer payment has been completed: #{order_number}"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/templates/template-payment-completed.php:10
|
||||
msgid "Bank transfer of your order(#%s) has been completed!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/templates/template-payment-completed.php:12
|
||||
msgid "You can view the transfer information following."
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/templates/template-payment-completed.php:17
|
||||
msgid "Bank"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/templates/template-payment-completed.php:23 inc/functions.php:174
|
||||
msgid "Account Owner"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/templates/template-payment-completed.php:29 inc/functions.php:180
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/templates/template-payment-completed.php:35 inc/functions.php:206
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emails/templates/template-payment-completed.php:42
|
||||
msgid "Your note"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:40
|
||||
msgid "This payment approved by %s.(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:45
|
||||
msgid "This payment canceled by %s.(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:156
|
||||
msgid "Select Bank"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:190
|
||||
msgid "Branch Code"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:197
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:223
|
||||
msgid "BIC / Swift"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:231
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:236
|
||||
msgid "If there is a special detail for this option, you can add it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:243
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:244
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: inc/show-promotions.php:20
|
||||
msgid ""
|
||||
"You can <b>fully automated</b> the bank transfer processes on your "
|
||||
"WooCommerce website. <a class=\"btn btn-sm btn-outline-success m-2\" href="
|
||||
"\"%s\" target=\"_blank\">%s</a>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/show-promotions.php:20
|
||||
msgid "Upgrade Now"
|
||||
msgstr ""
|
||||
|
||||
#: paymendo-bank-transfer.php:58
|
||||
msgid ""
|
||||
"<strong>Paymendo Bank Transfer</strong> must use with <a href=\"%s"
|
||||
"\">WooCommerce</a>!"
|
||||
msgstr ""
|
||||
|
||||
#: views/banks.php:5 views/blocks/header.php:23
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: views/banks.php:6
|
||||
msgid ""
|
||||
"You can define the bank accounts of your store here. Defined banks can be "
|
||||
"viewed by your customers."
|
||||
msgstr ""
|
||||
|
||||
#: views/banks.php:36
|
||||
msgid "ADD ACCOUNT"
|
||||
msgstr ""
|
||||
|
||||
#: views/banks.php:44 views/settings.php:190
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: views/blocks/header.php:41
|
||||
msgid "License & Support"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:5
|
||||
msgid "Payment Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:6
|
||||
msgid "You can review the payment records reported by customers on this page."
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:7
|
||||
msgid "Filter Results"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:16
|
||||
msgid "By Bank: "
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:18
|
||||
msgid "Select Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:35
|
||||
msgid "By Status: "
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:38
|
||||
msgid "All Status"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:40
|
||||
msgid "Unconfirmed"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:47
|
||||
msgid "By Currency: "
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:49
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:70
|
||||
msgid "Date Range:"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:85
|
||||
msgid "By Order Amount: "
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:107
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:122
|
||||
msgid "Order No"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:123 views/settings.php:29 views/settings.php:123
|
||||
msgid "Customer Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:124
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:125
|
||||
msgid "Order Amount"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:126
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:127
|
||||
msgid "Updated"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:129
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:141
|
||||
msgid ""
|
||||
"Would you like to share the information that the payment was canceled with "
|
||||
"the customer? You can write and send a message."
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:144
|
||||
msgid "SMS Message"
|
||||
msgstr ""
|
||||
|
||||
#: views/payments.php:149 views/site/static/bank-accounts.php:118
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:5
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:6
|
||||
msgid "You can configure general module settings on this page."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:17
|
||||
msgid ""
|
||||
"Get the <a href=\"%s\">\"WP SMS Functions\"</a> plugin to use the SMS "
|
||||
"sending features."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:33
|
||||
msgid "Your Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:40
|
||||
msgid "Enable SMS notification to billing manager?"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:42
|
||||
msgid ""
|
||||
"When the payment notification is made, activate it to send an SMS "
|
||||
"notification to the billing manager."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:61
|
||||
msgid "Admin Phone Number(s)"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:74
|
||||
msgid "Template for billing manager notification:"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:76
|
||||
msgid "Set the template for the SMS to be sent to the payment manager."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:86
|
||||
msgid "Available Shortcodes:"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:92
|
||||
msgid ""
|
||||
"<strong>Example:</strong> The customer named {customer_name} has payed to "
|
||||
"your {bank_name_with_currency} account."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:106
|
||||
msgid "Enable email notification to billing manager?"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:127
|
||||
msgid "Order Id"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:131
|
||||
msgid "Order Number"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:138
|
||||
msgid "Send SMS notification on payment confirmation?"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:157
|
||||
msgid "Payment confirmation SMS template:"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:164
|
||||
msgid "Available Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:172
|
||||
msgid ""
|
||||
"<strong>Example:</strong> Dear {customer_name}, we have approved your "
|
||||
"payment for the order #{order_number}. We will process your order as soon as "
|
||||
"possible. Thank you for choosing us."
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:11
|
||||
msgid "You can view our bank accounts below to complete the payment."
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:17
|
||||
msgid "I've completed the payment"
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:19
|
||||
msgid ""
|
||||
"This order's bank transfer has been completed with bank information below."
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:21
|
||||
msgid ""
|
||||
"When the payment has been confirmed, order status will change automatically."
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:50
|
||||
msgid "Account Owner:"
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:54
|
||||
msgid "Branch Code:"
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:58
|
||||
msgid "Account Number:"
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:62
|
||||
msgid "IBAN: "
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:66
|
||||
msgid "Currency:"
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:70
|
||||
msgid "BIC / Swift:"
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:74
|
||||
msgid "Note:"
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:99
|
||||
msgid ""
|
||||
"You can send a notification by selecting the bank you pay with by wire "
|
||||
"transfer."
|
||||
msgstr ""
|
||||
|
||||
#: views/site/static/bank-accounts.php:103
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Paymendo Bank Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Show transfer options and list your bank accounts on your WooCommerce "
|
||||
"website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "grilabs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.gri.net"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,197 @@
|
||||
# Copyright (c) 2021 Perfect Checkout
|
||||
# This file is distributed under the same license as the Perfect Checkout package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Perfect Checkout 1.1.3\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/Perfect-WooCommerce-Plugin\n"
|
||||
"POT-Creation-Date: 2021-08-02 03:17:23+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_US\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/admin/class-perfect-checkout-admin-action-links.php:42
|
||||
msgid "Settings for %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-perfect-checkout-admin-action-links.php:42
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-perfect-checkout-admin-settings.php:83
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-perfect-checkout-admin.php:193
|
||||
#: includes/admin/class-perfect-checkout-admin.php:195
|
||||
msgid "Perfect Checkout Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-perfect-checkout-admin.php:201
|
||||
msgid "WooCommerce Cart Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-perfect-checkout-admin.php:207
|
||||
msgid "WooCommerce Checkout Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-perfect-checkout-settings-licence.php:47
|
||||
msgid "License Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:41
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:45
|
||||
msgid ""
|
||||
"*Your license key is available in your PerfectCheckout account dashboard. "
|
||||
"%1$sLogin here%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:47
|
||||
msgid ""
|
||||
"Note: License key works for 1 connected store at a time. Please contact "
|
||||
"sales if you would like to add more websites."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:51
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:55
|
||||
msgid "View our %1$sgetting started guide%2$s and %3$sdocs%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:56
|
||||
msgid "Live chat and email support available at %1$sPerfectCheckout.com%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:60
|
||||
msgid "Problems?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:63
|
||||
msgid ""
|
||||
"Perfect Checkout doesn't always perform as intended on shared hosting. We "
|
||||
"are also aware of issues with certain live-rate shipping plugins that may "
|
||||
"slow down our carts response time. Learn how to get the best performance "
|
||||
"with Perfect Checkout by reading our article here and please reach out to "
|
||||
"our friendly support team if you have any issues."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:66
|
||||
msgid ""
|
||||
"Learn more, get free ecommerce resources, and join our community at "
|
||||
"%1$sPerfectCheckout.com%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:27
|
||||
msgid "Temporary Deactivation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:28
|
||||
msgid "%1$sIt is a temporary deactivation.%2$s I am just debugging an issue."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:33
|
||||
msgid "Too Complicated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:34
|
||||
msgid "The plugin is %1$stoo complicated to configure.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:37
|
||||
msgid "The plugin is too complicated to configure."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:38
|
||||
msgid "We are sorry to hear you are finding it difficult to use Perfect Checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:39
|
||||
msgid ""
|
||||
"We do our best to make Perfect Checkout provide the best checkout flow out "
|
||||
"there. If there is something we can do to help make it less complicated, "
|
||||
"%1$splease write to us%2$s and let us know."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:44
|
||||
msgid "Another Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:45
|
||||
msgid "I'm using another plugin I find better."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:47
|
||||
msgid "What is the name of this plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:56
|
||||
msgid "Return"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:57
|
||||
msgid "Perfect Checkout Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:59
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:64
|
||||
msgid "Would you mind telling us why you are deactivating so we can improve?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:83
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:85
|
||||
msgid ""
|
||||
"Let us know why you are deactivating Perfect Checkout so we can improve the "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:108
|
||||
msgid "Send & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:109
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-modal-deactivation.php:111
|
||||
msgid "Skip & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-perfect-checkout-install.php:261
|
||||
msgid "Enter your license key for %3$s here:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-perfect-checkout-install.php:171
|
||||
msgctxt "Page slug"
|
||||
msgid "perfect-checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-perfect-checkout-install.php:172
|
||||
msgctxt "Page title"
|
||||
msgid "Perfect Checkout"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,211 @@
|
||||
# Copyright (C) 2019 Automattic
|
||||
# This file is distributed under the same license as the http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PMPRO Discord 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"POT-Creation-Date: 2021-07-22 2:00:21+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Ravi Soni <contact@expresstechsoftwares.com>\n"
|
||||
"Language-Team: en-us <contact@expresstechsoftwares.com>\n"
|
||||
"X-Generator:WCFM PMPRO Discord 1.0.0\n"
|
||||
msgid "Discord connection"
|
||||
msgstr "Discord connection"
|
||||
|
||||
msgid "Disconnect From Discord"
|
||||
msgstr "Disconnect From Discord"
|
||||
|
||||
msgid "Connect To Discord"
|
||||
msgstr "Connect To Discord"
|
||||
|
||||
msgid "Following Roles will be assigned to you in Discord:"
|
||||
msgstr "Following Roles will be assigned to you in Discord:"
|
||||
|
||||
msgid "Discord Settings"
|
||||
msgstr "Discord Settings"
|
||||
|
||||
msgid "PMPRO Discord Add On Settings"
|
||||
msgstr "PMPRO Discord Add On Settings"
|
||||
|
||||
msgid "Application Details"
|
||||
msgstr "Application Details"
|
||||
|
||||
msgid "Role Mappings"
|
||||
msgstr "Role Mappings"
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr "Advanced"
|
||||
|
||||
msgid "Logs"
|
||||
msgstr "Logs"
|
||||
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
msgid "Support"
|
||||
msgstr "Support"
|
||||
|
||||
msgid "Your request have been successfully submitted!"
|
||||
msgstr "Your request have been successfully submitted!"
|
||||
|
||||
msgid "Run API"
|
||||
msgstr "Run API"
|
||||
|
||||
msgid "Not Connected"
|
||||
msgstr "Not Connected"
|
||||
|
||||
msgid "Discord"
|
||||
msgstr "Discord"
|
||||
|
||||
msgid "Joined Date"
|
||||
msgstr "Joined Date"
|
||||
|
||||
msgid "Send welcome message"
|
||||
msgstr "Send welcome message"
|
||||
|
||||
msgid "Membership welcome message"
|
||||
msgstr "Membership welcome message"
|
||||
|
||||
msgid "Send membership expiration warning message"
|
||||
msgstr "Send membership expiration warning message"
|
||||
|
||||
msgid "Membership expiration warning message"
|
||||
msgstr "Membership expiration warning message"
|
||||
|
||||
msgid "Send membership expired message"
|
||||
msgstr "Send membership expired message"
|
||||
|
||||
msgid "Membership expired message"
|
||||
msgstr "Membership expired message"
|
||||
|
||||
msgid "Send membership cancel message"
|
||||
msgstr "Send membership cancel message"
|
||||
|
||||
msgid "Membership cancel message"
|
||||
msgstr "Membership cancel message"
|
||||
|
||||
msgid "Re-assign roles upon payment failure"
|
||||
msgstr "Re-assign roles upon payment failure"
|
||||
|
||||
msgid "Retry Failed API calls"
|
||||
msgstr "Retry Failed API calls"
|
||||
|
||||
msgid "How many times a failed API call should get re-try"
|
||||
msgstr "How many times a failed API call should get re-try"
|
||||
|
||||
msgid "Set job queue concurrency"
|
||||
msgstr "Set job queue concurrency"
|
||||
|
||||
msgid "Set job queue batch size"
|
||||
msgstr "Set job queue batch size"
|
||||
|
||||
msgid "Log API calls response (For debugging purpose)"
|
||||
msgstr "Log API calls response (For debugging purpose)"
|
||||
|
||||
msgid "Save Settings"
|
||||
msgstr "Save Settings"
|
||||
|
||||
msgid "Drag and Drop the Discord Roles over to the PMPRO Levels"
|
||||
msgstr "Drag and Drop the Discord Roles over to the PMPRO Levels"
|
||||
|
||||
msgid "Note: Inactive levels will not display"
|
||||
msgstr "Note: Inactive levels will not display"
|
||||
|
||||
msgid "Discord Roles"
|
||||
msgstr "Discord Roles"
|
||||
|
||||
msgid "PMPRO Levels"
|
||||
msgstr "PMPRO Levels"
|
||||
|
||||
msgid "Default Role"
|
||||
msgstr "Default Role"
|
||||
|
||||
msgid "-None-"
|
||||
msgstr "-None-"
|
||||
|
||||
msgid "This Role will be assigned to all level members"
|
||||
msgstr "This Role will be assigned to all level members"
|
||||
|
||||
msgid "Allow non-members"
|
||||
msgstr "Allow non-members"
|
||||
|
||||
msgid "Yes"
|
||||
msgstr "Yes"
|
||||
|
||||
msgid "This setting will apply on Cancel and Expiry of Membership"
|
||||
msgstr "This setting will apply on Cancel and Expiry of Membership"
|
||||
|
||||
msgid "Save Settings"
|
||||
msgstr "Save Settings"
|
||||
|
||||
msgid "Flush Mappings"
|
||||
msgstr "Flush Mappings"
|
||||
|
||||
msgid "Client ID"
|
||||
msgstr "Client ID"
|
||||
|
||||
msgid "Client Secret"
|
||||
msgstr "Client Secret"
|
||||
|
||||
msgid "Redirect URL"
|
||||
msgstr "Redirect URL"
|
||||
|
||||
msgid "Registered discord app url"
|
||||
msgstr "Registered discord app url"
|
||||
|
||||
msgid "Bot Token"
|
||||
msgstr "Bot Token"
|
||||
|
||||
msgid "Server ID"
|
||||
msgstr "Server ID"
|
||||
|
||||
msgid "Please save your form"
|
||||
msgstr "Please save your form"
|
||||
|
||||
msgid "Save Settings"
|
||||
msgstr "Save Settings"
|
||||
|
||||
msgid "Connect your Bot"
|
||||
msgstr "Connect your Bot"
|
||||
|
||||
msgid "YouTube video tutorial on how to connect the plugin with discord server"
|
||||
msgstr "YouTube video tutorial on how to connect the plugin with discord server"
|
||||
|
||||
msgid "Step-by-Step Written guide on how to connect the plugin with Discord server"
|
||||
msgstr "Step-by-Step Written guide on how to connect the plugin with Discord server"
|
||||
|
||||
msgid "Click Here"
|
||||
msgstr "Click Here"
|
||||
|
||||
msgid "Features and other documentation"
|
||||
msgstr "Features and other documentation"
|
||||
|
||||
msgid "ExpressTech Softwares Solutions Pvt. Ltd."
|
||||
msgstr "ExpressTech Software Solution Pvt. Ltd. is the leading Enterprise WordPress development company."
|
||||
|
||||
msgid "Contact us for any WordPress Related development projects."
|
||||
msgstr "Contact us for any WordPress Related development projects."
|
||||
|
||||
msgid "Full Name"
|
||||
msgstr "Full Name"
|
||||
|
||||
msgid "Contact Email"
|
||||
msgstr "Contact Email"
|
||||
|
||||
msgid "Subject"
|
||||
msgstr "Subject"
|
||||
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
msgid "Skype"
|
||||
msgstr "Skype"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
msgid "Whatsapp / Phone"
|
||||
msgstr "Whatsapp / Phone"
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/poll-dude/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/poll-dude/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# Changelog
|
||||
[1.0.0]First release
|
||||
Create the polls by generating shortcodes embedded in your posts.
|
||||
Showing one selected poll as a widget.
|
||||
With reCaptchaV2 to prevent robots accessing.
|
||||
The color of each answer voted-bar can be set differently.
|
||||
@@ -0,0 +1,86 @@
|
||||
# Copyright (C) 2021 ALI KHALLAD
|
||||
# This file is distributed under the same license as the Post Checkout Registration for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Post Checkout Registration for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-post-checkout-registration\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-06-09T16:43:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wc-pcr\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Post Checkout Registration for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://alikhallad.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows you to add an option to register with one-click after checkout"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ALI KHALLAD"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:116
|
||||
msgid "Post-checkout registration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:117
|
||||
msgid "Enable one-click customer registration on the \"Order Received\" page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:118
|
||||
msgid "Adds an option to the order-recieved page to allow guest users to register with a single click using the data from their order."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:186
|
||||
msgid "Looks like you already have an account! You can link this order to it by clicking here to log in:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:187
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:212
|
||||
msgid "Ensure checkout is fast and easy next time! Create an account and we'll save your address details from this order."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:213
|
||||
msgid "Create Account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:267
|
||||
#: includes/class-wc-post-checkout-registration.php:275
|
||||
msgid "Error linking your previous order."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholders: %s - order number
|
||||
#: includes/class-wc-post-checkout-registration.php:283
|
||||
msgid "Order #%s has been linked to your account!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:300
|
||||
msgid "Whoops, looks like this registration link is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:313
|
||||
msgid "Welcome, %1$s! Your %2$saccount information%3$s has been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:345
|
||||
msgid "This order does not exist; it may have been deleted. Please register manually."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-post-checkout-registration.php:352
|
||||
msgid "Invalid registration link. Please register manually."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2021 Matej Kravjar
|
||||
# This file is distributed under the same license as the Post Meta View and Export plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Post Meta View and Export 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/post-meta-view-and-export\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-07-10T09:36:27+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: post-meta-view-and-export\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Post Meta View and Export"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Inspect post meta data and export it to share with third parties (available only to superadmins)"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Matej Kravjar"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/kravco/"
|
||||
msgstr ""
|
||||
|
||||
#: post-meta-view-and-export.php:63
|
||||
msgid "Post meta export link has expired. Go back, refresh the page and hit Export again."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: the post ID
|
||||
#: post-meta-view-and-export.php:69
|
||||
msgid "The post ID %s to be exported was not found in this installation."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: filename, %2$s: line number
|
||||
#: post-meta-view-and-export.php:74
|
||||
msgid "Headers already sent. Output has started in file %1$s on line %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: post-meta-view-and-export.php:92
|
||||
msgid "Post Meta View and Export (available only to superadmins)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: the post type
|
||||
#: templates/template-meta-box.php:69
|
||||
msgid "Export %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-meta-box.php:89
|
||||
msgid "meta key"
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-meta-box.php:90
|
||||
msgid "meta value"
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-meta-box.php:100
|
||||
msgid "Missing post meta data."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: the filter slug
|
||||
#: templates/template-meta-box.php:103
|
||||
#: templates/template-meta-box.php:118
|
||||
msgid "Most likely, it is caused by incorrectly used filter %s."
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-meta-box.php:115
|
||||
msgid "Post meta data is not an array."
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-meta-box.php:128
|
||||
msgid "No post meta data."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2021 WPZOOM
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Preload Featured Image by WPZOOM 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/instagram-widget-by-"
|
||||
"wpzoom\n"
|
||||
"POT-Creation-Date: 2021-06-25 09:58+0300\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-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-Textdomain-Support: yes\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: preload-featured-image.php:120
|
||||
msgid "You do not have enough permission to view this page"
|
||||
msgstr ""
|
||||
|
||||
#: preload-featured-image.php:127
|
||||
msgid "Preload Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: preload-featured-image.php:127
|
||||
msgid "Support Forum on WordPress.org"
|
||||
msgstr ""
|
||||
|
||||
#: preload-featured-image.php:154
|
||||
msgid "Preload Featured Images Settings"
|
||||
msgstr ""
|
||||
|
||||
#: preload-featured-image.php:160
|
||||
msgid "Featured Images Size"
|
||||
msgstr ""
|
||||
|
||||
#: preload-featured-image.php:263
|
||||
msgid ""
|
||||
"Please, select the correct image size for the featured image on the single post"
|
||||
msgstr ""
|
||||
167
spec/fixtures/dynamic_finders/plugin_version/pretty-grid/translation_file/lang/pretty-grid.pot
vendored
Normal file
167
spec/fixtures/dynamic_finders/plugin_version/pretty-grid/translation_file/lang/pretty-grid.pot
vendored
Normal file
@@ -0,0 +1,167 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pretty Grid v1.0.0\n"
|
||||
"POT-Creation-Date: 2021-06-21 16:09-0800\n"
|
||||
"PO-Revision-Date: 2021-06-21 16:09-0800\n"
|
||||
"Last-Translator: darell sun <darell1986@gmail.com>\n"
|
||||
"Language-Team: WPHobby\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Poedit-KeywordsList: _;__;_e;esc_attr_e\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: lang\n"
|
||||
"X-Poedit-SearchPath-1: .\n"
|
||||
|
||||
#: admin/abstracts/class-admin-page.php:184
|
||||
msgid "Made with %s by WPHobby"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin-ajax.php:40
|
||||
msgid "You are not allowed to perform this action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin-ajax.php:63
|
||||
msgid "Gallery model doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin-ajax.php:140
|
||||
msgid "User submit data are empty!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin-ajax.php:178
|
||||
msgid "You are not allowed to perform this action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin-ajax.php:186
|
||||
msgid "has been connected successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin-ajax.php:190
|
||||
msgid "User submit data are empty!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin.php:64
|
||||
msgid "Pretty Grid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin.php:67
|
||||
msgid "Pretty Grid Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin.php:88
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/class-admin.php:89
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/dasboard/content.php:2
|
||||
msgid "feed gallery live demos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/dasboard/content.php:35
|
||||
msgid "Thank you for choosing Pretty Grid, the most flexible tool that make you can easily display social media content in WordPress with customizable social media feeds! - %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/dasboard/content.php:74
|
||||
msgid "Not sure which gallery layout template to use? Check out all our different %s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/dasboard/content.php:100
|
||||
msgid "Open demo in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/gallery/list/content.php:120
|
||||
msgid "Published"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/gallery/list/content.php:126
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/gallery/list/content.php:175
|
||||
msgid "Unpublish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/gallery/list/content.php:181
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/gallery/preview/instagram.php:149
|
||||
msgid "%1$s likes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/gallery/preview/instagram.php:166
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings/popups/instagram.php:45
|
||||
msgid "Follow %1$s your Instagram SessionID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:155
|
||||
msgid "Add Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:156
|
||||
msgid "Add Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-front-ajax.php:43
|
||||
msgid "Gallery data are empty!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-modules.php:57
|
||||
msgid "gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cron-job.php:58
|
||||
msgid "Once Pretty Grid Job a Minute"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/loader.php:109
|
||||
msgid "Custom Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/loader.php:110
|
||||
msgid "Custom Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/loader.php:111
|
||||
msgid "Custom forms, conditional forms, etc. Choose from our library of forms or create a new one from scratch."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/loader.php:112
|
||||
msgid "New Custom Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/admin/admin-loader.php:44
|
||||
msgid "Gallerys"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/admin/admin-loader.php:45
|
||||
msgid "Edit Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/admin/admin-page-new.php:26
|
||||
msgid "Edit Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/admin/admin-page-new.php:28
|
||||
msgid "New Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/admin/admin-page-view.php:228
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/admin/admin-page-view.php:229
|
||||
msgid "Unpublish"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/gallery/admin/admin-page-view.php:230
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
40
spec/fixtures/dynamic_finders/plugin_version/quickpick/translation_file/languages/quickpick.pot
vendored
Normal file
40
spec/fixtures/dynamic_finders/plugin_version/quickpick/translation_file/languages/quickpick.pot
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright (C) 2021 blc
|
||||
# This file is distributed under the same license as the blc package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: QuickPick 1.0.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
|
||||
"_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;"
|
||||
"esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"x-generator: babel-plugin-wp-i18n\n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Alexei Samarschi\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
|
||||
#: quickpick.php:92
|
||||
msgid "No Front Page"
|
||||
msgstr ""
|
||||
|
||||
#: quickpick.php:147
|
||||
msgid "this page is set as homepage"
|
||||
msgstr ""
|
||||
|
||||
#: quickpick.php:183 quickpick.php:219
|
||||
msgid "edited:"
|
||||
msgstr ""
|
||||
|
||||
#: quickpick.php:183 quickpick.php:219
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,40 @@
|
||||
# Copyright (C) 2021 David Kurniawan
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Redirect Modal Based On Country 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/redirect-modal-based-on-country\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"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: redirect-modal-based-on-country\n"
|
||||
|
||||
# automatic translation
|
||||
#: includes/class-redirect-modal-based-on-country-admin-menu.php:60
|
||||
msgid "Full redirect URL if visitor country is from"
|
||||
msgstr "URL chuyển hướng đầy đủ nếu quốc gia của khách truy cập đến từ"
|
||||
|
||||
# automatic translation
|
||||
#: public/partials/redirect-modal-based-on-country-public-display.php:18
|
||||
msgid "We will redirect you!"
|
||||
msgstr "Chúng tôi sẽ chuyển hướng bạn!"
|
||||
|
||||
# automatic translation
|
||||
#: public/partials/redirect-modal-based-on-country-public-display.php:19
|
||||
msgid "Seems like you are coming from"
|
||||
msgstr "Có vẻ như bạn đến từ"
|
||||
|
||||
# automatic translation
|
||||
#: public/partials/redirect-modal-based-on-country-public-display.php:22
|
||||
msgid "Go to"
|
||||
msgstr "Đi đến"
|
||||
|
||||
# automatic translation
|
||||
#: public/partials/redirect-modal-based-on-country-public-display.php:24
|
||||
msgid "Stay on this page"
|
||||
msgstr "Ở lại trên trang này"
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/rishi-companion/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/rishi-companion/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1.0.0: 2021-07-16
|
||||
- New Feature: Initial Release
|
||||
@@ -0,0 +1,786 @@
|
||||
# Copyright (C) 2021 Rishi Theme
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Rishi Companion 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/rishi-companion\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-07-21T13:49:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-3f4c34b\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Rishi Companion"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://rishitheme.com/rishi-companion/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Rishi companion is a plugin that offers powerful features for Rishi theme. It includes features to speed your website and tune fine your website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Rishi Theme"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://rishitheme.com/"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/config.php:4
|
||||
msgid "Cookies Consent"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/config.php:5
|
||||
msgid "Enable this extension in order to comply with the GDPR regulations."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:4
|
||||
msgid "Cookie Consent"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:14
|
||||
msgid "Cookies Notification"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:18
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:31
|
||||
msgid "Type 1"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:36
|
||||
msgid "Type 2"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:47
|
||||
#: framework/extensions/cookies-consent/customizer.php:66
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:53
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:54
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:72
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:73
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:81
|
||||
msgid "Cookie period"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:89
|
||||
msgid "One hour"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:90
|
||||
msgid "One day"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:91
|
||||
msgid "One week"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:92
|
||||
msgid "One month"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:93
|
||||
msgid "Three months"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:94
|
||||
msgid "Six months"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:95
|
||||
msgid "One year"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:96
|
||||
msgid "Forever"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:103
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:105
|
||||
#: framework/extensions/cookies-consent/helpers.php:22
|
||||
msgid "We use cookies to ensure that we give you the best experience on our website."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:117
|
||||
msgid "Button text"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:120
|
||||
#: framework/extensions/cookies-consent/helpers.php:25
|
||||
msgid "Accept"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:125
|
||||
msgid "Decline Button text"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:128
|
||||
#: framework/extensions/cookies-consent/helpers.php:26
|
||||
msgid "Decline"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:136
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:141
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:154
|
||||
#: framework/extensions/cookies-consent/customizer.php:178
|
||||
#: framework/extensions/cookies-consent/customizer.php:206
|
||||
#: framework/extensions/cookies-consent/customizer.php:234
|
||||
#: framework/extensions/cookies-consent/customizer.php:262
|
||||
#: framework/extensions/cookies-consent/customizer.php:287
|
||||
#: framework/extensions/cookies-consent/customizer.php:307
|
||||
#: framework/extensions/cookies-consent/customizer.php:330
|
||||
msgid "Initial"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:162
|
||||
msgid "Primary Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:183
|
||||
#: framework/extensions/cookies-consent/customizer.php:211
|
||||
#: framework/extensions/cookies-consent/customizer.php:239
|
||||
#: framework/extensions/cookies-consent/customizer.php:267
|
||||
#: framework/extensions/cookies-consent/customizer.php:334
|
||||
msgid "Hover"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:190
|
||||
msgid "Primary Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:218
|
||||
msgid "Secondary Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:246
|
||||
msgid "Secondary Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:274
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:294
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:314
|
||||
msgid "Link Color"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/customizer.php:347
|
||||
msgid "Maximum Width"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/readme.php:1
|
||||
#: framework/extensions/customizer-reset/readme.php:1
|
||||
#: framework/extensions/performance/readme.php:1
|
||||
#: framework/extensions/transparent-header/readme.php:1
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/readme.php:4
|
||||
msgid "After installing and activating the Cookies Consent extension you will be able to configure it from this location:"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/readme.php:9
|
||||
#: framework/extensions/customizer-reset/readme.php:9
|
||||
#: framework/extensions/performance/readme.php:9
|
||||
#: framework/extensions/transparent-header/readme.php:9
|
||||
msgid "Customizer"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/readme.php:13
|
||||
#: framework/extensions/customizer-reset/readme.php:13
|
||||
#: framework/extensions/performance/readme.php:13
|
||||
#: framework/extensions/transparent-header/readme.php:13
|
||||
msgid "Navigate to %s and customize the notification to meet your needs."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/cookies-consent/readme.php:16
|
||||
msgid "Customizer ➝ Cookie Consent"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/customizer-reset/config.php:4
|
||||
#: framework/extensions/customizer-reset/customizer.php:4
|
||||
msgid "Customizer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/customizer-reset/config.php:5
|
||||
msgid "Enable this extension in order to reset to default settings."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/customizer-reset/customizer.php:13
|
||||
#: assets/admin/options/CustomizerResetOptions.js:18
|
||||
#: assets/build/options.js:1
|
||||
msgid "Reset Options"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/customizer-reset/customizer.php:14
|
||||
msgid "Click this button if you want to reset all settings to their default values."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/customizer-reset/readme.php:4
|
||||
msgid "After installing and activating the Customizer Reset extension you will be able to configure it from this location:"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/customizer-reset/readme.php:16
|
||||
msgid "Customizer ➝ Customizer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/config.php:4
|
||||
#: framework/extensions/performance/customizer.php:4
|
||||
msgid "Performance"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/config.php:5
|
||||
msgid "Enable this extension in order to enable performance related settings."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:18
|
||||
msgid "Lazy Load Images"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:22
|
||||
msgid "This option will be auto disabled if you have JetPack's lazy load option enabled."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:31
|
||||
msgid "Images Loading Animation Type"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:36
|
||||
msgid "Fade"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:37
|
||||
msgid "Circles"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:38
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:46
|
||||
msgid "Remove version parameters"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:47
|
||||
msgid "Enable to remove \"ver\" parameter from CSS and JS file calls."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:53
|
||||
msgid "Remove Emoji"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:54
|
||||
msgid "Enable to Emojis from the frontend"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:60
|
||||
msgid "Disable self-pingbacks"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:66
|
||||
msgid "Disable RSS Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:72
|
||||
msgid "Defer JavaScript"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/customizer.php:73
|
||||
msgid "Adds \"defer\" attribute to sript tags to improve page download speed."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/readme.php:4
|
||||
msgid "After installing and activating the performance extension you will be able to configure it from this location:"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/performance/readme.php:16
|
||||
msgid "Customizer ➝ Performance"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/config.php:4
|
||||
msgid "Transparent Header"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/config.php:5
|
||||
msgid "Enable this extension in order to enable transparent header feature."
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:5
|
||||
msgid "Sticky Functionality"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:31
|
||||
msgid "Only Main Row"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:36
|
||||
msgid "Top & Main Row"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:41
|
||||
msgid "All Rows"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:46
|
||||
msgid "Main & Bottom Row"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:51
|
||||
msgid "Only Top Row"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:56
|
||||
msgid "Only Bottom Row"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:62
|
||||
#: framework/extensions/transparent-header/customizer.php:143
|
||||
msgid "Enable on"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:72
|
||||
#: framework/extensions/transparent-header/customizer.php:154
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:74
|
||||
#: framework/extensions/transparent-header/customizer.php:156
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:89
|
||||
msgid "Transparent Functionality"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/customizer.php:127
|
||||
#: assets/admin/header/EditConditions.js:96
|
||||
#: assets/build/options.js:1
|
||||
msgid "Display Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/readme.php:4
|
||||
msgid "After installing and activating the Transparent Header extension you will be able to configure it from this location:"
|
||||
msgstr ""
|
||||
|
||||
#: framework/extensions/transparent-header/readme.php:16
|
||||
msgid "Customizer ➝ Header ➝ Global Header"
|
||||
msgstr ""
|
||||
|
||||
#. translators: placeholder here means the actual date.
|
||||
#: includes/functions/AjaxFunctions.php:126
|
||||
#: assets/admin/components/Changelog.js:138
|
||||
#: assets/build/dashboard.js:3
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/AjaxFunctions.php:130
|
||||
msgid "Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:302
|
||||
msgid "%s Single"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:310
|
||||
msgid "%s Archive"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:322
|
||||
msgid "Entire Website"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:328
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:332
|
||||
msgid "Singulars"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:337
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:343
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:347
|
||||
msgid "Single Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:352
|
||||
msgid "All Post Archives"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:357
|
||||
msgid "Post Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:362
|
||||
msgid "Post Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:368
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:372
|
||||
msgid "Single Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:380
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:384
|
||||
msgid "Shop Home"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:389
|
||||
msgid "Single Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:394
|
||||
msgid "Product Archives"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:399
|
||||
msgid "Product Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:404
|
||||
msgid "Product Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:412
|
||||
msgid "Custom Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:419
|
||||
msgid "Specific"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:423
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:428
|
||||
msgid "Page ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:433
|
||||
#: assets/admin/options/ConditionsManager/PostIdPicker.js:78
|
||||
#: assets/build/options.js:1
|
||||
msgid "Custom Post Type ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:438
|
||||
msgid "Taxonomy ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:443
|
||||
msgid "Post with Taxonomy ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:449
|
||||
msgid "Other Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:453
|
||||
msgid "404"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:458
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:463
|
||||
msgid "Blog"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:468
|
||||
msgid "Front Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:472
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:478
|
||||
msgid "User Auth"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:482
|
||||
msgid "User Logged In"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:487
|
||||
msgid "User Logged Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:493
|
||||
msgid "User Roles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:503
|
||||
#: assets/build/options.js:1
|
||||
msgid "Include"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ConditionsManager.php:503
|
||||
#: assets/build/options.js:1
|
||||
msgid "Exclude"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ExtensionsManager.php:258
|
||||
msgid "Custom Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ExtensionsManager.php:259
|
||||
msgid "Upload unlimited number of custom fonts."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ExtensionsManager.php:269
|
||||
msgid "Sidebars"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ExtensionsManager.php:270
|
||||
msgid "Create unlimited number of custom sidebars."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ExtensionsManager.php:280
|
||||
msgid "White Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/ExtensionsManager.php:281
|
||||
msgid "Change theme/companion branding"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Rishi_Companion.php:217
|
||||
msgid "%1$sRishi Companion plugin%2$s requires %3$sRishi Theme%4$s to be installed and activated to work properly. Please %5$sinstall and activate%6$s the theme to use the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Rishi_Companion_Plugin_Manager.php:33
|
||||
msgid "Mega Elements is a powerful and advanced all in one Elementor addons that help you to create a beautiful website with ease."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Rishi_Companion_Plugin_Manager.php:39
|
||||
msgid "Elementor is one of most advanced frontend drag & drop page builder to help you create pixel perfect websites in less time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Rishi_Companion_Plugin_Manager.php:45
|
||||
msgid "WooCommerce is the world’s most popular open source eCommerce plugin that help you to create online store easily."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Rishi_Companion_Plugin_Manager.php:51
|
||||
msgid "Contact Form 7 is one of the most downloaded and popular contact form plugin to quickly add forms on your website."
|
||||
msgstr ""
|
||||
|
||||
#. translators: placeholder here means the actual version.
|
||||
#: assets/admin/components/Changelog.js:37
|
||||
#: assets/build/dashboard.js:2
|
||||
msgid "Version: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: placeholder here means the actual date.
|
||||
#: assets/admin/components/Changelog.js:44
|
||||
#: assets/build/dashboard.js:3
|
||||
msgid "Released on %s"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Changelog.js:143
|
||||
#: assets/build/dashboard.js:3
|
||||
msgid "Companion"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Changelog.js:150
|
||||
#: assets/build/dashboard.js:3
|
||||
msgid "New Feature"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Changelog.js:154
|
||||
#: assets/build/dashboard.js:3
|
||||
msgid "Fixes"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Changelog.js:158
|
||||
#: assets/build/dashboard.js:3
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Changelog.js:178
|
||||
#: assets/build/dashboard.js:3
|
||||
msgid "No changelog present at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Extensions.js:77
|
||||
#: assets/admin/components/ui-components/PluginBlock.js:74
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Extensions.js:78
|
||||
#: assets/admin/components/ui-components/PluginBlock.js:84
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/Extensions.js:85
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/ui-components/PluginBlock.js:99
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/ui-components/PluginBlock.js:110
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/components/ui-components/PluginBlock.js:116
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "COMING SOON"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/header/EditConditions.js:83
|
||||
#: assets/admin/options/DisplayCondition.js:42
|
||||
#: assets/build/options.js:1
|
||||
msgid "Add/Edit Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/header/EditConditions.js:98
|
||||
#: assets/build/options.js:1
|
||||
msgid "Add one or more conditions in order to display your header."
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/header/EditConditions.js:142
|
||||
#: assets/admin/options/DisplayCondition.js:74
|
||||
#: assets/build/options.js:1
|
||||
msgid "Save Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/NavbarHook.js:8
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Extensions"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/NavbarHook.js:12
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Useful Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/NavbarHook.js:16
|
||||
#: assets/build/dashboard.js:1
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/options/ConditionsManager/PostIdPicker.js:69
|
||||
#: assets/build/options.js:1
|
||||
msgid "Type to search by ID or title..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/options/ConditionsManager/PostIdPicker.js:75
|
||||
#: assets/build/options.js:1
|
||||
msgid "Select post"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/options/ConditionsManager/PostIdPicker.js:77
|
||||
#: assets/build/options.js:1
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/options/CustomizerResetOptions.js:27
|
||||
#: assets/build/options.js:1
|
||||
msgid "Reset Settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/options/CustomizerResetOptions.js:29
|
||||
#: assets/build/options.js:1
|
||||
msgid "You are about to reset all settings to their default values, are you sure you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/options/DisplayCondition.js:15
|
||||
#: assets/build/options.js:1
|
||||
msgid "Transparent Header Display Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: assets/admin/options/DisplayCondition.js:16
|
||||
#: assets/build/options.js:1
|
||||
msgid "Add one or more conditions to display the transparent header."
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Global Header"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Edit Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Remove header"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Select variation"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Select rule"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Select taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Select language"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Add Display Condition"
|
||||
msgstr ""
|
||||
|
||||
#: assets/build/options.js:1
|
||||
msgid "Add User Condition"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user