Version Description
( 2022-09-30 ) =
- Improvement: Membership detection
Download this release
Release Info
| Developer | Dency |
| Plugin | |
| Version | 1.18.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.18.1 to 1.18.2
- admin/classes/class-admin.php +12 -16
- forminator.php +2 -2
- languages/forminator.pot +1578 -1555
- library/helpers/helper-core.php +18 -34
- readme.txt +6 -2
admin/classes/class-admin.php
CHANGED
|
@@ -315,7 +315,6 @@ class Forminator_Admin {
|
|
| 315 |
*
|
| 316 |
* @return bool
|
| 317 |
* @since 1.9
|
| 318 |
-
*
|
| 319 |
*/
|
| 320 |
public function has_old_stripe_forms() {
|
| 321 |
$forms = Forminator_Form_Model::model()->get_models_by_field_and_version( 'stripe-1', '1.9-alpha.1' );
|
|
@@ -344,17 +343,14 @@ class Forminator_Admin {
|
|
| 344 |
}
|
| 345 |
|
| 346 |
// Show the notice only to users who can do something about this and who are members.
|
| 347 |
-
if ( ! self::user_can_update_plugins() || !
|
| 348 |
-
'full',
|
| 349 |
-
'upgrade'
|
| 350 |
-
), true ) ) {
|
| 351 |
return;
|
| 352 |
}
|
| 353 |
|
| 354 |
$url = add_query_arg(
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
|
| 358 |
$link = '<a type="button" href="' . esc_url( $url ) . '" target="_self" class="button button-primary">' . esc_html__( 'Upgrade' ) . '</a>';
|
| 359 |
|
| 360 |
$username = forminator_get_current_username();
|
|
@@ -730,7 +726,6 @@ class Forminator_Admin {
|
|
| 730 |
*
|
| 731 |
* @return mixed
|
| 732 |
* @since 1.13
|
| 733 |
-
*
|
| 734 |
*/
|
| 735 |
public function add_plugin_action_links( $links ) {
|
| 736 |
// Settings link.
|
|
@@ -740,14 +735,16 @@ class Forminator_Admin {
|
|
| 740 |
// Documentation link.
|
| 741 |
$action_links['docs'] = '<a href="' . forminator_get_link( 'docs', 'forminator_pluginlist_docs' ) . '" aria-label="' . esc_attr( __( 'Docs', 'forminator' ) ) . '" target="_blank">' . esc_html__( 'Docs', 'forminator' ) . '</a>';
|
| 742 |
|
| 743 |
-
//
|
| 744 |
-
$
|
| 745 |
|
| 746 |
// Upgrade or Renew links.
|
| 747 |
-
if ( ! FORMINATOR_PRO
|
| 748 |
-
|
| 749 |
-
|
| 750 |
-
|
|
|
|
|
|
|
| 751 |
}
|
| 752 |
|
| 753 |
return array_merge( $action_links, $links );
|
|
@@ -762,7 +759,6 @@ class Forminator_Admin {
|
|
| 762 |
*
|
| 763 |
* @return array
|
| 764 |
* @since 1.13
|
| 765 |
-
*
|
| 766 |
*/
|
| 767 |
public function plugin_row_meta( $links, $file, $plugin_data ) {
|
| 768 |
if ( FORMINATOR_PLUGIN_BASENAME === $file ) {
|
| 315 |
*
|
| 316 |
* @return bool
|
| 317 |
* @since 1.9
|
|
|
|
| 318 |
*/
|
| 319 |
public function has_old_stripe_forms() {
|
| 320 |
$forms = Forminator_Form_Model::model()->get_models_by_field_and_version( 'stripe-1', '1.9-alpha.1' );
|
| 343 |
}
|
| 344 |
|
| 345 |
// Show the notice only to users who can do something about this and who are members.
|
| 346 |
+
if ( ! self::user_can_update_plugins() || ! forminator_can_install_pro() ) {
|
|
|
|
|
|
|
|
|
|
| 347 |
return;
|
| 348 |
}
|
| 349 |
|
| 350 |
$url = add_query_arg(
|
| 351 |
+
array( 'page' => 'wpmudev-plugins' ),
|
| 352 |
+
network_admin_url( 'admin.php' )
|
| 353 |
+
) . '#pid=2097296';
|
| 354 |
$link = '<a type="button" href="' . esc_url( $url ) . '" target="_self" class="button button-primary">' . esc_html__( 'Upgrade' ) . '</a>';
|
| 355 |
|
| 356 |
$username = forminator_get_current_username();
|
| 726 |
*
|
| 727 |
* @return mixed
|
| 728 |
* @since 1.13
|
|
|
|
| 729 |
*/
|
| 730 |
public function add_plugin_action_links( $links ) {
|
| 731 |
// Settings link.
|
| 735 |
// Documentation link.
|
| 736 |
$action_links['docs'] = '<a href="' . forminator_get_link( 'docs', 'forminator_pluginlist_docs' ) . '" aria-label="' . esc_attr( __( 'Docs', 'forminator' ) ) . '" target="_blank">' . esc_html__( 'Docs', 'forminator' ) . '</a>';
|
| 737 |
|
| 738 |
+
// Check if the current logged-in member has access Forminator Pro.
|
| 739 |
+
$can_install_pro = forminator_can_install_pro();
|
| 740 |
|
| 741 |
// Upgrade or Renew links.
|
| 742 |
+
if ( ! FORMINATOR_PRO ) {
|
| 743 |
+
if ( $can_install_pro ) {
|
| 744 |
+
$action_links['upgrade'] = '<a href="' . forminator_get_link( 'plugin', 'forminator_pluginlist_upgrade' ) . '" aria-label="' . esc_attr( __( 'Upgrade to Forminator Pro', 'forminator' ) ) . '" style="color: #8D00B1;" target="_blank">' . esc_html__( 'Upgrade', 'forminator' ) . '</a>';
|
| 745 |
+
} else {
|
| 746 |
+
$action_links['renew'] = '<a href="' . forminator_get_link( 'plugin', 'forminator_pluginlist_renew' ) . '" aria-label="' . esc_attr( __( 'Upgrade 35% OFF Sale', 'forminator' ) ) . '" style="color: #8D00B1;" target="_blank">' . esc_html__( 'Upgrade 35% OFF Sale', 'forminator' ) . '</a>';
|
| 747 |
+
}
|
| 748 |
}
|
| 749 |
|
| 750 |
return array_merge( $action_links, $links );
|
| 759 |
*
|
| 760 |
* @return array
|
| 761 |
* @since 1.13
|
|
|
|
| 762 |
*/
|
| 763 |
public function plugin_row_meta( $links, $file, $plugin_data ) {
|
| 764 |
if ( FORMINATOR_PLUGIN_BASENAME === $file ) {
|
forminator.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: Forminator
|
| 4 |
-
* Version: 1.18.
|
| 5 |
* Plugin URI: https://wpmudev.com/project/forminator/
|
| 6 |
* Description: Capture user information (as detailed as you like), engage users with interactive polls that show real-time results and graphs, “no wrong answer” Facebook-style quizzes and knowledge tests.
|
| 7 |
* Author: WPMU DEV
|
|
@@ -34,7 +34,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 34 |
}
|
| 35 |
|
| 36 |
if ( ! defined( 'FORMINATOR_VERSION' ) ) {
|
| 37 |
-
define( 'FORMINATOR_VERSION', '1.18.
|
| 38 |
}
|
| 39 |
|
| 40 |
if ( ! defined( 'FORMINATOR_SUI_VERSION' ) ) {
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: Forminator
|
| 4 |
+
* Version: 1.18.2
|
| 5 |
* Plugin URI: https://wpmudev.com/project/forminator/
|
| 6 |
* Description: Capture user information (as detailed as you like), engage users with interactive polls that show real-time results and graphs, “no wrong answer” Facebook-style quizzes and knowledge tests.
|
| 7 |
* Author: WPMU DEV
|
| 34 |
}
|
| 35 |
|
| 36 |
if ( ! defined( 'FORMINATOR_VERSION' ) ) {
|
| 37 |
+
define( 'FORMINATOR_VERSION', '1.18.2' );
|
| 38 |
}
|
| 39 |
|
| 40 |
if ( ! defined( 'FORMINATOR_SUI_VERSION' ) ) {
|
languages/forminator.pot
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
# This file is distributed under the same license as the Forminator Pro package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Forminator Pro 1.18.
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/forminator\n"
|
| 7 |
-
"POT-Creation-Date: 2022-09-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -13,20 +13,20 @@ msgstr ""
|
|
| 13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 14 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
| 15 |
|
| 16 |
-
#: admin/locale.php:
|
| 17 |
msgid "0"
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
-
#: admin/locale.php:
|
| 21 |
#: admin/views/settings/tab-pagination.php:41
|
| 22 |
msgid "10"
|
| 23 |
msgstr ""
|
| 24 |
|
| 25 |
-
#: admin/locale.php:
|
| 26 |
msgid "1920"
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
-
#: admin/locale.php:
|
| 30 |
msgid "2030"
|
| 31 |
msgstr ""
|
| 32 |
|
|
@@ -101,7 +101,7 @@ msgstr ""
|
|
| 101 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:669
|
| 102 |
#: addons/pro/webhook/class-forminator-addon-webhook-form-hooks.php:366
|
| 103 |
#: addons/pro/webhook/class-forminator-addon-webhook-quiz-hooks.php:576
|
| 104 |
-
#: admin/locale.php:
|
| 105 |
msgid "Yes"
|
| 106 |
msgstr ""
|
| 107 |
|
|
@@ -124,7 +124,7 @@ msgstr ""
|
|
| 124 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:669
|
| 125 |
#: addons/pro/webhook/class-forminator-addon-webhook-form-hooks.php:366
|
| 126 |
#: addons/pro/webhook/class-forminator-addon-webhook-quiz-hooks.php:576
|
| 127 |
-
#: admin/locale.php:
|
| 128 |
msgid "No"
|
| 129 |
msgstr ""
|
| 130 |
|
|
@@ -343,7 +343,7 @@ msgstr ""
|
|
| 343 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:260
|
| 344 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:400
|
| 345 |
#: addons/pro/trello/class-forminator-addon-trello.php:370
|
| 346 |
-
#: admin/locale.php:
|
| 347 |
msgid "Next"
|
| 348 |
msgstr ""
|
| 349 |
|
|
@@ -436,7 +436,7 @@ msgstr ""
|
|
| 436 |
#: addons/pro/activecampaign/class-forminator-addon-activecampaign-quiz-settings.php:380
|
| 437 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-form-settings.php:107
|
| 438 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-quiz-settings.php:129
|
| 439 |
-
#: admin/locale.php:
|
| 440 |
#: library/fields/name.php:69 library/model/class-form-entry-model.php:447
|
| 441 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:45
|
| 442 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:48
|
|
@@ -453,7 +453,7 @@ msgstr ""
|
|
| 453 |
#: addons/pro/activecampaign/class-forminator-addon-activecampaign-quiz-settings.php:381
|
| 454 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-form-settings.php:108
|
| 455 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-quiz-settings.php:130
|
| 456 |
-
#: admin/locale.php:
|
| 457 |
#: library/fields/name.php:73 library/model/class-form-entry-model.php:449
|
| 458 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:52
|
| 459 |
#: library/modules/custom-forms/form-templates/template-leads.php:81
|
|
@@ -563,7 +563,7 @@ msgstr ""
|
|
| 563 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-quiz-settings.php:425
|
| 564 |
#: addons/pro/slack/class-forminator-addon-slack-quiz-settings.php:467
|
| 565 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:489
|
| 566 |
-
#: admin/classes/class-admin-l10n.php:150 admin/locale.php:
|
| 567 |
#: library/helpers/helper-fields.php:2033
|
| 568 |
#: library/modules/quizzes/admin/admin-loader.php:642
|
| 569 |
msgid "Quiz Name"
|
|
@@ -669,7 +669,7 @@ msgstr ""
|
|
| 669 |
#: addons/pro/slack/class-forminator-addon-slack.php:445
|
| 670 |
#: addons/pro/trello/views/settings/success-authorize.php:15
|
| 671 |
#: addons/pro/webhook/class-forminator-addon-webhook.php:175
|
| 672 |
-
#: admin/classes/class-admin-l10n.php:82 admin/locale.php:
|
| 673 |
#: admin/views/addons/addon-details.php:282
|
| 674 |
#: admin/views/addons/addons-activate-popup.php:37
|
| 675 |
#: admin/views/common/popup/export.php:60
|
|
@@ -916,7 +916,7 @@ msgstr ""
|
|
| 916 |
#: addons/pro/trello/views/form-settings/setup-list.php:60
|
| 917 |
#: addons/pro/trello/views/poll-settings/setup-list.php:58
|
| 918 |
#: addons/pro/trello/views/quiz-settings/setup-list.php:58
|
| 919 |
-
#: admin/locale.php:
|
| 920 |
msgid "List"
|
| 921 |
msgstr ""
|
| 922 |
|
|
@@ -2012,7 +2012,7 @@ msgstr ""
|
|
| 2012 |
#: addons/pro/googlesheet/views/form-settings/setup-sheet.php:127
|
| 2013 |
#: addons/pro/googlesheet/views/poll-settings/setup-sheet.php:127
|
| 2014 |
#: addons/pro/googlesheet/views/quiz-settings/setup-sheet.php:126
|
| 2015 |
-
#: admin/locale.php:
|
| 2016 |
msgid "File Name"
|
| 2017 |
msgstr ""
|
| 2018 |
|
|
@@ -2070,7 +2070,7 @@ msgid "Authorized Redirect URI"
|
|
| 2070 |
msgstr ""
|
| 2071 |
|
| 2072 |
#: addons/pro/googlesheet/views/settings/setup-client.php:74
|
| 2073 |
-
#: admin/locale.php:
|
| 2074 |
msgid "Copy shortcode"
|
| 2075 |
msgstr ""
|
| 2076 |
|
|
@@ -2115,7 +2115,7 @@ msgid "Rendering..."
|
|
| 2115 |
msgstr ""
|
| 2116 |
|
| 2117 |
#: addons/pro/gutenberg/library/blocks/class-forminator-gfblock-forms.php:182
|
| 2118 |
-
#: admin/locale.php:
|
| 2119 |
msgid "Form"
|
| 2120 |
msgstr ""
|
| 2121 |
|
|
@@ -2137,7 +2137,7 @@ msgid "Customize poll"
|
|
| 2137 |
msgstr ""
|
| 2138 |
|
| 2139 |
#: addons/pro/gutenberg/library/blocks/class-forminator-gfblock-polls.php:145
|
| 2140 |
-
#: admin/locale.php:
|
| 2141 |
#: library/modules/polls/loader.php:117 library/render/class-widget.php:137
|
| 2142 |
msgid "Poll"
|
| 2143 |
msgstr ""
|
|
@@ -2160,7 +2160,7 @@ msgid "Customize quiz"
|
|
| 2160 |
msgstr ""
|
| 2161 |
|
| 2162 |
#: addons/pro/gutenberg/library/blocks/class-forminator-gfblock-quizzes.php:177
|
| 2163 |
-
#: admin/locale.php:
|
| 2164 |
#: library/render/class-widget.php:138
|
| 2165 |
msgid "Quiz"
|
| 2166 |
msgstr ""
|
|
@@ -2259,7 +2259,7 @@ msgstr ""
|
|
| 2259 |
|
| 2260 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-form-settings.php:442
|
| 2261 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-quiz-settings.php:463
|
| 2262 |
-
#: admin/locale.php:
|
| 2263 |
#: admin/views/addons/addons-list.php:173
|
| 2264 |
#: admin/views/settings/appearance-presets-status-bar.php:80
|
| 2265 |
msgid "Update"
|
|
@@ -2332,7 +2332,7 @@ msgid "Missing required Token"
|
|
| 2332 |
msgstr ""
|
| 2333 |
|
| 2334 |
#: addons/pro/hubspot/lib/class-forminator-addon-hubspot-wp-api.php:260
|
| 2335 |
-
#: admin/locale.php:
|
| 2336 |
msgid "Invalid"
|
| 2337 |
msgstr ""
|
| 2338 |
|
|
@@ -2693,7 +2693,7 @@ msgstr ""
|
|
| 2693 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-form-settings.php:668
|
| 2694 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-form-settings.php:701
|
| 2695 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-form-settings.php:722
|
| 2696 |
-
#: admin/locale.php:
|
| 2697 |
msgid "Optional"
|
| 2698 |
msgstr ""
|
| 2699 |
|
|
@@ -3021,7 +3021,7 @@ msgstr ""
|
|
| 3021 |
|
| 3022 |
#: addons/pro/slack/class-forminator-addon-slack-poll-settings.php:466
|
| 3023 |
#: addons/pro/trello/class-forminator-addon-trello-poll-settings.php:488
|
| 3024 |
-
#: admin/locale.php:
|
| 3025 |
msgid "Poll Name"
|
| 3026 |
msgstr ""
|
| 3027 |
|
|
@@ -3033,7 +3033,7 @@ msgstr ""
|
|
| 3033 |
#: addons/pro/slack/class-forminator-addon-slack-quiz-hooks.php:370
|
| 3034 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:433
|
| 3035 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:450
|
| 3036 |
-
#: admin/locale.php:
|
| 3037 |
msgid "Quiz Result"
|
| 3038 |
msgstr ""
|
| 3039 |
|
|
@@ -3081,7 +3081,7 @@ msgstr ""
|
|
| 3081 |
#: addons/pro/slack/views/poll-settings/select-target.php:52
|
| 3082 |
#: addons/pro/slack/views/poll-settings/select-type.php:51
|
| 3083 |
#: addons/pro/slack/views/quiz-settings/select-target.php:52
|
| 3084 |
-
#: addons/pro/slack/views/quiz-settings/select-type.php:51 admin/locale.php:
|
| 3085 |
#: admin/views/common/entries/content.php:34
|
| 3086 |
#: admin/views/common/reports/tab-dashboard.php:24
|
| 3087 |
msgid "Type"
|
|
@@ -3345,19 +3345,19 @@ msgstr ""
|
|
| 3345 |
#: addons/pro/trello/class-forminator-addon-trello-form-settings.php:460
|
| 3346 |
#: addons/pro/trello/class-forminator-addon-trello-poll-settings.php:460
|
| 3347 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:460
|
| 3348 |
-
#: admin/locale.php:
|
| 3349 |
msgid "Top"
|
| 3350 |
msgstr ""
|
| 3351 |
|
| 3352 |
#: addons/pro/trello/class-forminator-addon-trello-form-settings.php:461
|
| 3353 |
#: addons/pro/trello/class-forminator-addon-trello-poll-settings.php:461
|
| 3354 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:461
|
| 3355 |
-
#: admin/locale.php:
|
| 3356 |
msgid "Bottom"
|
| 3357 |
msgstr ""
|
| 3358 |
|
| 3359 |
#: addons/pro/trello/class-forminator-addon-trello-poll-hooks.php:380
|
| 3360 |
-
#: admin/locale.php:
|
| 3361 |
msgid "Poll Answer"
|
| 3362 |
msgstr ""
|
| 3363 |
|
|
@@ -3525,7 +3525,7 @@ msgstr ""
|
|
| 3525 |
#: addons/pro/trello/views/form-settings/setup-card.php:185
|
| 3526 |
#: addons/pro/trello/views/poll-settings/setup-card.php:168
|
| 3527 |
#: addons/pro/trello/views/quiz-settings/setup-card.php:179
|
| 3528 |
-
#: admin/locale.php:
|
| 3529 |
msgid "Labels"
|
| 3530 |
msgstr ""
|
| 3531 |
|
|
@@ -3819,13 +3819,13 @@ msgstr ""
|
|
| 3819 |
msgid "Select this module"
|
| 3820 |
msgstr ""
|
| 3821 |
|
| 3822 |
-
#: admin/abstracts/class-admin-module-edit-page.php:237 admin/locale.php:
|
| 3823 |
#: admin/views/common/dashboard/widget.php:87
|
| 3824 |
#: admin/views/settings/dashboard/content.php:50
|
| 3825 |
msgid "Published"
|
| 3826 |
msgstr ""
|
| 3827 |
|
| 3828 |
-
#: admin/abstracts/class-admin-module-edit-page.php:243 admin/locale.php:
|
| 3829 |
#: admin/views/common/dashboard/widget.php:90
|
| 3830 |
#: admin/views/common/entries/filter.php:157
|
| 3831 |
#: admin/views/custom-form/entries/content.php:168
|
|
@@ -3841,7 +3841,7 @@ msgid "Last Submission"
|
|
| 3841 |
msgstr ""
|
| 3842 |
|
| 3843 |
#: admin/abstracts/class-admin-module-edit-page.php:255
|
| 3844 |
-
#: admin/abstracts/class-admin-module-edit-page.php:261 admin/locale.php:
|
| 3845 |
#: admin/views/common/dashboard/widget.php:122
|
| 3846 |
msgid "Edit"
|
| 3847 |
msgstr ""
|
|
@@ -3851,34 +3851,34 @@ msgid "Open list settings"
|
|
| 3851 |
msgstr ""
|
| 3852 |
|
| 3853 |
#: admin/abstracts/class-admin-module-edit-page.php:282
|
| 3854 |
-
#: admin/classes/class-admin-l10n.php:291 admin/locale.php:
|
| 3855 |
#: admin/views/common/dashboard/widget.php:134
|
| 3856 |
#: library/modules/polls/admin/admin-loader.php:178
|
| 3857 |
#: library/modules/quizzes/admin/admin-loader.php:529
|
| 3858 |
msgid "Preview"
|
| 3859 |
msgstr ""
|
| 3860 |
|
| 3861 |
-
#: admin/abstracts/class-admin-module-edit-page.php:286 admin/locale.php:
|
| 3862 |
#: admin/views/common/dashboard/widget.php:138
|
| 3863 |
msgid "Copy Shortcode"
|
| 3864 |
msgstr ""
|
| 3865 |
|
| 3866 |
-
#: admin/abstracts/class-admin-module-edit-page.php:309 admin/locale.php:
|
| 3867 |
#: library/modules/custom-forms/admin/admin-page-view.php:31
|
| 3868 |
msgid "Unpublish"
|
| 3869 |
msgstr ""
|
| 3870 |
|
| 3871 |
-
#: admin/abstracts/class-admin-module-edit-page.php:311 admin/locale.php:
|
| 3872 |
#: library/modules/custom-forms/admin/admin-page-view.php:30
|
| 3873 |
msgid "Publish"
|
| 3874 |
msgstr ""
|
| 3875 |
|
| 3876 |
-
#: admin/abstracts/class-admin-module-edit-page.php:319 admin/locale.php:
|
| 3877 |
#: admin/views/common/dashboard/widget.php:141 library/class-export.php:1406
|
| 3878 |
msgid "View Submissions"
|
| 3879 |
msgstr ""
|
| 3880 |
|
| 3881 |
-
#: admin/abstracts/class-admin-module-edit-page.php:331 admin/locale.php:
|
| 3882 |
#: admin/views/common/dashboard/widget.php:152
|
| 3883 |
msgid ""
|
| 3884 |
"Duplicate isn't supported at the moment for the quizzes with lead capturing "
|
|
@@ -3886,7 +3886,7 @@ msgid ""
|
|
| 3886 |
msgstr ""
|
| 3887 |
|
| 3888 |
#: admin/abstracts/class-admin-module-edit-page.php:333
|
| 3889 |
-
#: admin/abstracts/class-admin-module-edit-page.php:338 admin/locale.php:
|
| 3890 |
#: admin/views/common/dashboard/widget.php:154
|
| 3891 |
#: admin/views/common/dashboard/widget.php:159
|
| 3892 |
#: library/modules/custom-forms/admin/admin-page-view.php:32
|
|
@@ -3895,13 +3895,13 @@ msgid "Duplicate"
|
|
| 3895 |
msgstr ""
|
| 3896 |
|
| 3897 |
#: admin/abstracts/class-admin-module-edit-page.php:334
|
| 3898 |
-
#: admin/abstracts/class-admin-module-edit-page.php:376 admin/locale.php:
|
| 3899 |
#: admin/views/common/dashboard/widget.php:155
|
| 3900 |
#: admin/views/common/dashboard/widget.php:171
|
| 3901 |
msgid "Coming soon"
|
| 3902 |
msgstr ""
|
| 3903 |
|
| 3904 |
-
#: admin/abstracts/class-admin-module-edit-page.php:347 admin/locale.php:
|
| 3905 |
#: library/modules/custom-forms/admin/admin-page-view.php:33
|
| 3906 |
#: library/modules/polls/admin/admin-page-view.php:58
|
| 3907 |
#: library/modules/quizzes/admin/admin-page-view.php:112
|
|
@@ -3928,7 +3928,7 @@ msgstr ""
|
|
| 3928 |
msgid "Apply Preset"
|
| 3929 |
msgstr ""
|
| 3930 |
|
| 3931 |
-
#: admin/abstracts/class-admin-module-edit-page.php:373 admin/locale.php:
|
| 3932 |
#: admin/views/common/dashboard/widget.php:168
|
| 3933 |
msgid ""
|
| 3934 |
"Export isn't supported at the moment for the quizzes with lead capturing "
|
|
@@ -3936,7 +3936,7 @@ msgid ""
|
|
| 3936 |
msgstr ""
|
| 3937 |
|
| 3938 |
#: admin/abstracts/class-admin-module-edit-page.php:375
|
| 3939 |
-
#: admin/abstracts/class-admin-module-edit-page.php:385 admin/locale.php:
|
| 3940 |
#: admin/views/common/dashboard/widget.php:170
|
| 3941 |
#: admin/views/common/dashboard/widget.php:180
|
| 3942 |
#: admin/views/common/entries/content.php:50
|
|
@@ -3953,7 +3953,7 @@ msgstr ""
|
|
| 3953 |
|
| 3954 |
#: admin/abstracts/class-admin-module-edit-page.php:400
|
| 3955 |
#: admin/classes/class-admin-l10n.php:86 admin/classes/class-admin-l10n.php:179
|
| 3956 |
-
#: admin/classes/class-admin-l10n.php:224 admin/locale.php:
|
| 3957 |
#: admin/views/addons/addons-list.php:63 admin/views/addons/addons-list.php:255
|
| 3958 |
#: admin/views/common/dashboard/widget.php:193
|
| 3959 |
#: admin/views/quiz/entries/content-leads.php:538
|
|
@@ -3979,7 +3979,7 @@ msgstr ""
|
|
| 3979 |
|
| 3980 |
#: admin/abstracts/class-admin-module-edit-page.php:433
|
| 3981 |
#: admin/abstracts/class-admin-module-edit-page.php:449
|
| 3982 |
-
#: admin/classes/class-admin.php:244 admin/locale.php:
|
| 3983 |
#: admin/pages/reports-page.php:205
|
| 3984 |
#: admin/views/common/entries/content-none.php:2
|
| 3985 |
#: admin/views/common/entries/header.php:2
|
|
@@ -4056,17 +4056,17 @@ msgid "Plugins"
|
|
| 4056 |
msgstr ""
|
| 4057 |
|
| 4058 |
#: admin/abstracts/class-admin-page.php:242
|
| 4059 |
-
#: admin/abstracts/class-admin-page.php:256 admin/classes/class-admin.php:
|
| 4060 |
msgid "Roadmap"
|
| 4061 |
msgstr ""
|
| 4062 |
|
| 4063 |
#: admin/abstracts/class-admin-page.php:243
|
| 4064 |
-
#: admin/abstracts/class-admin-page.php:257 admin/classes/class-admin.php:
|
| 4065 |
msgid "Support"
|
| 4066 |
msgstr ""
|
| 4067 |
|
| 4068 |
#: admin/abstracts/class-admin-page.php:244
|
| 4069 |
-
#: admin/abstracts/class-admin-page.php:258 admin/classes/class-admin.php:
|
| 4070 |
msgid "Docs"
|
| 4071 |
msgstr ""
|
| 4072 |
|
|
@@ -4093,13 +4093,13 @@ msgid "Membership"
|
|
| 4093 |
msgstr ""
|
| 4094 |
|
| 4095 |
#: admin/abstracts/class-admin-page.php:270
|
| 4096 |
-
#: admin/classes/class-admin-l10n.php:338 admin/locale.php:
|
| 4097 |
#: library/modules/quizzes/admin/admin-loader.php:625
|
| 4098 |
msgid "Facebook"
|
| 4099 |
msgstr ""
|
| 4100 |
|
| 4101 |
#: admin/abstracts/class-admin-page.php:274
|
| 4102 |
-
#: admin/classes/class-admin-l10n.php:339 admin/locale.php:
|
| 4103 |
#: library/modules/quizzes/admin/admin-loader.php:626
|
| 4104 |
msgid "Twitter"
|
| 4105 |
msgstr ""
|
|
@@ -4177,7 +4177,7 @@ msgstr ""
|
|
| 4177 |
msgid "Delete Entries"
|
| 4178 |
msgstr ""
|
| 4179 |
|
| 4180 |
-
#: admin/abstracts/class-admin-view-page.php:317 admin/locale.php:
|
| 4181 |
#: admin/views/common/entries/filter.php:280
|
| 4182 |
#: admin/views/common/list/main_content.php:42
|
| 4183 |
msgid "Apply"
|
|
@@ -4264,7 +4264,7 @@ msgstr ""
|
|
| 4264 |
msgid "Form model doesn't exist"
|
| 4265 |
msgstr ""
|
| 4266 |
|
| 4267 |
-
#: admin/classes/class-admin-ajax.php:431 admin/locale.php:
|
| 4268 |
#: library/abstracts/abstract-class-front-action.php:984
|
| 4269 |
msgid "Something went wrong."
|
| 4270 |
msgstr ""
|
|
@@ -4452,7 +4452,7 @@ msgstr ""
|
|
| 4452 |
msgid "Unexpected action, we could not handle it."
|
| 4453 |
msgstr ""
|
| 4454 |
|
| 4455 |
-
#: admin/classes/class-admin-l10n.php:42 admin/locale.php:
|
| 4456 |
msgid "Name your form"
|
| 4457 |
msgstr ""
|
| 4458 |
|
|
@@ -4465,7 +4465,7 @@ msgid "Fields"
|
|
| 4465 |
msgstr ""
|
| 4466 |
|
| 4467 |
#: admin/classes/class-admin-l10n.php:46 admin/classes/class-admin-l10n.php:246
|
| 4468 |
-
#: admin/locale.php:
|
| 4469 |
#: library/class-export.php:591 library/fields/date.php:70
|
| 4470 |
msgid "Date"
|
| 4471 |
msgstr ""
|
|
@@ -4506,37 +4506,37 @@ msgstr ""
|
|
| 4506 |
msgid "Day of the week"
|
| 4507 |
msgstr ""
|
| 4508 |
|
| 4509 |
-
#: admin/classes/class-admin-l10n.php:56 admin/locale.php:
|
| 4510 |
#: library/helpers/helper-core.php:875 library/helpers/helper-fields.php:446
|
| 4511 |
msgid "Monday"
|
| 4512 |
msgstr ""
|
| 4513 |
|
| 4514 |
-
#: admin/classes/class-admin-l10n.php:57 admin/locale.php:
|
| 4515 |
#: library/helpers/helper-core.php:876 library/helpers/helper-fields.php:447
|
| 4516 |
msgid "Tuesday"
|
| 4517 |
msgstr ""
|
| 4518 |
|
| 4519 |
-
#: admin/classes/class-admin-l10n.php:58 admin/locale.php:
|
| 4520 |
#: library/helpers/helper-core.php:877 library/helpers/helper-fields.php:448
|
| 4521 |
msgid "Wednesday"
|
| 4522 |
msgstr ""
|
| 4523 |
|
| 4524 |
-
#: admin/classes/class-admin-l10n.php:59 admin/locale.php:
|
| 4525 |
#: library/helpers/helper-core.php:878 library/helpers/helper-fields.php:449
|
| 4526 |
msgid "Thursday"
|
| 4527 |
msgstr ""
|
| 4528 |
|
| 4529 |
-
#: admin/classes/class-admin-l10n.php:60 admin/locale.php:
|
| 4530 |
#: library/helpers/helper-core.php:879 library/helpers/helper-fields.php:450
|
| 4531 |
msgid "Friday"
|
| 4532 |
msgstr ""
|
| 4533 |
|
| 4534 |
-
#: admin/classes/class-admin-l10n.php:61 admin/locale.php:
|
| 4535 |
#: library/helpers/helper-core.php:880 library/helpers/helper-fields.php:451
|
| 4536 |
msgid "Saturday"
|
| 4537 |
msgstr ""
|
| 4538 |
|
| 4539 |
-
#: admin/classes/class-admin-l10n.php:62 admin/locale.php:
|
| 4540 |
#: library/helpers/helper-core.php:881 library/helpers/helper-fields.php:445
|
| 4541 |
msgid "Sunday"
|
| 4542 |
msgstr ""
|
|
@@ -4626,7 +4626,7 @@ msgstr ""
|
|
| 4626 |
msgid "Form name cannot be empty! Please pick a name for your form."
|
| 4627 |
msgstr ""
|
| 4628 |
|
| 4629 |
-
#: admin/classes/class-admin-l10n.php:83 admin/locale.php:
|
| 4630 |
msgid "Close this dialog window"
|
| 4631 |
msgstr ""
|
| 4632 |
|
|
@@ -4692,7 +4692,7 @@ msgstr ""
|
|
| 4692 |
msgid "Please confirm that you want to delete this field"
|
| 4693 |
msgstr ""
|
| 4694 |
|
| 4695 |
-
#: admin/classes/class-admin-l10n.php:99 admin/locale.php:
|
| 4696 |
#: admin/views/common/popup/import.php:50
|
| 4697 |
#: admin/views/custom-form/popup/import-cf7.php:503
|
| 4698 |
#: admin/views/custom-form/popup/import-gravityforms.php:43
|
|
@@ -4726,7 +4726,7 @@ msgstr ""
|
|
| 4726 |
msgid "Import Form"
|
| 4727 |
msgstr ""
|
| 4728 |
|
| 4729 |
-
#: admin/classes/class-admin-l10n.php:107 admin/locale.php:
|
| 4730 |
#: admin/views/common/list/empty_content.php:54
|
| 4731 |
#: admin/views/common/list/header.php:15 admin/views/common/popup/import.php:57
|
| 4732 |
#: admin/views/custom-form/popup/import-gravityforms.php:50
|
|
@@ -4782,12 +4782,12 @@ msgstr ""
|
|
| 4782 |
msgid "Enable scheduled exports to get the submissions list in your email."
|
| 4783 |
msgstr ""
|
| 4784 |
|
| 4785 |
-
#: admin/classes/class-admin-l10n.php:119 admin/locale.php:
|
| 4786 |
msgid "Disable"
|
| 4787 |
msgstr ""
|
| 4788 |
|
| 4789 |
#: admin/classes/class-admin-l10n.php:120
|
| 4790 |
-
#: admin/classes/class-admin-l10n.php:286 admin/locale.php:
|
| 4791 |
#: admin/views/settings/tab-editor.php:24
|
| 4792 |
#: library/modules/quizzes/admin/admin-loader.php:630
|
| 4793 |
msgid "Enable"
|
|
@@ -4811,7 +4811,7 @@ msgid ""
|
|
| 4811 |
"etc.) on your quiz."
|
| 4812 |
msgstr ""
|
| 4813 |
|
| 4814 |
-
#: admin/classes/class-admin-l10n.php:125 admin/classes/class-admin.php:
|
| 4815 |
#: admin/views/dashboard/footer-free.php:64
|
| 4816 |
msgid "Learn more"
|
| 4817 |
msgstr ""
|
|
@@ -4905,11 +4905,11 @@ msgstr ""
|
|
| 4905 |
msgid "Collect Leads"
|
| 4906 |
msgstr ""
|
| 4907 |
|
| 4908 |
-
#: admin/classes/class-admin-l10n.php:153 admin/locale.php:
|
| 4909 |
msgid "No Pagination"
|
| 4910 |
msgstr ""
|
| 4911 |
|
| 4912 |
-
#: admin/classes/class-admin-l10n.php:154 admin/locale.php:
|
| 4913 |
msgid "Paginated Quiz"
|
| 4914 |
msgstr ""
|
| 4915 |
|
|
@@ -4988,11 +4988,11 @@ msgid "Label"
|
|
| 4988 |
msgstr ""
|
| 4989 |
|
| 4990 |
#: admin/classes/class-admin-l10n.php:177
|
| 4991 |
-
#: admin/classes/class-admin-l10n.php:324 admin/locale.php:
|
| 4992 |
msgid "Value"
|
| 4993 |
msgstr ""
|
| 4994 |
|
| 4995 |
-
#: admin/classes/class-admin-l10n.php:178 admin/locale.php:
|
| 4996 |
msgid "Add Option"
|
| 4997 |
msgstr ""
|
| 4998 |
|
|
@@ -5004,7 +5004,7 @@ msgstr ""
|
|
| 5004 |
msgid "This field will be"
|
| 5005 |
msgstr ""
|
| 5006 |
|
| 5007 |
-
#: admin/classes/class-admin-l10n.php:182 admin/locale.php:
|
| 5008 |
msgid "if"
|
| 5009 |
msgstr ""
|
| 5010 |
|
|
@@ -5012,7 +5012,7 @@ msgstr ""
|
|
| 5012 |
msgid "Shown"
|
| 5013 |
msgstr ""
|
| 5014 |
|
| 5015 |
-
#: admin/classes/class-admin-l10n.php:184 admin/locale.php:
|
| 5016 |
#: library/fields/custom.php:125
|
| 5017 |
msgid "Hidden"
|
| 5018 |
msgstr ""
|
|
@@ -5053,7 +5053,7 @@ msgstr ""
|
|
| 5053 |
msgid "Button background"
|
| 5054 |
msgstr ""
|
| 5055 |
|
| 5056 |
-
#: admin/classes/class-admin-l10n.php:196 admin/locale.php:
|
| 5057 |
msgid "Button text"
|
| 5058 |
msgstr ""
|
| 5059 |
|
|
@@ -5100,7 +5100,7 @@ msgstr ""
|
|
| 5100 |
msgid "You don't have any questions yet."
|
| 5101 |
msgstr ""
|
| 5102 |
|
| 5103 |
-
#: admin/classes/class-admin-l10n.php:209 admin/locale.php:
|
| 5104 |
msgid "Add Question"
|
| 5105 |
msgstr ""
|
| 5106 |
|
|
@@ -5116,13 +5116,13 @@ msgstr ""
|
|
| 5116 |
msgid "Question title cannot be empty! Please, add some content to your question."
|
| 5117 |
msgstr ""
|
| 5118 |
|
| 5119 |
-
#: admin/classes/class-admin-l10n.php:213 admin/locale.php:
|
| 5120 |
#: admin/views/quiz/entries/content-leads-none.php:109
|
| 5121 |
#: library/modules/quizzes/admin/admin-loader.php:583
|
| 5122 |
msgid "Answers"
|
| 5123 |
msgstr ""
|
| 5124 |
|
| 5125 |
-
#: admin/classes/class-admin-l10n.php:214 admin/locale.php:
|
| 5126 |
#: library/modules/polls/admin/admin-loader.php:169
|
| 5127 |
msgid "Add Answer"
|
| 5128 |
msgstr ""
|
|
@@ -5139,7 +5139,7 @@ msgstr ""
|
|
| 5139 |
msgid "Delete Result"
|
| 5140 |
msgstr ""
|
| 5141 |
|
| 5142 |
-
#: admin/classes/class-admin-l10n.php:218 admin/locale.php:
|
| 5143 |
#: library/field-autofill-providers/class-wp-post.php:30
|
| 5144 |
#: library/helpers/helper-fields.php:1094
|
| 5145 |
#: library/model/class-form-entry-model.php:1599
|
|
@@ -5178,7 +5178,7 @@ msgstr ""
|
|
| 5178 |
msgid "Restricted dates:"
|
| 5179 |
msgstr ""
|
| 5180 |
|
| 5181 |
-
#: admin/classes/class-admin-l10n.php:226 admin/locale.php:
|
| 5182 |
msgid "Add"
|
| 5183 |
msgstr ""
|
| 5184 |
|
|
@@ -5186,15 +5186,15 @@ msgstr ""
|
|
| 5186 |
msgid "Pick custom date(s) to restrict:"
|
| 5187 |
msgstr ""
|
| 5188 |
|
| 5189 |
-
#: admin/classes/class-admin-l10n.php:228 admin/locale.php:
|
| 5190 |
msgid "Form Data"
|
| 5191 |
msgstr ""
|
| 5192 |
|
| 5193 |
-
#: admin/classes/class-admin-l10n.php:229 admin/locale.php:
|
| 5194 |
msgid "Required Fields"
|
| 5195 |
msgstr ""
|
| 5196 |
|
| 5197 |
-
#: admin/classes/class-admin-l10n.php:230 admin/locale.php:
|
| 5198 |
msgid "Optional Fields"
|
| 5199 |
msgstr ""
|
| 5200 |
|
|
@@ -5202,15 +5202,15 @@ msgstr ""
|
|
| 5202 |
msgid "All Submitted Fields"
|
| 5203 |
msgstr ""
|
| 5204 |
|
| 5205 |
-
#: admin/classes/class-admin-l10n.php:232 admin/locale.php:
|
| 5206 |
msgid "Form Name"
|
| 5207 |
msgstr ""
|
| 5208 |
|
| 5209 |
-
#: admin/classes/class-admin-l10n.php:233 admin/locale.php:
|
| 5210 |
msgid "Misc Data"
|
| 5211 |
msgstr ""
|
| 5212 |
|
| 5213 |
-
#: admin/classes/class-admin-l10n.php:234 admin/locale.php:
|
| 5214 |
msgid "Add form data"
|
| 5215 |
msgstr ""
|
| 5216 |
|
|
@@ -5284,7 +5284,7 @@ msgstr ""
|
|
| 5284 |
msgid "User Email"
|
| 5285 |
msgstr ""
|
| 5286 |
|
| 5287 |
-
#: admin/classes/class-admin-l10n.php:255 admin/locale.php:
|
| 5288 |
msgid "Shortcode has been copied successfully."
|
| 5289 |
msgstr ""
|
| 5290 |
|
|
@@ -5388,7 +5388,7 @@ msgstr ""
|
|
| 5388 |
msgid "Font family"
|
| 5389 |
msgstr ""
|
| 5390 |
|
| 5391 |
-
#: admin/classes/class-admin-l10n.php:282 admin/locale.php:
|
| 5392 |
msgid "Custom font family"
|
| 5393 |
msgstr ""
|
| 5394 |
|
|
@@ -5400,11 +5400,11 @@ msgstr ""
|
|
| 5400 |
msgid "Here you can type the font family you want to use, as you would in CSS."
|
| 5401 |
msgstr ""
|
| 5402 |
|
| 5403 |
-
#: admin/classes/class-admin-l10n.php:285 admin/locale.php:
|
| 5404 |
msgid "Icon size"
|
| 5405 |
msgstr ""
|
| 5406 |
|
| 5407 |
-
#: admin/classes/class-admin-l10n.php:287 admin/locale.php:
|
| 5408 |
#: library/fields/custom.php:105
|
| 5409 |
msgid "Dropdown"
|
| 5410 |
msgstr ""
|
|
@@ -5443,7 +5443,7 @@ msgstr ""
|
|
| 5443 |
msgid "Icon color (incorrect)"
|
| 5444 |
msgstr ""
|
| 5445 |
|
| 5446 |
-
#: admin/classes/class-admin-l10n.php:297 admin/locale.php:
|
| 5447 |
msgid "Box shadow"
|
| 5448 |
msgstr ""
|
| 5449 |
|
|
@@ -5465,23 +5465,23 @@ msgstr ""
|
|
| 5465 |
msgid "Text align"
|
| 5466 |
msgstr ""
|
| 5467 |
|
| 5468 |
-
#: admin/classes/class-admin-l10n.php:302 admin/locale.php:
|
| 5469 |
msgid "Regular"
|
| 5470 |
msgstr ""
|
| 5471 |
|
| 5472 |
-
#: admin/classes/class-admin-l10n.php:303 admin/locale.php:
|
| 5473 |
msgid "Medium"
|
| 5474 |
msgstr ""
|
| 5475 |
|
| 5476 |
-
#: admin/classes/class-admin-l10n.php:304 admin/locale.php:
|
| 5477 |
msgid "Large"
|
| 5478 |
msgstr ""
|
| 5479 |
|
| 5480 |
-
#: admin/classes/class-admin-l10n.php:305 admin/locale.php:
|
| 5481 |
msgid "Light"
|
| 5482 |
msgstr ""
|
| 5483 |
|
| 5484 |
-
#: admin/classes/class-admin-l10n.php:306 admin/locale.php:
|
| 5485 |
msgid "Normal"
|
| 5486 |
msgstr ""
|
| 5487 |
|
|
@@ -5513,35 +5513,35 @@ msgstr ""
|
|
| 5513 |
msgid "Border radius"
|
| 5514 |
msgstr ""
|
| 5515 |
|
| 5516 |
-
#: admin/classes/class-admin-l10n.php:314 admin/locale.php:
|
| 5517 |
msgid "20 April 2018"
|
| 5518 |
msgstr ""
|
| 5519 |
|
| 5520 |
-
#: admin/classes/class-admin-l10n.php:315 admin/locale.php:
|
| 5521 |
msgid "Left"
|
| 5522 |
msgstr ""
|
| 5523 |
|
| 5524 |
-
#: admin/classes/class-admin-l10n.php:316 admin/locale.php:
|
| 5525 |
msgid "Center"
|
| 5526 |
msgstr ""
|
| 5527 |
|
| 5528 |
-
#: admin/classes/class-admin-l10n.php:317 admin/locale.php:
|
| 5529 |
msgid "Right"
|
| 5530 |
msgstr ""
|
| 5531 |
|
| 5532 |
-
#: admin/classes/class-admin-l10n.php:319 admin/locale.php:
|
| 5533 |
msgid "Solid"
|
| 5534 |
msgstr ""
|
| 5535 |
|
| 5536 |
-
#: admin/classes/class-admin-l10n.php:320 admin/locale.php:
|
| 5537 |
msgid "Dashed"
|
| 5538 |
msgstr ""
|
| 5539 |
|
| 5540 |
-
#: admin/classes/class-admin-l10n.php:321 admin/locale.php:
|
| 5541 |
msgid "Dotted"
|
| 5542 |
msgstr ""
|
| 5543 |
|
| 5544 |
-
#: admin/classes/class-admin-l10n.php:322 admin/locale.php:
|
| 5545 |
msgid "Delete option"
|
| 5546 |
msgstr ""
|
| 5547 |
|
|
@@ -5596,7 +5596,7 @@ msgstr ""
|
|
| 5596 |
msgid "Google+"
|
| 5597 |
msgstr ""
|
| 5598 |
|
| 5599 |
-
#: admin/classes/class-admin-l10n.php:341 admin/locale.php:
|
| 5600 |
#: library/modules/quizzes/admin/admin-loader.php:628
|
| 5601 |
msgid "LinkedIn"
|
| 5602 |
msgstr ""
|
|
@@ -5704,11 +5704,11 @@ msgstr ""
|
|
| 5704 |
msgid "December"
|
| 5705 |
msgstr ""
|
| 5706 |
|
| 5707 |
-
#: admin/classes/class-admin-l10n.php:381 admin/locale.php:
|
| 5708 |
msgid "No Result Found"
|
| 5709 |
msgstr ""
|
| 5710 |
|
| 5711 |
-
#: admin/classes/class-admin-l10n.php:382 admin/locale.php:
|
| 5712 |
msgid "Searching"
|
| 5713 |
msgstr ""
|
| 5714 |
|
|
@@ -5775,7 +5775,7 @@ msgid "Dashboard"
|
|
| 5775 |
msgstr ""
|
| 5776 |
|
| 5777 |
#: admin/classes/class-admin.php:190 admin/classes/class-admin.php:191
|
| 5778 |
-
#: admin/locale.php:
|
| 5779 |
msgid "Integrations"
|
| 5780 |
msgstr ""
|
| 5781 |
|
|
@@ -5783,8 +5783,8 @@ msgstr ""
|
|
| 5783 |
msgid "Global Settings"
|
| 5784 |
msgstr ""
|
| 5785 |
|
| 5786 |
-
#: admin/classes/class-admin.php:222 admin/classes/class-admin.php:
|
| 5787 |
-
#: admin/locale.php:
|
| 5788 |
#: library/modules/quizzes/admin/admin-loader.php:527
|
| 5789 |
msgid "Settings"
|
| 5790 |
msgstr ""
|
|
@@ -5793,7 +5793,7 @@ msgstr ""
|
|
| 5793 |
msgid "Forminator Submissions"
|
| 5794 |
msgstr ""
|
| 5795 |
|
| 5796 |
-
#: admin/classes/class-admin.php:264 admin/classes/class-admin.php:
|
| 5797 |
#: admin/views/upgrade/upgrade-content.php:17
|
| 5798 |
msgid "Upgrade to Forminator Pro"
|
| 5799 |
msgstr ""
|
|
@@ -5810,15 +5810,15 @@ msgstr ""
|
|
| 5810 |
msgid "Reports"
|
| 5811 |
msgstr ""
|
| 5812 |
|
| 5813 |
-
#: admin/classes/class-admin.php:
|
| 5814 |
msgid "Upgrade"
|
| 5815 |
msgstr ""
|
| 5816 |
|
| 5817 |
-
#: admin/classes/class-admin.php:
|
| 5818 |
msgid "Hey"
|
| 5819 |
msgstr ""
|
| 5820 |
|
| 5821 |
-
#: admin/classes/class-admin.php:
|
| 5822 |
#. translators: user's name
|
| 5823 |
msgid ""
|
| 5824 |
"%s, it appears you have an active WPMU DEV membership but haven't upgraded "
|
|
@@ -5826,33 +5826,33 @@ msgid ""
|
|
| 5826 |
"for it!"
|
| 5827 |
msgstr ""
|
| 5828 |
|
| 5829 |
-
#: admin/classes/class-admin.php:
|
| 5830 |
msgid "Claim your free gift"
|
| 5831 |
msgstr ""
|
| 5832 |
|
| 5833 |
-
#: admin/classes/class-admin.php:
|
| 5834 |
msgid "Find out more"
|
| 5835 |
msgstr ""
|
| 5836 |
|
| 5837 |
-
#: admin/classes/class-admin.php:
|
| 5838 |
msgid "Remind me later"
|
| 5839 |
msgstr ""
|
| 5840 |
|
| 5841 |
-
#: admin/classes/class-admin.php:
|
| 5842 |
msgid "Managing multiple WP sites for clients? Here’s a free gift to make it easier"
|
| 5843 |
msgstr ""
|
| 5844 |
|
| 5845 |
-
#: admin/classes/class-admin.php:
|
| 5846 |
msgid ""
|
| 5847 |
"In addition to Forminator, WPMU DEV has everything you need for fast and "
|
| 5848 |
"convenient site management."
|
| 5849 |
msgstr ""
|
| 5850 |
|
| 5851 |
-
#: admin/classes/class-admin.php:
|
| 5852 |
msgid "Trusted by over 50K web developers. Completely free to try."
|
| 5853 |
msgstr ""
|
| 5854 |
|
| 5855 |
-
#: admin/classes/class-admin.php:
|
| 5856 |
#. translators: Forminator vesrion
|
| 5857 |
msgid ""
|
| 5858 |
"We've noticed you have updated to Forminator Pro version %s. Please ensure "
|
|
@@ -5860,11 +5860,11 @@ msgid ""
|
|
| 5860 |
"1.0.4 or higher to ensure compatibility with the new submissions processes."
|
| 5861 |
msgstr ""
|
| 5862 |
|
| 5863 |
-
#: admin/classes/class-admin.php:
|
| 5864 |
msgid "Forminator - Import your Contact Form 7 forms automatically"
|
| 5865 |
msgstr ""
|
| 5866 |
|
| 5867 |
-
#: admin/classes/class-admin.php:
|
| 5868 |
msgid ""
|
| 5869 |
"We noticed that Contact Form 7 is active on your website. You can use our "
|
| 5870 |
"built-in Contact Form 7 importer to import your existing forms and the "
|
|
@@ -5872,12 +5872,12 @@ msgid ""
|
|
| 5872 |
"supports the most widely used add-ons as well."
|
| 5873 |
msgstr ""
|
| 5874 |
|
| 5875 |
-
#: admin/classes/class-admin.php:
|
| 5876 |
msgid "Import Contact Form 7 Forms"
|
| 5877 |
msgstr ""
|
| 5878 |
|
| 5879 |
-
#: admin/classes/class-admin.php:
|
| 5880 |
-
#: admin/locale.php:
|
| 5881 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:248
|
| 5882 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:289
|
| 5883 |
#: library/lib/free-notices/classes/notices/class-rating.php:82
|
|
@@ -5885,7 +5885,7 @@ msgstr ""
|
|
| 5885 |
msgid "Dismiss"
|
| 5886 |
msgstr ""
|
| 5887 |
|
| 5888 |
-
#: admin/classes/class-admin.php:
|
| 5889 |
msgid ""
|
| 5890 |
"To make Forminator's Stripe field <a href=\"%s\" target=\"_blank\">SCA "
|
| 5891 |
"Compliant</a>, we have replaced the Stripe Checkout modal with Stripe "
|
|
@@ -5894,7 +5894,7 @@ msgid ""
|
|
| 5894 |
"updated, but we recommend checking them to ensure everything works fine."
|
| 5895 |
msgstr ""
|
| 5896 |
|
| 5897 |
-
#: admin/classes/class-admin.php:
|
| 5898 |
msgid ""
|
| 5899 |
"Awesome! You've published more than %d modules with Forminator. Hope you "
|
| 5900 |
"are enjoying it so far. We have spent countless hours developing this free "
|
|
@@ -5902,21 +5902,21 @@ msgid ""
|
|
| 5902 |
"rating on wp.org to help us spread the word and boost our motivation."
|
| 5903 |
msgstr ""
|
| 5904 |
|
| 5905 |
-
#: admin/classes/class-admin.php:
|
| 5906 |
-
#: admin/classes/class-admin.php:
|
| 5907 |
msgid "Rate Forminator"
|
| 5908 |
msgstr ""
|
| 5909 |
|
| 5910 |
-
#: admin/classes/class-admin.php:
|
| 5911 |
#: admin/views/common/entries/prompt.php:45
|
| 5912 |
msgid "Maybe later"
|
| 5913 |
msgstr ""
|
| 5914 |
|
| 5915 |
-
#: admin/classes/class-admin.php:
|
| 5916 |
msgid "No Thanks"
|
| 5917 |
msgstr ""
|
| 5918 |
|
| 5919 |
-
#: admin/classes/class-admin.php:
|
| 5920 |
msgid ""
|
| 5921 |
"Excellent! You've been using Forminator for a while now. Hope you are "
|
| 5922 |
"enjoying it so far. We have spent countless hours developing this free "
|
|
@@ -5924,11 +5924,11 @@ msgid ""
|
|
| 5924 |
"rating on wp.org to help us spread the word and boost our motivation."
|
| 5925 |
msgstr ""
|
| 5926 |
|
| 5927 |
-
#: admin/classes/class-admin.php:
|
| 5928 |
msgid "Go to Forminator Settings"
|
| 5929 |
msgstr ""
|
| 5930 |
|
| 5931 |
-
#: admin/classes/class-admin.php:
|
| 5932 |
msgid "Upgrade 35% OFF Sale"
|
| 5933 |
msgstr ""
|
| 5934 |
|
|
@@ -5936,34 +5936,34 @@ msgstr ""
|
|
| 5936 |
msgid "WPMU DEV"
|
| 5937 |
msgstr ""
|
| 5938 |
|
| 5939 |
-
#: admin/classes/class-admin.php:
|
| 5940 |
msgid "By %s"
|
| 5941 |
msgstr ""
|
| 5942 |
|
| 5943 |
-
#: admin/classes/class-admin.php:
|
| 5944 |
#. translators: %s: Plugin name.
|
| 5945 |
msgid "More information about %s"
|
| 5946 |
msgstr ""
|
| 5947 |
|
| 5948 |
-
#: admin/classes/class-admin.php:
|
| 5949 |
msgid "View details"
|
| 5950 |
msgstr ""
|
| 5951 |
|
| 5952 |
-
#: admin/classes/class-admin.php:
|
| 5953 |
msgid "Premium Support"
|
| 5954 |
msgstr ""
|
| 5955 |
|
| 5956 |
-
#: admin/classes/class-admin.php:
|
| 5957 |
msgid "New update available for one or more Add-ons."
|
| 5958 |
msgstr ""
|
| 5959 |
|
| 5960 |
-
#: admin/classes/class-admin.php:
|
| 5961 |
msgid ""
|
| 5962 |
"A new update is available for one or more of your Forminator Add-ons. Click "
|
| 5963 |
"on the button below to check and update the required Add-on."
|
| 5964 |
msgstr ""
|
| 5965 |
|
| 5966 |
-
#: admin/classes/class-admin.php:
|
| 5967 |
msgid "View and Update"
|
| 5968 |
msgstr ""
|
| 5969 |
|
|
@@ -6403,352 +6403,364 @@ msgid ""
|
|
| 6403 |
msgstr ""
|
| 6404 |
|
| 6405 |
#: admin/locale.php:123
|
| 6406 |
-
msgid "
|
| 6407 |
msgstr ""
|
| 6408 |
|
| 6409 |
#: admin/locale.php:124
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6410 |
msgid ""
|
| 6411 |
"By default this form will inherit the fonts your theme uses. You can "
|
| 6412 |
"overwrite these fonts with custom ones from Google Fonts."
|
| 6413 |
msgstr ""
|
| 6414 |
|
| 6415 |
-
#: admin/locale.php:
|
| 6416 |
msgid "Use Theme Fonts"
|
| 6417 |
msgstr ""
|
| 6418 |
|
| 6419 |
-
#: admin/locale.php:
|
| 6420 |
msgid "Response Message"
|
| 6421 |
msgstr ""
|
| 6422 |
|
| 6423 |
-
#: admin/locale.php:
|
| 6424 |
msgid "Fields Label"
|
| 6425 |
msgstr ""
|
| 6426 |
|
| 6427 |
-
#: admin/locale.php:
|
| 6428 |
msgid "Fields Description"
|
| 6429 |
msgstr ""
|
| 6430 |
|
| 6431 |
-
#: admin/locale.php:
|
| 6432 |
msgid "Fields Error Message"
|
| 6433 |
msgstr ""
|
| 6434 |
|
| 6435 |
-
#: admin/locale.php:
|
| 6436 |
msgid "Section Title"
|
| 6437 |
msgstr ""
|
| 6438 |
|
| 6439 |
-
#: admin/locale.php:
|
| 6440 |
msgid "Section Subtitle"
|
| 6441 |
msgstr ""
|
| 6442 |
|
| 6443 |
-
#: admin/locale.php:
|
| 6444 |
msgid "Input Prefix"
|
| 6445 |
msgstr ""
|
| 6446 |
|
| 6447 |
-
#: admin/locale.php:
|
| 6448 |
msgid "Input Suffix"
|
| 6449 |
msgstr ""
|
| 6450 |
|
| 6451 |
-
#: admin/locale.php:
|
| 6452 |
msgid "Calendar"
|
| 6453 |
msgstr ""
|
| 6454 |
|
| 6455 |
-
#: admin/locale.php:
|
| 6456 |
msgid "Single File Upload"
|
| 6457 |
msgstr ""
|
| 6458 |
|
| 6459 |
-
#: admin/locale.php:
|
| 6460 |
msgid "Upload Button"
|
| 6461 |
msgstr ""
|
| 6462 |
|
| 6463 |
-
#: admin/locale.php:
|
| 6464 |
msgid "Multiple Files Upload"
|
| 6465 |
msgstr ""
|
| 6466 |
|
| 6467 |
-
#: admin/locale.php:
|
| 6468 |
msgid "Upload Panel"
|
| 6469 |
msgstr ""
|
| 6470 |
|
| 6471 |
-
#: admin/locale.php:
|
| 6472 |
msgid "File Size"
|
| 6473 |
msgstr ""
|
| 6474 |
|
| 6475 |
-
#: admin/locale.php:
|
| 6476 |
msgid "E-Signature Placeholder"
|
| 6477 |
msgstr ""
|
| 6478 |
|
| 6479 |
-
#: admin/locale.php:
|
| 6480 |
msgid "Pagination Buttons"
|
| 6481 |
msgstr ""
|
| 6482 |
|
| 6483 |
-
#: admin/locale.php:
|
| 6484 |
msgid "Customize the form container's padding and border."
|
| 6485 |
msgstr ""
|
| 6486 |
|
| 6487 |
-
#: admin/locale.php:
|
| 6488 |
msgid "Padding"
|
| 6489 |
msgstr ""
|
| 6490 |
|
| 6491 |
-
#: admin/locale.php:
|
| 6492 |
msgid ""
|
| 6493 |
"By default the form will fill the available space where you insert it. You "
|
| 6494 |
"can add some padding here to better suit your theme."
|
| 6495 |
msgstr ""
|
| 6496 |
|
| 6497 |
-
#: admin/locale.php:
|
| 6498 |
msgid "Add an optional border around the form."
|
| 6499 |
msgstr ""
|
| 6500 |
|
| 6501 |
-
#: admin/locale.php:
|
| 6502 |
msgid "Spacing"
|
| 6503 |
msgstr ""
|
| 6504 |
|
| 6505 |
-
#: admin/locale.php:
|
| 6506 |
msgid "Choose how much spacing you want between each form field."
|
| 6507 |
msgstr ""
|
| 6508 |
|
| 6509 |
-
#: admin/locale.php:
|
| 6510 |
msgid "Comfortable"
|
| 6511 |
msgstr ""
|
| 6512 |
|
| 6513 |
-
#: admin/locale.php:
|
| 6514 |
msgid "Compact"
|
| 6515 |
msgstr ""
|
| 6516 |
|
| 6517 |
-
#: admin/locale.php:
|
| 6518 |
-
msgid "Radius"
|
| 6519 |
-
msgstr ""
|
| 6520 |
-
|
| 6521 |
-
#: admin/locale.php:153
|
| 6522 |
-
msgid "in px"
|
| 6523 |
-
msgstr ""
|
| 6524 |
-
|
| 6525 |
-
#: admin/locale.php:154
|
| 6526 |
-
msgid "Thickness"
|
| 6527 |
-
msgstr ""
|
| 6528 |
-
|
| 6529 |
-
#: admin/locale.php:155
|
| 6530 |
msgid "Style"
|
| 6531 |
msgstr ""
|
| 6532 |
|
| 6533 |
-
#: admin/locale.php:
|
| 6534 |
msgid "Note: Set the color of the border in the Colors settings area above."
|
| 6535 |
msgstr ""
|
| 6536 |
|
| 6537 |
-
#: admin/locale.php:
|
| 6538 |
msgid "Set your custom padding in pixels."
|
| 6539 |
msgstr ""
|
| 6540 |
|
| 6541 |
-
#: admin/locale.php:
|
| 6542 |
msgid "in pixels"
|
| 6543 |
msgstr ""
|
| 6544 |
|
| 6545 |
-
#: admin/locale.php:
|
| 6546 |
msgid "Pagination"
|
| 6547 |
msgstr ""
|
| 6548 |
|
| 6549 |
-
#: admin/locale.php:
|
| 6550 |
msgid "Customize the appearance of pagination of your form."
|
| 6551 |
msgstr ""
|
| 6552 |
|
| 6553 |
-
#: admin/locale.php:
|
| 6554 |
msgid "Note: "
|
| 6555 |
msgstr ""
|
| 6556 |
|
| 6557 |
-
#: admin/locale.php:
|
| 6558 |
msgid ""
|
| 6559 |
"If you have added multiple pagination fields in your form, these settings "
|
| 6560 |
"will affect all of them."
|
| 6561 |
msgstr ""
|
| 6562 |
|
| 6563 |
-
#: admin/locale.php:
|
| 6564 |
msgid "Progress Indicator"
|
| 6565 |
msgstr ""
|
| 6566 |
|
| 6567 |
-
#: admin/locale.php:
|
| 6568 |
msgid ""
|
| 6569 |
"By default we don’t show how many pages the user has left before completing "
|
| 6570 |
"the form. You can turn on a stepped progress bar to indicate to the user "
|
| 6571 |
"how far they are through your form."
|
| 6572 |
msgstr ""
|
| 6573 |
|
| 6574 |
-
#: admin/locale.php:
|
| 6575 |
msgid "Hide"
|
| 6576 |
msgstr ""
|
| 6577 |
|
| 6578 |
-
#: admin/locale.php:
|
| 6579 |
msgid "Show"
|
| 6580 |
msgstr ""
|
| 6581 |
|
| 6582 |
-
#: admin/locale.php:
|
| 6583 |
msgid "Progress Bar"
|
| 6584 |
msgstr ""
|
| 6585 |
|
| 6586 |
-
#: admin/locale.php:
|
| 6587 |
msgid "Steps"
|
| 6588 |
msgstr ""
|
| 6589 |
|
| 6590 |
-
#: admin/locale.php:
|
| 6591 |
msgid ""
|
| 6592 |
"Some of the settings you'd find in a regular form are unavailable in this "
|
| 6593 |
"form template because they are either unnecessary or controlled by the "
|
| 6594 |
"parent quiz automatically."
|
| 6595 |
msgstr ""
|
| 6596 |
|
| 6597 |
-
#: admin/locale.php:
|
| 6598 |
msgid "Email Notifications"
|
| 6599 |
msgstr ""
|
| 6600 |
|
| 6601 |
-
#: admin/locale.php:
|
| 6602 |
msgid "Form does not have fields that can be autofilled."
|
| 6603 |
msgstr ""
|
| 6604 |
|
| 6605 |
-
#: admin/locale.php:
|
| 6606 |
msgid "Autofill"
|
| 6607 |
msgstr ""
|
| 6608 |
|
| 6609 |
-
#: admin/locale.php:
|
| 6610 |
msgid ""
|
| 6611 |
"If the user filling out the form is logged in, we can auto-fill fields with "
|
| 6612 |
"any available data."
|
| 6613 |
msgstr ""
|
| 6614 |
|
| 6615 |
-
#: admin/locale.php:
|
| 6616 |
msgid "Enable Autofill"
|
| 6617 |
msgstr ""
|
| 6618 |
|
| 6619 |
-
#: admin/locale.php:
|
| 6620 |
msgid "Autofill source"
|
| 6621 |
msgstr ""
|
| 6622 |
|
| 6623 |
-
#: admin/locale.php:
|
| 6624 |
msgid "Disable Autofill"
|
| 6625 |
msgstr ""
|
| 6626 |
|
| 6627 |
-
#: admin/locale.php:
|
| 6628 |
msgid "Editable"
|
| 6629 |
msgstr ""
|
| 6630 |
|
| 6631 |
-
#: admin/locale.php:
|
| 6632 |
msgid "more condition(s)"
|
| 6633 |
msgstr ""
|
| 6634 |
|
| 6635 |
-
#: admin/locale.php:
|
| 6636 |
msgid "Process behavior if"
|
| 6637 |
msgstr ""
|
| 6638 |
|
| 6639 |
-
#: admin/locale.php:
|
| 6640 |
msgid "Open condition settings"
|
| 6641 |
msgstr ""
|
| 6642 |
|
| 6643 |
-
#: admin/locale.php:
|
| 6644 |
msgid "Edit Behavior"
|
| 6645 |
msgstr ""
|
| 6646 |
|
| 6647 |
-
#: admin/locale.php:
|
| 6648 |
msgid "Add Behavior"
|
| 6649 |
msgstr ""
|
| 6650 |
|
| 6651 |
-
#: admin/locale.php:
|
| 6652 |
msgid "null"
|
| 6653 |
msgstr ""
|
| 6654 |
|
| 6655 |
-
#: admin/locale.php:
|
| 6656 |
#: library/fields/consent.php:206
|
| 6657 |
msgid "checked"
|
| 6658 |
msgstr ""
|
| 6659 |
|
| 6660 |
-
#: admin/locale.php:
|
| 6661 |
msgid "Field"
|
| 6662 |
msgstr ""
|
| 6663 |
|
| 6664 |
-
#: admin/locale.php:
|
| 6665 |
msgid "Condition (required)"
|
| 6666 |
msgstr ""
|
| 6667 |
|
| 6668 |
-
#: admin/locale.php:
|
| 6669 |
msgid "Select rule"
|
| 6670 |
msgstr ""
|
| 6671 |
|
| 6672 |
-
#: admin/locale.php:
|
| 6673 |
msgid "Is null"
|
| 6674 |
msgstr ""
|
| 6675 |
|
| 6676 |
-
#: admin/locale.php:
|
| 6677 |
msgid "Is not null"
|
| 6678 |
msgstr ""
|
| 6679 |
|
| 6680 |
-
#: admin/locale.php:
|
| 6681 |
msgid "Is"
|
| 6682 |
msgstr ""
|
| 6683 |
|
| 6684 |
-
#: admin/locale.php:
|
| 6685 |
msgid "Is not"
|
| 6686 |
msgstr ""
|
| 6687 |
|
| 6688 |
-
#: admin/locale.php:
|
| 6689 |
msgid "Is greater than"
|
| 6690 |
msgstr ""
|
| 6691 |
|
| 6692 |
-
#: admin/locale.php:
|
| 6693 |
msgid "Is less than"
|
| 6694 |
msgstr ""
|
| 6695 |
|
| 6696 |
-
#: admin/locale.php:
|
| 6697 |
msgid "Contains"
|
| 6698 |
msgstr ""
|
| 6699 |
|
| 6700 |
-
#: admin/locale.php:
|
| 6701 |
msgid "Starts"
|
| 6702 |
msgstr ""
|
| 6703 |
|
| 6704 |
-
#: admin/locale.php:
|
| 6705 |
msgid "Ends"
|
| 6706 |
msgstr ""
|
| 6707 |
|
| 6708 |
-
#: admin/locale.php:
|
| 6709 |
msgid "Day is"
|
| 6710 |
msgstr ""
|
| 6711 |
|
| 6712 |
-
#: admin/locale.php:
|
| 6713 |
msgid "Day is not"
|
| 6714 |
msgstr ""
|
| 6715 |
|
| 6716 |
-
#: admin/locale.php:
|
| 6717 |
msgid "Month is"
|
| 6718 |
msgstr ""
|
| 6719 |
|
| 6720 |
-
#: admin/locale.php:
|
| 6721 |
msgid "Month is not"
|
| 6722 |
msgstr ""
|
| 6723 |
|
| 6724 |
-
#: admin/locale.php:
|
| 6725 |
msgid "Select option"
|
| 6726 |
msgstr ""
|
| 6727 |
|
| 6728 |
-
#: admin/locale.php:
|
| 6729 |
#: admin/views/settings/dashboard/content.php:35 library/class-export.php:1022
|
| 6730 |
#: library/modules/custom-forms/admin/admin-page-entries.php:462
|
| 6731 |
#: library/modules/custom-forms/admin/admin-page-entries.php:485
|
| 6732 |
msgid "Status"
|
| 6733 |
msgstr ""
|
| 6734 |
|
| 6735 |
-
#: admin/locale.php:
|
| 6736 |
msgid "Select month"
|
| 6737 |
msgstr ""
|
| 6738 |
|
| 6739 |
-
#: admin/locale.php:
|
| 6740 |
msgid "Select day"
|
| 6741 |
msgstr ""
|
| 6742 |
|
| 6743 |
-
#: admin/locale.php:
|
| 6744 |
msgid "Done"
|
| 6745 |
msgstr ""
|
| 6746 |
|
| 6747 |
-
#: admin/locale.php:
|
| 6748 |
msgid "Process behavior if "
|
| 6749 |
msgstr ""
|
| 6750 |
|
| 6751 |
-
#: admin/locale.php:
|
| 6752 |
#: admin/views/common/entries/filter.php:155
|
| 6753 |
#: admin/views/common/entries/filter.php:170
|
| 6754 |
#: admin/views/common/entries/filter.php:198
|
|
@@ -6756,103 +6768,103 @@ msgstr ""
|
|
| 6756 |
msgid "All"
|
| 6757 |
msgstr ""
|
| 6758 |
|
| 6759 |
-
#: admin/locale.php:
|
| 6760 |
msgid "Any"
|
| 6761 |
msgstr ""
|
| 6762 |
|
| 6763 |
-
#: admin/locale.php:
|
| 6764 |
msgid "of the conditions below match."
|
| 6765 |
msgstr ""
|
| 6766 |
|
| 6767 |
-
#: admin/locale.php:
|
| 6768 |
msgid "Conditions"
|
| 6769 |
msgstr ""
|
| 6770 |
|
| 6771 |
-
#: admin/locale.php:
|
| 6772 |
msgid "Add Conditions"
|
| 6773 |
msgstr ""
|
| 6774 |
|
| 6775 |
-
#: admin/locale.php:
|
| 6776 |
msgid "Add conditions for when this behavior will be processed."
|
| 6777 |
msgstr ""
|
| 6778 |
|
| 6779 |
-
#: admin/locale.php:
|
| 6780 |
msgid "Add Condition"
|
| 6781 |
msgstr ""
|
| 6782 |
|
| 6783 |
-
#: admin/locale.php:
|
| 6784 |
msgid "Lifespan"
|
| 6785 |
msgstr ""
|
| 6786 |
|
| 6787 |
-
#: admin/locale.php:
|
| 6788 |
msgid ""
|
| 6789 |
"By default this form will always be available for submissions. However you "
|
| 6790 |
"can lock down if need be."
|
| 6791 |
msgstr ""
|
| 6792 |
|
| 6793 |
-
#: admin/locale.php:
|
| 6794 |
msgid "Expiry"
|
| 6795 |
msgstr ""
|
| 6796 |
|
| 6797 |
-
#: admin/locale.php:
|
| 6798 |
msgid "Expiration Message"
|
| 6799 |
msgstr ""
|
| 6800 |
|
| 6801 |
-
#: admin/locale.php:
|
| 6802 |
msgid "Whoops! This form has expired."
|
| 6803 |
msgstr ""
|
| 6804 |
|
| 6805 |
-
#: admin/locale.php:
|
| 6806 |
msgid ""
|
| 6807 |
"Add some custom message for users to see when your form stops appearing or "
|
| 6808 |
"leave empty to show nothing (just an empty space)."
|
| 6809 |
msgstr ""
|
| 6810 |
|
| 6811 |
-
#: admin/locale.php:
|
| 6812 |
#: admin/views/settings/content.php:38 admin/views/settings/content.php:57
|
| 6813 |
#: admin/views/settings/tab-payments.php:10
|
| 6814 |
msgid "Payments"
|
| 6815 |
msgstr ""
|
| 6816 |
|
| 6817 |
-
#: admin/locale.php:
|
| 6818 |
msgid "Choose how you want the form to behave when you are collecting payments."
|
| 6819 |
msgstr ""
|
| 6820 |
|
| 6821 |
-
#: admin/locale.php:
|
| 6822 |
msgid "Require SSL certificate to submit this form"
|
| 6823 |
msgstr ""
|
| 6824 |
|
| 6825 |
-
#: admin/locale.php:
|
| 6826 |
msgid ""
|
| 6827 |
"Enabling this will allow the form submission on an HTTPS page only. It is "
|
| 6828 |
"highly recommended to embed the form with payments action on an HTTPS page "
|
| 6829 |
"to avoid any man in the middle attack."
|
| 6830 |
msgstr ""
|
| 6831 |
|
| 6832 |
-
#: admin/locale.php:
|
| 6833 |
msgid "Rendering"
|
| 6834 |
msgstr ""
|
| 6835 |
|
| 6836 |
-
#: admin/locale.php:
|
| 6837 |
msgid "Choose how you want your form to be rendered for users."
|
| 6838 |
msgstr ""
|
| 6839 |
|
| 6840 |
-
#: admin/locale.php:
|
| 6841 |
msgid "Load form using AJAX"
|
| 6842 |
msgstr ""
|
| 6843 |
|
| 6844 |
-
#: admin/locale.php:
|
| 6845 |
msgid ""
|
| 6846 |
"Enabling this feature will load the form via AJAX after the page has loaded "
|
| 6847 |
"up, effectively speeding up your page load time. This method can also (in "
|
| 6848 |
"most cases) avoid page caching issues with your form."
|
| 6849 |
msgstr ""
|
| 6850 |
|
| 6851 |
-
#: admin/locale.php:
|
| 6852 |
msgid "Prevent page caching on form pages"
|
| 6853 |
msgstr ""
|
| 6854 |
|
| 6855 |
-
#: admin/locale.php:
|
| 6856 |
msgid ""
|
| 6857 |
"Page caching plugins serve a static HTML version of the page which can "
|
| 6858 |
"cause issues to your dynamic forms. By enabling this, we'll use "
|
|
@@ -6860,15 +6872,15 @@ msgid ""
|
|
| 6860 |
"form on it from being cached."
|
| 6861 |
msgstr ""
|
| 6862 |
|
| 6863 |
-
#: admin/locale.php:
|
| 6864 |
msgid "Save and Continue"
|
| 6865 |
msgstr ""
|
| 6866 |
|
| 6867 |
-
#: admin/locale.php:
|
| 6868 |
msgid "Your {form_name} form on {site_title} has been saved as draft"
|
| 6869 |
msgstr ""
|
| 6870 |
|
| 6871 |
-
#: admin/locale.php:
|
| 6872 |
msgid ""
|
| 6873 |
"<p>Hi there!</p><p>You've successfully saved <b>{form_name}</b> form on <a "
|
| 6874 |
"href='{site_url}' target='_blank' rel='noopener noreferrer' "
|
|
@@ -6880,7 +6892,7 @@ msgid ""
|
|
| 6880 |
"link will be able to view your partially completed form data.</p>"
|
| 6881 |
msgstr ""
|
| 6882 |
|
| 6883 |
-
#: admin/locale.php:
|
| 6884 |
msgid ""
|
| 6885 |
"<p>Your form has been saved as draft and a resume link has been generated "
|
| 6886 |
"so you can return to the form anytime within {retention_period} days from "
|
|
@@ -6890,162 +6902,162 @@ msgid ""
|
|
| 6890 |
"fill them out before submitting the form.</p>"
|
| 6891 |
msgstr ""
|
| 6892 |
|
| 6893 |
-
#: admin/locale.php:
|
| 6894 |
msgid ""
|
| 6895 |
"Enable this option if you want to allow users save their progress and "
|
| 6896 |
"return to complete the form at a later time."
|
| 6897 |
msgstr ""
|
| 6898 |
|
| 6899 |
-
#: admin/locale.php:
|
| 6900 |
msgid "Enable save and continue"
|
| 6901 |
msgstr ""
|
| 6902 |
|
| 6903 |
-
#: admin/locale.php:
|
| 6904 |
msgid "Configuration"
|
| 6905 |
msgstr ""
|
| 6906 |
|
| 6907 |
-
#: admin/locale.php:
|
| 6908 |
msgid "Draft retention period"
|
| 6909 |
msgstr ""
|
| 6910 |
|
| 6911 |
-
#: admin/locale.php:
|
| 6912 |
msgid ""
|
| 6913 |
"Enter the number of days a form's draft will be stored on your server "
|
| 6914 |
"before they are automatically deleted."
|
| 6915 |
msgstr ""
|
| 6916 |
|
| 6917 |
-
#: admin/locale.php:
|
| 6918 |
msgid "Save form link text"
|
| 6919 |
msgstr ""
|
| 6920 |
|
| 6921 |
-
#: admin/locale.php:
|
| 6922 |
msgid "Save as Draft"
|
| 6923 |
msgstr ""
|
| 6924 |
|
| 6925 |
-
#: admin/locale.php:
|
| 6926 |
msgid "Edit text for the save draft link."
|
| 6927 |
msgstr ""
|
| 6928 |
|
| 6929 |
-
#: admin/locale.php:
|
| 6930 |
msgid "Resume message"
|
| 6931 |
msgstr ""
|
| 6932 |
|
| 6933 |
-
#: admin/locale.php:
|
| 6934 |
msgid "This message will be shown when a form is successfully saved as draft."
|
| 6935 |
msgstr ""
|
| 6936 |
|
| 6937 |
-
#: admin/locale.php:
|
| 6938 |
msgid ""
|
| 6939 |
"These fields will not be saved in the submission draft: Paypal, Stripe, "
|
| 6940 |
"Signature, Password, Captcha, and Upload."
|
| 6941 |
msgstr ""
|
| 6942 |
|
| 6943 |
-
#: admin/locale.php:
|
| 6944 |
msgid "Allow send draft link to email"
|
| 6945 |
msgstr ""
|
| 6946 |
|
| 6947 |
-
#: admin/locale.php:
|
| 6948 |
msgid "Enable to allow users send the draft form's link to their email."
|
| 6949 |
msgstr ""
|
| 6950 |
|
| 6951 |
-
#: admin/locale.php:
|
| 6952 |
msgid ""
|
| 6953 |
"Configure the send link email form below. You can edit the email contents "
|
| 6954 |
"in the {{link}}Email Notifications{{/link}} tab."
|
| 6955 |
msgstr ""
|
| 6956 |
|
| 6957 |
-
#: admin/locale.php:
|
| 6958 |
msgid "Email input label"
|
| 6959 |
msgstr ""
|
| 6960 |
|
| 6961 |
-
#: admin/locale.php:
|
| 6962 |
#: library/modules/custom-forms/front/front-action.php:1050
|
| 6963 |
msgid "Send draft link to"
|
| 6964 |
msgstr ""
|
| 6965 |
|
| 6966 |
-
#: admin/locale.php:
|
| 6967 |
msgid "Placeholder (Optional)"
|
| 6968 |
msgstr ""
|
| 6969 |
|
| 6970 |
-
#: admin/locale.php:
|
| 6971 |
#: library/modules/custom-forms/front/front-action.php:1051
|
| 6972 |
msgid "E.g., johndoe@gmail.com"
|
| 6973 |
msgstr ""
|
| 6974 |
|
| 6975 |
-
#: admin/locale.php:
|
| 6976 |
msgid "Send link button label"
|
| 6977 |
msgstr ""
|
| 6978 |
|
| 6979 |
-
#: admin/locale.php:
|
| 6980 |
#: library/modules/custom-forms/front/front-action.php:1052
|
| 6981 |
msgid "Send draft link"
|
| 6982 |
msgstr ""
|
| 6983 |
|
| 6984 |
-
#: admin/locale.php:
|
| 6985 |
msgid "Permission"
|
| 6986 |
msgstr ""
|
| 6987 |
|
| 6988 |
-
#: admin/locale.php:
|
| 6989 |
msgid "Select which users can save their forms as draft."
|
| 6990 |
msgstr ""
|
| 6991 |
|
| 6992 |
-
#: admin/locale.php:
|
| 6993 |
msgid "Public"
|
| 6994 |
msgstr ""
|
| 6995 |
|
| 6996 |
-
#: admin/locale.php:
|
| 6997 |
msgid "Every user can save their forms as draft."
|
| 6998 |
msgstr ""
|
| 6999 |
|
| 7000 |
-
#: admin/locale.php:
|
| 7001 |
msgid "Registered Users"
|
| 7002 |
msgstr ""
|
| 7003 |
|
| 7004 |
-
#: admin/locale.php:
|
| 7005 |
msgid "Only registered users can save their forms as draft."
|
| 7006 |
msgstr ""
|
| 7007 |
|
| 7008 |
-
#: admin/locale.php:
|
| 7009 |
msgid "Submission Behavior"
|
| 7010 |
msgstr ""
|
| 7011 |
|
| 7012 |
-
#: admin/locale.php:
|
| 7013 |
msgid "Configure what should happen when a user submits this form."
|
| 7014 |
msgstr ""
|
| 7015 |
|
| 7016 |
-
#: admin/locale.php:
|
| 7017 |
msgid "After submission"
|
| 7018 |
msgstr ""
|
| 7019 |
|
| 7020 |
-
#: admin/locale.php:
|
| 7021 |
msgid ""
|
| 7022 |
"Choose what happens after successful submission of this form. Multiple "
|
| 7023 |
"submission behaviors can be added and conditionally processed based on "
|
| 7024 |
"submitted form data."
|
| 7025 |
msgstr ""
|
| 7026 |
|
| 7027 |
-
#: admin/locale.php:
|
| 7028 |
msgid ""
|
| 7029 |
"You’ll need to configure conditional logic for each submission behavior to "
|
| 7030 |
"ensure Forminator knows when each behavior should be processed. If no "
|
| 7031 |
"conditions have been set, the first submission behavior will be processed."
|
| 7032 |
msgstr ""
|
| 7033 |
|
| 7034 |
-
#: admin/locale.php:
|
| 7035 |
msgid "Method"
|
| 7036 |
msgstr ""
|
| 7037 |
|
| 7038 |
-
#: admin/locale.php:
|
| 7039 |
msgid ""
|
| 7040 |
"Choose whether you want to use AJAX to send this form without reloading the "
|
| 7041 |
"page, or use the more traditional method of reloading the page."
|
| 7042 |
msgstr ""
|
| 7043 |
|
| 7044 |
-
#: admin/locale.php:
|
| 7045 |
msgid "Ajax"
|
| 7046 |
msgstr ""
|
| 7047 |
|
| 7048 |
-
#: admin/locale.php:
|
| 7049 |
msgid ""
|
| 7050 |
"Note that you can only use the Ajax submission method while using the "
|
| 7051 |
"Stripe field in your form. The Ajax method will hide your form after the "
|
|
@@ -7053,15 +7065,15 @@ msgid ""
|
|
| 7053 |
"The form will be available again when the page is reloaded."
|
| 7054 |
msgstr ""
|
| 7055 |
|
| 7056 |
-
#: admin/locale.php:
|
| 7057 |
msgid "Page Reload"
|
| 7058 |
msgstr ""
|
| 7059 |
|
| 7060 |
-
#: admin/locale.php:
|
| 7061 |
msgid "Validation"
|
| 7062 |
msgstr ""
|
| 7063 |
|
| 7064 |
-
#: admin/locale.php:
|
| 7065 |
msgid ""
|
| 7066 |
"For fields that you've chosen to validate, choose how you want the "
|
| 7067 |
"validation to behave. On submission will run validation checks when the "
|
|
@@ -7070,186 +7082,186 @@ msgid ""
|
|
| 7070 |
"validation using PHP and returns any error messages after a page reload."
|
| 7071 |
msgstr ""
|
| 7072 |
|
| 7073 |
-
#: admin/locale.php:
|
| 7074 |
msgid "On Submit"
|
| 7075 |
msgstr ""
|
| 7076 |
|
| 7077 |
-
#: admin/locale.php:
|
| 7078 |
msgid "Server Side"
|
| 7079 |
msgstr ""
|
| 7080 |
|
| 7081 |
-
#: admin/locale.php:
|
| 7082 |
msgid "Enable inline validation (as user types)"
|
| 7083 |
msgstr ""
|
| 7084 |
|
| 7085 |
-
#: admin/locale.php:
|
| 7086 |
msgid ""
|
| 7087 |
"Choose whether you want to show a loader on your form until it is "
|
| 7088 |
"submitted. We highly recommend using this on long forms or forms with "
|
| 7089 |
"payment field since they may take a few seconds to submit."
|
| 7090 |
msgstr ""
|
| 7091 |
|
| 7092 |
-
#: admin/locale.php:
|
| 7093 |
msgid "Show Loader"
|
| 7094 |
msgstr ""
|
| 7095 |
|
| 7096 |
-
#: admin/locale.php:
|
| 7097 |
msgid "E.g. Submitting..."
|
| 7098 |
msgstr ""
|
| 7099 |
|
| 7100 |
-
#: admin/locale.php:
|
| 7101 |
msgid "Choose the text to show on the right of loading icon"
|
| 7102 |
msgstr ""
|
| 7103 |
|
| 7104 |
-
#: admin/locale.php:
|
| 7105 |
msgid "Field options"
|
| 7106 |
msgstr ""
|
| 7107 |
|
| 7108 |
-
#: admin/locale.php:
|
| 7109 |
msgid "Edit Field"
|
| 7110 |
msgstr ""
|
| 7111 |
|
| 7112 |
-
#: admin/locale.php:
|
| 7113 |
msgid "Insert Fields"
|
| 7114 |
msgstr ""
|
| 7115 |
|
| 7116 |
-
#: admin/locale.php:
|
| 7117 |
msgid " Insert Fields"
|
| 7118 |
msgstr ""
|
| 7119 |
|
| 7120 |
-
#: admin/locale.php:
|
| 7121 |
msgid ""
|
| 7122 |
"A form without fields isn’t going to be very useful… Add your first field "
|
| 7123 |
"above!"
|
| 7124 |
msgstr ""
|
| 7125 |
|
| 7126 |
-
#: admin/locale.php:
|
| 7127 |
msgid ""
|
| 7128 |
"Since you are using Page Break field(s) to divide your form into multiple "
|
| 7129 |
"pages, use the pagination settings to customize the page label, progress "
|
| 7130 |
"indicator, and the buttons on each page."
|
| 7131 |
msgstr ""
|
| 7132 |
|
| 7133 |
-
#: admin/locale.php:
|
| 7134 |
msgid "Edit field"
|
| 7135 |
msgstr ""
|
| 7136 |
|
| 7137 |
-
#: admin/locale.php:
|
| 7138 |
#: library/modules/custom-forms/admin/admin-page-entries.php:476
|
| 7139 |
msgid "PayPal Checkout"
|
| 7140 |
msgstr ""
|
| 7141 |
|
| 7142 |
-
#: admin/locale.php:
|
| 7143 |
msgid "Pay with PayPal"
|
| 7144 |
msgstr ""
|
| 7145 |
|
| 7146 |
-
#: admin/locale.php:
|
| 7147 |
#: library/fields/paypal.php:57
|
| 7148 |
msgid "PayPal"
|
| 7149 |
msgstr ""
|
| 7150 |
|
| 7151 |
-
#: admin/locale.php:
|
| 7152 |
msgid ""
|
| 7153 |
"PayPal field replaces the submit button of your form with the PayPal Smart "
|
| 7154 |
"Payment Buttons. The PayPal buttons will automatically submit the form "
|
| 7155 |
"after a successful payment."
|
| 7156 |
msgstr ""
|
| 7157 |
|
| 7158 |
-
#: admin/locale.php:
|
| 7159 |
#: library/modules/custom-forms/form-templates/template-leads.php:117
|
| 7160 |
#: library/modules/quizzes/admin/admin-loader.php:596
|
| 7161 |
#: library/render/class-render-form.php:690
|
| 7162 |
msgid "Submit"
|
| 7163 |
msgstr ""
|
| 7164 |
|
| 7165 |
-
#: admin/locale.php:
|
| 7166 |
msgid "Swipe"
|
| 7167 |
msgstr ""
|
| 7168 |
|
| 7169 |
-
#: admin/locale.php:
|
| 7170 |
msgid "Address"
|
| 7171 |
msgstr ""
|
| 7172 |
|
| 7173 |
-
#: admin/locale.php:
|
| 7174 |
msgid "Apartment, suite, etc."
|
| 7175 |
msgstr ""
|
| 7176 |
|
| 7177 |
-
#: admin/locale.php:
|
| 7178 |
#: library/model/class-form-entry-model.php:438
|
| 7179 |
msgid "City"
|
| 7180 |
msgstr ""
|
| 7181 |
|
| 7182 |
-
#: admin/locale.php:
|
| 7183 |
msgid "State / Province"
|
| 7184 |
msgstr ""
|
| 7185 |
|
| 7186 |
-
#: admin/locale.php:
|
| 7187 |
msgid "ZIP / Postal code"
|
| 7188 |
msgstr ""
|
| 7189 |
|
| 7190 |
-
#: admin/locale.php:
|
| 7191 |
#: library/model/class-form-entry-model.php:437
|
| 7192 |
msgid "Country"
|
| 7193 |
msgstr ""
|
| 7194 |
|
| 7195 |
-
#: admin/locale.php:
|
| 7196 |
msgid ""
|
| 7197 |
"Note: The query parameter's value passed in URL should match with the "
|
| 7198 |
"{{link}}alpha-2 country code{{/link}} of the country you want to "
|
| 7199 |
"pre-populate dynamically."
|
| 7200 |
msgstr ""
|
| 7201 |
|
| 7202 |
-
#: admin/locale.php:
|
| 7203 |
msgid "Enter label"
|
| 7204 |
msgstr ""
|
| 7205 |
|
| 7206 |
-
#: admin/locale.php:
|
| 7207 |
msgid "Placeholder (optional)"
|
| 7208 |
msgstr ""
|
| 7209 |
|
| 7210 |
-
#: admin/locale.php:
|
| 7211 |
msgid "Enter Placeholder"
|
| 7212 |
msgstr ""
|
| 7213 |
|
| 7214 |
-
#: admin/locale.php:
|
| 7215 |
msgid "Description (optional)"
|
| 7216 |
msgstr ""
|
| 7217 |
|
| 7218 |
-
#: admin/locale.php:
|
| 7219 |
msgid "Enter description"
|
| 7220 |
msgstr ""
|
| 7221 |
|
| 7222 |
-
#: admin/locale.php:
|
| 7223 |
msgid "At least one field must be enabled"
|
| 7224 |
msgstr ""
|
| 7225 |
|
| 7226 |
-
#: admin/locale.php:
|
| 7227 |
msgid "Field Type"
|
| 7228 |
msgstr ""
|
| 7229 |
|
| 7230 |
-
#: admin/locale.php:
|
| 7231 |
msgid ""
|
| 7232 |
"By default, the calculation field is read-only. You can also hide the field "
|
| 7233 |
"if you don't want to show the calculated result on the form."
|
| 7234 |
msgstr ""
|
| 7235 |
|
| 7236 |
-
#: admin/locale.php:
|
| 7237 |
msgid "Read-only"
|
| 7238 |
msgstr ""
|
| 7239 |
|
| 7240 |
-
#: admin/locale.php:
|
| 7241 |
msgid "Formatting"
|
| 7242 |
msgstr ""
|
| 7243 |
|
| 7244 |
-
#: admin/locale.php:
|
| 7245 |
msgid "Choose how do you want to format the value of this field."
|
| 7246 |
msgstr ""
|
| 7247 |
|
| 7248 |
-
#: admin/locale.php:
|
| 7249 |
msgid "E.g., $"
|
| 7250 |
msgstr ""
|
| 7251 |
|
| 7252 |
-
#: admin/locale.php:
|
| 7253 |
#: library/model/class-form-entry-model.php:446
|
| 7254 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:47
|
| 7255 |
#: library/modules/custom-forms/form-templates/template-leads.php:76
|
|
@@ -7258,465 +7270,465 @@ msgstr ""
|
|
| 7258 |
msgid "Prefix"
|
| 7259 |
msgstr ""
|
| 7260 |
|
| 7261 |
-
#: admin/locale.php:
|
| 7262 |
msgid "E.g., Kg"
|
| 7263 |
msgstr ""
|
| 7264 |
|
| 7265 |
-
#: admin/locale.php:
|
| 7266 |
msgid "Suffix"
|
| 7267 |
msgstr ""
|
| 7268 |
|
| 7269 |
-
#: admin/locale.php:
|
| 7270 |
msgid "Separators"
|
| 7271 |
msgstr ""
|
| 7272 |
|
| 7273 |
-
#: admin/locale.php:
|
| 7274 |
msgid "1234567.89"
|
| 7275 |
msgstr ""
|
| 7276 |
|
| 7277 |
-
#: admin/locale.php:
|
| 7278 |
msgid "1,234,567.89"
|
| 7279 |
msgstr ""
|
| 7280 |
|
| 7281 |
-
#: admin/locale.php:
|
| 7282 |
msgid "1.234.567,89"
|
| 7283 |
msgstr ""
|
| 7284 |
|
| 7285 |
-
#: admin/locale.php:
|
| 7286 |
msgid "1 234 567,89"
|
| 7287 |
msgstr ""
|
| 7288 |
|
| 7289 |
-
#: admin/locale.php:
|
| 7290 |
msgid "E.g. $"
|
| 7291 |
msgstr ""
|
| 7292 |
|
| 7293 |
-
#: admin/locale.php:
|
| 7294 |
msgid "Thousand Separator"
|
| 7295 |
msgstr ""
|
| 7296 |
|
| 7297 |
-
#: admin/locale.php:
|
| 7298 |
msgid "Decimal Separator"
|
| 7299 |
msgstr ""
|
| 7300 |
|
| 7301 |
-
#: admin/locale.php:
|
| 7302 |
msgid "Round To"
|
| 7303 |
msgstr ""
|
| 7304 |
|
| 7305 |
-
#: admin/locale.php:
|
| 7306 |
msgid "0 decimals"
|
| 7307 |
msgstr ""
|
| 7308 |
|
| 7309 |
-
#: admin/locale.php:
|
| 7310 |
msgid "1 decimals"
|
| 7311 |
msgstr ""
|
| 7312 |
|
| 7313 |
-
#: admin/locale.php:
|
| 7314 |
msgid "2 decimals"
|
| 7315 |
msgstr ""
|
| 7316 |
|
| 7317 |
-
#: admin/locale.php:
|
| 7318 |
msgid "3 decimals"
|
| 7319 |
msgstr ""
|
| 7320 |
|
| 7321 |
-
#: admin/locale.php:
|
| 7322 |
msgid "4 decimals"
|
| 7323 |
msgstr ""
|
| 7324 |
|
| 7325 |
-
#: admin/locale.php:
|
| 7326 |
msgid ""
|
| 7327 |
"You can't set visibility conditions for a hidden field. Uncheck the Hidden "
|
| 7328 |
"option in the settings tab and come back here to define visibility rules."
|
| 7329 |
msgstr ""
|
| 7330 |
|
| 7331 |
-
#: admin/locale.php:
|
| 7332 |
msgid "hCaptcha verification failed. Please try again."
|
| 7333 |
msgstr ""
|
| 7334 |
|
| 7335 |
-
#: admin/locale.php:
|
| 7336 |
msgid "Captcha Provider"
|
| 7337 |
msgstr ""
|
| 7338 |
|
| 7339 |
-
#: admin/locale.php:
|
| 7340 |
msgid "Select your preferred CAPTCHA provider below."
|
| 7341 |
msgstr ""
|
| 7342 |
|
| 7343 |
-
#: admin/locale.php:
|
| 7344 |
msgid "reCAPTCHA"
|
| 7345 |
msgstr ""
|
| 7346 |
|
| 7347 |
-
#: admin/locale.php:
|
| 7348 |
msgid "hCaptcha"
|
| 7349 |
msgstr ""
|
| 7350 |
|
| 7351 |
-
#: admin/locale.php:
|
| 7352 |
msgid ""
|
| 7353 |
"You haven't added hCaptcha API keys in your global settings. Add your API "
|
| 7354 |
"keys {{link}}here{{/link}} and then come back to configure this field."
|
| 7355 |
msgstr ""
|
| 7356 |
|
| 7357 |
-
#: admin/locale.php:
|
| 7358 |
msgid "reCAPTCHA type"
|
| 7359 |
msgstr ""
|
| 7360 |
|
| 7361 |
-
#: admin/locale.php:
|
| 7362 |
msgid ""
|
| 7363 |
"Choose the reCAPTCHA type you want to use on your form. You can read more "
|
| 7364 |
"about the different reCAPTCHA types {{link}}here{{/link}} and then choose "
|
| 7365 |
"the one which suits you the best."
|
| 7366 |
msgstr ""
|
| 7367 |
|
| 7368 |
-
#: admin/locale.php:
|
| 7369 |
msgid "V2 Checkbox"
|
| 7370 |
msgstr ""
|
| 7371 |
|
| 7372 |
-
#: admin/locale.php:
|
| 7373 |
msgid ""
|
| 7374 |
"You haven't added API keys for this reCAPTCHA type in your global settings. "
|
| 7375 |
"Add your API keys {{link}}here{{/link}} and then come back to configure "
|
| 7376 |
"this field."
|
| 7377 |
msgstr ""
|
| 7378 |
|
| 7379 |
-
#: admin/locale.php:
|
| 7380 |
msgid "Size"
|
| 7381 |
msgstr ""
|
| 7382 |
|
| 7383 |
-
#: admin/locale.php:
|
| 7384 |
msgid "Theme"
|
| 7385 |
msgstr ""
|
| 7386 |
|
| 7387 |
-
#: admin/locale.php:
|
| 7388 |
msgid "Dark"
|
| 7389 |
msgstr ""
|
| 7390 |
|
| 7391 |
-
#: admin/locale.php:
|
| 7392 |
msgid "V2 Invisible"
|
| 7393 |
msgstr ""
|
| 7394 |
|
| 7395 |
-
#: admin/locale.php:
|
| 7396 |
msgid "reCAPTCHA V3"
|
| 7397 |
msgstr ""
|
| 7398 |
|
| 7399 |
-
#: admin/locale.php:
|
| 7400 |
msgid ""
|
| 7401 |
"reCAPTCHA V3 returns a score (1 is very likely a good interaction, 0 is "
|
| 7402 |
"very likely a bot) based on user interaction. Choose the score below which "
|
| 7403 |
"the verification should fail."
|
| 7404 |
msgstr ""
|
| 7405 |
|
| 7406 |
-
#: admin/locale.php:
|
| 7407 |
msgid "Score Threshold"
|
| 7408 |
msgstr ""
|
| 7409 |
|
| 7410 |
-
#: admin/locale.php:
|
| 7411 |
msgid "0.0"
|
| 7412 |
msgstr ""
|
| 7413 |
|
| 7414 |
-
#: admin/locale.php:
|
| 7415 |
msgid "0.1"
|
| 7416 |
msgstr ""
|
| 7417 |
|
| 7418 |
-
#: admin/locale.php:
|
| 7419 |
msgid "0.2"
|
| 7420 |
msgstr ""
|
| 7421 |
|
| 7422 |
-
#: admin/locale.php:
|
| 7423 |
msgid "0.3"
|
| 7424 |
msgstr ""
|
| 7425 |
|
| 7426 |
-
#: admin/locale.php:
|
| 7427 |
msgid "0.4"
|
| 7428 |
msgstr ""
|
| 7429 |
|
| 7430 |
-
#: admin/locale.php:
|
| 7431 |
msgid "0.5"
|
| 7432 |
msgstr ""
|
| 7433 |
|
| 7434 |
-
#: admin/locale.php:
|
| 7435 |
msgid "0.6"
|
| 7436 |
msgstr ""
|
| 7437 |
|
| 7438 |
-
#: admin/locale.php:
|
| 7439 |
msgid "0.7"
|
| 7440 |
msgstr ""
|
| 7441 |
|
| 7442 |
-
#: admin/locale.php:
|
| 7443 |
msgid "0.8"
|
| 7444 |
msgstr ""
|
| 7445 |
|
| 7446 |
-
#: admin/locale.php:
|
| 7447 |
msgid "0.9"
|
| 7448 |
msgstr ""
|
| 7449 |
|
| 7450 |
-
#: admin/locale.php:
|
| 7451 |
msgid "1.0"
|
| 7452 |
msgstr ""
|
| 7453 |
|
| 7454 |
-
#: admin/locale.php:
|
| 7455 |
msgid "hCaptcha type"
|
| 7456 |
msgstr ""
|
| 7457 |
|
| 7458 |
-
#: admin/locale.php:
|
| 7459 |
msgid ""
|
| 7460 |
"hCaptcha offers two different types of CAPTCHA challenges, a Checkbox and "
|
| 7461 |
"an Invisible type. Choose the hCaptcha type you want to use in your form."
|
| 7462 |
msgstr ""
|
| 7463 |
|
| 7464 |
-
#: admin/locale.php:
|
| 7465 |
#: library/fields/multivalue.php:70
|
| 7466 |
#: library/modules/quizzes/admin/admin-loader.php:655
|
| 7467 |
msgid "Checkbox"
|
| 7468 |
msgstr ""
|
| 7469 |
|
| 7470 |
-
#: admin/locale.php:
|
| 7471 |
msgid "Invisible"
|
| 7472 |
msgstr ""
|
| 7473 |
|
| 7474 |
-
#: admin/locale.php:
|
| 7475 |
msgid ""
|
| 7476 |
"To comply with online privacy laws, users should be informed that this form "
|
| 7477 |
"includes an invisible CAPTCHA field."
|
| 7478 |
msgstr ""
|
| 7479 |
|
| 7480 |
-
#: admin/locale.php:
|
| 7481 |
msgid "Language"
|
| 7482 |
msgstr ""
|
| 7483 |
|
| 7484 |
-
#: admin/locale.php:
|
| 7485 |
msgid ""
|
| 7486 |
"By default, the global CAPTCHA language setting will be used. However, you "
|
| 7487 |
"can manually select a different language here."
|
| 7488 |
msgstr ""
|
| 7489 |
|
| 7490 |
-
#: admin/locale.php:
|
| 7491 |
msgid "Automatic"
|
| 7492 |
msgstr ""
|
| 7493 |
|
| 7494 |
-
#: admin/locale.php:
|
| 7495 |
msgid "Badge Position"
|
| 7496 |
msgstr ""
|
| 7497 |
|
| 7498 |
-
#: admin/locale.php:
|
| 7499 |
msgid "Select where the reCAPTCHA badge will be displayed on your page."
|
| 7500 |
msgstr ""
|
| 7501 |
|
| 7502 |
-
#: admin/locale.php:
|
| 7503 |
msgid "Bottom Right"
|
| 7504 |
msgstr ""
|
| 7505 |
|
| 7506 |
-
#: admin/locale.php:
|
| 7507 |
msgid "Bottom Left"
|
| 7508 |
msgstr ""
|
| 7509 |
|
| 7510 |
-
#: admin/locale.php:
|
| 7511 |
msgid "Inline in Form"
|
| 7512 |
msgstr ""
|
| 7513 |
|
| 7514 |
-
#: admin/locale.php:
|
| 7515 |
msgid "Error Message"
|
| 7516 |
msgstr ""
|
| 7517 |
|
| 7518 |
-
#: admin/locale.php:
|
| 7519 |
msgid ""
|
| 7520 |
"Choose the error message you want to display on your form when reCAPTCHA "
|
| 7521 |
"verification fails."
|
| 7522 |
msgstr ""
|
| 7523 |
|
| 7524 |
-
#: admin/locale.php:
|
| 7525 |
msgid ""
|
| 7526 |
"Choose the error message you want to display on your form when hCaptcha "
|
| 7527 |
"verification fails."
|
| 7528 |
msgstr ""
|
| 7529 |
|
| 7530 |
-
#: admin/locale.php:
|
| 7531 |
msgid "E.g. Consent"
|
| 7532 |
msgstr ""
|
| 7533 |
|
| 7534 |
-
#: admin/locale.php:
|
| 7535 |
msgid "Describe what your users should consent to."
|
| 7536 |
msgstr ""
|
| 7537 |
|
| 7538 |
-
#: admin/locale.php:
|
| 7539 |
msgid "Default Value (optional)"
|
| 7540 |
msgstr ""
|
| 7541 |
|
| 7542 |
-
#: admin/locale.php:
|
| 7543 |
msgid "Enter default value"
|
| 7544 |
msgstr ""
|
| 7545 |
|
| 7546 |
-
#: admin/locale.php:
|
| 7547 |
#: library/fields/currency.php:66 library/fields/currency.php:84
|
| 7548 |
#: library/modules/custom-forms/admin/admin-page-entries.php:445
|
| 7549 |
#: library/modules/custom-forms/admin/admin-page-entries.php:494
|
| 7550 |
msgid "Currency"
|
| 7551 |
msgstr ""
|
| 7552 |
|
| 7553 |
-
#: admin/locale.php:
|
| 7554 |
msgid ""
|
| 7555 |
"Choose the currency to display on the field. If you are going to collect "
|
| 7556 |
"payments based on this field, it is recommended to keep this currency same "
|
| 7557 |
"as your charge currency to avoid any confusions."
|
| 7558 |
msgstr ""
|
| 7559 |
|
| 7560 |
-
#: admin/locale.php:
|
| 7561 |
msgid "Limit"
|
| 7562 |
msgstr ""
|
| 7563 |
|
| 7564 |
-
#: admin/locale.php:
|
| 7565 |
msgid ""
|
| 7566 |
"Restrict the value that your users can enter in this field within a custom "
|
| 7567 |
"range."
|
| 7568 |
msgstr ""
|
| 7569 |
|
| 7570 |
-
#: admin/locale.php:
|
| 7571 |
msgid "Min"
|
| 7572 |
msgstr ""
|
| 7573 |
|
| 7574 |
-
#: admin/locale.php:
|
| 7575 |
msgid "Max"
|
| 7576 |
msgstr ""
|
| 7577 |
|
| 7578 |
-
#: admin/locale.php:
|
| 7579 |
msgid "Error Messages"
|
| 7580 |
msgstr ""
|
| 7581 |
|
| 7582 |
-
#: admin/locale.php:
|
| 7583 |
msgid "When number is smaller than the min limit"
|
| 7584 |
msgstr ""
|
| 7585 |
|
| 7586 |
-
#: admin/locale.php:
|
| 7587 |
msgid "E.g. Please enter a number greater than 0."
|
| 7588 |
msgstr ""
|
| 7589 |
|
| 7590 |
-
#: admin/locale.php:
|
| 7591 |
msgid "When number is greater than the max limit"
|
| 7592 |
msgstr ""
|
| 7593 |
|
| 7594 |
-
#: admin/locale.php:
|
| 7595 |
msgid "E.g. Please enter a number lower than 1000."
|
| 7596 |
msgstr ""
|
| 7597 |
|
| 7598 |
-
#: admin/locale.php:
|
| 7599 |
msgid ""
|
| 7600 |
"Note: The query parameter's value passed in URL should match with the "
|
| 7601 |
"selected date format."
|
| 7602 |
msgstr ""
|
| 7603 |
|
| 7604 |
-
#: admin/locale.php:
|
| 7605 |
msgid "Date Format"
|
| 7606 |
msgstr ""
|
| 7607 |
|
| 7608 |
-
#: admin/locale.php:
|
| 7609 |
msgid "Y-m-d"
|
| 7610 |
msgstr ""
|
| 7611 |
|
| 7612 |
-
#: admin/locale.php:
|
| 7613 |
msgid "m-d-Y"
|
| 7614 |
msgstr ""
|
| 7615 |
|
| 7616 |
-
#: admin/locale.php:
|
| 7617 |
msgid "d-m-Y"
|
| 7618 |
msgstr ""
|
| 7619 |
|
| 7620 |
-
#: admin/locale.php:
|
| 7621 |
msgid "Y/m/d"
|
| 7622 |
msgstr ""
|
| 7623 |
|
| 7624 |
-
#: admin/locale.php:
|
| 7625 |
msgid "m/d/Y"
|
| 7626 |
msgstr ""
|
| 7627 |
|
| 7628 |
-
#: admin/locale.php:
|
| 7629 |
msgid "d/m/Y"
|
| 7630 |
msgstr ""
|
| 7631 |
|
| 7632 |
-
#: admin/locale.php:
|
| 7633 |
msgid "Y.m.d"
|
| 7634 |
msgstr ""
|
| 7635 |
|
| 7636 |
-
#: admin/locale.php:
|
| 7637 |
msgid "m.d.Y"
|
| 7638 |
msgstr ""
|
| 7639 |
|
| 7640 |
-
#: admin/locale.php:
|
| 7641 |
msgid "d.m.Y"
|
| 7642 |
msgstr ""
|
| 7643 |
|
| 7644 |
-
#: admin/locale.php:
|
| 7645 |
msgid "Calendar Icon"
|
| 7646 |
msgstr ""
|
| 7647 |
|
| 7648 |
-
#: admin/locale.php:
|
| 7649 |
msgid "Dropdowns"
|
| 7650 |
msgstr ""
|
| 7651 |
|
| 7652 |
-
#: admin/locale.php:
|
| 7653 |
#: library/model/class-form-entry-model.php:445
|
| 7654 |
msgid "Month"
|
| 7655 |
msgstr ""
|
| 7656 |
|
| 7657 |
-
#: admin/locale.php:
|
| 7658 |
msgid "Label (optional)"
|
| 7659 |
msgstr ""
|
| 7660 |
|
| 7661 |
-
#: admin/locale.php:
|
| 7662 |
#: library/model/class-form-entry-model.php:444
|
| 7663 |
msgid "Day"
|
| 7664 |
msgstr ""
|
| 7665 |
|
| 7666 |
-
#: admin/locale.php:
|
| 7667 |
#: library/model/class-form-entry-model.php:443
|
| 7668 |
msgid "Year"
|
| 7669 |
msgstr ""
|
| 7670 |
|
| 7671 |
-
#: admin/locale.php:
|
| 7672 |
msgid "Text inputs"
|
| 7673 |
msgstr ""
|
| 7674 |
|
| 7675 |
-
#: admin/locale.php:
|
| 7676 |
msgid "Enter placeholder"
|
| 7677 |
msgstr ""
|
| 7678 |
|
| 7679 |
-
#: admin/locale.php:
|
| 7680 |
msgid "Default Date"
|
| 7681 |
msgstr ""
|
| 7682 |
|
| 7683 |
-
#: admin/locale.php:
|
| 7684 |
msgid "Use this feature to specify a default selected date."
|
| 7685 |
msgstr ""
|
| 7686 |
|
| 7687 |
-
#: admin/locale.php:
|
| 7688 |
#: admin/pages/reports-page.php:170
|
| 7689 |
msgid "Today"
|
| 7690 |
msgstr ""
|
| 7691 |
|
| 7692 |
-
#: admin/locale.php:
|
| 7693 |
msgid "Future Date"
|
| 7694 |
msgstr ""
|
| 7695 |
|
| 7696 |
-
#: admin/locale.php:
|
| 7697 |
msgid "Year Range"
|
| 7698 |
msgstr ""
|
| 7699 |
|
| 7700 |
-
#: admin/locale.php:
|
| 7701 |
msgid ""
|
| 7702 |
"By default, we select 100 years in the past, and 100 years in the future "
|
| 7703 |
"for the year dropdown field. You can set a custom year range to display in "
|
| 7704 |
"the year dropdown below."
|
| 7705 |
msgstr ""
|
| 7706 |
|
| 7707 |
-
#: admin/locale.php:
|
| 7708 |
msgid "From"
|
| 7709 |
msgstr ""
|
| 7710 |
|
| 7711 |
-
#: admin/locale.php:
|
| 7712 |
msgid "To"
|
| 7713 |
msgstr ""
|
| 7714 |
|
| 7715 |
-
#: admin/locale.php:
|
| 7716 |
msgid "Wrong field type!"
|
| 7717 |
msgstr ""
|
| 7718 |
|
| 7719 |
-
#: admin/locale.php:
|
| 7720 |
msgid ""
|
| 7721 |
"The {{strong}}GDPR Field{{/strong}} has been deprecated and replaced by the "
|
| 7722 |
"new {{strong}}Consent Field{{/strong}}. Your existing fields should "
|
|
@@ -7724,57 +7736,57 @@ msgid ""
|
|
| 7724 |
"{{strong}}Consent Field{{/strong}} in the future."
|
| 7725 |
msgstr ""
|
| 7726 |
|
| 7727 |
-
#: admin/locale.php:
|
| 7728 |
msgid "Note, the form will not submit until the user has accepted the terms."
|
| 7729 |
msgstr ""
|
| 7730 |
|
| 7731 |
-
#: admin/locale.php:
|
| 7732 |
msgid "Error message"
|
| 7733 |
msgstr ""
|
| 7734 |
|
| 7735 |
-
#: admin/locale.php:
|
| 7736 |
msgid "Enter required message"
|
| 7737 |
msgstr ""
|
| 7738 |
|
| 7739 |
-
#: admin/locale.php:
|
| 7740 |
msgid "Custom Value"
|
| 7741 |
msgstr ""
|
| 7742 |
|
| 7743 |
-
#: admin/locale.php:
|
| 7744 |
msgid "Enter custom value"
|
| 7745 |
msgstr ""
|
| 7746 |
|
| 7747 |
-
#: admin/locale.php:
|
| 7748 |
msgid "Query parameter"
|
| 7749 |
msgstr ""
|
| 7750 |
|
| 7751 |
-
#: admin/locale.php:
|
| 7752 |
msgid "E.g. query_parameter_key"
|
| 7753 |
msgstr ""
|
| 7754 |
|
| 7755 |
-
#: admin/locale.php:
|
| 7756 |
msgid "Layout"
|
| 7757 |
msgstr ""
|
| 7758 |
|
| 7759 |
-
#: admin/locale.php:
|
| 7760 |
msgid ""
|
| 7761 |
"By default, we stack the options vertically. However, you can change the "
|
| 7762 |
"options layout below."
|
| 7763 |
msgstr ""
|
| 7764 |
|
| 7765 |
-
#: admin/locale.php:
|
| 7766 |
msgid "Vertical"
|
| 7767 |
msgstr ""
|
| 7768 |
|
| 7769 |
-
#: admin/locale.php:
|
| 7770 |
msgid "Horizontal"
|
| 7771 |
msgstr ""
|
| 7772 |
|
| 7773 |
-
#: admin/locale.php:
|
| 7774 |
msgid "Choose whether to allow this field to be used in calculations or not."
|
| 7775 |
msgstr ""
|
| 7776 |
|
| 7777 |
-
#: admin/locale.php:
|
| 7778 |
#: library/model/class-form-entry-model.php:448
|
| 7779 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:50
|
| 7780 |
#: library/modules/custom-forms/form-templates/template-leads.php:79
|
|
@@ -7783,376 +7795,376 @@ msgstr ""
|
|
| 7783 |
msgid "Middle Name"
|
| 7784 |
msgstr ""
|
| 7785 |
|
| 7786 |
-
#: admin/locale.php:
|
| 7787 |
msgid "Single"
|
| 7788 |
msgstr ""
|
| 7789 |
|
| 7790 |
-
#: admin/locale.php:
|
| 7791 |
msgid "Multiple"
|
| 7792 |
msgstr ""
|
| 7793 |
|
| 7794 |
-
#: admin/locale.php:
|
| 7795 |
msgid "Limits"
|
| 7796 |
msgstr ""
|
| 7797 |
|
| 7798 |
-
#: admin/locale.php:
|
| 7799 |
msgid ""
|
| 7800 |
"Set the minimum and maximum values the user can choose. Leave the fields "
|
| 7801 |
"blank to allow any number including negatives."
|
| 7802 |
msgstr ""
|
| 7803 |
|
| 7804 |
-
#: admin/locale.php:
|
| 7805 |
msgid "Minimum"
|
| 7806 |
msgstr ""
|
| 7807 |
|
| 7808 |
-
#: admin/locale.php:
|
| 7809 |
msgid "Maximum"
|
| 7810 |
msgstr ""
|
| 7811 |
|
| 7812 |
-
#: admin/locale.php:
|
| 7813 |
msgid "Step label"
|
| 7814 |
msgstr ""
|
| 7815 |
|
| 7816 |
-
#: admin/locale.php:
|
| 7817 |
msgid "Enter step label"
|
| 7818 |
msgstr ""
|
| 7819 |
|
| 7820 |
-
#: admin/locale.php:
|
| 7821 |
msgid "Buttons Text"
|
| 7822 |
msgstr ""
|
| 7823 |
|
| 7824 |
-
#: admin/locale.php:
|
| 7825 |
msgid ""
|
| 7826 |
"Choose whether you want to use default text for the Previous and Next "
|
| 7827 |
"button or use custom text."
|
| 7828 |
msgstr ""
|
| 7829 |
|
| 7830 |
-
#: admin/locale.php:
|
| 7831 |
msgid "Previous Button"
|
| 7832 |
msgstr ""
|
| 7833 |
|
| 7834 |
-
#: admin/locale.php:
|
| 7835 |
msgid "Enter text"
|
| 7836 |
msgstr ""
|
| 7837 |
|
| 7838 |
-
#: admin/locale.php:
|
| 7839 |
msgid "Next Button"
|
| 7840 |
msgstr ""
|
| 7841 |
|
| 7842 |
-
#: admin/locale.php:
|
| 7843 |
#: library/modules/custom-forms/form-templates/template-login.php:87
|
| 7844 |
#: library/modules/custom-forms/form-templates/template-registration.php:78
|
| 7845 |
msgid "Confirm Password"
|
| 7846 |
msgstr ""
|
| 7847 |
|
| 7848 |
-
#: admin/locale.php:
|
| 7849 |
msgid "Confirm password"
|
| 7850 |
msgstr ""
|
| 7851 |
|
| 7852 |
-
#: admin/locale.php:
|
| 7853 |
#: library/modules/custom-forms/form-templates/template-login.php:88
|
| 7854 |
#: library/modules/custom-forms/form-templates/template-registration.php:79
|
| 7855 |
msgid "Confirm new password"
|
| 7856 |
msgstr ""
|
| 7857 |
|
| 7858 |
-
#: admin/locale.php:
|
| 7859 |
msgid "Minimum password strength"
|
| 7860 |
msgstr ""
|
| 7861 |
|
| 7862 |
-
#: admin/locale.php:
|
| 7863 |
msgid ""
|
| 7864 |
"Choose a minimum password strength required to force your users to sign up "
|
| 7865 |
"with a password stronger than the minimum requirement."
|
| 7866 |
msgstr ""
|
| 7867 |
|
| 7868 |
-
#: admin/locale.php:
|
| 7869 |
msgid "Short"
|
| 7870 |
msgstr ""
|
| 7871 |
|
| 7872 |
-
#: admin/locale.php:
|
| 7873 |
msgid "Bad"
|
| 7874 |
msgstr ""
|
| 7875 |
|
| 7876 |
-
#: admin/locale.php:
|
| 7877 |
msgid "Good"
|
| 7878 |
msgstr ""
|
| 7879 |
|
| 7880 |
-
#: admin/locale.php:
|
| 7881 |
msgid "Strong"
|
| 7882 |
msgstr ""
|
| 7883 |
|
| 7884 |
-
#: admin/locale.php:
|
| 7885 |
msgid ""
|
| 7886 |
"This is displayed when the user's password is weaker than the minimum "
|
| 7887 |
"requirement."
|
| 7888 |
msgstr ""
|
| 7889 |
|
| 7890 |
-
#: admin/locale.php:
|
| 7891 |
msgid "Validate"
|
| 7892 |
msgstr ""
|
| 7893 |
|
| 7894 |
-
#: admin/locale.php:
|
| 7895 |
msgid ""
|
| 7896 |
"Make sure the user has filled out this field correctly and warn them when "
|
| 7897 |
"they haven't."
|
| 7898 |
msgstr ""
|
| 7899 |
|
| 7900 |
-
#: admin/locale.php:
|
| 7901 |
msgid "Validate Field"
|
| 7902 |
msgstr ""
|
| 7903 |
|
| 7904 |
-
#: admin/locale.php:
|
| 7905 |
msgid "Validation message"
|
| 7906 |
msgstr ""
|
| 7907 |
|
| 7908 |
-
#: admin/locale.php:
|
| 7909 |
msgid "Enter validation message"
|
| 7910 |
msgstr ""
|
| 7911 |
|
| 7912 |
-
#: admin/locale.php:
|
| 7913 |
msgid "In %s"
|
| 7914 |
msgstr ""
|
| 7915 |
|
| 7916 |
-
#: admin/locale.php:
|
| 7917 |
msgid ""
|
| 7918 |
"You have not connected your PayPal account with Forminator. Connect your "
|
| 7919 |
"PayPal account {{link}}here{{/link}} and then come back to configure this "
|
| 7920 |
"field."
|
| 7921 |
msgstr ""
|
| 7922 |
|
| 7923 |
-
#: admin/locale.php:
|
| 7924 |
msgid "Mode of payment"
|
| 7925 |
msgstr ""
|
| 7926 |
|
| 7927 |
-
#: admin/locale.php:
|
| 7928 |
msgid ""
|
| 7929 |
"We recommend using sandbox mode to ensure the payments are working as "
|
| 7930 |
"expected and when you are ready to start collecting live payments, switch "
|
| 7931 |
"to the {{strong}}Live{{/strong}} payments mode."
|
| 7932 |
msgstr ""
|
| 7933 |
|
| 7934 |
-
#: admin/locale.php:
|
| 7935 |
msgid "Sandbox"
|
| 7936 |
msgstr ""
|
| 7937 |
|
| 7938 |
-
#: admin/locale.php:
|
| 7939 |
#: admin/views/settings/payments/section-stripe.php:127
|
| 7940 |
msgid "Live"
|
| 7941 |
msgstr ""
|
| 7942 |
|
| 7943 |
-
#: admin/locale.php:
|
| 7944 |
msgid "Charge currency"
|
| 7945 |
msgstr ""
|
| 7946 |
|
| 7947 |
-
#: admin/locale.php:
|
| 7948 |
msgid ""
|
| 7949 |
"It's recommended to charge in your customers' currency to drive more sales "
|
| 7950 |
"and avoid foreign exchange fee to your customers."
|
| 7951 |
msgstr ""
|
| 7952 |
|
| 7953 |
-
#: admin/locale.php:
|
| 7954 |
msgid "Payment amount"
|
| 7955 |
msgstr ""
|
| 7956 |
|
| 7957 |
-
#: admin/locale.php:
|
| 7958 |
msgid "Fixed"
|
| 7959 |
msgstr ""
|
| 7960 |
|
| 7961 |
-
#: admin/locale.php:
|
| 7962 |
msgid "Fixed amount"
|
| 7963 |
msgstr ""
|
| 7964 |
|
| 7965 |
-
#: admin/locale.php:
|
| 7966 |
msgid "E.g. 20.00"
|
| 7967 |
msgstr ""
|
| 7968 |
|
| 7969 |
-
#: admin/locale.php:
|
| 7970 |
msgid "Enter an amount or choose a form field."
|
| 7971 |
msgstr ""
|
| 7972 |
|
| 7973 |
-
#: admin/locale.php:
|
| 7974 |
msgid "Variable"
|
| 7975 |
msgstr ""
|
| 7976 |
|
| 7977 |
-
#: admin/locale.php:
|
| 7978 |
msgid "Variable amount"
|
| 7979 |
msgstr ""
|
| 7980 |
|
| 7981 |
-
#: admin/locale.php:
|
| 7982 |
msgid "Select field"
|
| 7983 |
msgstr ""
|
| 7984 |
|
| 7985 |
-
#: admin/locale.php:
|
| 7986 |
msgid ""
|
| 7987 |
"A currency field can be used to take user-defined payments such as "
|
| 7988 |
"donations and calculation field can be used to charge a calculated value "
|
| 7989 |
"based on a formula."
|
| 7990 |
msgstr ""
|
| 7991 |
|
| 7992 |
-
#: admin/locale.php:
|
| 7993 |
msgid ""
|
| 7994 |
"Choose a label for your PayPal button. Note that PayPal checkout doesn't "
|
| 7995 |
"allow a custom label for the PayPal button. You can only choose from the "
|
| 7996 |
"pre-defined labels."
|
| 7997 |
msgstr ""
|
| 7998 |
|
| 7999 |
-
#: admin/locale.php:
|
| 8000 |
msgid ""
|
| 8001 |
"PayPal recommends using the Gold button since it is widely known as their "
|
| 8002 |
"brand color. However, if that does not suit your theme, you can choose a "
|
| 8003 |
"different color."
|
| 8004 |
msgstr ""
|
| 8005 |
|
| 8006 |
-
#: admin/locale.php:
|
| 8007 |
msgid "Gold"
|
| 8008 |
msgstr ""
|
| 8009 |
|
| 8010 |
-
#: admin/locale.php:
|
| 8011 |
msgid "Blue"
|
| 8012 |
msgstr ""
|
| 8013 |
|
| 8014 |
-
#: admin/locale.php:
|
| 8015 |
msgid "Silver"
|
| 8016 |
msgstr ""
|
| 8017 |
|
| 8018 |
-
#: admin/locale.php:
|
| 8019 |
msgid "White"
|
| 8020 |
msgstr ""
|
| 8021 |
|
| 8022 |
-
#: admin/locale.php:
|
| 8023 |
msgid "Black"
|
| 8024 |
msgstr ""
|
| 8025 |
|
| 8026 |
-
#: admin/locale.php:
|
| 8027 |
msgid "Width"
|
| 8028 |
msgstr ""
|
| 8029 |
|
| 8030 |
-
#: admin/locale.php:
|
| 8031 |
msgid "E.g. 250"
|
| 8032 |
msgstr ""
|
| 8033 |
|
| 8034 |
-
#: admin/locale.php:
|
| 8035 |
msgid "px"
|
| 8036 |
msgstr ""
|
| 8037 |
|
| 8038 |
-
#: admin/locale.php:
|
| 8039 |
msgid ""
|
| 8040 |
"Choose the width of PayPal Smart Buttons. It can be anywhere between 150px "
|
| 8041 |
"to 750px. Leave this empty if you want the buttons to take the full width "
|
| 8042 |
"of the form up to the 750px limit."
|
| 8043 |
msgstr ""
|
| 8044 |
|
| 8045 |
-
#: admin/locale.php:
|
| 8046 |
msgid "Height"
|
| 8047 |
msgstr ""
|
| 8048 |
|
| 8049 |
-
#: admin/locale.php:
|
| 8050 |
msgid ""
|
| 8051 |
"Choose the height of PayPal Smart Buttons. It can be anywhere between 25px "
|
| 8052 |
"to 55px"
|
| 8053 |
msgstr ""
|
| 8054 |
|
| 8055 |
-
#: admin/locale.php:
|
| 8056 |
msgid "Shape"
|
| 8057 |
msgstr ""
|
| 8058 |
|
| 8059 |
-
#: admin/locale.php:
|
| 8060 |
msgid "Choose your preferred shape from your PayPal Smart Buttons."
|
| 8061 |
msgstr ""
|
| 8062 |
|
| 8063 |
-
#: admin/locale.php:
|
| 8064 |
msgid "Rectangular"
|
| 8065 |
msgstr ""
|
| 8066 |
|
| 8067 |
-
#: admin/locale.php:
|
| 8068 |
msgid "Pill"
|
| 8069 |
msgstr ""
|
| 8070 |
|
| 8071 |
-
#: admin/locale.php:
|
| 8072 |
msgid ""
|
| 8073 |
"We recommend the vertical layout as it allows additional payment methods "
|
| 8074 |
"such as Credit Cards. You can read about the layout options "
|
| 8075 |
"{{link}}here{{/link}}."
|
| 8076 |
msgstr ""
|
| 8077 |
|
| 8078 |
-
#: admin/locale.php:
|
| 8079 |
msgid "Tagline"
|
| 8080 |
msgstr ""
|
| 8081 |
|
| 8082 |
-
#: admin/locale.php:
|
| 8083 |
msgid ""
|
| 8084 |
"Choose whether to show the default PayPal tagline {{strong}}\"The safer, "
|
| 8085 |
"easier way to pay\"{{/strong}} below your PayPal button."
|
| 8086 |
msgstr ""
|
| 8087 |
|
| 8088 |
-
#: admin/locale.php:
|
| 8089 |
msgid "Disable Funding Sources"
|
| 8090 |
msgstr ""
|
| 8091 |
|
| 8092 |
-
#: admin/locale.php:
|
| 8093 |
msgid ""
|
| 8094 |
"PayPal automatically adds additional funding sources to the PayPal checkout "
|
| 8095 |
"for visitors from supported countries. However, you can choose to disable "
|
| 8096 |
"funding sources which shouldn't be displayed to visitors."
|
| 8097 |
msgstr ""
|
| 8098 |
|
| 8099 |
-
#: admin/locale.php:
|
| 8100 |
msgid "Credit or debit cards"
|
| 8101 |
msgstr ""
|
| 8102 |
|
| 8103 |
-
#: admin/locale.php:
|
| 8104 |
msgid "PayPal Credit"
|
| 8105 |
msgstr ""
|
| 8106 |
|
| 8107 |
-
#: admin/locale.php:
|
| 8108 |
msgid "Bancontact"
|
| 8109 |
msgstr ""
|
| 8110 |
|
| 8111 |
-
#: admin/locale.php:
|
| 8112 |
msgid "BLIK"
|
| 8113 |
msgstr ""
|
| 8114 |
|
| 8115 |
-
#: admin/locale.php:
|
| 8116 |
msgid "eps"
|
| 8117 |
msgstr ""
|
| 8118 |
|
| 8119 |
-
#: admin/locale.php:
|
| 8120 |
msgid "giropay"
|
| 8121 |
msgstr ""
|
| 8122 |
|
| 8123 |
-
#: admin/locale.php:
|
| 8124 |
msgid "iDEAL"
|
| 8125 |
msgstr ""
|
| 8126 |
|
| 8127 |
-
#: admin/locale.php:
|
| 8128 |
msgid "Mercado Pago"
|
| 8129 |
msgstr ""
|
| 8130 |
|
| 8131 |
-
#: admin/locale.php:
|
| 8132 |
msgid "MyBank"
|
| 8133 |
msgstr ""
|
| 8134 |
|
| 8135 |
-
#: admin/locale.php:
|
| 8136 |
msgid "Przelewy24"
|
| 8137 |
msgstr ""
|
| 8138 |
|
| 8139 |
-
#: admin/locale.php:
|
| 8140 |
msgid "SEPA-Lastschrift"
|
| 8141 |
msgstr ""
|
| 8142 |
|
| 8143 |
-
#: admin/locale.php:
|
| 8144 |
msgid "Sofort"
|
| 8145 |
msgstr ""
|
| 8146 |
|
| 8147 |
-
#: admin/locale.php:
|
| 8148 |
msgid "Venmo"
|
| 8149 |
msgstr ""
|
| 8150 |
|
| 8151 |
-
#: admin/locale.php:
|
| 8152 |
msgid "Disable Card Options"
|
| 8153 |
msgstr ""
|
| 8154 |
|
| 8155 |
-
#: admin/locale.php:
|
| 8156 |
msgid ""
|
| 8157 |
"PayPal automatically decides the card options that appear in the Smart "
|
| 8158 |
"Payment Buttons based visitors geographic location. However you can "
|
|
@@ -8160,81 +8172,88 @@ msgid ""
|
|
| 8160 |
"to your visitors."
|
| 8161 |
msgstr ""
|
| 8162 |
|
| 8163 |
-
#: admin/locale.php:
|
| 8164 |
msgid "Visa"
|
| 8165 |
msgstr ""
|
| 8166 |
|
| 8167 |
-
#: admin/locale.php:
|
| 8168 |
msgid "Mastercard"
|
| 8169 |
msgstr ""
|
| 8170 |
|
| 8171 |
-
#: admin/locale.php:
|
| 8172 |
msgid "American Express"
|
| 8173 |
msgstr ""
|
| 8174 |
|
| 8175 |
-
#: admin/locale.php:
|
| 8176 |
msgid "Discover"
|
| 8177 |
msgstr ""
|
| 8178 |
|
| 8179 |
-
#: admin/locale.php:
|
| 8180 |
msgid "JCB"
|
| 8181 |
msgstr ""
|
| 8182 |
|
| 8183 |
-
#: admin/locale.php:
|
| 8184 |
msgid "Elo"
|
| 8185 |
msgstr ""
|
| 8186 |
|
| 8187 |
-
#: admin/locale.php:
|
| 8188 |
msgid "Hiper"
|
| 8189 |
msgstr ""
|
| 8190 |
|
| 8191 |
-
#: admin/locale.php:
|
| 8192 |
msgid "Pre-fill Billing Details"
|
| 8193 |
msgstr ""
|
| 8194 |
|
| 8195 |
-
#: admin/locale.php:
|
| 8196 |
msgid ""
|
| 8197 |
"Pre-fill the payer's billing info collected on your form on the Debit or "
|
| 8198 |
"Credit Card checkout, so the payer doesn't have to enter those details "
|
| 8199 |
"again."
|
| 8200 |
msgstr ""
|
| 8201 |
|
| 8202 |
-
#: admin/locale.php:
|
| 8203 |
msgid "Customer name (optional)"
|
| 8204 |
msgstr ""
|
| 8205 |
|
| 8206 |
-
#: admin/locale.php:
|
| 8207 |
msgid "Select a name field"
|
| 8208 |
msgstr ""
|
| 8209 |
|
| 8210 |
-
#: admin/locale.php:
|
| 8211 |
msgid "Customer email address (optional)"
|
| 8212 |
msgstr ""
|
| 8213 |
|
| 8214 |
-
#: admin/locale.php:
|
| 8215 |
msgid "Select an email field"
|
| 8216 |
msgstr ""
|
| 8217 |
|
| 8218 |
-
#: admin/locale.php:
|
| 8219 |
msgid "Billing address (optional)"
|
| 8220 |
msgstr ""
|
| 8221 |
|
| 8222 |
-
#: admin/locale.php:
|
| 8223 |
msgid "Select an address field"
|
| 8224 |
msgstr ""
|
| 8225 |
|
| 8226 |
-
#: admin/locale.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8227 |
msgid "Shipping Address"
|
| 8228 |
msgstr ""
|
| 8229 |
|
| 8230 |
-
#: admin/locale.php:
|
| 8231 |
msgid ""
|
| 8232 |
"If you are selling a product that doesn't need to be shipped, you can "
|
| 8233 |
"choose to disable and hide the shipping address fields from the PayPal "
|
| 8234 |
"payment page."
|
| 8235 |
msgstr ""
|
| 8236 |
|
| 8237 |
-
#: admin/locale.php:
|
| 8238 |
msgid ""
|
| 8239 |
"By default, PayPal detects the language for the visitors based on their "
|
| 8240 |
"geolocation and browser preferences. It is recommended to pass this "
|
|
@@ -8242,373 +8261,373 @@ msgid ""
|
|
| 8242 |
"language as the rest of your site. {{link}}Supported locale codes.{{/link}}"
|
| 8243 |
msgstr ""
|
| 8244 |
|
| 8245 |
-
#: admin/locale.php:
|
| 8246 |
msgid "Eg. en_US"
|
| 8247 |
msgstr ""
|
| 8248 |
|
| 8249 |
-
#: admin/locale.php:
|
| 8250 |
msgid "Debug Mode"
|
| 8251 |
msgstr ""
|
| 8252 |
|
| 8253 |
-
#: admin/locale.php:
|
| 8254 |
msgid ""
|
| 8255 |
"PayPal debug mode helps troubleshoot any issues. However, it's recommended "
|
| 8256 |
"to disable this in production as it causes a significant increase in the "
|
| 8257 |
"script size and performance decrease."
|
| 8258 |
msgstr ""
|
| 8259 |
|
| 8260 |
-
#: admin/locale.php:
|
| 8261 |
msgid ""
|
| 8262 |
"Make sure the users fill this field as per the selected validation and warn "
|
| 8263 |
"them when they haven't"
|
| 8264 |
msgstr ""
|
| 8265 |
|
| 8266 |
-
#: admin/locale.php:
|
| 8267 |
msgid "National"
|
| 8268 |
msgstr ""
|
| 8269 |
|
| 8270 |
-
#: admin/locale.php:
|
| 8271 |
msgid "Select the country to validate phone number for"
|
| 8272 |
msgstr ""
|
| 8273 |
|
| 8274 |
-
#: admin/locale.php:
|
| 8275 |
msgid "International"
|
| 8276 |
msgstr ""
|
| 8277 |
|
| 8278 |
-
#: admin/locale.php:
|
| 8279 |
msgid "Default country"
|
| 8280 |
msgstr ""
|
| 8281 |
|
| 8282 |
-
#: admin/locale.php:
|
| 8283 |
msgid "Character Limit"
|
| 8284 |
msgstr ""
|
| 8285 |
|
| 8286 |
-
#: admin/locale.php:
|
| 8287 |
msgid "Limit field to"
|
| 8288 |
msgstr ""
|
| 8289 |
|
| 8290 |
-
#: admin/locale.php:
|
| 8291 |
msgid "Characters"
|
| 8292 |
msgstr ""
|
| 8293 |
|
| 8294 |
-
#: admin/locale.php:
|
| 8295 |
#: library/model/class-form-entry-model.php:1632
|
| 8296 |
#: library/modules/quizzes/admin/admin-loader.php:634
|
| 8297 |
msgid "Content"
|
| 8298 |
msgstr ""
|
| 8299 |
|
| 8300 |
-
#: admin/locale.php:
|
| 8301 |
#: library/model/class-form-entry-model.php:1662
|
| 8302 |
msgid "Excerpt"
|
| 8303 |
msgstr ""
|
| 8304 |
|
| 8305 |
-
#: admin/locale.php:
|
| 8306 |
msgid "Featured Image"
|
| 8307 |
msgstr ""
|
| 8308 |
|
| 8309 |
-
#: admin/locale.php:
|
| 8310 |
msgid "Custom Fields"
|
| 8311 |
msgstr ""
|
| 8312 |
|
| 8313 |
-
#: admin/locale.php:
|
| 8314 |
msgid ""
|
| 8315 |
"Allow users to submit post data with this field. By default, this will "
|
| 8316 |
"create new posts, but you can assign it to any post type in the "
|
| 8317 |
"{{strong}}Settings{{/strong}} tab."
|
| 8318 |
msgstr ""
|
| 8319 |
|
| 8320 |
-
#: admin/locale.php:
|
| 8321 |
msgid "Post type"
|
| 8322 |
msgstr ""
|
| 8323 |
|
| 8324 |
-
#: admin/locale.php:
|
| 8325 |
msgid "Choose the post type associated with this field."
|
| 8326 |
msgstr ""
|
| 8327 |
|
| 8328 |
-
#: admin/locale.php:
|
| 8329 |
msgid "Assigned post type"
|
| 8330 |
msgstr ""
|
| 8331 |
|
| 8332 |
-
#: admin/locale.php:
|
| 8333 |
msgid "post"
|
| 8334 |
msgstr ""
|
| 8335 |
|
| 8336 |
-
#: admin/locale.php:
|
| 8337 |
msgid "Default status"
|
| 8338 |
msgstr ""
|
| 8339 |
|
| 8340 |
-
#: admin/locale.php:
|
| 8341 |
msgid "When a user submits this form, choose what status this post data is."
|
| 8342 |
msgstr ""
|
| 8343 |
|
| 8344 |
-
#: admin/locale.php:
|
| 8345 |
msgid "pending"
|
| 8346 |
msgstr ""
|
| 8347 |
|
| 8348 |
-
#: admin/locale.php:
|
| 8349 |
msgid "Pending Review"
|
| 8350 |
msgstr ""
|
| 8351 |
|
| 8352 |
-
#: admin/locale.php:
|
| 8353 |
msgid "Default author"
|
| 8354 |
msgstr ""
|
| 8355 |
|
| 8356 |
-
#: admin/locale.php:
|
| 8357 |
msgid ""
|
| 8358 |
"By default we'll assign posts to users if they're logged in, and fall back "
|
| 8359 |
"to the user specified below if you're allowing visitors to make posts. You "
|
| 8360 |
"can also override this to always assign posts to a specified user."
|
| 8361 |
msgstr ""
|
| 8362 |
|
| 8363 |
-
#: admin/locale.php:
|
| 8364 |
msgid "Always assign posts to this user"
|
| 8365 |
msgstr ""
|
| 8366 |
|
| 8367 |
-
#: admin/locale.php:
|
| 8368 |
msgid "Taxonomies limits"
|
| 8369 |
msgstr ""
|
| 8370 |
|
| 8371 |
-
#: admin/locale.php:
|
| 8372 |
msgid "Choose whether to allow single or multiple categories or tags on this post."
|
| 8373 |
msgstr ""
|
| 8374 |
|
| 8375 |
-
#: admin/locale.php:
|
| 8376 |
msgid "Enter title"
|
| 8377 |
msgstr ""
|
| 8378 |
|
| 8379 |
-
#: admin/locale.php:
|
| 8380 |
msgid "Subtitle (optional)"
|
| 8381 |
msgstr ""
|
| 8382 |
|
| 8383 |
-
#: admin/locale.php:
|
| 8384 |
msgid "Enter subtitle"
|
| 8385 |
msgstr ""
|
| 8386 |
|
| 8387 |
-
#: admin/locale.php:
|
| 8388 |
msgid "Add a border to this section."
|
| 8389 |
msgstr ""
|
| 8390 |
|
| 8391 |
-
#: admin/locale.php:
|
| 8392 |
msgid "Signature Filetype"
|
| 8393 |
msgstr ""
|
| 8394 |
|
| 8395 |
-
#: admin/locale.php:
|
| 8396 |
msgid "Choose the filetype to save your users' signature in."
|
| 8397 |
msgstr ""
|
| 8398 |
|
| 8399 |
-
#: admin/locale.php:
|
| 8400 |
msgid "PNG"
|
| 8401 |
msgstr ""
|
| 8402 |
|
| 8403 |
-
#: admin/locale.php:
|
| 8404 |
msgid "JPG"
|
| 8405 |
msgstr ""
|
| 8406 |
|
| 8407 |
-
#: admin/locale.php:
|
| 8408 |
msgid "Choose the height of your signature field. The default value is 180px."
|
| 8409 |
msgstr ""
|
| 8410 |
|
| 8411 |
-
#: admin/locale.php:
|
| 8412 |
msgid "Stroke Thickness"
|
| 8413 |
msgstr ""
|
| 8414 |
|
| 8415 |
-
#: admin/locale.php:
|
| 8416 |
msgid ""
|
| 8417 |
"Choose the thickness in pixels for signature strokes. The default value is "
|
| 8418 |
"2px."
|
| 8419 |
msgstr ""
|
| 8420 |
|
| 8421 |
-
#: admin/locale.php:
|
| 8422 |
msgid ""
|
| 8423 |
"Note: Pass comma-separated values for this query parameter to pre-populate "
|
| 8424 |
"multiple options."
|
| 8425 |
msgstr ""
|
| 8426 |
|
| 8427 |
-
#: admin/locale.php:
|
| 8428 |
msgid "Search"
|
| 8429 |
msgstr ""
|
| 8430 |
|
| 8431 |
-
#: admin/locale.php:
|
| 8432 |
msgid "Display the search box in a dropdown"
|
| 8433 |
msgstr ""
|
| 8434 |
|
| 8435 |
-
#: admin/locale.php:
|
| 8436 |
msgid "Limit Submission"
|
| 8437 |
msgstr ""
|
| 8438 |
|
| 8439 |
-
#: admin/locale.php:
|
| 8440 |
msgid ""
|
| 8441 |
"You can limit submissions of each option to a certain number, and once an "
|
| 8442 |
"option reaches the submission limit, we'll hide that option from the "
|
| 8443 |
"dropdown list."
|
| 8444 |
msgstr ""
|
| 8445 |
|
| 8446 |
-
#: admin/locale.php:
|
| 8447 |
msgid ""
|
| 8448 |
"You can set a limit for your options in the LABELS tab. Options for which "
|
| 8449 |
"limit field is left empty can have unlimited submissions."
|
| 8450 |
msgstr ""
|
| 8451 |
|
| 8452 |
-
#: admin/locale.php:
|
| 8453 |
msgid ""
|
| 8454 |
"Choose whether to allow this field to be used in calculations or not. The "
|
| 8455 |
"value used in calculations is the same as the input value of this field."
|
| 8456 |
msgstr ""
|
| 8457 |
|
| 8458 |
-
#: admin/locale.php:
|
| 8459 |
msgid "Credit / Debit Card"
|
| 8460 |
msgstr ""
|
| 8461 |
|
| 8462 |
-
#: admin/locale.php:
|
| 8463 |
msgid ""
|
| 8464 |
"Choose your preferred language for the Stripe field. This will affect the "
|
| 8465 |
"placeholders language, and the card validation errors returned by the "
|
| 8466 |
"Stripe."
|
| 8467 |
msgstr ""
|
| 8468 |
|
| 8469 |
-
#: admin/locale.php:
|
| 8470 |
msgid "Auto"
|
| 8471 |
msgstr ""
|
| 8472 |
|
| 8473 |
-
#: admin/locale.php:
|
| 8474 |
msgid "English (en)"
|
| 8475 |
msgstr ""
|
| 8476 |
|
| 8477 |
-
#: admin/locale.php:
|
| 8478 |
msgid "Simplified Chinese (zh)"
|
| 8479 |
msgstr ""
|
| 8480 |
|
| 8481 |
-
#: admin/locale.php:
|
| 8482 |
msgid "Danish (da)"
|
| 8483 |
msgstr ""
|
| 8484 |
|
| 8485 |
-
#: admin/locale.php:
|
| 8486 |
msgid "Dutch (nl)"
|
| 8487 |
msgstr ""
|
| 8488 |
|
| 8489 |
-
#: admin/locale.php:
|
| 8490 |
msgid "Finnish (fi)"
|
| 8491 |
msgstr ""
|
| 8492 |
|
| 8493 |
-
#: admin/locale.php:
|
| 8494 |
msgid "French (fr)"
|
| 8495 |
msgstr ""
|
| 8496 |
|
| 8497 |
-
#: admin/locale.php:
|
| 8498 |
msgid "German (de)"
|
| 8499 |
msgstr ""
|
| 8500 |
|
| 8501 |
-
#: admin/locale.php:
|
| 8502 |
msgid "Italian (it)"
|
| 8503 |
msgstr ""
|
| 8504 |
|
| 8505 |
-
#: admin/locale.php:
|
| 8506 |
msgid "Japanese (ja)"
|
| 8507 |
msgstr ""
|
| 8508 |
|
| 8509 |
-
#: admin/locale.php:
|
| 8510 |
msgid "Norwegian (no)"
|
| 8511 |
msgstr ""
|
| 8512 |
|
| 8513 |
-
#: admin/locale.php:
|
| 8514 |
msgid "Spanish (es)"
|
| 8515 |
msgstr ""
|
| 8516 |
|
| 8517 |
-
#: admin/locale.php:
|
| 8518 |
msgid "Swedish (sv)"
|
| 8519 |
msgstr ""
|
| 8520 |
|
| 8521 |
-
#: admin/locale.php:
|
| 8522 |
msgid "Card icon"
|
| 8523 |
msgstr ""
|
| 8524 |
|
| 8525 |
-
#: admin/locale.php:
|
| 8526 |
msgid "Choose whether you want to show the card icon on the Stripe field."
|
| 8527 |
msgstr ""
|
| 8528 |
|
| 8529 |
-
#: admin/locale.php:
|
| 8530 |
msgid "Postal code"
|
| 8531 |
msgstr ""
|
| 8532 |
|
| 8533 |
-
#: admin/locale.php:
|
| 8534 |
msgid "Choose whether you want to collect the postal code on the Stripe field."
|
| 8535 |
msgstr ""
|
| 8536 |
|
| 8537 |
-
#: admin/locale.php:
|
| 8538 |
msgid "Prefill (optional)"
|
| 8539 |
msgstr ""
|
| 8540 |
|
| 8541 |
-
#: admin/locale.php:
|
| 8542 |
msgid ""
|
| 8543 |
"If you are already collecting ZIP code on your form, you can pre-fill it on "
|
| 8544 |
"the Stripe field."
|
| 8545 |
msgstr ""
|
| 8546 |
|
| 8547 |
-
#: admin/locale.php:
|
| 8548 |
msgid ""
|
| 8549 |
"You have not connected your Stripe account with Forminator. Connect your "
|
| 8550 |
"Stripe account {{link}}here{{/link}} and then come back to configure this "
|
| 8551 |
"field."
|
| 8552 |
msgstr ""
|
| 8553 |
|
| 8554 |
-
#: admin/locale.php:
|
| 8555 |
msgid "Payment Mode"
|
| 8556 |
msgstr ""
|
| 8557 |
|
| 8558 |
-
#: admin/locale.php:
|
| 8559 |
msgid ""
|
| 8560 |
"We recommend using Test mode to ensure the payments are working as expected "
|
| 8561 |
"and when you are ready to start collecting live payments, switch to Live "
|
| 8562 |
"payments mode. "
|
| 8563 |
msgstr ""
|
| 8564 |
|
| 8565 |
-
#: admin/locale.php:
|
| 8566 |
msgid "Test"
|
| 8567 |
msgstr ""
|
| 8568 |
|
| 8569 |
-
#: admin/locale.php:
|
| 8570 |
msgid "Choose the currency your users will be charged in."
|
| 8571 |
msgstr ""
|
| 8572 |
|
| 8573 |
-
#: admin/locale.php:
|
| 8574 |
msgid "Payment Plan"
|
| 8575 |
msgstr ""
|
| 8576 |
|
| 8577 |
-
#: admin/locale.php:
|
| 8578 |
msgid ""
|
| 8579 |
"Payment plans let you set up options for accepting payments on your site. "
|
| 8580 |
"You can add multiple plans and conditionally process them based on your "
|
| 8581 |
"form data."
|
| 8582 |
msgstr ""
|
| 8583 |
|
| 8584 |
-
#: admin/locale.php:
|
| 8585 |
msgid ""
|
| 8586 |
"Note: You'll need to configure conditions on each plan to let Forminator "
|
| 8587 |
"know when to process each of the payment plans below."
|
| 8588 |
msgstr ""
|
| 8589 |
|
| 8590 |
-
#: admin/locale.php:
|
| 8591 |
msgid ""
|
| 8592 |
"There is an error in one or more of your payment plans. Please review the "
|
| 8593 |
"error and try again."
|
| 8594 |
msgstr ""
|
| 8595 |
|
| 8596 |
-
#: admin/locale.php:
|
| 8597 |
msgid "Payment Receipt"
|
| 8598 |
msgstr ""
|
| 8599 |
|
| 8600 |
-
#: admin/locale.php:
|
| 8601 |
msgid ""
|
| 8602 |
"Choose whether you want Stripe to email a receipt to your customers on "
|
| 8603 |
"successful payment. Note that Stripe sends the email receipt only for live "
|
| 8604 |
"payments. {{link}}Customize email template{{/link}}."
|
| 8605 |
msgstr ""
|
| 8606 |
|
| 8607 |
-
#: admin/locale.php:
|
| 8608 |
msgid "Email address"
|
| 8609 |
msgstr ""
|
| 8610 |
|
| 8611 |
-
#: admin/locale.php:
|
| 8612 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:66
|
| 8613 |
#: library/modules/custom-forms/form-templates/template-leads.php:60
|
| 8614 |
#: library/modules/custom-forms/form-templates/template-newsletter.php:66
|
|
@@ -8617,73 +8636,73 @@ msgstr ""
|
|
| 8617 |
msgid "E.g. john@doe.com"
|
| 8618 |
msgstr ""
|
| 8619 |
|
| 8620 |
-
#: admin/locale.php:
|
| 8621 |
msgid "Payment Details (optional)"
|
| 8622 |
msgstr ""
|
| 8623 |
|
| 8624 |
-
#: admin/locale.php:
|
| 8625 |
msgid ""
|
| 8626 |
"You can add a statement decipher and a description to help you and your "
|
| 8627 |
"customers recognise the transactions made on this form."
|
| 8628 |
msgstr ""
|
| 8629 |
|
| 8630 |
-
#: admin/locale.php:
|
| 8631 |
msgid "Statement decipher"
|
| 8632 |
msgstr ""
|
| 8633 |
|
| 8634 |
-
#: admin/locale.php:
|
| 8635 |
msgid "E.g. Company Name"
|
| 8636 |
msgstr ""
|
| 8637 |
|
| 8638 |
-
#: admin/locale.php:
|
| 8639 |
msgid "This is the business name your customers will see on their card statement."
|
| 8640 |
msgstr ""
|
| 8641 |
|
| 8642 |
-
#: admin/locale.php:
|
| 8643 |
msgid "Up to 22 characters only"
|
| 8644 |
msgstr ""
|
| 8645 |
|
| 8646 |
-
#: admin/locale.php:
|
| 8647 |
msgid "Enter your payment description here"
|
| 8648 |
msgstr ""
|
| 8649 |
|
| 8650 |
-
#: admin/locale.php:
|
| 8651 |
msgid ""
|
| 8652 |
"This appears on your Stripe account and on the payment receipt sent to your "
|
| 8653 |
"customers."
|
| 8654 |
msgstr ""
|
| 8655 |
|
| 8656 |
-
#: admin/locale.php:
|
| 8657 |
msgid "Payment description"
|
| 8658 |
msgstr ""
|
| 8659 |
|
| 8660 |
-
#: admin/locale.php:
|
| 8661 |
msgid "Card Validation"
|
| 8662 |
msgstr ""
|
| 8663 |
|
| 8664 |
-
#: admin/locale.php:
|
| 8665 |
msgid ""
|
| 8666 |
"Note: Stripe field automatically validates the card as the user fills the "
|
| 8667 |
"card details regardless of the validation behavior set on the Behaviours "
|
| 8668 |
"tab."
|
| 8669 |
msgstr ""
|
| 8670 |
|
| 8671 |
-
#: admin/locale.php:
|
| 8672 |
msgid "Billing Details"
|
| 8673 |
msgstr ""
|
| 8674 |
|
| 8675 |
-
#: admin/locale.php:
|
| 8676 |
msgid ""
|
| 8677 |
"If you are collecting billing details on your forms, you can send that data "
|
| 8678 |
"to Stripe. The billing details will appear on your Stripe dashboard for "
|
| 8679 |
"each payment."
|
| 8680 |
msgstr ""
|
| 8681 |
|
| 8682 |
-
#: admin/locale.php:
|
| 8683 |
msgid "Meta Data"
|
| 8684 |
msgstr ""
|
| 8685 |
|
| 8686 |
-
#: admin/locale.php:
|
| 8687 |
msgid ""
|
| 8688 |
"You can send custom meta data to Stripe. This would appear under the "
|
| 8689 |
"MetaData section of every payment. A maximum of 20 meta keys can be sent. "
|
|
@@ -8691,354 +8710,354 @@ msgid ""
|
|
| 8691 |
"truncated to 500 characters as Stripe's requirements."
|
| 8692 |
msgstr ""
|
| 8693 |
|
| 8694 |
-
#: admin/locale.php:
|
| 8695 |
msgid "MetaData"
|
| 8696 |
msgstr ""
|
| 8697 |
|
| 8698 |
-
#: admin/locale.php:
|
| 8699 |
msgid "Additional CSS Classes"
|
| 8700 |
msgstr ""
|
| 8701 |
|
| 8702 |
-
#: admin/locale.php:
|
| 8703 |
msgid ""
|
| 8704 |
"Stripe automatically adds classes to the container DOM element based on the "
|
| 8705 |
"field state. However, you can customize them here. {{link}}Read "
|
| 8706 |
"more{{/link}}"
|
| 8707 |
msgstr ""
|
| 8708 |
|
| 8709 |
-
#: admin/locale.php:
|
| 8710 |
msgid "Base class"
|
| 8711 |
msgstr ""
|
| 8712 |
|
| 8713 |
-
#: admin/locale.php:
|
| 8714 |
msgid "Complete"
|
| 8715 |
msgstr ""
|
| 8716 |
|
| 8717 |
-
#: admin/locale.php:
|
| 8718 |
msgid "Empty"
|
| 8719 |
msgstr ""
|
| 8720 |
|
| 8721 |
-
#: admin/locale.php:
|
| 8722 |
msgid "Focused"
|
| 8723 |
msgstr ""
|
| 8724 |
|
| 8725 |
-
#: admin/locale.php:
|
| 8726 |
msgid "Autofilled (Chrome and Safari only)"
|
| 8727 |
msgstr ""
|
| 8728 |
|
| 8729 |
-
#: admin/locale.php:
|
| 8730 |
msgid ""
|
| 8731 |
"The Stripe Subscription Add-ons is required to use this feature. Install it "
|
| 8732 |
"from the Add-ons page."
|
| 8733 |
msgstr ""
|
| 8734 |
|
| 8735 |
-
#: admin/locale.php:
|
| 8736 |
msgid ""
|
| 8737 |
"The Stripe Subscription Add-on is required to use this feature. Upgrade to "
|
| 8738 |
"Pro to install the add-on."
|
| 8739 |
msgstr ""
|
| 8740 |
|
| 8741 |
-
#: admin/locale.php:
|
| 8742 |
msgid "View Add-ons"
|
| 8743 |
msgstr ""
|
| 8744 |
|
| 8745 |
-
#: admin/locale.php:
|
| 8746 |
msgid "Try Pro for 10% Off"
|
| 8747 |
msgstr ""
|
| 8748 |
|
| 8749 |
-
#: admin/locale.php:
|
| 8750 |
msgid "One Time"
|
| 8751 |
msgstr ""
|
| 8752 |
|
| 8753 |
-
#: admin/locale.php:
|
| 8754 |
msgid "Subscription"
|
| 8755 |
msgstr ""
|
| 8756 |
|
| 8757 |
-
#: admin/locale.php:
|
| 8758 |
msgid "Remove This Plan"
|
| 8759 |
msgstr ""
|
| 8760 |
|
| 8761 |
-
#: admin/locale.php:
|
| 8762 |
msgid "Open Plan Settings"
|
| 8763 |
msgstr ""
|
| 8764 |
|
| 8765 |
-
#: admin/locale.php:
|
| 8766 |
msgid "Plan setup"
|
| 8767 |
msgstr ""
|
| 8768 |
|
| 8769 |
-
#: admin/locale.php:
|
| 8770 |
msgid "Plan"
|
| 8771 |
msgstr ""
|
| 8772 |
|
| 8773 |
-
#: admin/locale.php:
|
| 8774 |
msgid "Add Another Plan"
|
| 8775 |
msgstr ""
|
| 8776 |
|
| 8777 |
-
#: admin/locale.php:
|
| 8778 |
msgid "Subscription {{span}}Pro{{/span}}"
|
| 8779 |
msgstr ""
|
| 8780 |
|
| 8781 |
-
#: admin/locale.php:
|
| 8782 |
msgid "Plan name"
|
| 8783 |
msgstr ""
|
| 8784 |
|
| 8785 |
-
#: admin/locale.php:
|
| 8786 |
msgid "This will be displayed on the submissions as well as the Stripe dashboard."
|
| 8787 |
msgstr ""
|
| 8788 |
|
| 8789 |
-
#: admin/locale.php:
|
| 8790 |
msgid "Plan Name is required."
|
| 8791 |
msgstr ""
|
| 8792 |
|
| 8793 |
-
#: admin/locale.php:
|
| 8794 |
#: library/modules/custom-forms/admin/admin-page-entries.php:437
|
| 8795 |
msgid "Payment type"
|
| 8796 |
msgstr ""
|
| 8797 |
|
| 8798 |
-
#: admin/locale.php:
|
| 8799 |
msgid "Plan amount"
|
| 8800 |
msgstr ""
|
| 8801 |
|
| 8802 |
-
#: admin/locale.php:
|
| 8803 |
msgid "Enter an amount or select a value from a form field in the Variable tab."
|
| 8804 |
msgstr ""
|
| 8805 |
|
| 8806 |
-
#: admin/locale.php:
|
| 8807 |
msgid "E.g., 20.00"
|
| 8808 |
msgstr ""
|
| 8809 |
|
| 8810 |
-
#: admin/locale.php:
|
| 8811 |
#: library/modules/custom-forms/admin/admin-page-entries.php:441
|
| 8812 |
#: library/modules/custom-forms/admin/admin-page-entries.php:490
|
| 8813 |
msgid "Amount"
|
| 8814 |
msgstr ""
|
| 8815 |
|
| 8816 |
-
#: admin/locale.php:
|
| 8817 |
msgid "Choose form field"
|
| 8818 |
msgstr ""
|
| 8819 |
|
| 8820 |
-
#: admin/locale.php:
|
| 8821 |
#: library/modules/custom-forms/admin/admin-page-entries.php:449
|
| 8822 |
msgid "Quantity"
|
| 8823 |
msgstr ""
|
| 8824 |
|
| 8825 |
-
#: admin/locale.php:
|
| 8826 |
msgid "Enter the quantity or let your users set the quantity in a form field."
|
| 8827 |
msgstr ""
|
| 8828 |
|
| 8829 |
-
#: admin/locale.php:
|
| 8830 |
msgid "E.g., 1"
|
| 8831 |
msgstr ""
|
| 8832 |
|
| 8833 |
-
#: admin/locale.php:
|
| 8834 |
msgid "Please enter a quantity or select a form field."
|
| 8835 |
msgstr ""
|
| 8836 |
|
| 8837 |
-
#: admin/locale.php:
|
| 8838 |
msgid "Bill every"
|
| 8839 |
msgstr ""
|
| 8840 |
|
| 8841 |
-
#: admin/locale.php:
|
| 8842 |
msgid "Duration cannot be empty."
|
| 8843 |
msgstr ""
|
| 8844 |
|
| 8845 |
-
#: admin/locale.php:
|
| 8846 |
msgid "Day(s)"
|
| 8847 |
msgstr ""
|
| 8848 |
|
| 8849 |
-
#: admin/locale.php:
|
| 8850 |
msgid "Week(s)"
|
| 8851 |
msgstr ""
|
| 8852 |
|
| 8853 |
-
#: admin/locale.php:
|
| 8854 |
msgid "Month(s)"
|
| 8855 |
msgstr ""
|
| 8856 |
|
| 8857 |
-
#: admin/locale.php:
|
| 8858 |
msgid "Year(s)"
|
| 8859 |
msgstr ""
|
| 8860 |
|
| 8861 |
-
#: admin/locale.php:
|
| 8862 |
msgid "Allow Trial Period"
|
| 8863 |
msgstr ""
|
| 8864 |
|
| 8865 |
-
#: admin/locale.php:
|
| 8866 |
msgid "Check this option to offer a limited-time free trial for this plan"
|
| 8867 |
msgstr ""
|
| 8868 |
|
| 8869 |
-
#: admin/locale.php:
|
| 8870 |
msgid "Trial Duration"
|
| 8871 |
msgstr ""
|
| 8872 |
|
| 8873 |
-
#: admin/locale.php:
|
| 8874 |
msgid ""
|
| 8875 |
"Enter the number of days that users will try your product for free before "
|
| 8876 |
"they start paying."
|
| 8877 |
msgstr ""
|
| 8878 |
|
| 8879 |
-
#: admin/locale.php:
|
| 8880 |
msgid "E.g., 14"
|
| 8881 |
msgstr ""
|
| 8882 |
|
| 8883 |
-
#: admin/locale.php:
|
| 8884 |
msgid "Days"
|
| 8885 |
msgstr ""
|
| 8886 |
|
| 8887 |
-
#: admin/locale.php:
|
| 8888 |
msgid "Max characters"
|
| 8889 |
msgstr ""
|
| 8890 |
|
| 8891 |
-
#: admin/locale.php:
|
| 8892 |
msgid ""
|
| 8893 |
"By default the user can enter as many characters as they want. Use this "
|
| 8894 |
"setting to limit the number of characters the user can enter. Leave field "
|
| 8895 |
"blank to allow unlimited characters."
|
| 8896 |
msgstr ""
|
| 8897 |
|
| 8898 |
-
#: admin/locale.php:
|
| 8899 |
msgid "Character limit"
|
| 8900 |
msgstr ""
|
| 8901 |
|
| 8902 |
-
#: admin/locale.php:
|
| 8903 |
#: admin/views/common/entries/filter.php:95
|
| 8904 |
msgid "E.g. 100"
|
| 8905 |
msgstr ""
|
| 8906 |
|
| 8907 |
-
#: admin/locale.php:
|
| 8908 |
msgid "Words"
|
| 8909 |
msgstr ""
|
| 8910 |
|
| 8911 |
-
#: admin/locale.php:
|
| 8912 |
msgid "You can add new line"
|
| 8913 |
msgstr ""
|
| 8914 |
|
| 8915 |
-
#: admin/locale.php:
|
| 8916 |
msgid "Rich-Text editor"
|
| 8917 |
msgstr ""
|
| 8918 |
|
| 8919 |
-
#: admin/locale.php:
|
| 8920 |
msgid "Enable TinyMCE editor to allow the formatted text."
|
| 8921 |
msgstr ""
|
| 8922 |
|
| 8923 |
-
#: admin/locale.php:
|
| 8924 |
msgid "Default height"
|
| 8925 |
msgstr ""
|
| 8926 |
|
| 8927 |
-
#: admin/locale.php:
|
| 8928 |
msgid "Choose the default minimum height of your textarea field."
|
| 8929 |
msgstr ""
|
| 8930 |
|
| 8931 |
-
#: admin/locale.php:
|
| 8932 |
msgid ""
|
| 8933 |
"{{strong}}Note:{{/strong}} The query parameter's value passed in URL should "
|
| 8934 |
"match with the selected time format."
|
| 8935 |
msgstr ""
|
| 8936 |
|
| 8937 |
-
#: admin/locale.php:
|
| 8938 |
msgid "Number inputs"
|
| 8939 |
msgstr ""
|
| 8940 |
|
| 8941 |
-
#: admin/locale.php:
|
| 8942 |
msgid "12 hour"
|
| 8943 |
msgstr ""
|
| 8944 |
|
| 8945 |
-
#: admin/locale.php:
|
| 8946 |
msgid "24 hour"
|
| 8947 |
msgstr ""
|
| 8948 |
|
| 8949 |
-
#: admin/locale.php:
|
| 8950 |
msgid "Hours"
|
| 8951 |
msgstr ""
|
| 8952 |
|
| 8953 |
-
#: admin/locale.php:
|
| 8954 |
msgid "Minutes"
|
| 8955 |
msgstr ""
|
| 8956 |
|
| 8957 |
-
#: admin/locale.php:
|
| 8958 |
msgid "Increments"
|
| 8959 |
msgstr ""
|
| 8960 |
|
| 8961 |
-
#: admin/locale.php:
|
| 8962 |
msgid ""
|
| 8963 |
"Choose what time increments you want to use for the hour and minute "
|
| 8964 |
"timepickers."
|
| 8965 |
msgstr ""
|
| 8966 |
|
| 8967 |
-
#: admin/locale.php:
|
| 8968 |
msgid "Hour"
|
| 8969 |
msgstr ""
|
| 8970 |
|
| 8971 |
-
#: admin/locale.php:
|
| 8972 |
msgid "Minute"
|
| 8973 |
msgstr ""
|
| 8974 |
|
| 8975 |
-
#: admin/locale.php:
|
| 8976 |
msgid ""
|
| 8977 |
"Choose a time limit for the time picker field to restrict the time "
|
| 8978 |
"selection between specific hours."
|
| 8979 |
msgstr ""
|
| 8980 |
|
| 8981 |
-
#: admin/locale.php:
|
| 8982 |
msgid "Specific Hours"
|
| 8983 |
msgstr ""
|
| 8984 |
|
| 8985 |
-
#: admin/locale.php:
|
| 8986 |
msgid "Start Time"
|
| 8987 |
msgstr ""
|
| 8988 |
|
| 8989 |
-
#: admin/locale.php:
|
| 8990 |
msgid "AM"
|
| 8991 |
msgstr ""
|
| 8992 |
|
| 8993 |
-
#: admin/locale.php:
|
| 8994 |
msgid "PM"
|
| 8995 |
msgstr ""
|
| 8996 |
|
| 8997 |
-
#: admin/locale.php:
|
| 8998 |
msgid "End Time"
|
| 8999 |
msgstr ""
|
| 9000 |
|
| 9001 |
-
#: admin/locale.php:
|
| 9002 |
msgid "This error message will be used when time entered is out of the set limits."
|
| 9003 |
msgstr ""
|
| 9004 |
|
| 9005 |
-
#: admin/locale.php:
|
| 9006 |
msgid "Default Time"
|
| 9007 |
msgstr ""
|
| 9008 |
|
| 9009 |
-
#: admin/locale.php:
|
| 9010 |
msgid "Use this feature to specify a default selected time."
|
| 9011 |
msgstr ""
|
| 9012 |
|
| 9013 |
-
#: admin/locale.php:
|
| 9014 |
msgid "Default time can't be outside the allowed time limit."
|
| 9015 |
msgstr ""
|
| 9016 |
|
| 9017 |
-
#: admin/locale.php:
|
| 9018 |
msgid "Limit number of files"
|
| 9019 |
msgstr ""
|
| 9020 |
|
| 9021 |
-
#: admin/locale.php:
|
| 9022 |
msgid "Choose the maximum number of files that can be uploaded using this field."
|
| 9023 |
msgstr ""
|
| 9024 |
|
| 9025 |
-
#: admin/locale.php:
|
| 9026 |
msgid "Unlimited"
|
| 9027 |
msgstr ""
|
| 9028 |
|
| 9029 |
-
#: admin/locale.php:
|
| 9030 |
msgid "File upload limit"
|
| 9031 |
msgstr ""
|
| 9032 |
|
| 9033 |
-
#: admin/locale.php:
|
| 9034 |
msgid "Filesize limit per file"
|
| 9035 |
msgstr ""
|
| 9036 |
|
| 9037 |
-
#: admin/locale.php:
|
| 9038 |
msgid "Filesize limit"
|
| 9039 |
msgstr ""
|
| 9040 |
|
| 9041 |
-
#: admin/locale.php:
|
| 9042 |
msgid ""
|
| 9043 |
"We've detected your server will allow uploads up to %(maxUpload)sMB in size "
|
| 9044 |
"currently. You can set a lower limit than this using the input below, "
|
|
@@ -9046,34 +9065,34 @@ msgid ""
|
|
| 9046 |
"adjust this in your server's PHP.ini settings."
|
| 9047 |
msgstr ""
|
| 9048 |
|
| 9049 |
-
#: admin/locale.php:
|
| 9050 |
msgid "Upload limit per file"
|
| 9051 |
msgstr ""
|
| 9052 |
|
| 9053 |
-
#: admin/locale.php:
|
| 9054 |
msgid "MB"
|
| 9055 |
msgstr ""
|
| 9056 |
|
| 9057 |
-
#: admin/locale.php:
|
| 9058 |
msgid "KB"
|
| 9059 |
msgstr ""
|
| 9060 |
|
| 9061 |
-
#: admin/locale.php:
|
| 9062 |
msgid "B"
|
| 9063 |
msgstr ""
|
| 9064 |
|
| 9065 |
-
#: admin/locale.php:
|
| 9066 |
msgid ""
|
| 9067 |
"The file size you have entered exceeds what your current hosting settings "
|
| 9068 |
"are capped to. You need to increase your max filesize limit at the server "
|
| 9069 |
"level first."
|
| 9070 |
msgstr ""
|
| 9071 |
|
| 9072 |
-
#: admin/locale.php:
|
| 9073 |
msgid "Upload method"
|
| 9074 |
msgstr ""
|
| 9075 |
|
| 9076 |
-
#: admin/locale.php:
|
| 9077 |
msgid ""
|
| 9078 |
"Choose whether you want to use AJAX to upload individual files as they are "
|
| 9079 |
"selected or use the traditional method of uploading all files together on "
|
|
@@ -9081,30 +9100,30 @@ msgid ""
|
|
| 9081 |
"timeouts."
|
| 9082 |
msgstr ""
|
| 9083 |
|
| 9084 |
-
#: admin/locale.php:
|
| 9085 |
msgid "AJAX"
|
| 9086 |
msgstr ""
|
| 9087 |
|
| 9088 |
-
#: admin/locale.php:
|
| 9089 |
msgid "On form submission"
|
| 9090 |
msgstr ""
|
| 9091 |
|
| 9092 |
-
#: admin/locale.php:
|
| 9093 |
msgid "Show files in media library"
|
| 9094 |
msgstr ""
|
| 9095 |
|
| 9096 |
-
#: admin/locale.php:
|
| 9097 |
msgid ""
|
| 9098 |
"Choose whether you want to show the files uploaded by your visitors using "
|
| 9099 |
"this field in your media library."
|
| 9100 |
msgstr ""
|
| 9101 |
|
| 9102 |
-
#: admin/locale.php:
|
| 9103 |
#: library/modules/custom-forms/admin/admin-page-new.php:22
|
| 9104 |
msgid "Edit Form"
|
| 9105 |
msgstr ""
|
| 9106 |
|
| 9107 |
-
#: admin/locale.php:
|
| 9108 |
#: admin/views/addons/header.php:8 admin/views/common/entries/header.php:7
|
| 9109 |
#: admin/views/common/list/header.php:24
|
| 9110 |
#: admin/views/common/reports/header.php:7 admin/views/dashboard/header.php:7
|
|
@@ -9112,456 +9131,456 @@ msgstr ""
|
|
| 9112 |
msgid "View Documentation"
|
| 9113 |
msgstr ""
|
| 9114 |
|
| 9115 |
-
#: admin/locale.php:
|
| 9116 |
msgid "Give your form a name"
|
| 9117 |
msgstr ""
|
| 9118 |
|
| 9119 |
-
#: admin/locale.php:
|
| 9120 |
msgid "Please, enter a valid name."
|
| 9121 |
msgstr ""
|
| 9122 |
|
| 9123 |
-
#: admin/locale.php:
|
| 9124 |
msgid "Send data if"
|
| 9125 |
msgstr ""
|
| 9126 |
|
| 9127 |
-
#: admin/locale.php:
|
| 9128 |
msgid "Fetching integration list…"
|
| 9129 |
msgstr ""
|
| 9130 |
|
| 9131 |
-
#: admin/locale.php:
|
| 9132 |
msgid "You need to save this form before using integrations."
|
| 9133 |
msgstr ""
|
| 9134 |
|
| 9135 |
-
#: admin/locale.php:
|
| 9136 |
msgid "Try Again"
|
| 9137 |
msgstr ""
|
| 9138 |
|
| 9139 |
-
#: admin/locale.php:
|
| 9140 |
#: admin/views/integrations/content.php:20
|
| 9141 |
#: admin/views/integrations/content.php:34
|
| 9142 |
msgid "Applications"
|
| 9143 |
msgstr ""
|
| 9144 |
|
| 9145 |
-
#: admin/locale.php:
|
| 9146 |
msgid ""
|
| 9147 |
"You can send this form's data to any of the connected third party apps. "
|
| 9148 |
"Connect to more apps on the {{link}}Integrations{{/link}} page."
|
| 9149 |
msgstr ""
|
| 9150 |
|
| 9151 |
-
#: admin/locale.php:
|
| 9152 |
msgid "Send"
|
| 9153 |
msgstr ""
|
| 9154 |
|
| 9155 |
-
#: admin/locale.php:
|
| 9156 |
msgid "Don't Send"
|
| 9157 |
msgstr ""
|
| 9158 |
|
| 9159 |
-
#: admin/locale.php:
|
| 9160 |
msgid "data if"
|
| 9161 |
msgstr ""
|
| 9162 |
|
| 9163 |
-
#: admin/locale.php:
|
| 9164 |
msgid "of the conditions below are met."
|
| 9165 |
msgstr ""
|
| 9166 |
|
| 9167 |
-
#: admin/locale.php:
|
| 9168 |
msgid "Use conditional logic to send data to this app based on submitted form data."
|
| 9169 |
msgstr ""
|
| 9170 |
|
| 9171 |
-
#: admin/locale.php:
|
| 9172 |
msgid "Add conditions under which data should be sent to this app."
|
| 9173 |
msgstr ""
|
| 9174 |
|
| 9175 |
-
#: admin/locale.php:
|
| 9176 |
msgid "Login User"
|
| 9177 |
msgstr ""
|
| 9178 |
|
| 9179 |
-
#: admin/locale.php:
|
| 9180 |
msgid "Additional Settings"
|
| 9181 |
msgstr ""
|
| 9182 |
|
| 9183 |
-
#: admin/locale.php:
|
| 9184 |
msgid "These settings will add some extra control on your login process."
|
| 9185 |
msgstr ""
|
| 9186 |
|
| 9187 |
-
#: admin/locale.php:
|
| 9188 |
msgid "Hide the form if a user is already logged in"
|
| 9189 |
msgstr ""
|
| 9190 |
|
| 9191 |
-
#: admin/locale.php:
|
| 9192 |
msgid "Enabling this will hide the form from logged-in users."
|
| 9193 |
msgstr ""
|
| 9194 |
|
| 9195 |
-
#: admin/locale.php:
|
| 9196 |
msgid "Message (optional)"
|
| 9197 |
msgstr ""
|
| 9198 |
|
| 9199 |
-
#: admin/locale.php:
|
| 9200 |
msgid "Type a message for logged in users here..."
|
| 9201 |
msgstr ""
|
| 9202 |
|
| 9203 |
-
#: admin/locale.php:
|
| 9204 |
msgid ""
|
| 9205 |
"You can optionally add a message for logged in users, which appears when "
|
| 9206 |
"the form is hidden."
|
| 9207 |
msgstr ""
|
| 9208 |
|
| 9209 |
-
#: admin/locale.php:
|
| 9210 |
msgid "Login Fields"
|
| 9211 |
msgstr ""
|
| 9212 |
|
| 9213 |
-
#: admin/locale.php:
|
| 9214 |
msgid ""
|
| 9215 |
"Map your form fields to the meta keys and have additional control over the "
|
| 9216 |
"login form fields."
|
| 9217 |
msgstr ""
|
| 9218 |
|
| 9219 |
-
#: admin/locale.php:
|
| 9220 |
msgid "Form Fields Mapping"
|
| 9221 |
msgstr ""
|
| 9222 |
|
| 9223 |
-
#: admin/locale.php:
|
| 9224 |
msgid "Assign your form fields to the meta keys required to login a user."
|
| 9225 |
msgstr ""
|
| 9226 |
|
| 9227 |
-
#: admin/locale.php:
|
| 9228 |
#: library/modules/custom-forms/form-templates/template-registration.php:45
|
| 9229 |
msgid "Username"
|
| 9230 |
msgstr ""
|
| 9231 |
|
| 9232 |
-
#: admin/locale.php:
|
| 9233 |
#: library/fields/password.php:83
|
| 9234 |
#: library/modules/custom-forms/form-templates/template-login.php:84
|
| 9235 |
#: library/modules/custom-forms/form-templates/template-registration.php:75
|
| 9236 |
msgid "Password"
|
| 9237 |
msgstr ""
|
| 9238 |
|
| 9239 |
-
#: admin/locale.php:
|
| 9240 |
msgid "Remember Me Field"
|
| 9241 |
msgstr ""
|
| 9242 |
|
| 9243 |
-
#: admin/locale.php:
|
| 9244 |
msgid ""
|
| 9245 |
"Choose whether to show the {{strong}}Remember Me{{/strong}} field in your "
|
| 9246 |
"form. This option will add a Remember Me checkbox before the submit button."
|
| 9247 |
msgstr ""
|
| 9248 |
|
| 9249 |
-
#: admin/locale.php:
|
| 9250 |
msgid "Remember me"
|
| 9251 |
msgstr ""
|
| 9252 |
|
| 9253 |
-
#: admin/locale.php:
|
| 9254 |
msgid "Cookie Expiration"
|
| 9255 |
msgstr ""
|
| 9256 |
|
| 9257 |
-
#: admin/locale.php:
|
| 9258 |
#: library/modules/custom-forms/admin/admin-loader.php:163
|
| 9259 |
msgid "day(s)"
|
| 9260 |
msgstr ""
|
| 9261 |
|
| 9262 |
-
#: admin/locale.php:
|
| 9263 |
#: library/modules/custom-forms/admin/admin-loader.php:164
|
| 9264 |
msgid "week(s)"
|
| 9265 |
msgstr ""
|
| 9266 |
|
| 9267 |
-
#: admin/locale.php:
|
| 9268 |
#: library/modules/custom-forms/admin/admin-loader.php:165
|
| 9269 |
msgid "month(s)"
|
| 9270 |
msgstr ""
|
| 9271 |
|
| 9272 |
-
#: admin/locale.php:
|
| 9273 |
msgid "year(s)"
|
| 9274 |
msgstr ""
|
| 9275 |
|
| 9276 |
-
#: admin/locale.php:
|
| 9277 |
msgid "Users will have to provide login details again after the selected period."
|
| 9278 |
msgstr ""
|
| 9279 |
|
| 9280 |
-
#: admin/locale.php:
|
| 9281 |
msgid "Something went wrong while saving your form. Please try again."
|
| 9282 |
msgstr ""
|
| 9283 |
|
| 9284 |
-
#: admin/locale.php:
|
| 9285 |
msgid "Save Draft"
|
| 9286 |
msgstr ""
|
| 9287 |
|
| 9288 |
-
#: admin/locale.php:
|
| 9289 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:247
|
| 9290 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:288
|
| 9291 |
msgid "Saving..."
|
| 9292 |
msgstr ""
|
| 9293 |
|
| 9294 |
-
#: admin/locale.php:
|
| 9295 |
msgid "Unsaved changes"
|
| 9296 |
msgstr ""
|
| 9297 |
|
| 9298 |
-
#: admin/locale.php:
|
| 9299 |
msgid "Saved"
|
| 9300 |
msgstr ""
|
| 9301 |
|
| 9302 |
-
#: admin/locale.php:
|
| 9303 |
msgid "Appearance preset successfully applied."
|
| 9304 |
msgstr ""
|
| 9305 |
|
| 9306 |
-
#: admin/locale.php:
|
| 9307 |
msgid "Something went wrong. Please try again."
|
| 9308 |
msgstr ""
|
| 9309 |
|
| 9310 |
-
#: admin/locale.php:
|
| 9311 |
msgid ""
|
| 9312 |
"Select an appearance preset from the list below to apply the appearance to "
|
| 9313 |
"your form. You can edit or create new presets in {{link}}Settings > "
|
| 9314 |
"Appearance Preset{{/link}}"
|
| 9315 |
msgstr ""
|
| 9316 |
|
| 9317 |
-
#: admin/locale.php:
|
| 9318 |
msgid "Applying preset..."
|
| 9319 |
msgstr ""
|
| 9320 |
|
| 9321 |
-
#: admin/locale.php:
|
| 9322 |
msgid "After Submission"
|
| 9323 |
msgstr ""
|
| 9324 |
|
| 9325 |
-
#: admin/locale.php:
|
| 9326 |
msgid "Only used to identify this behavior, and not displayed to users."
|
| 9327 |
msgstr ""
|
| 9328 |
|
| 9329 |
-
#: admin/locale.php:
|
| 9330 |
msgid "E.g., Inline Message"
|
| 9331 |
msgstr ""
|
| 9332 |
|
| 9333 |
-
#: admin/locale.php:
|
| 9334 |
msgid "Display an inline success message to the user after the form is submitted."
|
| 9335 |
msgstr ""
|
| 9336 |
|
| 9337 |
-
#: admin/locale.php:
|
| 9338 |
msgid "Auto-close success message after"
|
| 9339 |
msgstr ""
|
| 9340 |
|
| 9341 |
-
#: admin/locale.php:
|
| 9342 |
msgid "E.g. 5"
|
| 9343 |
msgstr ""
|
| 9344 |
|
| 9345 |
-
#: admin/locale.php:
|
| 9346 |
msgid "seconds."
|
| 9347 |
msgstr ""
|
| 9348 |
|
| 9349 |
-
#: admin/locale.php:
|
| 9350 |
msgid "https://www.mywebsite.com"
|
| 9351 |
msgstr ""
|
| 9352 |
|
| 9353 |
-
#: admin/locale.php:
|
| 9354 |
msgid "Redirect URL"
|
| 9355 |
msgstr ""
|
| 9356 |
|
| 9357 |
-
#: admin/locale.php:
|
| 9358 |
msgid ""
|
| 9359 |
"Provide the absolute URL of the page you want to redirect users to after "
|
| 9360 |
"submitting the login form. For example, to redirect users to the WordPress "
|
| 9361 |
"admin, use the URL {{strong}}http://www.website.com/wp-admin/{{/strong}}."
|
| 9362 |
msgstr ""
|
| 9363 |
|
| 9364 |
-
#: admin/locale.php:
|
| 9365 |
msgid "Redirection Option"
|
| 9366 |
msgstr ""
|
| 9367 |
|
| 9368 |
-
#: admin/locale.php:
|
| 9369 |
msgid "Redirect on the same tab"
|
| 9370 |
msgstr ""
|
| 9371 |
|
| 9372 |
-
#: admin/locale.php:
|
| 9373 |
msgid "Redirect on new tab and show thank you message on form page"
|
| 9374 |
msgstr ""
|
| 9375 |
|
| 9376 |
-
#: admin/locale.php:
|
| 9377 |
msgid "Redirect on new tab and hide form on the form page"
|
| 9378 |
msgstr ""
|
| 9379 |
|
| 9380 |
-
#: admin/locale.php:
|
| 9381 |
msgid "Hide the form after submission, and display a success message to the user."
|
| 9382 |
msgstr ""
|
| 9383 |
|
| 9384 |
-
#: admin/locale.php:
|
| 9385 |
msgid "Submit Message"
|
| 9386 |
msgstr ""
|
| 9387 |
|
| 9388 |
-
#: admin/locale.php:
|
| 9389 |
msgid "Delete Notification"
|
| 9390 |
msgstr ""
|
| 9391 |
|
| 9392 |
-
#: admin/locale.php:
|
| 9393 |
msgid "Are you sure you wish to delete this Notification?"
|
| 9394 |
msgstr ""
|
| 9395 |
|
| 9396 |
-
#: admin/locale.php:
|
| 9397 |
msgid "Delete Field"
|
| 9398 |
msgstr ""
|
| 9399 |
|
| 9400 |
-
#: admin/locale.php:
|
| 9401 |
msgid ""
|
| 9402 |
"Deleting this field {%(name)s} will also remove associated values from "
|
| 9403 |
"existing submissions."
|
| 9404 |
msgstr ""
|
| 9405 |
|
| 9406 |
-
#: admin/locale.php:
|
| 9407 |
msgid ""
|
| 9408 |
"Note that this field is mapped in {{link}}Default Meta Keys{{/link}}. If "
|
| 9409 |
"deleted, you will need to remap meta keys {{link}}here{{/link}}."
|
| 9410 |
msgstr ""
|
| 9411 |
|
| 9412 |
-
#: admin/locale.php:
|
| 9413 |
msgid ""
|
| 9414 |
"Please remove the references to this field from the following form fields "
|
| 9415 |
"first."
|
| 9416 |
msgstr ""
|
| 9417 |
|
| 9418 |
-
#: admin/locale.php:
|
| 9419 |
msgid "Form Fields"
|
| 9420 |
msgstr ""
|
| 9421 |
|
| 9422 |
-
#: admin/locale.php:
|
| 9423 |
msgid "Got It"
|
| 9424 |
msgstr ""
|
| 9425 |
|
| 9426 |
-
#: admin/locale.php:
|
| 9427 |
msgid "Collect payments like a pro"
|
| 9428 |
msgstr ""
|
| 9429 |
|
| 9430 |
-
#: admin/locale.php:
|
| 9431 |
msgid ""
|
| 9432 |
"You have added both Stripe and PayPal fields to your form. We recommend "
|
| 9433 |
"that you use the visibility conditions, so only one of them is visible at a "
|
| 9434 |
"time. For example:"
|
| 9435 |
msgstr ""
|
| 9436 |
|
| 9437 |
-
#: admin/locale.php:
|
| 9438 |
msgid ""
|
| 9439 |
"Add an option to your form using a Radio (or Select) field that allows "
|
| 9440 |
"visitors to choose the payment method."
|
| 9441 |
msgstr ""
|
| 9442 |
|
| 9443 |
-
#: admin/locale.php:
|
| 9444 |
msgid ""
|
| 9445 |
"Apply visibility conditions to both Stripe and PayPal fields so only one is "
|
| 9446 |
"visible based on the visitor's selection in the Radio (or Select) field."
|
| 9447 |
msgstr ""
|
| 9448 |
|
| 9449 |
-
#: admin/locale.php:
|
| 9450 |
msgid "Choose which fields you want to insert into your form."
|
| 9451 |
msgstr ""
|
| 9452 |
|
| 9453 |
-
#: admin/locale.php:
|
| 9454 |
msgid ""
|
| 9455 |
"You can have only one Stripe field in your form for Stripe to work "
|
| 9456 |
"accurately. Please delete the existing Stripe field to add a new one."
|
| 9457 |
msgstr ""
|
| 9458 |
|
| 9459 |
-
#: admin/locale.php:
|
| 9460 |
msgid ""
|
| 9461 |
"You can have only one PayPal field in your form for PayPal to work "
|
| 9462 |
"accurately. Please delete the existing PayPal field to add a new one."
|
| 9463 |
msgstr ""
|
| 9464 |
|
| 9465 |
-
#: admin/locale.php:
|
| 9466 |
msgid ""
|
| 9467 |
"You can have only one payment field in your form. Please delete the "
|
| 9468 |
"existing payment field to add another one."
|
| 9469 |
msgstr ""
|
| 9470 |
|
| 9471 |
-
#: admin/locale.php:
|
| 9472 |
msgid ""
|
| 9473 |
"You can have only one captcha field in your form for captcha to work "
|
| 9474 |
"accurately. Please delete the existing captcha field to add a new one."
|
| 9475 |
msgstr ""
|
| 9476 |
|
| 9477 |
-
#: admin/locale.php:
|
| 9478 |
msgid "Need access to pro form fields? {{link}}Try Forminator Pro for FREE{{/link}}"
|
| 9479 |
msgstr ""
|
| 9480 |
|
| 9481 |
-
#: admin/locale.php:
|
| 9482 |
msgid "Recipient(s)"
|
| 9483 |
msgstr ""
|
| 9484 |
|
| 9485 |
-
#: admin/locale.php:
|
| 9486 |
msgid "Please enter recipients"
|
| 9487 |
msgstr ""
|
| 9488 |
|
| 9489 |
-
#: admin/locale.php:
|
| 9490 |
msgid "Please select rule"
|
| 9491 |
msgstr ""
|
| 9492 |
|
| 9493 |
-
#: admin/locale.php:
|
| 9494 |
msgid "Please add email routing"
|
| 9495 |
msgstr ""
|
| 9496 |
|
| 9497 |
-
#: admin/locale.php:
|
| 9498 |
msgid "Please fix the error(s) in the EMAIL tab."
|
| 9499 |
msgstr ""
|
| 9500 |
|
| 9501 |
-
#: admin/locale.php:
|
| 9502 |
msgid "Add Email Notification"
|
| 9503 |
msgstr ""
|
| 9504 |
|
| 9505 |
-
#: admin/locale.php:
|
| 9506 |
#: library/fields/email.php:60
|
| 9507 |
#: library/lib/free-notices/classes/notices/class-email.php:92
|
| 9508 |
#: library/modules/custom-forms/form-templates/template-registration.php:59
|
| 9509 |
msgid "Email"
|
| 9510 |
msgstr ""
|
| 9511 |
|
| 9512 |
-
#: admin/locale.php:
|
| 9513 |
msgid "Recipients"
|
| 9514 |
msgstr ""
|
| 9515 |
|
| 9516 |
-
#: admin/locale.php:
|
| 9517 |
msgid "Advanced"
|
| 9518 |
msgstr ""
|
| 9519 |
|
| 9520 |
-
#: admin/locale.php:
|
| 9521 |
msgid ""
|
| 9522 |
"The label is to help you identify this email and won't appear anywhere in "
|
| 9523 |
"the email."
|
| 9524 |
msgstr ""
|
| 9525 |
|
| 9526 |
-
#: admin/locale.php:
|
| 9527 |
msgid "E.g. Sales Team Notification"
|
| 9528 |
msgstr ""
|
| 9529 |
|
| 9530 |
-
#: admin/locale.php:
|
| 9531 |
msgid "E.g. New Form Submission"
|
| 9532 |
msgstr ""
|
| 9533 |
|
| 9534 |
-
#: admin/locale.php:
|
| 9535 |
msgid "Subject"
|
| 9536 |
msgstr ""
|
| 9537 |
|
| 9538 |
-
#: admin/locale.php:
|
| 9539 |
msgid "Email subject can't be empty"
|
| 9540 |
msgstr ""
|
| 9541 |
|
| 9542 |
-
#: admin/locale.php:
|
| 9543 |
msgid "Body"
|
| 9544 |
msgstr ""
|
| 9545 |
|
| 9546 |
-
#: admin/locale.php:
|
| 9547 |
msgid "Email body can't be empty"
|
| 9548 |
msgstr ""
|
| 9549 |
|
| 9550 |
-
#: admin/locale.php:
|
| 9551 |
msgid "Attachments"
|
| 9552 |
msgstr ""
|
| 9553 |
|
| 9554 |
-
#: admin/locale.php:
|
| 9555 |
msgid ""
|
| 9556 |
"Choose whether you want to attach the files uploaded via the File Upload "
|
| 9557 |
"fields to this email."
|
| 9558 |
msgstr ""
|
| 9559 |
|
| 9560 |
-
#: admin/locale.php:
|
| 9561 |
msgid "Uploaded files"
|
| 9562 |
msgstr ""
|
| 9563 |
|
| 9564 |
-
#: admin/locale.php:
|
| 9565 |
msgid ""
|
| 9566 |
"The default behavior is to send the email to the same recipients. If you "
|
| 9567 |
"want to send this email to different recipients conditionally, you can "
|
|
@@ -9569,241 +9588,245 @@ msgid ""
|
|
| 9569 |
"the user input."
|
| 9570 |
msgstr ""
|
| 9571 |
|
| 9572 |
-
#: admin/locale.php:
|
| 9573 |
msgid "E.g. sales@website.com"
|
| 9574 |
msgstr ""
|
| 9575 |
|
| 9576 |
-
#: admin/locale.php:
|
| 9577 |
msgid "Separate multiple emails with a comma"
|
| 9578 |
msgstr ""
|
| 9579 |
|
| 9580 |
-
#: admin/locale.php:
|
| 9581 |
msgid "Email Routing"
|
| 9582 |
msgstr ""
|
| 9583 |
|
| 9584 |
-
#: admin/locale.php:
|
| 9585 |
msgid "Enter from name here"
|
| 9586 |
msgstr ""
|
| 9587 |
|
| 9588 |
-
#: admin/locale.php:
|
| 9589 |
msgid "From Name"
|
| 9590 |
msgstr ""
|
| 9591 |
|
| 9592 |
-
#: admin/locale.php:
|
| 9593 |
msgid "Enter from email here"
|
| 9594 |
msgstr ""
|
| 9595 |
|
| 9596 |
-
#: admin/locale.php:
|
| 9597 |
msgid "From Email"
|
| 9598 |
msgstr ""
|
| 9599 |
|
| 9600 |
-
#: admin/locale.php:
|
| 9601 |
msgid ""
|
| 9602 |
"Some hosts do not allow \"from email\" to be overridden or replaced due to "
|
| 9603 |
"spam issues."
|
| 9604 |
msgstr ""
|
| 9605 |
|
| 9606 |
-
#: admin/locale.php:
|
| 9607 |
msgid "Enter reply-to email here"
|
| 9608 |
msgstr ""
|
| 9609 |
|
| 9610 |
-
#: admin/locale.php:
|
| 9611 |
msgid "Reply-to Email"
|
| 9612 |
msgstr ""
|
| 9613 |
|
| 9614 |
-
#: admin/locale.php:
|
| 9615 |
msgid "Enter CC email here"
|
| 9616 |
msgstr ""
|
| 9617 |
|
| 9618 |
-
#: admin/locale.php:
|
| 9619 |
msgid "CC Emails"
|
| 9620 |
msgstr ""
|
| 9621 |
|
| 9622 |
-
#: admin/locale.php:
|
| 9623 |
msgid "Enter BCC email here"
|
| 9624 |
msgstr ""
|
| 9625 |
|
| 9626 |
-
#: admin/locale.php:
|
| 9627 |
msgid "BCC Emails"
|
| 9628 |
msgstr ""
|
| 9629 |
|
| 9630 |
-
#: admin/locale.php:
|
| 9631 |
msgid "Discard Changes"
|
| 9632 |
msgstr ""
|
| 9633 |
|
| 9634 |
-
#: admin/locale.php:
|
| 9635 |
msgid ""
|
| 9636 |
"Your form is divided into multiple pages by Page Break field(s), and you "
|
| 9637 |
"can customize the label of each page here. Page names appear on your form "
|
| 9638 |
"header along with the progress indicator."
|
| 9639 |
msgstr ""
|
| 9640 |
|
| 9641 |
-
#: admin/locale.php:
|
| 9642 |
#: library/modules/custom-forms/front/front-render.php:913
|
| 9643 |
#: library/modules/polls/admin/admin-loader.php:196
|
| 9644 |
#: library/modules/quizzes/admin/admin-loader.php:591
|
| 9645 |
msgid "Finish"
|
| 9646 |
msgstr ""
|
| 9647 |
|
| 9648 |
-
#: admin/locale.php:
|
| 9649 |
msgid ""
|
| 9650 |
"Choose whether to show a progress indicator on top of your form, so your "
|
| 9651 |
"users know how far they are through your form."
|
| 9652 |
msgstr ""
|
| 9653 |
|
| 9654 |
-
#: admin/locale.php:
|
| 9655 |
msgid "Close this dialog"
|
| 9656 |
msgstr ""
|
| 9657 |
|
| 9658 |
-
#: admin/locale.php:
|
| 9659 |
msgid "Forminator image"
|
| 9660 |
msgstr ""
|
| 9661 |
|
| 9662 |
-
#: admin/locale.php:
|
| 9663 |
msgid "Loading preview…"
|
| 9664 |
msgstr ""
|
| 9665 |
|
| 9666 |
-
#: admin/locale.php:
|
| 9667 |
msgid "Publishing form…"
|
| 9668 |
msgstr ""
|
| 9669 |
|
| 9670 |
-
#: admin/locale.php:
|
| 9671 |
msgid ""
|
| 9672 |
"Great work! Please hold tight a few moments while we publish your form to "
|
| 9673 |
"the world."
|
| 9674 |
msgstr ""
|
| 9675 |
|
| 9676 |
-
#: admin/locale.php:
|
| 9677 |
msgid "Please fill required fields"
|
| 9678 |
msgstr ""
|
| 9679 |
|
| 9680 |
-
#: admin/locale.php:
|
| 9681 |
msgid "Calculation values are required!"
|
| 9682 |
msgstr ""
|
| 9683 |
|
| 9684 |
-
#: admin/locale.php:
|
| 9685 |
msgid "Option labels are required!"
|
| 9686 |
msgstr ""
|
| 9687 |
|
| 9688 |
-
#: admin/locale.php:
|
| 9689 |
msgid "Please add a placeholder or select a default option."
|
| 9690 |
msgstr ""
|
| 9691 |
|
| 9692 |
-
#: admin/locale.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9693 |
msgid ""
|
| 9694 |
"At least one of Title, Content, or Excerpt must be enabled for post data to "
|
| 9695 |
"be submitted."
|
| 9696 |
msgstr ""
|
| 9697 |
|
| 9698 |
-
#: admin/locale.php:
|
| 9699 |
msgid "Please, connect your Stripe account first!"
|
| 9700 |
msgstr ""
|
| 9701 |
|
| 9702 |
-
#: admin/locale.php:
|
| 9703 |
msgid "You need at least one payment!"
|
| 9704 |
msgstr ""
|
| 9705 |
|
| 9706 |
-
#: admin/locale.php:
|
| 9707 |
msgid "Please select an email address for payment receipt."
|
| 9708 |
msgstr ""
|
| 9709 |
|
| 9710 |
-
#: admin/locale.php:
|
| 9711 |
msgid "Empty labels are not allowed for meta values!"
|
| 9712 |
msgstr ""
|
| 9713 |
|
| 9714 |
-
#: admin/locale.php:
|
| 9715 |
msgid "Please connect your PayPal account first!"
|
| 9716 |
msgstr ""
|
| 9717 |
|
| 9718 |
-
#: admin/locale.php:
|
| 9719 |
msgid "Please enter PayPal payment amount!"
|
| 9720 |
msgstr ""
|
| 9721 |
|
| 9722 |
-
#: admin/locale.php:
|
| 9723 |
msgid "Please select PayPal payment variable field!"
|
| 9724 |
msgstr ""
|
| 9725 |
|
| 9726 |
-
#: admin/locale.php:
|
| 9727 |
msgid "Calculation formula is required!"
|
| 9728 |
msgstr ""
|
| 9729 |
|
| 9730 |
-
#: admin/locale.php:
|
| 9731 |
msgid "Limit Min value should be less than Max value."
|
| 9732 |
msgstr ""
|
| 9733 |
|
| 9734 |
-
#: admin/locale.php:
|
| 9735 |
msgid "Please enter API keys."
|
| 9736 |
msgstr ""
|
| 9737 |
|
| 9738 |
-
#: admin/locale.php:
|
| 9739 |
msgid "Please select a valid end time limit."
|
| 9740 |
msgstr ""
|
| 9741 |
|
| 9742 |
-
#: admin/locale.php:
|
| 9743 |
msgid "Please fix the Default time error."
|
| 9744 |
msgstr ""
|
| 9745 |
|
| 9746 |
-
#: admin/locale.php:
|
| 9747 |
msgid "Please fix the Start or End time."
|
| 9748 |
msgstr ""
|
| 9749 |
|
| 9750 |
-
#: admin/locale.php:
|
| 9751 |
msgid "Please fix the limit Start or End date."
|
| 9752 |
msgstr ""
|
| 9753 |
|
| 9754 |
-
#: admin/locale.php:
|
| 9755 |
#: library/fields/calculation.php:79
|
| 9756 |
msgid "Calculations"
|
| 9757 |
msgstr ""
|
| 9758 |
|
| 9759 |
-
#: admin/locale.php:
|
| 9760 |
msgid "Styling"
|
| 9761 |
msgstr ""
|
| 9762 |
|
| 9763 |
-
#: admin/locale.php:
|
| 9764 |
msgid "Customize"
|
| 9765 |
msgstr ""
|
| 9766 |
|
| 9767 |
-
#: admin/locale.php:
|
| 9768 |
msgid "Visibility"
|
| 9769 |
msgstr ""
|
| 9770 |
|
| 9771 |
-
#: admin/locale.php:
|
| 9772 |
msgid "Ready to go!"
|
| 9773 |
msgstr ""
|
| 9774 |
|
| 9775 |
-
#: admin/locale.php:
|
| 9776 |
msgid ""
|
| 9777 |
"Your form is now ready to be embedded into a page or template of your "
|
| 9778 |
"choice. Simply copy and paste the shortcode below to display it!"
|
| 9779 |
msgstr ""
|
| 9780 |
|
| 9781 |
-
#: admin/locale.php:
|
| 9782 |
msgid "Shortcode"
|
| 9783 |
msgstr ""
|
| 9784 |
|
| 9785 |
-
#: admin/locale.php:
|
| 9786 |
msgid "Enter message"
|
| 9787 |
msgstr ""
|
| 9788 |
|
| 9789 |
-
#: admin/locale.php:
|
| 9790 |
msgid ""
|
| 9791 |
"You can configure email notifications on the parent quiz as it is shared "
|
| 9792 |
"between this form and the parent quiz."
|
| 9793 |
msgstr ""
|
| 9794 |
|
| 9795 |
-
#: admin/locale.php:
|
| 9796 |
msgid ""
|
| 9797 |
"You can configure integrations on the parent quiz as it is shared between "
|
| 9798 |
"this form and the parent quiz."
|
| 9799 |
msgstr ""
|
| 9800 |
|
| 9801 |
-
#: admin/locale.php:
|
| 9802 |
#: admin/views/settings/content.php:47
|
| 9803 |
msgid "Navigate"
|
| 9804 |
msgstr ""
|
| 9805 |
|
| 9806 |
-
#: admin/locale.php:
|
| 9807 |
msgid ""
|
| 9808 |
"You can send customized email notifications to your site admins and "
|
| 9809 |
"visitors on successful form submission. Advanced features like email "
|
|
@@ -9811,124 +9834,124 @@ msgid ""
|
|
| 9811 |
"notifications."
|
| 9812 |
msgstr ""
|
| 9813 |
|
| 9814 |
-
#: admin/locale.php:
|
| 9815 |
msgid "Admin Email"
|
| 9816 |
msgstr ""
|
| 9817 |
|
| 9818 |
-
#: admin/locale.php:
|
| 9819 |
msgid ""
|
| 9820 |
"By default we’ll send an email to the nominated email account. You "
|
| 9821 |
"customise this email or turn it off all together."
|
| 9822 |
msgstr ""
|
| 9823 |
|
| 9824 |
-
#: admin/locale.php:
|
| 9825 |
msgid "Send an email to admin users"
|
| 9826 |
msgstr ""
|
| 9827 |
|
| 9828 |
-
#: admin/locale.php:
|
| 9829 |
msgid "From Address"
|
| 9830 |
msgstr ""
|
| 9831 |
|
| 9832 |
-
#: admin/locale.php:
|
| 9833 |
msgid "Reply To Address"
|
| 9834 |
msgstr ""
|
| 9835 |
|
| 9836 |
-
#: admin/locale.php:
|
| 9837 |
msgid "CC Addresses"
|
| 9838 |
msgstr ""
|
| 9839 |
|
| 9840 |
-
#: admin/locale.php:
|
| 9841 |
msgid "BCC Addresses"
|
| 9842 |
msgstr ""
|
| 9843 |
|
| 9844 |
-
#: admin/locale.php:
|
| 9845 |
msgid "Enter subject"
|
| 9846 |
msgstr ""
|
| 9847 |
|
| 9848 |
-
#: admin/locale.php:
|
| 9849 |
msgid "this email if"
|
| 9850 |
msgstr ""
|
| 9851 |
|
| 9852 |
-
#: admin/locale.php:
|
| 9853 |
msgid "of the following rules match:"
|
| 9854 |
msgstr ""
|
| 9855 |
|
| 9856 |
-
#: admin/locale.php:
|
| 9857 |
msgid ""
|
| 9858 |
"By default, this email is always sent on form submission. You can add "
|
| 9859 |
"conditions to send this email conditionally based on user input."
|
| 9860 |
msgstr ""
|
| 9861 |
|
| 9862 |
-
#: admin/locale.php:
|
| 9863 |
msgid "Add Rule"
|
| 9864 |
msgstr ""
|
| 9865 |
|
| 9866 |
-
#: admin/locale.php:
|
| 9867 |
msgid "Confirmation Email"
|
| 9868 |
msgstr ""
|
| 9869 |
|
| 9870 |
-
#: admin/locale.php:
|
| 9871 |
msgid ""
|
| 9872 |
"In addition to notifying people of new submissions, you can also send a "
|
| 9873 |
"confirmation email to the user who submitted the form."
|
| 9874 |
msgstr ""
|
| 9875 |
|
| 9876 |
-
#: admin/locale.php:
|
| 9877 |
msgid "Send a confirmation email to the user"
|
| 9878 |
msgstr ""
|
| 9879 |
|
| 9880 |
-
#: admin/locale.php:
|
| 9881 |
msgid ""
|
| 9882 |
"If you leave it blank, we will automatically find first email field in the "
|
| 9883 |
"form as recipient. If there is no email field and user is logged in we will "
|
| 9884 |
"use their email."
|
| 9885 |
msgstr ""
|
| 9886 |
|
| 9887 |
-
#: admin/locale.php:
|
| 9888 |
msgid ""
|
| 9889 |
"Send to {{strong}}\"%(label)s\"{{/strong}} if "
|
| 9890 |
"{{strong}}%(field)s{{/strong}} %(rule)s {{strong}}%(value)s{{/strong}}"
|
| 9891 |
msgstr ""
|
| 9892 |
|
| 9893 |
-
#: admin/locale.php:
|
| 9894 |
msgid "Routing Condition"
|
| 9895 |
msgstr ""
|
| 9896 |
|
| 9897 |
-
#: admin/locale.php:
|
| 9898 |
msgid "Enter value"
|
| 9899 |
msgstr ""
|
| 9900 |
|
| 9901 |
-
#: admin/locale.php:
|
| 9902 |
msgid ""
|
| 9903 |
"You haven't defined any email routing rules yet. Click on the \"+ Add "
|
| 9904 |
"Rule\" button to add the recipients along with the routing rules."
|
| 9905 |
msgstr ""
|
| 9906 |
|
| 9907 |
-
#: admin/locale.php:
|
| 9908 |
msgid "Email routing is enabled"
|
| 9909 |
msgstr ""
|
| 9910 |
|
| 9911 |
-
#: admin/locale.php:
|
| 9912 |
msgid "more recipient(s)"
|
| 9913 |
msgstr ""
|
| 9914 |
|
| 9915 |
-
#: admin/locale.php:
|
| 9916 |
msgid "Open field settings"
|
| 9917 |
msgstr ""
|
| 9918 |
|
| 9919 |
-
#: admin/locale.php:
|
| 9920 |
msgid "User Account Activation"
|
| 9921 |
msgstr ""
|
| 9922 |
|
| 9923 |
-
#: admin/locale.php:
|
| 9924 |
msgid "Choose the activation method and other settings for the user accounts."
|
| 9925 |
msgstr ""
|
| 9926 |
|
| 9927 |
-
#: admin/locale.php:
|
| 9928 |
msgid "Activation Method"
|
| 9929 |
msgstr ""
|
| 9930 |
|
| 9931 |
-
#: admin/locale.php:
|
| 9932 |
msgid ""
|
| 9933 |
"By default, the user account is activated upon form submission. However, "
|
| 9934 |
"you can choose between {{strong}}Email Activation{{/strong}}, which "
|
|
@@ -9936,46 +9959,46 @@ msgid ""
|
|
| 9936 |
"Approval{{/strong}} which requires site admin to approve an account."
|
| 9937 |
msgstr ""
|
| 9938 |
|
| 9939 |
-
#: admin/locale.php:
|
| 9940 |
msgid "Email Activation"
|
| 9941 |
msgstr ""
|
| 9942 |
|
| 9943 |
-
#: admin/locale.php:
|
| 9944 |
msgid "Confirmation Page"
|
| 9945 |
msgstr ""
|
| 9946 |
|
| 9947 |
-
#: admin/locale.php:
|
| 9948 |
msgid ""
|
| 9949 |
"Choose the page to redirect users to when they click on the confirmation "
|
| 9950 |
"link."
|
| 9951 |
msgstr ""
|
| 9952 |
|
| 9953 |
-
#: admin/locale.php:
|
| 9954 |
msgid "page ID: "
|
| 9955 |
msgstr ""
|
| 9956 |
|
| 9957 |
-
#: admin/locale.php:
|
| 9958 |
msgid "Manual Approval"
|
| 9959 |
msgstr ""
|
| 9960 |
|
| 9961 |
-
#: admin/locale.php:
|
| 9962 |
msgid ""
|
| 9963 |
"A site admin will have to manually approve each entry from the submissions "
|
| 9964 |
"page to activate the user accounts."
|
| 9965 |
msgstr ""
|
| 9966 |
|
| 9967 |
-
#: admin/locale.php:
|
| 9968 |
msgid "Activation Email"
|
| 9969 |
msgstr ""
|
| 9970 |
|
| 9971 |
-
#: admin/locale.php:
|
| 9972 |
msgid ""
|
| 9973 |
"By default, WordPress sends an activation email containing user account "
|
| 9974 |
"information after the account activation. However, you can choose not to "
|
| 9975 |
"send this email."
|
| 9976 |
msgstr ""
|
| 9977 |
|
| 9978 |
-
#: admin/locale.php:
|
| 9979 |
msgid ""
|
| 9980 |
"Since the {{strong}}Password{{/strong}} user meta key is mapped to "
|
| 9981 |
"{{strong}}Auto Generate Password{{/strong}}, it's recommended to keep this "
|
|
@@ -9983,57 +10006,57 @@ msgid ""
|
|
| 9983 |
"be sent to the users."
|
| 9984 |
msgstr ""
|
| 9985 |
|
| 9986 |
-
#: admin/locale.php:
|
| 9987 |
msgid ""
|
| 9988 |
"Since the activation requires manual approval from site admin, it's "
|
| 9989 |
"recommended to keep this option to {{strong}}Default{{/strong}} to let "
|
| 9990 |
"users know when their account is activated."
|
| 9991 |
msgstr ""
|
| 9992 |
|
| 9993 |
-
#: admin/locale.php:
|
| 9994 |
msgid "These settings will add some extra control on your registration process."
|
| 9995 |
msgstr ""
|
| 9996 |
|
| 9997 |
-
#: admin/locale.php:
|
| 9998 |
msgid "Automatically log in newly activated users"
|
| 9999 |
msgstr ""
|
| 10000 |
|
| 10001 |
-
#: admin/locale.php:
|
| 10002 |
msgid ""
|
| 10003 |
"This will automatically log in a user upon successful activation of their "
|
| 10004 |
"account."
|
| 10005 |
msgstr ""
|
| 10006 |
|
| 10007 |
-
#: admin/locale.php:
|
| 10008 |
msgid "Network's Main Site Role"
|
| 10009 |
msgstr ""
|
| 10010 |
|
| 10011 |
-
#: admin/locale.php:
|
| 10012 |
msgid ""
|
| 10013 |
"If you don't want to create a user in the network's main site, set this "
|
| 10014 |
"meta key to {{strong}}Don't create a user in the network's main "
|
| 10015 |
"site{{/strong}}."
|
| 10016 |
msgstr ""
|
| 10017 |
|
| 10018 |
-
#: admin/locale.php:
|
| 10019 |
msgid "User Role"
|
| 10020 |
msgstr ""
|
| 10021 |
|
| 10022 |
-
#: admin/locale.php:
|
| 10023 |
msgid "User Meta Mapping"
|
| 10024 |
msgstr ""
|
| 10025 |
|
| 10026 |
-
#: admin/locale.php:
|
| 10027 |
msgid ""
|
| 10028 |
"Assign your form fields to the user meta keys to use the data collected "
|
| 10029 |
"from the visitor to create a user profile."
|
| 10030 |
msgstr ""
|
| 10031 |
|
| 10032 |
-
#: admin/locale.php:
|
| 10033 |
msgid "Default Meta Keys"
|
| 10034 |
msgstr ""
|
| 10035 |
|
| 10036 |
-
#: admin/locale.php:
|
| 10037 |
msgid ""
|
| 10038 |
"Assign form fields to the default WordPress user meta keys (used in "
|
| 10039 |
"Profiles) below. You can assign a form field to multiple meta keys. If you "
|
|
@@ -10041,125 +10064,125 @@ msgid ""
|
|
| 10041 |
"will automatically become required in your form."
|
| 10042 |
msgstr ""
|
| 10043 |
|
| 10044 |
-
#: admin/locale.php:
|
| 10045 |
msgid "Select a field"
|
| 10046 |
msgstr ""
|
| 10047 |
|
| 10048 |
-
#: admin/locale.php:
|
| 10049 |
#: library/fields/website.php:72
|
| 10050 |
msgid "Website"
|
| 10051 |
msgstr ""
|
| 10052 |
|
| 10053 |
-
#: admin/locale.php:
|
| 10054 |
msgid "Auto Generated Password"
|
| 10055 |
msgstr ""
|
| 10056 |
|
| 10057 |
-
#: admin/locale.php:
|
| 10058 |
msgid ""
|
| 10059 |
"This form includes a {{strong}}Password field{{/strong}}. Since user "
|
| 10060 |
"passwords will be {{strong}}automatically generated{{/strong}}, the "
|
| 10061 |
"{{strong}}Password field{{/strong}} should be deleted."
|
| 10062 |
msgstr ""
|
| 10063 |
|
| 10064 |
-
#: admin/locale.php:
|
| 10065 |
msgid ""
|
| 10066 |
"This form is set to {{strong}}automatically generate{{/strong}} user "
|
| 10067 |
"passwords. To allow users to set their own passwords, insert a "
|
| 10068 |
"{{strong}}Password field{{/strong}} into {{link}}this form{{/link}}."
|
| 10069 |
msgstr ""
|
| 10070 |
|
| 10071 |
-
#: admin/locale.php:
|
| 10072 |
msgid ""
|
| 10073 |
"Choose which user role you want to assign to the visitors signing up. You "
|
| 10074 |
"can either assign a fixed user role to all of them or assign a user role "
|
| 10075 |
"conditionally, based on their response to the form fields."
|
| 10076 |
msgstr ""
|
| 10077 |
|
| 10078 |
-
#: admin/locale.php:
|
| 10079 |
msgid "Fixed Role to All"
|
| 10080 |
msgstr ""
|
| 10081 |
|
| 10082 |
-
#: admin/locale.php:
|
| 10083 |
msgid "Assign Role Conditionally"
|
| 10084 |
msgstr ""
|
| 10085 |
|
| 10086 |
-
#: admin/locale.php:
|
| 10087 |
msgid ""
|
| 10088 |
"No custom user meta created yet. Click on \"+ Add Custom User Meta\" to "
|
| 10089 |
"create custom user meta and map form fields to it."
|
| 10090 |
msgstr ""
|
| 10091 |
|
| 10092 |
-
#: admin/locale.php:
|
| 10093 |
msgid "Custom User Meta"
|
| 10094 |
msgstr ""
|
| 10095 |
|
| 10096 |
-
#: admin/locale.php:
|
| 10097 |
msgid ""
|
| 10098 |
"Create custom user meta keys and assign your form fields to them to set "
|
| 10099 |
"additional user meta keys upon successful user registration."
|
| 10100 |
msgstr ""
|
| 10101 |
|
| 10102 |
-
#: admin/locale.php:
|
| 10103 |
msgid "Add Custom User Meta"
|
| 10104 |
msgstr ""
|
| 10105 |
|
| 10106 |
-
#: admin/locale.php:
|
| 10107 |
msgid "Site Registration"
|
| 10108 |
msgstr ""
|
| 10109 |
|
| 10110 |
-
#: admin/locale.php:
|
| 10111 |
msgid ""
|
| 10112 |
"Choose whether to allow site registrations on your multisite network and "
|
| 10113 |
"different related settings."
|
| 10114 |
msgstr ""
|
| 10115 |
|
| 10116 |
-
#: admin/locale.php:
|
| 10117 |
msgid "Assign form fields to the default WordPress site meta keys below."
|
| 10118 |
msgstr ""
|
| 10119 |
|
| 10120 |
-
#: admin/locale.php:
|
| 10121 |
msgid "Site Name"
|
| 10122 |
msgstr ""
|
| 10123 |
|
| 10124 |
-
#: admin/locale.php:
|
| 10125 |
msgid ""
|
| 10126 |
"Site address meta key will be automatically set based on this field as "
|
| 10127 |
"{{strong}}false{{/strong}}"
|
| 10128 |
msgstr ""
|
| 10129 |
|
| 10130 |
-
#: admin/locale.php:
|
| 10131 |
msgid "Site Title"
|
| 10132 |
msgstr ""
|
| 10133 |
|
| 10134 |
-
#: admin/locale.php:
|
| 10135 |
msgid "Site Role"
|
| 10136 |
msgstr ""
|
| 10137 |
|
| 10138 |
-
#: admin/locale.php:
|
| 10139 |
msgid "forever"
|
| 10140 |
msgstr ""
|
| 10141 |
|
| 10142 |
-
#: admin/locale.php:
|
| 10143 |
msgid "remove"
|
| 10144 |
msgstr ""
|
| 10145 |
|
| 10146 |
-
#: admin/locale.php:
|
| 10147 |
msgid "retain"
|
| 10148 |
msgstr ""
|
| 10149 |
|
| 10150 |
-
#: admin/locale.php:
|
| 10151 |
msgid "Data Storage"
|
| 10152 |
msgstr ""
|
| 10153 |
|
| 10154 |
-
#: admin/locale.php:
|
| 10155 |
msgid "By default we will store all submissions in your database."
|
| 10156 |
msgstr ""
|
| 10157 |
|
| 10158 |
-
#: admin/locale.php:
|
| 10159 |
msgid "Store Submissions in Database"
|
| 10160 |
msgstr ""
|
| 10161 |
|
| 10162 |
-
#: admin/locale.php:
|
| 10163 |
msgid ""
|
| 10164 |
"Disable this feature to prevent submissions from being stored in your "
|
| 10165 |
"database. Note that any submissions previously stored in the database will "
|
|
@@ -10167,21 +10190,21 @@ msgid ""
|
|
| 10167 |
"configured in the Privacy settings below."
|
| 10168 |
msgstr ""
|
| 10169 |
|
| 10170 |
-
#: admin/locale.php:
|
| 10171 |
msgid "Multiple Option Value"
|
| 10172 |
msgstr ""
|
| 10173 |
|
| 10174 |
-
#: admin/locale.php:
|
| 10175 |
msgid ""
|
| 10176 |
"Choose how you want to handle multiple option values in form submissions "
|
| 10177 |
"and email notifications."
|
| 10178 |
msgstr ""
|
| 10179 |
|
| 10180 |
-
#: admin/locale.php:
|
| 10181 |
msgid "Default Stored Value"
|
| 10182 |
msgstr ""
|
| 10183 |
|
| 10184 |
-
#: admin/locale.php:
|
| 10185 |
msgid ""
|
| 10186 |
"By default, we store option labels of multiple option fields "
|
| 10187 |
"({{strong}}e.g., Radio, Checkbox, and Select{{/strong}}) in submissions, "
|
|
@@ -10189,467 +10212,467 @@ msgid ""
|
|
| 10189 |
"values instead."
|
| 10190 |
msgstr ""
|
| 10191 |
|
| 10192 |
-
#: admin/locale.php:
|
| 10193 |
msgid "Option labels"
|
| 10194 |
msgstr ""
|
| 10195 |
|
| 10196 |
-
#: admin/locale.php:
|
| 10197 |
msgid "Option values"
|
| 10198 |
msgstr ""
|
| 10199 |
|
| 10200 |
-
#: admin/locale.php:
|
| 10201 |
msgid "Privacy"
|
| 10202 |
msgstr ""
|
| 10203 |
|
| 10204 |
-
#: admin/locale.php:
|
| 10205 |
msgid "Choose how you want to handle this form's data storage."
|
| 10206 |
msgstr ""
|
| 10207 |
|
| 10208 |
-
#: admin/locale.php:
|
| 10209 |
msgid "By default we will use the configuration you have set in your"
|
| 10210 |
msgstr ""
|
| 10211 |
|
| 10212 |
-
#: admin/locale.php:
|
| 10213 |
msgid "global privacy settings."
|
| 10214 |
msgstr ""
|
| 10215 |
|
| 10216 |
-
#: admin/locale.php:
|
| 10217 |
msgid "How long do you want to retain this form's submissions for?"
|
| 10218 |
msgstr ""
|
| 10219 |
|
| 10220 |
-
#: admin/locale.php:
|
| 10221 |
msgid "Use default"
|
| 10222 |
msgstr ""
|
| 10223 |
|
| 10224 |
-
#: admin/locale.php:
|
| 10225 |
msgid "Your default setting value is to keep the submissions"
|
| 10226 |
msgstr ""
|
| 10227 |
|
| 10228 |
-
#: admin/locale.php:
|
| 10229 |
msgid "Weeks"
|
| 10230 |
msgstr ""
|
| 10231 |
|
| 10232 |
-
#: admin/locale.php:
|
| 10233 |
msgid "Months"
|
| 10234 |
msgstr ""
|
| 10235 |
|
| 10236 |
-
#: admin/locale.php:
|
| 10237 |
msgid "Years"
|
| 10238 |
msgstr ""
|
| 10239 |
|
| 10240 |
-
#: admin/locale.php:
|
| 10241 |
msgid "Leave the field blank to retain submissions forever."
|
| 10242 |
msgstr ""
|
| 10243 |
|
| 10244 |
-
#: admin/locale.php:
|
| 10245 |
msgid "Account Erasure Requests"
|
| 10246 |
msgstr ""
|
| 10247 |
|
| 10248 |
-
#: admin/locale.php:
|
| 10249 |
msgid ""
|
| 10250 |
"When handling an account erasure request that contains an email associated "
|
| 10251 |
"with a submission, what do you want to do?"
|
| 10252 |
msgstr ""
|
| 10253 |
|
| 10254 |
-
#: admin/locale.php:
|
| 10255 |
msgid "Your default setting value is to "
|
| 10256 |
msgstr ""
|
| 10257 |
|
| 10258 |
-
#: admin/locale.php:
|
| 10259 |
msgid " the submission."
|
| 10260 |
msgstr ""
|
| 10261 |
|
| 10262 |
-
#: admin/locale.php:
|
| 10263 |
msgid "Retain Submissions"
|
| 10264 |
msgstr ""
|
| 10265 |
|
| 10266 |
-
#: admin/locale.php:
|
| 10267 |
msgid "Remove Submissions"
|
| 10268 |
msgstr ""
|
| 10269 |
|
| 10270 |
-
#: admin/locale.php:
|
| 10271 |
msgid "Submission Files"
|
| 10272 |
msgstr ""
|
| 10273 |
|
| 10274 |
-
#: admin/locale.php:
|
| 10275 |
msgid ""
|
| 10276 |
"If your form has file upload field(s), choose whether to delete the file(s) "
|
| 10277 |
"related to a submission when that submission gets deleted."
|
| 10278 |
msgstr ""
|
| 10279 |
|
| 10280 |
-
#: admin/locale.php:
|
| 10281 |
msgid "Keep"
|
| 10282 |
msgstr ""
|
| 10283 |
|
| 10284 |
-
#: admin/locale.php:
|
| 10285 |
msgid "Unknown setting"
|
| 10286 |
msgstr ""
|
| 10287 |
|
| 10288 |
-
#: admin/locale.php:
|
| 10289 |
msgid ""
|
| 10290 |
"Assign a calculation value to each option. These values will not be shown "
|
| 10291 |
"on the form. You can assign only a numeric value."
|
| 10292 |
msgstr ""
|
| 10293 |
|
| 10294 |
-
#: admin/locale.php:
|
| 10295 |
msgid "Calculation value"
|
| 10296 |
msgstr ""
|
| 10297 |
|
| 10298 |
-
#: admin/locale.php:
|
| 10299 |
msgid "Calculation value is required!"
|
| 10300 |
msgstr ""
|
| 10301 |
|
| 10302 |
-
#: admin/locale.php:
|
| 10303 |
msgid "Pick custom date(s) to restrict"
|
| 10304 |
msgstr ""
|
| 10305 |
|
| 10306 |
-
#: admin/locale.php:
|
| 10307 |
msgid "Pick a date"
|
| 10308 |
msgstr ""
|
| 10309 |
|
| 10310 |
-
#: admin/locale.php:
|
| 10311 |
msgid "Add selected date"
|
| 10312 |
msgstr ""
|
| 10313 |
|
| 10314 |
-
#: admin/locale.php:
|
| 10315 |
msgid "Restricted dates"
|
| 10316 |
msgstr ""
|
| 10317 |
|
| 10318 |
-
#: admin/locale.php:
|
| 10319 |
msgid "Allowed filetypes"
|
| 10320 |
msgstr ""
|
| 10321 |
|
| 10322 |
-
#: admin/locale.php:
|
| 10323 |
msgid ""
|
| 10324 |
"By default, we will use WordPress' {{a}}default allowed mime types{{/a}}. "
|
| 10325 |
"However, you can restrict your users to upload some specific types of files "
|
| 10326 |
"only."
|
| 10327 |
msgstr ""
|
| 10328 |
|
| 10329 |
-
#: admin/locale.php:
|
| 10330 |
msgid "Specific filetypes"
|
| 10331 |
msgstr ""
|
| 10332 |
|
| 10333 |
-
#: admin/locale.php:
|
| 10334 |
msgid "Images"
|
| 10335 |
msgstr ""
|
| 10336 |
|
| 10337 |
-
#: admin/locale.php:
|
| 10338 |
msgid "Documents"
|
| 10339 |
msgstr ""
|
| 10340 |
|
| 10341 |
-
#: admin/locale.php:
|
| 10342 |
msgid "Audio"
|
| 10343 |
msgstr ""
|
| 10344 |
|
| 10345 |
-
#: admin/locale.php:
|
| 10346 |
msgid "Video"
|
| 10347 |
msgstr ""
|
| 10348 |
|
| 10349 |
-
#: admin/locale.php:
|
| 10350 |
msgid "Archive"
|
| 10351 |
msgstr ""
|
| 10352 |
|
| 10353 |
-
#: admin/locale.php:
|
| 10354 |
msgid "Spreadsheet"
|
| 10355 |
msgstr ""
|
| 10356 |
|
| 10357 |
-
#: admin/locale.php:
|
| 10358 |
msgid "Interactive"
|
| 10359 |
msgstr ""
|
| 10360 |
|
| 10361 |
-
#: admin/locale.php:
|
| 10362 |
msgid "Additional filetypes"
|
| 10363 |
msgstr ""
|
| 10364 |
|
| 10365 |
-
#: admin/locale.php:
|
| 10366 |
msgid "E.g. .ai, .sketch, .studio"
|
| 10367 |
msgstr ""
|
| 10368 |
|
| 10369 |
-
#: admin/locale.php:
|
| 10370 |
msgid ""
|
| 10371 |
"Add a comma-separated list of filetypes you want to allow in addition to "
|
| 10372 |
"the ones enabled above."
|
| 10373 |
msgstr ""
|
| 10374 |
|
| 10375 |
-
#: admin/locale.php:
|
| 10376 |
msgid ""
|
| 10377 |
"Note that if you're having trouble uploading one of the enabled filetypes, "
|
| 10378 |
"that filetype may be restricted by your hosting provider."
|
| 10379 |
msgstr ""
|
| 10380 |
|
| 10381 |
-
#: admin/locale.php:
|
| 10382 |
msgid "Font Family"
|
| 10383 |
msgstr ""
|
| 10384 |
|
| 10385 |
-
#: admin/locale.php:
|
| 10386 |
msgid "Roboto"
|
| 10387 |
msgstr ""
|
| 10388 |
|
| 10389 |
-
#: admin/locale.php:
|
| 10390 |
msgid "inherit"
|
| 10391 |
msgstr ""
|
| 10392 |
|
| 10393 |
-
#: admin/locale.php:
|
| 10394 |
#: library/modules/custom-forms/admin/admin-loader.php:160
|
| 10395 |
msgid "Custom user font"
|
| 10396 |
msgstr ""
|
| 10397 |
|
| 10398 |
-
#: admin/locale.php:
|
| 10399 |
msgid "E.g., Arial, sans-serif"
|
| 10400 |
msgstr ""
|
| 10401 |
|
| 10402 |
-
#: admin/locale.php:
|
| 10403 |
msgid "E.g., 16"
|
| 10404 |
msgstr ""
|
| 10405 |
|
| 10406 |
-
#: admin/locale.php:
|
| 10407 |
msgid "Font Size"
|
| 10408 |
msgstr ""
|
| 10409 |
|
| 10410 |
-
#: admin/locale.php:
|
| 10411 |
msgid "Font Weight"
|
| 10412 |
msgstr ""
|
| 10413 |
|
| 10414 |
-
#: admin/locale.php:
|
| 10415 |
msgid "Select font weight"
|
| 10416 |
msgstr ""
|
| 10417 |
|
| 10418 |
-
#: admin/locale.php:
|
| 10419 |
msgid "Start & End date"
|
| 10420 |
msgstr ""
|
| 10421 |
|
| 10422 |
-
#: admin/locale.php:
|
| 10423 |
msgid ""
|
| 10424 |
"Choose a start and end date limit for the calendar to restrict the date "
|
| 10425 |
"selection between a specific date range. Note that we will use the timezone "
|
| 10426 |
"set in your {{a}}WordPress Settings{{/a}}."
|
| 10427 |
msgstr ""
|
| 10428 |
|
| 10429 |
-
#: admin/locale.php:
|
| 10430 |
msgid "Start Date"
|
| 10431 |
msgstr ""
|
| 10432 |
|
| 10433 |
-
#: admin/locale.php:
|
| 10434 |
msgid "No limit"
|
| 10435 |
msgstr ""
|
| 10436 |
|
| 10437 |
-
#: admin/locale.php:
|
| 10438 |
msgid "Specific date"
|
| 10439 |
msgstr ""
|
| 10440 |
|
| 10441 |
-
#: admin/locale.php:
|
| 10442 |
msgid "Date fields"
|
| 10443 |
msgstr ""
|
| 10444 |
|
| 10445 |
-
#: admin/locale.php:
|
| 10446 |
msgid "Offset (optional)"
|
| 10447 |
msgstr ""
|
| 10448 |
|
| 10449 |
-
#: admin/locale.php:
|
| 10450 |
msgid "+"
|
| 10451 |
msgstr ""
|
| 10452 |
|
| 10453 |
-
#: admin/locale.php:
|
| 10454 |
msgid "-"
|
| 10455 |
msgstr ""
|
| 10456 |
|
| 10457 |
-
#: admin/locale.php:
|
| 10458 |
msgid "days"
|
| 10459 |
msgstr ""
|
| 10460 |
|
| 10461 |
-
#: admin/locale.php:
|
| 10462 |
msgid "weeks"
|
| 10463 |
msgstr ""
|
| 10464 |
|
| 10465 |
-
#: admin/locale.php:
|
| 10466 |
msgid "months"
|
| 10467 |
msgstr ""
|
| 10468 |
|
| 10469 |
-
#: admin/locale.php:
|
| 10470 |
msgid "years"
|
| 10471 |
msgstr ""
|
| 10472 |
|
| 10473 |
-
#: admin/locale.php:
|
| 10474 |
msgid "End Date"
|
| 10475 |
msgstr ""
|
| 10476 |
|
| 10477 |
-
#: admin/locale.php:
|
| 10478 |
msgid "Days of the week"
|
| 10479 |
msgstr ""
|
| 10480 |
|
| 10481 |
-
#: admin/locale.php:
|
| 10482 |
msgid "Choose which days of the week should be available on the calendar."
|
| 10483 |
msgstr ""
|
| 10484 |
|
| 10485 |
-
#: admin/locale.php:
|
| 10486 |
msgid "All days"
|
| 10487 |
msgstr ""
|
| 10488 |
|
| 10489 |
-
#: admin/locale.php:
|
| 10490 |
msgid "Selected days"
|
| 10491 |
msgstr ""
|
| 10492 |
|
| 10493 |
-
#: admin/locale.php:
|
| 10494 |
msgid "Disable dates"
|
| 10495 |
msgstr ""
|
| 10496 |
|
| 10497 |
-
#: admin/locale.php:
|
| 10498 |
msgid "Use this setting to disable specific dates on the calendar."
|
| 10499 |
msgstr ""
|
| 10500 |
|
| 10501 |
-
#: admin/locale.php:
|
| 10502 |
msgid "Disable date ranges"
|
| 10503 |
msgstr ""
|
| 10504 |
|
| 10505 |
-
#: admin/locale.php:
|
| 10506 |
msgid "Use this setting to disable specific dates ranges on the calendar."
|
| 10507 |
msgstr ""
|
| 10508 |
|
| 10509 |
-
#: admin/locale.php:
|
| 10510 |
msgid ""
|
| 10511 |
"Choose an error message to be used when visitor enters a date that is "
|
| 10512 |
"disabled."
|
| 10513 |
msgstr ""
|
| 10514 |
|
| 10515 |
-
#: admin/locale.php:
|
| 10516 |
msgid "Select a Field"
|
| 10517 |
msgstr ""
|
| 10518 |
|
| 10519 |
-
#: admin/locale.php:
|
| 10520 |
msgid "Delete MetaData"
|
| 10521 |
msgstr ""
|
| 10522 |
|
| 10523 |
-
#: admin/locale.php:
|
| 10524 |
msgid "Add Custom Meta"
|
| 10525 |
msgstr ""
|
| 10526 |
|
| 10527 |
-
#: admin/locale.php:
|
| 10528 |
msgid ""
|
| 10529 |
"No custom meta data created yet. Click on \"+ Add Custom to create custom "
|
| 10530 |
"meta and map form fields to it."
|
| 10531 |
msgstr ""
|
| 10532 |
|
| 10533 |
-
#: admin/locale.php:
|
| 10534 |
msgid "Delete meta"
|
| 10535 |
msgstr ""
|
| 10536 |
|
| 10537 |
-
#: admin/locale.php:
|
| 10538 |
msgid "Default value"
|
| 10539 |
msgstr ""
|
| 10540 |
|
| 10541 |
-
#: admin/locale.php:
|
| 10542 |
msgid "Mr."
|
| 10543 |
msgstr ""
|
| 10544 |
|
| 10545 |
-
#: admin/locale.php:
|
| 10546 |
msgid "Mrs."
|
| 10547 |
msgstr ""
|
| 10548 |
|
| 10549 |
-
#: admin/locale.php:
|
| 10550 |
msgid "Ms."
|
| 10551 |
msgstr ""
|
| 10552 |
|
| 10553 |
-
#: admin/locale.php:
|
| 10554 |
msgid "Mx."
|
| 10555 |
msgstr ""
|
| 10556 |
|
| 10557 |
-
#: admin/locale.php:
|
| 10558 |
msgid "Miss"
|
| 10559 |
msgstr ""
|
| 10560 |
|
| 10561 |
-
#: admin/locale.php:
|
| 10562 |
msgid "Dr."
|
| 10563 |
msgstr ""
|
| 10564 |
|
| 10565 |
-
#: admin/locale.php:
|
| 10566 |
msgid "Prof."
|
| 10567 |
msgstr ""
|
| 10568 |
|
| 10569 |
-
#: admin/locale.php:
|
| 10570 |
msgid "Toggle"
|
| 10571 |
msgstr ""
|
| 10572 |
|
| 10573 |
-
#: admin/locale.php:
|
| 10574 |
msgid "Submission limit"
|
| 10575 |
msgstr ""
|
| 10576 |
|
| 10577 |
-
#: admin/locale.php:
|
| 10578 |
msgid ""
|
| 10579 |
"The File APIs are not fully supported in this browser. You may copy and "
|
| 10580 |
"paste your options on the text area above or switch to a modern browser to "
|
| 10581 |
"use the importer."
|
| 10582 |
msgstr ""
|
| 10583 |
|
| 10584 |
-
#: admin/locale.php:
|
| 10585 |
msgid "Whoops, only .csv filetype is allowed."
|
| 10586 |
msgstr ""
|
| 10587 |
|
| 10588 |
-
#: admin/locale.php:
|
| 10589 |
msgid "Importing this will replace your current options. Click import to continue."
|
| 10590 |
msgstr ""
|
| 10591 |
|
| 10592 |
-
#: admin/locale.php:
|
| 10593 |
msgid "This browser doesn't seem to support the `files` property of file inputs."
|
| 10594 |
msgstr ""
|
| 10595 |
|
| 10596 |
-
#: admin/locale.php:
|
| 10597 |
msgid "Option "
|
| 10598 |
msgstr ""
|
| 10599 |
|
| 10600 |
-
#: admin/locale.php:
|
| 10601 |
msgid "Expand All"
|
| 10602 |
msgstr ""
|
| 10603 |
|
| 10604 |
-
#: admin/locale.php:
|
| 10605 |
msgid "Collapse All"
|
| 10606 |
msgstr ""
|
| 10607 |
|
| 10608 |
-
#: admin/locale.php:
|
| 10609 |
#: library/fields/radio.php:71
|
| 10610 |
msgid "Radio"
|
| 10611 |
msgstr ""
|
| 10612 |
|
| 10613 |
-
#: admin/locale.php:
|
| 10614 |
msgid "Label; value; selection (0 or 1); image-url"
|
| 10615 |
msgstr ""
|
| 10616 |
|
| 10617 |
-
#: admin/locale.php:
|
| 10618 |
msgid "Label; value; selection (0 or 1); submission limit"
|
| 10619 |
msgstr ""
|
| 10620 |
|
| 10621 |
-
#: admin/locale.php:
|
| 10622 |
msgid "Label; value; selection (0 or 1)"
|
| 10623 |
msgstr ""
|
| 10624 |
|
| 10625 |
-
#: admin/locale.php:
|
| 10626 |
msgid ""
|
| 10627 |
"Warning! You've added more than 1000 options. Switching back to the "
|
| 10628 |
"standard (non-bulk) editor could make your browser slow or unresponsive. "
|
| 10629 |
"Proceed with caution."
|
| 10630 |
msgstr ""
|
| 10631 |
|
| 10632 |
-
#: admin/locale.php:
|
| 10633 |
msgid "Options"
|
| 10634 |
msgstr ""
|
| 10635 |
|
| 10636 |
-
#: admin/locale.php:
|
| 10637 |
msgid "Enable Images"
|
| 10638 |
msgstr ""
|
| 10639 |
|
| 10640 |
-
#: admin/locale.php:
|
| 10641 |
msgid "Bulk Edit"
|
| 10642 |
msgstr ""
|
| 10643 |
|
| 10644 |
-
#: admin/locale.php:
|
| 10645 |
msgid "Loading"
|
| 10646 |
msgstr ""
|
| 10647 |
|
| 10648 |
-
#: admin/locale.php:
|
| 10649 |
msgid "Enter field options (one per line)"
|
| 10650 |
msgstr ""
|
| 10651 |
|
| 10652 |
-
#: admin/locale.php:
|
| 10653 |
msgid ""
|
| 10654 |
"Type or paste options above (one per line and separated by semicolons) or "
|
| 10655 |
"click \n"
|
|
@@ -10657,281 +10680,281 @@ msgid ""
|
|
| 10657 |
"{{b}}false{{/b}}"
|
| 10658 |
msgstr ""
|
| 10659 |
|
| 10660 |
-
#: admin/locale.php:
|
| 10661 |
msgid "Import options from CSV"
|
| 10662 |
msgstr ""
|
| 10663 |
|
| 10664 |
-
#: admin/locale.php:
|
| 10665 |
msgid "Upload file"
|
| 10666 |
msgstr ""
|
| 10667 |
|
| 10668 |
-
#: admin/locale.php:
|
| 10669 |
msgid "Choose a CSV (.csv) file to import field options and values."
|
| 10670 |
msgstr ""
|
| 10671 |
|
| 10672 |
-
#: admin/locale.php:
|
| 10673 |
msgid "Download csv template"
|
| 10674 |
msgstr ""
|
| 10675 |
|
| 10676 |
-
#: admin/locale.php:
|
| 10677 |
msgid "Page"
|
| 10678 |
msgstr ""
|
| 10679 |
|
| 10680 |
-
#: admin/locale.php:
|
| 10681 |
msgid "No Previous button"
|
| 10682 |
msgstr ""
|
| 10683 |
|
| 10684 |
-
#: admin/locale.php:
|
| 10685 |
#: library/helpers/helper-core.php:421
|
| 10686 |
#: library/modules/custom-forms/front/front-render.php:914
|
| 10687 |
msgid "Previous"
|
| 10688 |
msgstr ""
|
| 10689 |
|
| 10690 |
-
#: admin/locale.php:
|
| 10691 |
msgid "No Next button"
|
| 10692 |
msgstr ""
|
| 10693 |
|
| 10694 |
-
#: admin/locale.php:
|
| 10695 |
msgid ""
|
| 10696 |
"{{strong}}Note:{{/strong}} Using WordPress Reserved Terms as query "
|
| 10697 |
"parameters may cause unexpected form behavior. Find the complete list of "
|
| 10698 |
"{{link}}{{icon/}} WordPress Reserved Terms here{{/link}}."
|
| 10699 |
msgstr ""
|
| 10700 |
|
| 10701 |
-
#: admin/locale.php:
|
| 10702 |
msgid "Pre-populate"
|
| 10703 |
msgstr ""
|
| 10704 |
|
| 10705 |
-
#: admin/locale.php:
|
| 10706 |
msgid ""
|
| 10707 |
"You can pre-populate this field dynamically using the query parameter "
|
| 10708 |
"passed in your form URL. Enter the query parameter key to fetch its value "
|
| 10709 |
"from your form URL below."
|
| 10710 |
msgstr ""
|
| 10711 |
|
| 10712 |
-
#: admin/locale.php:
|
| 10713 |
msgid "Query parameter (optional)"
|
| 10714 |
msgstr ""
|
| 10715 |
|
| 10716 |
-
#: admin/locale.php:
|
| 10717 |
msgid "radio button"
|
| 10718 |
msgstr ""
|
| 10719 |
|
| 10720 |
-
#: admin/locale.php:
|
| 10721 |
msgid "checkbox"
|
| 10722 |
msgstr ""
|
| 10723 |
|
| 10724 |
-
#: admin/locale.php:
|
| 10725 |
msgid "visibility"
|
| 10726 |
msgstr ""
|
| 10727 |
|
| 10728 |
-
#: admin/locale.php:
|
| 10729 |
msgid "When using image options, you can hide or show the "
|
| 10730 |
msgstr ""
|
| 10731 |
|
| 10732 |
-
#: admin/locale.php:
|
| 10733 |
msgid "Require"
|
| 10734 |
msgstr ""
|
| 10735 |
|
| 10736 |
-
#: admin/locale.php:
|
| 10737 |
msgid "Force users to fill out this field, otherwise it will be optional."
|
| 10738 |
msgstr ""
|
| 10739 |
|
| 10740 |
-
#: admin/locale.php:
|
| 10741 |
msgid "Required"
|
| 10742 |
msgstr ""
|
| 10743 |
|
| 10744 |
-
#: admin/locale.php:
|
| 10745 |
msgid "Password error message"
|
| 10746 |
msgstr ""
|
| 10747 |
|
| 10748 |
-
#: admin/locale.php:
|
| 10749 |
msgid "Confirm Password error message"
|
| 10750 |
msgstr ""
|
| 10751 |
|
| 10752 |
-
#: admin/locale.php:
|
| 10753 |
msgid "Enter confirm password message"
|
| 10754 |
msgstr ""
|
| 10755 |
|
| 10756 |
-
#: admin/locale.php:
|
| 10757 |
msgid "Options without a value will be treated as empty options"
|
| 10758 |
msgstr ""
|
| 10759 |
|
| 10760 |
-
#: admin/locale.php:
|
| 10761 |
msgid ""
|
| 10762 |
"Add classes that will be output on this field's container to aid your "
|
| 10763 |
"theme's default styling."
|
| 10764 |
msgstr ""
|
| 10765 |
|
| 10766 |
-
#: admin/locale.php:
|
| 10767 |
msgid "E.g. form-field"
|
| 10768 |
msgstr ""
|
| 10769 |
|
| 10770 |
-
#: admin/locale.php:
|
| 10771 |
msgid "These will be output as you see them here."
|
| 10772 |
msgstr ""
|
| 10773 |
|
| 10774 |
-
#: admin/locale.php:
|
| 10775 |
msgid ""
|
| 10776 |
"{{strong}}\"%(label)s\"{{/strong}} when {{strong}}%(field)s{{/strong}} "
|
| 10777 |
"%(rule)s {{strong}}%(value)s{{/strong}}"
|
| 10778 |
msgstr ""
|
| 10779 |
|
| 10780 |
-
#: admin/locale.php:
|
| 10781 |
msgid "Condition (Required)"
|
| 10782 |
msgstr ""
|
| 10783 |
|
| 10784 |
-
#: admin/locale.php:
|
| 10785 |
msgid "Select date"
|
| 10786 |
msgstr ""
|
| 10787 |
|
| 10788 |
-
#: admin/locale.php:
|
| 10789 |
msgid "Number of days"
|
| 10790 |
msgstr ""
|
| 10791 |
|
| 10792 |
-
#: admin/locale.php:
|
| 10793 |
#: library/fields/currency.php:85 library/fields/number.php:83
|
| 10794 |
msgid "E.g. 10"
|
| 10795 |
msgstr ""
|
| 10796 |
|
| 10797 |
-
#: admin/locale.php:
|
| 10798 |
msgid "Add User Role"
|
| 10799 |
msgstr ""
|
| 10800 |
|
| 10801 |
-
#: admin/locale.php:
|
| 10802 |
msgid "Is before"
|
| 10803 |
msgstr ""
|
| 10804 |
|
| 10805 |
-
#: admin/locale.php:
|
| 10806 |
msgid "Is after"
|
| 10807 |
msgstr ""
|
| 10808 |
|
| 10809 |
-
#: admin/locale.php:
|
| 10810 |
msgid "Is before n or more days"
|
| 10811 |
msgstr ""
|
| 10812 |
|
| 10813 |
-
#: admin/locale.php:
|
| 10814 |
msgid "Is before less than n days"
|
| 10815 |
msgstr ""
|
| 10816 |
|
| 10817 |
-
#: admin/locale.php:
|
| 10818 |
msgid "Is after n or more days"
|
| 10819 |
msgstr ""
|
| 10820 |
|
| 10821 |
-
#: admin/locale.php:
|
| 10822 |
msgid "Is after less than n days"
|
| 10823 |
msgstr ""
|
| 10824 |
|
| 10825 |
-
#: admin/locale.php:
|
| 10826 |
msgid "this field if"
|
| 10827 |
msgstr ""
|
| 10828 |
|
| 10829 |
-
#: admin/locale.php:
|
| 10830 |
msgid "Process this plan if"
|
| 10831 |
msgstr ""
|
| 10832 |
|
| 10833 |
-
#: admin/locale.php:
|
| 10834 |
msgid "of the following conditions match:"
|
| 10835 |
msgstr ""
|
| 10836 |
|
| 10837 |
-
#: admin/locale.php:
|
| 10838 |
msgid ""
|
| 10839 |
"You need more than one field to configure visibility conditions. Add more "
|
| 10840 |
"fields!"
|
| 10841 |
msgstr ""
|
| 10842 |
|
| 10843 |
-
#: admin/locale.php:
|
| 10844 |
msgid "Rules"
|
| 10845 |
msgstr ""
|
| 10846 |
|
| 10847 |
-
#: admin/locale.php:
|
| 10848 |
msgid "Add conditions"
|
| 10849 |
msgstr ""
|
| 10850 |
|
| 10851 |
-
#: admin/locale.php:
|
| 10852 |
msgid ""
|
| 10853 |
"By default field will always be visible. If you want to hide or show fields "
|
| 10854 |
"based on user input you can add conditions."
|
| 10855 |
msgstr ""
|
| 10856 |
|
| 10857 |
-
#: admin/locale.php:
|
| 10858 |
msgid ""
|
| 10859 |
"Add conditions for how this plan will be processed based on your form field "
|
| 10860 |
"data."
|
| 10861 |
msgstr ""
|
| 10862 |
|
| 10863 |
-
#: admin/locale.php:
|
| 10864 |
msgid "You have unsaved changes, are you sure want to leave this page"
|
| 10865 |
msgstr ""
|
| 10866 |
|
| 10867 |
-
#: admin/locale.php:
|
| 10868 |
msgid "Security"
|
| 10869 |
msgstr ""
|
| 10870 |
|
| 10871 |
-
#: admin/locale.php:
|
| 10872 |
msgid "Added layers of security to prevent spam submissions."
|
| 10873 |
msgstr ""
|
| 10874 |
|
| 10875 |
-
#: admin/locale.php:
|
| 10876 |
msgid "Enable Honeypot protection"
|
| 10877 |
msgstr ""
|
| 10878 |
|
| 10879 |
-
#: admin/locale.php:
|
| 10880 |
msgid ""
|
| 10881 |
"Enabling this feature tricks spam bots by giving them a hidden challenge "
|
| 10882 |
"only bots will see. If the bot tries the challenge we know it's not a human "
|
| 10883 |
"and prevent the form being submitted."
|
| 10884 |
msgstr ""
|
| 10885 |
|
| 10886 |
-
#: admin/locale.php:
|
| 10887 |
msgid "Enable Akismet spam protection"
|
| 10888 |
msgstr ""
|
| 10889 |
|
| 10890 |
-
#: admin/locale.php:
|
| 10891 |
msgid ""
|
| 10892 |
"If you have installed the {{link}}Akismet anti-spam plugin{{/link}}, you "
|
| 10893 |
"can enable this option to tell Forminator how to handle submissions that "
|
| 10894 |
"Akismet flags as spam."
|
| 10895 |
msgstr ""
|
| 10896 |
|
| 10897 |
-
#: admin/locale.php:
|
| 10898 |
msgid "How should Forminator handle spam submissions?"
|
| 10899 |
msgstr ""
|
| 10900 |
|
| 10901 |
-
#: admin/locale.php:
|
| 10902 |
msgid "Fail Submission"
|
| 10903 |
msgstr ""
|
| 10904 |
|
| 10905 |
-
#: admin/locale.php:
|
| 10906 |
msgid "Custom error message"
|
| 10907 |
msgstr ""
|
| 10908 |
|
| 10909 |
-
#: admin/locale.php:
|
| 10910 |
msgid ""
|
| 10911 |
"Enter a custom error message to let your visitors know why the submission "
|
| 10912 |
"failed."
|
| 10913 |
msgstr ""
|
| 10914 |
|
| 10915 |
-
#: admin/locale.php:
|
| 10916 |
msgid "Mark as Spam"
|
| 10917 |
msgstr ""
|
| 10918 |
|
| 10919 |
-
#: admin/locale.php:
|
| 10920 |
msgid ""
|
| 10921 |
"Entries marked as spam will be captured in the database, but not shown in "
|
| 10922 |
"Submissions. Additionally, Payments, Notification emails, and other "
|
| 10923 |
"automatic processes will be blocked."
|
| 10924 |
msgstr ""
|
| 10925 |
|
| 10926 |
-
#: admin/locale.php:
|
| 10927 |
msgid "Enable logged in submission only"
|
| 10928 |
msgstr ""
|
| 10929 |
|
| 10930 |
-
#: admin/locale.php:
|
| 10931 |
msgid "Lock down your form submissions to registered users only."
|
| 10932 |
msgstr ""
|
| 10933 |
|
| 10934 |
-
#: admin/locale.php:
|
| 10935 |
#: admin/views/addons/addons-list.php:155
|
| 10936 |
#: library/modules/polls/admin/admin-loader.php:176
|
| 10937 |
#: library/modules/polls/admin/admin-loader.php:179
|
|
@@ -10939,310 +10962,310 @@ msgstr ""
|
|
| 10939 |
msgid "Details"
|
| 10940 |
msgstr ""
|
| 10941 |
|
| 10942 |
-
#: admin/locale.php:
|
| 10943 |
msgid "Use default colors"
|
| 10944 |
msgstr ""
|
| 10945 |
|
| 10946 |
-
#: admin/locale.php:
|
| 10947 |
msgid "Poll Container"
|
| 10948 |
msgstr ""
|
| 10949 |
|
| 10950 |
-
#: admin/locale.php:
|
| 10951 |
msgid "Poll Basics"
|
| 10952 |
msgstr ""
|
| 10953 |
|
| 10954 |
-
#: admin/locale.php:
|
| 10955 |
msgid "Answers - Radio Option"
|
| 10956 |
msgstr ""
|
| 10957 |
|
| 10958 |
-
#: admin/locale.php:
|
| 10959 |
msgid "Radio Options"
|
| 10960 |
msgstr ""
|
| 10961 |
|
| 10962 |
-
#: admin/locale.php:
|
| 10963 |
msgid "Answers - Radio Image"
|
| 10964 |
msgstr ""
|
| 10965 |
|
| 10966 |
-
#: admin/locale.php:
|
| 10967 |
msgid "Custom Answer Input"
|
| 10968 |
msgstr ""
|
| 10969 |
|
| 10970 |
-
#: admin/locale.php:
|
| 10971 |
msgid "View Results Link"
|
| 10972 |
msgstr ""
|
| 10973 |
|
| 10974 |
-
#: admin/locale.php:
|
| 10975 |
msgid "Results Chart"
|
| 10976 |
msgstr ""
|
| 10977 |
|
| 10978 |
-
#: admin/locale.php:
|
| 10979 |
msgid "Basics"
|
| 10980 |
msgstr ""
|
| 10981 |
|
| 10982 |
-
#: admin/locale.php:
|
| 10983 |
msgid "Chart grid lines"
|
| 10984 |
msgstr ""
|
| 10985 |
|
| 10986 |
-
#: admin/locale.php:
|
| 10987 |
msgid "Legend text color"
|
| 10988 |
msgstr ""
|
| 10989 |
|
| 10990 |
-
#: admin/locale.php:
|
| 10991 |
msgid "Chart labels color"
|
| 10992 |
msgstr ""
|
| 10993 |
|
| 10994 |
-
#: admin/locale.php:
|
| 10995 |
msgid "Legends are always displayed on top of the chart."
|
| 10996 |
msgstr ""
|
| 10997 |
|
| 10998 |
-
#: admin/locale.php:
|
| 10999 |
msgid "Votes count"
|
| 11000 |
msgstr ""
|
| 11001 |
|
| 11002 |
-
#: admin/locale.php:
|
| 11003 |
msgid "Text displayed inside bars."
|
| 11004 |
msgstr ""
|
| 11005 |
|
| 11006 |
-
#: admin/locale.php:
|
| 11007 |
msgid "Tooltips"
|
| 11008 |
msgstr ""
|
| 11009 |
|
| 11010 |
-
#: admin/locale.php:
|
| 11011 |
msgid "Choose the graph colors for each poll answers below."
|
| 11012 |
msgstr ""
|
| 11013 |
|
| 11014 |
-
#: admin/locale.php:
|
| 11015 |
msgid "Question color"
|
| 11016 |
msgstr ""
|
| 11017 |
|
| 11018 |
-
#: admin/locale.php:
|
| 11019 |
msgid "Description color"
|
| 11020 |
msgstr ""
|
| 11021 |
|
| 11022 |
-
#: admin/locale.php:
|
| 11023 |
msgid "\"No votes yet\" text color"
|
| 11024 |
msgstr ""
|
| 11025 |
|
| 11026 |
-
#: admin/locale.php:
|
| 11027 |
msgid ""
|
| 11028 |
"Users see this text next to submit button when \"link on poll\" submission "
|
| 11029 |
"is enabled."
|
| 11030 |
msgstr ""
|
| 11031 |
|
| 11032 |
-
#: admin/locale.php:
|
| 11033 |
msgid "Link color"
|
| 11034 |
msgstr ""
|
| 11035 |
|
| 11036 |
-
#: admin/locale.php:
|
| 11037 |
msgid "Error response message will be displayed after poll vote submission fails."
|
| 11038 |
msgstr ""
|
| 11039 |
|
| 11040 |
-
#: admin/locale.php:
|
| 11041 |
msgid ""
|
| 11042 |
"Successful response message will be displayed after poll submission "
|
| 11043 |
"succeeds."
|
| 11044 |
msgstr ""
|
| 11045 |
|
| 11046 |
-
#: admin/locale.php:
|
| 11047 |
msgid "Choose how much spacing you want between each poll option."
|
| 11048 |
msgstr ""
|
| 11049 |
|
| 11050 |
-
#: admin/locale.php:
|
| 11051 |
msgid "Enclosed"
|
| 11052 |
msgstr ""
|
| 11053 |
|
| 11054 |
-
#: admin/locale.php:
|
| 11055 |
msgid ""
|
| 11056 |
"Choose a pre-made style for your poll and further customize it's appearance "
|
| 11057 |
"below."
|
| 11058 |
msgstr ""
|
| 11059 |
|
| 11060 |
-
#: admin/locale.php:
|
| 11061 |
msgid "Adjust the answers layout and overall poll alignment."
|
| 11062 |
msgstr ""
|
| 11063 |
|
| 11064 |
-
#: admin/locale.php:
|
| 11065 |
msgid "Choose whether the poll answers should appear in a list or a grid."
|
| 11066 |
msgstr ""
|
| 11067 |
|
| 11068 |
-
#: admin/locale.php:
|
| 11069 |
msgid "Grid"
|
| 11070 |
msgstr ""
|
| 11071 |
|
| 11072 |
-
#: admin/locale.php:
|
| 11073 |
msgid ""
|
| 11074 |
"Choose the number of columns to fit in one row. Note that grid layout "
|
| 11075 |
"changes to two columns on smaller screens so this won't affect the smaller "
|
| 11076 |
"screens."
|
| 11077 |
msgstr ""
|
| 11078 |
|
| 11079 |
-
#: admin/locale.php:
|
| 11080 |
msgid "Columns per row"
|
| 11081 |
msgstr ""
|
| 11082 |
|
| 11083 |
-
#: admin/locale.php:
|
| 11084 |
msgid "Answer Type"
|
| 11085 |
msgstr ""
|
| 11086 |
|
| 11087 |
-
#: admin/locale.php:
|
| 11088 |
msgid "Choose how your poll answers should be displayed on the frontend."
|
| 11089 |
msgstr ""
|
| 11090 |
|
| 11091 |
-
#: admin/locale.php:
|
| 11092 |
msgid "Image and Radio Button"
|
| 11093 |
msgstr ""
|
| 11094 |
|
| 11095 |
-
#: admin/locale.php:
|
| 11096 |
msgid "Image only"
|
| 11097 |
msgstr ""
|
| 11098 |
|
| 11099 |
-
#: admin/locale.php:
|
| 11100 |
msgid "Voting Limit"
|
| 11101 |
msgstr ""
|
| 11102 |
|
| 11103 |
-
#: admin/locale.php:
|
| 11104 |
msgid ""
|
| 11105 |
"Choose whether you want to limit the number of votes per users and how do "
|
| 11106 |
"you want to impose that limit. "
|
| 11107 |
msgstr ""
|
| 11108 |
|
| 11109 |
-
#: admin/locale.php:
|
| 11110 |
msgid "Votes per user"
|
| 11111 |
msgstr ""
|
| 11112 |
|
| 11113 |
-
#: admin/locale.php:
|
| 11114 |
msgid ""
|
| 11115 |
"By default, a user can only vote once on a poll. However, you can allow the "
|
| 11116 |
"users to vote multiple times and also specify the time after which a user "
|
| 11117 |
"can vote again."
|
| 11118 |
msgstr ""
|
| 11119 |
|
| 11120 |
-
#: admin/locale.php:
|
| 11121 |
msgid "Once"
|
| 11122 |
msgstr ""
|
| 11123 |
|
| 11124 |
-
#: admin/locale.php:
|
| 11125 |
msgid "Allow Multiple"
|
| 11126 |
msgstr ""
|
| 11127 |
|
| 11128 |
-
#: admin/locale.php:
|
| 11129 |
#: library/modules/custom-forms/admin/admin-loader.php:161
|
| 11130 |
msgid "minute(s)"
|
| 11131 |
msgstr ""
|
| 11132 |
|
| 11133 |
-
#: admin/locale.php:
|
| 11134 |
#: library/modules/custom-forms/admin/admin-loader.php:162
|
| 11135 |
msgid "hour(s)"
|
| 11136 |
msgstr ""
|
| 11137 |
|
| 11138 |
-
#: admin/locale.php:
|
| 11139 |
msgid "Choose the method you want to use to limit the number of votes."
|
| 11140 |
msgstr ""
|
| 11141 |
|
| 11142 |
-
#: admin/locale.php:
|
| 11143 |
msgid "User IP"
|
| 11144 |
msgstr ""
|
| 11145 |
|
| 11146 |
-
#: admin/locale.php:
|
| 11147 |
msgid "Browser Cookie"
|
| 11148 |
msgstr ""
|
| 11149 |
|
| 11150 |
-
#: admin/locale.php:
|
| 11151 |
msgid "Vote Opening"
|
| 11152 |
msgstr ""
|
| 11153 |
|
| 11154 |
-
#: admin/locale.php:
|
| 11155 |
msgid "Choose when you want to open and close voting"
|
| 11156 |
msgstr ""
|
| 11157 |
|
| 11158 |
-
#: admin/locale.php:
|
| 11159 |
msgid "Choose the status of voting"
|
| 11160 |
msgstr ""
|
| 11161 |
|
| 11162 |
-
#: admin/locale.php:
|
| 11163 |
msgid "Open"
|
| 11164 |
msgstr ""
|
| 11165 |
|
| 11166 |
-
#: admin/locale.php:
|
| 11167 |
msgid "Pause"
|
| 11168 |
msgstr ""
|
| 11169 |
|
| 11170 |
-
#: admin/locale.php:
|
| 11171 |
msgid "Open from"
|
| 11172 |
msgstr ""
|
| 11173 |
|
| 11174 |
-
#: admin/locale.php:
|
| 11175 |
msgid "Choose when voting will be opened"
|
| 11176 |
msgstr ""
|
| 11177 |
|
| 11178 |
-
#: admin/locale.php:
|
| 11179 |
msgid "Now"
|
| 11180 |
msgstr ""
|
| 11181 |
|
| 11182 |
-
#: admin/locale.php:
|
| 11183 |
msgid "Specific Date Time"
|
| 11184 |
msgstr ""
|
| 11185 |
|
| 11186 |
-
#: admin/locale.php:
|
| 11187 |
msgid "Open until"
|
| 11188 |
msgstr ""
|
| 11189 |
|
| 11190 |
-
#: admin/locale.php:
|
| 11191 |
msgid "Choose how long voting will remain open"
|
| 11192 |
msgstr ""
|
| 11193 |
|
| 11194 |
-
#: admin/locale.php:
|
| 11195 |
msgid "Forever"
|
| 11196 |
msgstr ""
|
| 11197 |
|
| 11198 |
-
#: admin/locale.php:
|
| 11199 |
msgid "Custom messages"
|
| 11200 |
msgstr ""
|
| 11201 |
|
| 11202 |
-
#: admin/locale.php:
|
| 11203 |
msgid "Message when voting is closed"
|
| 11204 |
msgstr ""
|
| 11205 |
|
| 11206 |
-
#: admin/locale.php:
|
| 11207 |
msgid "E.g. Voting is closed"
|
| 11208 |
msgstr ""
|
| 11209 |
|
| 11210 |
-
#: admin/locale.php:
|
| 11211 |
msgid "Message when voting is paused"
|
| 11212 |
msgstr ""
|
| 11213 |
|
| 11214 |
-
#: admin/locale.php:
|
| 11215 |
msgid "E.g. Voting is paused, check again later"
|
| 11216 |
msgstr ""
|
| 11217 |
|
| 11218 |
-
#: admin/locale.php:
|
| 11219 |
msgid "Message before voting open from time"
|
| 11220 |
msgstr ""
|
| 11221 |
|
| 11222 |
-
#: admin/locale.php:
|
| 11223 |
msgid "E.g. Voting has not been started yet"
|
| 11224 |
msgstr ""
|
| 11225 |
|
| 11226 |
-
#: admin/locale.php:
|
| 11227 |
msgid "Choose how you want your poll to be rendered for users."
|
| 11228 |
msgstr ""
|
| 11229 |
|
| 11230 |
-
#: admin/locale.php:
|
| 11231 |
msgid "Load poll using AJAX"
|
| 11232 |
msgstr ""
|
| 11233 |
|
| 11234 |
-
#: admin/locale.php:
|
| 11235 |
msgid ""
|
| 11236 |
"Enabling this feature will load the poll via AJAX after the page has loaded "
|
| 11237 |
"up, effectively speeding up your page load time. This method can also (in "
|
| 11238 |
"most cases) avoid page caching issues with your poll."
|
| 11239 |
msgstr ""
|
| 11240 |
|
| 11241 |
-
#: admin/locale.php:
|
| 11242 |
msgid "Prevent page caching on poll pages"
|
| 11243 |
msgstr ""
|
| 11244 |
|
| 11245 |
-
#: admin/locale.php:
|
| 11246 |
msgid ""
|
| 11247 |
"Page caching plugins serve a static HTML version of the page which can "
|
| 11248 |
"cause issues to your dynamic polls. By enabling this, we'll use "
|
|
@@ -11250,81 +11273,81 @@ msgid ""
|
|
| 11250 |
"poll on it from being cached."
|
| 11251 |
msgstr ""
|
| 11252 |
|
| 11253 |
-
#: admin/locale.php:
|
| 11254 |
msgid "Pie Chart"
|
| 11255 |
msgstr ""
|
| 11256 |
|
| 11257 |
-
#: admin/locale.php:
|
| 11258 |
msgid "Bar Graph"
|
| 11259 |
msgstr ""
|
| 11260 |
|
| 11261 |
-
#: admin/locale.php:
|
| 11262 |
msgid "Results Display"
|
| 11263 |
msgstr ""
|
| 11264 |
|
| 11265 |
-
#: admin/locale.php:
|
| 11266 |
msgid ""
|
| 11267 |
"Choose how you want to display poll results to new submissions. You can "
|
| 11268 |
"customise colors in the {{link}}Appearance{{/link}} tab."
|
| 11269 |
msgstr ""
|
| 11270 |
|
| 11271 |
-
#: admin/locale.php:
|
| 11272 |
msgid "Link on poll"
|
| 11273 |
msgstr ""
|
| 11274 |
|
| 11275 |
-
#: admin/locale.php:
|
| 11276 |
msgid "Show after voted"
|
| 11277 |
msgstr ""
|
| 11278 |
|
| 11279 |
-
#: admin/locale.php:
|
| 11280 |
msgid "Do not show"
|
| 11281 |
msgstr ""
|
| 11282 |
|
| 11283 |
-
#: admin/locale.php:
|
| 11284 |
msgid "Submission Method"
|
| 11285 |
msgstr ""
|
| 11286 |
|
| 11287 |
-
#: admin/locale.php:
|
| 11288 |
msgid ""
|
| 11289 |
"By default, submissions don't require the page to reload. If you are having "
|
| 11290 |
"issues you might want use the traditional method of reloading the page."
|
| 11291 |
msgstr ""
|
| 11292 |
|
| 11293 |
-
#: admin/locale.php:
|
| 11294 |
msgid "Reload Page"
|
| 11295 |
msgstr ""
|
| 11296 |
|
| 11297 |
-
#: admin/locale.php:
|
| 11298 |
msgid "Vote Count"
|
| 11299 |
msgstr ""
|
| 11300 |
|
| 11301 |
-
#: admin/locale.php:
|
| 11302 |
msgid "Display the numbers of votes on bar chart results"
|
| 11303 |
msgstr ""
|
| 11304 |
|
| 11305 |
-
#: admin/locale.php:
|
| 11306 |
msgid "Delete answer"
|
| 11307 |
msgstr ""
|
| 11308 |
|
| 11309 |
-
#: admin/locale.php:
|
| 11310 |
msgid "Answer options"
|
| 11311 |
msgstr ""
|
| 11312 |
|
| 11313 |
-
#: admin/locale.php:
|
| 11314 |
msgid "Enable custom input"
|
| 11315 |
msgstr ""
|
| 11316 |
|
| 11317 |
-
#: admin/locale.php:
|
| 11318 |
msgid "Remove custom input"
|
| 11319 |
msgstr ""
|
| 11320 |
|
| 11321 |
-
#: admin/locale.php:
|
| 11322 |
msgid ""
|
| 11323 |
"A poll without answers isn’t going to be very useful… Add your answers "
|
| 11324 |
"above!"
|
| 11325 |
msgstr ""
|
| 11326 |
|
| 11327 |
-
#: admin/locale.php:
|
| 11328 |
#: admin/views/quiz/entries/content-leads.php:301
|
| 11329 |
#: admin/views/quiz/entries/content-leads.php:363 library/class-export.php:446
|
| 11330 |
#: library/modules/polls/admin/admin-loader.php:182
|
|
@@ -11332,388 +11355,388 @@ msgstr ""
|
|
| 11332 |
msgid "Question"
|
| 11333 |
msgstr ""
|
| 11334 |
|
| 11335 |
-
#: admin/locale.php:
|
| 11336 |
msgid "Start by adding the question you will be asking poll visitors to vote on."
|
| 11337 |
msgstr ""
|
| 11338 |
|
| 11339 |
-
#: admin/locale.php:
|
| 11340 |
msgid "What is your main question?"
|
| 11341 |
msgstr ""
|
| 11342 |
|
| 11343 |
-
#: admin/locale.php:
|
| 11344 |
msgid "E.g. Why did the chicken cross the road?"
|
| 11345 |
msgstr ""
|
| 11346 |
|
| 11347 |
-
#: admin/locale.php:
|
| 11348 |
msgid "Feature Image (optional)"
|
| 11349 |
msgstr ""
|
| 11350 |
|
| 11351 |
-
#: admin/locale.php:
|
| 11352 |
msgid ""
|
| 11353 |
"This image will appear under your main question and can be used to create "
|
| 11354 |
"polls based on an image."
|
| 11355 |
msgstr ""
|
| 11356 |
|
| 11357 |
-
#: admin/locale.php:
|
| 11358 |
msgid "Enter an optional description"
|
| 11359 |
msgstr ""
|
| 11360 |
|
| 11361 |
-
#: admin/locale.php:
|
| 11362 |
msgid ""
|
| 11363 |
"This will appear below the main question and can be used to further explain "
|
| 11364 |
"the main question."
|
| 11365 |
msgstr ""
|
| 11366 |
|
| 11367 |
-
#: admin/locale.php:
|
| 11368 |
msgid ""
|
| 11369 |
"Now add answers to your question that your users will use to vote with. Add "
|
| 11370 |
"as many as you like, just be careful to make sure each one is unique!"
|
| 11371 |
msgstr ""
|
| 11372 |
|
| 11373 |
-
#: admin/locale.php:
|
| 11374 |
msgid "Customize the button label used for submitting the users answer."
|
| 11375 |
msgstr ""
|
| 11376 |
|
| 11377 |
-
#: admin/locale.php:
|
| 11378 |
msgid "Button Text"
|
| 11379 |
msgstr ""
|
| 11380 |
|
| 11381 |
-
#: admin/locale.php:
|
| 11382 |
msgid "E.g. Vote"
|
| 11383 |
msgstr ""
|
| 11384 |
|
| 11385 |
-
#: admin/locale.php:
|
| 11386 |
msgid "Edit Poll"
|
| 11387 |
msgstr ""
|
| 11388 |
|
| 11389 |
-
#: admin/locale.php:
|
| 11390 |
msgid "Name your poll"
|
| 11391 |
msgstr ""
|
| 11392 |
|
| 11393 |
-
#: admin/locale.php:
|
| 11394 |
msgid "Give your poll a name"
|
| 11395 |
msgstr ""
|
| 11396 |
|
| 11397 |
-
#: admin/locale.php:
|
| 11398 |
msgid "You need to save this poll before using integrations."
|
| 11399 |
msgstr ""
|
| 11400 |
|
| 11401 |
-
#: admin/locale.php:
|
| 11402 |
msgid "Poll answers can not be empty."
|
| 11403 |
msgstr ""
|
| 11404 |
|
| 11405 |
-
#: admin/locale.php:
|
| 11406 |
msgid "Please enter valid voting limit."
|
| 11407 |
msgstr ""
|
| 11408 |
|
| 11409 |
-
#: admin/locale.php:
|
| 11410 |
msgid "Delete Answer"
|
| 11411 |
msgstr ""
|
| 11412 |
|
| 11413 |
-
#: admin/locale.php:
|
| 11414 |
msgid ""
|
| 11415 |
"Deleting this answer will remove its value from the existing submissions as "
|
| 11416 |
"well."
|
| 11417 |
msgstr ""
|
| 11418 |
|
| 11419 |
-
#: admin/locale.php:
|
| 11420 |
msgid "Publishing poll…"
|
| 11421 |
msgstr ""
|
| 11422 |
|
| 11423 |
-
#: admin/locale.php:
|
| 11424 |
msgid ""
|
| 11425 |
"Your poll is now ready to be embedded into a page or template of your "
|
| 11426 |
"choice. Simply copy and paste the shortcode below to display it!"
|
| 11427 |
msgstr ""
|
| 11428 |
|
| 11429 |
-
#: admin/locale.php:
|
| 11430 |
msgid "Notifications"
|
| 11431 |
msgstr ""
|
| 11432 |
|
| 11433 |
-
#: admin/locale.php:
|
| 11434 |
msgid ""
|
| 11435 |
"Optionally, you can send a notification email to nominated email accounts "
|
| 11436 |
"when poll submissions come in."
|
| 11437 |
msgstr ""
|
| 11438 |
|
| 11439 |
-
#: admin/locale.php:
|
| 11440 |
msgid "Poll Result"
|
| 11441 |
msgstr ""
|
| 11442 |
|
| 11443 |
-
#: admin/locale.php:
|
| 11444 |
msgid "By default we'll store all submissions in your database."
|
| 11445 |
msgstr ""
|
| 11446 |
|
| 11447 |
-
#: admin/locale.php:
|
| 11448 |
msgid ""
|
| 11449 |
"Choose how you want to handle this poll's data storage. By default we'll "
|
| 11450 |
"use the configuration you've set in your {{link}}global privacy "
|
| 11451 |
"settings{{/link}}."
|
| 11452 |
msgstr ""
|
| 11453 |
|
| 11454 |
-
#: admin/locale.php:
|
| 11455 |
msgid "How long do you want to retain this poll's submissions for?"
|
| 11456 |
msgstr ""
|
| 11457 |
|
| 11458 |
-
#: admin/locale.php:
|
| 11459 |
msgid "Your default setting value is to keep the submissions %s."
|
| 11460 |
msgstr ""
|
| 11461 |
|
| 11462 |
-
#: admin/locale.php:
|
| 11463 |
#: admin/views/settings/data/polls-privacy.php:29
|
| 11464 |
msgid "IP Retention"
|
| 11465 |
msgstr ""
|
| 11466 |
|
| 11467 |
-
#: admin/locale.php:
|
| 11468 |
msgid ""
|
| 11469 |
"Choose how long to retain IP address before a submission is anonymized. "
|
| 11470 |
"Keep in mind that the IP address is being used in checking multiple votes "
|
| 11471 |
"from same user."
|
| 11472 |
msgstr ""
|
| 11473 |
|
| 11474 |
-
#: admin/locale.php:
|
| 11475 |
msgid "Your default setting keep the IPs %s."
|
| 11476 |
msgstr ""
|
| 11477 |
|
| 11478 |
-
#: admin/locale.php:
|
| 11479 |
msgid "Leave the field blank to keep IPs forever."
|
| 11480 |
msgstr ""
|
| 11481 |
|
| 11482 |
-
#: admin/locale.php:
|
| 11483 |
msgid "Disabled"
|
| 11484 |
msgstr ""
|
| 11485 |
|
| 11486 |
-
#: admin/locale.php:
|
| 11487 |
msgid ""
|
| 11488 |
"Choose a pre-made style for your quiz and further customize it's appearance "
|
| 11489 |
"below."
|
| 11490 |
msgstr ""
|
| 11491 |
|
| 11492 |
-
#: admin/locale.php:
|
| 11493 |
msgid "Question text?"
|
| 11494 |
msgstr ""
|
| 11495 |
|
| 11496 |
-
#: admin/locale.php:
|
| 11497 |
msgid "Option Unselected"
|
| 11498 |
msgstr ""
|
| 11499 |
|
| 11500 |
-
#: admin/locale.php:
|
| 11501 |
msgid "Option Selected"
|
| 11502 |
msgstr ""
|
| 11503 |
|
| 11504 |
-
#: admin/locale.php:
|
| 11505 |
msgid ""
|
| 11506 |
"You have opted for no stylesheet to be enqueued. The quiz will inherit "
|
| 11507 |
"styles from your theme's CSS."
|
| 11508 |
msgstr ""
|
| 11509 |
|
| 11510 |
-
#: admin/locale.php:
|
| 11511 |
msgid ""
|
| 11512 |
"Customize your quiz layout by adjusting the answers layout and overall quiz "
|
| 11513 |
"alignment."
|
| 11514 |
msgstr ""
|
| 11515 |
|
| 11516 |
-
#: admin/locale.php:
|
| 11517 |
msgid "Choose whether the quiz answers should appear in a list or a grid."
|
| 11518 |
msgstr ""
|
| 11519 |
|
| 11520 |
-
#: admin/locale.php:
|
| 11521 |
msgid ""
|
| 11522 |
"Choose the number of columns to fit in one row. Note that grid layout "
|
| 11523 |
"changes to list on smaller screens so this won't affect the smaller screens."
|
| 11524 |
msgstr ""
|
| 11525 |
|
| 11526 |
-
#: admin/locale.php:
|
| 11527 |
msgid "Quiz Alignment"
|
| 11528 |
msgstr ""
|
| 11529 |
|
| 11530 |
-
#: admin/locale.php:
|
| 11531 |
msgid ""
|
| 11532 |
"Choose the overall alignment of your quiz. This setting affects everything, "
|
| 11533 |
"including title, description, questions and answers, buttons, and social "
|
| 11534 |
"share message."
|
| 11535 |
msgstr ""
|
| 11536 |
|
| 11537 |
-
#: admin/locale.php:
|
| 11538 |
msgid "Question Item Ordering"
|
| 11539 |
msgstr ""
|
| 11540 |
|
| 11541 |
-
#: admin/locale.php:
|
| 11542 |
msgid ""
|
| 11543 |
"Choose the order of items (Questions, Images, and Descriptions) from "
|
| 11544 |
"{{strong}}Top{{/strong}} to {{strong}}Bottom{{/strong}} in this quiz."
|
| 11545 |
msgstr ""
|
| 11546 |
|
| 11547 |
-
#: admin/locale.php:
|
| 11548 |
#: library/modules/custom-forms/admin/admin-loader.php:146
|
| 11549 |
msgid "Image"
|
| 11550 |
msgstr ""
|
| 11551 |
|
| 11552 |
-
#: admin/locale.php:
|
| 11553 |
msgid "Quiz Container"
|
| 11554 |
msgstr ""
|
| 11555 |
|
| 11556 |
-
#: admin/locale.php:
|
| 11557 |
msgid "Customize the quiz container as per your liking."
|
| 11558 |
msgstr ""
|
| 11559 |
|
| 11560 |
-
#: admin/locale.php:
|
| 11561 |
msgid ""
|
| 11562 |
"By default the quiz will fill the available space where you insert it. You "
|
| 11563 |
"can add some padding here to better suit your theme."
|
| 11564 |
msgstr ""
|
| 11565 |
|
| 11566 |
-
#: admin/locale.php:
|
| 11567 |
msgid "Add an optional border around the quiz."
|
| 11568 |
msgstr ""
|
| 11569 |
|
| 11570 |
-
#: admin/locale.php:
|
| 11571 |
msgid "Choose how much spacing you want between each quiz question."
|
| 11572 |
msgstr ""
|
| 11573 |
|
| 11574 |
-
#: admin/locale.php:
|
| 11575 |
msgid "Maximum Width"
|
| 11576 |
msgstr ""
|
| 11577 |
|
| 11578 |
-
#: admin/locale.php:
|
| 11579 |
msgid ""
|
| 11580 |
"Choose the maximum container width for your quiz. Full Width means quiz "
|
| 11581 |
"container will fill the 100% available space where you insert it, and the "
|
| 11582 |
"Custom option lets you define a maximum container width."
|
| 11583 |
msgstr ""
|
| 11584 |
|
| 11585 |
-
#: admin/locale.php:
|
| 11586 |
msgid "Full Width"
|
| 11587 |
msgstr ""
|
| 11588 |
|
| 11589 |
-
#: admin/locale.php:
|
| 11590 |
msgid "Maximum width"
|
| 11591 |
msgstr ""
|
| 11592 |
|
| 11593 |
-
#: admin/locale.php:
|
| 11594 |
msgid "Messages"
|
| 11595 |
msgstr ""
|
| 11596 |
|
| 11597 |
-
#: admin/locale.php:
|
| 11598 |
msgid ""
|
| 11599 |
"Choose the copy of the messages for the correct and wrong answers and also "
|
| 11600 |
"for the final score count."
|
| 11601 |
msgstr ""
|
| 11602 |
|
| 11603 |
-
#: admin/locale.php:
|
| 11604 |
msgid "Correct Answer Message"
|
| 11605 |
msgstr ""
|
| 11606 |
|
| 11607 |
-
#: admin/locale.php:
|
| 11608 |
msgid ""
|
| 11609 |
"Use {{strong}}%UserAnswer%{{/strong}} and "
|
| 11610 |
"{{strong}}%CorrectAnswer%{{/strong}} to display the answer chosen by the "
|
| 11611 |
"user and the correct answer for each question respectively."
|
| 11612 |
msgstr ""
|
| 11613 |
|
| 11614 |
-
#: admin/locale.php:
|
| 11615 |
msgid "Incorrect Answer Message"
|
| 11616 |
msgstr ""
|
| 11617 |
|
| 11618 |
-
#: admin/locale.php:
|
| 11619 |
msgid "Final Count Message"
|
| 11620 |
msgstr ""
|
| 11621 |
|
| 11622 |
-
#: admin/locale.php:
|
| 11623 |
msgid ""
|
| 11624 |
"Final count message will appear after the quiz is complete. Use "
|
| 11625 |
"{{strong}}%YourNum%{{/strong}} to display number of correct answers and "
|
| 11626 |
"{{strong}}%Total%{{/strong}} for total number of questions."
|
| 11627 |
msgstr ""
|
| 11628 |
|
| 11629 |
-
#: admin/locale.php:
|
| 11630 |
msgid "Quiz Answer"
|
| 11631 |
msgstr ""
|
| 11632 |
|
| 11633 |
-
#: admin/locale.php:
|
| 11634 |
#: library/modules/quizzes/admin/admin-loader.php:525
|
| 11635 |
#: library/modules/quizzes/admin/admin-loader.php:569
|
| 11636 |
msgid "Questions"
|
| 11637 |
msgstr ""
|
| 11638 |
|
| 11639 |
-
#: admin/locale.php:
|
| 11640 |
msgid "Choose how questions will be presented in the quiz."
|
| 11641 |
msgstr ""
|
| 11642 |
|
| 11643 |
-
#: admin/locale.php:
|
| 11644 |
msgid "Question Presentation"
|
| 11645 |
msgstr ""
|
| 11646 |
|
| 11647 |
-
#: admin/locale.php:
|
| 11648 |
msgid ""
|
| 11649 |
"Use this option to set how questions in this quiz will be presented. "
|
| 11650 |
"Paginated questions will display a number of questions to users at a time."
|
| 11651 |
msgstr ""
|
| 11652 |
|
| 11653 |
-
#: admin/locale.php:
|
| 11654 |
msgid "Number of questions per page"
|
| 11655 |
msgstr ""
|
| 11656 |
|
| 11657 |
-
#: admin/locale.php:
|
| 11658 |
msgid "Enter the number of questions to be displayed per page."
|
| 11659 |
msgstr ""
|
| 11660 |
|
| 11661 |
-
#: admin/locale.php:
|
| 11662 |
msgid "Start quiz button text"
|
| 11663 |
msgstr ""
|
| 11664 |
|
| 11665 |
-
#: admin/locale.php:
|
| 11666 |
msgid ""
|
| 11667 |
"Enter your start quiz button text. This button will not be shown If the "
|
| 11668 |
"lead generation is enabled and set to show before the quiz."
|
| 11669 |
msgstr ""
|
| 11670 |
|
| 11671 |
-
#: admin/locale.php:
|
| 11672 |
msgid "Start Quiz"
|
| 11673 |
msgstr ""
|
| 11674 |
|
| 11675 |
-
#: admin/locale.php:
|
| 11676 |
msgid "Previous button text"
|
| 11677 |
msgstr ""
|
| 11678 |
|
| 11679 |
-
#: admin/locale.php:
|
| 11680 |
msgid "Next button text"
|
| 11681 |
msgstr ""
|
| 11682 |
|
| 11683 |
-
#: admin/locale.php:
|
| 11684 |
msgid ""
|
| 11685 |
"By default, quiz navigation button texts are set to “Next”, and “Previous”, "
|
| 11686 |
"you can use the fields above to set a custom texts for these buttons."
|
| 11687 |
msgstr ""
|
| 11688 |
|
| 11689 |
-
#: admin/locale.php:
|
| 11690 |
msgid "Show page indicator"
|
| 11691 |
msgstr ""
|
| 11692 |
|
| 11693 |
-
#: admin/locale.php:
|
| 11694 |
msgid "Display current, and total page indicator"
|
| 11695 |
msgstr ""
|
| 11696 |
|
| 11697 |
-
#: admin/locale.php:
|
| 11698 |
msgid "Choose how you want your quiz to be rendered for users."
|
| 11699 |
msgstr ""
|
| 11700 |
|
| 11701 |
-
#: admin/locale.php:
|
| 11702 |
msgid "Load quiz using AJAX"
|
| 11703 |
msgstr ""
|
| 11704 |
|
| 11705 |
-
#: admin/locale.php:
|
| 11706 |
msgid ""
|
| 11707 |
"Enabling this feature will load the quiz via AJAX after the page has loaded "
|
| 11708 |
"up, effectively speeding up your page load time. This method can also (in "
|
| 11709 |
"most cases) avoid page caching issues with your quiz."
|
| 11710 |
msgstr ""
|
| 11711 |
|
| 11712 |
-
#: admin/locale.php:
|
| 11713 |
msgid "Prevent page caching on quiz pages"
|
| 11714 |
msgstr ""
|
| 11715 |
|
| 11716 |
-
#: admin/locale.php:
|
| 11717 |
msgid ""
|
| 11718 |
"Page caching plugins serve a static HTML version of the page which can "
|
| 11719 |
"cause issues to your dynamic quizzes. By enabling this, we'll use "
|
|
@@ -11721,177 +11744,177 @@ msgid ""
|
|
| 11721 |
"quiz on it from being cached."
|
| 11722 |
msgstr ""
|
| 11723 |
|
| 11724 |
-
#: admin/locale.php:
|
| 11725 |
msgid "Results"
|
| 11726 |
msgstr ""
|
| 11727 |
|
| 11728 |
-
#: admin/locale.php:
|
| 11729 |
msgid "Choose how do you want to show quiz results to the participants."
|
| 11730 |
msgstr ""
|
| 11731 |
|
| 11732 |
-
#: admin/locale.php:
|
| 11733 |
msgid "Display Method"
|
| 11734 |
msgstr ""
|
| 11735 |
|
| 11736 |
-
#: admin/locale.php:
|
| 11737 |
msgid ""
|
| 11738 |
"Choose whether to display the correct answer as the user answers each "
|
| 11739 |
"question or after the quiz is submitted."
|
| 11740 |
msgstr ""
|
| 11741 |
|
| 11742 |
-
#: admin/locale.php:
|
| 11743 |
msgid "Real Time"
|
| 11744 |
msgstr ""
|
| 11745 |
|
| 11746 |
-
#: admin/locale.php:
|
| 11747 |
msgid "On Submission"
|
| 11748 |
msgstr ""
|
| 11749 |
|
| 11750 |
-
#: admin/locale.php:
|
| 11751 |
msgid "Note: Participants can only choose one answer with \"Real Time\" method."
|
| 11752 |
msgstr ""
|
| 11753 |
|
| 11754 |
-
#: admin/locale.php:
|
| 11755 |
msgid "Evaluation Loader"
|
| 11756 |
msgstr ""
|
| 11757 |
|
| 11758 |
-
#: admin/locale.php:
|
| 11759 |
msgid ""
|
| 11760 |
"Choose whether you want to show a loader while evaluating the selected "
|
| 11761 |
"answer in real-time. We recommend using this on long quizzes since "
|
| 11762 |
"evaluating an answer might take a bit longer."
|
| 11763 |
msgstr ""
|
| 11764 |
|
| 11765 |
-
#: admin/locale.php:
|
| 11766 |
msgid "Note: You can change the color of the loader in the Appearance tab."
|
| 11767 |
msgstr ""
|
| 11768 |
|
| 11769 |
-
#: admin/locale.php:
|
| 11770 |
msgid "Social Sharing"
|
| 11771 |
msgstr ""
|
| 11772 |
|
| 11773 |
-
#: admin/locale.php:
|
| 11774 |
msgid ""
|
| 11775 |
"Choose whether you want to allow the quiz participants to share their "
|
| 11776 |
"results on social media."
|
| 11777 |
msgstr ""
|
| 11778 |
|
| 11779 |
-
#: admin/locale.php:
|
| 11780 |
msgid "Social Sharing Platforms"
|
| 11781 |
msgstr ""
|
| 11782 |
|
| 11783 |
-
#: admin/locale.php:
|
| 11784 |
msgid "Social Share Message"
|
| 11785 |
msgstr ""
|
| 11786 |
|
| 11787 |
-
#: admin/locale.php:
|
| 11788 |
msgid "Page/Post Title"
|
| 11789 |
msgstr ""
|
| 11790 |
|
| 11791 |
-
#: admin/locale.php:
|
| 11792 |
msgid "Page/Post URL"
|
| 11793 |
msgstr ""
|
| 11794 |
|
| 11795 |
-
#: admin/locale.php:
|
| 11796 |
msgid "Site URL"
|
| 11797 |
msgstr ""
|
| 11798 |
|
| 11799 |
-
#: admin/locale.php:
|
| 11800 |
msgid ""
|
| 11801 |
"Want to enhance how the result will look when shared on Social Media? "
|
| 11802 |
"{{link}}SmartCrawl{{/link}} OpenGraph and Twitter Card support lets you "
|
| 11803 |
"choose how your content looks when it's shared on social media."
|
| 11804 |
msgstr ""
|
| 11805 |
|
| 11806 |
-
#: admin/locale.php:
|
| 11807 |
msgid "Correct Answer"
|
| 11808 |
msgstr ""
|
| 11809 |
|
| 11810 |
-
#: admin/locale.php:
|
| 11811 |
msgid "Select Personality"
|
| 11812 |
msgstr ""
|
| 11813 |
|
| 11814 |
-
#: admin/locale.php:
|
| 11815 |
msgid ""
|
| 11816 |
"A quiz without questions is not going to be very useful… Add your questions "
|
| 11817 |
"above!"
|
| 11818 |
msgstr ""
|
| 11819 |
|
| 11820 |
-
#: admin/locale.php:
|
| 11821 |
#: library/modules/quizzes/admin/admin-page-new-knowledge.php:22
|
| 11822 |
#: library/modules/quizzes/admin/admin-page-new-nowrong.php:21
|
| 11823 |
msgid "Edit Quiz"
|
| 11824 |
msgstr ""
|
| 11825 |
|
| 11826 |
-
#: admin/locale.php:
|
| 11827 |
msgid "Give your quiz a name"
|
| 11828 |
msgstr ""
|
| 11829 |
|
| 11830 |
-
#: admin/locale.php:
|
| 11831 |
msgid "You need to save this quiz before using integrations."
|
| 11832 |
msgstr ""
|
| 11833 |
|
| 11834 |
-
#: admin/locale.php:
|
| 11835 |
msgid "TRY AGAIN"
|
| 11836 |
msgstr ""
|
| 11837 |
|
| 11838 |
-
#: admin/locale.php:
|
| 11839 |
msgid "Intro"
|
| 11840 |
msgstr ""
|
| 11841 |
|
| 11842 |
-
#: admin/locale.php:
|
| 11843 |
msgid ""
|
| 11844 |
"Start by adding a title for your quiz to let your visitors know what this "
|
| 11845 |
"quiz is all about."
|
| 11846 |
msgstr ""
|
| 11847 |
|
| 11848 |
-
#: admin/locale.php:
|
| 11849 |
msgid "Which superhero are you?"
|
| 11850 |
msgstr ""
|
| 11851 |
|
| 11852 |
-
#: admin/locale.php:
|
| 11853 |
msgid "Choose a title to grab the attention of your visitors."
|
| 11854 |
msgstr ""
|
| 11855 |
|
| 11856 |
-
#: admin/locale.php:
|
| 11857 |
msgid "Feature Image"
|
| 11858 |
msgstr ""
|
| 11859 |
|
| 11860 |
-
#: admin/locale.php:
|
| 11861 |
msgid "Upload a nice feature image for your quiz."
|
| 11862 |
msgstr ""
|
| 11863 |
|
| 11864 |
-
#: admin/locale.php:
|
| 11865 |
msgid "Upload Feature Image"
|
| 11866 |
msgstr ""
|
| 11867 |
|
| 11868 |
-
#: admin/locale.php:
|
| 11869 |
msgid "Provide your visitors with more information about your quiz."
|
| 11870 |
msgstr ""
|
| 11871 |
|
| 11872 |
-
#: admin/locale.php:
|
| 11873 |
msgid "Personalities"
|
| 11874 |
msgstr ""
|
| 11875 |
|
| 11876 |
-
#: admin/locale.php:
|
| 11877 |
msgid "Leads"
|
| 11878 |
msgstr ""
|
| 11879 |
|
| 11880 |
-
#: admin/locale.php:
|
| 11881 |
msgid "Capture Leads"
|
| 11882 |
msgstr ""
|
| 11883 |
|
| 11884 |
-
#: admin/locale.php:
|
| 11885 |
msgid ""
|
| 11886 |
"Collect participants' details (e.g. name, email, etc.) by integrating a "
|
| 11887 |
"lead generation form in your quiz."
|
| 11888 |
msgstr ""
|
| 11889 |
|
| 11890 |
-
#: admin/locale.php:
|
| 11891 |
msgid "Lead generation form"
|
| 11892 |
msgstr ""
|
| 11893 |
|
| 11894 |
-
#: admin/locale.php:
|
| 11895 |
msgid ""
|
| 11896 |
"Customize the default lead generation form using the edit button below. "
|
| 11897 |
"Note that this lead generation form has limited settings only, and the rest "
|
|
@@ -11900,364 +11923,364 @@ msgid ""
|
|
| 11900 |
"Notifications, Integrations, etc.)."
|
| 11901 |
msgstr ""
|
| 11902 |
|
| 11903 |
-
#: admin/locale.php:
|
| 11904 |
msgid "%s - Leads form"
|
| 11905 |
msgstr ""
|
| 11906 |
|
| 11907 |
-
#: admin/locale.php:
|
| 11908 |
msgid "Form Placement"
|
| 11909 |
msgstr ""
|
| 11910 |
|
| 11911 |
-
#: admin/locale.php:
|
| 11912 |
msgid "Where do you want to embed the lead generation form in your quiz?"
|
| 11913 |
msgstr ""
|
| 11914 |
|
| 11915 |
-
#: admin/locale.php:
|
| 11916 |
msgid "Beginning of quiz"
|
| 11917 |
msgstr ""
|
| 11918 |
|
| 11919 |
-
#: admin/locale.php:
|
| 11920 |
msgid "Before showing results"
|
| 11921 |
msgstr ""
|
| 11922 |
|
| 11923 |
-
#: admin/locale.php:
|
| 11924 |
msgid "Skip Form"
|
| 11925 |
msgstr ""
|
| 11926 |
|
| 11927 |
-
#: admin/locale.php:
|
| 11928 |
msgid "Enable this option if you want to allow your participants to skip the form."
|
| 11929 |
msgstr ""
|
| 11930 |
|
| 11931 |
-
#: admin/locale.php:
|
| 11932 |
msgid "Link text"
|
| 11933 |
msgstr ""
|
| 11934 |
|
| 11935 |
-
#: admin/locale.php:
|
| 11936 |
#: library/modules/custom-forms/front/front-render.php:3047
|
| 11937 |
msgid "Skip and continue"
|
| 11938 |
msgstr ""
|
| 11939 |
|
| 11940 |
-
#: admin/locale.php:
|
| 11941 |
msgid "Delete personality %s"
|
| 11942 |
msgstr ""
|
| 11943 |
|
| 11944 |
-
#: admin/locale.php:
|
| 11945 |
msgid "Are you sure you wish to delete this personality?"
|
| 11946 |
msgstr ""
|
| 11947 |
|
| 11948 |
-
#: admin/locale.php:
|
| 11949 |
msgid "Edit Question"
|
| 11950 |
msgstr ""
|
| 11951 |
|
| 11952 |
-
#: admin/locale.php:
|
| 11953 |
msgid "%s can't be deleted"
|
| 11954 |
msgstr ""
|
| 11955 |
|
| 11956 |
-
#: admin/locale.php:
|
| 11957 |
msgid ""
|
| 11958 |
"Please remove the reference of this Personality from the questions in your "
|
| 11959 |
"quiz and then delete this."
|
| 11960 |
msgstr ""
|
| 11961 |
|
| 11962 |
-
#: admin/locale.php:
|
| 11963 |
msgid "Delete Question"
|
| 11964 |
msgstr ""
|
| 11965 |
|
| 11966 |
-
#: admin/locale.php:
|
| 11967 |
msgid ""
|
| 11968 |
"Deleting this question will remove its value from the existing submissions "
|
| 11969 |
"as well."
|
| 11970 |
msgstr ""
|
| 11971 |
|
| 11972 |
-
#: admin/locale.php:
|
| 11973 |
msgid "Quiz data"
|
| 11974 |
msgstr ""
|
| 11975 |
|
| 11976 |
-
#: admin/locale.php:
|
| 11977 |
msgid "Lead data"
|
| 11978 |
msgstr ""
|
| 11979 |
|
| 11980 |
-
#: admin/locale.php:
|
| 11981 |
msgid "Misc data"
|
| 11982 |
msgstr ""
|
| 11983 |
|
| 11984 |
-
#: admin/locale.php:
|
| 11985 |
msgid "Quiz Data"
|
| 11986 |
msgstr ""
|
| 11987 |
|
| 11988 |
-
#: admin/locale.php:
|
| 11989 |
msgid "Add Personality"
|
| 11990 |
msgstr ""
|
| 11991 |
|
| 11992 |
-
#: admin/locale.php:
|
| 11993 |
msgid "Edit Personality"
|
| 11994 |
msgstr ""
|
| 11995 |
|
| 11996 |
-
#: admin/locale.php:
|
| 11997 |
msgid "E.g. Iron Man"
|
| 11998 |
msgstr ""
|
| 11999 |
|
| 12000 |
-
#: admin/locale.php:
|
| 12001 |
msgid "Please validate your fields!"
|
| 12002 |
msgstr ""
|
| 12003 |
|
| 12004 |
-
#: admin/locale.php:
|
| 12005 |
msgid "Publishing quiz…"
|
| 12006 |
msgstr ""
|
| 12007 |
|
| 12008 |
-
#: admin/locale.php:
|
| 12009 |
msgid ""
|
| 12010 |
"Great work! Please hold tight a few moments while we publish your quiz to "
|
| 12011 |
"the world."
|
| 12012 |
msgstr ""
|
| 12013 |
|
| 12014 |
-
#: admin/locale.php:
|
| 12015 |
msgid ""
|
| 12016 |
"Options cannot be empty. You either need to enter answer text or upload an "
|
| 12017 |
"image for the empty options."
|
| 12018 |
msgstr ""
|
| 12019 |
|
| 12020 |
-
#: admin/locale.php:
|
| 12021 |
msgid ""
|
| 12022 |
"You need to select at least one correct answer before you can add this "
|
| 12023 |
"question."
|
| 12024 |
msgstr ""
|
| 12025 |
|
| 12026 |
-
#: admin/locale.php:
|
| 12027 |
msgid "You need to select an associated personality for every option."
|
| 12028 |
msgstr ""
|
| 12029 |
|
| 12030 |
-
#: admin/locale.php:
|
| 12031 |
msgid "Description (Optional)"
|
| 12032 |
msgstr ""
|
| 12033 |
|
| 12034 |
-
#: admin/locale.php:
|
| 12035 |
msgid ""
|
| 12036 |
"Users can select one answer with the {{b}}Real Time{{/b}} display method. "
|
| 12037 |
"To allow multiple answers, you can switch to the {{b}}On Submission{{/b}} "
|
| 12038 |
"display method in {{a}}Behaviour → Display Method{{/a}}."
|
| 12039 |
msgstr ""
|
| 12040 |
|
| 12041 |
-
#: admin/locale.php:
|
| 12042 |
msgid ""
|
| 12043 |
"Note that user's selection will be considered as correct when any of the "
|
| 12044 |
"correct answers is selected."
|
| 12045 |
msgstr ""
|
| 12046 |
|
| 12047 |
-
#: admin/locale.php:
|
| 12048 |
msgid ""
|
| 12049 |
"Note: For questions with multiple correct answers, user's selection will be "
|
| 12050 |
"considered as correct only when all correct answers are selected."
|
| 12051 |
msgstr ""
|
| 12052 |
|
| 12053 |
-
#: admin/locale.php:
|
| 12054 |
msgid ""
|
| 12055 |
"Add answers to your question and choose an associated personality. Multiple "
|
| 12056 |
"answers can be associated with a single personality as well."
|
| 12057 |
msgstr ""
|
| 12058 |
|
| 12059 |
-
#: admin/locale.php:
|
| 12060 |
msgid "Please, validate your fields!"
|
| 12061 |
msgstr ""
|
| 12062 |
|
| 12063 |
-
#: admin/locale.php:
|
| 12064 |
msgid ""
|
| 12065 |
"Your quiz is now ready to be embedded into a page or template of your "
|
| 12066 |
"choice. Simply copy and paste the shortcode below to display it!"
|
| 12067 |
msgstr ""
|
| 12068 |
|
| 12069 |
-
#: admin/locale.php:
|
| 12070 |
msgid "close this dialog window"
|
| 12071 |
msgstr ""
|
| 12072 |
|
| 12073 |
-
#: admin/locale.php:
|
| 12074 |
msgid "Button Processing Text"
|
| 12075 |
msgstr ""
|
| 12076 |
|
| 12077 |
-
#: admin/locale.php:
|
| 12078 |
msgid "Sending…"
|
| 12079 |
msgstr ""
|
| 12080 |
|
| 12081 |
-
#: admin/locale.php:
|
| 12082 |
msgid "This text will appear as button text while the quiz is being submitted."
|
| 12083 |
msgstr ""
|
| 12084 |
|
| 12085 |
-
#: admin/locale.php:
|
| 12086 |
msgid "Custom CSS Classes"
|
| 12087 |
msgstr ""
|
| 12088 |
|
| 12089 |
-
#: admin/locale.php:
|
| 12090 |
msgid "E.g. form-submit-btn"
|
| 12091 |
msgstr ""
|
| 12092 |
|
| 12093 |
-
#: admin/locale.php:
|
| 12094 |
msgid ""
|
| 12095 |
"These will be output as you see them here. To add multiple classes, "
|
| 12096 |
"separate them with a space. For example, \"form-submit-btn button\" will "
|
| 12097 |
"add two classes \"form-submit-btn\" and \"button\"."
|
| 12098 |
msgstr ""
|
| 12099 |
|
| 12100 |
-
#: admin/locale.php:
|
| 12101 |
msgid ""
|
| 12102 |
"You can send customized email notifications to your site admins and "
|
| 12103 |
"participant on successful quiz submission. Use advanced features such as "
|
| 12104 |
"email routing, and conditions to have granular control over them."
|
| 12105 |
msgstr ""
|
| 12106 |
|
| 12107 |
-
#: admin/locale.php:
|
| 12108 |
msgid ""
|
| 12109 |
"Optionally, you can send a notification email to nominated email accounts "
|
| 12110 |
"when quiz submissions come in."
|
| 12111 |
msgstr ""
|
| 12112 |
|
| 12113 |
-
#: admin/locale.php:
|
| 12114 |
msgid "Add as many emails as you like"
|
| 12115 |
msgstr ""
|
| 12116 |
|
| 12117 |
-
#: admin/locale.php:
|
| 12118 |
msgid "Final Score"
|
| 12119 |
msgstr ""
|
| 12120 |
|
| 12121 |
-
#: admin/locale.php:
|
| 12122 |
msgid "Personality Result"
|
| 12123 |
msgstr ""
|
| 12124 |
|
| 12125 |
-
#: admin/locale.php:
|
| 12126 |
msgid "Is correct"
|
| 12127 |
msgstr ""
|
| 12128 |
|
| 12129 |
-
#: admin/locale.php:
|
| 12130 |
msgid "Is incorrect"
|
| 12131 |
msgstr ""
|
| 12132 |
|
| 12133 |
-
#: admin/locale.php:
|
| 12134 |
msgid "Is final result"
|
| 12135 |
msgstr ""
|
| 12136 |
|
| 12137 |
-
#: admin/locale.php:
|
| 12138 |
msgid "Is not final result"
|
| 12139 |
msgstr ""
|
| 12140 |
|
| 12141 |
-
#: admin/locale.php:
|
| 12142 |
msgid "greater than"
|
| 12143 |
msgstr ""
|
| 12144 |
|
| 12145 |
-
#: admin/locale.php:
|
| 12146 |
msgid "less than"
|
| 12147 |
msgstr ""
|
| 12148 |
|
| 12149 |
-
#: admin/locale.php:
|
| 12150 |
msgid "e.g., 0.75em"
|
| 12151 |
msgstr ""
|
| 12152 |
|
| 12153 |
-
#: admin/locale.php:
|
| 12154 |
msgid ""
|
| 12155 |
"Choose how you want to handle this quiz's data storage. By default we'll "
|
| 12156 |
"use the configuration you've set in your {{link}}global privacy "
|
| 12157 |
"settings{{/link}}."
|
| 12158 |
msgstr ""
|
| 12159 |
|
| 12160 |
-
#: admin/locale.php:
|
| 12161 |
msgid "How long do you want to retain this quiz's submissions for?"
|
| 12162 |
msgstr ""
|
| 12163 |
|
| 12164 |
-
#: admin/locale.php:
|
| 12165 |
msgid "Evaluation loader icon"
|
| 12166 |
msgstr ""
|
| 12167 |
|
| 12168 |
-
#: admin/locale.php:
|
| 12169 |
msgid "This picker works only when \"Evaluation Loader\" is set to \"Show Loader\"."
|
| 12170 |
msgstr ""
|
| 12171 |
|
| 12172 |
-
#: admin/locale.php:
|
| 12173 |
msgid "Wrong"
|
| 12174 |
msgstr ""
|
| 12175 |
|
| 12176 |
-
#: admin/locale.php:
|
| 12177 |
msgid "Answer text color"
|
| 12178 |
msgstr ""
|
| 12179 |
|
| 12180 |
-
#: admin/locale.php:
|
| 12181 |
msgid "Answer result message"
|
| 12182 |
msgstr ""
|
| 12183 |
|
| 12184 |
-
#: admin/locale.php:
|
| 12185 |
msgid "Main Container"
|
| 12186 |
msgstr ""
|
| 12187 |
|
| 12188 |
-
#: admin/locale.php:
|
| 12189 |
msgid "Page Indicator color"
|
| 12190 |
msgstr ""
|
| 12191 |
|
| 12192 |
-
#: admin/locale.php:
|
| 12193 |
msgid "Quiz result color"
|
| 12194 |
msgstr ""
|
| 12195 |
|
| 12196 |
-
#: admin/locale.php:
|
| 12197 |
msgid "Skip form button"
|
| 12198 |
msgstr ""
|
| 12199 |
|
| 12200 |
-
#: admin/locale.php:
|
| 12201 |
msgid "Basic"
|
| 12202 |
msgstr ""
|
| 12203 |
|
| 12204 |
-
#: admin/locale.php:
|
| 12205 |
msgid "Answer - Container"
|
| 12206 |
msgstr ""
|
| 12207 |
|
| 12208 |
-
#: admin/locale.php:
|
| 12209 |
msgid "Answer - Checkbox"
|
| 12210 |
msgstr ""
|
| 12211 |
|
| 12212 |
-
#: admin/locale.php:
|
| 12213 |
msgid "Answer - Text"
|
| 12214 |
msgstr ""
|
| 12215 |
|
| 12216 |
-
#: admin/locale.php:
|
| 12217 |
msgid "Start Quiz Button"
|
| 12218 |
msgstr ""
|
| 12219 |
|
| 12220 |
-
#: admin/locale.php:
|
| 12221 |
msgid "Quiz Navigation Button"
|
| 12222 |
msgstr ""
|
| 12223 |
|
| 12224 |
-
#: admin/locale.php:
|
| 12225 |
msgid "Back to Answers Button"
|
| 12226 |
msgstr ""
|
| 12227 |
|
| 12228 |
-
#: admin/locale.php:
|
| 12229 |
msgid "Retake Button"
|
| 12230 |
msgstr ""
|
| 12231 |
|
| 12232 |
-
#: admin/locale.php:
|
| 12233 |
msgid "Social Share"
|
| 12234 |
msgstr ""
|
| 12235 |
|
| 12236 |
-
#: admin/locale.php:
|
| 12237 |
msgid ""
|
| 12238 |
"By default this quiz will inherit the fonts your theme uses. You can "
|
| 12239 |
"override these fonts with custom ones from Google Fonts."
|
| 12240 |
msgstr ""
|
| 12241 |
|
| 12242 |
-
#: admin/locale.php:
|
| 12243 |
#: library/modules/quizzes/admin/admin-loader.php:645
|
| 12244 |
#: library/modules/quizzes/admin/admin-loader.php:668
|
| 12245 |
msgid "Quiz Title"
|
| 12246 |
msgstr ""
|
| 12247 |
|
| 12248 |
-
#: admin/locale.php:
|
| 12249 |
msgid "Quiz Description"
|
| 12250 |
msgstr ""
|
| 12251 |
|
| 12252 |
-
#: admin/locale.php:
|
| 12253 |
msgid "Page Indicator"
|
| 12254 |
msgstr ""
|
| 12255 |
|
| 12256 |
-
#: admin/locale.php:
|
| 12257 |
msgid "Question Description"
|
| 12258 |
msgstr ""
|
| 12259 |
|
| 12260 |
-
#: admin/locale.php:
|
| 12261 |
#: admin/views/quiz/entries/content-leads.php:302
|
| 12262 |
#: admin/views/quiz/entries/content-leads.php:364 library/class-export.php:447
|
| 12263 |
#: library/class-export.php:592
|
|
@@ -12265,241 +12288,241 @@ msgstr ""
|
|
| 12265 |
msgid "Answer"
|
| 12266 |
msgstr ""
|
| 12267 |
|
| 12268 |
-
#: admin/locale.php:
|
| 12269 |
msgid "Quiz Navigation Buttons"
|
| 12270 |
msgstr ""
|
| 12271 |
|
| 12272 |
-
#: admin/locale.php:
|
| 12273 |
msgid "Answer Result Message"
|
| 12274 |
msgstr ""
|
| 12275 |
|
| 12276 |
-
#: admin/locale.php:
|
| 12277 |
msgid "Social Share Title"
|
| 12278 |
msgstr ""
|
| 12279 |
|
| 12280 |
-
#: admin/locale.php:
|
| 12281 |
msgid "Social Share Icons"
|
| 12282 |
msgstr ""
|
| 12283 |
|
| 12284 |
-
#: admin/locale.php:
|
| 12285 |
msgid "Skip Form Button"
|
| 12286 |
msgstr ""
|
| 12287 |
|
| 12288 |
-
#: admin/locale.php:
|
| 12289 |
msgid "Choose one of the pre-defined sizes we have for social share icons."
|
| 12290 |
msgstr ""
|
| 12291 |
|
| 12292 |
-
#: admin/locale.php:
|
| 12293 |
msgid "Question description color"
|
| 12294 |
msgstr ""
|
| 12295 |
|
| 12296 |
-
#: admin/locale.php:
|
| 12297 |
msgid "Main"
|
| 12298 |
msgstr ""
|
| 12299 |
|
| 12300 |
-
#: admin/locale.php:
|
| 12301 |
msgid "Container background"
|
| 12302 |
msgstr ""
|
| 12303 |
|
| 12304 |
-
#: admin/locale.php:
|
| 12305 |
msgid "Header"
|
| 12306 |
msgstr ""
|
| 12307 |
|
| 12308 |
-
#: admin/locale.php:
|
| 12309 |
msgid "Content background"
|
| 12310 |
msgstr ""
|
| 12311 |
|
| 12312 |
-
#: admin/locale.php:
|
| 12313 |
msgid "Retake"
|
| 12314 |
msgstr ""
|
| 12315 |
|
| 12316 |
-
#: admin/locale.php:
|
| 12317 |
msgid ""
|
| 12318 |
"Let's add the different personalities. Each of the following personality is "
|
| 12319 |
"a possible outcome of your quiz. In case of a tie, the personality is "
|
| 12320 |
"chosen as per their order below."
|
| 12321 |
msgstr ""
|
| 12322 |
|
| 12323 |
-
#: admin/locale.php:
|
| 12324 |
msgid "Reorder the personalities to set the priority order."
|
| 12325 |
msgstr ""
|
| 12326 |
|
| 12327 |
-
#: admin/locale.php:
|
| 12328 |
msgid ""
|
| 12329 |
"Define the different personalities possible as the outcome of your quiz "
|
| 12330 |
"here."
|
| 12331 |
msgstr ""
|
| 12332 |
|
| 12333 |
-
#: admin/locale.php:
|
| 12334 |
msgid "Loading Preset data..."
|
| 12335 |
msgstr ""
|
| 12336 |
|
| 12337 |
-
#: admin/locale.php:
|
| 12338 |
msgid "Unsaved Changes"
|
| 12339 |
msgstr ""
|
| 12340 |
|
| 12341 |
-
#: admin/locale.php:
|
| 12342 |
msgid "Open form options"
|
| 12343 |
msgstr ""
|
| 12344 |
|
| 12345 |
-
#: admin/locale.php:
|
| 12346 |
msgid "Open poll options"
|
| 12347 |
msgstr ""
|
| 12348 |
|
| 12349 |
-
#: admin/locale.php:
|
| 12350 |
msgid "Open quiz options"
|
| 12351 |
msgstr ""
|
| 12352 |
|
| 12353 |
-
#: admin/locale.php:
|
| 12354 |
msgid "Create New Form"
|
| 12355 |
msgstr ""
|
| 12356 |
|
| 12357 |
-
#: admin/locale.php:
|
| 12358 |
msgid "Create New Poll"
|
| 12359 |
msgstr ""
|
| 12360 |
|
| 12361 |
-
#: admin/locale.php:
|
| 12362 |
msgid "Create New Quiz"
|
| 12363 |
msgstr ""
|
| 12364 |
|
| 12365 |
-
#: admin/locale.php:
|
| 12366 |
#: library/modules/custom-forms/admin/admin-loader.php:170
|
| 12367 |
msgid "Basic selectors"
|
| 12368 |
msgstr ""
|
| 12369 |
|
| 12370 |
-
#: admin/locale.php:
|
| 12371 |
msgid "Field Description"
|
| 12372 |
msgstr ""
|
| 12373 |
|
| 12374 |
-
#: admin/locale.php:
|
| 12375 |
msgid "Input"
|
| 12376 |
msgstr ""
|
| 12377 |
|
| 12378 |
-
#: admin/locale.php:
|
| 12379 |
msgid "Textarea"
|
| 12380 |
msgstr ""
|
| 12381 |
|
| 12382 |
-
#: admin/locale.php:
|
| 12383 |
msgid "Answer Input"
|
| 12384 |
msgstr ""
|
| 12385 |
|
| 12386 |
-
#: admin/locale.php:
|
| 12387 |
msgid "Answer Label"
|
| 12388 |
msgstr ""
|
| 12389 |
|
| 12390 |
-
#: admin/locale.php:
|
| 12391 |
msgid "Answer Container"
|
| 12392 |
msgstr ""
|
| 12393 |
|
| 12394 |
-
#: admin/locale.php:
|
| 12395 |
msgid "Answer Text"
|
| 12396 |
msgstr ""
|
| 12397 |
|
| 12398 |
-
#: admin/locale.php:
|
| 12399 |
msgid ""
|
| 12400 |
"%s does not exist in your form. Please insert a valid field from the merged "
|
| 12401 |
"tags option."
|
| 12402 |
msgstr ""
|
| 12403 |
|
| 12404 |
-
#: admin/locale.php:
|
| 12405 |
msgid "Infinity calculation result."
|
| 12406 |
msgstr ""
|
| 12407 |
|
| 12408 |
-
#: admin/locale.php:
|
| 12409 |
msgid "Calculation Formula"
|
| 12410 |
msgstr ""
|
| 12411 |
|
| 12412 |
-
#: admin/locale.php:
|
| 12413 |
msgid "Add Form Fields"
|
| 12414 |
msgstr ""
|
| 12415 |
|
| 12416 |
-
#: admin/locale.php:
|
| 12417 |
msgid "Open list of fields"
|
| 12418 |
msgstr ""
|
| 12419 |
|
| 12420 |
-
#: admin/locale.php:
|
| 12421 |
msgid "Sum"
|
| 12422 |
msgstr ""
|
| 12423 |
|
| 12424 |
-
#: admin/locale.php:
|
| 12425 |
msgid "Minus"
|
| 12426 |
msgstr ""
|
| 12427 |
|
| 12428 |
-
#: admin/locale.php:
|
| 12429 |
msgid "Multiply"
|
| 12430 |
msgstr ""
|
| 12431 |
|
| 12432 |
-
#: admin/locale.php:
|
| 12433 |
msgid "Divide"
|
| 12434 |
msgstr ""
|
| 12435 |
|
| 12436 |
-
#: admin/locale.php:
|
| 12437 |
msgid "Open parenthesis"
|
| 12438 |
msgstr ""
|
| 12439 |
|
| 12440 |
-
#: admin/locale.php:
|
| 12441 |
msgid "Close parenthesis"
|
| 12442 |
msgstr ""
|
| 12443 |
|
| 12444 |
-
#: admin/locale.php:
|
| 12445 |
msgid ""
|
| 12446 |
"You can preview your form and check if the formula is generating expected "
|
| 12447 |
"results."
|
| 12448 |
msgstr ""
|
| 12449 |
|
| 12450 |
-
#: admin/locale.php:
|
| 12451 |
msgid "Formula Preview"
|
| 12452 |
msgstr ""
|
| 12453 |
|
| 12454 |
-
#: admin/locale.php:
|
| 12455 |
msgid "Remove this date range"
|
| 12456 |
msgstr ""
|
| 12457 |
|
| 12458 |
-
#: admin/locale.php:
|
| 12459 |
msgid "10 January 2020"
|
| 12460 |
msgstr ""
|
| 12461 |
|
| 12462 |
-
#: admin/locale.php:
|
| 12463 |
msgid "AM/PM"
|
| 12464 |
msgstr ""
|
| 12465 |
|
| 12466 |
-
#: admin/locale.php:
|
| 12467 |
msgid "This field is required!"
|
| 12468 |
msgstr ""
|
| 12469 |
|
| 12470 |
-
#: admin/locale.php:
|
| 12471 |
msgid "Please enter valid number."
|
| 12472 |
msgstr ""
|
| 12473 |
|
| 12474 |
-
#: admin/locale.php:
|
| 12475 |
msgid "Click here to add a date range..."
|
| 12476 |
msgstr ""
|
| 12477 |
|
| 12478 |
-
#: admin/locale.php:
|
| 12479 |
msgid "Click here to add a date…"
|
| 12480 |
msgstr ""
|
| 12481 |
|
| 12482 |
-
#: admin/locale.php:
|
| 12483 |
msgid "+ Predefined options"
|
| 12484 |
msgstr ""
|
| 12485 |
|
| 12486 |
-
#: admin/locale.php:
|
| 12487 |
msgid "My Label; my-value; 0; https://mysite.com/my-image-url.jpg"
|
| 12488 |
msgstr ""
|
| 12489 |
|
| 12490 |
-
#: admin/locale.php:
|
| 12491 |
msgid "My Label; my-value; 0"
|
| 12492 |
msgstr ""
|
| 12493 |
|
| 12494 |
-
#: admin/locale.php:
|
| 12495 |
msgid "New option"
|
| 12496 |
msgstr ""
|
| 12497 |
|
| 12498 |
-
#: admin/locale.php:
|
| 12499 |
msgid "New option with image"
|
| 12500 |
msgstr ""
|
| 12501 |
|
| 12502 |
-
#: admin/locale.php:
|
| 12503 |
msgid ""
|
| 12504 |
"Under 1 year\n"
|
| 12505 |
"1-17\n"
|
|
@@ -12511,11 +12534,11 @@ msgid ""
|
|
| 12511 |
"65 and Above"
|
| 12512 |
msgstr ""
|
| 12513 |
|
| 12514 |
-
#: admin/locale.php:
|
| 12515 |
msgid "Age"
|
| 12516 |
msgstr ""
|
| 12517 |
|
| 12518 |
-
#: admin/locale.php:
|
| 12519 |
msgid ""
|
| 12520 |
"Male\\n"
|
| 12521 |
"Female\\n"
|
|
@@ -12523,11 +12546,11 @@ msgid ""
|
|
| 12523 |
"Other"
|
| 12524 |
msgstr ""
|
| 12525 |
|
| 12526 |
-
#: admin/locale.php:
|
| 12527 |
msgid "Gender"
|
| 12528 |
msgstr ""
|
| 12529 |
|
| 12530 |
-
#: admin/locale.php:
|
| 12531 |
msgid ""
|
| 12532 |
"Primary School\n"
|
| 12533 |
"High School\n"
|
|
@@ -12540,11 +12563,11 @@ msgid ""
|
|
| 12540 |
"Other"
|
| 12541 |
msgstr ""
|
| 12542 |
|
| 12543 |
-
#: admin/locale.php:
|
| 12544 |
msgid "Educational Attainment"
|
| 12545 |
msgstr ""
|
| 12546 |
|
| 12547 |
-
#: admin/locale.php:
|
| 12548 |
msgid ""
|
| 12549 |
"Full-time employed\n"
|
| 12550 |
"Part-time employed\n"
|
|
@@ -12556,11 +12579,11 @@ msgid ""
|
|
| 12556 |
"Unemployed"
|
| 12557 |
msgstr ""
|
| 12558 |
|
| 12559 |
-
#: admin/locale.php:
|
| 12560 |
msgid "Employment Status"
|
| 12561 |
msgstr ""
|
| 12562 |
|
| 12563 |
-
#: admin/locale.php:
|
| 12564 |
msgid ""
|
| 12565 |
"Architecture and Engineering\n"
|
| 12566 |
"Arts, Design, Entertainment, Sports, and Media\n"
|
|
@@ -12586,11 +12609,11 @@ msgid ""
|
|
| 12586 |
"Transportation and Material Moving"
|
| 12587 |
msgstr ""
|
| 12588 |
|
| 12589 |
-
#: admin/locale.php:
|
| 12590 |
msgid "Occupation"
|
| 12591 |
msgstr ""
|
| 12592 |
|
| 12593 |
-
#: admin/locale.php:
|
| 12594 |
msgid ""
|
| 12595 |
"Single\\n"
|
| 12596 |
"Married\\n"
|
|
@@ -12599,11 +12622,11 @@ msgid ""
|
|
| 12599 |
"Widowed"
|
| 12600 |
msgstr ""
|
| 12601 |
|
| 12602 |
-
#: admin/locale.php:
|
| 12603 |
msgid "Marital Status"
|
| 12604 |
msgstr ""
|
| 12605 |
|
| 12606 |
-
#: admin/locale.php:
|
| 12607 |
msgid ""
|
| 12608 |
"Africa\\n"
|
| 12609 |
"Antarctica\\n"
|
|
@@ -12614,11 +12637,11 @@ msgid ""
|
|
| 12614 |
"South America"
|
| 12615 |
msgstr ""
|
| 12616 |
|
| 12617 |
-
#: admin/locale.php:
|
| 12618 |
msgid "Continents"
|
| 12619 |
msgstr ""
|
| 12620 |
|
| 12621 |
-
#: admin/locale.php:
|
| 12622 |
msgid ""
|
| 12623 |
"Afghanistan\n"
|
| 12624 |
"Åland Islands\n"
|
|
@@ -12871,11 +12894,11 @@ msgid ""
|
|
| 12871 |
"Zimbabwe"
|
| 12872 |
msgstr ""
|
| 12873 |
|
| 12874 |
-
#: admin/locale.php:
|
| 12875 |
msgid "Countries"
|
| 12876 |
msgstr ""
|
| 12877 |
|
| 12878 |
-
#: admin/locale.php:
|
| 12879 |
msgid ""
|
| 12880 |
"Alabama\\n"
|
| 12881 |
"Alaska\\n"
|
|
@@ -12930,11 +12953,11 @@ msgid ""
|
|
| 12930 |
"Wyoming"
|
| 12931 |
msgstr ""
|
| 12932 |
|
| 12933 |
-
#: admin/locale.php:
|
| 12934 |
msgid "American States"
|
| 12935 |
msgstr ""
|
| 12936 |
|
| 12937 |
-
#: admin/locale.php:
|
| 12938 |
msgid ""
|
| 12939 |
"Alberta\\n"
|
| 12940 |
"British Columbia\\n"
|
|
@@ -12951,169 +12974,169 @@ msgid ""
|
|
| 12951 |
"Yukon"
|
| 12952 |
msgstr ""
|
| 12953 |
|
| 12954 |
-
#: admin/locale.php:
|
| 12955 |
msgid "Canadian Provinces"
|
| 12956 |
msgstr ""
|
| 12957 |
|
| 12958 |
-
#: admin/locale.php:
|
| 12959 |
msgid "No available options"
|
| 12960 |
msgstr ""
|
| 12961 |
|
| 12962 |
-
#: admin/locale.php:
|
| 12963 |
msgid "Select image"
|
| 12964 |
msgstr ""
|
| 12965 |
|
| 12966 |
-
#: admin/locale.php:
|
| 12967 |
msgid "Upload image"
|
| 12968 |
msgstr ""
|
| 12969 |
|
| 12970 |
-
#: admin/locale.php:
|
| 12971 |
msgid "Remove uploaded image"
|
| 12972 |
msgstr ""
|
| 12973 |
|
| 12974 |
-
#: admin/locale.php:
|
| 12975 |
msgid "Remove uploaded file"
|
| 12976 |
msgstr ""
|
| 12977 |
|
| 12978 |
-
#: admin/locale.php:
|
| 12979 |
msgid "Payment Data"
|
| 12980 |
msgstr ""
|
| 12981 |
|
| 12982 |
-
#: admin/locale.php:
|
| 12983 |
msgid "All Form Fields"
|
| 12984 |
msgstr ""
|
| 12985 |
|
| 12986 |
-
#: admin/locale.php:
|
| 12987 |
msgid "All Non Empty Fields"
|
| 12988 |
msgstr ""
|
| 12989 |
|
| 12990 |
-
#: admin/locale.php:
|
| 12991 |
msgid "Don't Miss Out On Subscription / Recurring Payment Support"
|
| 12992 |
msgstr ""
|
| 12993 |
|
| 12994 |
-
#: admin/locale.php:
|
| 12995 |
msgid "Don't worry, only admin users can see this message"
|
| 12996 |
msgstr ""
|
| 12997 |
|
| 12998 |
-
#: admin/locale.php:
|
| 12999 |
msgid "Get 35% OFF Forminator Pro"
|
| 13000 |
msgstr ""
|
| 13001 |
|
| 13002 |
-
#: admin/locale.php:
|
| 13003 |
msgid "Pay only"
|
| 13004 |
msgstr ""
|
| 13005 |
|
| 13006 |
-
#: admin/locale.php:
|
| 13007 |
msgid "year"
|
| 13008 |
msgstr ""
|
| 13009 |
|
| 13010 |
-
#: admin/locale.php:
|
| 13011 |
msgid ""
|
| 13012 |
"Start collecting subscription payments in Forminator Pro with the new "
|
| 13013 |
"Stripe Subscription add-on! Upgrade now and get 35% OFF all annual plans."
|
| 13014 |
msgstr ""
|
| 13015 |
|
| 13016 |
-
#: admin/locale.php:
|
| 13017 |
msgid "Inline Message"
|
| 13018 |
msgstr ""
|
| 13019 |
|
| 13020 |
-
#: admin/locale.php:
|
| 13021 |
msgid "Redirect user to a URL"
|
| 13022 |
msgstr ""
|
| 13023 |
|
| 13024 |
-
#: admin/locale.php:
|
| 13025 |
msgid "Hide form"
|
| 13026 |
msgstr ""
|
| 13027 |
|
| 13028 |
-
#: admin/locale.php:
|
| 13029 |
msgid "is"
|
| 13030 |
msgstr ""
|
| 13031 |
|
| 13032 |
-
#: admin/locale.php:
|
| 13033 |
msgid "is not"
|
| 13034 |
msgstr ""
|
| 13035 |
|
| 13036 |
-
#: admin/locale.php:
|
| 13037 |
msgid "day is"
|
| 13038 |
msgstr ""
|
| 13039 |
|
| 13040 |
-
#: admin/locale.php:
|
| 13041 |
msgid "day is not"
|
| 13042 |
msgstr ""
|
| 13043 |
|
| 13044 |
-
#: admin/locale.php:
|
| 13045 |
msgid "month is not"
|
| 13046 |
msgstr ""
|
| 13047 |
|
| 13048 |
-
#: admin/locale.php:
|
| 13049 |
msgid "month is"
|
| 13050 |
msgstr ""
|
| 13051 |
|
| 13052 |
-
#: admin/locale.php:
|
| 13053 |
msgid "is before"
|
| 13054 |
msgstr ""
|
| 13055 |
|
| 13056 |
-
#: admin/locale.php:
|
| 13057 |
msgid "is after"
|
| 13058 |
msgstr ""
|
| 13059 |
|
| 13060 |
-
#: admin/locale.php:
|
| 13061 |
msgid "is before %s or more days from current date"
|
| 13062 |
msgstr ""
|
| 13063 |
|
| 13064 |
-
#: admin/locale.php:
|
| 13065 |
msgid "is before less than %s days from current date"
|
| 13066 |
msgstr ""
|
| 13067 |
|
| 13068 |
-
#: admin/locale.php:
|
| 13069 |
msgid "is after %s or more days from current date"
|
| 13070 |
msgstr ""
|
| 13071 |
|
| 13072 |
-
#: admin/locale.php:
|
| 13073 |
msgid "is after less than %s days from current date"
|
| 13074 |
msgstr ""
|
| 13075 |
|
| 13076 |
-
#: admin/locale.php:
|
| 13077 |
msgid "is greater than"
|
| 13078 |
msgstr ""
|
| 13079 |
|
| 13080 |
-
#: admin/locale.php:
|
| 13081 |
msgid "is less than"
|
| 13082 |
msgstr ""
|
| 13083 |
|
| 13084 |
-
#: admin/locale.php:
|
| 13085 |
msgid "contains"
|
| 13086 |
msgstr ""
|
| 13087 |
|
| 13088 |
-
#: admin/locale.php:
|
| 13089 |
msgid "starts with"
|
| 13090 |
msgstr ""
|
| 13091 |
|
| 13092 |
-
#: admin/locale.php:
|
| 13093 |
msgid "ends with"
|
| 13094 |
msgstr ""
|
| 13095 |
|
| 13096 |
-
#: admin/locale.php:
|
| 13097 |
msgid "is correct"
|
| 13098 |
msgstr ""
|
| 13099 |
|
| 13100 |
-
#: admin/locale.php:
|
| 13101 |
msgid "is incorrect"
|
| 13102 |
msgstr ""
|
| 13103 |
|
| 13104 |
-
#: admin/locale.php:
|
| 13105 |
msgid "is final result"
|
| 13106 |
msgstr ""
|
| 13107 |
|
| 13108 |
-
#: admin/locale.php:
|
| 13109 |
msgid "is not final result"
|
| 13110 |
msgstr ""
|
| 13111 |
|
| 13112 |
-
#: admin/locale.php:
|
| 13113 |
msgid "Please fix the error(s) in the SETTINGS tab."
|
| 13114 |
msgstr ""
|
| 13115 |
|
| 13116 |
-
#: admin/locale.php:
|
| 13117 |
msgid "Billing frequency should be greater than or equal to 1"
|
| 13118 |
msgstr ""
|
| 13119 |
|
| 2 |
# This file is distributed under the same license as the Forminator Pro package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Forminator Pro 1.18.2\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/forminator\n"
|
| 7 |
+
"POT-Creation-Date: 2022-09-28 13:37:58+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 14 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
| 15 |
|
| 16 |
+
#: admin/locale.php:169
|
| 17 |
msgid "0"
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
+
#: admin/locale.php:574 admin/views/settings/tab-pagination.php:22
|
| 21 |
#: admin/views/settings/tab-pagination.php:41
|
| 22 |
msgid "10"
|
| 23 |
msgstr ""
|
| 24 |
|
| 25 |
+
#: admin/locale.php:441
|
| 26 |
msgid "1920"
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
+
#: admin/locale.php:443
|
| 30 |
msgid "2030"
|
| 31 |
msgstr ""
|
| 32 |
|
| 101 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:669
|
| 102 |
#: addons/pro/webhook/class-forminator-addon-webhook-form-hooks.php:366
|
| 103 |
#: addons/pro/webhook/class-forminator-addon-webhook-quiz-hooks.php:576
|
| 104 |
+
#: admin/locale.php:191
|
| 105 |
msgid "Yes"
|
| 106 |
msgstr ""
|
| 107 |
|
| 124 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:669
|
| 125 |
#: addons/pro/webhook/class-forminator-addon-webhook-form-hooks.php:366
|
| 126 |
#: addons/pro/webhook/class-forminator-addon-webhook-quiz-hooks.php:576
|
| 127 |
+
#: admin/locale.php:190
|
| 128 |
msgid "No"
|
| 129 |
msgstr ""
|
| 130 |
|
| 343 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:260
|
| 344 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:400
|
| 345 |
#: addons/pro/trello/class-forminator-addon-trello.php:370
|
| 346 |
+
#: admin/locale.php:1139 library/helpers/helper-core.php:422
|
| 347 |
msgid "Next"
|
| 348 |
msgstr ""
|
| 349 |
|
| 436 |
#: addons/pro/activecampaign/class-forminator-addon-activecampaign-quiz-settings.php:380
|
| 437 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-form-settings.php:107
|
| 438 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-quiz-settings.php:129
|
| 439 |
+
#: admin/locale.php:458 library/field-autofill-providers/class-wp-user.php:39
|
| 440 |
#: library/fields/name.php:69 library/model/class-form-entry-model.php:447
|
| 441 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:45
|
| 442 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:48
|
| 453 |
#: addons/pro/activecampaign/class-forminator-addon-activecampaign-quiz-settings.php:381
|
| 454 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-form-settings.php:108
|
| 455 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-quiz-settings.php:130
|
| 456 |
+
#: admin/locale.php:460 library/field-autofill-providers/class-wp-user.php:43
|
| 457 |
#: library/fields/name.php:73 library/model/class-form-entry-model.php:449
|
| 458 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:52
|
| 459 |
#: library/modules/custom-forms/form-templates/template-leads.php:81
|
| 563 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-quiz-settings.php:425
|
| 564 |
#: addons/pro/slack/class-forminator-addon-slack-quiz-settings.php:467
|
| 565 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:489
|
| 566 |
+
#: admin/classes/class-admin-l10n.php:150 admin/locale.php:1358
|
| 567 |
#: library/helpers/helper-fields.php:2033
|
| 568 |
#: library/modules/quizzes/admin/admin-loader.php:642
|
| 569 |
msgid "Quiz Name"
|
| 669 |
#: addons/pro/slack/class-forminator-addon-slack.php:445
|
| 670 |
#: addons/pro/trello/views/settings/success-authorize.php:15
|
| 671 |
#: addons/pro/webhook/class-forminator-addon-webhook.php:175
|
| 672 |
+
#: admin/classes/class-admin-l10n.php:82 admin/locale.php:1253
|
| 673 |
#: admin/views/addons/addon-details.php:282
|
| 674 |
#: admin/views/addons/addons-activate-popup.php:37
|
| 675 |
#: admin/views/common/popup/export.php:60
|
| 916 |
#: addons/pro/trello/views/form-settings/setup-list.php:60
|
| 917 |
#: addons/pro/trello/views/poll-settings/setup-list.php:58
|
| 918 |
#: addons/pro/trello/views/quiz-settings/setup-list.php:58
|
| 919 |
+
#: admin/locale.php:1229 library/modules/quizzes/admin/admin-loader.php:531
|
| 920 |
msgid "List"
|
| 921 |
msgstr ""
|
| 922 |
|
| 2012 |
#: addons/pro/googlesheet/views/form-settings/setup-sheet.php:127
|
| 2013 |
#: addons/pro/googlesheet/views/poll-settings/setup-sheet.php:127
|
| 2014 |
#: addons/pro/googlesheet/views/quiz-settings/setup-sheet.php:126
|
| 2015 |
+
#: admin/locale.php:144
|
| 2016 |
msgid "File Name"
|
| 2017 |
msgstr ""
|
| 2018 |
|
| 2070 |
msgstr ""
|
| 2071 |
|
| 2072 |
#: addons/pro/googlesheet/views/settings/setup-client.php:74
|
| 2073 |
+
#: admin/locale.php:925
|
| 2074 |
msgid "Copy shortcode"
|
| 2075 |
msgstr ""
|
| 2076 |
|
| 2115 |
msgstr ""
|
| 2116 |
|
| 2117 |
#: addons/pro/gutenberg/library/blocks/class-forminator-gfblock-forms.php:182
|
| 2118 |
+
#: admin/locale.php:1541 library/render/class-widget.php:136
|
| 2119 |
msgid "Form"
|
| 2120 |
msgstr ""
|
| 2121 |
|
| 2137 |
msgstr ""
|
| 2138 |
|
| 2139 |
#: addons/pro/gutenberg/library/blocks/class-forminator-gfblock-polls.php:145
|
| 2140 |
+
#: admin/locale.php:1545 library/modules/polls/admin/admin-loader.php:118
|
| 2141 |
#: library/modules/polls/loader.php:117 library/render/class-widget.php:137
|
| 2142 |
msgid "Poll"
|
| 2143 |
msgstr ""
|
| 2160 |
msgstr ""
|
| 2161 |
|
| 2162 |
#: addons/pro/gutenberg/library/blocks/class-forminator-gfblock-quizzes.php:177
|
| 2163 |
+
#: admin/locale.php:1548 library/modules/quizzes/loader.php:119
|
| 2164 |
#: library/render/class-widget.php:138
|
| 2165 |
msgid "Quiz"
|
| 2166 |
msgstr ""
|
| 2259 |
|
| 2260 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-form-settings.php:442
|
| 2261 |
#: addons/pro/hubspot/class-forminator-addon-hubspot-quiz-settings.php:463
|
| 2262 |
+
#: admin/locale.php:802 admin/views/addons/addon-details.php:96
|
| 2263 |
#: admin/views/addons/addons-list.php:173
|
| 2264 |
#: admin/views/settings/appearance-presets-status-bar.php:80
|
| 2265 |
msgid "Update"
|
| 2332 |
msgstr ""
|
| 2333 |
|
| 2334 |
#: addons/pro/hubspot/lib/class-forminator-addon-hubspot-wp-api.php:260
|
| 2335 |
+
#: admin/locale.php:671
|
| 2336 |
msgid "Invalid"
|
| 2337 |
msgstr ""
|
| 2338 |
|
| 2693 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-form-settings.php:668
|
| 2694 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-form-settings.php:701
|
| 2695 |
#: addons/pro/mailchimp/class-forminator-addon-mailchimp-form-settings.php:722
|
| 2696 |
+
#: admin/locale.php:1151
|
| 2697 |
msgid "Optional"
|
| 2698 |
msgstr ""
|
| 2699 |
|
| 3021 |
|
| 3022 |
#: addons/pro/slack/class-forminator-addon-slack-poll-settings.php:466
|
| 3023 |
#: addons/pro/trello/class-forminator-addon-trello-poll-settings.php:488
|
| 3024 |
+
#: admin/locale.php:1316 library/helpers/helper-fields.php:1849
|
| 3025 |
msgid "Poll Name"
|
| 3026 |
msgstr ""
|
| 3027 |
|
| 3033 |
#: addons/pro/slack/class-forminator-addon-slack-quiz-hooks.php:370
|
| 3034 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:433
|
| 3035 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-hooks.php:450
|
| 3036 |
+
#: admin/locale.php:1360 library/helpers/helper-fields.php:2035
|
| 3037 |
msgid "Quiz Result"
|
| 3038 |
msgstr ""
|
| 3039 |
|
| 3081 |
#: addons/pro/slack/views/poll-settings/select-target.php:52
|
| 3082 |
#: addons/pro/slack/views/poll-settings/select-type.php:51
|
| 3083 |
#: addons/pro/slack/views/quiz-settings/select-target.php:52
|
| 3084 |
+
#: addons/pro/slack/views/quiz-settings/select-type.php:51 admin/locale.php:415
|
| 3085 |
#: admin/views/common/entries/content.php:34
|
| 3086 |
#: admin/views/common/reports/tab-dashboard.php:24
|
| 3087 |
msgid "Type"
|
| 3345 |
#: addons/pro/trello/class-forminator-addon-trello-form-settings.php:460
|
| 3346 |
#: addons/pro/trello/class-forminator-addon-trello-poll-settings.php:460
|
| 3347 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:460
|
| 3348 |
+
#: admin/locale.php:163
|
| 3349 |
msgid "Top"
|
| 3350 |
msgstr ""
|
| 3351 |
|
| 3352 |
#: addons/pro/trello/class-forminator-addon-trello-form-settings.php:461
|
| 3353 |
#: addons/pro/trello/class-forminator-addon-trello-poll-settings.php:461
|
| 3354 |
#: addons/pro/trello/class-forminator-addon-trello-quiz-settings.php:461
|
| 3355 |
+
#: admin/locale.php:164
|
| 3356 |
msgid "Bottom"
|
| 3357 |
msgstr ""
|
| 3358 |
|
| 3359 |
#: addons/pro/trello/class-forminator-addon-trello-poll-hooks.php:380
|
| 3360 |
+
#: admin/locale.php:1317 library/helpers/helper-fields.php:1850
|
| 3361 |
msgid "Poll Answer"
|
| 3362 |
msgstr ""
|
| 3363 |
|
| 3525 |
#: addons/pro/trello/views/form-settings/setup-card.php:185
|
| 3526 |
#: addons/pro/trello/views/poll-settings/setup-card.php:168
|
| 3527 |
#: addons/pro/trello/views/quiz-settings/setup-card.php:179
|
| 3528 |
+
#: admin/locale.php:887
|
| 3529 |
msgid "Labels"
|
| 3530 |
msgstr ""
|
| 3531 |
|
| 3819 |
msgid "Select this module"
|
| 3820 |
msgstr ""
|
| 3821 |
|
| 3822 |
+
#: admin/abstracts/class-admin-module-edit-page.php:237 admin/locale.php:591
|
| 3823 |
#: admin/views/common/dashboard/widget.php:87
|
| 3824 |
#: admin/views/settings/dashboard/content.php:50
|
| 3825 |
msgid "Published"
|
| 3826 |
msgstr ""
|
| 3827 |
|
| 3828 |
+
#: admin/abstracts/class-admin-module-edit-page.php:243 admin/locale.php:589
|
| 3829 |
#: admin/views/common/dashboard/widget.php:90
|
| 3830 |
#: admin/views/common/entries/filter.php:157
|
| 3831 |
#: admin/views/custom-form/entries/content.php:168
|
| 3841 |
msgstr ""
|
| 3842 |
|
| 3843 |
#: admin/abstracts/class-admin-module-edit-page.php:255
|
| 3844 |
+
#: admin/abstracts/class-admin-module-edit-page.php:261 admin/locale.php:955
|
| 3845 |
#: admin/views/common/dashboard/widget.php:122
|
| 3846 |
msgid "Edit"
|
| 3847 |
msgstr ""
|
| 3851 |
msgstr ""
|
| 3852 |
|
| 3853 |
#: admin/abstracts/class-admin-module-edit-page.php:282
|
| 3854 |
+
#: admin/classes/class-admin-l10n.php:291 admin/locale.php:893
|
| 3855 |
#: admin/views/common/dashboard/widget.php:134
|
| 3856 |
#: library/modules/polls/admin/admin-loader.php:178
|
| 3857 |
#: library/modules/quizzes/admin/admin-loader.php:529
|
| 3858 |
msgid "Preview"
|
| 3859 |
msgstr ""
|
| 3860 |
|
| 3861 |
+
#: admin/abstracts/class-admin-module-edit-page.php:286 admin/locale.php:1313
|
| 3862 |
#: admin/views/common/dashboard/widget.php:138
|
| 3863 |
msgid "Copy Shortcode"
|
| 3864 |
msgstr ""
|
| 3865 |
|
| 3866 |
+
#: admin/abstracts/class-admin-module-edit-page.php:309 admin/locale.php:800
|
| 3867 |
#: library/modules/custom-forms/admin/admin-page-view.php:31
|
| 3868 |
msgid "Unpublish"
|
| 3869 |
msgstr ""
|
| 3870 |
|
| 3871 |
+
#: admin/abstracts/class-admin-module-edit-page.php:311 admin/locale.php:803
|
| 3872 |
#: library/modules/custom-forms/admin/admin-page-view.php:30
|
| 3873 |
msgid "Publish"
|
| 3874 |
msgstr ""
|
| 3875 |
|
| 3876 |
+
#: admin/abstracts/class-admin-module-edit-page.php:319 admin/locale.php:1534
|
| 3877 |
#: admin/views/common/dashboard/widget.php:141 library/class-export.php:1406
|
| 3878 |
msgid "View Submissions"
|
| 3879 |
msgstr ""
|
| 3880 |
|
| 3881 |
+
#: admin/abstracts/class-admin-module-edit-page.php:331 admin/locale.php:1535
|
| 3882 |
#: admin/views/common/dashboard/widget.php:152
|
| 3883 |
msgid ""
|
| 3884 |
"Duplicate isn't supported at the moment for the quizzes with lead capturing "
|
| 3886 |
msgstr ""
|
| 3887 |
|
| 3888 |
#: admin/abstracts/class-admin-module-edit-page.php:333
|
| 3889 |
+
#: admin/abstracts/class-admin-module-edit-page.php:338 admin/locale.php:303
|
| 3890 |
#: admin/views/common/dashboard/widget.php:154
|
| 3891 |
#: admin/views/common/dashboard/widget.php:159
|
| 3892 |
#: library/modules/custom-forms/admin/admin-page-view.php:32
|
| 3895 |
msgstr ""
|
| 3896 |
|
| 3897 |
#: admin/abstracts/class-admin-module-edit-page.php:334
|
| 3898 |
+
#: admin/abstracts/class-admin-module-edit-page.php:376 admin/locale.php:1536
|
| 3899 |
#: admin/views/common/dashboard/widget.php:155
|
| 3900 |
#: admin/views/common/dashboard/widget.php:171
|
| 3901 |
msgid "Coming soon"
|
| 3902 |
msgstr ""
|
| 3903 |
|
| 3904 |
+
#: admin/abstracts/class-admin-module-edit-page.php:347 admin/locale.php:1537
|
| 3905 |
#: library/modules/custom-forms/admin/admin-page-view.php:33
|
| 3906 |
#: library/modules/polls/admin/admin-page-view.php:58
|
| 3907 |
#: library/modules/quizzes/admin/admin-page-view.php:112
|
| 3928 |
msgid "Apply Preset"
|
| 3929 |
msgstr ""
|
| 3930 |
|
| 3931 |
+
#: admin/abstracts/class-admin-module-edit-page.php:373 admin/locale.php:1538
|
| 3932 |
#: admin/views/common/dashboard/widget.php:168
|
| 3933 |
msgid ""
|
| 3934 |
"Export isn't supported at the moment for the quizzes with lead capturing "
|
| 3936 |
msgstr ""
|
| 3937 |
|
| 3938 |
#: admin/abstracts/class-admin-module-edit-page.php:375
|
| 3939 |
+
#: admin/abstracts/class-admin-module-edit-page.php:385 admin/locale.php:1539
|
| 3940 |
#: admin/views/common/dashboard/widget.php:170
|
| 3941 |
#: admin/views/common/dashboard/widget.php:180
|
| 3942 |
#: admin/views/common/entries/content.php:50
|
| 3953 |
|
| 3954 |
#: admin/abstracts/class-admin-module-edit-page.php:400
|
| 3955 |
#: admin/classes/class-admin-l10n.php:86 admin/classes/class-admin-l10n.php:179
|
| 3956 |
+
#: admin/classes/class-admin-l10n.php:224 admin/locale.php:196
|
| 3957 |
#: admin/views/addons/addons-list.php:63 admin/views/addons/addons-list.php:255
|
| 3958 |
#: admin/views/common/dashboard/widget.php:193
|
| 3959 |
#: admin/views/quiz/entries/content-leads.php:538
|
| 3979 |
|
| 3980 |
#: admin/abstracts/class-admin-module-edit-page.php:433
|
| 3981 |
#: admin/abstracts/class-admin-module-edit-page.php:449
|
| 3982 |
+
#: admin/classes/class-admin.php:244 admin/locale.php:238
|
| 3983 |
#: admin/pages/reports-page.php:205
|
| 3984 |
#: admin/views/common/entries/content-none.php:2
|
| 3985 |
#: admin/views/common/entries/header.php:2
|
| 4056 |
msgstr ""
|
| 4057 |
|
| 4058 |
#: admin/abstracts/class-admin-page.php:242
|
| 4059 |
+
#: admin/abstracts/class-admin-page.php:256 admin/classes/class-admin.php:815
|
| 4060 |
msgid "Roadmap"
|
| 4061 |
msgstr ""
|
| 4062 |
|
| 4063 |
#: admin/abstracts/class-admin-page.php:243
|
| 4064 |
+
#: admin/abstracts/class-admin-page.php:257 admin/classes/class-admin.php:803
|
| 4065 |
msgid "Support"
|
| 4066 |
msgstr ""
|
| 4067 |
|
| 4068 |
#: admin/abstracts/class-admin-page.php:244
|
| 4069 |
+
#: admin/abstracts/class-admin-page.php:258 admin/classes/class-admin.php:736
|
| 4070 |
msgid "Docs"
|
| 4071 |
msgstr ""
|
| 4072 |
|
| 4093 |
msgstr ""
|
| 4094 |
|
| 4095 |
#: admin/abstracts/class-admin-page.php:270
|
| 4096 |
+
#: admin/classes/class-admin-l10n.php:338 admin/locale.php:1395
|
| 4097 |
#: library/modules/quizzes/admin/admin-loader.php:625
|
| 4098 |
msgid "Facebook"
|
| 4099 |
msgstr ""
|
| 4100 |
|
| 4101 |
#: admin/abstracts/class-admin-page.php:274
|
| 4102 |
+
#: admin/classes/class-admin-l10n.php:339 admin/locale.php:1396
|
| 4103 |
#: library/modules/quizzes/admin/admin-loader.php:626
|
| 4104 |
msgid "Twitter"
|
| 4105 |
msgstr ""
|
| 4177 |
msgid "Delete Entries"
|
| 4178 |
msgstr ""
|
| 4179 |
|
| 4180 |
+
#: admin/abstracts/class-admin-view-page.php:317 admin/locale.php:829
|
| 4181 |
#: admin/views/common/entries/filter.php:280
|
| 4182 |
#: admin/views/common/list/main_content.php:42
|
| 4183 |
msgid "Apply"
|
| 4264 |
msgid "Form model doesn't exist"
|
| 4265 |
msgstr ""
|
| 4266 |
|
| 4267 |
+
#: admin/classes/class-admin-ajax.php:431 admin/locale.php:1190
|
| 4268 |
#: library/abstracts/abstract-class-front-action.php:984
|
| 4269 |
msgid "Something went wrong."
|
| 4270 |
msgstr ""
|
| 4452 |
msgid "Unexpected action, we could not handle it."
|
| 4453 |
msgstr ""
|
| 4454 |
|
| 4455 |
+
#: admin/classes/class-admin-l10n.php:42 admin/locale.php:760
|
| 4456 |
msgid "Name your form"
|
| 4457 |
msgstr ""
|
| 4458 |
|
| 4465 |
msgstr ""
|
| 4466 |
|
| 4467 |
#: admin/classes/class-admin-l10n.php:46 admin/classes/class-admin-l10n.php:246
|
| 4468 |
+
#: admin/locale.php:233 library/class-export.php:445
|
| 4469 |
#: library/class-export.php:591 library/fields/date.php:70
|
| 4470 |
msgid "Date"
|
| 4471 |
msgstr ""
|
| 4506 |
msgid "Day of the week"
|
| 4507 |
msgstr ""
|
| 4508 |
|
| 4509 |
+
#: admin/classes/class-admin-l10n.php:56 admin/locale.php:1085
|
| 4510 |
#: library/helpers/helper-core.php:875 library/helpers/helper-fields.php:446
|
| 4511 |
msgid "Monday"
|
| 4512 |
msgstr ""
|
| 4513 |
|
| 4514 |
+
#: admin/classes/class-admin-l10n.php:57 admin/locale.php:1087
|
| 4515 |
#: library/helpers/helper-core.php:876 library/helpers/helper-fields.php:447
|
| 4516 |
msgid "Tuesday"
|
| 4517 |
msgstr ""
|
| 4518 |
|
| 4519 |
+
#: admin/classes/class-admin-l10n.php:58 admin/locale.php:1083
|
| 4520 |
#: library/helpers/helper-core.php:877 library/helpers/helper-fields.php:448
|
| 4521 |
msgid "Wednesday"
|
| 4522 |
msgstr ""
|
| 4523 |
|
| 4524 |
+
#: admin/classes/class-admin-l10n.php:59 admin/locale.php:1086
|
| 4525 |
#: library/helpers/helper-core.php:878 library/helpers/helper-fields.php:449
|
| 4526 |
msgid "Thursday"
|
| 4527 |
msgstr ""
|
| 4528 |
|
| 4529 |
+
#: admin/classes/class-admin-l10n.php:60 admin/locale.php:1088
|
| 4530 |
#: library/helpers/helper-core.php:879 library/helpers/helper-fields.php:450
|
| 4531 |
msgid "Friday"
|
| 4532 |
msgstr ""
|
| 4533 |
|
| 4534 |
+
#: admin/classes/class-admin-l10n.php:61 admin/locale.php:1084
|
| 4535 |
#: library/helpers/helper-core.php:880 library/helpers/helper-fields.php:451
|
| 4536 |
msgid "Saturday"
|
| 4537 |
msgstr ""
|
| 4538 |
|
| 4539 |
+
#: admin/classes/class-admin-l10n.php:62 admin/locale.php:1082
|
| 4540 |
#: library/helpers/helper-core.php:881 library/helpers/helper-fields.php:445
|
| 4541 |
msgid "Sunday"
|
| 4542 |
msgstr ""
|
| 4626 |
msgid "Form name cannot be empty! Please pick a name for your form."
|
| 4627 |
msgstr ""
|
| 4628 |
|
| 4629 |
+
#: admin/classes/class-admin-l10n.php:83 admin/locale.php:809
|
| 4630 |
msgid "Close this dialog window"
|
| 4631 |
msgstr ""
|
| 4632 |
|
| 4692 |
msgid "Please confirm that you want to delete this field"
|
| 4693 |
msgstr ""
|
| 4694 |
|
| 4695 |
+
#: admin/classes/class-admin-l10n.php:99 admin/locale.php:828
|
| 4696 |
#: admin/views/common/popup/import.php:50
|
| 4697 |
#: admin/views/custom-form/popup/import-cf7.php:503
|
| 4698 |
#: admin/views/custom-form/popup/import-gravityforms.php:43
|
| 4726 |
msgid "Import Form"
|
| 4727 |
msgstr ""
|
| 4728 |
|
| 4729 |
+
#: admin/classes/class-admin-l10n.php:107 admin/locale.php:1133
|
| 4730 |
#: admin/views/common/list/empty_content.php:54
|
| 4731 |
#: admin/views/common/list/header.php:15 admin/views/common/popup/import.php:57
|
| 4732 |
#: admin/views/custom-form/popup/import-gravityforms.php:50
|
| 4782 |
msgid "Enable scheduled exports to get the submissions list in your email."
|
| 4783 |
msgstr ""
|
| 4784 |
|
| 4785 |
+
#: admin/classes/class-admin-l10n.php:119 admin/locale.php:560
|
| 4786 |
msgid "Disable"
|
| 4787 |
msgstr ""
|
| 4788 |
|
| 4789 |
#: admin/classes/class-admin-l10n.php:120
|
| 4790 |
+
#: admin/classes/class-admin-l10n.php:286 admin/locale.php:552
|
| 4791 |
#: admin/views/settings/tab-editor.php:24
|
| 4792 |
#: library/modules/quizzes/admin/admin-loader.php:630
|
| 4793 |
msgid "Enable"
|
| 4811 |
"etc.) on your quiz."
|
| 4812 |
msgstr ""
|
| 4813 |
|
| 4814 |
+
#: admin/classes/class-admin-l10n.php:125 admin/classes/class-admin.php:587
|
| 4815 |
#: admin/views/dashboard/footer-free.php:64
|
| 4816 |
msgid "Learn more"
|
| 4817 |
msgstr ""
|
| 4905 |
msgid "Collect Leads"
|
| 4906 |
msgstr ""
|
| 4907 |
|
| 4908 |
+
#: admin/classes/class-admin-l10n.php:153 admin/locale.php:1365
|
| 4909 |
msgid "No Pagination"
|
| 4910 |
msgstr ""
|
| 4911 |
|
| 4912 |
+
#: admin/classes/class-admin-l10n.php:154 admin/locale.php:1366
|
| 4913 |
msgid "Paginated Quiz"
|
| 4914 |
msgstr ""
|
| 4915 |
|
| 4988 |
msgstr ""
|
| 4989 |
|
| 4990 |
#: admin/classes/class-admin-l10n.php:177
|
| 4991 |
+
#: admin/classes/class-admin-l10n.php:324 admin/locale.php:218
|
| 4992 |
msgid "Value"
|
| 4993 |
msgstr ""
|
| 4994 |
|
| 4995 |
+
#: admin/classes/class-admin-l10n.php:178 admin/locale.php:1126
|
| 4996 |
msgid "Add Option"
|
| 4997 |
msgstr ""
|
| 4998 |
|
| 5004 |
msgid "This field will be"
|
| 5005 |
msgstr ""
|
| 5006 |
|
| 5007 |
+
#: admin/classes/class-admin-l10n.php:182 admin/locale.php:300
|
| 5008 |
msgid "if"
|
| 5009 |
msgstr ""
|
| 5010 |
|
| 5012 |
msgid "Shown"
|
| 5013 |
msgstr ""
|
| 5014 |
|
| 5015 |
+
#: admin/classes/class-admin-l10n.php:184 admin/locale.php:331
|
| 5016 |
#: library/fields/custom.php:125
|
| 5017 |
msgid "Hidden"
|
| 5018 |
msgstr ""
|
| 5053 |
msgid "Button background"
|
| 5054 |
msgstr ""
|
| 5055 |
|
| 5056 |
+
#: admin/classes/class-admin-l10n.php:196 admin/locale.php:926
|
| 5057 |
msgid "Button text"
|
| 5058 |
msgstr ""
|
| 5059 |
|
| 5100 |
msgid "You don't have any questions yet."
|
| 5101 |
msgstr ""
|
| 5102 |
|
| 5103 |
+
#: admin/classes/class-admin-l10n.php:209 admin/locale.php:1405
|
| 5104 |
msgid "Add Question"
|
| 5105 |
msgstr ""
|
| 5106 |
|
| 5116 |
msgid "Question title cannot be empty! Please, add some content to your question."
|
| 5117 |
msgstr ""
|
| 5118 |
|
| 5119 |
+
#: admin/classes/class-admin-l10n.php:213 admin/locale.php:1214
|
| 5120 |
#: admin/views/quiz/entries/content-leads-none.php:109
|
| 5121 |
#: library/modules/quizzes/admin/admin-loader.php:583
|
| 5122 |
msgid "Answers"
|
| 5123 |
msgstr ""
|
| 5124 |
|
| 5125 |
+
#: admin/classes/class-admin-l10n.php:214 admin/locale.php:1289
|
| 5126 |
#: library/modules/polls/admin/admin-loader.php:169
|
| 5127 |
msgid "Add Answer"
|
| 5128 |
msgstr ""
|
| 5139 |
msgid "Delete Result"
|
| 5140 |
msgstr ""
|
| 5141 |
|
| 5142 |
+
#: admin/classes/class-admin-l10n.php:218 admin/locale.php:576
|
| 5143 |
#: library/field-autofill-providers/class-wp-post.php:30
|
| 5144 |
#: library/helpers/helper-fields.php:1094
|
| 5145 |
#: library/model/class-form-entry-model.php:1599
|
| 5178 |
msgid "Restricted dates:"
|
| 5179 |
msgstr ""
|
| 5180 |
|
| 5181 |
+
#: admin/classes/class-admin-l10n.php:226 admin/locale.php:830
|
| 5182 |
msgid "Add"
|
| 5183 |
msgstr ""
|
| 5184 |
|
| 5186 |
msgid "Pick custom date(s) to restrict:"
|
| 5187 |
msgstr ""
|
| 5188 |
|
| 5189 |
+
#: admin/classes/class-admin-l10n.php:228 admin/locale.php:1472
|
| 5190 |
msgid "Form Data"
|
| 5191 |
msgstr ""
|
| 5192 |
|
| 5193 |
+
#: admin/classes/class-admin-l10n.php:229 admin/locale.php:2183
|
| 5194 |
msgid "Required Fields"
|
| 5195 |
msgstr ""
|
| 5196 |
|
| 5197 |
+
#: admin/classes/class-admin-l10n.php:230 admin/locale.php:2184
|
| 5198 |
msgid "Optional Fields"
|
| 5199 |
msgstr ""
|
| 5200 |
|
| 5202 |
msgid "All Submitted Fields"
|
| 5203 |
msgstr ""
|
| 5204 |
|
| 5205 |
+
#: admin/classes/class-admin-l10n.php:232 admin/locale.php:2187
|
| 5206 |
msgid "Form Name"
|
| 5207 |
msgstr ""
|
| 5208 |
|
| 5209 |
+
#: admin/classes/class-admin-l10n.php:233 admin/locale.php:2185
|
| 5210 |
msgid "Misc Data"
|
| 5211 |
msgstr ""
|
| 5212 |
|
| 5213 |
+
#: admin/classes/class-admin-l10n.php:234 admin/locale.php:2190
|
| 5214 |
msgid "Add form data"
|
| 5215 |
msgstr ""
|
| 5216 |
|
| 5284 |
msgid "User Email"
|
| 5285 |
msgstr ""
|
| 5286 |
|
| 5287 |
+
#: admin/classes/class-admin-l10n.php:255 admin/locale.php:921
|
| 5288 |
msgid "Shortcode has been copied successfully."
|
| 5289 |
msgstr ""
|
| 5290 |
|
| 5388 |
msgid "Font family"
|
| 5389 |
msgstr ""
|
| 5390 |
|
| 5391 |
+
#: admin/classes/class-admin-l10n.php:282 admin/locale.php:1059
|
| 5392 |
msgid "Custom font family"
|
| 5393 |
msgstr ""
|
| 5394 |
|
| 5400 |
msgid "Here you can type the font family you want to use, as you would in CSS."
|
| 5401 |
msgstr ""
|
| 5402 |
|
| 5403 |
+
#: admin/classes/class-admin-l10n.php:285 admin/locale.php:1512
|
| 5404 |
msgid "Icon size"
|
| 5405 |
msgstr ""
|
| 5406 |
|
| 5407 |
+
#: admin/classes/class-admin-l10n.php:287 admin/locale.php:140
|
| 5408 |
#: library/fields/custom.php:105
|
| 5409 |
msgid "Dropdown"
|
| 5410 |
msgstr ""
|
| 5443 |
msgid "Icon color (incorrect)"
|
| 5444 |
msgstr ""
|
| 5445 |
|
| 5446 |
+
#: admin/classes/class-admin-l10n.php:297 admin/locale.php:1216
|
| 5447 |
msgid "Box shadow"
|
| 5448 |
msgstr ""
|
| 5449 |
|
| 5465 |
msgid "Text align"
|
| 5466 |
msgstr ""
|
| 5467 |
|
| 5468 |
+
#: admin/classes/class-admin-l10n.php:302 admin/locale.php:1514
|
| 5469 |
msgid "Regular"
|
| 5470 |
msgstr ""
|
| 5471 |
|
| 5472 |
+
#: admin/classes/class-admin-l10n.php:303 admin/locale.php:1515
|
| 5473 |
msgid "Medium"
|
| 5474 |
msgstr ""
|
| 5475 |
|
| 5476 |
+
#: admin/classes/class-admin-l10n.php:304 admin/locale.php:1516
|
| 5477 |
msgid "Large"
|
| 5478 |
msgstr ""
|
| 5479 |
|
| 5480 |
+
#: admin/classes/class-admin-l10n.php:305 admin/locale.php:366
|
| 5481 |
msgid "Light"
|
| 5482 |
msgstr ""
|
| 5483 |
|
| 5484 |
+
#: admin/classes/class-admin-l10n.php:306 admin/locale.php:364
|
| 5485 |
msgid "Normal"
|
| 5486 |
msgstr ""
|
| 5487 |
|
| 5513 |
msgid "Border radius"
|
| 5514 |
msgstr ""
|
| 5515 |
|
| 5516 |
+
#: admin/classes/class-admin-l10n.php:314 admin/locale.php:234
|
| 5517 |
msgid "20 April 2018"
|
| 5518 |
msgstr ""
|
| 5519 |
|
| 5520 |
+
#: admin/classes/class-admin-l10n.php:315 admin/locale.php:165
|
| 5521 |
msgid "Left"
|
| 5522 |
msgstr ""
|
| 5523 |
|
| 5524 |
+
#: admin/classes/class-admin-l10n.php:316 admin/locale.php:1338
|
| 5525 |
msgid "Center"
|
| 5526 |
msgstr ""
|
| 5527 |
|
| 5528 |
+
#: admin/classes/class-admin-l10n.php:317 admin/locale.php:166
|
| 5529 |
msgid "Right"
|
| 5530 |
msgstr ""
|
| 5531 |
|
| 5532 |
+
#: admin/classes/class-admin-l10n.php:319 admin/locale.php:159
|
| 5533 |
msgid "Solid"
|
| 5534 |
msgstr ""
|
| 5535 |
|
| 5536 |
+
#: admin/classes/class-admin-l10n.php:320 admin/locale.php:160
|
| 5537 |
msgid "Dashed"
|
| 5538 |
msgstr ""
|
| 5539 |
|
| 5540 |
+
#: admin/classes/class-admin-l10n.php:321 admin/locale.php:161
|
| 5541 |
msgid "Dotted"
|
| 5542 |
msgstr ""
|
| 5543 |
|
| 5544 |
+
#: admin/classes/class-admin-l10n.php:322 admin/locale.php:1107
|
| 5545 |
msgid "Delete option"
|
| 5546 |
msgstr ""
|
| 5547 |
|
| 5596 |
msgid "Google+"
|
| 5597 |
msgstr ""
|
| 5598 |
|
| 5599 |
+
#: admin/classes/class-admin-l10n.php:341 admin/locale.php:1397
|
| 5600 |
#: library/modules/quizzes/admin/admin-loader.php:628
|
| 5601 |
msgid "LinkedIn"
|
| 5602 |
msgstr ""
|
| 5704 |
msgid "December"
|
| 5705 |
msgstr ""
|
| 5706 |
|
| 5707 |
+
#: admin/classes/class-admin-l10n.php:381 admin/locale.php:851
|
| 5708 |
msgid "No Result Found"
|
| 5709 |
msgstr ""
|
| 5710 |
|
| 5711 |
+
#: admin/classes/class-admin-l10n.php:382 admin/locale.php:850
|
| 5712 |
msgid "Searching"
|
| 5713 |
msgstr ""
|
| 5714 |
|
| 5775 |
msgstr ""
|
| 5776 |
|
| 5777 |
#: admin/classes/class-admin.php:190 admin/classes/class-admin.php:191
|
| 5778 |
+
#: admin/locale.php:767 admin/views/integrations/header.php:2
|
| 5779 |
msgid "Integrations"
|
| 5780 |
msgstr ""
|
| 5781 |
|
| 5783 |
msgid "Global Settings"
|
| 5784 |
msgstr ""
|
| 5785 |
|
| 5786 |
+
#: admin/classes/class-admin.php:222 admin/classes/class-admin.php:733
|
| 5787 |
+
#: admin/locale.php:181 admin/views/settings/header.php:2
|
| 5788 |
#: library/modules/quizzes/admin/admin-loader.php:527
|
| 5789 |
msgid "Settings"
|
| 5790 |
msgstr ""
|
| 5793 |
msgid "Forminator Submissions"
|
| 5794 |
msgstr ""
|
| 5795 |
|
| 5796 |
+
#: admin/classes/class-admin.php:264 admin/classes/class-admin.php:744
|
| 5797 |
#: admin/views/upgrade/upgrade-content.php:17
|
| 5798 |
msgid "Upgrade to Forminator Pro"
|
| 5799 |
msgstr ""
|
| 5810 |
msgid "Reports"
|
| 5811 |
msgstr ""
|
| 5812 |
|
| 5813 |
+
#: admin/classes/class-admin.php:354 admin/classes/class-admin.php:744
|
| 5814 |
msgid "Upgrade"
|
| 5815 |
msgstr ""
|
| 5816 |
|
| 5817 |
+
#: admin/classes/class-admin.php:357
|
| 5818 |
msgid "Hey"
|
| 5819 |
msgstr ""
|
| 5820 |
|
| 5821 |
+
#: admin/classes/class-admin.php:361
|
| 5822 |
#. translators: user's name
|
| 5823 |
msgid ""
|
| 5824 |
"%s, it appears you have an active WPMU DEV membership but haven't upgraded "
|
| 5826 |
"for it!"
|
| 5827 |
msgstr ""
|
| 5828 |
|
| 5829 |
+
#: admin/classes/class-admin.php:397
|
| 5830 |
msgid "Claim your free gift"
|
| 5831 |
msgstr ""
|
| 5832 |
|
| 5833 |
+
#: admin/classes/class-admin.php:399
|
| 5834 |
msgid "Find out more"
|
| 5835 |
msgstr ""
|
| 5836 |
|
| 5837 |
+
#: admin/classes/class-admin.php:400 admin/classes/class-admin.php:870
|
| 5838 |
msgid "Remind me later"
|
| 5839 |
msgstr ""
|
| 5840 |
|
| 5841 |
+
#: admin/classes/class-admin.php:403
|
| 5842 |
msgid "Managing multiple WP sites for clients? Here’s a free gift to make it easier"
|
| 5843 |
msgstr ""
|
| 5844 |
|
| 5845 |
+
#: admin/classes/class-admin.php:406
|
| 5846 |
msgid ""
|
| 5847 |
"In addition to Forminator, WPMU DEV has everything you need for fast and "
|
| 5848 |
"convenient site management."
|
| 5849 |
msgstr ""
|
| 5850 |
|
| 5851 |
+
#: admin/classes/class-admin.php:409
|
| 5852 |
msgid "Trusted by over 50K web developers. Completely free to try."
|
| 5853 |
msgstr ""
|
| 5854 |
|
| 5855 |
+
#: admin/classes/class-admin.php:444
|
| 5856 |
#. translators: Forminator vesrion
|
| 5857 |
msgid ""
|
| 5858 |
"We've noticed you have updated to Forminator Pro version %s. Please ensure "
|
| 5860 |
"1.0.4 or higher to ensure compatibility with the new submissions processes."
|
| 5861 |
msgstr ""
|
| 5862 |
|
| 5863 |
+
#: admin/classes/class-admin.php:509
|
| 5864 |
msgid "Forminator - Import your Contact Form 7 forms automatically"
|
| 5865 |
msgstr ""
|
| 5866 |
|
| 5867 |
+
#: admin/classes/class-admin.php:511
|
| 5868 |
msgid ""
|
| 5869 |
"We noticed that Contact Form 7 is active on your website. You can use our "
|
| 5870 |
"built-in Contact Form 7 importer to import your existing forms and the "
|
| 5872 |
"supports the most widely used add-ons as well."
|
| 5873 |
msgstr ""
|
| 5874 |
|
| 5875 |
+
#: admin/classes/class-admin.php:515
|
| 5876 |
msgid "Import Contact Form 7 Forms"
|
| 5877 |
msgstr ""
|
| 5878 |
|
| 5879 |
+
#: admin/classes/class-admin.php:517 admin/classes/class-admin.php:589
|
| 5880 |
+
#: admin/locale.php:849
|
| 5881 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:248
|
| 5882 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:289
|
| 5883 |
#: library/lib/free-notices/classes/notices/class-rating.php:82
|
| 5885 |
msgid "Dismiss"
|
| 5886 |
msgstr ""
|
| 5887 |
|
| 5888 |
+
#: admin/classes/class-admin.php:583
|
| 5889 |
msgid ""
|
| 5890 |
"To make Forminator's Stripe field <a href=\"%s\" target=\"_blank\">SCA "
|
| 5891 |
"Compliant</a>, we have replaced the Stripe Checkout modal with Stripe "
|
| 5894 |
"updated, but we recommend checking them to ensure everything works fine."
|
| 5895 |
msgstr ""
|
| 5896 |
|
| 5897 |
+
#: admin/classes/class-admin.php:646
|
| 5898 |
msgid ""
|
| 5899 |
"Awesome! You've published more than %d modules with Forminator. Hope you "
|
| 5900 |
"are enjoying it so far. We have spent countless hours developing this free "
|
| 5902 |
"rating on wp.org to help us spread the word and boost our motivation."
|
| 5903 |
msgstr ""
|
| 5904 |
|
| 5905 |
+
#: admin/classes/class-admin.php:650 admin/classes/class-admin.php:679
|
| 5906 |
+
#: admin/classes/class-admin.php:802 admin/views/common/entries/prompt.php:41
|
| 5907 |
msgid "Rate Forminator"
|
| 5908 |
msgstr ""
|
| 5909 |
|
| 5910 |
+
#: admin/classes/class-admin.php:653 admin/classes/class-admin.php:683
|
| 5911 |
#: admin/views/common/entries/prompt.php:45
|
| 5912 |
msgid "Maybe later"
|
| 5913 |
msgstr ""
|
| 5914 |
|
| 5915 |
+
#: admin/classes/class-admin.php:657 admin/views/common/entries/prompt.php:49
|
| 5916 |
msgid "No Thanks"
|
| 5917 |
msgstr ""
|
| 5918 |
|
| 5919 |
+
#: admin/classes/class-admin.php:675
|
| 5920 |
msgid ""
|
| 5921 |
"Excellent! You've been using Forminator for a while now. Hope you are "
|
| 5922 |
"enjoying it so far. We have spent countless hours developing this free "
|
| 5924 |
"rating on wp.org to help us spread the word and boost our motivation."
|
| 5925 |
msgstr ""
|
| 5926 |
|
| 5927 |
+
#: admin/classes/class-admin.php:733
|
| 5928 |
msgid "Go to Forminator Settings"
|
| 5929 |
msgstr ""
|
| 5930 |
|
| 5931 |
+
#: admin/classes/class-admin.php:746
|
| 5932 |
msgid "Upgrade 35% OFF Sale"
|
| 5933 |
msgstr ""
|
| 5934 |
|
| 5936 |
msgid "WPMU DEV"
|
| 5937 |
msgstr ""
|
| 5938 |
|
| 5939 |
+
#: admin/classes/class-admin.php:778
|
| 5940 |
msgid "By %s"
|
| 5941 |
msgstr ""
|
| 5942 |
|
| 5943 |
+
#: admin/classes/class-admin.php:794
|
| 5944 |
#. translators: %s: Plugin name.
|
| 5945 |
msgid "More information about %s"
|
| 5946 |
msgstr ""
|
| 5947 |
|
| 5948 |
+
#: admin/classes/class-admin.php:796 admin/classes/class-admin.php:810
|
| 5949 |
msgid "View details"
|
| 5950 |
msgstr ""
|
| 5951 |
|
| 5952 |
+
#: admin/classes/class-admin.php:813
|
| 5953 |
msgid "Premium Support"
|
| 5954 |
msgstr ""
|
| 5955 |
|
| 5956 |
+
#: admin/classes/class-admin.php:856
|
| 5957 |
msgid "New update available for one or more Add-ons."
|
| 5958 |
msgstr ""
|
| 5959 |
|
| 5960 |
+
#: admin/classes/class-admin.php:860
|
| 5961 |
msgid ""
|
| 5962 |
"A new update is available for one or more of your Forminator Add-ons. Click "
|
| 5963 |
"on the button below to check and update the required Add-on."
|
| 5964 |
msgstr ""
|
| 5965 |
|
| 5966 |
+
#: admin/classes/class-admin.php:865
|
| 5967 |
msgid "View and Update"
|
| 5968 |
msgstr ""
|
| 5969 |
|
| 6403 |
msgstr ""
|
| 6404 |
|
| 6405 |
#: admin/locale.php:123
|
| 6406 |
+
msgid "Radius"
|
| 6407 |
msgstr ""
|
| 6408 |
|
| 6409 |
#: admin/locale.php:124
|
| 6410 |
+
msgid "in px"
|
| 6411 |
+
msgstr ""
|
| 6412 |
+
|
| 6413 |
+
#: admin/locale.php:125
|
| 6414 |
+
msgid "Thickness"
|
| 6415 |
+
msgstr ""
|
| 6416 |
+
|
| 6417 |
+
#: admin/locale.php:126
|
| 6418 |
+
msgid "Field Container"
|
| 6419 |
+
msgstr ""
|
| 6420 |
+
|
| 6421 |
+
#: admin/locale.php:127
|
| 6422 |
+
msgid "Customize the field container's border."
|
| 6423 |
+
msgstr ""
|
| 6424 |
+
|
| 6425 |
+
#: admin/locale.php:128
|
| 6426 |
+
msgid "Add an border style around the field."
|
| 6427 |
+
msgstr ""
|
| 6428 |
+
|
| 6429 |
+
#: admin/locale.php:129
|
| 6430 |
+
msgid "Fonts"
|
| 6431 |
+
msgstr ""
|
| 6432 |
+
|
| 6433 |
+
#: admin/locale.php:130
|
| 6434 |
msgid ""
|
| 6435 |
"By default this form will inherit the fonts your theme uses. You can "
|
| 6436 |
"overwrite these fonts with custom ones from Google Fonts."
|
| 6437 |
msgstr ""
|
| 6438 |
|
| 6439 |
+
#: admin/locale.php:131
|
| 6440 |
msgid "Use Theme Fonts"
|
| 6441 |
msgstr ""
|
| 6442 |
|
| 6443 |
+
#: admin/locale.php:132
|
| 6444 |
msgid "Response Message"
|
| 6445 |
msgstr ""
|
| 6446 |
|
| 6447 |
+
#: admin/locale.php:133
|
| 6448 |
msgid "Fields Label"
|
| 6449 |
msgstr ""
|
| 6450 |
|
| 6451 |
+
#: admin/locale.php:134
|
| 6452 |
msgid "Fields Description"
|
| 6453 |
msgstr ""
|
| 6454 |
|
| 6455 |
+
#: admin/locale.php:135
|
| 6456 |
msgid "Fields Error Message"
|
| 6457 |
msgstr ""
|
| 6458 |
|
| 6459 |
+
#: admin/locale.php:136
|
| 6460 |
msgid "Section Title"
|
| 6461 |
msgstr ""
|
| 6462 |
|
| 6463 |
+
#: admin/locale.php:137
|
| 6464 |
msgid "Section Subtitle"
|
| 6465 |
msgstr ""
|
| 6466 |
|
| 6467 |
+
#: admin/locale.php:138
|
| 6468 |
msgid "Input Prefix"
|
| 6469 |
msgstr ""
|
| 6470 |
|
| 6471 |
+
#: admin/locale.php:139
|
| 6472 |
msgid "Input Suffix"
|
| 6473 |
msgstr ""
|
| 6474 |
|
| 6475 |
+
#: admin/locale.php:141
|
| 6476 |
msgid "Calendar"
|
| 6477 |
msgstr ""
|
| 6478 |
|
| 6479 |
+
#: admin/locale.php:142
|
| 6480 |
msgid "Single File Upload"
|
| 6481 |
msgstr ""
|
| 6482 |
|
| 6483 |
+
#: admin/locale.php:143
|
| 6484 |
msgid "Upload Button"
|
| 6485 |
msgstr ""
|
| 6486 |
|
| 6487 |
+
#: admin/locale.php:145
|
| 6488 |
msgid "Multiple Files Upload"
|
| 6489 |
msgstr ""
|
| 6490 |
|
| 6491 |
+
#: admin/locale.php:146
|
| 6492 |
msgid "Upload Panel"
|
| 6493 |
msgstr ""
|
| 6494 |
|
| 6495 |
+
#: admin/locale.php:147
|
| 6496 |
msgid "File Size"
|
| 6497 |
msgstr ""
|
| 6498 |
|
| 6499 |
+
#: admin/locale.php:148
|
| 6500 |
msgid "E-Signature Placeholder"
|
| 6501 |
msgstr ""
|
| 6502 |
|
| 6503 |
+
#: admin/locale.php:149
|
| 6504 |
msgid "Pagination Buttons"
|
| 6505 |
msgstr ""
|
| 6506 |
|
| 6507 |
+
#: admin/locale.php:150
|
| 6508 |
msgid "Customize the form container's padding and border."
|
| 6509 |
msgstr ""
|
| 6510 |
|
| 6511 |
+
#: admin/locale.php:151 library/modules/quizzes/admin/admin-loader.php:601
|
| 6512 |
msgid "Padding"
|
| 6513 |
msgstr ""
|
| 6514 |
|
| 6515 |
+
#: admin/locale.php:152
|
| 6516 |
msgid ""
|
| 6517 |
"By default the form will fill the available space where you insert it. You "
|
| 6518 |
"can add some padding here to better suit your theme."
|
| 6519 |
msgstr ""
|
| 6520 |
|
| 6521 |
+
#: admin/locale.php:153
|
| 6522 |
msgid "Add an optional border around the form."
|
| 6523 |
msgstr ""
|
| 6524 |
|
| 6525 |
+
#: admin/locale.php:154
|
| 6526 |
msgid "Spacing"
|
| 6527 |
msgstr ""
|
| 6528 |
|
| 6529 |
+
#: admin/locale.php:155
|
| 6530 |
msgid "Choose how much spacing you want between each form field."
|
| 6531 |
msgstr ""
|
| 6532 |
|
| 6533 |
+
#: admin/locale.php:156
|
| 6534 |
msgid "Comfortable"
|
| 6535 |
msgstr ""
|
| 6536 |
|
| 6537 |
+
#: admin/locale.php:157
|
| 6538 |
msgid "Compact"
|
| 6539 |
msgstr ""
|
| 6540 |
|
| 6541 |
+
#: admin/locale.php:158
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6542 |
msgid "Style"
|
| 6543 |
msgstr ""
|
| 6544 |
|
| 6545 |
+
#: admin/locale.php:162
|
| 6546 |
msgid "Note: Set the color of the border in the Colors settings area above."
|
| 6547 |
msgstr ""
|
| 6548 |
|
| 6549 |
+
#: admin/locale.php:167
|
| 6550 |
msgid "Set your custom padding in pixels."
|
| 6551 |
msgstr ""
|
| 6552 |
|
| 6553 |
+
#: admin/locale.php:168
|
| 6554 |
msgid "in pixels"
|
| 6555 |
msgstr ""
|
| 6556 |
|
| 6557 |
+
#: admin/locale.php:170 admin/views/settings/tab-pagination.php:8
|
| 6558 |
msgid "Pagination"
|
| 6559 |
msgstr ""
|
| 6560 |
|
| 6561 |
+
#: admin/locale.php:171
|
| 6562 |
msgid "Customize the appearance of pagination of your form."
|
| 6563 |
msgstr ""
|
| 6564 |
|
| 6565 |
+
#: admin/locale.php:172
|
| 6566 |
msgid "Note: "
|
| 6567 |
msgstr ""
|
| 6568 |
|
| 6569 |
+
#: admin/locale.php:173
|
| 6570 |
msgid ""
|
| 6571 |
"If you have added multiple pagination fields in your form, these settings "
|
| 6572 |
"will affect all of them."
|
| 6573 |
msgstr ""
|
| 6574 |
|
| 6575 |
+
#: admin/locale.php:174
|
| 6576 |
msgid "Progress Indicator"
|
| 6577 |
msgstr ""
|
| 6578 |
|
| 6579 |
+
#: admin/locale.php:175
|
| 6580 |
msgid ""
|
| 6581 |
"By default we don’t show how many pages the user has left before completing "
|
| 6582 |
"the form. You can turn on a stepped progress bar to indicate to the user "
|
| 6583 |
"how far they are through your form."
|
| 6584 |
msgstr ""
|
| 6585 |
|
| 6586 |
+
#: admin/locale.php:176
|
| 6587 |
msgid "Hide"
|
| 6588 |
msgstr ""
|
| 6589 |
|
| 6590 |
+
#: admin/locale.php:177
|
| 6591 |
msgid "Show"
|
| 6592 |
msgstr ""
|
| 6593 |
|
| 6594 |
+
#: admin/locale.php:178
|
| 6595 |
msgid "Progress Bar"
|
| 6596 |
msgstr ""
|
| 6597 |
|
| 6598 |
+
#: admin/locale.php:179
|
| 6599 |
msgid "Steps"
|
| 6600 |
msgstr ""
|
| 6601 |
|
| 6602 |
+
#: admin/locale.php:180
|
| 6603 |
msgid ""
|
| 6604 |
"Some of the settings you'd find in a regular form are unavailable in this "
|
| 6605 |
"form template because they are either unnecessary or controlled by the "
|
| 6606 |
"parent quiz automatically."
|
| 6607 |
msgstr ""
|
| 6608 |
|
| 6609 |
+
#: admin/locale.php:182
|
| 6610 |
msgid "Email Notifications"
|
| 6611 |
msgstr ""
|
| 6612 |
|
| 6613 |
+
#: admin/locale.php:183
|
| 6614 |
msgid "Form does not have fields that can be autofilled."
|
| 6615 |
msgstr ""
|
| 6616 |
|
| 6617 |
+
#: admin/locale.php:184
|
| 6618 |
msgid "Autofill"
|
| 6619 |
msgstr ""
|
| 6620 |
|
| 6621 |
+
#: admin/locale.php:185
|
| 6622 |
msgid ""
|
| 6623 |
"If the user filling out the form is logged in, we can auto-fill fields with "
|
| 6624 |
"any available data."
|
| 6625 |
msgstr ""
|
| 6626 |
|
| 6627 |
+
#: admin/locale.php:186
|
| 6628 |
msgid "Enable Autofill"
|
| 6629 |
msgstr ""
|
| 6630 |
|
| 6631 |
+
#: admin/locale.php:187
|
| 6632 |
msgid "Autofill source"
|
| 6633 |
msgstr ""
|
| 6634 |
|
| 6635 |
+
#: admin/locale.php:188
|
| 6636 |
msgid "Disable Autofill"
|
| 6637 |
msgstr ""
|
| 6638 |
|
| 6639 |
+
#: admin/locale.php:189
|
| 6640 |
msgid "Editable"
|
| 6641 |
msgstr ""
|
| 6642 |
|
| 6643 |
+
#: admin/locale.php:192
|
| 6644 |
msgid "more condition(s)"
|
| 6645 |
msgstr ""
|
| 6646 |
|
| 6647 |
+
#: admin/locale.php:193
|
| 6648 |
msgid "Process behavior if"
|
| 6649 |
msgstr ""
|
| 6650 |
|
| 6651 |
+
#: admin/locale.php:194
|
| 6652 |
msgid "Open condition settings"
|
| 6653 |
msgstr ""
|
| 6654 |
|
| 6655 |
+
#: admin/locale.php:195
|
| 6656 |
msgid "Edit Behavior"
|
| 6657 |
msgstr ""
|
| 6658 |
|
| 6659 |
+
#: admin/locale.php:197
|
| 6660 |
msgid "Add Behavior"
|
| 6661 |
msgstr ""
|
| 6662 |
|
| 6663 |
+
#: admin/locale.php:198
|
| 6664 |
msgid "null"
|
| 6665 |
msgstr ""
|
| 6666 |
|
| 6667 |
+
#: admin/locale.php:199 library/fields/consent.php:139
|
| 6668 |
#: library/fields/consent.php:206
|
| 6669 |
msgid "checked"
|
| 6670 |
msgstr ""
|
| 6671 |
|
| 6672 |
+
#: admin/locale.php:200
|
| 6673 |
msgid "Field"
|
| 6674 |
msgstr ""
|
| 6675 |
|
| 6676 |
+
#: admin/locale.php:201
|
| 6677 |
msgid "Condition (required)"
|
| 6678 |
msgstr ""
|
| 6679 |
|
| 6680 |
+
#: admin/locale.php:202
|
| 6681 |
msgid "Select rule"
|
| 6682 |
msgstr ""
|
| 6683 |
|
| 6684 |
+
#: admin/locale.php:203
|
| 6685 |
msgid "Is null"
|
| 6686 |
msgstr ""
|
| 6687 |
|
| 6688 |
+
#: admin/locale.php:204
|
| 6689 |
msgid "Is not null"
|
| 6690 |
msgstr ""
|
| 6691 |
|
| 6692 |
+
#: admin/locale.php:205
|
| 6693 |
msgid "Is"
|
| 6694 |
msgstr ""
|
| 6695 |
|
| 6696 |
+
#: admin/locale.php:206
|
| 6697 |
msgid "Is not"
|
| 6698 |
msgstr ""
|
| 6699 |
|
| 6700 |
+
#: admin/locale.php:207
|
| 6701 |
msgid "Is greater than"
|
| 6702 |
msgstr ""
|
| 6703 |
|
| 6704 |
+
#: admin/locale.php:208
|
| 6705 |
msgid "Is less than"
|
| 6706 |
msgstr ""
|
| 6707 |
|
| 6708 |
+
#: admin/locale.php:209
|
| 6709 |
msgid "Contains"
|
| 6710 |
msgstr ""
|
| 6711 |
|
| 6712 |
+
#: admin/locale.php:210
|
| 6713 |
msgid "Starts"
|
| 6714 |
msgstr ""
|
| 6715 |
|
| 6716 |
+
#: admin/locale.php:211
|
| 6717 |
msgid "Ends"
|
| 6718 |
msgstr ""
|
| 6719 |
|
| 6720 |
+
#: admin/locale.php:212
|
| 6721 |
msgid "Day is"
|
| 6722 |
msgstr ""
|
| 6723 |
|
| 6724 |
+
#: admin/locale.php:213
|
| 6725 |
msgid "Day is not"
|
| 6726 |
msgstr ""
|
| 6727 |
|
| 6728 |
+
#: admin/locale.php:214
|
| 6729 |
msgid "Month is"
|
| 6730 |
msgstr ""
|
| 6731 |
|
| 6732 |
+
#: admin/locale.php:215
|
| 6733 |
msgid "Month is not"
|
| 6734 |
msgstr ""
|
| 6735 |
|
| 6736 |
+
#: admin/locale.php:216
|
| 6737 |
msgid "Select option"
|
| 6738 |
msgstr ""
|
| 6739 |
|
| 6740 |
+
#: admin/locale.php:217 admin/views/common/dashboard/widget.php:63
|
| 6741 |
#: admin/views/settings/dashboard/content.php:35 library/class-export.php:1022
|
| 6742 |
#: library/modules/custom-forms/admin/admin-page-entries.php:462
|
| 6743 |
#: library/modules/custom-forms/admin/admin-page-entries.php:485
|
| 6744 |
msgid "Status"
|
| 6745 |
msgstr ""
|
| 6746 |
|
| 6747 |
+
#: admin/locale.php:219 library/fields/date.php:855
|
| 6748 |
msgid "Select month"
|
| 6749 |
msgstr ""
|
| 6750 |
|
| 6751 |
+
#: admin/locale.php:220 library/fields/date.php:880
|
| 6752 |
msgid "Select day"
|
| 6753 |
msgstr ""
|
| 6754 |
|
| 6755 |
+
#: admin/locale.php:221
|
| 6756 |
msgid "Done"
|
| 6757 |
msgstr ""
|
| 6758 |
|
| 6759 |
+
#: admin/locale.php:222
|
| 6760 |
msgid "Process behavior if "
|
| 6761 |
msgstr ""
|
| 6762 |
|
| 6763 |
+
#: admin/locale.php:223 admin/views/addons/content.php:18
|
| 6764 |
#: admin/views/common/entries/filter.php:155
|
| 6765 |
#: admin/views/common/entries/filter.php:170
|
| 6766 |
#: admin/views/common/entries/filter.php:198
|
| 6768 |
msgid "All"
|
| 6769 |
msgstr ""
|
| 6770 |
|
| 6771 |
+
#: admin/locale.php:224
|
| 6772 |
msgid "Any"
|
| 6773 |
msgstr ""
|
| 6774 |
|
| 6775 |
+
#: admin/locale.php:225
|
| 6776 |
msgid "of the conditions below match."
|
| 6777 |
msgstr ""
|
| 6778 |
|
| 6779 |
+
#: admin/locale.php:226 admin/views/integrations/addon.php:67
|
| 6780 |
msgid "Conditions"
|
| 6781 |
msgstr ""
|
| 6782 |
|
| 6783 |
+
#: admin/locale.php:227
|
| 6784 |
msgid "Add Conditions"
|
| 6785 |
msgstr ""
|
| 6786 |
|
| 6787 |
+
#: admin/locale.php:228
|
| 6788 |
msgid "Add conditions for when this behavior will be processed."
|
| 6789 |
msgstr ""
|
| 6790 |
|
| 6791 |
+
#: admin/locale.php:229
|
| 6792 |
msgid "Add Condition"
|
| 6793 |
msgstr ""
|
| 6794 |
|
| 6795 |
+
#: admin/locale.php:230
|
| 6796 |
msgid "Lifespan"
|
| 6797 |
msgstr ""
|
| 6798 |
|
| 6799 |
+
#: admin/locale.php:231
|
| 6800 |
msgid ""
|
| 6801 |
"By default this form will always be available for submissions. However you "
|
| 6802 |
"can lock down if need be."
|
| 6803 |
msgstr ""
|
| 6804 |
|
| 6805 |
+
#: admin/locale.php:232
|
| 6806 |
msgid "Expiry"
|
| 6807 |
msgstr ""
|
| 6808 |
|
| 6809 |
+
#: admin/locale.php:235
|
| 6810 |
msgid "Expiration Message"
|
| 6811 |
msgstr ""
|
| 6812 |
|
| 6813 |
+
#: admin/locale.php:236
|
| 6814 |
msgid "Whoops! This form has expired."
|
| 6815 |
msgstr ""
|
| 6816 |
|
| 6817 |
+
#: admin/locale.php:237
|
| 6818 |
msgid ""
|
| 6819 |
"Add some custom message for users to see when your form stops appearing or "
|
| 6820 |
"leave empty to show nothing (just an empty space)."
|
| 6821 |
msgstr ""
|
| 6822 |
|
| 6823 |
+
#: admin/locale.php:239 admin/views/common/reports/report-content.php:49
|
| 6824 |
#: admin/views/settings/content.php:38 admin/views/settings/content.php:57
|
| 6825 |
#: admin/views/settings/tab-payments.php:10
|
| 6826 |
msgid "Payments"
|
| 6827 |
msgstr ""
|
| 6828 |
|
| 6829 |
+
#: admin/locale.php:240
|
| 6830 |
msgid "Choose how you want the form to behave when you are collecting payments."
|
| 6831 |
msgstr ""
|
| 6832 |
|
| 6833 |
+
#: admin/locale.php:241
|
| 6834 |
msgid "Require SSL certificate to submit this form"
|
| 6835 |
msgstr ""
|
| 6836 |
|
| 6837 |
+
#: admin/locale.php:242
|
| 6838 |
msgid ""
|
| 6839 |
"Enabling this will allow the form submission on an HTTPS page only. It is "
|
| 6840 |
"highly recommended to embed the form with payments action on an HTTPS page "
|
| 6841 |
"to avoid any man in the middle attack."
|
| 6842 |
msgstr ""
|
| 6843 |
|
| 6844 |
+
#: admin/locale.php:243
|
| 6845 |
msgid "Rendering"
|
| 6846 |
msgstr ""
|
| 6847 |
|
| 6848 |
+
#: admin/locale.php:244
|
| 6849 |
msgid "Choose how you want your form to be rendered for users."
|
| 6850 |
msgstr ""
|
| 6851 |
|
| 6852 |
+
#: admin/locale.php:245
|
| 6853 |
msgid "Load form using AJAX"
|
| 6854 |
msgstr ""
|
| 6855 |
|
| 6856 |
+
#: admin/locale.php:246
|
| 6857 |
msgid ""
|
| 6858 |
"Enabling this feature will load the form via AJAX after the page has loaded "
|
| 6859 |
"up, effectively speeding up your page load time. This method can also (in "
|
| 6860 |
"most cases) avoid page caching issues with your form."
|
| 6861 |
msgstr ""
|
| 6862 |
|
| 6863 |
+
#: admin/locale.php:247
|
| 6864 |
msgid "Prevent page caching on form pages"
|
| 6865 |
msgstr ""
|
| 6866 |
|
| 6867 |
+
#: admin/locale.php:248
|
| 6868 |
msgid ""
|
| 6869 |
"Page caching plugins serve a static HTML version of the page which can "
|
| 6870 |
"cause issues to your dynamic forms. By enabling this, we'll use "
|
| 6872 |
"form on it from being cached."
|
| 6873 |
msgstr ""
|
| 6874 |
|
| 6875 |
+
#: admin/locale.php:249
|
| 6876 |
msgid "Save and Continue"
|
| 6877 |
msgstr ""
|
| 6878 |
|
| 6879 |
+
#: admin/locale.php:250
|
| 6880 |
msgid "Your {form_name} form on {site_title} has been saved as draft"
|
| 6881 |
msgstr ""
|
| 6882 |
|
| 6883 |
+
#: admin/locale.php:252
|
| 6884 |
msgid ""
|
| 6885 |
"<p>Hi there!</p><p>You've successfully saved <b>{form_name}</b> form on <a "
|
| 6886 |
"href='{site_url}' target='_blank' rel='noopener noreferrer' "
|
| 6892 |
"link will be able to view your partially completed form data.</p>"
|
| 6893 |
msgstr ""
|
| 6894 |
|
| 6895 |
+
#: admin/locale.php:254
|
| 6896 |
msgid ""
|
| 6897 |
"<p>Your form has been saved as draft and a resume link has been generated "
|
| 6898 |
"so you can return to the form anytime within {retention_period} days from "
|
| 6902 |
"fill them out before submitting the form.</p>"
|
| 6903 |
msgstr ""
|
| 6904 |
|
| 6905 |
+
#: admin/locale.php:255
|
| 6906 |
msgid ""
|
| 6907 |
"Enable this option if you want to allow users save their progress and "
|
| 6908 |
"return to complete the form at a later time."
|
| 6909 |
msgstr ""
|
| 6910 |
|
| 6911 |
+
#: admin/locale.php:256
|
| 6912 |
msgid "Enable save and continue"
|
| 6913 |
msgstr ""
|
| 6914 |
|
| 6915 |
+
#: admin/locale.php:257 admin/views/settings/tab-recaptcha.php:40
|
| 6916 |
msgid "Configuration"
|
| 6917 |
msgstr ""
|
| 6918 |
|
| 6919 |
+
#: admin/locale.php:258
|
| 6920 |
msgid "Draft retention period"
|
| 6921 |
msgstr ""
|
| 6922 |
|
| 6923 |
+
#: admin/locale.php:259
|
| 6924 |
msgid ""
|
| 6925 |
"Enter the number of days a form's draft will be stored on your server "
|
| 6926 |
"before they are automatically deleted."
|
| 6927 |
msgstr ""
|
| 6928 |
|
| 6929 |
+
#: admin/locale.php:260
|
| 6930 |
msgid "Save form link text"
|
| 6931 |
msgstr ""
|
| 6932 |
|
| 6933 |
+
#: admin/locale.php:261
|
| 6934 |
msgid "Save as Draft"
|
| 6935 |
msgstr ""
|
| 6936 |
|
| 6937 |
+
#: admin/locale.php:262
|
| 6938 |
msgid "Edit text for the save draft link."
|
| 6939 |
msgstr ""
|
| 6940 |
|
| 6941 |
+
#: admin/locale.php:263
|
| 6942 |
msgid "Resume message"
|
| 6943 |
msgstr ""
|
| 6944 |
|
| 6945 |
+
#: admin/locale.php:264
|
| 6946 |
msgid "This message will be shown when a form is successfully saved as draft."
|
| 6947 |
msgstr ""
|
| 6948 |
|
| 6949 |
+
#: admin/locale.php:265
|
| 6950 |
msgid ""
|
| 6951 |
"These fields will not be saved in the submission draft: Paypal, Stripe, "
|
| 6952 |
"Signature, Password, Captcha, and Upload."
|
| 6953 |
msgstr ""
|
| 6954 |
|
| 6955 |
+
#: admin/locale.php:266
|
| 6956 |
msgid "Allow send draft link to email"
|
| 6957 |
msgstr ""
|
| 6958 |
|
| 6959 |
+
#: admin/locale.php:267
|
| 6960 |
msgid "Enable to allow users send the draft form's link to their email."
|
| 6961 |
msgstr ""
|
| 6962 |
|
| 6963 |
+
#: admin/locale.php:268
|
| 6964 |
msgid ""
|
| 6965 |
"Configure the send link email form below. You can edit the email contents "
|
| 6966 |
"in the {{link}}Email Notifications{{/link}} tab."
|
| 6967 |
msgstr ""
|
| 6968 |
|
| 6969 |
+
#: admin/locale.php:269
|
| 6970 |
msgid "Email input label"
|
| 6971 |
msgstr ""
|
| 6972 |
|
| 6973 |
+
#: admin/locale.php:270
|
| 6974 |
#: library/modules/custom-forms/front/front-action.php:1050
|
| 6975 |
msgid "Send draft link to"
|
| 6976 |
msgstr ""
|
| 6977 |
|
| 6978 |
+
#: admin/locale.php:271
|
| 6979 |
msgid "Placeholder (Optional)"
|
| 6980 |
msgstr ""
|
| 6981 |
|
| 6982 |
+
#: admin/locale.php:272
|
| 6983 |
#: library/modules/custom-forms/front/front-action.php:1051
|
| 6984 |
msgid "E.g., johndoe@gmail.com"
|
| 6985 |
msgstr ""
|
| 6986 |
|
| 6987 |
+
#: admin/locale.php:273
|
| 6988 |
msgid "Send link button label"
|
| 6989 |
msgstr ""
|
| 6990 |
|
| 6991 |
+
#: admin/locale.php:274
|
| 6992 |
#: library/modules/custom-forms/front/front-action.php:1052
|
| 6993 |
msgid "Send draft link"
|
| 6994 |
msgstr ""
|
| 6995 |
|
| 6996 |
+
#: admin/locale.php:275
|
| 6997 |
msgid "Permission"
|
| 6998 |
msgstr ""
|
| 6999 |
|
| 7000 |
+
#: admin/locale.php:276
|
| 7001 |
msgid "Select which users can save their forms as draft."
|
| 7002 |
msgstr ""
|
| 7003 |
|
| 7004 |
+
#: admin/locale.php:277
|
| 7005 |
msgid "Public"
|
| 7006 |
msgstr ""
|
| 7007 |
|
| 7008 |
+
#: admin/locale.php:278
|
| 7009 |
msgid "Every user can save their forms as draft."
|
| 7010 |
msgstr ""
|
| 7011 |
|
| 7012 |
+
#: admin/locale.php:279
|
| 7013 |
msgid "Registered Users"
|
| 7014 |
msgstr ""
|
| 7015 |
|
| 7016 |
+
#: admin/locale.php:280
|
| 7017 |
msgid "Only registered users can save their forms as draft."
|
| 7018 |
msgstr ""
|
| 7019 |
|
| 7020 |
+
#: admin/locale.php:281
|
| 7021 |
msgid "Submission Behavior"
|
| 7022 |
msgstr ""
|
| 7023 |
|
| 7024 |
+
#: admin/locale.php:282
|
| 7025 |
msgid "Configure what should happen when a user submits this form."
|
| 7026 |
msgstr ""
|
| 7027 |
|
| 7028 |
+
#: admin/locale.php:283
|
| 7029 |
msgid "After submission"
|
| 7030 |
msgstr ""
|
| 7031 |
|
| 7032 |
+
#: admin/locale.php:284
|
| 7033 |
msgid ""
|
| 7034 |
"Choose what happens after successful submission of this form. Multiple "
|
| 7035 |
"submission behaviors can be added and conditionally processed based on "
|
| 7036 |
"submitted form data."
|
| 7037 |
msgstr ""
|
| 7038 |
|
| 7039 |
+
#: admin/locale.php:285
|
| 7040 |
msgid ""
|
| 7041 |
"You’ll need to configure conditional logic for each submission behavior to "
|
| 7042 |
"ensure Forminator knows when each behavior should be processed. If no "
|
| 7043 |
"conditions have been set, the first submission behavior will be processed."
|
| 7044 |
msgstr ""
|
| 7045 |
|
| 7046 |
+
#: admin/locale.php:286
|
| 7047 |
msgid "Method"
|
| 7048 |
msgstr ""
|
| 7049 |
|
| 7050 |
+
#: admin/locale.php:287
|
| 7051 |
msgid ""
|
| 7052 |
"Choose whether you want to use AJAX to send this form without reloading the "
|
| 7053 |
"page, or use the more traditional method of reloading the page."
|
| 7054 |
msgstr ""
|
| 7055 |
|
| 7056 |
+
#: admin/locale.php:288
|
| 7057 |
msgid "Ajax"
|
| 7058 |
msgstr ""
|
| 7059 |
|
| 7060 |
+
#: admin/locale.php:289
|
| 7061 |
msgid ""
|
| 7062 |
"Note that you can only use the Ajax submission method while using the "
|
| 7063 |
"Stripe field in your form. The Ajax method will hide your form after the "
|
| 7065 |
"The form will be available again when the page is reloaded."
|
| 7066 |
msgstr ""
|
| 7067 |
|
| 7068 |
+
#: admin/locale.php:290
|
| 7069 |
msgid "Page Reload"
|
| 7070 |
msgstr ""
|
| 7071 |
|
| 7072 |
+
#: admin/locale.php:291
|
| 7073 |
msgid "Validation"
|
| 7074 |
msgstr ""
|
| 7075 |
|
| 7076 |
+
#: admin/locale.php:292
|
| 7077 |
msgid ""
|
| 7078 |
"For fields that you've chosen to validate, choose how you want the "
|
| 7079 |
"validation to behave. On submission will run validation checks when the "
|
| 7082 |
"validation using PHP and returns any error messages after a page reload."
|
| 7083 |
msgstr ""
|
| 7084 |
|
| 7085 |
+
#: admin/locale.php:293
|
| 7086 |
msgid "On Submit"
|
| 7087 |
msgstr ""
|
| 7088 |
|
| 7089 |
+
#: admin/locale.php:294
|
| 7090 |
msgid "Server Side"
|
| 7091 |
msgstr ""
|
| 7092 |
|
| 7093 |
+
#: admin/locale.php:295
|
| 7094 |
msgid "Enable inline validation (as user types)"
|
| 7095 |
msgstr ""
|
| 7096 |
|
| 7097 |
+
#: admin/locale.php:296
|
| 7098 |
msgid ""
|
| 7099 |
"Choose whether you want to show a loader on your form until it is "
|
| 7100 |
"submitted. We highly recommend using this on long forms or forms with "
|
| 7101 |
"payment field since they may take a few seconds to submit."
|
| 7102 |
msgstr ""
|
| 7103 |
|
| 7104 |
+
#: admin/locale.php:297
|
| 7105 |
msgid "Show Loader"
|
| 7106 |
msgstr ""
|
| 7107 |
|
| 7108 |
+
#: admin/locale.php:298
|
| 7109 |
msgid "E.g. Submitting..."
|
| 7110 |
msgstr ""
|
| 7111 |
|
| 7112 |
+
#: admin/locale.php:299
|
| 7113 |
msgid "Choose the text to show on the right of loading icon"
|
| 7114 |
msgstr ""
|
| 7115 |
|
| 7116 |
+
#: admin/locale.php:301
|
| 7117 |
msgid "Field options"
|
| 7118 |
msgstr ""
|
| 7119 |
|
| 7120 |
+
#: admin/locale.php:302
|
| 7121 |
msgid "Edit Field"
|
| 7122 |
msgstr ""
|
| 7123 |
|
| 7124 |
+
#: admin/locale.php:304
|
| 7125 |
msgid "Insert Fields"
|
| 7126 |
msgstr ""
|
| 7127 |
|
| 7128 |
+
#: admin/locale.php:305
|
| 7129 |
msgid " Insert Fields"
|
| 7130 |
msgstr ""
|
| 7131 |
|
| 7132 |
+
#: admin/locale.php:306
|
| 7133 |
msgid ""
|
| 7134 |
"A form without fields isn’t going to be very useful… Add your first field "
|
| 7135 |
"above!"
|
| 7136 |
msgstr ""
|
| 7137 |
|
| 7138 |
+
#: admin/locale.php:307
|
| 7139 |
msgid ""
|
| 7140 |
"Since you are using Page Break field(s) to divide your form into multiple "
|
| 7141 |
"pages, use the pagination settings to customize the page label, progress "
|
| 7142 |
"indicator, and the buttons on each page."
|
| 7143 |
msgstr ""
|
| 7144 |
|
| 7145 |
+
#: admin/locale.php:308
|
| 7146 |
msgid "Edit field"
|
| 7147 |
msgstr ""
|
| 7148 |
|
| 7149 |
+
#: admin/locale.php:309
|
| 7150 |
#: library/modules/custom-forms/admin/admin-page-entries.php:476
|
| 7151 |
msgid "PayPal Checkout"
|
| 7152 |
msgstr ""
|
| 7153 |
|
| 7154 |
+
#: admin/locale.php:310
|
| 7155 |
msgid "Pay with PayPal"
|
| 7156 |
msgstr ""
|
| 7157 |
|
| 7158 |
+
#: admin/locale.php:311 admin/views/settings/payments/section-paypal.php:22
|
| 7159 |
#: library/fields/paypal.php:57
|
| 7160 |
msgid "PayPal"
|
| 7161 |
msgstr ""
|
| 7162 |
|
| 7163 |
+
#: admin/locale.php:312
|
| 7164 |
msgid ""
|
| 7165 |
"PayPal field replaces the submit button of your form with the PayPal Smart "
|
| 7166 |
"Payment Buttons. The PayPal buttons will automatically submit the form "
|
| 7167 |
"after a successful payment."
|
| 7168 |
msgstr ""
|
| 7169 |
|
| 7170 |
+
#: admin/locale.php:313 library/helpers/helper-core.php:423
|
| 7171 |
#: library/modules/custom-forms/form-templates/template-leads.php:117
|
| 7172 |
#: library/modules/quizzes/admin/admin-loader.php:596
|
| 7173 |
#: library/render/class-render-form.php:690
|
| 7174 |
msgid "Submit"
|
| 7175 |
msgstr ""
|
| 7176 |
|
| 7177 |
+
#: admin/locale.php:314
|
| 7178 |
msgid "Swipe"
|
| 7179 |
msgstr ""
|
| 7180 |
|
| 7181 |
+
#: admin/locale.php:315 library/fields/address.php:55
|
| 7182 |
msgid "Address"
|
| 7183 |
msgstr ""
|
| 7184 |
|
| 7185 |
+
#: admin/locale.php:316
|
| 7186 |
msgid "Apartment, suite, etc."
|
| 7187 |
msgstr ""
|
| 7188 |
|
| 7189 |
+
#: admin/locale.php:317 library/fields/address.php:74
|
| 7190 |
#: library/model/class-form-entry-model.php:438
|
| 7191 |
msgid "City"
|
| 7192 |
msgstr ""
|
| 7193 |
|
| 7194 |
+
#: admin/locale.php:318
|
| 7195 |
msgid "State / Province"
|
| 7196 |
msgstr ""
|
| 7197 |
|
| 7198 |
+
#: admin/locale.php:319
|
| 7199 |
msgid "ZIP / Postal code"
|
| 7200 |
msgstr ""
|
| 7201 |
|
| 7202 |
+
#: admin/locale.php:320 library/fields/address.php:80
|
| 7203 |
#: library/model/class-form-entry-model.php:437
|
| 7204 |
msgid "Country"
|
| 7205 |
msgstr ""
|
| 7206 |
|
| 7207 |
+
#: admin/locale.php:321
|
| 7208 |
msgid ""
|
| 7209 |
"Note: The query parameter's value passed in URL should match with the "
|
| 7210 |
"{{link}}alpha-2 country code{{/link}} of the country you want to "
|
| 7211 |
"pre-populate dynamically."
|
| 7212 |
msgstr ""
|
| 7213 |
|
| 7214 |
+
#: admin/locale.php:322
|
| 7215 |
msgid "Enter label"
|
| 7216 |
msgstr ""
|
| 7217 |
|
| 7218 |
+
#: admin/locale.php:323
|
| 7219 |
msgid "Placeholder (optional)"
|
| 7220 |
msgstr ""
|
| 7221 |
|
| 7222 |
+
#: admin/locale.php:324
|
| 7223 |
msgid "Enter Placeholder"
|
| 7224 |
msgstr ""
|
| 7225 |
|
| 7226 |
+
#: admin/locale.php:325
|
| 7227 |
msgid "Description (optional)"
|
| 7228 |
msgstr ""
|
| 7229 |
|
| 7230 |
+
#: admin/locale.php:326 library/modules/polls/admin/admin-loader.php:185
|
| 7231 |
msgid "Enter description"
|
| 7232 |
msgstr ""
|
| 7233 |
|
| 7234 |
+
#: admin/locale.php:327
|
| 7235 |
msgid "At least one field must be enabled"
|
| 7236 |
msgstr ""
|
| 7237 |
|
| 7238 |
+
#: admin/locale.php:328
|
| 7239 |
msgid "Field Type"
|
| 7240 |
msgstr ""
|
| 7241 |
|
| 7242 |
+
#: admin/locale.php:329
|
| 7243 |
msgid ""
|
| 7244 |
"By default, the calculation field is read-only. You can also hide the field "
|
| 7245 |
"if you don't want to show the calculated result on the form."
|
| 7246 |
msgstr ""
|
| 7247 |
|
| 7248 |
+
#: admin/locale.php:330
|
| 7249 |
msgid "Read-only"
|
| 7250 |
msgstr ""
|
| 7251 |
|
| 7252 |
+
#: admin/locale.php:332
|
| 7253 |
msgid "Formatting"
|
| 7254 |
msgstr ""
|
| 7255 |
|
| 7256 |
+
#: admin/locale.php:333
|
| 7257 |
msgid "Choose how do you want to format the value of this field."
|
| 7258 |
msgstr ""
|
| 7259 |
|
| 7260 |
+
#: admin/locale.php:334
|
| 7261 |
msgid "E.g., $"
|
| 7262 |
msgstr ""
|
| 7263 |
|
| 7264 |
+
#: admin/locale.php:335 library/fields/name.php:68
|
| 7265 |
#: library/model/class-form-entry-model.php:446
|
| 7266 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:47
|
| 7267 |
#: library/modules/custom-forms/form-templates/template-leads.php:76
|
| 7270 |
msgid "Prefix"
|
| 7271 |
msgstr ""
|
| 7272 |
|
| 7273 |
+
#: admin/locale.php:336
|
| 7274 |
msgid "E.g., Kg"
|
| 7275 |
msgstr ""
|
| 7276 |
|
| 7277 |
+
#: admin/locale.php:337
|
| 7278 |
msgid "Suffix"
|
| 7279 |
msgstr ""
|
| 7280 |
|
| 7281 |
+
#: admin/locale.php:338
|
| 7282 |
msgid "Separators"
|
| 7283 |
msgstr ""
|
| 7284 |
|
| 7285 |
+
#: admin/locale.php:339
|
| 7286 |
msgid "1234567.89"
|
| 7287 |
msgstr ""
|
| 7288 |
|
| 7289 |
+
#: admin/locale.php:340
|
| 7290 |
msgid "1,234,567.89"
|
| 7291 |
msgstr ""
|
| 7292 |
|
| 7293 |
+
#: admin/locale.php:341
|
| 7294 |
msgid "1.234.567,89"
|
| 7295 |
msgstr ""
|
| 7296 |
|
| 7297 |
+
#: admin/locale.php:342
|
| 7298 |
msgid "1 234 567,89"
|
| 7299 |
msgstr ""
|
| 7300 |
|
| 7301 |
+
#: admin/locale.php:343
|
| 7302 |
msgid "E.g. $"
|
| 7303 |
msgstr ""
|
| 7304 |
|
| 7305 |
+
#: admin/locale.php:344
|
| 7306 |
msgid "Thousand Separator"
|
| 7307 |
msgstr ""
|
| 7308 |
|
| 7309 |
+
#: admin/locale.php:345
|
| 7310 |
msgid "Decimal Separator"
|
| 7311 |
msgstr ""
|
| 7312 |
|
| 7313 |
+
#: admin/locale.php:346
|
| 7314 |
msgid "Round To"
|
| 7315 |
msgstr ""
|
| 7316 |
|
| 7317 |
+
#: admin/locale.php:347
|
| 7318 |
msgid "0 decimals"
|
| 7319 |
msgstr ""
|
| 7320 |
|
| 7321 |
+
#: admin/locale.php:348
|
| 7322 |
msgid "1 decimals"
|
| 7323 |
msgstr ""
|
| 7324 |
|
| 7325 |
+
#: admin/locale.php:349
|
| 7326 |
msgid "2 decimals"
|
| 7327 |
msgstr ""
|
| 7328 |
|
| 7329 |
+
#: admin/locale.php:350
|
| 7330 |
msgid "3 decimals"
|
| 7331 |
msgstr ""
|
| 7332 |
|
| 7333 |
+
#: admin/locale.php:351
|
| 7334 |
msgid "4 decimals"
|
| 7335 |
msgstr ""
|
| 7336 |
|
| 7337 |
+
#: admin/locale.php:352
|
| 7338 |
msgid ""
|
| 7339 |
"You can't set visibility conditions for a hidden field. Uncheck the Hidden "
|
| 7340 |
"option in the settings tab and come back here to define visibility rules."
|
| 7341 |
msgstr ""
|
| 7342 |
|
| 7343 |
+
#: admin/locale.php:353 library/fields/captcha.php:88
|
| 7344 |
msgid "hCaptcha verification failed. Please try again."
|
| 7345 |
msgstr ""
|
| 7346 |
|
| 7347 |
+
#: admin/locale.php:354
|
| 7348 |
msgid "Captcha Provider"
|
| 7349 |
msgstr ""
|
| 7350 |
|
| 7351 |
+
#: admin/locale.php:355
|
| 7352 |
msgid "Select your preferred CAPTCHA provider below."
|
| 7353 |
msgstr ""
|
| 7354 |
|
| 7355 |
+
#: admin/locale.php:356
|
| 7356 |
msgid "reCAPTCHA"
|
| 7357 |
msgstr ""
|
| 7358 |
|
| 7359 |
+
#: admin/locale.php:357
|
| 7360 |
msgid "hCaptcha"
|
| 7361 |
msgstr ""
|
| 7362 |
|
| 7363 |
+
#: admin/locale.php:358
|
| 7364 |
msgid ""
|
| 7365 |
"You haven't added hCaptcha API keys in your global settings. Add your API "
|
| 7366 |
"keys {{link}}here{{/link}} and then come back to configure this field."
|
| 7367 |
msgstr ""
|
| 7368 |
|
| 7369 |
+
#: admin/locale.php:359
|
| 7370 |
msgid "reCAPTCHA type"
|
| 7371 |
msgstr ""
|
| 7372 |
|
| 7373 |
+
#: admin/locale.php:360
|
| 7374 |
msgid ""
|
| 7375 |
"Choose the reCAPTCHA type you want to use on your form. You can read more "
|
| 7376 |
"about the different reCAPTCHA types {{link}}here{{/link}} and then choose "
|
| 7377 |
"the one which suits you the best."
|
| 7378 |
msgstr ""
|
| 7379 |
|
| 7380 |
+
#: admin/locale.php:361
|
| 7381 |
msgid "V2 Checkbox"
|
| 7382 |
msgstr ""
|
| 7383 |
|
| 7384 |
+
#: admin/locale.php:362
|
| 7385 |
msgid ""
|
| 7386 |
"You haven't added API keys for this reCAPTCHA type in your global settings. "
|
| 7387 |
"Add your API keys {{link}}here{{/link}} and then come back to configure "
|
| 7388 |
"this field."
|
| 7389 |
msgstr ""
|
| 7390 |
|
| 7391 |
+
#: admin/locale.php:363
|
| 7392 |
msgid "Size"
|
| 7393 |
msgstr ""
|
| 7394 |
|
| 7395 |
+
#: admin/locale.php:365
|
| 7396 |
msgid "Theme"
|
| 7397 |
msgstr ""
|
| 7398 |
|
| 7399 |
+
#: admin/locale.php:367
|
| 7400 |
msgid "Dark"
|
| 7401 |
msgstr ""
|
| 7402 |
|
| 7403 |
+
#: admin/locale.php:368
|
| 7404 |
msgid "V2 Invisible"
|
| 7405 |
msgstr ""
|
| 7406 |
|
| 7407 |
+
#: admin/locale.php:369
|
| 7408 |
msgid "reCAPTCHA V3"
|
| 7409 |
msgstr ""
|
| 7410 |
|
| 7411 |
+
#: admin/locale.php:370
|
| 7412 |
msgid ""
|
| 7413 |
"reCAPTCHA V3 returns a score (1 is very likely a good interaction, 0 is "
|
| 7414 |
"very likely a bot) based on user interaction. Choose the score below which "
|
| 7415 |
"the verification should fail."
|
| 7416 |
msgstr ""
|
| 7417 |
|
| 7418 |
+
#: admin/locale.php:371
|
| 7419 |
msgid "Score Threshold"
|
| 7420 |
msgstr ""
|
| 7421 |
|
| 7422 |
+
#: admin/locale.php:372
|
| 7423 |
msgid "0.0"
|
| 7424 |
msgstr ""
|
| 7425 |
|
| 7426 |
+
#: admin/locale.php:373
|
| 7427 |
msgid "0.1"
|
| 7428 |
msgstr ""
|
| 7429 |
|
| 7430 |
+
#: admin/locale.php:374
|
| 7431 |
msgid "0.2"
|
| 7432 |
msgstr ""
|
| 7433 |
|
| 7434 |
+
#: admin/locale.php:375
|
| 7435 |
msgid "0.3"
|
| 7436 |
msgstr ""
|
| 7437 |
|
| 7438 |
+
#: admin/locale.php:376
|
| 7439 |
msgid "0.4"
|
| 7440 |
msgstr ""
|
| 7441 |
|
| 7442 |
+
#: admin/locale.php:377
|
| 7443 |
msgid "0.5"
|
| 7444 |
msgstr ""
|
| 7445 |
|
| 7446 |
+
#: admin/locale.php:378
|
| 7447 |
msgid "0.6"
|
| 7448 |
msgstr ""
|
| 7449 |
|
| 7450 |
+
#: admin/locale.php:379
|
| 7451 |
msgid "0.7"
|
| 7452 |
msgstr ""
|
| 7453 |
|
| 7454 |
+
#: admin/locale.php:380
|
| 7455 |
msgid "0.8"
|
| 7456 |
msgstr ""
|
| 7457 |
|
| 7458 |
+
#: admin/locale.php:381
|
| 7459 |
msgid "0.9"
|
| 7460 |
msgstr ""
|
| 7461 |
|
| 7462 |
+
#: admin/locale.php:382
|
| 7463 |
msgid "1.0"
|
| 7464 |
msgstr ""
|
| 7465 |
|
| 7466 |
+
#: admin/locale.php:383
|
| 7467 |
msgid "hCaptcha type"
|
| 7468 |
msgstr ""
|
| 7469 |
|
| 7470 |
+
#: admin/locale.php:384
|
| 7471 |
msgid ""
|
| 7472 |
"hCaptcha offers two different types of CAPTCHA challenges, a Checkbox and "
|
| 7473 |
"an Invisible type. Choose the hCaptcha type you want to use in your form."
|
| 7474 |
msgstr ""
|
| 7475 |
|
| 7476 |
+
#: admin/locale.php:385 library/fields/multivalue.php:58
|
| 7477 |
#: library/fields/multivalue.php:70
|
| 7478 |
#: library/modules/quizzes/admin/admin-loader.php:655
|
| 7479 |
msgid "Checkbox"
|
| 7480 |
msgstr ""
|
| 7481 |
|
| 7482 |
+
#: admin/locale.php:386
|
| 7483 |
msgid "Invisible"
|
| 7484 |
msgstr ""
|
| 7485 |
|
| 7486 |
+
#: admin/locale.php:387
|
| 7487 |
msgid ""
|
| 7488 |
"To comply with online privacy laws, users should be informed that this form "
|
| 7489 |
"includes an invisible CAPTCHA field."
|
| 7490 |
msgstr ""
|
| 7491 |
|
| 7492 |
+
#: admin/locale.php:388 admin/views/settings/tab-recaptcha.php:352
|
| 7493 |
msgid "Language"
|
| 7494 |
msgstr ""
|
| 7495 |
|
| 7496 |
+
#: admin/locale.php:389
|
| 7497 |
msgid ""
|
| 7498 |
"By default, the global CAPTCHA language setting will be used. However, you "
|
| 7499 |
"can manually select a different language here."
|
| 7500 |
msgstr ""
|
| 7501 |
|
| 7502 |
+
#: admin/locale.php:390 admin/views/settings/tab-recaptcha.php:357
|
| 7503 |
msgid "Automatic"
|
| 7504 |
msgstr ""
|
| 7505 |
|
| 7506 |
+
#: admin/locale.php:391
|
| 7507 |
msgid "Badge Position"
|
| 7508 |
msgstr ""
|
| 7509 |
|
| 7510 |
+
#: admin/locale.php:392
|
| 7511 |
msgid "Select where the reCAPTCHA badge will be displayed on your page."
|
| 7512 |
msgstr ""
|
| 7513 |
|
| 7514 |
+
#: admin/locale.php:393
|
| 7515 |
msgid "Bottom Right"
|
| 7516 |
msgstr ""
|
| 7517 |
|
| 7518 |
+
#: admin/locale.php:394
|
| 7519 |
msgid "Bottom Left"
|
| 7520 |
msgstr ""
|
| 7521 |
|
| 7522 |
+
#: admin/locale.php:395
|
| 7523 |
msgid "Inline in Form"
|
| 7524 |
msgstr ""
|
| 7525 |
|
| 7526 |
+
#: admin/locale.php:396
|
| 7527 |
msgid "Error Message"
|
| 7528 |
msgstr ""
|
| 7529 |
|
| 7530 |
+
#: admin/locale.php:397
|
| 7531 |
msgid ""
|
| 7532 |
"Choose the error message you want to display on your form when reCAPTCHA "
|
| 7533 |
"verification fails."
|
| 7534 |
msgstr ""
|
| 7535 |
|
| 7536 |
+
#: admin/locale.php:398
|
| 7537 |
msgid ""
|
| 7538 |
"Choose the error message you want to display on your form when hCaptcha "
|
| 7539 |
"verification fails."
|
| 7540 |
msgstr ""
|
| 7541 |
|
| 7542 |
+
#: admin/locale.php:399
|
| 7543 |
msgid "E.g. Consent"
|
| 7544 |
msgstr ""
|
| 7545 |
|
| 7546 |
+
#: admin/locale.php:400
|
| 7547 |
msgid "Describe what your users should consent to."
|
| 7548 |
msgstr ""
|
| 7549 |
|
| 7550 |
+
#: admin/locale.php:401
|
| 7551 |
msgid "Default Value (optional)"
|
| 7552 |
msgstr ""
|
| 7553 |
|
| 7554 |
+
#: admin/locale.php:402
|
| 7555 |
msgid "Enter default value"
|
| 7556 |
msgstr ""
|
| 7557 |
|
| 7558 |
+
#: admin/locale.php:403 library/class-export.php:1010
|
| 7559 |
#: library/fields/currency.php:66 library/fields/currency.php:84
|
| 7560 |
#: library/modules/custom-forms/admin/admin-page-entries.php:445
|
| 7561 |
#: library/modules/custom-forms/admin/admin-page-entries.php:494
|
| 7562 |
msgid "Currency"
|
| 7563 |
msgstr ""
|
| 7564 |
|
| 7565 |
+
#: admin/locale.php:404
|
| 7566 |
msgid ""
|
| 7567 |
"Choose the currency to display on the field. If you are going to collect "
|
| 7568 |
"payments based on this field, it is recommended to keep this currency same "
|
| 7569 |
"as your charge currency to avoid any confusions."
|
| 7570 |
msgstr ""
|
| 7571 |
|
| 7572 |
+
#: admin/locale.php:405
|
| 7573 |
msgid "Limit"
|
| 7574 |
msgstr ""
|
| 7575 |
|
| 7576 |
+
#: admin/locale.php:406
|
| 7577 |
msgid ""
|
| 7578 |
"Restrict the value that your users can enter in this field within a custom "
|
| 7579 |
"range."
|
| 7580 |
msgstr ""
|
| 7581 |
|
| 7582 |
+
#: admin/locale.php:407
|
| 7583 |
msgid "Min"
|
| 7584 |
msgstr ""
|
| 7585 |
|
| 7586 |
+
#: admin/locale.php:408
|
| 7587 |
msgid "Max"
|
| 7588 |
msgstr ""
|
| 7589 |
|
| 7590 |
+
#: admin/locale.php:409
|
| 7591 |
msgid "Error Messages"
|
| 7592 |
msgstr ""
|
| 7593 |
|
| 7594 |
+
#: admin/locale.php:410
|
| 7595 |
msgid "When number is smaller than the min limit"
|
| 7596 |
msgstr ""
|
| 7597 |
|
| 7598 |
+
#: admin/locale.php:411
|
| 7599 |
msgid "E.g. Please enter a number greater than 0."
|
| 7600 |
msgstr ""
|
| 7601 |
|
| 7602 |
+
#: admin/locale.php:412
|
| 7603 |
msgid "When number is greater than the max limit"
|
| 7604 |
msgstr ""
|
| 7605 |
|
| 7606 |
+
#: admin/locale.php:413
|
| 7607 |
msgid "E.g. Please enter a number lower than 1000."
|
| 7608 |
msgstr ""
|
| 7609 |
|
| 7610 |
+
#: admin/locale.php:414
|
| 7611 |
msgid ""
|
| 7612 |
"Note: The query parameter's value passed in URL should match with the "
|
| 7613 |
"selected date format."
|
| 7614 |
msgstr ""
|
| 7615 |
|
| 7616 |
+
#: admin/locale.php:416
|
| 7617 |
msgid "Date Format"
|
| 7618 |
msgstr ""
|
| 7619 |
|
| 7620 |
+
#: admin/locale.php:417
|
| 7621 |
msgid "Y-m-d"
|
| 7622 |
msgstr ""
|
| 7623 |
|
| 7624 |
+
#: admin/locale.php:418
|
| 7625 |
msgid "m-d-Y"
|
| 7626 |
msgstr ""
|
| 7627 |
|
| 7628 |
+
#: admin/locale.php:419
|
| 7629 |
msgid "d-m-Y"
|
| 7630 |
msgstr ""
|
| 7631 |
|
| 7632 |
+
#: admin/locale.php:420
|
| 7633 |
msgid "Y/m/d"
|
| 7634 |
msgstr ""
|
| 7635 |
|
| 7636 |
+
#: admin/locale.php:421
|
| 7637 |
msgid "m/d/Y"
|
| 7638 |
msgstr ""
|
| 7639 |
|
| 7640 |
+
#: admin/locale.php:422
|
| 7641 |
msgid "d/m/Y"
|
| 7642 |
msgstr ""
|
| 7643 |
|
| 7644 |
+
#: admin/locale.php:423
|
| 7645 |
msgid "Y.m.d"
|
| 7646 |
msgstr ""
|
| 7647 |
|
| 7648 |
+
#: admin/locale.php:424
|
| 7649 |
msgid "m.d.Y"
|
| 7650 |
msgstr ""
|
| 7651 |
|
| 7652 |
+
#: admin/locale.php:425
|
| 7653 |
msgid "d.m.Y"
|
| 7654 |
msgstr ""
|
| 7655 |
|
| 7656 |
+
#: admin/locale.php:426
|
| 7657 |
msgid "Calendar Icon"
|
| 7658 |
msgstr ""
|
| 7659 |
|
| 7660 |
+
#: admin/locale.php:427
|
| 7661 |
msgid "Dropdowns"
|
| 7662 |
msgstr ""
|
| 7663 |
|
| 7664 |
+
#: admin/locale.php:428 library/fields/date.php:75
|
| 7665 |
#: library/model/class-form-entry-model.php:445
|
| 7666 |
msgid "Month"
|
| 7667 |
msgstr ""
|
| 7668 |
|
| 7669 |
+
#: admin/locale.php:429
|
| 7670 |
msgid "Label (optional)"
|
| 7671 |
msgstr ""
|
| 7672 |
|
| 7673 |
+
#: admin/locale.php:430 library/fields/date.php:73
|
| 7674 |
#: library/model/class-form-entry-model.php:444
|
| 7675 |
msgid "Day"
|
| 7676 |
msgstr ""
|
| 7677 |
|
| 7678 |
+
#: admin/locale.php:431 library/fields/date.php:77
|
| 7679 |
#: library/model/class-form-entry-model.php:443
|
| 7680 |
msgid "Year"
|
| 7681 |
msgstr ""
|
| 7682 |
|
| 7683 |
+
#: admin/locale.php:432
|
| 7684 |
msgid "Text inputs"
|
| 7685 |
msgstr ""
|
| 7686 |
|
| 7687 |
+
#: admin/locale.php:433
|
| 7688 |
msgid "Enter placeholder"
|
| 7689 |
msgstr ""
|
| 7690 |
|
| 7691 |
+
#: admin/locale.php:434
|
| 7692 |
msgid "Default Date"
|
| 7693 |
msgstr ""
|
| 7694 |
|
| 7695 |
+
#: admin/locale.php:435
|
| 7696 |
msgid "Use this feature to specify a default selected date."
|
| 7697 |
msgstr ""
|
| 7698 |
|
| 7699 |
+
#: admin/locale.php:436 admin/pages/entries-page.php:239
|
| 7700 |
#: admin/pages/reports-page.php:170
|
| 7701 |
msgid "Today"
|
| 7702 |
msgstr ""
|
| 7703 |
|
| 7704 |
+
#: admin/locale.php:437
|
| 7705 |
msgid "Future Date"
|
| 7706 |
msgstr ""
|
| 7707 |
|
| 7708 |
+
#: admin/locale.php:438
|
| 7709 |
msgid "Year Range"
|
| 7710 |
msgstr ""
|
| 7711 |
|
| 7712 |
+
#: admin/locale.php:439
|
| 7713 |
msgid ""
|
| 7714 |
"By default, we select 100 years in the past, and 100 years in the future "
|
| 7715 |
"for the year dropdown field. You can set a custom year range to display in "
|
| 7716 |
"the year dropdown below."
|
| 7717 |
msgstr ""
|
| 7718 |
|
| 7719 |
+
#: admin/locale.php:440
|
| 7720 |
msgid "From"
|
| 7721 |
msgstr ""
|
| 7722 |
|
| 7723 |
+
#: admin/locale.php:442
|
| 7724 |
msgid "To"
|
| 7725 |
msgstr ""
|
| 7726 |
|
| 7727 |
+
#: admin/locale.php:444
|
| 7728 |
msgid "Wrong field type!"
|
| 7729 |
msgstr ""
|
| 7730 |
|
| 7731 |
+
#: admin/locale.php:445
|
| 7732 |
msgid ""
|
| 7733 |
"The {{strong}}GDPR Field{{/strong}} has been deprecated and replaced by the "
|
| 7734 |
"new {{strong}}Consent Field{{/strong}}. Your existing fields should "
|
| 7736 |
"{{strong}}Consent Field{{/strong}} in the future."
|
| 7737 |
msgstr ""
|
| 7738 |
|
| 7739 |
+
#: admin/locale.php:446
|
| 7740 |
msgid "Note, the form will not submit until the user has accepted the terms."
|
| 7741 |
msgstr ""
|
| 7742 |
|
| 7743 |
+
#: admin/locale.php:447
|
| 7744 |
msgid "Error message"
|
| 7745 |
msgstr ""
|
| 7746 |
|
| 7747 |
+
#: admin/locale.php:448
|
| 7748 |
msgid "Enter required message"
|
| 7749 |
msgstr ""
|
| 7750 |
|
| 7751 |
+
#: admin/locale.php:449 library/helpers/helper-fields.php:381
|
| 7752 |
msgid "Custom Value"
|
| 7753 |
msgstr ""
|
| 7754 |
|
| 7755 |
+
#: admin/locale.php:450
|
| 7756 |
msgid "Enter custom value"
|
| 7757 |
msgstr ""
|
| 7758 |
|
| 7759 |
+
#: admin/locale.php:451
|
| 7760 |
msgid "Query parameter"
|
| 7761 |
msgstr ""
|
| 7762 |
|
| 7763 |
+
#: admin/locale.php:452
|
| 7764 |
msgid "E.g. query_parameter_key"
|
| 7765 |
msgstr ""
|
| 7766 |
|
| 7767 |
+
#: admin/locale.php:453
|
| 7768 |
msgid "Layout"
|
| 7769 |
msgstr ""
|
| 7770 |
|
| 7771 |
+
#: admin/locale.php:454
|
| 7772 |
msgid ""
|
| 7773 |
"By default, we stack the options vertically. However, you can change the "
|
| 7774 |
"options layout below."
|
| 7775 |
msgstr ""
|
| 7776 |
|
| 7777 |
+
#: admin/locale.php:455
|
| 7778 |
msgid "Vertical"
|
| 7779 |
msgstr ""
|
| 7780 |
|
| 7781 |
+
#: admin/locale.php:456
|
| 7782 |
msgid "Horizontal"
|
| 7783 |
msgstr ""
|
| 7784 |
|
| 7785 |
+
#: admin/locale.php:457
|
| 7786 |
msgid "Choose whether to allow this field to be used in calculations or not."
|
| 7787 |
msgstr ""
|
| 7788 |
|
| 7789 |
+
#: admin/locale.php:459 library/fields/name.php:71
|
| 7790 |
#: library/model/class-form-entry-model.php:448
|
| 7791 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:50
|
| 7792 |
#: library/modules/custom-forms/form-templates/template-leads.php:79
|
| 7795 |
msgid "Middle Name"
|
| 7796 |
msgstr ""
|
| 7797 |
|
| 7798 |
+
#: admin/locale.php:461
|
| 7799 |
msgid "Single"
|
| 7800 |
msgstr ""
|
| 7801 |
|
| 7802 |
+
#: admin/locale.php:462
|
| 7803 |
msgid "Multiple"
|
| 7804 |
msgstr ""
|
| 7805 |
|
| 7806 |
+
#: admin/locale.php:463
|
| 7807 |
msgid "Limits"
|
| 7808 |
msgstr ""
|
| 7809 |
|
| 7810 |
+
#: admin/locale.php:464
|
| 7811 |
msgid ""
|
| 7812 |
"Set the minimum and maximum values the user can choose. Leave the fields "
|
| 7813 |
"blank to allow any number including negatives."
|
| 7814 |
msgstr ""
|
| 7815 |
|
| 7816 |
+
#: admin/locale.php:465
|
| 7817 |
msgid "Minimum"
|
| 7818 |
msgstr ""
|
| 7819 |
|
| 7820 |
+
#: admin/locale.php:466
|
| 7821 |
msgid "Maximum"
|
| 7822 |
msgstr ""
|
| 7823 |
|
| 7824 |
+
#: admin/locale.php:467
|
| 7825 |
msgid "Step label"
|
| 7826 |
msgstr ""
|
| 7827 |
|
| 7828 |
+
#: admin/locale.php:468
|
| 7829 |
msgid "Enter step label"
|
| 7830 |
msgstr ""
|
| 7831 |
|
| 7832 |
+
#: admin/locale.php:469
|
| 7833 |
msgid "Buttons Text"
|
| 7834 |
msgstr ""
|
| 7835 |
|
| 7836 |
+
#: admin/locale.php:470
|
| 7837 |
msgid ""
|
| 7838 |
"Choose whether you want to use default text for the Previous and Next "
|
| 7839 |
"button or use custom text."
|
| 7840 |
msgstr ""
|
| 7841 |
|
| 7842 |
+
#: admin/locale.php:471
|
| 7843 |
msgid "Previous Button"
|
| 7844 |
msgstr ""
|
| 7845 |
|
| 7846 |
+
#: admin/locale.php:472
|
| 7847 |
msgid "Enter text"
|
| 7848 |
msgstr ""
|
| 7849 |
|
| 7850 |
+
#: admin/locale.php:473
|
| 7851 |
msgid "Next Button"
|
| 7852 |
msgstr ""
|
| 7853 |
|
| 7854 |
+
#: admin/locale.php:474 library/fields/password.php:85
|
| 7855 |
#: library/modules/custom-forms/form-templates/template-login.php:87
|
| 7856 |
#: library/modules/custom-forms/form-templates/template-registration.php:78
|
| 7857 |
msgid "Confirm Password"
|
| 7858 |
msgstr ""
|
| 7859 |
|
| 7860 |
+
#: admin/locale.php:475
|
| 7861 |
msgid "Confirm password"
|
| 7862 |
msgstr ""
|
| 7863 |
|
| 7864 |
+
#: admin/locale.php:476 library/fields/password.php:86
|
| 7865 |
#: library/modules/custom-forms/form-templates/template-login.php:88
|
| 7866 |
#: library/modules/custom-forms/form-templates/template-registration.php:79
|
| 7867 |
msgid "Confirm new password"
|
| 7868 |
msgstr ""
|
| 7869 |
|
| 7870 |
+
#: admin/locale.php:477
|
| 7871 |
msgid "Minimum password strength"
|
| 7872 |
msgstr ""
|
| 7873 |
|
| 7874 |
+
#: admin/locale.php:478
|
| 7875 |
msgid ""
|
| 7876 |
"Choose a minimum password strength required to force your users to sign up "
|
| 7877 |
"with a password stronger than the minimum requirement."
|
| 7878 |
msgstr ""
|
| 7879 |
|
| 7880 |
+
#: admin/locale.php:479
|
| 7881 |
msgid "Short"
|
| 7882 |
msgstr ""
|
| 7883 |
|
| 7884 |
+
#: admin/locale.php:480
|
| 7885 |
msgid "Bad"
|
| 7886 |
msgstr ""
|
| 7887 |
|
| 7888 |
+
#: admin/locale.php:481
|
| 7889 |
msgid "Good"
|
| 7890 |
msgstr ""
|
| 7891 |
|
| 7892 |
+
#: admin/locale.php:482
|
| 7893 |
msgid "Strong"
|
| 7894 |
msgstr ""
|
| 7895 |
|
| 7896 |
+
#: admin/locale.php:483
|
| 7897 |
msgid ""
|
| 7898 |
"This is displayed when the user's password is weaker than the minimum "
|
| 7899 |
"requirement."
|
| 7900 |
msgstr ""
|
| 7901 |
|
| 7902 |
+
#: admin/locale.php:484
|
| 7903 |
msgid "Validate"
|
| 7904 |
msgstr ""
|
| 7905 |
|
| 7906 |
+
#: admin/locale.php:485
|
| 7907 |
msgid ""
|
| 7908 |
"Make sure the user has filled out this field correctly and warn them when "
|
| 7909 |
"they haven't."
|
| 7910 |
msgstr ""
|
| 7911 |
|
| 7912 |
+
#: admin/locale.php:486
|
| 7913 |
msgid "Validate Field"
|
| 7914 |
msgstr ""
|
| 7915 |
|
| 7916 |
+
#: admin/locale.php:487
|
| 7917 |
msgid "Validation message"
|
| 7918 |
msgstr ""
|
| 7919 |
|
| 7920 |
+
#: admin/locale.php:488
|
| 7921 |
msgid "Enter validation message"
|
| 7922 |
msgstr ""
|
| 7923 |
|
| 7924 |
+
#: admin/locale.php:489
|
| 7925 |
msgid "In %s"
|
| 7926 |
msgstr ""
|
| 7927 |
|
| 7928 |
+
#: admin/locale.php:490
|
| 7929 |
msgid ""
|
| 7930 |
"You have not connected your PayPal account with Forminator. Connect your "
|
| 7931 |
"PayPal account {{link}}here{{/link}} and then come back to configure this "
|
| 7932 |
"field."
|
| 7933 |
msgstr ""
|
| 7934 |
|
| 7935 |
+
#: admin/locale.php:491
|
| 7936 |
msgid "Mode of payment"
|
| 7937 |
msgstr ""
|
| 7938 |
|
| 7939 |
+
#: admin/locale.php:492
|
| 7940 |
msgid ""
|
| 7941 |
"We recommend using sandbox mode to ensure the payments are working as "
|
| 7942 |
"expected and when you are ready to start collecting live payments, switch "
|
| 7943 |
"to the {{strong}}Live{{/strong}} payments mode."
|
| 7944 |
msgstr ""
|
| 7945 |
|
| 7946 |
+
#: admin/locale.php:493 admin/views/settings/payments/section-paypal.php:91
|
| 7947 |
msgid "Sandbox"
|
| 7948 |
msgstr ""
|
| 7949 |
|
| 7950 |
+
#: admin/locale.php:494 admin/views/settings/payments/section-paypal.php:96
|
| 7951 |
#: admin/views/settings/payments/section-stripe.php:127
|
| 7952 |
msgid "Live"
|
| 7953 |
msgstr ""
|
| 7954 |
|
| 7955 |
+
#: admin/locale.php:495
|
| 7956 |
msgid "Charge currency"
|
| 7957 |
msgstr ""
|
| 7958 |
|
| 7959 |
+
#: admin/locale.php:496
|
| 7960 |
msgid ""
|
| 7961 |
"It's recommended to charge in your customers' currency to drive more sales "
|
| 7962 |
"and avoid foreign exchange fee to your customers."
|
| 7963 |
msgstr ""
|
| 7964 |
|
| 7965 |
+
#: admin/locale.php:497
|
| 7966 |
msgid "Payment amount"
|
| 7967 |
msgstr ""
|
| 7968 |
|
| 7969 |
+
#: admin/locale.php:498
|
| 7970 |
msgid "Fixed"
|
| 7971 |
msgstr ""
|
| 7972 |
|
| 7973 |
+
#: admin/locale.php:499
|
| 7974 |
msgid "Fixed amount"
|
| 7975 |
msgstr ""
|
| 7976 |
|
| 7977 |
+
#: admin/locale.php:500
|
| 7978 |
msgid "E.g. 20.00"
|
| 7979 |
msgstr ""
|
| 7980 |
|
| 7981 |
+
#: admin/locale.php:501
|
| 7982 |
msgid "Enter an amount or choose a form field."
|
| 7983 |
msgstr ""
|
| 7984 |
|
| 7985 |
+
#: admin/locale.php:502
|
| 7986 |
msgid "Variable"
|
| 7987 |
msgstr ""
|
| 7988 |
|
| 7989 |
+
#: admin/locale.php:503
|
| 7990 |
msgid "Variable amount"
|
| 7991 |
msgstr ""
|
| 7992 |
|
| 7993 |
+
#: admin/locale.php:504
|
| 7994 |
msgid "Select field"
|
| 7995 |
msgstr ""
|
| 7996 |
|
| 7997 |
+
#: admin/locale.php:505
|
| 7998 |
msgid ""
|
| 7999 |
"A currency field can be used to take user-defined payments such as "
|
| 8000 |
"donations and calculation field can be used to charge a calculated value "
|
| 8001 |
"based on a formula."
|
| 8002 |
msgstr ""
|
| 8003 |
|
| 8004 |
+
#: admin/locale.php:506
|
| 8005 |
msgid ""
|
| 8006 |
"Choose a label for your PayPal button. Note that PayPal checkout doesn't "
|
| 8007 |
"allow a custom label for the PayPal button. You can only choose from the "
|
| 8008 |
"pre-defined labels."
|
| 8009 |
msgstr ""
|
| 8010 |
|
| 8011 |
+
#: admin/locale.php:507
|
| 8012 |
msgid ""
|
| 8013 |
"PayPal recommends using the Gold button since it is widely known as their "
|
| 8014 |
"brand color. However, if that does not suit your theme, you can choose a "
|
| 8015 |
"different color."
|
| 8016 |
msgstr ""
|
| 8017 |
|
| 8018 |
+
#: admin/locale.php:508
|
| 8019 |
msgid "Gold"
|
| 8020 |
msgstr ""
|
| 8021 |
|
| 8022 |
+
#: admin/locale.php:509
|
| 8023 |
msgid "Blue"
|
| 8024 |
msgstr ""
|
| 8025 |
|
| 8026 |
+
#: admin/locale.php:510
|
| 8027 |
msgid "Silver"
|
| 8028 |
msgstr ""
|
| 8029 |
|
| 8030 |
+
#: admin/locale.php:511
|
| 8031 |
msgid "White"
|
| 8032 |
msgstr ""
|
| 8033 |
|
| 8034 |
+
#: admin/locale.php:512
|
| 8035 |
msgid "Black"
|
| 8036 |
msgstr ""
|
| 8037 |
|
| 8038 |
+
#: admin/locale.php:513
|
| 8039 |
msgid "Width"
|
| 8040 |
msgstr ""
|
| 8041 |
|
| 8042 |
+
#: admin/locale.php:514
|
| 8043 |
msgid "E.g. 250"
|
| 8044 |
msgstr ""
|
| 8045 |
|
| 8046 |
+
#: admin/locale.php:515
|
| 8047 |
msgid "px"
|
| 8048 |
msgstr ""
|
| 8049 |
|
| 8050 |
+
#: admin/locale.php:516
|
| 8051 |
msgid ""
|
| 8052 |
"Choose the width of PayPal Smart Buttons. It can be anywhere between 150px "
|
| 8053 |
"to 750px. Leave this empty if you want the buttons to take the full width "
|
| 8054 |
"of the form up to the 750px limit."
|
| 8055 |
msgstr ""
|
| 8056 |
|
| 8057 |
+
#: admin/locale.php:517
|
| 8058 |
msgid "Height"
|
| 8059 |
msgstr ""
|
| 8060 |
|
| 8061 |
+
#: admin/locale.php:518
|
| 8062 |
msgid ""
|
| 8063 |
"Choose the height of PayPal Smart Buttons. It can be anywhere between 25px "
|
| 8064 |
"to 55px"
|
| 8065 |
msgstr ""
|
| 8066 |
|
| 8067 |
+
#: admin/locale.php:519
|
| 8068 |
msgid "Shape"
|
| 8069 |
msgstr ""
|
| 8070 |
|
| 8071 |
+
#: admin/locale.php:520
|
| 8072 |
msgid "Choose your preferred shape from your PayPal Smart Buttons."
|
| 8073 |
msgstr ""
|
| 8074 |
|
| 8075 |
+
#: admin/locale.php:521
|
| 8076 |
msgid "Rectangular"
|
| 8077 |
msgstr ""
|
| 8078 |
|
| 8079 |
+
#: admin/locale.php:522
|
| 8080 |
msgid "Pill"
|
| 8081 |
msgstr ""
|
| 8082 |
|
| 8083 |
+
#: admin/locale.php:523
|
| 8084 |
msgid ""
|
| 8085 |
"We recommend the vertical layout as it allows additional payment methods "
|
| 8086 |
"such as Credit Cards. You can read about the layout options "
|
| 8087 |
"{{link}}here{{/link}}."
|
| 8088 |
msgstr ""
|
| 8089 |
|
| 8090 |
+
#: admin/locale.php:524
|
| 8091 |
msgid "Tagline"
|
| 8092 |
msgstr ""
|
| 8093 |
|
| 8094 |
+
#: admin/locale.php:525
|
| 8095 |
msgid ""
|
| 8096 |
"Choose whether to show the default PayPal tagline {{strong}}\"The safer, "
|
| 8097 |
"easier way to pay\"{{/strong}} below your PayPal button."
|
| 8098 |
msgstr ""
|
| 8099 |
|
| 8100 |
+
#: admin/locale.php:526
|
| 8101 |
msgid "Disable Funding Sources"
|
| 8102 |
msgstr ""
|
| 8103 |
|
| 8104 |
+
#: admin/locale.php:527
|
| 8105 |
msgid ""
|
| 8106 |
"PayPal automatically adds additional funding sources to the PayPal checkout "
|
| 8107 |
"for visitors from supported countries. However, you can choose to disable "
|
| 8108 |
"funding sources which shouldn't be displayed to visitors."
|
| 8109 |
msgstr ""
|
| 8110 |
|
| 8111 |
+
#: admin/locale.php:528
|
| 8112 |
msgid "Credit or debit cards"
|
| 8113 |
msgstr ""
|
| 8114 |
|
| 8115 |
+
#: admin/locale.php:529
|
| 8116 |
msgid "PayPal Credit"
|
| 8117 |
msgstr ""
|
| 8118 |
|
| 8119 |
+
#: admin/locale.php:530
|
| 8120 |
msgid "Bancontact"
|
| 8121 |
msgstr ""
|
| 8122 |
|
| 8123 |
+
#: admin/locale.php:531
|
| 8124 |
msgid "BLIK"
|
| 8125 |
msgstr ""
|
| 8126 |
|
| 8127 |
+
#: admin/locale.php:532
|
| 8128 |
msgid "eps"
|
| 8129 |
msgstr ""
|
| 8130 |
|
| 8131 |
+
#: admin/locale.php:533
|
| 8132 |
msgid "giropay"
|
| 8133 |
msgstr ""
|
| 8134 |
|
| 8135 |
+
#: admin/locale.php:534
|
| 8136 |
msgid "iDEAL"
|
| 8137 |
msgstr ""
|
| 8138 |
|
| 8139 |
+
#: admin/locale.php:535
|
| 8140 |
msgid "Mercado Pago"
|
| 8141 |
msgstr ""
|
| 8142 |
|
| 8143 |
+
#: admin/locale.php:536
|
| 8144 |
msgid "MyBank"
|
| 8145 |
msgstr ""
|
| 8146 |
|
| 8147 |
+
#: admin/locale.php:537
|
| 8148 |
msgid "Przelewy24"
|
| 8149 |
msgstr ""
|
| 8150 |
|
| 8151 |
+
#: admin/locale.php:538
|
| 8152 |
msgid "SEPA-Lastschrift"
|
| 8153 |
msgstr ""
|
| 8154 |
|
| 8155 |
+
#: admin/locale.php:539
|
| 8156 |
msgid "Sofort"
|
| 8157 |
msgstr ""
|
| 8158 |
|
| 8159 |
+
#: admin/locale.php:540
|
| 8160 |
msgid "Venmo"
|
| 8161 |
msgstr ""
|
| 8162 |
|
| 8163 |
+
#: admin/locale.php:541
|
| 8164 |
msgid "Disable Card Options"
|
| 8165 |
msgstr ""
|
| 8166 |
|
| 8167 |
+
#: admin/locale.php:542
|
| 8168 |
msgid ""
|
| 8169 |
"PayPal automatically decides the card options that appear in the Smart "
|
| 8170 |
"Payment Buttons based visitors geographic location. However you can "
|
| 8172 |
"to your visitors."
|
| 8173 |
msgstr ""
|
| 8174 |
|
| 8175 |
+
#: admin/locale.php:543
|
| 8176 |
msgid "Visa"
|
| 8177 |
msgstr ""
|
| 8178 |
|
| 8179 |
+
#: admin/locale.php:544
|
| 8180 |
msgid "Mastercard"
|
| 8181 |
msgstr ""
|
| 8182 |
|
| 8183 |
+
#: admin/locale.php:545
|
| 8184 |
msgid "American Express"
|
| 8185 |
msgstr ""
|
| 8186 |
|
| 8187 |
+
#: admin/locale.php:546
|
| 8188 |
msgid "Discover"
|
| 8189 |
msgstr ""
|
| 8190 |
|
| 8191 |
+
#: admin/locale.php:547
|
| 8192 |
msgid "JCB"
|
| 8193 |
msgstr ""
|
| 8194 |
|
| 8195 |
+
#: admin/locale.php:548
|
| 8196 |
msgid "Elo"
|
| 8197 |
msgstr ""
|
| 8198 |
|
| 8199 |
+
#: admin/locale.php:549
|
| 8200 |
msgid "Hiper"
|
| 8201 |
msgstr ""
|
| 8202 |
|
| 8203 |
+
#: admin/locale.php:550
|
| 8204 |
msgid "Pre-fill Billing Details"
|
| 8205 |
msgstr ""
|
| 8206 |
|
| 8207 |
+
#: admin/locale.php:551
|
| 8208 |
msgid ""
|
| 8209 |
"Pre-fill the payer's billing info collected on your form on the Debit or "
|
| 8210 |
"Credit Card checkout, so the payer doesn't have to enter those details "
|
| 8211 |
"again."
|
| 8212 |
msgstr ""
|
| 8213 |
|
| 8214 |
+
#: admin/locale.php:553
|
| 8215 |
msgid "Customer name (optional)"
|
| 8216 |
msgstr ""
|
| 8217 |
|
| 8218 |
+
#: admin/locale.php:554
|
| 8219 |
msgid "Select a name field"
|
| 8220 |
msgstr ""
|
| 8221 |
|
| 8222 |
+
#: admin/locale.php:555
|
| 8223 |
msgid "Customer email address (optional)"
|
| 8224 |
msgstr ""
|
| 8225 |
|
| 8226 |
+
#: admin/locale.php:556
|
| 8227 |
msgid "Select an email field"
|
| 8228 |
msgstr ""
|
| 8229 |
|
| 8230 |
+
#: admin/locale.php:557
|
| 8231 |
msgid "Billing address (optional)"
|
| 8232 |
msgstr ""
|
| 8233 |
|
| 8234 |
+
#: admin/locale.php:558
|
| 8235 |
msgid "Select an address field"
|
| 8236 |
msgstr ""
|
| 8237 |
|
| 8238 |
+
#: admin/locale.php:559
|
| 8239 |
+
msgid ""
|
| 8240 |
+
"Ensure the Country option is enabled and required for "
|
| 8241 |
+
"{{strong}}%(fieldName)s{{/strong}} to process Paypal’s transaction "
|
| 8242 |
+
"successfully."
|
| 8243 |
+
msgstr ""
|
| 8244 |
+
|
| 8245 |
+
#: admin/locale.php:561
|
| 8246 |
msgid "Shipping Address"
|
| 8247 |
msgstr ""
|
| 8248 |
|
| 8249 |
+
#: admin/locale.php:562
|
| 8250 |
msgid ""
|
| 8251 |
"If you are selling a product that doesn't need to be shipped, you can "
|
| 8252 |
"choose to disable and hide the shipping address fields from the PayPal "
|
| 8253 |
"payment page."
|
| 8254 |
msgstr ""
|
| 8255 |
|
| 8256 |
+
#: admin/locale.php:563
|
| 8257 |
msgid ""
|
| 8258 |
"By default, PayPal detects the language for the visitors based on their "
|
| 8259 |
"geolocation and browser preferences. It is recommended to pass this "
|
| 8261 |
"language as the rest of your site. {{link}}Supported locale codes.{{/link}}"
|
| 8262 |
msgstr ""
|
| 8263 |
|
| 8264 |
+
#: admin/locale.php:564
|
| 8265 |
msgid "Eg. en_US"
|
| 8266 |
msgstr ""
|
| 8267 |
|
| 8268 |
+
#: admin/locale.php:565
|
| 8269 |
msgid "Debug Mode"
|
| 8270 |
msgstr ""
|
| 8271 |
|
| 8272 |
+
#: admin/locale.php:566
|
| 8273 |
msgid ""
|
| 8274 |
"PayPal debug mode helps troubleshoot any issues. However, it's recommended "
|
| 8275 |
"to disable this in production as it causes a significant increase in the "
|
| 8276 |
"script size and performance decrease."
|
| 8277 |
msgstr ""
|
| 8278 |
|
| 8279 |
+
#: admin/locale.php:567
|
| 8280 |
msgid ""
|
| 8281 |
"Make sure the users fill this field as per the selected validation and warn "
|
| 8282 |
"them when they haven't"
|
| 8283 |
msgstr ""
|
| 8284 |
|
| 8285 |
+
#: admin/locale.php:568
|
| 8286 |
msgid "National"
|
| 8287 |
msgstr ""
|
| 8288 |
|
| 8289 |
+
#: admin/locale.php:569
|
| 8290 |
msgid "Select the country to validate phone number for"
|
| 8291 |
msgstr ""
|
| 8292 |
|
| 8293 |
+
#: admin/locale.php:570 library/fields/phone.php:131
|
| 8294 |
msgid "International"
|
| 8295 |
msgstr ""
|
| 8296 |
|
| 8297 |
+
#: admin/locale.php:571
|
| 8298 |
msgid "Default country"
|
| 8299 |
msgstr ""
|
| 8300 |
|
| 8301 |
+
#: admin/locale.php:572
|
| 8302 |
msgid "Character Limit"
|
| 8303 |
msgstr ""
|
| 8304 |
|
| 8305 |
+
#: admin/locale.php:573
|
| 8306 |
msgid "Limit field to"
|
| 8307 |
msgstr ""
|
| 8308 |
|
| 8309 |
+
#: admin/locale.php:575
|
| 8310 |
msgid "Characters"
|
| 8311 |
msgstr ""
|
| 8312 |
|
| 8313 |
+
#: admin/locale.php:577 library/helpers/helper-fields.php:1104
|
| 8314 |
#: library/model/class-form-entry-model.php:1632
|
| 8315 |
#: library/modules/quizzes/admin/admin-loader.php:634
|
| 8316 |
msgid "Content"
|
| 8317 |
msgstr ""
|
| 8318 |
|
| 8319 |
+
#: admin/locale.php:578 library/helpers/helper-fields.php:1113
|
| 8320 |
#: library/model/class-form-entry-model.php:1662
|
| 8321 |
msgid "Excerpt"
|
| 8322 |
msgstr ""
|
| 8323 |
|
| 8324 |
+
#: admin/locale.php:579
|
| 8325 |
msgid "Featured Image"
|
| 8326 |
msgstr ""
|
| 8327 |
|
| 8328 |
+
#: admin/locale.php:580
|
| 8329 |
msgid "Custom Fields"
|
| 8330 |
msgstr ""
|
| 8331 |
|
| 8332 |
+
#: admin/locale.php:581
|
| 8333 |
msgid ""
|
| 8334 |
"Allow users to submit post data with this field. By default, this will "
|
| 8335 |
"create new posts, but you can assign it to any post type in the "
|
| 8336 |
"{{strong}}Settings{{/strong}} tab."
|
| 8337 |
msgstr ""
|
| 8338 |
|
| 8339 |
+
#: admin/locale.php:582
|
| 8340 |
msgid "Post type"
|
| 8341 |
msgstr ""
|
| 8342 |
|
| 8343 |
+
#: admin/locale.php:583
|
| 8344 |
msgid "Choose the post type associated with this field."
|
| 8345 |
msgstr ""
|
| 8346 |
|
| 8347 |
+
#: admin/locale.php:584
|
| 8348 |
msgid "Assigned post type"
|
| 8349 |
msgstr ""
|
| 8350 |
|
| 8351 |
+
#: admin/locale.php:585
|
| 8352 |
msgid "post"
|
| 8353 |
msgstr ""
|
| 8354 |
|
| 8355 |
+
#: admin/locale.php:586
|
| 8356 |
msgid "Default status"
|
| 8357 |
msgstr ""
|
| 8358 |
|
| 8359 |
+
#: admin/locale.php:587
|
| 8360 |
msgid "When a user submits this form, choose what status this post data is."
|
| 8361 |
msgstr ""
|
| 8362 |
|
| 8363 |
+
#: admin/locale.php:588
|
| 8364 |
msgid "pending"
|
| 8365 |
msgstr ""
|
| 8366 |
|
| 8367 |
+
#: admin/locale.php:590
|
| 8368 |
msgid "Pending Review"
|
| 8369 |
msgstr ""
|
| 8370 |
|
| 8371 |
+
#: admin/locale.php:592
|
| 8372 |
msgid "Default author"
|
| 8373 |
msgstr ""
|
| 8374 |
|
| 8375 |
+
#: admin/locale.php:593
|
| 8376 |
msgid ""
|
| 8377 |
"By default we'll assign posts to users if they're logged in, and fall back "
|
| 8378 |
"to the user specified below if you're allowing visitors to make posts. You "
|
| 8379 |
"can also override this to always assign posts to a specified user."
|
| 8380 |
msgstr ""
|
| 8381 |
|
| 8382 |
+
#: admin/locale.php:594
|
| 8383 |
msgid "Always assign posts to this user"
|
| 8384 |
msgstr ""
|
| 8385 |
|
| 8386 |
+
#: admin/locale.php:595
|
| 8387 |
msgid "Taxonomies limits"
|
| 8388 |
msgstr ""
|
| 8389 |
|
| 8390 |
+
#: admin/locale.php:596
|
| 8391 |
msgid "Choose whether to allow single or multiple categories or tags on this post."
|
| 8392 |
msgstr ""
|
| 8393 |
|
| 8394 |
+
#: admin/locale.php:597 library/modules/polls/admin/admin-loader.php:184
|
| 8395 |
msgid "Enter title"
|
| 8396 |
msgstr ""
|
| 8397 |
|
| 8398 |
+
#: admin/locale.php:598
|
| 8399 |
msgid "Subtitle (optional)"
|
| 8400 |
msgstr ""
|
| 8401 |
|
| 8402 |
+
#: admin/locale.php:599
|
| 8403 |
msgid "Enter subtitle"
|
| 8404 |
msgstr ""
|
| 8405 |
|
| 8406 |
+
#: admin/locale.php:600
|
| 8407 |
msgid "Add a border to this section."
|
| 8408 |
msgstr ""
|
| 8409 |
|
| 8410 |
+
#: admin/locale.php:601
|
| 8411 |
msgid "Signature Filetype"
|
| 8412 |
msgstr ""
|
| 8413 |
|
| 8414 |
+
#: admin/locale.php:602
|
| 8415 |
msgid "Choose the filetype to save your users' signature in."
|
| 8416 |
msgstr ""
|
| 8417 |
|
| 8418 |
+
#: admin/locale.php:603
|
| 8419 |
msgid "PNG"
|
| 8420 |
msgstr ""
|
| 8421 |
|
| 8422 |
+
#: admin/locale.php:604
|
| 8423 |
msgid "JPG"
|
| 8424 |
msgstr ""
|
| 8425 |
|
| 8426 |
+
#: admin/locale.php:605
|
| 8427 |
msgid "Choose the height of your signature field. The default value is 180px."
|
| 8428 |
msgstr ""
|
| 8429 |
|
| 8430 |
+
#: admin/locale.php:606
|
| 8431 |
msgid "Stroke Thickness"
|
| 8432 |
msgstr ""
|
| 8433 |
|
| 8434 |
+
#: admin/locale.php:607
|
| 8435 |
msgid ""
|
| 8436 |
"Choose the thickness in pixels for signature strokes. The default value is "
|
| 8437 |
"2px."
|
| 8438 |
msgstr ""
|
| 8439 |
|
| 8440 |
+
#: admin/locale.php:608
|
| 8441 |
msgid ""
|
| 8442 |
"Note: Pass comma-separated values for this query parameter to pre-populate "
|
| 8443 |
"multiple options."
|
| 8444 |
msgstr ""
|
| 8445 |
|
| 8446 |
+
#: admin/locale.php:609
|
| 8447 |
msgid "Search"
|
| 8448 |
msgstr ""
|
| 8449 |
|
| 8450 |
+
#: admin/locale.php:610
|
| 8451 |
msgid "Display the search box in a dropdown"
|
| 8452 |
msgstr ""
|
| 8453 |
|
| 8454 |
+
#: admin/locale.php:611
|
| 8455 |
msgid "Limit Submission"
|
| 8456 |
msgstr ""
|
| 8457 |
|
| 8458 |
+
#: admin/locale.php:612
|
| 8459 |
msgid ""
|
| 8460 |
"You can limit submissions of each option to a certain number, and once an "
|
| 8461 |
"option reaches the submission limit, we'll hide that option from the "
|
| 8462 |
"dropdown list."
|
| 8463 |
msgstr ""
|
| 8464 |
|
| 8465 |
+
#: admin/locale.php:613
|
| 8466 |
msgid ""
|
| 8467 |
"You can set a limit for your options in the LABELS tab. Options for which "
|
| 8468 |
"limit field is left empty can have unlimited submissions."
|
| 8469 |
msgstr ""
|
| 8470 |
|
| 8471 |
+
#: admin/locale.php:614
|
| 8472 |
msgid ""
|
| 8473 |
"Choose whether to allow this field to be used in calculations or not. The "
|
| 8474 |
"value used in calculations is the same as the input value of this field."
|
| 8475 |
msgstr ""
|
| 8476 |
|
| 8477 |
+
#: admin/locale.php:615 library/fields/stripe.php:99
|
| 8478 |
msgid "Credit / Debit Card"
|
| 8479 |
msgstr ""
|
| 8480 |
|
| 8481 |
+
#: admin/locale.php:616
|
| 8482 |
msgid ""
|
| 8483 |
"Choose your preferred language for the Stripe field. This will affect the "
|
| 8484 |
"placeholders language, and the card validation errors returned by the "
|
| 8485 |
"Stripe."
|
| 8486 |
msgstr ""
|
| 8487 |
|
| 8488 |
+
#: admin/locale.php:617
|
| 8489 |
msgid "Auto"
|
| 8490 |
msgstr ""
|
| 8491 |
|
| 8492 |
+
#: admin/locale.php:618
|
| 8493 |
msgid "English (en)"
|
| 8494 |
msgstr ""
|
| 8495 |
|
| 8496 |
+
#: admin/locale.php:619
|
| 8497 |
msgid "Simplified Chinese (zh)"
|
| 8498 |
msgstr ""
|
| 8499 |
|
| 8500 |
+
#: admin/locale.php:620
|
| 8501 |
msgid "Danish (da)"
|
| 8502 |
msgstr ""
|
| 8503 |
|
| 8504 |
+
#: admin/locale.php:621
|
| 8505 |
msgid "Dutch (nl)"
|
| 8506 |
msgstr ""
|
| 8507 |
|
| 8508 |
+
#: admin/locale.php:622
|
| 8509 |
msgid "Finnish (fi)"
|
| 8510 |
msgstr ""
|
| 8511 |
|
| 8512 |
+
#: admin/locale.php:623
|
| 8513 |
msgid "French (fr)"
|
| 8514 |
msgstr ""
|
| 8515 |
|
| 8516 |
+
#: admin/locale.php:624
|
| 8517 |
msgid "German (de)"
|
| 8518 |
msgstr ""
|
| 8519 |
|
| 8520 |
+
#: admin/locale.php:625
|
| 8521 |
msgid "Italian (it)"
|
| 8522 |
msgstr ""
|
| 8523 |
|
| 8524 |
+
#: admin/locale.php:626
|
| 8525 |
msgid "Japanese (ja)"
|
| 8526 |
msgstr ""
|
| 8527 |
|
| 8528 |
+
#: admin/locale.php:627
|
| 8529 |
msgid "Norwegian (no)"
|
| 8530 |
msgstr ""
|
| 8531 |
|
| 8532 |
+
#: admin/locale.php:628
|
| 8533 |
msgid "Spanish (es)"
|
| 8534 |
msgstr ""
|
| 8535 |
|
| 8536 |
+
#: admin/locale.php:629
|
| 8537 |
msgid "Swedish (sv)"
|
| 8538 |
msgstr ""
|
| 8539 |
|
| 8540 |
+
#: admin/locale.php:630
|
| 8541 |
msgid "Card icon"
|
| 8542 |
msgstr ""
|
| 8543 |
|
| 8544 |
+
#: admin/locale.php:631
|
| 8545 |
msgid "Choose whether you want to show the card icon on the Stripe field."
|
| 8546 |
msgstr ""
|
| 8547 |
|
| 8548 |
+
#: admin/locale.php:632
|
| 8549 |
msgid "Postal code"
|
| 8550 |
msgstr ""
|
| 8551 |
|
| 8552 |
+
#: admin/locale.php:633
|
| 8553 |
msgid "Choose whether you want to collect the postal code on the Stripe field."
|
| 8554 |
msgstr ""
|
| 8555 |
|
| 8556 |
+
#: admin/locale.php:634
|
| 8557 |
msgid "Prefill (optional)"
|
| 8558 |
msgstr ""
|
| 8559 |
|
| 8560 |
+
#: admin/locale.php:635
|
| 8561 |
msgid ""
|
| 8562 |
"If you are already collecting ZIP code on your form, you can pre-fill it on "
|
| 8563 |
"the Stripe field."
|
| 8564 |
msgstr ""
|
| 8565 |
|
| 8566 |
+
#: admin/locale.php:636
|
| 8567 |
msgid ""
|
| 8568 |
"You have not connected your Stripe account with Forminator. Connect your "
|
| 8569 |
"Stripe account {{link}}here{{/link}} and then come back to configure this "
|
| 8570 |
"field."
|
| 8571 |
msgstr ""
|
| 8572 |
|
| 8573 |
+
#: admin/locale.php:637 library/helpers/helper-fields.php:408
|
| 8574 |
msgid "Payment Mode"
|
| 8575 |
msgstr ""
|
| 8576 |
|
| 8577 |
+
#: admin/locale.php:638
|
| 8578 |
msgid ""
|
| 8579 |
"We recommend using Test mode to ensure the payments are working as expected "
|
| 8580 |
"and when you are ready to start collecting live payments, switch to Live "
|
| 8581 |
"payments mode. "
|
| 8582 |
msgstr ""
|
| 8583 |
|
| 8584 |
+
#: admin/locale.php:639 admin/views/settings/payments/section-stripe.php:122
|
| 8585 |
msgid "Test"
|
| 8586 |
msgstr ""
|
| 8587 |
|
| 8588 |
+
#: admin/locale.php:640
|
| 8589 |
msgid "Choose the currency your users will be charged in."
|
| 8590 |
msgstr ""
|
| 8591 |
|
| 8592 |
+
#: admin/locale.php:641
|
| 8593 |
msgid "Payment Plan"
|
| 8594 |
msgstr ""
|
| 8595 |
|
| 8596 |
+
#: admin/locale.php:642
|
| 8597 |
msgid ""
|
| 8598 |
"Payment plans let you set up options for accepting payments on your site. "
|
| 8599 |
"You can add multiple plans and conditionally process them based on your "
|
| 8600 |
"form data."
|
| 8601 |
msgstr ""
|
| 8602 |
|
| 8603 |
+
#: admin/locale.php:643
|
| 8604 |
msgid ""
|
| 8605 |
"Note: You'll need to configure conditions on each plan to let Forminator "
|
| 8606 |
"know when to process each of the payment plans below."
|
| 8607 |
msgstr ""
|
| 8608 |
|
| 8609 |
+
#: admin/locale.php:644
|
| 8610 |
msgid ""
|
| 8611 |
"There is an error in one or more of your payment plans. Please review the "
|
| 8612 |
"error and try again."
|
| 8613 |
msgstr ""
|
| 8614 |
|
| 8615 |
+
#: admin/locale.php:645
|
| 8616 |
msgid "Payment Receipt"
|
| 8617 |
msgstr ""
|
| 8618 |
|
| 8619 |
+
#: admin/locale.php:646
|
| 8620 |
msgid ""
|
| 8621 |
"Choose whether you want Stripe to email a receipt to your customers on "
|
| 8622 |
"successful payment. Note that Stripe sends the email receipt only for live "
|
| 8623 |
"payments. {{link}}Customize email template{{/link}}."
|
| 8624 |
msgstr ""
|
| 8625 |
|
| 8626 |
+
#: admin/locale.php:647
|
| 8627 |
msgid "Email address"
|
| 8628 |
msgstr ""
|
| 8629 |
|
| 8630 |
+
#: admin/locale.php:648 library/fields/email.php:72
|
| 8631 |
#: library/modules/custom-forms/form-templates/template-contact-form.php:66
|
| 8632 |
#: library/modules/custom-forms/form-templates/template-leads.php:60
|
| 8633 |
#: library/modules/custom-forms/form-templates/template-newsletter.php:66
|
| 8636 |
msgid "E.g. john@doe.com"
|
| 8637 |
msgstr ""
|
| 8638 |
|
| 8639 |
+
#: admin/locale.php:649
|
| 8640 |
msgid "Payment Details (optional)"
|
| 8641 |
msgstr ""
|
| 8642 |
|
| 8643 |
+
#: admin/locale.php:650
|
| 8644 |
msgid ""
|
| 8645 |
"You can add a statement decipher and a description to help you and your "
|
| 8646 |
"customers recognise the transactions made on this form."
|
| 8647 |
msgstr ""
|
| 8648 |
|
| 8649 |
+
#: admin/locale.php:651
|
| 8650 |
msgid "Statement decipher"
|
| 8651 |
msgstr ""
|
| 8652 |
|
| 8653 |
+
#: admin/locale.php:652
|
| 8654 |
msgid "E.g. Company Name"
|
| 8655 |
msgstr ""
|
| 8656 |
|
| 8657 |
+
#: admin/locale.php:653
|
| 8658 |
msgid "This is the business name your customers will see on their card statement."
|
| 8659 |
msgstr ""
|
| 8660 |
|
| 8661 |
+
#: admin/locale.php:654
|
| 8662 |
msgid "Up to 22 characters only"
|
| 8663 |
msgstr ""
|
| 8664 |
|
| 8665 |
+
#: admin/locale.php:655
|
| 8666 |
msgid "Enter your payment description here"
|
| 8667 |
msgstr ""
|
| 8668 |
|
| 8669 |
+
#: admin/locale.php:656
|
| 8670 |
msgid ""
|
| 8671 |
"This appears on your Stripe account and on the payment receipt sent to your "
|
| 8672 |
"customers."
|
| 8673 |
msgstr ""
|
| 8674 |
|
| 8675 |
+
#: admin/locale.php:657
|
| 8676 |
msgid "Payment description"
|
| 8677 |
msgstr ""
|
| 8678 |
|
| 8679 |
+
#: admin/locale.php:658
|
| 8680 |
msgid "Card Validation"
|
| 8681 |
msgstr ""
|
| 8682 |
|
| 8683 |
+
#: admin/locale.php:659
|
| 8684 |
msgid ""
|
| 8685 |
"Note: Stripe field automatically validates the card as the user fills the "
|
| 8686 |
"card details regardless of the validation behavior set on the Behaviours "
|
| 8687 |
"tab."
|
| 8688 |
msgstr ""
|
| 8689 |
|
| 8690 |
+
#: admin/locale.php:660
|
| 8691 |
msgid "Billing Details"
|
| 8692 |
msgstr ""
|
| 8693 |
|
| 8694 |
+
#: admin/locale.php:661
|
| 8695 |
msgid ""
|
| 8696 |
"If you are collecting billing details on your forms, you can send that data "
|
| 8697 |
"to Stripe. The billing details will appear on your Stripe dashboard for "
|
| 8698 |
"each payment."
|
| 8699 |
msgstr ""
|
| 8700 |
|
| 8701 |
+
#: admin/locale.php:662
|
| 8702 |
msgid "Meta Data"
|
| 8703 |
msgstr ""
|
| 8704 |
|
| 8705 |
+
#: admin/locale.php:663
|
| 8706 |
msgid ""
|
| 8707 |
"You can send custom meta data to Stripe. This would appear under the "
|
| 8708 |
"MetaData section of every payment. A maximum of 20 meta keys can be sent. "
|
| 8710 |
"truncated to 500 characters as Stripe's requirements."
|
| 8711 |
msgstr ""
|
| 8712 |
|
| 8713 |
+
#: admin/locale.php:664
|
| 8714 |
msgid "MetaData"
|
| 8715 |
msgstr ""
|
| 8716 |
|
| 8717 |
+
#: admin/locale.php:665
|
| 8718 |
msgid "Additional CSS Classes"
|
| 8719 |
msgstr ""
|
| 8720 |
|
| 8721 |
+
#: admin/locale.php:666
|
| 8722 |
msgid ""
|
| 8723 |
"Stripe automatically adds classes to the container DOM element based on the "
|
| 8724 |
"field state. However, you can customize them here. {{link}}Read "
|
| 8725 |
"more{{/link}}"
|
| 8726 |
msgstr ""
|
| 8727 |
|
| 8728 |
+
#: admin/locale.php:667
|
| 8729 |
msgid "Base class"
|
| 8730 |
msgstr ""
|
| 8731 |
|
| 8732 |
+
#: admin/locale.php:668
|
| 8733 |
msgid "Complete"
|
| 8734 |
msgstr ""
|
| 8735 |
|
| 8736 |
+
#: admin/locale.php:669
|
| 8737 |
msgid "Empty"
|
| 8738 |
msgstr ""
|
| 8739 |
|
| 8740 |
+
#: admin/locale.php:670
|
| 8741 |
msgid "Focused"
|
| 8742 |
msgstr ""
|
| 8743 |
|
| 8744 |
+
#: admin/locale.php:672
|
| 8745 |
msgid "Autofilled (Chrome and Safari only)"
|
| 8746 |
msgstr ""
|
| 8747 |
|
| 8748 |
+
#: admin/locale.php:673
|
| 8749 |
msgid ""
|
| 8750 |
"The Stripe Subscription Add-ons is required to use this feature. Install it "
|
| 8751 |
"from the Add-ons page."
|
| 8752 |
msgstr ""
|
| 8753 |
|
| 8754 |
+
#: admin/locale.php:674
|
| 8755 |
msgid ""
|
| 8756 |
"The Stripe Subscription Add-on is required to use this feature. Upgrade to "
|
| 8757 |
"Pro to install the add-on."
|
| 8758 |
msgstr ""
|
| 8759 |
|
| 8760 |
+
#: admin/locale.php:675
|
| 8761 |
msgid "View Add-ons"
|
| 8762 |
msgstr ""
|
| 8763 |
|
| 8764 |
+
#: admin/locale.php:676 admin/views/addons/addons-list.php:294
|
| 8765 |
msgid "Try Pro for 10% Off"
|
| 8766 |
msgstr ""
|
| 8767 |
|
| 8768 |
+
#: admin/locale.php:677 library/fields/stripe.php:1064
|
| 8769 |
msgid "One Time"
|
| 8770 |
msgstr ""
|
| 8771 |
|
| 8772 |
+
#: admin/locale.php:678 library/fields/stripe.php:1067
|
| 8773 |
msgid "Subscription"
|
| 8774 |
msgstr ""
|
| 8775 |
|
| 8776 |
+
#: admin/locale.php:679
|
| 8777 |
msgid "Remove This Plan"
|
| 8778 |
msgstr ""
|
| 8779 |
|
| 8780 |
+
#: admin/locale.php:680
|
| 8781 |
msgid "Open Plan Settings"
|
| 8782 |
msgstr ""
|
| 8783 |
|
| 8784 |
+
#: admin/locale.php:681
|
| 8785 |
msgid "Plan setup"
|
| 8786 |
msgstr ""
|
| 8787 |
|
| 8788 |
+
#: admin/locale.php:682
|
| 8789 |
msgid "Plan"
|
| 8790 |
msgstr ""
|
| 8791 |
|
| 8792 |
+
#: admin/locale.php:683
|
| 8793 |
msgid "Add Another Plan"
|
| 8794 |
msgstr ""
|
| 8795 |
|
| 8796 |
+
#: admin/locale.php:684
|
| 8797 |
msgid "Subscription {{span}}Pro{{/span}}"
|
| 8798 |
msgstr ""
|
| 8799 |
|
| 8800 |
+
#: admin/locale.php:685
|
| 8801 |
msgid "Plan name"
|
| 8802 |
msgstr ""
|
| 8803 |
|
| 8804 |
+
#: admin/locale.php:686
|
| 8805 |
msgid "This will be displayed on the submissions as well as the Stripe dashboard."
|
| 8806 |
msgstr ""
|
| 8807 |
|
| 8808 |
+
#: admin/locale.php:687
|
| 8809 |
msgid "Plan Name is required."
|
| 8810 |
msgstr ""
|
| 8811 |
|
| 8812 |
+
#: admin/locale.php:688 library/class-export.php:1002
|
| 8813 |
#: library/modules/custom-forms/admin/admin-page-entries.php:437
|
| 8814 |
msgid "Payment type"
|
| 8815 |
msgstr ""
|
| 8816 |
|
| 8817 |
+
#: admin/locale.php:689
|
| 8818 |
msgid "Plan amount"
|
| 8819 |
msgstr ""
|
| 8820 |
|
| 8821 |
+
#: admin/locale.php:690
|
| 8822 |
msgid "Enter an amount or select a value from a form field in the Variable tab."
|
| 8823 |
msgstr ""
|
| 8824 |
|
| 8825 |
+
#: admin/locale.php:691
|
| 8826 |
msgid "E.g., 20.00"
|
| 8827 |
msgstr ""
|
| 8828 |
|
| 8829 |
+
#: admin/locale.php:692 library/class-export.php:1006
|
| 8830 |
#: library/modules/custom-forms/admin/admin-page-entries.php:441
|
| 8831 |
#: library/modules/custom-forms/admin/admin-page-entries.php:490
|
| 8832 |
msgid "Amount"
|
| 8833 |
msgstr ""
|
| 8834 |
|
| 8835 |
+
#: admin/locale.php:693
|
| 8836 |
msgid "Choose form field"
|
| 8837 |
msgstr ""
|
| 8838 |
|
| 8839 |
+
#: admin/locale.php:694 library/class-export.php:1014
|
| 8840 |
#: library/modules/custom-forms/admin/admin-page-entries.php:449
|
| 8841 |
msgid "Quantity"
|
| 8842 |
msgstr ""
|
| 8843 |
|
| 8844 |
+
#: admin/locale.php:695
|
| 8845 |
msgid "Enter the quantity or let your users set the quantity in a form field."
|
| 8846 |
msgstr ""
|
| 8847 |
|
| 8848 |
+
#: admin/locale.php:696
|
| 8849 |
msgid "E.g., 1"
|
| 8850 |
msgstr ""
|
| 8851 |
|
| 8852 |
+
#: admin/locale.php:697
|
| 8853 |
msgid "Please enter a quantity or select a form field."
|
| 8854 |
msgstr ""
|
| 8855 |
|
| 8856 |
+
#: admin/locale.php:698
|
| 8857 |
msgid "Bill every"
|
| 8858 |
msgstr ""
|
| 8859 |
|
| 8860 |
+
#: admin/locale.php:699
|
| 8861 |
msgid "Duration cannot be empty."
|
| 8862 |
msgstr ""
|
| 8863 |
|
| 8864 |
+
#: admin/locale.php:700
|
| 8865 |
msgid "Day(s)"
|
| 8866 |
msgstr ""
|
| 8867 |
|
| 8868 |
+
#: admin/locale.php:701
|
| 8869 |
msgid "Week(s)"
|
| 8870 |
msgstr ""
|
| 8871 |
|
| 8872 |
+
#: admin/locale.php:702
|
| 8873 |
msgid "Month(s)"
|
| 8874 |
msgstr ""
|
| 8875 |
|
| 8876 |
+
#: admin/locale.php:703
|
| 8877 |
msgid "Year(s)"
|
| 8878 |
msgstr ""
|
| 8879 |
|
| 8880 |
+
#: admin/locale.php:704
|
| 8881 |
msgid "Allow Trial Period"
|
| 8882 |
msgstr ""
|
| 8883 |
|
| 8884 |
+
#: admin/locale.php:705
|
| 8885 |
msgid "Check this option to offer a limited-time free trial for this plan"
|
| 8886 |
msgstr ""
|
| 8887 |
|
| 8888 |
+
#: admin/locale.php:706
|
| 8889 |
msgid "Trial Duration"
|
| 8890 |
msgstr ""
|
| 8891 |
|
| 8892 |
+
#: admin/locale.php:707
|
| 8893 |
msgid ""
|
| 8894 |
"Enter the number of days that users will try your product for free before "
|
| 8895 |
"they start paying."
|
| 8896 |
msgstr ""
|
| 8897 |
|
| 8898 |
+
#: admin/locale.php:708
|
| 8899 |
msgid "E.g., 14"
|
| 8900 |
msgstr ""
|
| 8901 |
|
| 8902 |
+
#: admin/locale.php:709
|
| 8903 |
msgid "Days"
|
| 8904 |
msgstr ""
|
| 8905 |
|
| 8906 |
+
#: admin/locale.php:710
|
| 8907 |
msgid "Max characters"
|
| 8908 |
msgstr ""
|
| 8909 |
|
| 8910 |
+
#: admin/locale.php:711
|
| 8911 |
msgid ""
|
| 8912 |
"By default the user can enter as many characters as they want. Use this "
|
| 8913 |
"setting to limit the number of characters the user can enter. Leave field "
|
| 8914 |
"blank to allow unlimited characters."
|
| 8915 |
msgstr ""
|
| 8916 |
|
| 8917 |
+
#: admin/locale.php:712
|
| 8918 |
msgid "Character limit"
|
| 8919 |
msgstr ""
|
| 8920 |
|
| 8921 |
+
#: admin/locale.php:713 admin/views/common/entries/filter.php:82
|
| 8922 |
#: admin/views/common/entries/filter.php:95
|
| 8923 |
msgid "E.g. 100"
|
| 8924 |
msgstr ""
|
| 8925 |
|
| 8926 |
+
#: admin/locale.php:714
|
| 8927 |
msgid "Words"
|
| 8928 |
msgstr ""
|
| 8929 |
|
| 8930 |
+
#: admin/locale.php:715
|
| 8931 |
msgid "You can add new line"
|
| 8932 |
msgstr ""
|
| 8933 |
|
| 8934 |
+
#: admin/locale.php:716
|
| 8935 |
msgid "Rich-Text editor"
|
| 8936 |
msgstr ""
|
| 8937 |
|
| 8938 |
+
#: admin/locale.php:717
|
| 8939 |
msgid "Enable TinyMCE editor to allow the formatted text."
|
| 8940 |
msgstr ""
|
| 8941 |
|
| 8942 |
+
#: admin/locale.php:718
|
| 8943 |
msgid "Default height"
|
| 8944 |
msgstr ""
|
| 8945 |
|
| 8946 |
+
#: admin/locale.php:719
|
| 8947 |
msgid "Choose the default minimum height of your textarea field."
|
| 8948 |
msgstr ""
|
| 8949 |
|
| 8950 |
+
#: admin/locale.php:720
|
| 8951 |
msgid ""
|
| 8952 |
"{{strong}}Note:{{/strong}} The query parameter's value passed in URL should "
|
| 8953 |
"match with the selected time format."
|
| 8954 |
msgstr ""
|
| 8955 |
|
| 8956 |
+
#: admin/locale.php:721
|
| 8957 |
msgid "Number inputs"
|
| 8958 |
msgstr ""
|
| 8959 |
|
| 8960 |
+
#: admin/locale.php:722
|
| 8961 |
msgid "12 hour"
|
| 8962 |
msgstr ""
|
| 8963 |
|
| 8964 |
+
#: admin/locale.php:723
|
| 8965 |
msgid "24 hour"
|
| 8966 |
msgstr ""
|
| 8967 |
|
| 8968 |
+
#: admin/locale.php:724 library/fields/time.php:71
|
| 8969 |
msgid "Hours"
|
| 8970 |
msgstr ""
|
| 8971 |
|
| 8972 |
+
#: admin/locale.php:725 library/fields/time.php:73
|
| 8973 |
msgid "Minutes"
|
| 8974 |
msgstr ""
|
| 8975 |
|
| 8976 |
+
#: admin/locale.php:726
|
| 8977 |
msgid "Increments"
|
| 8978 |
msgstr ""
|
| 8979 |
|
| 8980 |
+
#: admin/locale.php:727
|
| 8981 |
msgid ""
|
| 8982 |
"Choose what time increments you want to use for the hour and minute "
|
| 8983 |
"timepickers."
|
| 8984 |
msgstr ""
|
| 8985 |
|
| 8986 |
+
#: admin/locale.php:728 library/model/class-form-entry-model.php:434
|
| 8987 |
msgid "Hour"
|
| 8988 |
msgstr ""
|
| 8989 |
|
| 8990 |
+
#: admin/locale.php:729 library/model/class-form-entry-model.php:435
|
| 8991 |
msgid "Minute"
|
| 8992 |
msgstr ""
|
| 8993 |
|
| 8994 |
+
#: admin/locale.php:730
|
| 8995 |
msgid ""
|
| 8996 |
"Choose a time limit for the time picker field to restrict the time "
|
| 8997 |
"selection between specific hours."
|
| 8998 |
msgstr ""
|
| 8999 |
|
| 9000 |
+
#: admin/locale.php:731
|
| 9001 |
msgid "Specific Hours"
|
| 9002 |
msgstr ""
|
| 9003 |
|
| 9004 |
+
#: admin/locale.php:732
|
| 9005 |
msgid "Start Time"
|
| 9006 |
msgstr ""
|
| 9007 |
|
| 9008 |
+
#: admin/locale.php:733 library/fields/time.php:346
|
| 9009 |
msgid "AM"
|
| 9010 |
msgstr ""
|
| 9011 |
|
| 9012 |
+
#: admin/locale.php:734 library/fields/time.php:351
|
| 9013 |
msgid "PM"
|
| 9014 |
msgstr ""
|
| 9015 |
|
| 9016 |
+
#: admin/locale.php:735
|
| 9017 |
msgid "End Time"
|
| 9018 |
msgstr ""
|
| 9019 |
|
| 9020 |
+
#: admin/locale.php:736
|
| 9021 |
msgid "This error message will be used when time entered is out of the set limits."
|
| 9022 |
msgstr ""
|
| 9023 |
|
| 9024 |
+
#: admin/locale.php:737
|
| 9025 |
msgid "Default Time"
|
| 9026 |
msgstr ""
|
| 9027 |
|
| 9028 |
+
#: admin/locale.php:738
|
| 9029 |
msgid "Use this feature to specify a default selected time."
|
| 9030 |
msgstr ""
|
| 9031 |
|
| 9032 |
+
#: admin/locale.php:739
|
| 9033 |
msgid "Default time can't be outside the allowed time limit."
|
| 9034 |
msgstr ""
|
| 9035 |
|
| 9036 |
+
#: admin/locale.php:740
|
| 9037 |
msgid "Limit number of files"
|
| 9038 |
msgstr ""
|
| 9039 |
|
| 9040 |
+
#: admin/locale.php:741
|
| 9041 |
msgid "Choose the maximum number of files that can be uploaded using this field."
|
| 9042 |
msgstr ""
|
| 9043 |
|
| 9044 |
+
#: admin/locale.php:742
|
| 9045 |
msgid "Unlimited"
|
| 9046 |
msgstr ""
|
| 9047 |
|
| 9048 |
+
#: admin/locale.php:743
|
| 9049 |
msgid "File upload limit"
|
| 9050 |
msgstr ""
|
| 9051 |
|
| 9052 |
+
#: admin/locale.php:744
|
| 9053 |
msgid "Filesize limit per file"
|
| 9054 |
msgstr ""
|
| 9055 |
|
| 9056 |
+
#: admin/locale.php:745
|
| 9057 |
msgid "Filesize limit"
|
| 9058 |
msgstr ""
|
| 9059 |
|
| 9060 |
+
#: admin/locale.php:746
|
| 9061 |
msgid ""
|
| 9062 |
"We've detected your server will allow uploads up to %(maxUpload)sMB in size "
|
| 9063 |
"currently. You can set a lower limit than this using the input below, "
|
| 9065 |
"adjust this in your server's PHP.ini settings."
|
| 9066 |
msgstr ""
|
| 9067 |
|
| 9068 |
+
#: admin/locale.php:747
|
| 9069 |
msgid "Upload limit per file"
|
| 9070 |
msgstr ""
|
| 9071 |
|
| 9072 |
+
#: admin/locale.php:748
|
| 9073 |
msgid "MB"
|
| 9074 |
msgstr ""
|
| 9075 |
|
| 9076 |
+
#: admin/locale.php:749
|
| 9077 |
msgid "KB"
|
| 9078 |
msgstr ""
|
| 9079 |
|
| 9080 |
+
#: admin/locale.php:750
|
| 9081 |
msgid "B"
|
| 9082 |
msgstr ""
|
| 9083 |
|
| 9084 |
+
#: admin/locale.php:751
|
| 9085 |
msgid ""
|
| 9086 |
"The file size you have entered exceeds what your current hosting settings "
|
| 9087 |
"are capped to. You need to increase your max filesize limit at the server "
|
| 9088 |
"level first."
|
| 9089 |
msgstr ""
|
| 9090 |
|
| 9091 |
+
#: admin/locale.php:752
|
| 9092 |
msgid "Upload method"
|
| 9093 |
msgstr ""
|
| 9094 |
|
| 9095 |
+
#: admin/locale.php:753
|
| 9096 |
msgid ""
|
| 9097 |
"Choose whether you want to use AJAX to upload individual files as they are "
|
| 9098 |
"selected or use the traditional method of uploading all files together on "
|
| 9100 |
"timeouts."
|
| 9101 |
msgstr ""
|
| 9102 |
|
| 9103 |
+
#: admin/locale.php:754
|
| 9104 |
msgid "AJAX"
|
| 9105 |
msgstr ""
|
| 9106 |
|
| 9107 |
+
#: admin/locale.php:755
|
| 9108 |
msgid "On form submission"
|
| 9109 |
msgstr ""
|
| 9110 |
|
| 9111 |
+
#: admin/locale.php:756
|
| 9112 |
msgid "Show files in media library"
|
| 9113 |
msgstr ""
|
| 9114 |
|
| 9115 |
+
#: admin/locale.php:757
|
| 9116 |
msgid ""
|
| 9117 |
"Choose whether you want to show the files uploaded by your visitors using "
|
| 9118 |
"this field in your media library."
|
| 9119 |
msgstr ""
|
| 9120 |
|
| 9121 |
+
#: admin/locale.php:758 library/modules/custom-forms/admin/admin-loader.php:34
|
| 9122 |
#: library/modules/custom-forms/admin/admin-page-new.php:22
|
| 9123 |
msgid "Edit Form"
|
| 9124 |
msgstr ""
|
| 9125 |
|
| 9126 |
+
#: admin/locale.php:759 admin/pages/integrations-page.php:88
|
| 9127 |
#: admin/views/addons/header.php:8 admin/views/common/entries/header.php:7
|
| 9128 |
#: admin/views/common/list/header.php:24
|
| 9129 |
#: admin/views/common/reports/header.php:7 admin/views/dashboard/header.php:7
|
| 9131 |
msgid "View Documentation"
|
| 9132 |
msgstr ""
|
| 9133 |
|
| 9134 |
+
#: admin/locale.php:761
|
| 9135 |
msgid "Give your form a name"
|
| 9136 |
msgstr ""
|
| 9137 |
|
| 9138 |
+
#: admin/locale.php:762
|
| 9139 |
msgid "Please, enter a valid name."
|
| 9140 |
msgstr ""
|
| 9141 |
|
| 9142 |
+
#: admin/locale.php:763
|
| 9143 |
msgid "Send data if"
|
| 9144 |
msgstr ""
|
| 9145 |
|
| 9146 |
+
#: admin/locale.php:764
|
| 9147 |
msgid "Fetching integration list…"
|
| 9148 |
msgstr ""
|
| 9149 |
|
| 9150 |
+
#: admin/locale.php:765
|
| 9151 |
msgid "You need to save this form before using integrations."
|
| 9152 |
msgstr ""
|
| 9153 |
|
| 9154 |
+
#: admin/locale.php:766
|
| 9155 |
msgid "Try Again"
|
| 9156 |
msgstr ""
|
| 9157 |
|
| 9158 |
+
#: admin/locale.php:768 admin/views/integrations/content.php:10
|
| 9159 |
#: admin/views/integrations/content.php:20
|
| 9160 |
#: admin/views/integrations/content.php:34
|
| 9161 |
msgid "Applications"
|
| 9162 |
msgstr ""
|
| 9163 |
|
| 9164 |
+
#: admin/locale.php:769
|
| 9165 |
msgid ""
|
| 9166 |
"You can send this form's data to any of the connected third party apps. "
|
| 9167 |
"Connect to more apps on the {{link}}Integrations{{/link}} page."
|
| 9168 |
msgstr ""
|
| 9169 |
|
| 9170 |
+
#: admin/locale.php:770
|
| 9171 |
msgid "Send"
|
| 9172 |
msgstr ""
|
| 9173 |
|
| 9174 |
+
#: admin/locale.php:771
|
| 9175 |
msgid "Don't Send"
|
| 9176 |
msgstr ""
|
| 9177 |
|
| 9178 |
+
#: admin/locale.php:772
|
| 9179 |
msgid "data if"
|
| 9180 |
msgstr ""
|
| 9181 |
|
| 9182 |
+
#: admin/locale.php:773
|
| 9183 |
msgid "of the conditions below are met."
|
| 9184 |
msgstr ""
|
| 9185 |
|
| 9186 |
+
#: admin/locale.php:774
|
| 9187 |
msgid "Use conditional logic to send data to this app based on submitted form data."
|
| 9188 |
msgstr ""
|
| 9189 |
|
| 9190 |
+
#: admin/locale.php:775
|
| 9191 |
msgid "Add conditions under which data should be sent to this app."
|
| 9192 |
msgstr ""
|
| 9193 |
|
| 9194 |
+
#: admin/locale.php:776
|
| 9195 |
msgid "Login User"
|
| 9196 |
msgstr ""
|
| 9197 |
|
| 9198 |
+
#: admin/locale.php:777
|
| 9199 |
msgid "Additional Settings"
|
| 9200 |
msgstr ""
|
| 9201 |
|
| 9202 |
+
#: admin/locale.php:778
|
| 9203 |
msgid "These settings will add some extra control on your login process."
|
| 9204 |
msgstr ""
|
| 9205 |
|
| 9206 |
+
#: admin/locale.php:779
|
| 9207 |
msgid "Hide the form if a user is already logged in"
|
| 9208 |
msgstr ""
|
| 9209 |
|
| 9210 |
+
#: admin/locale.php:780
|
| 9211 |
msgid "Enabling this will hide the form from logged-in users."
|
| 9212 |
msgstr ""
|
| 9213 |
|
| 9214 |
+
#: admin/locale.php:781
|
| 9215 |
msgid "Message (optional)"
|
| 9216 |
msgstr ""
|
| 9217 |
|
| 9218 |
+
#: admin/locale.php:782
|
| 9219 |
msgid "Type a message for logged in users here..."
|
| 9220 |
msgstr ""
|
| 9221 |
|
| 9222 |
+
#: admin/locale.php:783
|
| 9223 |
msgid ""
|
| 9224 |
"You can optionally add a message for logged in users, which appears when "
|
| 9225 |
"the form is hidden."
|
| 9226 |
msgstr ""
|
| 9227 |
|
| 9228 |
+
#: admin/locale.php:784
|
| 9229 |
msgid "Login Fields"
|
| 9230 |
msgstr ""
|
| 9231 |
|
| 9232 |
+
#: admin/locale.php:785
|
| 9233 |
msgid ""
|
| 9234 |
"Map your form fields to the meta keys and have additional control over the "
|
| 9235 |
"login form fields."
|
| 9236 |
msgstr ""
|
| 9237 |
|
| 9238 |
+
#: admin/locale.php:786
|
| 9239 |
msgid "Form Fields Mapping"
|
| 9240 |
msgstr ""
|
| 9241 |
|
| 9242 |
+
#: admin/locale.php:787
|
| 9243 |
msgid "Assign your form fields to the meta keys required to login a user."
|
| 9244 |
msgstr ""
|
| 9245 |
|
| 9246 |
+
#: admin/locale.php:788 library/field-autofill-providers/class-wp-user.php:55
|
| 9247 |
#: library/modules/custom-forms/form-templates/template-registration.php:45
|
| 9248 |
msgid "Username"
|
| 9249 |
msgstr ""
|
| 9250 |
|
| 9251 |
+
#: admin/locale.php:789 library/fields/password.php:72
|
| 9252 |
#: library/fields/password.php:83
|
| 9253 |
#: library/modules/custom-forms/form-templates/template-login.php:84
|
| 9254 |
#: library/modules/custom-forms/form-templates/template-registration.php:75
|
| 9255 |
msgid "Password"
|
| 9256 |
msgstr ""
|
| 9257 |
|
| 9258 |
+
#: admin/locale.php:790
|
| 9259 |
msgid "Remember Me Field"
|
| 9260 |
msgstr ""
|
| 9261 |
|
| 9262 |
+
#: admin/locale.php:791
|
| 9263 |
msgid ""
|
| 9264 |
"Choose whether to show the {{strong}}Remember Me{{/strong}} field in your "
|
| 9265 |
"form. This option will add a Remember Me checkbox before the submit button."
|
| 9266 |
msgstr ""
|
| 9267 |
|
| 9268 |
+
#: admin/locale.php:792
|
| 9269 |
msgid "Remember me"
|
| 9270 |
msgstr ""
|
| 9271 |
|
| 9272 |
+
#: admin/locale.php:793
|
| 9273 |
msgid "Cookie Expiration"
|
| 9274 |
msgstr ""
|
| 9275 |
|
| 9276 |
+
#: admin/locale.php:794 admin/views/settings/data/retention.php:51
|
| 9277 |
#: library/modules/custom-forms/admin/admin-loader.php:163
|
| 9278 |
msgid "day(s)"
|
| 9279 |
msgstr ""
|
| 9280 |
|
| 9281 |
+
#: admin/locale.php:795 admin/views/settings/data/retention.php:53
|
| 9282 |
#: library/modules/custom-forms/admin/admin-loader.php:164
|
| 9283 |
msgid "week(s)"
|
| 9284 |
msgstr ""
|
| 9285 |
|
| 9286 |
+
#: admin/locale.php:796 admin/views/settings/data/retention.php:55
|
| 9287 |
#: library/modules/custom-forms/admin/admin-loader.php:165
|
| 9288 |
msgid "month(s)"
|
| 9289 |
msgstr ""
|
| 9290 |
|
| 9291 |
+
#: admin/locale.php:797 library/modules/custom-forms/admin/admin-loader.php:166
|
| 9292 |
msgid "year(s)"
|
| 9293 |
msgstr ""
|
| 9294 |
|
| 9295 |
+
#: admin/locale.php:798
|
| 9296 |
msgid "Users will have to provide login details again after the selected period."
|
| 9297 |
msgstr ""
|
| 9298 |
|
| 9299 |
+
#: admin/locale.php:799
|
| 9300 |
msgid "Something went wrong while saving your form. Please try again."
|
| 9301 |
msgstr ""
|
| 9302 |
|
| 9303 |
+
#: admin/locale.php:801
|
| 9304 |
msgid "Save Draft"
|
| 9305 |
msgstr ""
|
| 9306 |
|
| 9307 |
+
#: admin/locale.php:804
|
| 9308 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:247
|
| 9309 |
#: library/lib/dash-notice/wpmudev-dash-notification.php:288
|
| 9310 |
msgid "Saving..."
|
| 9311 |
msgstr ""
|
| 9312 |
|
| 9313 |
+
#: admin/locale.php:805
|
| 9314 |
msgid "Unsaved changes"
|
| 9315 |
msgstr ""
|
| 9316 |
|
| 9317 |
+
#: admin/locale.php:806
|
| 9318 |
msgid "Saved"
|
| 9319 |
msgstr ""
|
| 9320 |
|
| 9321 |
+
#: admin/locale.php:807
|
| 9322 |
msgid "Appearance preset successfully applied."
|
| 9323 |
msgstr ""
|
| 9324 |
|
| 9325 |
+
#: admin/locale.php:808
|
| 9326 |
msgid "Something went wrong. Please try again."
|
| 9327 |
msgstr ""
|
| 9328 |
|
| 9329 |
+
#: admin/locale.php:810
|
| 9330 |
msgid ""
|
| 9331 |
"Select an appearance preset from the list below to apply the appearance to "
|
| 9332 |
"your form. You can edit or create new presets in {{link}}Settings > "
|
| 9333 |
"Appearance Preset{{/link}}"
|
| 9334 |
msgstr ""
|
| 9335 |
|
| 9336 |
+
#: admin/locale.php:811
|
| 9337 |
msgid "Applying preset..."
|
| 9338 |
msgstr ""
|
| 9339 |
|
| 9340 |
+
#: admin/locale.php:812
|
| 9341 |
msgid "After Submission"
|
| 9342 |
msgstr ""
|
| 9343 |
|
| 9344 |
+
#: admin/locale.php:813
|
| 9345 |
msgid "Only used to identify this behavior, and not displayed to users."
|
| 9346 |
msgstr ""
|
| 9347 |
|
| 9348 |
+
#: admin/locale.php:814
|
| 9349 |
msgid "E.g., Inline Message"
|
| 9350 |
msgstr ""
|
| 9351 |
|
| 9352 |
+
#: admin/locale.php:815
|
| 9353 |
msgid "Display an inline success message to the user after the form is submitted."
|
| 9354 |
msgstr ""
|
| 9355 |
|
| 9356 |
+
#: admin/locale.php:816
|
| 9357 |
msgid "Auto-close success message after"
|
| 9358 |
msgstr ""
|
| 9359 |
|
| 9360 |
+
#: admin/locale.php:817
|
| 9361 |
msgid "E.g. 5"
|
| 9362 |
msgstr ""
|
| 9363 |
|
| 9364 |
+
#: admin/locale.php:818
|
| 9365 |
msgid "seconds."
|
| 9366 |
msgstr ""
|
| 9367 |
|
| 9368 |
+
#: admin/locale.php:819
|
| 9369 |
msgid "https://www.mywebsite.com"
|
| 9370 |
msgstr ""
|
| 9371 |
|
| 9372 |
+
#: admin/locale.php:820
|
| 9373 |
msgid "Redirect URL"
|
| 9374 |
msgstr ""
|
| 9375 |
|
| 9376 |
+
#: admin/locale.php:821
|
| 9377 |
msgid ""
|
| 9378 |
"Provide the absolute URL of the page you want to redirect users to after "
|
| 9379 |
"submitting the login form. For example, to redirect users to the WordPress "
|
| 9380 |
"admin, use the URL {{strong}}http://www.website.com/wp-admin/{{/strong}}."
|
| 9381 |
msgstr ""
|
| 9382 |
|
| 9383 |
+
#: admin/locale.php:822
|
| 9384 |
msgid "Redirection Option"
|
| 9385 |
msgstr ""
|
| 9386 |
|
| 9387 |
+
#: admin/locale.php:823
|
| 9388 |
msgid "Redirect on the same tab"
|
| 9389 |
msgstr ""
|
| 9390 |
|
| 9391 |
+
#: admin/locale.php:824
|
| 9392 |
msgid "Redirect on new tab and show thank you message on form page"
|
| 9393 |
msgstr ""
|
| 9394 |
|
| 9395 |
+
#: admin/locale.php:825
|
| 9396 |
msgid "Redirect on new tab and hide form on the form page"
|
| 9397 |
msgstr ""
|
| 9398 |
|
| 9399 |
+
#: admin/locale.php:826
|
| 9400 |
msgid "Hide the form after submission, and display a success message to the user."
|
| 9401 |
msgstr ""
|
| 9402 |
|
| 9403 |
+
#: admin/locale.php:827
|
| 9404 |
msgid "Submit Message"
|
| 9405 |
msgstr ""
|
| 9406 |
|
| 9407 |
+
#: admin/locale.php:831
|
| 9408 |
msgid "Delete Notification"
|
| 9409 |
msgstr ""
|
| 9410 |
|
| 9411 |
+
#: admin/locale.php:832
|
| 9412 |
msgid "Are you sure you wish to delete this Notification?"
|
| 9413 |
msgstr ""
|
| 9414 |
|
| 9415 |
+
#: admin/locale.php:833
|
| 9416 |
msgid "Delete Field"
|
| 9417 |
msgstr ""
|
| 9418 |
|
| 9419 |
+
#: admin/locale.php:834
|
| 9420 |
msgid ""
|
| 9421 |
"Deleting this field {%(name)s} will also remove associated values from "
|
| 9422 |
"existing submissions."
|
| 9423 |
msgstr ""
|
| 9424 |
|
| 9425 |
+
#: admin/locale.php:835
|
| 9426 |
msgid ""
|
| 9427 |
"Note that this field is mapped in {{link}}Default Meta Keys{{/link}}. If "
|
| 9428 |
"deleted, you will need to remap meta keys {{link}}here{{/link}}."
|
| 9429 |
msgstr ""
|
| 9430 |
|
| 9431 |
+
#: admin/locale.php:836
|
| 9432 |
msgid ""
|
| 9433 |
"Please remove the references to this field from the following form fields "
|
| 9434 |
"first."
|
| 9435 |
msgstr ""
|
| 9436 |
|
| 9437 |
+
#: admin/locale.php:837
|
| 9438 |
msgid "Form Fields"
|
| 9439 |
msgstr ""
|
| 9440 |
|
| 9441 |
+
#: admin/locale.php:838
|
| 9442 |
msgid "Got It"
|
| 9443 |
msgstr ""
|
| 9444 |
|
| 9445 |
+
#: admin/locale.php:839
|
| 9446 |
msgid "Collect payments like a pro"
|
| 9447 |
msgstr ""
|
| 9448 |
|
| 9449 |
+
#: admin/locale.php:840
|
| 9450 |
msgid ""
|
| 9451 |
"You have added both Stripe and PayPal fields to your form. We recommend "
|
| 9452 |
"that you use the visibility conditions, so only one of them is visible at a "
|
| 9453 |
"time. For example:"
|
| 9454 |
msgstr ""
|
| 9455 |
|
| 9456 |
+
#: admin/locale.php:841
|
| 9457 |
msgid ""
|
| 9458 |
"Add an option to your form using a Radio (or Select) field that allows "
|
| 9459 |
"visitors to choose the payment method."
|
| 9460 |
msgstr ""
|
| 9461 |
|
| 9462 |
+
#: admin/locale.php:842
|
| 9463 |
msgid ""
|
| 9464 |
"Apply visibility conditions to both Stripe and PayPal fields so only one is "
|
| 9465 |
"visible based on the visitor's selection in the Radio (or Select) field."
|
| 9466 |
msgstr ""
|
| 9467 |
|
| 9468 |
+
#: admin/locale.php:843
|
| 9469 |
msgid "Choose which fields you want to insert into your form."
|
| 9470 |
msgstr ""
|
| 9471 |
|
| 9472 |
+
#: admin/locale.php:844
|
| 9473 |
msgid ""
|
| 9474 |
"You can have only one Stripe field in your form for Stripe to work "
|
| 9475 |
"accurately. Please delete the existing Stripe field to add a new one."
|
| 9476 |
msgstr ""
|
| 9477 |
|
| 9478 |
+
#: admin/locale.php:845
|
| 9479 |
msgid ""
|
| 9480 |
"You can have only one PayPal field in your form for PayPal to work "
|
| 9481 |
"accurately. Please delete the existing PayPal field to add a new one."
|
| 9482 |
msgstr ""
|
| 9483 |
|
| 9484 |
+
#: admin/locale.php:846
|
| 9485 |
msgid ""
|
| 9486 |
"You can have only one payment field in your form. Please delete the "
|
| 9487 |
"existing payment field to add another one."
|
| 9488 |
msgstr ""
|
| 9489 |
|
| 9490 |
+
#: admin/locale.php:847
|
| 9491 |
msgid ""
|
| 9492 |
"You can have only one captcha field in your form for captcha to work "
|
| 9493 |
"accurately. Please delete the existing captcha field to add a new one."
|
| 9494 |
msgstr ""
|
| 9495 |
|
| 9496 |
+
#: admin/locale.php:848
|
| 9497 |
msgid "Need access to pro form fields? {{link}}Try Forminator Pro for FREE{{/link}}"
|
| 9498 |
msgstr ""
|
| 9499 |
|
| 9500 |
+
#: admin/locale.php:852
|
| 9501 |
msgid "Recipient(s)"
|
| 9502 |
msgstr ""
|
| 9503 |
|
| 9504 |
+
#: admin/locale.php:853
|
| 9505 |
msgid "Please enter recipients"
|
| 9506 |
msgstr ""
|
| 9507 |
|
| 9508 |
+
#: admin/locale.php:854
|
| 9509 |
msgid "Please select rule"
|
| 9510 |
msgstr ""
|
| 9511 |
|
| 9512 |
+
#: admin/locale.php:855
|
| 9513 |
msgid "Please add email routing"
|
| 9514 |
msgstr ""
|
| 9515 |
|
| 9516 |
+
#: admin/locale.php:856
|
| 9517 |
msgid "Please fix the error(s) in the EMAIL tab."
|
| 9518 |
msgstr ""
|
| 9519 |
|
| 9520 |
+
#: admin/locale.php:857
|
| 9521 |
msgid "Add Email Notification"
|
| 9522 |
msgstr ""
|
| 9523 |
|
| 9524 |
+
#: admin/locale.php:858 library/field-autofill-providers/class-wp-user.php:51
|
| 9525 |
#: library/fields/email.php:60
|
| 9526 |
#: library/lib/free-notices/classes/notices/class-email.php:92
|
| 9527 |
#: library/modules/custom-forms/form-templates/template-registration.php:59
|
| 9528 |
msgid "Email"
|
| 9529 |
msgstr ""
|
| 9530 |
|
| 9531 |
+
#: admin/locale.php:859
|
| 9532 |
msgid "Recipients"
|
| 9533 |
msgstr ""
|
| 9534 |
|
| 9535 |
+
#: admin/locale.php:860
|
| 9536 |
msgid "Advanced"
|
| 9537 |
msgstr ""
|
| 9538 |
|
| 9539 |
+
#: admin/locale.php:861
|
| 9540 |
msgid ""
|
| 9541 |
"The label is to help you identify this email and won't appear anywhere in "
|
| 9542 |
"the email."
|
| 9543 |
msgstr ""
|
| 9544 |
|
| 9545 |
+
#: admin/locale.php:862
|
| 9546 |
msgid "E.g. Sales Team Notification"
|
| 9547 |
msgstr ""
|
| 9548 |
|
| 9549 |
+
#: admin/locale.php:863
|
| 9550 |
msgid "E.g. New Form Submission"
|
| 9551 |
msgstr ""
|
| 9552 |
|
| 9553 |
+
#: admin/locale.php:864
|
| 9554 |
msgid "Subject"
|
| 9555 |
msgstr ""
|
| 9556 |
|
| 9557 |
+
#: admin/locale.php:865
|
| 9558 |
msgid "Email subject can't be empty"
|
| 9559 |
msgstr ""
|
| 9560 |
|
| 9561 |
+
#: admin/locale.php:866
|
| 9562 |
msgid "Body"
|
| 9563 |
msgstr ""
|
| 9564 |
|
| 9565 |
+
#: admin/locale.php:867
|
| 9566 |
msgid "Email body can't be empty"
|
| 9567 |
msgstr ""
|
| 9568 |
|
| 9569 |
+
#: admin/locale.php:868
|
| 9570 |
msgid "Attachments"
|
| 9571 |
msgstr ""
|
| 9572 |
|
| 9573 |
+
#: admin/locale.php:869
|
| 9574 |
msgid ""
|
| 9575 |
"Choose whether you want to attach the files uploaded via the File Upload "
|
| 9576 |
"fields to this email."
|
| 9577 |
msgstr ""
|
| 9578 |
|
| 9579 |
+
#: admin/locale.php:870
|
| 9580 |
msgid "Uploaded files"
|
| 9581 |
msgstr ""
|
| 9582 |
|
| 9583 |
+
#: admin/locale.php:871
|
| 9584 |
msgid ""
|
| 9585 |
"The default behavior is to send the email to the same recipients. If you "
|
| 9586 |
"want to send this email to different recipients conditionally, you can "
|
| 9588 |
"the user input."
|
| 9589 |
msgstr ""
|
| 9590 |
|
| 9591 |
+
#: admin/locale.php:872
|
| 9592 |
msgid "E.g. sales@website.com"
|
| 9593 |
msgstr ""
|
| 9594 |
|
| 9595 |
+
#: admin/locale.php:873
|
| 9596 |
msgid "Separate multiple emails with a comma"
|
| 9597 |
msgstr ""
|
| 9598 |
|
| 9599 |
+
#: admin/locale.php:874
|
| 9600 |
msgid "Email Routing"
|
| 9601 |
msgstr ""
|
| 9602 |
|
| 9603 |
+
#: admin/locale.php:875
|
| 9604 |
msgid "Enter from name here"
|
| 9605 |
msgstr ""
|
| 9606 |
|
| 9607 |
+
#: admin/locale.php:876
|
| 9608 |
msgid "From Name"
|
| 9609 |
msgstr ""
|
| 9610 |
|
| 9611 |
+
#: admin/locale.php:877
|
| 9612 |
msgid "Enter from email here"
|
| 9613 |
msgstr ""
|
| 9614 |
|
| 9615 |
+
#: admin/locale.php:878
|
| 9616 |
msgid "From Email"
|
| 9617 |
msgstr ""
|
| 9618 |
|
| 9619 |
+
#: admin/locale.php:879
|
| 9620 |
msgid ""
|
| 9621 |
"Some hosts do not allow \"from email\" to be overridden or replaced due to "
|
| 9622 |
"spam issues."
|
| 9623 |
msgstr ""
|
| 9624 |
|
| 9625 |
+
#: admin/locale.php:880
|
| 9626 |
msgid "Enter reply-to email here"
|
| 9627 |
msgstr ""
|
| 9628 |
|
| 9629 |
+
#: admin/locale.php:881
|
| 9630 |
msgid "Reply-to Email"
|
| 9631 |
msgstr ""
|
| 9632 |
|
| 9633 |
+
#: admin/locale.php:882
|
| 9634 |
msgid "Enter CC email here"
|
| 9635 |
msgstr ""
|
| 9636 |
|
| 9637 |
+
#: admin/locale.php:883
|
| 9638 |
msgid "CC Emails"
|
| 9639 |
msgstr ""
|
| 9640 |
|
| 9641 |
+
#: admin/locale.php:884
|
| 9642 |
msgid "Enter BCC email here"
|
| 9643 |
msgstr ""
|
| 9644 |
|
| 9645 |
+
#: admin/locale.php:885
|
| 9646 |
msgid "BCC Emails"
|
| 9647 |
msgstr ""
|
| 9648 |
|
| 9649 |
+
#: admin/locale.php:886
|
| 9650 |
msgid "Discard Changes"
|
| 9651 |
msgstr ""
|
| 9652 |
|
| 9653 |
+
#: admin/locale.php:888
|
| 9654 |
msgid ""
|
| 9655 |
"Your form is divided into multiple pages by Page Break field(s), and you "
|
| 9656 |
"can customize the label of each page here. Page names appear on your form "
|
| 9657 |
"header along with the progress indicator."
|
| 9658 |
msgstr ""
|
| 9659 |
|
| 9660 |
+
#: admin/locale.php:889 library/modules/custom-forms/front/front-render.php:879
|
| 9661 |
#: library/modules/custom-forms/front/front-render.php:913
|
| 9662 |
#: library/modules/polls/admin/admin-loader.php:196
|
| 9663 |
#: library/modules/quizzes/admin/admin-loader.php:591
|
| 9664 |
msgid "Finish"
|
| 9665 |
msgstr ""
|
| 9666 |
|
| 9667 |
+
#: admin/locale.php:890
|
| 9668 |
msgid ""
|
| 9669 |
"Choose whether to show a progress indicator on top of your form, so your "
|
| 9670 |
"users know how far they are through your form."
|
| 9671 |
msgstr ""
|
| 9672 |
|
| 9673 |
+
#: admin/locale.php:891
|
| 9674 |
msgid "Close this dialog"
|
| 9675 |
msgstr ""
|
| 9676 |
|
| 9677 |
+
#: admin/locale.php:892
|
| 9678 |
msgid "Forminator image"
|
| 9679 |
msgstr ""
|
| 9680 |
|
| 9681 |
+
#: admin/locale.php:894
|
| 9682 |
msgid "Loading preview…"
|
| 9683 |
msgstr ""
|
| 9684 |
|
| 9685 |
+
#: admin/locale.php:895
|
| 9686 |
msgid "Publishing form…"
|
| 9687 |
msgstr ""
|
| 9688 |
|
| 9689 |
+
#: admin/locale.php:896
|
| 9690 |
msgid ""
|
| 9691 |
"Great work! Please hold tight a few moments while we publish your form to "
|
| 9692 |
"the world."
|
| 9693 |
msgstr ""
|
| 9694 |
|
| 9695 |
+
#: admin/locale.php:897
|
| 9696 |
msgid "Please fill required fields"
|
| 9697 |
msgstr ""
|
| 9698 |
|
| 9699 |
+
#: admin/locale.php:898
|
| 9700 |
msgid "Calculation values are required!"
|
| 9701 |
msgstr ""
|
| 9702 |
|
| 9703 |
+
#: admin/locale.php:899
|
| 9704 |
msgid "Option labels are required!"
|
| 9705 |
msgstr ""
|
| 9706 |
|
| 9707 |
+
#: admin/locale.php:900
|
| 9708 |
msgid "Please add a placeholder or select a default option."
|
| 9709 |
msgstr ""
|
| 9710 |
|
| 9711 |
+
#: admin/locale.php:901
|
| 9712 |
+
msgid "Please select a default option."
|
| 9713 |
+
msgstr ""
|
| 9714 |
+
|
| 9715 |
+
#: admin/locale.php:902
|
| 9716 |
msgid ""
|
| 9717 |
"At least one of Title, Content, or Excerpt must be enabled for post data to "
|
| 9718 |
"be submitted."
|
| 9719 |
msgstr ""
|
| 9720 |
|
| 9721 |
+
#: admin/locale.php:903
|
| 9722 |
msgid "Please, connect your Stripe account first!"
|
| 9723 |
msgstr ""
|
| 9724 |
|
| 9725 |
+
#: admin/locale.php:904
|
| 9726 |
msgid "You need at least one payment!"
|
| 9727 |
msgstr ""
|
| 9728 |
|
| 9729 |
+
#: admin/locale.php:905
|
| 9730 |
msgid "Please select an email address for payment receipt."
|
| 9731 |
msgstr ""
|
| 9732 |
|
| 9733 |
+
#: admin/locale.php:906
|
| 9734 |
msgid "Empty labels are not allowed for meta values!"
|
| 9735 |
msgstr ""
|
| 9736 |
|
| 9737 |
+
#: admin/locale.php:907
|
| 9738 |
msgid "Please connect your PayPal account first!"
|
| 9739 |
msgstr ""
|
| 9740 |
|
| 9741 |
+
#: admin/locale.php:908
|
| 9742 |
msgid "Please enter PayPal payment amount!"
|
| 9743 |
msgstr ""
|
| 9744 |
|
| 9745 |
+
#: admin/locale.php:909
|
| 9746 |
msgid "Please select PayPal payment variable field!"
|
| 9747 |
msgstr ""
|
| 9748 |
|
| 9749 |
+
#: admin/locale.php:910
|
| 9750 |
msgid "Calculation formula is required!"
|
| 9751 |
msgstr ""
|
| 9752 |
|
| 9753 |
+
#: admin/locale.php:911
|
| 9754 |
msgid "Limit Min value should be less than Max value."
|
| 9755 |
msgstr ""
|
| 9756 |
|
| 9757 |
+
#: admin/locale.php:912
|
| 9758 |
msgid "Please enter API keys."
|
| 9759 |
msgstr ""
|
| 9760 |
|
| 9761 |
+
#: admin/locale.php:913
|
| 9762 |
msgid "Please select a valid end time limit."
|
| 9763 |
msgstr ""
|
| 9764 |
|
| 9765 |
+
#: admin/locale.php:914
|
| 9766 |
msgid "Please fix the Default time error."
|
| 9767 |
msgstr ""
|
| 9768 |
|
| 9769 |
+
#: admin/locale.php:915
|
| 9770 |
msgid "Please fix the Start or End time."
|
| 9771 |
msgstr ""
|
| 9772 |
|
| 9773 |
+
#: admin/locale.php:916
|
| 9774 |
msgid "Please fix the limit Start or End date."
|
| 9775 |
msgstr ""
|
| 9776 |
|
| 9777 |
+
#: admin/locale.php:917 library/fields/calculation.php:68
|
| 9778 |
#: library/fields/calculation.php:79
|
| 9779 |
msgid "Calculations"
|
| 9780 |
msgstr ""
|
| 9781 |
|
| 9782 |
+
#: admin/locale.php:918
|
| 9783 |
msgid "Styling"
|
| 9784 |
msgstr ""
|
| 9785 |
|
| 9786 |
+
#: admin/locale.php:919
|
| 9787 |
msgid "Customize"
|
| 9788 |
msgstr ""
|
| 9789 |
|
| 9790 |
+
#: admin/locale.php:920
|
| 9791 |
msgid "Visibility"
|
| 9792 |
msgstr ""
|
| 9793 |
|
| 9794 |
+
#: admin/locale.php:922
|
| 9795 |
msgid "Ready to go!"
|
| 9796 |
msgstr ""
|
| 9797 |
|
| 9798 |
+
#: admin/locale.php:923
|
| 9799 |
msgid ""
|
| 9800 |
"Your form is now ready to be embedded into a page or template of your "
|
| 9801 |
"choice. Simply copy and paste the shortcode below to display it!"
|
| 9802 |
msgstr ""
|
| 9803 |
|
| 9804 |
+
#: admin/locale.php:924
|
| 9805 |
msgid "Shortcode"
|
| 9806 |
msgstr ""
|
| 9807 |
|
| 9808 |
+
#: admin/locale.php:927
|
| 9809 |
msgid "Enter message"
|
| 9810 |
msgstr ""
|
| 9811 |
|
| 9812 |
+
#: admin/locale.php:928
|
| 9813 |
msgid ""
|
| 9814 |
"You can configure email notifications on the parent quiz as it is shared "
|
| 9815 |
"between this form and the parent quiz."
|
| 9816 |
msgstr ""
|
| 9817 |
|
| 9818 |
+
#: admin/locale.php:929
|
| 9819 |
msgid ""
|
| 9820 |
"You can configure integrations on the parent quiz as it is shared between "
|
| 9821 |
"this form and the parent quiz."
|
| 9822 |
msgstr ""
|
| 9823 |
|
| 9824 |
+
#: admin/locale.php:930 admin/views/common/reports/content.php:19
|
| 9825 |
#: admin/views/settings/content.php:47
|
| 9826 |
msgid "Navigate"
|
| 9827 |
msgstr ""
|
| 9828 |
|
| 9829 |
+
#: admin/locale.php:931
|
| 9830 |
msgid ""
|
| 9831 |
"You can send customized email notifications to your site admins and "
|
| 9832 |
"visitors on successful form submission. Advanced features like email "
|
| 9834 |
"notifications."
|
| 9835 |
msgstr ""
|
| 9836 |
|
| 9837 |
+
#: admin/locale.php:932 library/modules/custom-forms/admin/admin-loader.php:251
|
| 9838 |
msgid "Admin Email"
|
| 9839 |
msgstr ""
|
| 9840 |
|
| 9841 |
+
#: admin/locale.php:933
|
| 9842 |
msgid ""
|
| 9843 |
"By default we’ll send an email to the nominated email account. You "
|
| 9844 |
"customise this email or turn it off all together."
|
| 9845 |
msgstr ""
|
| 9846 |
|
| 9847 |
+
#: admin/locale.php:934
|
| 9848 |
msgid "Send an email to admin users"
|
| 9849 |
msgstr ""
|
| 9850 |
|
| 9851 |
+
#: admin/locale.php:935
|
| 9852 |
msgid "From Address"
|
| 9853 |
msgstr ""
|
| 9854 |
|
| 9855 |
+
#: admin/locale.php:936
|
| 9856 |
msgid "Reply To Address"
|
| 9857 |
msgstr ""
|
| 9858 |
|
| 9859 |
+
#: admin/locale.php:937
|
| 9860 |
msgid "CC Addresses"
|
| 9861 |
msgstr ""
|
| 9862 |
|
| 9863 |
+
#: admin/locale.php:938
|
| 9864 |
msgid "BCC Addresses"
|
| 9865 |
msgstr ""
|
| 9866 |
|
| 9867 |
+
#: admin/locale.php:939
|
| 9868 |
msgid "Enter subject"
|
| 9869 |
msgstr ""
|
| 9870 |
|
| 9871 |
+
#: admin/locale.php:940
|
| 9872 |
msgid "this email if"
|
| 9873 |
msgstr ""
|
| 9874 |
|
| 9875 |
+
#: admin/locale.php:941
|
| 9876 |
msgid "of the following rules match:"
|
| 9877 |
msgstr ""
|
| 9878 |
|
| 9879 |
+
#: admin/locale.php:942
|
| 9880 |
msgid ""
|
| 9881 |
"By default, this email is always sent on form submission. You can add "
|
| 9882 |
"conditions to send this email conditionally based on user input."
|
| 9883 |
msgstr ""
|
| 9884 |
|
| 9885 |
+
#: admin/locale.php:943
|
| 9886 |
msgid "Add Rule"
|
| 9887 |
msgstr ""
|
| 9888 |
|
| 9889 |
+
#: admin/locale.php:944
|
| 9890 |
msgid "Confirmation Email"
|
| 9891 |
msgstr ""
|
| 9892 |
|
| 9893 |
+
#: admin/locale.php:945
|
| 9894 |
msgid ""
|
| 9895 |
"In addition to notifying people of new submissions, you can also send a "
|
| 9896 |
"confirmation email to the user who submitted the form."
|
| 9897 |
msgstr ""
|
| 9898 |
|
| 9899 |
+
#: admin/locale.php:946
|
| 9900 |
msgid "Send a confirmation email to the user"
|
| 9901 |
msgstr ""
|
| 9902 |
|
| 9903 |
+
#: admin/locale.php:947
|
| 9904 |
msgid ""
|
| 9905 |
"If you leave it blank, we will automatically find first email field in the "
|
| 9906 |
"form as recipient. If there is no email field and user is logged in we will "
|
| 9907 |
"use their email."
|
| 9908 |
msgstr ""
|
| 9909 |
|
| 9910 |
+
#: admin/locale.php:948
|
| 9911 |
msgid ""
|
| 9912 |
"Send to {{strong}}\"%(label)s\"{{/strong}} if "
|
| 9913 |
"{{strong}}%(field)s{{/strong}} %(rule)s {{strong}}%(value)s{{/strong}}"
|
| 9914 |
msgstr ""
|
| 9915 |
|
| 9916 |
+
#: admin/locale.php:949
|
| 9917 |
msgid "Routing Condition"
|
| 9918 |
msgstr ""
|
| 9919 |
|
| 9920 |
+
#: admin/locale.php:950
|
| 9921 |
msgid "Enter value"
|
| 9922 |
msgstr ""
|
| 9923 |
|
| 9924 |
+
#: admin/locale.php:951
|
| 9925 |
msgid ""
|
| 9926 |
"You haven't defined any email routing rules yet. Click on the \"+ Add "
|
| 9927 |
"Rule\" button to add the recipients along with the routing rules."
|
| 9928 |
msgstr ""
|
| 9929 |
|
| 9930 |
+
#: admin/locale.php:952
|
| 9931 |
msgid "Email routing is enabled"
|
| 9932 |
msgstr ""
|
| 9933 |
|
| 9934 |
+
#: admin/locale.php:953
|
| 9935 |
msgid "more recipient(s)"
|
| 9936 |
msgstr ""
|
| 9937 |
|
| 9938 |
+
#: admin/locale.php:954
|
| 9939 |
msgid "Open field settings"
|
| 9940 |
msgstr ""
|
| 9941 |
|
| 9942 |
+
#: admin/locale.php:956
|
| 9943 |
msgid "User Account Activation"
|
| 9944 |
msgstr ""
|
| 9945 |
|
| 9946 |
+
#: admin/locale.php:957
|
| 9947 |
msgid "Choose the activation method and other settings for the user accounts."
|
| 9948 |
msgstr ""
|
| 9949 |
|
| 9950 |
+
#: admin/locale.php:958
|
| 9951 |
msgid "Activation Method"
|
| 9952 |
msgstr ""
|
| 9953 |
|
| 9954 |
+
#: admin/locale.php:959
|
| 9955 |
msgid ""
|
| 9956 |
"By default, the user account is activated upon form submission. However, "
|
| 9957 |
"you can choose between {{strong}}Email Activation{{/strong}}, which "
|
| 9959 |
"Approval{{/strong}} which requires site admin to approve an account."
|
| 9960 |
msgstr ""
|
| 9961 |
|
| 9962 |
+
#: admin/locale.php:960
|
| 9963 |
msgid "Email Activation"
|
| 9964 |
msgstr ""
|
| 9965 |
|
| 9966 |
+
#: admin/locale.php:961
|
| 9967 |
msgid "Confirmation Page"
|
| 9968 |
msgstr ""
|
| 9969 |
|
| 9970 |
+
#: admin/locale.php:962
|
| 9971 |
msgid ""
|
| 9972 |
"Choose the page to redirect users to when they click on the confirmation "
|
| 9973 |
"link."
|
| 9974 |
msgstr ""
|
| 9975 |
|
| 9976 |
+
#: admin/locale.php:963
|
| 9977 |
msgid "page ID: "
|
| 9978 |
msgstr ""
|
| 9979 |
|
| 9980 |
+
#: admin/locale.php:964
|
| 9981 |
msgid "Manual Approval"
|
| 9982 |
msgstr ""
|
| 9983 |
|
| 9984 |
+
#: admin/locale.php:965
|
| 9985 |
msgid ""
|
| 9986 |
"A site admin will have to manually approve each entry from the submissions "
|
| 9987 |
"page to activate the user accounts."
|
| 9988 |
msgstr ""
|
| 9989 |
|
| 9990 |
+
#: admin/locale.php:966
|
| 9991 |
msgid "Activation Email"
|
| 9992 |
msgstr ""
|
| 9993 |
|
| 9994 |
+
#: admin/locale.php:967
|
| 9995 |
msgid ""
|
| 9996 |
"By default, WordPress sends an activation email containing user account "
|
| 9997 |
"information after the account activation. However, you can choose not to "
|
| 9998 |
"send this email."
|
| 9999 |
msgstr ""
|
| 10000 |
|
| 10001 |
+
#: admin/locale.php:968
|
| 10002 |
msgid ""
|
| 10003 |
"Since the {{strong}}Password{{/strong}} user meta key is mapped to "
|
| 10004 |
"{{strong}}Auto Generate Password{{/strong}}, it's recommended to keep this "
|
| 10006 |
"be sent to the users."
|
| 10007 |
msgstr ""
|
| 10008 |
|
| 10009 |
+
#: admin/locale.php:969
|
| 10010 |
msgid ""
|
| 10011 |
"Since the activation requires manual approval from site admin, it's "
|
| 10012 |
"recommended to keep this option to {{strong}}Default{{/strong}} to let "
|
| 10013 |
"users know when their account is activated."
|
| 10014 |
msgstr ""
|
| 10015 |
|
| 10016 |
+
#: admin/locale.php:970
|
| 10017 |
msgid "These settings will add some extra control on your registration process."
|
| 10018 |
msgstr ""
|
| 10019 |
|
| 10020 |
+
#: admin/locale.php:971
|
| 10021 |
msgid "Automatically log in newly activated users"
|
| 10022 |
msgstr ""
|
| 10023 |
|
| 10024 |
+
#: admin/locale.php:972
|
| 10025 |
msgid ""
|
| 10026 |
"This will automatically log in a user upon successful activation of their "
|
| 10027 |
"account."
|
| 10028 |
msgstr ""
|
| 10029 |
|
| 10030 |
+
#: admin/locale.php:973
|
| 10031 |
msgid "Network's Main Site Role"
|
| 10032 |
msgstr ""
|
| 10033 |
|
| 10034 |
+
#: admin/locale.php:974
|
| 10035 |
msgid ""
|
| 10036 |
"If you don't want to create a user in the network's main site, set this "
|
| 10037 |
"meta key to {{strong}}Don't create a user in the network's main "
|
| 10038 |
"site{{/strong}}."
|
| 10039 |
msgstr ""
|
| 10040 |
|
| 10041 |
+
#: admin/locale.php:975
|
| 10042 |
msgid "User Role"
|
| 10043 |
msgstr ""
|
| 10044 |
|
| 10045 |
+
#: admin/locale.php:976
|
| 10046 |
msgid "User Meta Mapping"
|
| 10047 |
msgstr ""
|
| 10048 |
|
| 10049 |
+
#: admin/locale.php:977
|
| 10050 |
msgid ""
|
| 10051 |
"Assign your form fields to the user meta keys to use the data collected "
|
| 10052 |
"from the visitor to create a user profile."
|
| 10053 |
msgstr ""
|
| 10054 |
|
| 10055 |
+
#: admin/locale.php:978
|
| 10056 |
msgid "Default Meta Keys"
|
| 10057 |
msgstr ""
|
| 10058 |
|
| 10059 |
+
#: admin/locale.php:979
|
| 10060 |
msgid ""
|
| 10061 |
"Assign form fields to the default WordPress user meta keys (used in "
|
| 10062 |
"Profiles) below. You can assign a form field to multiple meta keys. If you "
|
| 10064 |
"will automatically become required in your form."
|
| 10065 |
msgstr ""
|
| 10066 |
|
| 10067 |
+
#: admin/locale.php:980
|
| 10068 |
msgid "Select a field"
|
| 10069 |
msgstr ""
|
| 10070 |
|
| 10071 |
+
#: admin/locale.php:981 library/fields/website.php:61
|
| 10072 |
#: library/fields/website.php:72
|
| 10073 |
msgid "Website"
|
| 10074 |
msgstr ""
|
| 10075 |
|
| 10076 |
+
#: admin/locale.php:982
|
| 10077 |
msgid "Auto Generated Password"
|
| 10078 |
msgstr ""
|
| 10079 |
|
| 10080 |
+
#: admin/locale.php:983
|
| 10081 |
msgid ""
|
| 10082 |
"This form includes a {{strong}}Password field{{/strong}}. Since user "
|
| 10083 |
"passwords will be {{strong}}automatically generated{{/strong}}, the "
|
| 10084 |
"{{strong}}Password field{{/strong}} should be deleted."
|
| 10085 |
msgstr ""
|
| 10086 |
|
| 10087 |
+
#: admin/locale.php:984
|
| 10088 |
msgid ""
|
| 10089 |
"This form is set to {{strong}}automatically generate{{/strong}} user "
|
| 10090 |
"passwords. To allow users to set their own passwords, insert a "
|
| 10091 |
"{{strong}}Password field{{/strong}} into {{link}}this form{{/link}}."
|
| 10092 |
msgstr ""
|
| 10093 |
|
| 10094 |
+
#: admin/locale.php:985
|
| 10095 |
msgid ""
|
| 10096 |
"Choose which user role you want to assign to the visitors signing up. You "
|
| 10097 |
"can either assign a fixed user role to all of them or assign a user role "
|
| 10098 |
"conditionally, based on their response to the form fields."
|
| 10099 |
msgstr ""
|
| 10100 |
|
| 10101 |
+
#: admin/locale.php:986
|
| 10102 |
msgid "Fixed Role to All"
|
| 10103 |
msgstr ""
|
| 10104 |
|
| 10105 |
+
#: admin/locale.php:987
|
| 10106 |
msgid "Assign Role Conditionally"
|
| 10107 |
msgstr ""
|
| 10108 |
|
| 10109 |
+
#: admin/locale.php:988
|
| 10110 |
msgid ""
|
| 10111 |
"No custom user meta created yet. Click on \"+ Add Custom User Meta\" to "
|
| 10112 |
"create custom user meta and map form fields to it."
|
| 10113 |
msgstr ""
|
| 10114 |
|
| 10115 |
+
#: admin/locale.php:989
|
| 10116 |
msgid "Custom User Meta"
|
| 10117 |
msgstr ""
|
| 10118 |
|
| 10119 |
+
#: admin/locale.php:990
|
| 10120 |
msgid ""
|
| 10121 |
"Create custom user meta keys and assign your form fields to them to set "
|
| 10122 |
"additional user meta keys upon successful user registration."
|
| 10123 |
msgstr ""
|
| 10124 |
|
| 10125 |
+
#: admin/locale.php:991
|
| 10126 |
msgid "Add Custom User Meta"
|
| 10127 |
msgstr ""
|
| 10128 |
|
| 10129 |
+
#: admin/locale.php:992
|
| 10130 |
msgid "Site Registration"
|
| 10131 |
msgstr ""
|
| 10132 |
|
| 10133 |
+
#: admin/locale.php:993
|
| 10134 |
msgid ""
|
| 10135 |
"Choose whether to allow site registrations on your multisite network and "
|
| 10136 |
"different related settings."
|
| 10137 |
msgstr ""
|
| 10138 |
|
| 10139 |
+
#: admin/locale.php:994
|
| 10140 |
msgid "Assign form fields to the default WordPress site meta keys below."
|
| 10141 |
msgstr ""
|
| 10142 |
|
| 10143 |
+
#: admin/locale.php:995
|
| 10144 |
msgid "Site Name"
|
| 10145 |
msgstr ""
|
| 10146 |
|
| 10147 |
+
#: admin/locale.php:996
|
| 10148 |
msgid ""
|
| 10149 |
"Site address meta key will be automatically set based on this field as "
|
| 10150 |
"{{strong}}false{{/strong}}"
|
| 10151 |
msgstr ""
|
| 10152 |
|
| 10153 |
+
#: admin/locale.php:997
|
| 10154 |
msgid "Site Title"
|
| 10155 |
msgstr ""
|
| 10156 |
|
| 10157 |
+
#: admin/locale.php:998
|
| 10158 |
msgid "Site Role"
|
| 10159 |
msgstr ""
|
| 10160 |
|
| 10161 |
+
#: admin/locale.php:999
|
| 10162 |
msgid "forever"
|
| 10163 |
msgstr ""
|
| 10164 |
|
| 10165 |
+
#: admin/locale.php:1000
|
| 10166 |
msgid "remove"
|
| 10167 |
msgstr ""
|
| 10168 |
|
| 10169 |
+
#: admin/locale.php:1001
|
| 10170 |
msgid "retain"
|
| 10171 |
msgstr ""
|
| 10172 |
|
| 10173 |
+
#: admin/locale.php:1002
|
| 10174 |
msgid "Data Storage"
|
| 10175 |
msgstr ""
|
| 10176 |
|
| 10177 |
+
#: admin/locale.php:1003
|
| 10178 |
msgid "By default we will store all submissions in your database."
|
| 10179 |
msgstr ""
|
| 10180 |
|
| 10181 |
+
#: admin/locale.php:1004
|
| 10182 |
msgid "Store Submissions in Database"
|
| 10183 |
msgstr ""
|
| 10184 |
|
| 10185 |
+
#: admin/locale.php:1005
|
| 10186 |
msgid ""
|
| 10187 |
"Disable this feature to prevent submissions from being stored in your "
|
| 10188 |
"database. Note that any submissions previously stored in the database will "
|
| 10190 |
"configured in the Privacy settings below."
|
| 10191 |
msgstr ""
|
| 10192 |
|
| 10193 |
+
#: admin/locale.php:1006
|
| 10194 |
msgid "Multiple Option Value"
|
| 10195 |
msgstr ""
|
| 10196 |
|
| 10197 |
+
#: admin/locale.php:1007
|
| 10198 |
msgid ""
|
| 10199 |
"Choose how you want to handle multiple option values in form submissions "
|
| 10200 |
"and email notifications."
|
| 10201 |
msgstr ""
|
| 10202 |
|
| 10203 |
+
#: admin/locale.php:1008
|
| 10204 |
msgid "Default Stored Value"
|
| 10205 |
msgstr ""
|
| 10206 |
|
| 10207 |
+
#: admin/locale.php:1009
|
| 10208 |
msgid ""
|
| 10209 |
"By default, we store option labels of multiple option fields "
|
| 10210 |
"({{strong}}e.g., Radio, Checkbox, and Select{{/strong}}) in submissions, "
|
| 10212 |
"values instead."
|
| 10213 |
msgstr ""
|
| 10214 |
|
| 10215 |
+
#: admin/locale.php:1010
|
| 10216 |
msgid "Option labels"
|
| 10217 |
msgstr ""
|
| 10218 |
|
| 10219 |
+
#: admin/locale.php:1011
|
| 10220 |
msgid "Option values"
|
| 10221 |
msgstr ""
|
| 10222 |
|
| 10223 |
+
#: admin/locale.php:1012
|
| 10224 |
msgid "Privacy"
|
| 10225 |
msgstr ""
|
| 10226 |
|
| 10227 |
+
#: admin/locale.php:1013
|
| 10228 |
msgid "Choose how you want to handle this form's data storage."
|
| 10229 |
msgstr ""
|
| 10230 |
|
| 10231 |
+
#: admin/locale.php:1014
|
| 10232 |
msgid "By default we will use the configuration you have set in your"
|
| 10233 |
msgstr ""
|
| 10234 |
|
| 10235 |
+
#: admin/locale.php:1015
|
| 10236 |
msgid "global privacy settings."
|
| 10237 |
msgstr ""
|
| 10238 |
|
| 10239 |
+
#: admin/locale.php:1016
|
| 10240 |
msgid "How long do you want to retain this form's submissions for?"
|
| 10241 |
msgstr ""
|
| 10242 |
|
| 10243 |
+
#: admin/locale.php:1017
|
| 10244 |
msgid "Use default"
|
| 10245 |
msgstr ""
|
| 10246 |
|
| 10247 |
+
#: admin/locale.php:1018
|
| 10248 |
msgid "Your default setting value is to keep the submissions"
|
| 10249 |
msgstr ""
|
| 10250 |
|
| 10251 |
+
#: admin/locale.php:1019
|
| 10252 |
msgid "Weeks"
|
| 10253 |
msgstr ""
|
| 10254 |
|
| 10255 |
+
#: admin/locale.php:1020
|
| 10256 |
msgid "Months"
|
| 10257 |
msgstr ""
|
| 10258 |
|
| 10259 |
+
#: admin/locale.php:1021
|
| 10260 |
msgid "Years"
|
| 10261 |
msgstr ""
|
| 10262 |
|
| 10263 |
+
#: admin/locale.php:1022
|
| 10264 |
msgid "Leave the field blank to retain submissions forever."
|
| 10265 |
msgstr ""
|
| 10266 |
|
| 10267 |
+
#: admin/locale.php:1023 admin/views/settings/data/forms-privacy.php:36
|
| 10268 |
msgid "Account Erasure Requests"
|
| 10269 |
msgstr ""
|
| 10270 |
|
| 10271 |
+
#: admin/locale.php:1024
|
| 10272 |
msgid ""
|
| 10273 |
"When handling an account erasure request that contains an email associated "
|
| 10274 |
"with a submission, what do you want to do?"
|
| 10275 |
msgstr ""
|
| 10276 |
|
| 10277 |
+
#: admin/locale.php:1025
|
| 10278 |
msgid "Your default setting value is to "
|
| 10279 |
msgstr ""
|
| 10280 |
|
| 10281 |
+
#: admin/locale.php:1026
|
| 10282 |
msgid " the submission."
|
| 10283 |
msgstr ""
|
| 10284 |
|
| 10285 |
+
#: admin/locale.php:1027
|
| 10286 |
msgid "Retain Submissions"
|
| 10287 |
msgstr ""
|
| 10288 |
|
| 10289 |
+
#: admin/locale.php:1028
|
| 10290 |
msgid "Remove Submissions"
|
| 10291 |
msgstr ""
|
| 10292 |
|
| 10293 |
+
#: admin/locale.php:1029
|
| 10294 |
msgid "Submission Files"
|
| 10295 |
msgstr ""
|
| 10296 |
|
| 10297 |
+
#: admin/locale.php:1030
|
| 10298 |
msgid ""
|
| 10299 |
"If your form has file upload field(s), choose whether to delete the file(s) "
|
| 10300 |
"related to a submission when that submission gets deleted."
|
| 10301 |
msgstr ""
|
| 10302 |
|
| 10303 |
+
#: admin/locale.php:1031
|
| 10304 |
msgid "Keep"
|
| 10305 |
msgstr ""
|
| 10306 |
|
| 10307 |
+
#: admin/locale.php:1032
|
| 10308 |
msgid "Unknown setting"
|
| 10309 |
msgstr ""
|
| 10310 |
|
| 10311 |
+
#: admin/locale.php:1033
|
| 10312 |
msgid ""
|
| 10313 |
"Assign a calculation value to each option. These values will not be shown "
|
| 10314 |
"on the form. You can assign only a numeric value."
|
| 10315 |
msgstr ""
|
| 10316 |
|
| 10317 |
+
#: admin/locale.php:1034
|
| 10318 |
msgid "Calculation value"
|
| 10319 |
msgstr ""
|
| 10320 |
|
| 10321 |
+
#: admin/locale.php:1035
|
| 10322 |
msgid "Calculation value is required!"
|
| 10323 |
msgstr ""
|
| 10324 |
|
| 10325 |
+
#: admin/locale.php:1036
|
| 10326 |
msgid "Pick custom date(s) to restrict"
|
| 10327 |
msgstr ""
|
| 10328 |
|
| 10329 |
+
#: admin/locale.php:1037
|
| 10330 |
msgid "Pick a date"
|
| 10331 |
msgstr ""
|
| 10332 |
|
| 10333 |
+
#: admin/locale.php:1038
|
| 10334 |
msgid "Add selected date"
|
| 10335 |
msgstr ""
|
| 10336 |
|
| 10337 |
+
#: admin/locale.php:1039
|
| 10338 |
msgid "Restricted dates"
|
| 10339 |
msgstr ""
|
| 10340 |
|
| 10341 |
+
#: admin/locale.php:1040
|
| 10342 |
msgid "Allowed filetypes"
|
| 10343 |
msgstr ""
|
| 10344 |
|
| 10345 |
+
#: admin/locale.php:1041
|
| 10346 |
msgid ""
|
| 10347 |
"By default, we will use WordPress' {{a}}default allowed mime types{{/a}}. "
|
| 10348 |
"However, you can restrict your users to upload some specific types of files "
|
| 10349 |
"only."
|
| 10350 |
msgstr ""
|
| 10351 |
|
| 10352 |
+
#: admin/locale.php:1042
|
| 10353 |
msgid "Specific filetypes"
|
| 10354 |
msgstr ""
|
| 10355 |
|
| 10356 |
+
#: admin/locale.php:1043
|
| 10357 |
msgid "Images"
|
| 10358 |
msgstr ""
|
| 10359 |
|
| 10360 |
+
#: admin/locale.php:1044
|
| 10361 |
msgid "Documents"
|
| 10362 |
msgstr ""
|
| 10363 |
|
| 10364 |
+
#: admin/locale.php:1045
|
| 10365 |
msgid "Audio"
|
| 10366 |
msgstr ""
|
| 10367 |
|
| 10368 |
+
#: admin/locale.php:1046
|
| 10369 |
msgid "Video"
|
| 10370 |
msgstr ""
|
| 10371 |
|
| 10372 |
+
#: admin/locale.php:1047
|
| 10373 |
msgid "Archive"
|
| 10374 |
msgstr ""
|
| 10375 |
|
| 10376 |
+
#: admin/locale.php:1048
|
| 10377 |
msgid "Spreadsheet"
|
| 10378 |
msgstr ""
|
| 10379 |
|
| 10380 |
+
#: admin/locale.php:1049
|
| 10381 |
msgid "Interactive"
|
| 10382 |
msgstr ""
|
| 10383 |
|
| 10384 |
+
#: admin/locale.php:1050
|
| 10385 |
msgid "Additional filetypes"
|
| 10386 |
msgstr ""
|
| 10387 |
|
| 10388 |
+
#: admin/locale.php:1051
|
| 10389 |
msgid "E.g. .ai, .sketch, .studio"
|
| 10390 |
msgstr ""
|
| 10391 |
|
| 10392 |
+
#: admin/locale.php:1052
|
| 10393 |
msgid ""
|
| 10394 |
"Add a comma-separated list of filetypes you want to allow in addition to "
|
| 10395 |
"the ones enabled above."
|
| 10396 |
msgstr ""
|
| 10397 |
|
| 10398 |
+
#: admin/locale.php:1053
|
| 10399 |
msgid ""
|
| 10400 |
"Note that if you're having trouble uploading one of the enabled filetypes, "
|
| 10401 |
"that filetype may be restricted by your hosting provider."
|
| 10402 |
msgstr ""
|
| 10403 |
|
| 10404 |
+
#: admin/locale.php:1054
|
| 10405 |
msgid "Font Family"
|
| 10406 |
msgstr ""
|
| 10407 |
|
| 10408 |
+
#: admin/locale.php:1055
|
| 10409 |
msgid "Roboto"
|
| 10410 |
msgstr ""
|
| 10411 |
|
| 10412 |
+
#: admin/locale.php:1056
|
| 10413 |
msgid "inherit"
|
| 10414 |
msgstr ""
|
| 10415 |
|
| 10416 |
+
#: admin/locale.php:1057
|
| 10417 |
#: library/modules/custom-forms/admin/admin-loader.php:160
|
| 10418 |
msgid "Custom user font"
|
| 10419 |
msgstr ""
|
| 10420 |
|
| 10421 |
+
#: admin/locale.php:1058
|
| 10422 |
msgid "E.g., Arial, sans-serif"
|
| 10423 |
msgstr ""
|
| 10424 |
|
| 10425 |
+
#: admin/locale.php:1060
|
| 10426 |
msgid "E.g., 16"
|
| 10427 |
msgstr ""
|
| 10428 |
|
| 10429 |
+
#: admin/locale.php:1061
|
| 10430 |
msgid "Font Size"
|
| 10431 |
msgstr ""
|
| 10432 |
|
| 10433 |
+
#: admin/locale.php:1062
|
| 10434 |
msgid "Font Weight"
|
| 10435 |
msgstr ""
|
| 10436 |
|
| 10437 |
+
#: admin/locale.php:1063
|
| 10438 |
msgid "Select font weight"
|
| 10439 |
msgstr ""
|
| 10440 |
|
| 10441 |
+
#: admin/locale.php:1064
|
| 10442 |
msgid "Start & End date"
|
| 10443 |
msgstr ""
|
| 10444 |
|
| 10445 |
+
#: admin/locale.php:1065
|
| 10446 |
msgid ""
|
| 10447 |
"Choose a start and end date limit for the calendar to restrict the date "
|
| 10448 |
"selection between a specific date range. Note that we will use the timezone "
|
| 10449 |
"set in your {{a}}WordPress Settings{{/a}}."
|
| 10450 |
msgstr ""
|
| 10451 |
|
| 10452 |
+
#: admin/locale.php:1066
|
| 10453 |
msgid "Start Date"
|
| 10454 |
msgstr ""
|
| 10455 |
|
| 10456 |
+
#: admin/locale.php:1067
|
| 10457 |
msgid "No limit"
|
| 10458 |
msgstr ""
|
| 10459 |
|
| 10460 |
+
#: admin/locale.php:1068
|
| 10461 |
msgid "Specific date"
|
| 10462 |
msgstr ""
|
| 10463 |
|
| 10464 |
+
#: admin/locale.php:1069
|
| 10465 |
msgid "Date fields"
|
| 10466 |
msgstr ""
|
| 10467 |
|
| 10468 |
+
#: admin/locale.php:1070
|
| 10469 |
msgid "Offset (optional)"
|
| 10470 |
msgstr ""
|
| 10471 |
|
| 10472 |
+
#: admin/locale.php:1071
|
| 10473 |
msgid "+"
|
| 10474 |
msgstr ""
|
| 10475 |
|
| 10476 |
+
#: admin/locale.php:1072
|
| 10477 |
msgid "-"
|
| 10478 |
msgstr ""
|
| 10479 |
|
| 10480 |
+
#: admin/locale.php:1073
|
| 10481 |
msgid "days"
|
| 10482 |
msgstr ""
|
| 10483 |
|
| 10484 |
+
#: admin/locale.php:1074
|
| 10485 |
msgid "weeks"
|
| 10486 |
msgstr ""
|
| 10487 |
|
| 10488 |
+
#: admin/locale.php:1075
|
| 10489 |
msgid "months"
|
| 10490 |
msgstr ""
|
| 10491 |
|
| 10492 |
+
#: admin/locale.php:1076
|
| 10493 |
msgid "years"
|
| 10494 |
msgstr ""
|
| 10495 |
|
| 10496 |
+
#: admin/locale.php:1077
|
| 10497 |
msgid "End Date"
|
| 10498 |
msgstr ""
|
| 10499 |
|
| 10500 |
+
#: admin/locale.php:1078
|
| 10501 |
msgid "Days of the week"
|
| 10502 |
msgstr ""
|
| 10503 |
|
| 10504 |
+
#: admin/locale.php:1079
|
| 10505 |
msgid "Choose which days of the week should be available on the calendar."
|
| 10506 |
msgstr ""
|
| 10507 |
|
| 10508 |
+
#: admin/locale.php:1080
|
| 10509 |
msgid "All days"
|
| 10510 |
msgstr ""
|
| 10511 |
|
| 10512 |
+
#: admin/locale.php:1081
|
| 10513 |
msgid "Selected days"
|
| 10514 |
msgstr ""
|
| 10515 |
|
| 10516 |
+
#: admin/locale.php:1089
|
| 10517 |
msgid "Disable dates"
|
| 10518 |
msgstr ""
|
| 10519 |
|
| 10520 |
+
#: admin/locale.php:1090
|
| 10521 |
msgid "Use this setting to disable specific dates on the calendar."
|
| 10522 |
msgstr ""
|
| 10523 |
|
| 10524 |
+
#: admin/locale.php:1091
|
| 10525 |
msgid "Disable date ranges"
|
| 10526 |
msgstr ""
|
| 10527 |
|
| 10528 |
+
#: admin/locale.php:1092
|
| 10529 |
msgid "Use this setting to disable specific dates ranges on the calendar."
|
| 10530 |
msgstr ""
|
| 10531 |
|
| 10532 |
+
#: admin/locale.php:1093
|
| 10533 |
msgid ""
|
| 10534 |
"Choose an error message to be used when visitor enters a date that is "
|
| 10535 |
"disabled."
|
| 10536 |
msgstr ""
|
| 10537 |
|
| 10538 |
+
#: admin/locale.php:1094
|
| 10539 |
msgid "Select a Field"
|
| 10540 |
msgstr ""
|
| 10541 |
|
| 10542 |
+
#: admin/locale.php:1095
|
| 10543 |
msgid "Delete MetaData"
|
| 10544 |
msgstr ""
|
| 10545 |
|
| 10546 |
+
#: admin/locale.php:1096
|
| 10547 |
msgid "Add Custom Meta"
|
| 10548 |
msgstr ""
|
| 10549 |
|
| 10550 |
+
#: admin/locale.php:1097
|
| 10551 |
msgid ""
|
| 10552 |
"No custom meta data created yet. Click on \"+ Add Custom to create custom "
|
| 10553 |
"meta and map form fields to it."
|
| 10554 |
msgstr ""
|
| 10555 |
|
| 10556 |
+
#: admin/locale.php:1098
|
| 10557 |
msgid "Delete meta"
|
| 10558 |
msgstr ""
|
| 10559 |
|
| 10560 |
+
#: admin/locale.php:1099
|
| 10561 |
msgid "Default value"
|
| 10562 |
msgstr ""
|
| 10563 |
|
| 10564 |
+
#: admin/locale.php:1100 library/helpers/helper-fields.php:466
|
| 10565 |
msgid "Mr."
|
| 10566 |
msgstr ""
|
| 10567 |
|
| 10568 |
+
#: admin/locale.php:1101 library/helpers/helper-fields.php:467
|
| 10569 |
msgid "Mrs."
|
| 10570 |
msgstr ""
|
| 10571 |
|
| 10572 |
+
#: admin/locale.php:1102 library/helpers/helper-fields.php:468
|
| 10573 |
msgid "Ms."
|
| 10574 |
msgstr ""
|
| 10575 |
|
| 10576 |
+
#: admin/locale.php:1103 library/helpers/helper-fields.php:469
|
| 10577 |
msgid "Mx."
|
| 10578 |
msgstr ""
|
| 10579 |
|
| 10580 |
+
#: admin/locale.php:1104 library/helpers/helper-fields.php:470
|
| 10581 |
msgid "Miss"
|
| 10582 |
msgstr ""
|
| 10583 |
|
| 10584 |
+
#: admin/locale.php:1105 library/helpers/helper-fields.php:471
|
| 10585 |
msgid "Dr."
|
| 10586 |
msgstr ""
|
| 10587 |
|
| 10588 |
+
#: admin/locale.php:1106 library/helpers/helper-fields.php:472
|
| 10589 |
msgid "Prof."
|
| 10590 |
msgstr ""
|
| 10591 |
|
| 10592 |
+
#: admin/locale.php:1108
|
| 10593 |
msgid "Toggle"
|
| 10594 |
msgstr ""
|
| 10595 |
|
| 10596 |
+
#: admin/locale.php:1109
|
| 10597 |
msgid "Submission limit"
|
| 10598 |
msgstr ""
|
| 10599 |
|
| 10600 |
+
#: admin/locale.php:1110
|
| 10601 |
msgid ""
|
| 10602 |
"The File APIs are not fully supported in this browser. You may copy and "
|
| 10603 |
"paste your options on the text area above or switch to a modern browser to "
|
| 10604 |
"use the importer."
|
| 10605 |
msgstr ""
|
| 10606 |
|
| 10607 |
+
#: admin/locale.php:1111
|
| 10608 |
msgid "Whoops, only .csv filetype is allowed."
|
| 10609 |
msgstr ""
|
| 10610 |
|
| 10611 |
+
#: admin/locale.php:1112
|
| 10612 |
msgid "Importing this will replace your current options. Click import to continue."
|
| 10613 |
msgstr ""
|
| 10614 |
|
| 10615 |
+
#: admin/locale.php:1113
|
| 10616 |
msgid "This browser doesn't seem to support the `files` property of file inputs."
|
| 10617 |
msgstr ""
|
| 10618 |
|
| 10619 |
+
#: admin/locale.php:1114
|
| 10620 |
msgid "Option "
|
| 10621 |
msgstr ""
|
| 10622 |
|
| 10623 |
+
#: admin/locale.php:1115
|
| 10624 |
msgid "Expand All"
|
| 10625 |
msgstr ""
|
| 10626 |
|
| 10627 |
+
#: admin/locale.php:1116
|
| 10628 |
msgid "Collapse All"
|
| 10629 |
msgstr ""
|
| 10630 |
|
| 10631 |
+
#: admin/locale.php:1117 library/fields/radio.php:59
|
| 10632 |
#: library/fields/radio.php:71
|
| 10633 |
msgid "Radio"
|
| 10634 |
msgstr ""
|
| 10635 |
|
| 10636 |
+
#: admin/locale.php:1118
|
| 10637 |
msgid "Label; value; selection (0 or 1); image-url"
|
| 10638 |
msgstr ""
|
| 10639 |
|
| 10640 |
+
#: admin/locale.php:1119
|
| 10641 |
msgid "Label; value; selection (0 or 1); submission limit"
|
| 10642 |
msgstr ""
|
| 10643 |
|
| 10644 |
+
#: admin/locale.php:1120
|
| 10645 |
msgid "Label; value; selection (0 or 1)"
|
| 10646 |
msgstr ""
|
| 10647 |
|
| 10648 |
+
#: admin/locale.php:1121
|
| 10649 |
msgid ""
|
| 10650 |
"Warning! You've added more than 1000 options. Switching back to the "
|
| 10651 |
"standard (non-bulk) editor could make your browser slow or unresponsive. "
|
| 10652 |
"Proceed with caution."
|
| 10653 |
msgstr ""
|
| 10654 |
|
| 10655 |
+
#: admin/locale.php:1122
|
| 10656 |
msgid "Options"
|
| 10657 |
msgstr ""
|
| 10658 |
|
| 10659 |
+
#: admin/locale.php:1123
|
| 10660 |
msgid "Enable Images"
|
| 10661 |
msgstr ""
|
| 10662 |
|
| 10663 |
+
#: admin/locale.php:1124
|
| 10664 |
msgid "Bulk Edit"
|
| 10665 |
msgstr ""
|
| 10666 |
|
| 10667 |
+
#: admin/locale.php:1125
|
| 10668 |
msgid "Loading"
|
| 10669 |
msgstr ""
|
| 10670 |
|
| 10671 |
+
#: admin/locale.php:1127
|
| 10672 |
msgid "Enter field options (one per line)"
|
| 10673 |
msgstr ""
|
| 10674 |
|
| 10675 |
+
#: admin/locale.php:1129
|
| 10676 |
msgid ""
|
| 10677 |
"Type or paste options above (one per line and separated by semicolons) or "
|
| 10678 |
"click \n"
|
| 10680 |
"{{b}}false{{/b}}"
|
| 10681 |
msgstr ""
|
| 10682 |
|
| 10683 |
+
#: admin/locale.php:1131
|
| 10684 |
msgid "Import options from CSV"
|
| 10685 |
msgstr ""
|
| 10686 |
|
| 10687 |
+
#: admin/locale.php:1132 library/fields/upload.php:82
|
| 10688 |
msgid "Upload file"
|
| 10689 |
msgstr ""
|
| 10690 |
|
| 10691 |
+
#: admin/locale.php:1134
|
| 10692 |
msgid "Choose a CSV (.csv) file to import field options and values."
|
| 10693 |
msgstr ""
|
| 10694 |
|
| 10695 |
+
#: admin/locale.php:1135
|
| 10696 |
msgid "Download csv template"
|
| 10697 |
msgstr ""
|
| 10698 |
|
| 10699 |
+
#: admin/locale.php:1136
|
| 10700 |
msgid "Page"
|
| 10701 |
msgstr ""
|
| 10702 |
|
| 10703 |
+
#: admin/locale.php:1137
|
| 10704 |
msgid "No Previous button"
|
| 10705 |
msgstr ""
|
| 10706 |
|
| 10707 |
+
#: admin/locale.php:1138 admin/views/common/reports/integration-report.php:45
|
| 10708 |
#: library/helpers/helper-core.php:421
|
| 10709 |
#: library/modules/custom-forms/front/front-render.php:914
|
| 10710 |
msgid "Previous"
|
| 10711 |
msgstr ""
|
| 10712 |
|
| 10713 |
+
#: admin/locale.php:1140
|
| 10714 |
msgid "No Next button"
|
| 10715 |
msgstr ""
|
| 10716 |
|
| 10717 |
+
#: admin/locale.php:1141
|
| 10718 |
msgid ""
|
| 10719 |
"{{strong}}Note:{{/strong}} Using WordPress Reserved Terms as query "
|
| 10720 |
"parameters may cause unexpected form behavior. Find the complete list of "
|
| 10721 |
"{{link}}{{icon/}} WordPress Reserved Terms here{{/link}}."
|
| 10722 |
msgstr ""
|
| 10723 |
|
| 10724 |
+
#: admin/locale.php:1142
|
| 10725 |
msgid "Pre-populate"
|
| 10726 |
msgstr ""
|
| 10727 |
|
| 10728 |
+
#: admin/locale.php:1143
|
| 10729 |
msgid ""
|
| 10730 |
"You can pre-populate this field dynamically using the query parameter "
|
| 10731 |
"passed in your form URL. Enter the query parameter key to fetch its value "
|
| 10732 |
"from your form URL below."
|
| 10733 |
msgstr ""
|
| 10734 |
|
| 10735 |
+
#: admin/locale.php:1144
|
| 10736 |
msgid "Query parameter (optional)"
|
| 10737 |
msgstr ""
|
| 10738 |
|
| 10739 |
+
#: admin/locale.php:1145
|
| 10740 |
msgid "radio button"
|
| 10741 |
msgstr ""
|
| 10742 |
|
| 10743 |
+
#: admin/locale.php:1146
|
| 10744 |
msgid "checkbox"
|
| 10745 |
msgstr ""
|
| 10746 |
|
| 10747 |
+
#: admin/locale.php:1147
|
| 10748 |
msgid "visibility"
|
| 10749 |
msgstr ""
|
| 10750 |
|
| 10751 |
+
#: admin/locale.php:1148
|
| 10752 |
msgid "When using image options, you can hide or show the "
|
| 10753 |
msgstr ""
|
| 10754 |
|
| 10755 |
+
#: admin/locale.php:1149
|
| 10756 |
msgid "Require"
|
| 10757 |
msgstr ""
|
| 10758 |
|
| 10759 |
+
#: admin/locale.php:1150
|
| 10760 |
msgid "Force users to fill out this field, otherwise it will be optional."
|
| 10761 |
msgstr ""
|
| 10762 |
|
| 10763 |
+
#: admin/locale.php:1152 library/fields/custom.php:66
|
| 10764 |
msgid "Required"
|
| 10765 |
msgstr ""
|
| 10766 |
|
| 10767 |
+
#: admin/locale.php:1153
|
| 10768 |
msgid "Password error message"
|
| 10769 |
msgstr ""
|
| 10770 |
|
| 10771 |
+
#: admin/locale.php:1154
|
| 10772 |
msgid "Confirm Password error message"
|
| 10773 |
msgstr ""
|
| 10774 |
|
| 10775 |
+
#: admin/locale.php:1155
|
| 10776 |
msgid "Enter confirm password message"
|
| 10777 |
msgstr ""
|
| 10778 |
|
| 10779 |
+
#: admin/locale.php:1156
|
| 10780 |
msgid "Options without a value will be treated as empty options"
|
| 10781 |
msgstr ""
|
| 10782 |
|
| 10783 |
+
#: admin/locale.php:1157
|
| 10784 |
msgid ""
|
| 10785 |
"Add classes that will be output on this field's container to aid your "
|
| 10786 |
"theme's default styling."
|
| 10787 |
msgstr ""
|
| 10788 |
|
| 10789 |
+
#: admin/locale.php:1158
|
| 10790 |
msgid "E.g. form-field"
|
| 10791 |
msgstr ""
|
| 10792 |
|
| 10793 |
+
#: admin/locale.php:1159
|
| 10794 |
msgid "These will be output as you see them here."
|
| 10795 |
msgstr ""
|
| 10796 |
|
| 10797 |
+
#: admin/locale.php:1160
|
| 10798 |
msgid ""
|
| 10799 |
"{{strong}}\"%(label)s\"{{/strong}} when {{strong}}%(field)s{{/strong}} "
|
| 10800 |
"%(rule)s {{strong}}%(value)s{{/strong}}"
|
| 10801 |
msgstr ""
|
| 10802 |
|
| 10803 |
+
#: admin/locale.php:1161
|
| 10804 |
msgid "Condition (Required)"
|
| 10805 |
msgstr ""
|
| 10806 |
|
| 10807 |
+
#: admin/locale.php:1162
|
| 10808 |
msgid "Select date"
|
| 10809 |
msgstr ""
|
| 10810 |
|
| 10811 |
+
#: admin/locale.php:1163
|
| 10812 |
msgid "Number of days"
|
| 10813 |
msgstr ""
|
| 10814 |
|
| 10815 |
+
#: admin/locale.php:1164 admin/views/settings/data/retention.php:40
|
| 10816 |
#: library/fields/currency.php:85 library/fields/number.php:83
|
| 10817 |
msgid "E.g. 10"
|
| 10818 |
msgstr ""
|
| 10819 |
|
| 10820 |
+
#: admin/locale.php:1165
|
| 10821 |
msgid "Add User Role"
|
| 10822 |
msgstr ""
|
| 10823 |
|
| 10824 |
+
#: admin/locale.php:1166
|
| 10825 |
msgid "Is before"
|
| 10826 |
msgstr ""
|
| 10827 |
|
| 10828 |
+
#: admin/locale.php:1167
|
| 10829 |
msgid "Is after"
|
| 10830 |
msgstr ""
|
| 10831 |
|
| 10832 |
+
#: admin/locale.php:1168
|
| 10833 |
msgid "Is before n or more days"
|
| 10834 |
msgstr ""
|
| 10835 |
|
| 10836 |
+
#: admin/locale.php:1169
|
| 10837 |
msgid "Is before less than n days"
|
| 10838 |
msgstr ""
|
| 10839 |
|
| 10840 |
+
#: admin/locale.php:1170
|
| 10841 |
msgid "Is after n or more days"
|
| 10842 |
msgstr ""
|
| 10843 |
|
| 10844 |
+
#: admin/locale.php:1171
|
| 10845 |
msgid "Is after less than n days"
|
| 10846 |
msgstr ""
|
| 10847 |
|
| 10848 |
+
#: admin/locale.php:1172
|
| 10849 |
msgid "this field if"
|
| 10850 |
msgstr ""
|
| 10851 |
|
| 10852 |
+
#: admin/locale.php:1173
|
| 10853 |
msgid "Process this plan if"
|
| 10854 |
msgstr ""
|
| 10855 |
|
| 10856 |
+
#: admin/locale.php:1174
|
| 10857 |
msgid "of the following conditions match:"
|
| 10858 |
msgstr ""
|
| 10859 |
|
| 10860 |
+
#: admin/locale.php:1175
|
| 10861 |
msgid ""
|
| 10862 |
"You need more than one field to configure visibility conditions. Add more "
|
| 10863 |
"fields!"
|
| 10864 |
msgstr ""
|
| 10865 |
|
| 10866 |
+
#: admin/locale.php:1176
|
| 10867 |
msgid "Rules"
|
| 10868 |
msgstr ""
|
| 10869 |
|
| 10870 |
+
#: admin/locale.php:1177
|
| 10871 |
msgid "Add conditions"
|
| 10872 |
msgstr ""
|
| 10873 |
|
| 10874 |
+
#: admin/locale.php:1178
|
| 10875 |
msgid ""
|
| 10876 |
"By default field will always be visible. If you want to hide or show fields "
|
| 10877 |
"based on user input you can add conditions."
|
| 10878 |
msgstr ""
|
| 10879 |
|
| 10880 |
+
#: admin/locale.php:1179
|
| 10881 |
msgid ""
|
| 10882 |
"Add conditions for how this plan will be processed based on your form field "
|
| 10883 |
"data."
|
| 10884 |
msgstr ""
|
| 10885 |
|
| 10886 |
+
#: admin/locale.php:1180
|
| 10887 |
msgid "You have unsaved changes, are you sure want to leave this page"
|
| 10888 |
msgstr ""
|
| 10889 |
|
| 10890 |
+
#: admin/locale.php:1181
|
| 10891 |
msgid "Security"
|
| 10892 |
msgstr ""
|
| 10893 |
|
| 10894 |
+
#: admin/locale.php:1182
|
| 10895 |
msgid "Added layers of security to prevent spam submissions."
|
| 10896 |
msgstr ""
|
| 10897 |
|
| 10898 |
+
#: admin/locale.php:1183
|
| 10899 |
msgid "Enable Honeypot protection"
|
| 10900 |
msgstr ""
|
| 10901 |
|
| 10902 |
+
#: admin/locale.php:1184
|
| 10903 |
msgid ""
|
| 10904 |
"Enabling this feature tricks spam bots by giving them a hidden challenge "
|
| 10905 |
"only bots will see. If the bot tries the challenge we know it's not a human "
|
| 10906 |
"and prevent the form being submitted."
|
| 10907 |
msgstr ""
|
| 10908 |
|
| 10909 |
+
#: admin/locale.php:1185
|
| 10910 |
msgid "Enable Akismet spam protection"
|
| 10911 |
msgstr ""
|
| 10912 |
|
| 10913 |
+
#: admin/locale.php:1186
|
| 10914 |
msgid ""
|
| 10915 |
"If you have installed the {{link}}Akismet anti-spam plugin{{/link}}, you "
|
| 10916 |
"can enable this option to tell Forminator how to handle submissions that "
|
| 10917 |
"Akismet flags as spam."
|
| 10918 |
msgstr ""
|
| 10919 |
|
| 10920 |
+
#: admin/locale.php:1187
|
| 10921 |
msgid "How should Forminator handle spam submissions?"
|
| 10922 |
msgstr ""
|
| 10923 |
|
| 10924 |
+
#: admin/locale.php:1188
|
| 10925 |
msgid "Fail Submission"
|
| 10926 |
msgstr ""
|
| 10927 |
|
| 10928 |
+
#: admin/locale.php:1189
|
| 10929 |
msgid "Custom error message"
|
| 10930 |
msgstr ""
|
| 10931 |
|
| 10932 |
+
#: admin/locale.php:1191
|
| 10933 |
msgid ""
|
| 10934 |
"Enter a custom error message to let your visitors know why the submission "
|
| 10935 |
"failed."
|
| 10936 |
msgstr ""
|
| 10937 |
|
| 10938 |
+
#: admin/locale.php:1192
|
| 10939 |
msgid "Mark as Spam"
|
| 10940 |
msgstr ""
|
| 10941 |
|
| 10942 |
+
#: admin/locale.php:1193
|
| 10943 |
msgid ""
|
| 10944 |
"Entries marked as spam will be captured in the database, but not shown in "
|
| 10945 |
"Submissions. Additionally, Payments, Notification emails, and other "
|
| 10946 |
"automatic processes will be blocked."
|
| 10947 |
msgstr ""
|
| 10948 |
|
| 10949 |
+
#: admin/locale.php:1194
|
| 10950 |
msgid "Enable logged in submission only"
|
| 10951 |
msgstr ""
|
| 10952 |
|
| 10953 |
+
#: admin/locale.php:1195
|
| 10954 |
msgid "Lock down your form submissions to registered users only."
|
| 10955 |
msgstr ""
|
| 10956 |
|
| 10957 |
+
#: admin/locale.php:1196 admin/views/addons/addon-details.php:141
|
| 10958 |
#: admin/views/addons/addons-list.php:155
|
| 10959 |
#: library/modules/polls/admin/admin-loader.php:176
|
| 10960 |
#: library/modules/polls/admin/admin-loader.php:179
|
| 10962 |
msgid "Details"
|
| 10963 |
msgstr ""
|
| 10964 |
|
| 10965 |
+
#: admin/locale.php:1197
|
| 10966 |
msgid "Use default colors"
|
| 10967 |
msgstr ""
|
| 10968 |
|
| 10969 |
+
#: admin/locale.php:1198
|
| 10970 |
msgid "Poll Container"
|
| 10971 |
msgstr ""
|
| 10972 |
|
| 10973 |
+
#: admin/locale.php:1199
|
| 10974 |
msgid "Poll Basics"
|
| 10975 |
msgstr ""
|
| 10976 |
|
| 10977 |
+
#: admin/locale.php:1200
|
| 10978 |
msgid "Answers - Radio Option"
|
| 10979 |
msgstr ""
|
| 10980 |
|
| 10981 |
+
#: admin/locale.php:1201
|
| 10982 |
msgid "Radio Options"
|
| 10983 |
msgstr ""
|
| 10984 |
|
| 10985 |
+
#: admin/locale.php:1202
|
| 10986 |
msgid "Answers - Radio Image"
|
| 10987 |
msgstr ""
|
| 10988 |
|
| 10989 |
+
#: admin/locale.php:1203
|
| 10990 |
msgid "Custom Answer Input"
|
| 10991 |
msgstr ""
|
| 10992 |
|
| 10993 |
+
#: admin/locale.php:1204
|
| 10994 |
msgid "View Results Link"
|
| 10995 |
msgstr ""
|
| 10996 |
|
| 10997 |
+
#: admin/locale.php:1205
|
| 10998 |
msgid "Results Chart"
|
| 10999 |
msgstr ""
|
| 11000 |
|
| 11001 |
+
#: admin/locale.php:1206
|
| 11002 |
msgid "Basics"
|
| 11003 |
msgstr ""
|
| 11004 |
|
| 11005 |
+
#: admin/locale.php:1207
|
| 11006 |
msgid "Chart grid lines"
|
| 11007 |
msgstr ""
|
| 11008 |
|
| 11009 |
+
#: admin/locale.php:1208
|
| 11010 |
msgid "Legend text color"
|
| 11011 |
msgstr ""
|
| 11012 |
|
| 11013 |
+
#: admin/locale.php:1209
|
| 11014 |
msgid "Chart labels color"
|
| 11015 |
msgstr ""
|
| 11016 |
|
| 11017 |
+
#: admin/locale.php:1210
|
| 11018 |
msgid "Legends are always displayed on top of the chart."
|
| 11019 |
msgstr ""
|
| 11020 |
|
| 11021 |
+
#: admin/locale.php:1211
|
| 11022 |
msgid "Votes count"
|
| 11023 |
msgstr ""
|
| 11024 |
|
| 11025 |
+
#: admin/locale.php:1212
|
| 11026 |
msgid "Text displayed inside bars."
|
| 11027 |
msgstr ""
|
| 11028 |
|
| 11029 |
+
#: admin/locale.php:1213
|
| 11030 |
msgid "Tooltips"
|
| 11031 |
msgstr ""
|
| 11032 |
|
| 11033 |
+
#: admin/locale.php:1215
|
| 11034 |
msgid "Choose the graph colors for each poll answers below."
|
| 11035 |
msgstr ""
|
| 11036 |
|
| 11037 |
+
#: admin/locale.php:1217 library/modules/polls/admin/admin-loader.php:162
|
| 11038 |
msgid "Question color"
|
| 11039 |
msgstr ""
|
| 11040 |
|
| 11041 |
+
#: admin/locale.php:1218 library/modules/polls/admin/admin-loader.php:161
|
| 11042 |
msgid "Description color"
|
| 11043 |
msgstr ""
|
| 11044 |
|
| 11045 |
+
#: admin/locale.php:1219
|
| 11046 |
msgid "\"No votes yet\" text color"
|
| 11047 |
msgstr ""
|
| 11048 |
|
| 11049 |
+
#: admin/locale.php:1220
|
| 11050 |
msgid ""
|
| 11051 |
"Users see this text next to submit button when \"link on poll\" submission "
|
| 11052 |
"is enabled."
|
| 11053 |
msgstr ""
|
| 11054 |
|
| 11055 |
+
#: admin/locale.php:1221
|
| 11056 |
msgid "Link color"
|
| 11057 |
msgstr ""
|
| 11058 |
|
| 11059 |
+
#: admin/locale.php:1222
|
| 11060 |
msgid "Error response message will be displayed after poll vote submission fails."
|
| 11061 |
msgstr ""
|
| 11062 |
|
| 11063 |
+
#: admin/locale.php:1223
|
| 11064 |
msgid ""
|
| 11065 |
"Successful response message will be displayed after poll submission "
|
| 11066 |
"succeeds."
|
| 11067 |
msgstr ""
|
| 11068 |
|
| 11069 |
+
#: admin/locale.php:1224
|
| 11070 |
msgid "Choose how much spacing you want between each poll option."
|
| 11071 |
msgstr ""
|
| 11072 |
|
| 11073 |
+
#: admin/locale.php:1225
|
| 11074 |
msgid "Enclosed"
|
| 11075 |
msgstr ""
|
| 11076 |
|
| 11077 |
+
#: admin/locale.php:1226
|
| 11078 |
msgid ""
|
| 11079 |
"Choose a pre-made style for your poll and further customize it's appearance "
|
| 11080 |
"below."
|
| 11081 |
msgstr ""
|
| 11082 |
|
| 11083 |
+
#: admin/locale.php:1227
|
| 11084 |
msgid "Adjust the answers layout and overall poll alignment."
|
| 11085 |
msgstr ""
|
| 11086 |
|
| 11087 |
+
#: admin/locale.php:1228
|
| 11088 |
msgid "Choose whether the poll answers should appear in a list or a grid."
|
| 11089 |
msgstr ""
|
| 11090 |
|
| 11091 |
+
#: admin/locale.php:1230 library/modules/quizzes/admin/admin-loader.php:532
|
| 11092 |
msgid "Grid"
|
| 11093 |
msgstr ""
|
| 11094 |
|
| 11095 |
+
#: admin/locale.php:1231
|
| 11096 |
msgid ""
|
| 11097 |
"Choose the number of columns to fit in one row. Note that grid layout "
|
| 11098 |
"changes to two columns on smaller screens so this won't affect the smaller "
|
| 11099 |
"screens."
|
| 11100 |
msgstr ""
|
| 11101 |
|
| 11102 |
+
#: admin/locale.php:1232
|
| 11103 |
msgid "Columns per row"
|
| 11104 |
msgstr ""
|
| 11105 |
|
| 11106 |
+
#: admin/locale.php:1233
|
| 11107 |
msgid "Answer Type"
|
| 11108 |
msgstr ""
|
| 11109 |
|
| 11110 |
+
#: admin/locale.php:1234
|
| 11111 |
msgid "Choose how your poll answers should be displayed on the frontend."
|
| 11112 |
msgstr ""
|
| 11113 |
|
| 11114 |
+
#: admin/locale.php:1235
|
| 11115 |
msgid "Image and Radio Button"
|
| 11116 |
msgstr ""
|
| 11117 |
|
| 11118 |
+
#: admin/locale.php:1236
|
| 11119 |
msgid "Image only"
|
| 11120 |
msgstr ""
|
| 11121 |
|
| 11122 |
+
#: admin/locale.php:1237
|
| 11123 |
msgid "Voting Limit"
|
| 11124 |
msgstr ""
|
| 11125 |
|
| 11126 |
+
#: admin/locale.php:1238
|
| 11127 |
msgid ""
|
| 11128 |
"Choose whether you want to limit the number of votes per users and how do "
|
| 11129 |
"you want to impose that limit. "
|
| 11130 |
msgstr ""
|
| 11131 |
|
| 11132 |
+
#: admin/locale.php:1239
|
| 11133 |
msgid "Votes per user"
|
| 11134 |
msgstr ""
|
| 11135 |
|
| 11136 |
+
#: admin/locale.php:1240
|
| 11137 |
msgid ""
|
| 11138 |
"By default, a user can only vote once on a poll. However, you can allow the "
|
| 11139 |
"users to vote multiple times and also specify the time after which a user "
|
| 11140 |
"can vote again."
|
| 11141 |
msgstr ""
|
| 11142 |
|
| 11143 |
+
#: admin/locale.php:1241
|
| 11144 |
msgid "Once"
|
| 11145 |
msgstr ""
|
| 11146 |
|
| 11147 |
+
#: admin/locale.php:1242
|
| 11148 |
msgid "Allow Multiple"
|
| 11149 |
msgstr ""
|
| 11150 |
|
| 11151 |
+
#: admin/locale.php:1243
|
| 11152 |
#: library/modules/custom-forms/admin/admin-loader.php:161
|
| 11153 |
msgid "minute(s)"
|
| 11154 |
msgstr ""
|
| 11155 |
|
| 11156 |
+
#: admin/locale.php:1244
|
| 11157 |
#: library/modules/custom-forms/admin/admin-loader.php:162
|
| 11158 |
msgid "hour(s)"
|
| 11159 |
msgstr ""
|
| 11160 |
|
| 11161 |
+
#: admin/locale.php:1245
|
| 11162 |
msgid "Choose the method you want to use to limit the number of votes."
|
| 11163 |
msgstr ""
|
| 11164 |
|
| 11165 |
+
#: admin/locale.php:1246
|
| 11166 |
msgid "User IP"
|
| 11167 |
msgstr ""
|
| 11168 |
|
| 11169 |
+
#: admin/locale.php:1247
|
| 11170 |
msgid "Browser Cookie"
|
| 11171 |
msgstr ""
|
| 11172 |
|
| 11173 |
+
#: admin/locale.php:1248
|
| 11174 |
msgid "Vote Opening"
|
| 11175 |
msgstr ""
|
| 11176 |
|
| 11177 |
+
#: admin/locale.php:1249
|
| 11178 |
msgid "Choose when you want to open and close voting"
|
| 11179 |
msgstr ""
|
| 11180 |
|
| 11181 |
+
#: admin/locale.php:1250
|
| 11182 |
msgid "Choose the status of voting"
|
| 11183 |
msgstr ""
|
| 11184 |
|
| 11185 |
+
#: admin/locale.php:1251
|
| 11186 |
msgid "Open"
|
| 11187 |
msgstr ""
|
| 11188 |
|
| 11189 |
+
#: admin/locale.php:1252
|
| 11190 |
msgid "Pause"
|
| 11191 |
msgstr ""
|
| 11192 |
|
| 11193 |
+
#: admin/locale.php:1254
|
| 11194 |
msgid "Open from"
|
| 11195 |
msgstr ""
|
| 11196 |
|
| 11197 |
+
#: admin/locale.php:1255
|
| 11198 |
msgid "Choose when voting will be opened"
|
| 11199 |
msgstr ""
|
| 11200 |
|
| 11201 |
+
#: admin/locale.php:1256
|
| 11202 |
msgid "Now"
|
| 11203 |
msgstr ""
|
| 11204 |
|
| 11205 |
+
#: admin/locale.php:1257
|
| 11206 |
msgid "Specific Date Time"
|
| 11207 |
msgstr ""
|
| 11208 |
|
| 11209 |
+
#: admin/locale.php:1258
|
| 11210 |
msgid "Open until"
|
| 11211 |
msgstr ""
|
| 11212 |
|
| 11213 |
+
#: admin/locale.php:1259
|
| 11214 |
msgid "Choose how long voting will remain open"
|
| 11215 |
msgstr ""
|
| 11216 |
|
| 11217 |
+
#: admin/locale.php:1260 admin/views/settings/data/retention.php:16
|
| 11218 |
msgid "Forever"
|
| 11219 |
msgstr ""
|
| 11220 |
|
| 11221 |
+
#: admin/locale.php:1261
|
| 11222 |
msgid "Custom messages"
|
| 11223 |
msgstr ""
|
| 11224 |
|
| 11225 |
+
#: admin/locale.php:1262
|
| 11226 |
msgid "Message when voting is closed"
|
| 11227 |
msgstr ""
|
| 11228 |
|
| 11229 |
+
#: admin/locale.php:1263
|
| 11230 |
msgid "E.g. Voting is closed"
|
| 11231 |
msgstr ""
|
| 11232 |
|
| 11233 |
+
#: admin/locale.php:1264
|
| 11234 |
msgid "Message when voting is paused"
|
| 11235 |
msgstr ""
|
| 11236 |
|
| 11237 |
+
#: admin/locale.php:1265
|
| 11238 |
msgid "E.g. Voting is paused, check again later"
|
| 11239 |
msgstr ""
|
| 11240 |
|
| 11241 |
+
#: admin/locale.php:1266
|
| 11242 |
msgid "Message before voting open from time"
|
| 11243 |
msgstr ""
|
| 11244 |
|
| 11245 |
+
#: admin/locale.php:1267
|
| 11246 |
msgid "E.g. Voting has not been started yet"
|
| 11247 |
msgstr ""
|
| 11248 |
|
| 11249 |
+
#: admin/locale.php:1268
|
| 11250 |
msgid "Choose how you want your poll to be rendered for users."
|
| 11251 |
msgstr ""
|
| 11252 |
|
| 11253 |
+
#: admin/locale.php:1269
|
| 11254 |
msgid "Load poll using AJAX"
|
| 11255 |
msgstr ""
|
| 11256 |
|
| 11257 |
+
#: admin/locale.php:1270
|
| 11258 |
msgid ""
|
| 11259 |
"Enabling this feature will load the poll via AJAX after the page has loaded "
|
| 11260 |
"up, effectively speeding up your page load time. This method can also (in "
|
| 11261 |
"most cases) avoid page caching issues with your poll."
|
| 11262 |
msgstr ""
|
| 11263 |
|
| 11264 |
+
#: admin/locale.php:1271
|
| 11265 |
msgid "Prevent page caching on poll pages"
|
| 11266 |
msgstr ""
|
| 11267 |
|
| 11268 |
+
#: admin/locale.php:1272
|
| 11269 |
msgid ""
|
| 11270 |
"Page caching plugins serve a static HTML version of the page which can "
|
| 11271 |
"cause issues to your dynamic polls. By enabling this, we'll use "
|
| 11273 |
"poll on it from being cached."
|
| 11274 |
msgstr ""
|
| 11275 |
|
| 11276 |
+
#: admin/locale.php:1273
|
| 11277 |
msgid "Pie Chart"
|
| 11278 |
msgstr ""
|
| 11279 |
|
| 11280 |
+
#: admin/locale.php:1274
|
| 11281 |
msgid "Bar Graph"
|
| 11282 |
msgstr ""
|
| 11283 |
|
| 11284 |
+
#: admin/locale.php:1275
|
| 11285 |
msgid "Results Display"
|
| 11286 |
msgstr ""
|
| 11287 |
|
| 11288 |
+
#: admin/locale.php:1276
|
| 11289 |
msgid ""
|
| 11290 |
"Choose how you want to display poll results to new submissions. You can "
|
| 11291 |
"customise colors in the {{link}}Appearance{{/link}} tab."
|
| 11292 |
msgstr ""
|
| 11293 |
|
| 11294 |
+
#: admin/locale.php:1277 library/modules/polls/admin/admin-loader.php:122
|
| 11295 |
msgid "Link on poll"
|
| 11296 |
msgstr ""
|
| 11297 |
|
| 11298 |
+
#: admin/locale.php:1278 library/modules/polls/admin/admin-loader.php:123
|
| 11299 |
msgid "Show after voted"
|
| 11300 |
msgstr ""
|
| 11301 |
|
| 11302 |
+
#: admin/locale.php:1279 library/modules/polls/admin/admin-loader.php:124
|
| 11303 |
msgid "Do not show"
|
| 11304 |
msgstr ""
|
| 11305 |
|
| 11306 |
+
#: admin/locale.php:1280
|
| 11307 |
msgid "Submission Method"
|
| 11308 |
msgstr ""
|
| 11309 |
|
| 11310 |
+
#: admin/locale.php:1281
|
| 11311 |
msgid ""
|
| 11312 |
"By default, submissions don't require the page to reload. If you are having "
|
| 11313 |
"issues you might want use the traditional method of reloading the page."
|
| 11314 |
msgstr ""
|
| 11315 |
|
| 11316 |
+
#: admin/locale.php:1282
|
| 11317 |
msgid "Reload Page"
|
| 11318 |
msgstr ""
|
| 11319 |
|
| 11320 |
+
#: admin/locale.php:1283
|
| 11321 |
msgid "Vote Count"
|
| 11322 |
msgstr ""
|
| 11323 |
|
| 11324 |
+
#: admin/locale.php:1284
|
| 11325 |
msgid "Display the numbers of votes on bar chart results"
|
| 11326 |
msgstr ""
|
| 11327 |
|
| 11328 |
+
#: admin/locale.php:1285 library/modules/polls/admin/admin-loader.php:175
|
| 11329 |
msgid "Delete answer"
|
| 11330 |
msgstr ""
|
| 11331 |
|
| 11332 |
+
#: admin/locale.php:1286
|
| 11333 |
msgid "Answer options"
|
| 11334 |
msgstr ""
|
| 11335 |
|
| 11336 |
+
#: admin/locale.php:1287
|
| 11337 |
msgid "Enable custom input"
|
| 11338 |
msgstr ""
|
| 11339 |
|
| 11340 |
+
#: admin/locale.php:1288
|
| 11341 |
msgid "Remove custom input"
|
| 11342 |
msgstr ""
|
| 11343 |
|
| 11344 |
+
#: admin/locale.php:1290
|
| 11345 |
msgid ""
|
| 11346 |
"A poll without answers isn’t going to be very useful… Add your answers "
|
| 11347 |
"above!"
|
| 11348 |
msgstr ""
|
| 11349 |
|
| 11350 |
+
#: admin/locale.php:1291 admin/views/quiz/entries/content-leads-none.php:192
|
| 11351 |
#: admin/views/quiz/entries/content-leads.php:301
|
| 11352 |
#: admin/views/quiz/entries/content-leads.php:363 library/class-export.php:446
|
| 11353 |
#: library/modules/polls/admin/admin-loader.php:182
|
| 11355 |
msgid "Question"
|
| 11356 |
msgstr ""
|
| 11357 |
|
| 11358 |
+
#: admin/locale.php:1292
|
| 11359 |
msgid "Start by adding the question you will be asking poll visitors to vote on."
|
| 11360 |
msgstr ""
|
| 11361 |
|
| 11362 |
+
#: admin/locale.php:1293
|
| 11363 |
msgid "What is your main question?"
|
| 11364 |
msgstr ""
|
| 11365 |
|
| 11366 |
+
#: admin/locale.php:1294
|
| 11367 |
msgid "E.g. Why did the chicken cross the road?"
|
| 11368 |
msgstr ""
|
| 11369 |
|
| 11370 |
+
#: admin/locale.php:1295
|
| 11371 |
msgid "Feature Image (optional)"
|
| 11372 |
msgstr ""
|
| 11373 |
|
| 11374 |
+
#: admin/locale.php:1296
|
| 11375 |
msgid ""
|
| 11376 |
"This image will appear under your main question and can be used to create "
|
| 11377 |
"polls based on an image."
|
| 11378 |
msgstr ""
|
| 11379 |
|
| 11380 |
+
#: admin/locale.php:1297
|
| 11381 |
msgid "Enter an optional description"
|
| 11382 |
msgstr ""
|
| 11383 |
|
| 11384 |
+
#: admin/locale.php:1298
|
| 11385 |
msgid ""
|
| 11386 |
"This will appear below the main question and can be used to further explain "
|
| 11387 |
"the main question."
|
| 11388 |
msgstr ""
|
| 11389 |
|
| 11390 |
+
#: admin/locale.php:1299
|
| 11391 |
msgid ""
|
| 11392 |
"Now add answers to your question that your users will use to vote with. Add "
|
| 11393 |
"as many as you like, just be careful to make sure each one is unique!"
|
| 11394 |
msgstr ""
|
| 11395 |
|
| 11396 |
+
#: admin/locale.php:1300
|
| 11397 |
msgid "Customize the button label used for submitting the users answer."
|
| 11398 |
msgstr ""
|
| 11399 |
|
| 11400 |
+
#: admin/locale.php:1301
|
| 11401 |
msgid "Button Text"
|
| 11402 |
msgstr ""
|
| 11403 |
|
| 11404 |
+
#: admin/locale.php:1302 library/modules/polls/admin/admin-loader.php:187
|
| 11405 |
msgid "E.g. Vote"
|
| 11406 |
msgstr ""
|
| 11407 |
|
| 11408 |
+
#: admin/locale.php:1303 library/modules/polls/admin/admin-page-new.php:22
|
| 11409 |
msgid "Edit Poll"
|
| 11410 |
msgstr ""
|
| 11411 |
|
| 11412 |
+
#: admin/locale.php:1304
|
| 11413 |
msgid "Name your poll"
|
| 11414 |
msgstr ""
|
| 11415 |
|
| 11416 |
+
#: admin/locale.php:1305
|
| 11417 |
msgid "Give your poll a name"
|
| 11418 |
msgstr ""
|
| 11419 |
|
| 11420 |
+
#: admin/locale.php:1306
|
| 11421 |
msgid "You need to save this poll before using integrations."
|
| 11422 |
msgstr ""
|
| 11423 |
|
| 11424 |
+
#: admin/locale.php:1307
|
| 11425 |
msgid "Poll answers can not be empty."
|
| 11426 |
msgstr ""
|
| 11427 |
|
| 11428 |
+
#: admin/locale.php:1308
|
| 11429 |
msgid "Please enter valid voting limit."
|
| 11430 |
msgstr ""
|
| 11431 |
|
| 11432 |
+
#: admin/locale.php:1309
|
| 11433 |
msgid "Delete Answer"
|
| 11434 |
msgstr ""
|
| 11435 |
|
| 11436 |
+
#: admin/locale.php:1310
|
| 11437 |
msgid ""
|
| 11438 |
"Deleting this answer will remove its value from the existing submissions as "
|
| 11439 |
"well."
|
| 11440 |
msgstr ""
|
| 11441 |
|
| 11442 |
+
#: admin/locale.php:1311
|
| 11443 |
msgid "Publishing poll…"
|
| 11444 |
msgstr ""
|
| 11445 |
|
| 11446 |
+
#: admin/locale.php:1312
|
| 11447 |
msgid ""
|
| 11448 |
"Your poll is now ready to be embedded into a page or template of your "
|
| 11449 |
"choice. Simply copy and paste the shortcode below to display it!"
|
| 11450 |
msgstr ""
|
| 11451 |
|
| 11452 |
+
#: admin/locale.php:1314
|
| 11453 |
msgid "Notifications"
|
| 11454 |
msgstr ""
|
| 11455 |
|
| 11456 |
+
#: admin/locale.php:1315
|
| 11457 |
msgid ""
|
| 11458 |
"Optionally, you can send a notification email to nominated email accounts "
|
| 11459 |
"when poll submissions come in."
|
| 11460 |
msgstr ""
|
| 11461 |
|
| 11462 |
+
#: admin/locale.php:1318 library/helpers/helper-fields.php:1851
|
| 11463 |
msgid "Poll Result"
|
| 11464 |
msgstr ""
|
| 11465 |
|
| 11466 |
+
#: admin/locale.php:1319
|
| 11467 |
msgid "By default we'll store all submissions in your database."
|
| 11468 |
msgstr ""
|
| 11469 |
|
| 11470 |
+
#: admin/locale.php:1320
|
| 11471 |
msgid ""
|
| 11472 |
"Choose how you want to handle this poll's data storage. By default we'll "
|
| 11473 |
"use the configuration you've set in your {{link}}global privacy "
|
| 11474 |
"settings{{/link}}."
|
| 11475 |
msgstr ""
|
| 11476 |
|
| 11477 |
+
#: admin/locale.php:1321
|
| 11478 |
msgid "How long do you want to retain this poll's submissions for?"
|
| 11479 |
msgstr ""
|
| 11480 |
|
| 11481 |
+
#: admin/locale.php:1322
|
| 11482 |
msgid "Your default setting value is to keep the submissions %s."
|
| 11483 |
msgstr ""
|
| 11484 |
|
| 11485 |
+
#: admin/locale.php:1323 admin/views/settings/data/forms-privacy.php:29
|
| 11486 |
#: admin/views/settings/data/polls-privacy.php:29
|
| 11487 |
msgid "IP Retention"
|
| 11488 |
msgstr ""
|
| 11489 |
|
| 11490 |
+
#: admin/locale.php:1324 admin/views/settings/data/polls-privacy.php:30
|
| 11491 |
msgid ""
|
| 11492 |
"Choose how long to retain IP address before a submission is anonymized. "
|
| 11493 |
"Keep in mind that the IP address is being used in checking multiple votes "
|
| 11494 |
"from same user."
|
| 11495 |
msgstr ""
|
| 11496 |
|
| 11497 |
+
#: admin/locale.php:1325
|
| 11498 |
msgid "Your default setting keep the IPs %s."
|
| 11499 |
msgstr ""
|
| 11500 |
|
| 11501 |
+
#: admin/locale.php:1326
|
| 11502 |
msgid "Leave the field blank to keep IPs forever."
|
| 11503 |
msgstr ""
|
| 11504 |
|
| 11505 |
+
#: admin/locale.php:1327
|
| 11506 |
msgid "Disabled"
|
| 11507 |
msgstr ""
|
| 11508 |
|
| 11509 |
+
#: admin/locale.php:1328
|
| 11510 |
msgid ""
|
| 11511 |
"Choose a pre-made style for your quiz and further customize it's appearance "
|
| 11512 |
"below."
|
| 11513 |
msgstr ""
|
| 11514 |
|
| 11515 |
+
#: admin/locale.php:1329
|
| 11516 |
msgid "Question text?"
|
| 11517 |
msgstr ""
|
| 11518 |
|
| 11519 |
+
#: admin/locale.php:1330
|
| 11520 |
msgid "Option Unselected"
|
| 11521 |
msgstr ""
|
| 11522 |
|
| 11523 |
+
#: admin/locale.php:1331
|
| 11524 |
msgid "Option Selected"
|
| 11525 |
msgstr ""
|
| 11526 |
|
| 11527 |
+
#: admin/locale.php:1332
|
| 11528 |
msgid ""
|
| 11529 |
"You have opted for no stylesheet to be enqueued. The quiz will inherit "
|
| 11530 |
"styles from your theme's CSS."
|
| 11531 |
msgstr ""
|
| 11532 |
|
| 11533 |
+
#: admin/locale.php:1333
|
| 11534 |
msgid ""
|
| 11535 |
"Customize your quiz layout by adjusting the answers layout and overall quiz "
|
| 11536 |
"alignment."
|
| 11537 |
msgstr ""
|
| 11538 |
|
| 11539 |
+
#: admin/locale.php:1334
|
| 11540 |
msgid "Choose whether the quiz answers should appear in a list or a grid."
|
| 11541 |
msgstr ""
|
| 11542 |
|
| 11543 |
+
#: admin/locale.php:1335
|
| 11544 |
msgid ""
|
| 11545 |
"Choose the number of columns to fit in one row. Note that grid layout "
|
| 11546 |
"changes to list on smaller screens so this won't affect the smaller screens."
|
| 11547 |
msgstr ""
|
| 11548 |
|
| 11549 |
+
#: admin/locale.php:1336
|
| 11550 |
msgid "Quiz Alignment"
|
| 11551 |
msgstr ""
|
| 11552 |
|
| 11553 |
+
#: admin/locale.php:1337
|
| 11554 |
msgid ""
|
| 11555 |
"Choose the overall alignment of your quiz. This setting affects everything, "
|
| 11556 |
"including title, description, questions and answers, buttons, and social "
|
| 11557 |
"share message."
|
| 11558 |
msgstr ""
|
| 11559 |
|
| 11560 |
+
#: admin/locale.php:1339
|
| 11561 |
msgid "Question Item Ordering"
|
| 11562 |
msgstr ""
|
| 11563 |
|
| 11564 |
+
#: admin/locale.php:1340
|
| 11565 |
msgid ""
|
| 11566 |
"Choose the order of items (Questions, Images, and Descriptions) from "
|
| 11567 |
"{{strong}}Top{{/strong}} to {{strong}}Bottom{{/strong}} in this quiz."
|
| 11568 |
msgstr ""
|
| 11569 |
|
| 11570 |
+
#: admin/locale.php:1341
|
| 11571 |
#: library/modules/custom-forms/admin/admin-loader.php:146
|
| 11572 |
msgid "Image"
|
| 11573 |
msgstr ""
|
| 11574 |
|
| 11575 |
+
#: admin/locale.php:1342
|
| 11576 |
msgid "Quiz Container"
|
| 11577 |
msgstr ""
|
| 11578 |
|
| 11579 |
+
#: admin/locale.php:1343
|
| 11580 |
msgid "Customize the quiz container as per your liking."
|
| 11581 |
msgstr ""
|
| 11582 |
|
| 11583 |
+
#: admin/locale.php:1344
|
| 11584 |
msgid ""
|
| 11585 |
"By default the quiz will fill the available space where you insert it. You "
|
| 11586 |
"can add some padding here to better suit your theme."
|
| 11587 |
msgstr ""
|
| 11588 |
|
| 11589 |
+
#: admin/locale.php:1345
|
| 11590 |
msgid "Add an optional border around the quiz."
|
| 11591 |
msgstr ""
|
| 11592 |
|
| 11593 |
+
#: admin/locale.php:1346
|
| 11594 |
msgid "Choose how much spacing you want between each quiz question."
|
| 11595 |
msgstr ""
|
| 11596 |
|
| 11597 |
+
#: admin/locale.php:1347
|
| 11598 |
msgid "Maximum Width"
|
| 11599 |
msgstr ""
|
| 11600 |
|
| 11601 |
+
#: admin/locale.php:1348
|
| 11602 |
msgid ""
|
| 11603 |
"Choose the maximum container width for your quiz. Full Width means quiz "
|
| 11604 |
"container will fill the 100% available space where you insert it, and the "
|
| 11605 |
"Custom option lets you define a maximum container width."
|
| 11606 |
msgstr ""
|
| 11607 |
|
| 11608 |
+
#: admin/locale.php:1349
|
| 11609 |
msgid "Full Width"
|
| 11610 |
msgstr ""
|
| 11611 |
|
| 11612 |
+
#: admin/locale.php:1350
|
| 11613 |
msgid "Maximum width"
|
| 11614 |
msgstr ""
|
| 11615 |
|
| 11616 |
+
#: admin/locale.php:1351
|
| 11617 |
msgid "Messages"
|
| 11618 |
msgstr ""
|
| 11619 |
|
| 11620 |
+
#: admin/locale.php:1352
|
| 11621 |
msgid ""
|
| 11622 |
"Choose the copy of the messages for the correct and wrong answers and also "
|
| 11623 |
"for the final score count."
|
| 11624 |
msgstr ""
|
| 11625 |
|
| 11626 |
+
#: admin/locale.php:1353
|
| 11627 |
msgid "Correct Answer Message"
|
| 11628 |
msgstr ""
|
| 11629 |
|
| 11630 |
+
#: admin/locale.php:1354
|
| 11631 |
msgid ""
|
| 11632 |
"Use {{strong}}%UserAnswer%{{/strong}} and "
|
| 11633 |
"{{strong}}%CorrectAnswer%{{/strong}} to display the answer chosen by the "
|
| 11634 |
"user and the correct answer for each question respectively."
|
| 11635 |
msgstr ""
|
| 11636 |
|
| 11637 |
+
#: admin/locale.php:1355
|
| 11638 |
msgid "Incorrect Answer Message"
|
| 11639 |
msgstr ""
|
| 11640 |
|
| 11641 |
+
#: admin/locale.php:1356
|
| 11642 |
msgid "Final Count Message"
|
| 11643 |
msgstr ""
|
| 11644 |
|
| 11645 |
+
#: admin/locale.php:1357
|
| 11646 |
msgid ""
|
| 11647 |
"Final count message will appear after the quiz is complete. Use "
|
| 11648 |
"{{strong}}%YourNum%{{/strong}} to display number of correct answers and "
|
| 11649 |
"{{strong}}%Total%{{/strong}} for total number of questions."
|
| 11650 |
msgstr ""
|
| 11651 |
|
| 11652 |
+
#: admin/locale.php:1359 library/helpers/helper-fields.php:2034
|
| 11653 |
msgid "Quiz Answer"
|
| 11654 |
msgstr ""
|
| 11655 |
|
| 11656 |
+
#: admin/locale.php:1361 admin/views/quiz/entries/content-leads-none.php:108
|
| 11657 |
#: library/modules/quizzes/admin/admin-loader.php:525
|
| 11658 |
#: library/modules/quizzes/admin/admin-loader.php:569
|
| 11659 |
msgid "Questions"
|
| 11660 |
msgstr ""
|
| 11661 |
|
| 11662 |
+
#: admin/locale.php:1362
|
| 11663 |
msgid "Choose how questions will be presented in the quiz."
|
| 11664 |
msgstr ""
|
| 11665 |
|
| 11666 |
+
#: admin/locale.php:1363
|
| 11667 |
msgid "Question Presentation"
|
| 11668 |
msgstr ""
|
| 11669 |
|
| 11670 |
+
#: admin/locale.php:1364
|
| 11671 |
msgid ""
|
| 11672 |
"Use this option to set how questions in this quiz will be presented. "
|
| 11673 |
"Paginated questions will display a number of questions to users at a time."
|
| 11674 |
msgstr ""
|
| 11675 |
|
| 11676 |
+
#: admin/locale.php:1367
|
| 11677 |
msgid "Number of questions per page"
|
| 11678 |
msgstr ""
|
| 11679 |
|
| 11680 |
+
#: admin/locale.php:1368
|
| 11681 |
msgid "Enter the number of questions to be displayed per page."
|
| 11682 |
msgstr ""
|
| 11683 |
|
| 11684 |
+
#: admin/locale.php:1369
|
| 11685 |
msgid "Start quiz button text"
|
| 11686 |
msgstr ""
|
| 11687 |
|
| 11688 |
+
#: admin/locale.php:1370
|
| 11689 |
msgid ""
|
| 11690 |
"Enter your start quiz button text. This button will not be shown If the "
|
| 11691 |
"lead generation is enabled and set to show before the quiz."
|
| 11692 |
msgstr ""
|
| 11693 |
|
| 11694 |
+
#: admin/locale.php:1371 library/render/class-render-form.php:703
|
| 11695 |
msgid "Start Quiz"
|
| 11696 |
msgstr ""
|
| 11697 |
|
| 11698 |
+
#: admin/locale.php:1372
|
| 11699 |
msgid "Previous button text"
|
| 11700 |
msgstr ""
|
| 11701 |
|
| 11702 |
+
#: admin/locale.php:1373
|
| 11703 |
msgid "Next button text"
|
| 11704 |
msgstr ""
|
| 11705 |
|
| 11706 |
+
#: admin/locale.php:1374
|
| 11707 |
msgid ""
|
| 11708 |
"By default, quiz navigation button texts are set to “Next”, and “Previous”, "
|
| 11709 |
"you can use the fields above to set a custom texts for these buttons."
|
| 11710 |
msgstr ""
|
| 11711 |
|
| 11712 |
+
#: admin/locale.php:1375
|
| 11713 |
msgid "Show page indicator"
|
| 11714 |
msgstr ""
|
| 11715 |
|
| 11716 |
+
#: admin/locale.php:1376
|
| 11717 |
msgid "Display current, and total page indicator"
|
| 11718 |
msgstr ""
|
| 11719 |
|
| 11720 |
+
#: admin/locale.php:1377
|
| 11721 |
msgid "Choose how you want your quiz to be rendered for users."
|
| 11722 |
msgstr ""
|
| 11723 |
|
| 11724 |
+
#: admin/locale.php:1378
|
| 11725 |
msgid "Load quiz using AJAX"
|
| 11726 |
msgstr ""
|
| 11727 |
|
| 11728 |
+
#: admin/locale.php:1379
|
| 11729 |
msgid ""
|
| 11730 |
"Enabling this feature will load the quiz via AJAX after the page has loaded "
|
| 11731 |
"up, effectively speeding up your page load time. This method can also (in "
|
| 11732 |
"most cases) avoid page caching issues with your quiz."
|
| 11733 |
msgstr ""
|
| 11734 |
|
| 11735 |
+
#: admin/locale.php:1380
|
| 11736 |
msgid "Prevent page caching on quiz pages"
|
| 11737 |
msgstr ""
|
| 11738 |
|
| 11739 |
+
#: admin/locale.php:1381
|
| 11740 |
msgid ""
|
| 11741 |
"Page caching plugins serve a static HTML version of the page which can "
|
| 11742 |
"cause issues to your dynamic quizzes. By enabling this, we'll use "
|
| 11744 |
"quiz on it from being cached."
|
| 11745 |
msgstr ""
|
| 11746 |
|
| 11747 |
+
#: admin/locale.php:1382 library/modules/quizzes/admin/admin-loader.php:524
|
| 11748 |
msgid "Results"
|
| 11749 |
msgstr ""
|
| 11750 |
|
| 11751 |
+
#: admin/locale.php:1383
|
| 11752 |
msgid "Choose how do you want to show quiz results to the participants."
|
| 11753 |
msgstr ""
|
| 11754 |
|
| 11755 |
+
#: admin/locale.php:1384
|
| 11756 |
msgid "Display Method"
|
| 11757 |
msgstr ""
|
| 11758 |
|
| 11759 |
+
#: admin/locale.php:1385
|
| 11760 |
msgid ""
|
| 11761 |
"Choose whether to display the correct answer as the user answers each "
|
| 11762 |
"question or after the quiz is submitted."
|
| 11763 |
msgstr ""
|
| 11764 |
|
| 11765 |
+
#: admin/locale.php:1386
|
| 11766 |
msgid "Real Time"
|
| 11767 |
msgstr ""
|
| 11768 |
|
| 11769 |
+
#: admin/locale.php:1387
|
| 11770 |
msgid "On Submission"
|
| 11771 |
msgstr ""
|
| 11772 |
|
| 11773 |
+
#: admin/locale.php:1388
|
| 11774 |
msgid "Note: Participants can only choose one answer with \"Real Time\" method."
|
| 11775 |
msgstr ""
|
| 11776 |
|
| 11777 |
+
#: admin/locale.php:1389
|
| 11778 |
msgid "Evaluation Loader"
|
| 11779 |
msgstr ""
|
| 11780 |
|
| 11781 |
+
#: admin/locale.php:1390
|
| 11782 |
msgid ""
|
| 11783 |
"Choose whether you want to show a loader while evaluating the selected "
|
| 11784 |
"answer in real-time. We recommend using this on long quizzes since "
|
| 11785 |
"evaluating an answer might take a bit longer."
|
| 11786 |
msgstr ""
|
| 11787 |
|
| 11788 |
+
#: admin/locale.php:1391
|
| 11789 |
msgid "Note: You can change the color of the loader in the Appearance tab."
|
| 11790 |
msgstr ""
|
| 11791 |
|
| 11792 |
+
#: admin/locale.php:1392
|
| 11793 |
msgid "Social Sharing"
|
| 11794 |
msgstr ""
|
| 11795 |
|
| 11796 |
+
#: admin/locale.php:1393
|
| 11797 |
msgid ""
|
| 11798 |
"Choose whether you want to allow the quiz participants to share their "
|
| 11799 |
"results on social media."
|
| 11800 |
msgstr ""
|
| 11801 |
|
| 11802 |
+
#: admin/locale.php:1394
|
| 11803 |
msgid "Social Sharing Platforms"
|
| 11804 |
msgstr ""
|
| 11805 |
|
| 11806 |
+
#: admin/locale.php:1398
|
| 11807 |
msgid "Social Share Message"
|
| 11808 |
msgstr ""
|
| 11809 |
|
| 11810 |
+
#: admin/locale.php:1399
|
| 11811 |
msgid "Page/Post Title"
|
| 11812 |
msgstr ""
|
| 11813 |
|
| 11814 |
+
#: admin/locale.php:1400
|
| 11815 |
msgid "Page/Post URL"
|
| 11816 |
msgstr ""
|
| 11817 |
|
| 11818 |
+
#: admin/locale.php:1401
|
| 11819 |
msgid "Site URL"
|
| 11820 |
msgstr ""
|
| 11821 |
|
| 11822 |
+
#: admin/locale.php:1402
|
| 11823 |
msgid ""
|
| 11824 |
"Want to enhance how the result will look when shared on Social Media? "
|
| 11825 |
"{{link}}SmartCrawl{{/link}} OpenGraph and Twitter Card support lets you "
|
| 11826 |
"choose how your content looks when it's shared on social media."
|
| 11827 |
msgstr ""
|
| 11828 |
|
| 11829 |
+
#: admin/locale.php:1403
|
| 11830 |
msgid "Correct Answer"
|
| 11831 |
msgstr ""
|
| 11832 |
|
| 11833 |
+
#: admin/locale.php:1404
|
| 11834 |
msgid "Select Personality"
|
| 11835 |
msgstr ""
|
| 11836 |
|
| 11837 |
+
#: admin/locale.php:1406
|
| 11838 |
msgid ""
|
| 11839 |
"A quiz without questions is not going to be very useful… Add your questions "
|
| 11840 |
"above!"
|
| 11841 |
msgstr ""
|
| 11842 |
|
| 11843 |
+
#: admin/locale.php:1407
|
| 11844 |
#: library/modules/quizzes/admin/admin-page-new-knowledge.php:22
|
| 11845 |
#: library/modules/quizzes/admin/admin-page-new-nowrong.php:21
|
| 11846 |
msgid "Edit Quiz"
|
| 11847 |
msgstr ""
|
| 11848 |
|
| 11849 |
+
#: admin/locale.php:1408
|
| 11850 |
msgid "Give your quiz a name"
|
| 11851 |
msgstr ""
|
| 11852 |
|
| 11853 |
+
#: admin/locale.php:1409
|
| 11854 |
msgid "You need to save this quiz before using integrations."
|
| 11855 |
msgstr ""
|
| 11856 |
|
| 11857 |
+
#: admin/locale.php:1410
|
| 11858 |
msgid "TRY AGAIN"
|
| 11859 |
msgstr ""
|
| 11860 |
|
| 11861 |
+
#: admin/locale.php:1411
|
| 11862 |
msgid "Intro"
|
| 11863 |
msgstr ""
|
| 11864 |
|
| 11865 |
+
#: admin/locale.php:1412
|
| 11866 |
msgid ""
|
| 11867 |
"Start by adding a title for your quiz to let your visitors know what this "
|
| 11868 |
"quiz is all about."
|
| 11869 |
msgstr ""
|
| 11870 |
|
| 11871 |
+
#: admin/locale.php:1413
|
| 11872 |
msgid "Which superhero are you?"
|
| 11873 |
msgstr ""
|
| 11874 |
|
| 11875 |
+
#: admin/locale.php:1414
|
| 11876 |
msgid "Choose a title to grab the attention of your visitors."
|
| 11877 |
msgstr ""
|
| 11878 |
|
| 11879 |
+
#: admin/locale.php:1415
|
| 11880 |
msgid "Feature Image"
|
| 11881 |
msgstr ""
|
| 11882 |
|
| 11883 |
+
#: admin/locale.php:1416
|
| 11884 |
msgid "Upload a nice feature image for your quiz."
|
| 11885 |
msgstr ""
|
| 11886 |
|
| 11887 |
+
#: admin/locale.php:1417
|
| 11888 |
msgid "Upload Feature Image"
|
| 11889 |
msgstr ""
|
| 11890 |
|
| 11891 |
+
#: admin/locale.php:1418
|
| 11892 |
msgid "Provide your visitors with more information about your quiz."
|
| 11893 |
msgstr ""
|
| 11894 |
|
| 11895 |
+
#: admin/locale.php:1419
|
| 11896 |
msgid "Personalities"
|
| 11897 |
msgstr ""
|
| 11898 |
|
| 11899 |
+
#: admin/locale.php:1420 admin/views/common/reports/report-content.php:63
|
| 11900 |
msgid "Leads"
|
| 11901 |
msgstr ""
|
| 11902 |
|
| 11903 |
+
#: admin/locale.php:1421
|
| 11904 |
msgid "Capture Leads"
|
| 11905 |
msgstr ""
|
| 11906 |
|
| 11907 |
+
#: admin/locale.php:1422
|
| 11908 |
msgid ""
|
| 11909 |
"Collect participants' details (e.g. name, email, etc.) by integrating a "
|
| 11910 |
"lead generation form in your quiz."
|
| 11911 |
msgstr ""
|
| 11912 |
|
| 11913 |
+
#: admin/locale.php:1423
|
| 11914 |
msgid "Lead generation form"
|
| 11915 |
msgstr ""
|
| 11916 |
|
| 11917 |
+
#: admin/locale.php:1424
|
| 11918 |
msgid ""
|
| 11919 |
"Customize the default lead generation form using the edit button below. "
|
| 11920 |
"Note that this lead generation form has limited settings only, and the rest "
|
| 11923 |
"Notifications, Integrations, etc.)."
|
| 11924 |
msgstr ""
|
| 11925 |
|
| 11926 |
+
#: admin/locale.php:1425
|
| 11927 |
msgid "%s - Leads form"
|
| 11928 |
msgstr ""
|
| 11929 |
|
| 11930 |
+
#: admin/locale.php:1426
|
| 11931 |
msgid "Form Placement"
|
| 11932 |
msgstr ""
|
| 11933 |
|
| 11934 |
+
#: admin/locale.php:1427
|
| 11935 |
msgid "Where do you want to embed the lead generation form in your quiz?"
|
| 11936 |
msgstr ""
|
| 11937 |
|
| 11938 |
+
#: admin/locale.php:1428
|
| 11939 |
msgid "Beginning of quiz"
|
| 11940 |
msgstr ""
|
| 11941 |
|
| 11942 |
+
#: admin/locale.php:1429
|
| 11943 |
msgid "Before showing results"
|
| 11944 |
msgstr ""
|
| 11945 |
|
| 11946 |
+
#: admin/locale.php:1430
|
| 11947 |
msgid "Skip Form"
|
| 11948 |
msgstr ""
|
| 11949 |
|
| 11950 |
+
#: admin/locale.php:1431
|
| 11951 |
msgid "Enable this option if you want to allow your participants to skip the form."
|
| 11952 |
msgstr ""
|
| 11953 |
|
| 11954 |
+
#: admin/locale.php:1432
|
| 11955 |
msgid "Link text"
|
| 11956 |
msgstr ""
|
| 11957 |
|
| 11958 |
+
#: admin/locale.php:1433
|
| 11959 |
#: library/modules/custom-forms/front/front-render.php:3047
|
| 11960 |
msgid "Skip and continue"
|
| 11961 |
msgstr ""
|
| 11962 |
|
| 11963 |
+
#: admin/locale.php:1434
|
| 11964 |
msgid "Delete personality %s"
|
| 11965 |
msgstr ""
|
| 11966 |
|
| 11967 |
+
#: admin/locale.php:1435
|
| 11968 |
msgid "Are you sure you wish to delete this personality?"
|
| 11969 |
msgstr ""
|
| 11970 |
|
| 11971 |
+
#: admin/locale.php:1436
|
| 11972 |
msgid "Edit Question"
|
| 11973 |
msgstr ""
|
| 11974 |
|
| 11975 |
+
#: admin/locale.php:1437
|
| 11976 |
msgid "%s can't be deleted"
|
| 11977 |
msgstr ""
|
| 11978 |
|
| 11979 |
+
#: admin/locale.php:1438
|
| 11980 |
msgid ""
|
| 11981 |
"Please remove the reference of this Personality from the questions in your "
|
| 11982 |
"quiz and then delete this."
|
| 11983 |
msgstr ""
|
| 11984 |
|
| 11985 |
+
#: admin/locale.php:1439
|
| 11986 |
msgid "Delete Question"
|
| 11987 |
msgstr ""
|
| 11988 |
|
| 11989 |
+
#: admin/locale.php:1440
|
| 11990 |
msgid ""
|
| 11991 |
"Deleting this question will remove its value from the existing submissions "
|
| 11992 |
"as well."
|
| 11993 |
msgstr ""
|
| 11994 |
|
| 11995 |
+
#: admin/locale.php:1441
|
| 11996 |
msgid "Quiz data"
|
| 11997 |
msgstr ""
|
| 11998 |
|
| 11999 |
+
#: admin/locale.php:1442
|
| 12000 |
msgid "Lead data"
|
| 12001 |
msgstr ""
|
| 12002 |
|
| 12003 |
+
#: admin/locale.php:1443
|
| 12004 |
msgid "Misc data"
|
| 12005 |
msgstr ""
|
| 12006 |
|
| 12007 |
+
#: admin/locale.php:1444
|
| 12008 |
msgid "Quiz Data"
|
| 12009 |
msgstr ""
|
| 12010 |
|
| 12011 |
+
#: admin/locale.php:1445
|
| 12012 |
msgid "Add Personality"
|
| 12013 |
msgstr ""
|
| 12014 |
|
| 12015 |
+
#: admin/locale.php:1446
|
| 12016 |
msgid "Edit Personality"
|
| 12017 |
msgstr ""
|
| 12018 |
|
| 12019 |
+
#: admin/locale.php:1447
|
| 12020 |
msgid "E.g. Iron Man"
|
| 12021 |
msgstr ""
|
| 12022 |
|
| 12023 |
+
#: admin/locale.php:1448
|
| 12024 |
msgid "Please validate your fields!"
|
| 12025 |
msgstr ""
|
| 12026 |
|
| 12027 |
+
#: admin/locale.php:1449
|
| 12028 |
msgid "Publishing quiz…"
|
| 12029 |
msgstr ""
|
| 12030 |
|
| 12031 |
+
#: admin/locale.php:1450
|
| 12032 |
msgid ""
|
| 12033 |
"Great work! Please hold tight a few moments while we publish your quiz to "
|
| 12034 |
"the world."
|
| 12035 |
msgstr ""
|
| 12036 |
|
| 12037 |
+
#: admin/locale.php:1451
|
| 12038 |
msgid ""
|
| 12039 |
"Options cannot be empty. You either need to enter answer text or upload an "
|
| 12040 |
"image for the empty options."
|
| 12041 |
msgstr ""
|
| 12042 |
|
| 12043 |
+
#: admin/locale.php:1452
|
| 12044 |
msgid ""
|
| 12045 |
"You need to select at least one correct answer before you can add this "
|
| 12046 |
"question."
|
| 12047 |
msgstr ""
|
| 12048 |
|
| 12049 |
+
#: admin/locale.php:1453
|
| 12050 |
msgid "You need to select an associated personality for every option."
|
| 12051 |
msgstr ""
|
| 12052 |
|
| 12053 |
+
#: admin/locale.php:1454
|
| 12054 |
msgid "Description (Optional)"
|
| 12055 |
msgstr ""
|
| 12056 |
|
| 12057 |
+
#: admin/locale.php:1455
|
| 12058 |
msgid ""
|
| 12059 |
"Users can select one answer with the {{b}}Real Time{{/b}} display method. "
|
| 12060 |
"To allow multiple answers, you can switch to the {{b}}On Submission{{/b}} "
|
| 12061 |
"display method in {{a}}Behaviour → Display Method{{/a}}."
|
| 12062 |
msgstr ""
|
| 12063 |
|
| 12064 |
+
#: admin/locale.php:1456
|
| 12065 |
msgid ""
|
| 12066 |
"Note that user's selection will be considered as correct when any of the "
|
| 12067 |
"correct answers is selected."
|
| 12068 |
msgstr ""
|
| 12069 |
|
| 12070 |
+
#: admin/locale.php:1457
|
| 12071 |
msgid ""
|
| 12072 |
"Note: For questions with multiple correct answers, user's selection will be "
|
| 12073 |
"considered as correct only when all correct answers are selected."
|
| 12074 |
msgstr ""
|
| 12075 |
|
| 12076 |
+
#: admin/locale.php:1458
|
| 12077 |
msgid ""
|
| 12078 |
"Add answers to your question and choose an associated personality. Multiple "
|
| 12079 |
"answers can be associated with a single personality as well."
|
| 12080 |
msgstr ""
|
| 12081 |
|
| 12082 |
+
#: admin/locale.php:1459
|
| 12083 |
msgid "Please, validate your fields!"
|
| 12084 |
msgstr ""
|
| 12085 |
|
| 12086 |
+
#: admin/locale.php:1460
|
| 12087 |
msgid ""
|
| 12088 |
"Your quiz is now ready to be embedded into a page or template of your "
|
| 12089 |
"choice. Simply copy and paste the shortcode below to display it!"
|
| 12090 |
msgstr ""
|
| 12091 |
|
| 12092 |
+
#: admin/locale.php:1461
|
| 12093 |
msgid "close this dialog window"
|
| 12094 |
msgstr ""
|
| 12095 |
|
| 12096 |
+
#: admin/locale.php:1462
|
| 12097 |
msgid "Button Processing Text"
|
| 12098 |
msgstr ""
|
| 12099 |
|
| 12100 |
+
#: admin/locale.php:1463
|
| 12101 |
msgid "Sending…"
|
| 12102 |
msgstr ""
|
| 12103 |
|
| 12104 |
+
#: admin/locale.php:1464
|
| 12105 |
msgid "This text will appear as button text while the quiz is being submitted."
|
| 12106 |
msgstr ""
|
| 12107 |
|
| 12108 |
+
#: admin/locale.php:1465
|
| 12109 |
msgid "Custom CSS Classes"
|
| 12110 |
msgstr ""
|
| 12111 |
|
| 12112 |
+
#: admin/locale.php:1466
|
| 12113 |
msgid "E.g. form-submit-btn"
|
| 12114 |
msgstr ""
|
| 12115 |
|
| 12116 |
+
#: admin/locale.php:1467
|
| 12117 |
msgid ""
|
| 12118 |
"These will be output as you see them here. To add multiple classes, "
|
| 12119 |
"separate them with a space. For example, \"form-submit-btn button\" will "
|
| 12120 |
"add two classes \"form-submit-btn\" and \"button\"."
|
| 12121 |
msgstr ""
|
| 12122 |
|
| 12123 |
+
#: admin/locale.php:1468
|
| 12124 |
msgid ""
|
| 12125 |
"You can send customized email notifications to your site admins and "
|
| 12126 |
"participant on successful quiz submission. Use advanced features such as "
|
| 12127 |
"email routing, and conditions to have granular control over them."
|
| 12128 |
msgstr ""
|
| 12129 |
|
| 12130 |
+
#: admin/locale.php:1469
|
| 12131 |
msgid ""
|
| 12132 |
"Optionally, you can send a notification email to nominated email accounts "
|
| 12133 |
"when quiz submissions come in."
|
| 12134 |
msgstr ""
|
| 12135 |
|
| 12136 |
+
#: admin/locale.php:1470
|
| 12137 |
msgid "Add as many emails as you like"
|
| 12138 |
msgstr ""
|
| 12139 |
|
| 12140 |
+
#: admin/locale.php:1471
|
| 12141 |
msgid "Final Score"
|
| 12142 |
msgstr ""
|
| 12143 |
|
| 12144 |
+
#: admin/locale.php:1473
|
| 12145 |
msgid "Personality Result"
|
| 12146 |
msgstr ""
|
| 12147 |
|
| 12148 |
+
#: admin/locale.php:1474
|
| 12149 |
msgid "Is correct"
|
| 12150 |
msgstr ""
|
| 12151 |
|
| 12152 |
+
#: admin/locale.php:1475
|
| 12153 |
msgid "Is incorrect"
|
| 12154 |
msgstr ""
|
| 12155 |
|
| 12156 |
+
#: admin/locale.php:1476
|
| 12157 |
msgid "Is final result"
|
| 12158 |
msgstr ""
|
| 12159 |
|
| 12160 |
+
#: admin/locale.php:1477
|
| 12161 |
msgid "Is not final result"
|
| 12162 |
msgstr ""
|
| 12163 |
|
| 12164 |
+
#: admin/locale.php:1478
|
| 12165 |
msgid "greater than"
|
| 12166 |
msgstr ""
|
| 12167 |
|
| 12168 |
+
#: admin/locale.php:1479
|
| 12169 |
msgid "less than"
|
| 12170 |
msgstr ""
|
| 12171 |
|
| 12172 |
+
#: admin/locale.php:1480
|
| 12173 |
msgid "e.g., 0.75em"
|
| 12174 |
msgstr ""
|
| 12175 |
|
| 12176 |
+
#: admin/locale.php:1481
|
| 12177 |
msgid ""
|
| 12178 |
"Choose how you want to handle this quiz's data storage. By default we'll "
|
| 12179 |
"use the configuration you've set in your {{link}}global privacy "
|
| 12180 |
"settings{{/link}}."
|
| 12181 |
msgstr ""
|
| 12182 |
|
| 12183 |
+
#: admin/locale.php:1482
|
| 12184 |
msgid "How long do you want to retain this quiz's submissions for?"
|
| 12185 |
msgstr ""
|
| 12186 |
|
| 12187 |
+
#: admin/locale.php:1483
|
| 12188 |
msgid "Evaluation loader icon"
|
| 12189 |
msgstr ""
|
| 12190 |
|
| 12191 |
+
#: admin/locale.php:1484
|
| 12192 |
msgid "This picker works only when \"Evaluation Loader\" is set to \"Show Loader\"."
|
| 12193 |
msgstr ""
|
| 12194 |
|
| 12195 |
+
#: admin/locale.php:1485
|
| 12196 |
msgid "Wrong"
|
| 12197 |
msgstr ""
|
| 12198 |
|
| 12199 |
+
#: admin/locale.php:1486
|
| 12200 |
msgid "Answer text color"
|
| 12201 |
msgstr ""
|
| 12202 |
|
| 12203 |
+
#: admin/locale.php:1487
|
| 12204 |
msgid "Answer result message"
|
| 12205 |
msgstr ""
|
| 12206 |
|
| 12207 |
+
#: admin/locale.php:1488
|
| 12208 |
msgid "Main Container"
|
| 12209 |
msgstr ""
|
| 12210 |
|
| 12211 |
+
#: admin/locale.php:1489
|
| 12212 |
msgid "Page Indicator color"
|
| 12213 |
msgstr ""
|
| 12214 |
|
| 12215 |
+
#: admin/locale.php:1490
|
| 12216 |
msgid "Quiz result color"
|
| 12217 |
msgstr ""
|
| 12218 |
|
| 12219 |
+
#: admin/locale.php:1491
|
| 12220 |
msgid "Skip form button"
|
| 12221 |
msgstr ""
|
| 12222 |
|
| 12223 |
+
#: admin/locale.php:1492
|
| 12224 |
msgid "Basic"
|
| 12225 |
msgstr ""
|
| 12226 |
|
| 12227 |
+
#: admin/locale.php:1493
|
| 12228 |
msgid "Answer - Container"
|
| 12229 |
msgstr ""
|
| 12230 |
|
| 12231 |
+
#: admin/locale.php:1494
|
| 12232 |
msgid "Answer - Checkbox"
|
| 12233 |
msgstr ""
|
| 12234 |
|
| 12235 |
+
#: admin/locale.php:1495
|
| 12236 |
msgid "Answer - Text"
|
| 12237 |
msgstr ""
|
| 12238 |
|
| 12239 |
+
#: admin/locale.php:1496
|
| 12240 |
msgid "Start Quiz Button"
|
| 12241 |
msgstr ""
|
| 12242 |
|
| 12243 |
+
#: admin/locale.php:1497
|
| 12244 |
msgid "Quiz Navigation Button"
|
| 12245 |
msgstr ""
|
| 12246 |
|
| 12247 |
+
#: admin/locale.php:1498
|
| 12248 |
msgid "Back to Answers Button"
|
| 12249 |
msgstr ""
|
| 12250 |
|
| 12251 |
+
#: admin/locale.php:1499
|
| 12252 |
msgid "Retake Button"
|
| 12253 |
msgstr ""
|
| 12254 |
|
| 12255 |
+
#: admin/locale.php:1500
|
| 12256 |
msgid "Social Share"
|
| 12257 |
msgstr ""
|
| 12258 |
|
| 12259 |
+
#: admin/locale.php:1501
|
| 12260 |
msgid ""
|
| 12261 |
"By default this quiz will inherit the fonts your theme uses. You can "
|
| 12262 |
"override these fonts with custom ones from Google Fonts."
|
| 12263 |
msgstr ""
|
| 12264 |
|
| 12265 |
+
#: admin/locale.php:1502 library/modules/quizzes/admin/admin-loader.php:534
|
| 12266 |
#: library/modules/quizzes/admin/admin-loader.php:645
|
| 12267 |
#: library/modules/quizzes/admin/admin-loader.php:668
|
| 12268 |
msgid "Quiz Title"
|
| 12269 |
msgstr ""
|
| 12270 |
|
| 12271 |
+
#: admin/locale.php:1503
|
| 12272 |
msgid "Quiz Description"
|
| 12273 |
msgstr ""
|
| 12274 |
|
| 12275 |
+
#: admin/locale.php:1504
|
| 12276 |
msgid "Page Indicator"
|
| 12277 |
msgstr ""
|
| 12278 |
|
| 12279 |
+
#: admin/locale.php:1505
|
| 12280 |
msgid "Question Description"
|
| 12281 |
msgstr ""
|
| 12282 |
|
| 12283 |
+
#: admin/locale.php:1506 admin/views/quiz/entries/content-leads-none.php:193
|
| 12284 |
#: admin/views/quiz/entries/content-leads.php:302
|
| 12285 |
#: admin/views/quiz/entries/content-leads.php:364 library/class-export.php:447
|
| 12286 |
#: library/class-export.php:592
|
| 12288 |
msgid "Answer"
|
| 12289 |
msgstr ""
|
| 12290 |
|
| 12291 |
+
#: admin/locale.php:1507
|
| 12292 |
msgid "Quiz Navigation Buttons"
|
| 12293 |
msgstr ""
|
| 12294 |
|
| 12295 |
+
#: admin/locale.php:1508
|
| 12296 |
msgid "Answer Result Message"
|
| 12297 |
msgstr ""
|
| 12298 |
|
| 12299 |
+
#: admin/locale.php:1509
|
| 12300 |
msgid "Social Share Title"
|
| 12301 |
msgstr ""
|
| 12302 |
|
| 12303 |
+
#: admin/locale.php:1510
|
| 12304 |
msgid "Social Share Icons"
|
| 12305 |
msgstr ""
|
| 12306 |
|
| 12307 |
+
#: admin/locale.php:1511
|
| 12308 |
msgid "Skip Form Button"
|
| 12309 |
msgstr ""
|
| 12310 |
|
| 12311 |
+
#: admin/locale.php:1513
|
| 12312 |
msgid "Choose one of the pre-defined sizes we have for social share icons."
|
| 12313 |
msgstr ""
|
| 12314 |
|
| 12315 |
+
#: admin/locale.php:1517
|
| 12316 |
msgid "Question description color"
|
| 12317 |
msgstr ""
|
| 12318 |
|
| 12319 |
+
#: admin/locale.php:1518 library/modules/quizzes/admin/admin-loader.php:632
|
| 12320 |
msgid "Main"
|
| 12321 |
msgstr ""
|
| 12322 |
|
| 12323 |
+
#: admin/locale.php:1519 library/modules/quizzes/admin/admin-loader.php:657
|
| 12324 |
msgid "Container background"
|
| 12325 |
msgstr ""
|
| 12326 |
|
| 12327 |
+
#: admin/locale.php:1520 library/modules/quizzes/admin/admin-loader.php:633
|
| 12328 |
msgid "Header"
|
| 12329 |
msgstr ""
|
| 12330 |
|
| 12331 |
+
#: admin/locale.php:1521
|
| 12332 |
msgid "Content background"
|
| 12333 |
msgstr ""
|
| 12334 |
|
| 12335 |
+
#: admin/locale.php:1522
|
| 12336 |
msgid "Retake"
|
| 12337 |
msgstr ""
|
| 12338 |
|
| 12339 |
+
#: admin/locale.php:1523
|
| 12340 |
msgid ""
|
| 12341 |
"Let's add the different personalities. Each of the following personality is "
|
| 12342 |
"a possible outcome of your quiz. In case of a tie, the personality is "
|
| 12343 |
"chosen as per their order below."
|
| 12344 |
msgstr ""
|
| 12345 |
|
| 12346 |
+
#: admin/locale.php:1524
|
| 12347 |
msgid "Reorder the personalities to set the priority order."
|
| 12348 |
msgstr ""
|
| 12349 |
|
| 12350 |
+
#: admin/locale.php:1525
|
| 12351 |
msgid ""
|
| 12352 |
"Define the different personalities possible as the outcome of your quiz "
|
| 12353 |
"here."
|
| 12354 |
msgstr ""
|
| 12355 |
|
| 12356 |
+
#: admin/locale.php:1526
|
| 12357 |
msgid "Loading Preset data..."
|
| 12358 |
msgstr ""
|
| 12359 |
|
| 12360 |
+
#: admin/locale.php:1527
|
| 12361 |
msgid "Unsaved Changes"
|
| 12362 |
msgstr ""
|
| 12363 |
|
| 12364 |
+
#: admin/locale.php:1528
|
| 12365 |
msgid "Open form options"
|
| 12366 |
msgstr ""
|
| 12367 |
|
| 12368 |
+
#: admin/locale.php:1529
|
| 12369 |
msgid "Open poll options"
|
| 12370 |
msgstr ""
|
| 12371 |
|
| 12372 |
+
#: admin/locale.php:1530
|
| 12373 |
msgid "Open quiz options"
|
| 12374 |
msgstr ""
|
| 12375 |
|
| 12376 |
+
#: admin/locale.php:1531
|
| 12377 |
msgid "Create New Form"
|
| 12378 |
msgstr ""
|
| 12379 |
|
| 12380 |
+
#: admin/locale.php:1532
|
| 12381 |
msgid "Create New Poll"
|
| 12382 |
msgstr ""
|
| 12383 |
|
| 12384 |
+
#: admin/locale.php:1533
|
| 12385 |
msgid "Create New Quiz"
|
| 12386 |
msgstr ""
|
| 12387 |
|
| 12388 |
+
#: admin/locale.php:1540
|
| 12389 |
#: library/modules/custom-forms/admin/admin-loader.php:170
|
| 12390 |
msgid "Basic selectors"
|
| 12391 |
msgstr ""
|
| 12392 |
|
| 12393 |
+
#: admin/locale.php:1542
|
| 12394 |
msgid "Field Description"
|
| 12395 |
msgstr ""
|
| 12396 |
|
| 12397 |
+
#: admin/locale.php:1543 library/fields/text.php:66
|
| 12398 |
msgid "Input"
|
| 12399 |
msgstr ""
|
| 12400 |
|
| 12401 |
+
#: admin/locale.php:1544 library/fields/textarea.php:66
|
| 12402 |
msgid "Textarea"
|
| 12403 |
msgstr ""
|
| 12404 |
|
| 12405 |
+
#: admin/locale.php:1546
|
| 12406 |
msgid "Answer Input"
|
| 12407 |
msgstr ""
|
| 12408 |
|
| 12409 |
+
#: admin/locale.php:1547
|
| 12410 |
msgid "Answer Label"
|
| 12411 |
msgstr ""
|
| 12412 |
|
| 12413 |
+
#: admin/locale.php:1549
|
| 12414 |
msgid "Answer Container"
|
| 12415 |
msgstr ""
|
| 12416 |
|
| 12417 |
+
#: admin/locale.php:1550
|
| 12418 |
msgid "Answer Text"
|
| 12419 |
msgstr ""
|
| 12420 |
|
| 12421 |
+
#: admin/locale.php:1551
|
| 12422 |
msgid ""
|
| 12423 |
"%s does not exist in your form. Please insert a valid field from the merged "
|
| 12424 |
"tags option."
|
| 12425 |
msgstr ""
|
| 12426 |
|
| 12427 |
+
#: admin/locale.php:1552
|
| 12428 |
msgid "Infinity calculation result."
|
| 12429 |
msgstr ""
|
| 12430 |
|
| 12431 |
+
#: admin/locale.php:1553
|
| 12432 |
msgid "Calculation Formula"
|
| 12433 |
msgstr ""
|
| 12434 |
|
| 12435 |
+
#: admin/locale.php:1554
|
| 12436 |
msgid "Add Form Fields"
|
| 12437 |
msgstr ""
|
| 12438 |
|
| 12439 |
+
#: admin/locale.php:1555
|
| 12440 |
msgid "Open list of fields"
|
| 12441 |
msgstr ""
|
| 12442 |
|
| 12443 |
+
#: admin/locale.php:1556
|
| 12444 |
msgid "Sum"
|
| 12445 |
msgstr ""
|
| 12446 |
|
| 12447 |
+
#: admin/locale.php:1557
|
| 12448 |
msgid "Minus"
|
| 12449 |
msgstr ""
|
| 12450 |
|
| 12451 |
+
#: admin/locale.php:1558
|
| 12452 |
msgid "Multiply"
|
| 12453 |
msgstr ""
|
| 12454 |
|
| 12455 |
+
#: admin/locale.php:1559
|
| 12456 |
msgid "Divide"
|
| 12457 |
msgstr ""
|
| 12458 |
|
| 12459 |
+
#: admin/locale.php:1560
|
| 12460 |
msgid "Open parenthesis"
|
| 12461 |
msgstr ""
|
| 12462 |
|
| 12463 |
+
#: admin/locale.php:1561
|
| 12464 |
msgid "Close parenthesis"
|
| 12465 |
msgstr ""
|
| 12466 |
|
| 12467 |
+
#: admin/locale.php:1562
|
| 12468 |
msgid ""
|
| 12469 |
"You can preview your form and check if the formula is generating expected "
|
| 12470 |
"results."
|
| 12471 |
msgstr ""
|
| 12472 |
|
| 12473 |
+
#: admin/locale.php:1563
|
| 12474 |
msgid "Formula Preview"
|
| 12475 |
msgstr ""
|
| 12476 |
|
| 12477 |
+
#: admin/locale.php:1564
|
| 12478 |
msgid "Remove this date range"
|
| 12479 |
msgstr ""
|
| 12480 |
|
| 12481 |
+
#: admin/locale.php:1565
|
| 12482 |
msgid "10 January 2020"
|
| 12483 |
msgstr ""
|
| 12484 |
|
| 12485 |
+
#: admin/locale.php:1566 library/model/class-form-entry-model.php:436
|
| 12486 |
msgid "AM/PM"
|
| 12487 |
msgstr ""
|
| 12488 |
|
| 12489 |
+
#: admin/locale.php:1567
|
| 12490 |
msgid "This field is required!"
|
| 12491 |
msgstr ""
|
| 12492 |
|
| 12493 |
+
#: admin/locale.php:1568
|
| 12494 |
msgid "Please enter valid number."
|
| 12495 |
msgstr ""
|
| 12496 |
|
| 12497 |
+
#: admin/locale.php:1569
|
| 12498 |
msgid "Click here to add a date range..."
|
| 12499 |
msgstr ""
|
| 12500 |
|
| 12501 |
+
#: admin/locale.php:1570
|
| 12502 |
msgid "Click here to add a date…"
|
| 12503 |
msgstr ""
|
| 12504 |
|
| 12505 |
+
#: admin/locale.php:1571
|
| 12506 |
msgid "+ Predefined options"
|
| 12507 |
msgstr ""
|
| 12508 |
|
| 12509 |
+
#: admin/locale.php:1572
|
| 12510 |
msgid "My Label; my-value; 0; https://mysite.com/my-image-url.jpg"
|
| 12511 |
msgstr ""
|
| 12512 |
|
| 12513 |
+
#: admin/locale.php:1573
|
| 12514 |
msgid "My Label; my-value; 0"
|
| 12515 |
msgstr ""
|
| 12516 |
|
| 12517 |
+
#: admin/locale.php:1574
|
| 12518 |
msgid "New option"
|
| 12519 |
msgstr ""
|
| 12520 |
|
| 12521 |
+
#: admin/locale.php:1575
|
| 12522 |
msgid "New option with image"
|
| 12523 |
msgstr ""
|
| 12524 |
|
| 12525 |
+
#: admin/locale.php:1583
|
| 12526 |
msgid ""
|
| 12527 |
"Under 1 year\n"
|
| 12528 |
"1-17\n"
|
| 12534 |
"65 and Above"
|
| 12535 |
msgstr ""
|
| 12536 |
|
| 12537 |
+
#: admin/locale.php:1591
|
| 12538 |
msgid "Age"
|
| 12539 |
msgstr ""
|
| 12540 |
|
| 12541 |
+
#: admin/locale.php:1592
|
| 12542 |
msgid ""
|
| 12543 |
"Male\\n"
|
| 12544 |
"Female\\n"
|
| 12546 |
"Other"
|
| 12547 |
msgstr ""
|
| 12548 |
|
| 12549 |
+
#: admin/locale.php:1593
|
| 12550 |
msgid "Gender"
|
| 12551 |
msgstr ""
|
| 12552 |
|
| 12553 |
+
#: admin/locale.php:1602
|
| 12554 |
msgid ""
|
| 12555 |
"Primary School\n"
|
| 12556 |
"High School\n"
|
| 12563 |
"Other"
|
| 12564 |
msgstr ""
|
| 12565 |
|
| 12566 |
+
#: admin/locale.php:1611
|
| 12567 |
msgid "Educational Attainment"
|
| 12568 |
msgstr ""
|
| 12569 |
|
| 12570 |
+
#: admin/locale.php:1619
|
| 12571 |
msgid ""
|
| 12572 |
"Full-time employed\n"
|
| 12573 |
"Part-time employed\n"
|
| 12579 |
"Unemployed"
|
| 12580 |
msgstr ""
|
| 12581 |
|
| 12582 |
+
#: admin/locale.php:1627
|
| 12583 |
msgid "Employment Status"
|
| 12584 |
msgstr ""
|
| 12585 |
|
| 12586 |
+
#: admin/locale.php:1649
|
| 12587 |
msgid ""
|
| 12588 |
"Architecture and Engineering\n"
|
| 12589 |
"Arts, Design, Entertainment, Sports, and Media\n"
|
| 12609 |
"Transportation and Material Moving"
|
| 12610 |
msgstr ""
|
| 12611 |
|
| 12612 |
+
#: admin/locale.php:1671
|
| 12613 |
msgid "Occupation"
|
| 12614 |
msgstr ""
|
| 12615 |
|
| 12616 |
+
#: admin/locale.php:1672
|
| 12617 |
msgid ""
|
| 12618 |
"Single\\n"
|
| 12619 |
"Married\\n"
|
| 12622 |
"Widowed"
|
| 12623 |
msgstr ""
|
| 12624 |
|
| 12625 |
+
#: admin/locale.php:1673
|
| 12626 |
msgid "Marital Status"
|
| 12627 |
msgstr ""
|
| 12628 |
|
| 12629 |
+
#: admin/locale.php:1674
|
| 12630 |
msgid ""
|
| 12631 |
"Africa\\n"
|
| 12632 |
"Antarctica\\n"
|
| 12637 |
"South America"
|
| 12638 |
msgstr ""
|
| 12639 |
|
| 12640 |
+
#: admin/locale.php:1675
|
| 12641 |
msgid "Continents"
|
| 12642 |
msgstr ""
|
| 12643 |
|
| 12644 |
+
#: admin/locale.php:1924
|
| 12645 |
msgid ""
|
| 12646 |
"Afghanistan\n"
|
| 12647 |
"Åland Islands\n"
|
| 12894 |
"Zimbabwe"
|
| 12895 |
msgstr ""
|
| 12896 |
|
| 12897 |
+
#: admin/locale.php:2173
|
| 12898 |
msgid "Countries"
|
| 12899 |
msgstr ""
|
| 12900 |
|
| 12901 |
+
#: admin/locale.php:2174
|
| 12902 |
msgid ""
|
| 12903 |
"Alabama\\n"
|
| 12904 |
"Alaska\\n"
|
| 12953 |
"Wyoming"
|
| 12954 |
msgstr ""
|
| 12955 |
|
| 12956 |
+
#: admin/locale.php:2175
|
| 12957 |
msgid "American States"
|
| 12958 |
msgstr ""
|
| 12959 |
|
| 12960 |
+
#: admin/locale.php:2176
|
| 12961 |
msgid ""
|
| 12962 |
"Alberta\\n"
|
| 12963 |
"British Columbia\\n"
|
| 12974 |
"Yukon"
|
| 12975 |
msgstr ""
|
| 12976 |
|
| 12977 |
+
#: admin/locale.php:2177
|
| 12978 |
msgid "Canadian Provinces"
|
| 12979 |
msgstr ""
|
| 12980 |
|
| 12981 |
+
#: admin/locale.php:2178
|
| 12982 |
msgid "No available options"
|
| 12983 |
msgstr ""
|
| 12984 |
|
| 12985 |
+
#: admin/locale.php:2179
|
| 12986 |
msgid "Select image"
|
| 12987 |
msgstr ""
|
| 12988 |
|
| 12989 |
+
#: admin/locale.php:2180
|
| 12990 |
msgid "Upload image"
|
| 12991 |
msgstr ""
|
| 12992 |
|
| 12993 |
+
#: admin/locale.php:2181
|
| 12994 |
msgid "Remove uploaded image"
|
| 12995 |
msgstr ""
|
| 12996 |
|
| 12997 |
+
#: admin/locale.php:2182
|
| 12998 |
msgid "Remove uploaded file"
|
| 12999 |
msgstr ""
|
| 13000 |
|
| 13001 |
+
#: admin/locale.php:2186
|
| 13002 |
msgid "Payment Data"
|
| 13003 |
msgstr ""
|
| 13004 |
|
| 13005 |
+
#: admin/locale.php:2188
|
| 13006 |
msgid "All Form Fields"
|
| 13007 |
msgstr ""
|
| 13008 |
|
| 13009 |
+
#: admin/locale.php:2189
|
| 13010 |
msgid "All Non Empty Fields"
|
| 13011 |
msgstr ""
|
| 13012 |
|
| 13013 |
+
#: admin/locale.php:2191
|
| 13014 |
msgid "Don't Miss Out On Subscription / Recurring Payment Support"
|
| 13015 |
msgstr ""
|
| 13016 |
|
| 13017 |
+
#: admin/locale.php:2192
|
| 13018 |
msgid "Don't worry, only admin users can see this message"
|
| 13019 |
msgstr ""
|
| 13020 |
|
| 13021 |
+
#: admin/locale.php:2193
|
| 13022 |
msgid "Get 35% OFF Forminator Pro"
|
| 13023 |
msgstr ""
|
| 13024 |
|
| 13025 |
+
#: admin/locale.php:2194
|
| 13026 |
msgid "Pay only"
|
| 13027 |
msgstr ""
|
| 13028 |
|
| 13029 |
+
#: admin/locale.php:2195
|
| 13030 |
msgid "year"
|
| 13031 |
msgstr ""
|
| 13032 |
|
| 13033 |
+
#: admin/locale.php:2196
|
| 13034 |
msgid ""
|
| 13035 |
"Start collecting subscription payments in Forminator Pro with the new "
|
| 13036 |
"Stripe Subscription add-on! Upgrade now and get 35% OFF all annual plans."
|
| 13037 |
msgstr ""
|
| 13038 |
|
| 13039 |
+
#: admin/locale.php:2197
|
| 13040 |
msgid "Inline Message"
|
| 13041 |
msgstr ""
|
| 13042 |
|
| 13043 |
+
#: admin/locale.php:2198
|
| 13044 |
msgid "Redirect user to a URL"
|
| 13045 |
msgstr ""
|
| 13046 |
|
| 13047 |
+
#: admin/locale.php:2199
|
| 13048 |
msgid "Hide form"
|
| 13049 |
msgstr ""
|
| 13050 |
|
| 13051 |
+
#: admin/locale.php:2200
|
| 13052 |
msgid "is"
|
| 13053 |
msgstr ""
|
| 13054 |
|
| 13055 |
+
#: admin/locale.php:2201
|
| 13056 |
msgid "is not"
|
| 13057 |
msgstr ""
|
| 13058 |
|
| 13059 |
+
#: admin/locale.php:2202
|
| 13060 |
msgid "day is"
|
| 13061 |
msgstr ""
|
| 13062 |
|
| 13063 |
+
#: admin/locale.php:2203
|
| 13064 |
msgid "day is not"
|
| 13065 |
msgstr ""
|
| 13066 |
|
| 13067 |
+
#: admin/locale.php:2204
|
| 13068 |
msgid "month is not"
|
| 13069 |
msgstr ""
|
| 13070 |
|
| 13071 |
+
#: admin/locale.php:2205
|
| 13072 |
msgid "month is"
|
| 13073 |
msgstr ""
|
| 13074 |
|
| 13075 |
+
#: admin/locale.php:2206
|
| 13076 |
msgid "is before"
|
| 13077 |
msgstr ""
|
| 13078 |
|
| 13079 |
+
#: admin/locale.php:2207
|
| 13080 |
msgid "is after"
|
| 13081 |
msgstr ""
|
| 13082 |
|
| 13083 |
+
#: admin/locale.php:2208
|
| 13084 |
msgid "is before %s or more days from current date"
|
| 13085 |
msgstr ""
|
| 13086 |
|
| 13087 |
+
#: admin/locale.php:2209
|
| 13088 |
msgid "is before less than %s days from current date"
|
| 13089 |
msgstr ""
|
| 13090 |
|
| 13091 |
+
#: admin/locale.php:2210
|
| 13092 |
msgid "is after %s or more days from current date"
|
| 13093 |
msgstr ""
|
| 13094 |
|
| 13095 |
+
#: admin/locale.php:2211
|
| 13096 |
msgid "is after less than %s days from current date"
|
| 13097 |
msgstr ""
|
| 13098 |
|
| 13099 |
+
#: admin/locale.php:2212
|
| 13100 |
msgid "is greater than"
|
| 13101 |
msgstr ""
|
| 13102 |
|
| 13103 |
+
#: admin/locale.php:2213
|
| 13104 |
msgid "is less than"
|
| 13105 |
msgstr ""
|
| 13106 |
|
| 13107 |
+
#: admin/locale.php:2214
|
| 13108 |
msgid "contains"
|
| 13109 |
msgstr ""
|
| 13110 |
|
| 13111 |
+
#: admin/locale.php:2215
|
| 13112 |
msgid "starts with"
|
| 13113 |
msgstr ""
|
| 13114 |
|
| 13115 |
+
#: admin/locale.php:2216
|
| 13116 |
msgid "ends with"
|
| 13117 |
msgstr ""
|
| 13118 |
|
| 13119 |
+
#: admin/locale.php:2217
|
| 13120 |
msgid "is correct"
|
| 13121 |
msgstr ""
|
| 13122 |
|
| 13123 |
+
#: admin/locale.php:2218
|
| 13124 |
msgid "is incorrect"
|
| 13125 |
msgstr ""
|
| 13126 |
|
| 13127 |
+
#: admin/locale.php:2219
|
| 13128 |
msgid "is final result"
|
| 13129 |
msgstr ""
|
| 13130 |
|
| 13131 |
+
#: admin/locale.php:2220
|
| 13132 |
msgid "is not final result"
|
| 13133 |
msgstr ""
|
| 13134 |
|
| 13135 |
+
#: admin/locale.php:2221
|
| 13136 |
msgid "Please fix the error(s) in the SETTINGS tab."
|
| 13137 |
msgstr ""
|
| 13138 |
|
| 13139 |
+
#: admin/locale.php:2222
|
| 13140 |
msgid "Billing frequency should be greater than or equal to 1"
|
| 13141 |
msgstr ""
|
| 13142 |
|
library/helpers/helper-core.php
CHANGED
|
@@ -978,7 +978,7 @@ function forminator_var_type_cast( $var, $type ) {
|
|
| 978 |
*/
|
| 979 |
function forminator_get_poll_chart_colors( $poll_id = null, $accessibility_enabled = false ) {
|
| 980 |
|
| 981 |
-
$chart_colors = $accessibility_enabled ?
|
| 982 |
array(
|
| 983 |
'rgba(137, 137, 137, 0.2)', // Monochrome Blue
|
| 984 |
'rgba(149, 149, 149, 0.2)', // Monochrome Red
|
|
@@ -1460,51 +1460,35 @@ function forminator_get_link( $link_for, $campaign = '', $adv_path = '' ) {
|
|
| 1460 |
/**
|
| 1461 |
* Check if the plugin is active network wide.
|
| 1462 |
*
|
| 1463 |
-
* @since 1.13
|
|
|
|
| 1464 |
*
|
| 1465 |
* @return bool
|
| 1466 |
*/
|
| 1467 |
-
function
|
| 1468 |
-
|
| 1469 |
-
|
| 1470 |
-
|
| 1471 |
-
|
| 1472 |
-
|
| 1473 |
-
if ( class_exists( 'WPMUDEV_Dashboard' ) && ! empty( WPMUDEV_Dashboard::$api )
|
| 1474 |
-
&& ( method_exists( WPMUDEV_Dashboard::$api, 'get_membership_type' )
|
| 1475 |
-
|| method_exists( WPMUDEV_Dashboard::$api, 'get_membership_status' ) )
|
| 1476 |
-
&& method_exists( WPMUDEV_Dashboard::$api, 'get_membership_projects' )
|
| 1477 |
-
&& method_exists( WPMUDEV_Dashboard::$api, 'has_key' )
|
| 1478 |
-
) {
|
| 1479 |
-
// Get membership type.
|
| 1480 |
-
if ( method_exists( WPMUDEV_Dashboard::$api, 'get_membership_status' ) ) {
|
| 1481 |
-
$status = WPMUDEV_Dashboard::$api->get_membership_status();
|
| 1482 |
-
} elseif ( method_exists( WPMUDEV_Dashboard::$api, 'get_membership_type' ) ) {
|
| 1483 |
-
$status = WPMUDEV_Dashboard::$api->get_membership_type();
|
| 1484 |
-
}
|
| 1485 |
-
// Get available projects.
|
| 1486 |
-
$projects = WPMUDEV_Dashboard::$api->get_membership_projects();
|
| 1487 |
-
|
| 1488 |
-
// Plan includes Forminator.
|
| 1489 |
-
if ( ( 'unit' === $status && ! in_array( 2097296, $projects, true ) ) || ( 'single' === $status && 2097296 !== $projects ) ) {
|
| 1490 |
-
$status = 'upgrade';
|
| 1491 |
-
} elseif ( 'free' === $status && WPMUDEV_Dashboard::$api->has_key() ) {
|
| 1492 |
-
// Check if API key is available but status is free, then it's expired.
|
| 1493 |
-
$status = 'expired';
|
| 1494 |
-
}
|
| 1495 |
-
} else {
|
| 1496 |
-
$status = 'free';
|
| 1497 |
-
}
|
| 1498 |
}
|
| 1499 |
|
| 1500 |
/**
|
| 1501 |
* Filter to modify WPMUDEV membership status.
|
| 1502 |
*
|
| 1503 |
* @since 1.13
|
|
|
|
| 1504 |
*
|
| 1505 |
* @param string $status Status.
|
| 1506 |
*/
|
| 1507 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1508 |
}
|
| 1509 |
|
| 1510 |
/**
|
| 978 |
*/
|
| 979 |
function forminator_get_poll_chart_colors( $poll_id = null, $accessibility_enabled = false ) {
|
| 980 |
|
| 981 |
+
$chart_colors = $accessibility_enabled ?
|
| 982 |
array(
|
| 983 |
'rgba(137, 137, 137, 0.2)', // Monochrome Blue
|
| 984 |
'rgba(149, 149, 149, 0.2)', // Monochrome Red
|
| 1460 |
/**
|
| 1461 |
* Check if the plugin is active network wide.
|
| 1462 |
*
|
| 1463 |
+
* @since 1.13 forminator_membership_status
|
| 1464 |
+
* @since 1.18.2 Change how membership is detected
|
| 1465 |
*
|
| 1466 |
* @return bool
|
| 1467 |
*/
|
| 1468 |
+
function forminator_can_install_pro() {
|
| 1469 |
+
// Dashboard is active.
|
| 1470 |
+
if ( class_exists( 'WPMUDEV_Dashboard' ) && method_exists( WPMUDEV_Dashboard::$upgrader, 'user_can_install' ) ) {
|
| 1471 |
+
$has_access = WPMUDEV_Dashboard::$upgrader->user_can_install( 2097296, true );
|
| 1472 |
+
} else {
|
| 1473 |
+
$has_access = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1474 |
}
|
| 1475 |
|
| 1476 |
/**
|
| 1477 |
* Filter to modify WPMUDEV membership status.
|
| 1478 |
*
|
| 1479 |
* @since 1.13
|
| 1480 |
+
* @since 1.18.2 Deprecated forminator_wpmudev_membership_status filter
|
| 1481 |
*
|
| 1482 |
* @param string $status Status.
|
| 1483 |
*/
|
| 1484 |
+
$has_access = apply_filters_deprecated(
|
| 1485 |
+
'forminator_wpmudev_membership_status',
|
| 1486 |
+
array( $has_access ),
|
| 1487 |
+
'1.18.2',
|
| 1488 |
+
'forminator_wpmudev_can_install_pro'
|
| 1489 |
+
);
|
| 1490 |
+
|
| 1491 |
+
return apply_filters( 'forminator_wpmudev_can_install_pro', $has_access );
|
| 1492 |
}
|
| 1493 |
|
| 1494 |
/**
|
readme.txt
CHANGED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
=== Forminator - Contact Form, Payment Form & Custom Form Builder ===
|
| 2 |
Plugin Name: Forminator - Contact Form, Payment Form & Custom Form Builder
|
| 3 |
-
Version: 1.18.
|
| 4 |
Author: WPMU DEV
|
| 5 |
Author URI: https://wpmudev.com/
|
| 6 |
Contributors: WPMUDEV
|
| 7 |
Tags: forms, contact form, wordpress form plugin, payment form, custom form, form builder, paypal form wordpress, form maker, quiz, quiz builder, order form, stripe payments, paypal payments, stripe form, paypal form
|
| 8 |
Requires at least: 5.2
|
| 9 |
Tested up to: 6.0
|
| 10 |
-
Stable tag: 1.18.
|
| 11 |
Requires PHP: 5.6.20
|
| 12 |
License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
| 13 |
|
|
@@ -211,6 +211,10 @@ Find out all you need to know by checking out our API documentation [here](https
|
|
| 211 |
|
| 212 |
== Changelog ==
|
| 213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 214 |
= 1.18.1 ( 2022-09-15 ) =
|
| 215 |
|
| 216 |
- New: Forminator Reports to help with tracking performance of forms, polls, and quizzes
|
| 1 |
=== Forminator - Contact Form, Payment Form & Custom Form Builder ===
|
| 2 |
Plugin Name: Forminator - Contact Form, Payment Form & Custom Form Builder
|
| 3 |
+
Version: 1.18.2
|
| 4 |
Author: WPMU DEV
|
| 5 |
Author URI: https://wpmudev.com/
|
| 6 |
Contributors: WPMUDEV
|
| 7 |
Tags: forms, contact form, wordpress form plugin, payment form, custom form, form builder, paypal form wordpress, form maker, quiz, quiz builder, order form, stripe payments, paypal payments, stripe form, paypal form
|
| 8 |
Requires at least: 5.2
|
| 9 |
Tested up to: 6.0
|
| 10 |
+
Stable tag: 1.18.2
|
| 11 |
Requires PHP: 5.6.20
|
| 12 |
License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
| 13 |
|
| 211 |
|
| 212 |
== Changelog ==
|
| 213 |
|
| 214 |
+
= 1.18.2 ( 2022-09-30 ) =
|
| 215 |
+
|
| 216 |
+
- Improvement: Membership detection
|
| 217 |
+
|
| 218 |
= 1.18.1 ( 2022-09-15 ) =
|
| 219 |
|
| 220 |
- New: Forminator Reports to help with tracking performance of forms, polls, and quizzes
|
