Version Description
- Changed: Renamed certain actions with typos in their names, backwards-compatible. Added a deprecation text using
do_action_deprecated()
. - Fixed: About Us page behaviour when WP Mail SMTP Pro is installed.
- Fixed: reCAPTCHA settings could be saved without providing reCAPTCHA type.
Download this release
Release Info
Developer | jaredatch |
Plugin | Contact Form by WPForms – Drag & Drop Form Builder for WordPress |
Version | 1.5.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.5.4.1 to 1.5.4.2
- assets/js/wpforms.js +22 -11
- changelog.txt +6 -1
- includes/admin/class-about.php +17 -8
- includes/admin/class-menu.php +7 -1
- includes/admin/class-settings.php +2 -1
- includes/class-install.php +53 -17
- includes/class-license.php +2 -2
- languages/wpforms-lite.pot +221 -212
- lite/assets/js/admin/upgrade.js +1 -1
- lite/assets/js/admin/upgrade.min.js +1 -1
- readme.txt +8 -3
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +3 -3
- wpforms.php +2 -2
assets/js/wpforms.js
CHANGED
@@ -1299,19 +1299,30 @@ var wpforms = window.wpforms || ( function( document, window, $ ) {
|
|
1299 |
*/
|
1300 |
currentIpToCountry: function( callback ) {
|
1301 |
|
1302 |
-
$.get( 'https://
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
if ( ! countryCode ) {
|
1309 |
-
var lang = app.getFirstBrowserLanguage();
|
1310 |
-
countryCode = lang.indexOf( '-' ) > -1 ? lang.split( '-' ).pop() : '';
|
1311 |
}
|
1312 |
-
|
1313 |
-
|
|
|
1314 |
} );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1315 |
},
|
1316 |
|
1317 |
/**
|
1299 |
*/
|
1300 |
currentIpToCountry: function( callback ) {
|
1301 |
|
1302 |
+
$.get( 'https://geo.wpforms.com/v2/geolocate/json/' )
|
1303 |
+
.done( function( resp ) {
|
1304 |
+
if ( resp && resp.country_code ) {
|
1305 |
+
callback( resp.country_code );
|
1306 |
+
} else {
|
1307 |
+
fallback();
|
|
|
|
|
|
|
1308 |
}
|
1309 |
+
} )
|
1310 |
+
.fail( function( resp ) {
|
1311 |
+
fallback();
|
1312 |
} );
|
1313 |
+
|
1314 |
+
var fallback = function() {
|
1315 |
+
|
1316 |
+
$.get( 'https://ipapi.co/jsonp', function() {}, 'jsonp' )
|
1317 |
+
.always( function( resp ) {
|
1318 |
+
var countryCode = ( resp && resp.country ) ? resp.country : '';
|
1319 |
+
if ( ! countryCode ) {
|
1320 |
+
var lang = app.getFirstBrowserLanguage();
|
1321 |
+
countryCode = lang.indexOf( '-' ) > -1 ? lang.split( '-' ).pop() : '';
|
1322 |
+
}
|
1323 |
+
callback( countryCode );
|
1324 |
+
} );
|
1325 |
+
};
|
1326 |
},
|
1327 |
|
1328 |
/**
|
changelog.txt
CHANGED
@@ -1,11 +1,16 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
= 1.5.4.1 =
|
4 |
- Fixed: Plugin Settings > Misc > 'View Email Summary Example' link errors.
|
5 |
|
6 |
= 1.5.4 =
|
7 |
- Added: Email Summaries.
|
8 |
-
- Added: Form builder hotkey to save changes, CTRL
|
9 |
- Changed: Team photo under WPForms > About Us. :)
|
10 |
- Fixed: Dynamic field population populates checkbox and radio fields values but not adding 'wpforms-selected' class to its containers.
|
11 |
- Fixed: Dropdown field attributes are now accessible with `wpforms_field_properties` filter.
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.5.4.2 =
|
4 |
+
- Changed: Renamed certain actions with typos in their names, backwards-compatible. Added a deprecation text using `do_action_deprecated()`.
|
5 |
+
- Fixed: About Us page behaviour when WP Mail SMTP Pro is installed.
|
6 |
+
- Fixed: reCAPTCHA settings could be saved without providing reCAPTCHA type.
|
7 |
+
|
8 |
= 1.5.4.1 =
|
9 |
- Fixed: Plugin Settings > Misc > 'View Email Summary Example' link errors.
|
10 |
|
11 |
= 1.5.4 =
|
12 |
- Added: Email Summaries.
|
13 |
+
- Added: Form builder hotkey to save changes, CTRL + S.
|
14 |
- Changed: Team photo under WPForms > About Us. :)
|
15 |
- Fixed: Dynamic field population populates checkbox and radio fields values but not adding 'wpforms-selected' class to its containers.
|
16 |
- Fixed: Dropdown field attributes are now accessible with `wpforms_field_properties` filter.
|
includes/admin/class-about.php
CHANGED
@@ -286,17 +286,18 @@ class WPForms_About {
|
|
286 |
<?php
|
287 |
foreach ( $am_plugins as $plugin => $details ) :
|
288 |
|
289 |
-
$
|
290 |
-
$
|
291 |
-
if ( $
|
292 |
if ( array_key_exists( $plugin, $all_plugins ) ) {
|
293 |
if ( is_plugin_active( $plugin ) ) {
|
294 |
-
$
|
295 |
}
|
296 |
-
} elseif ( array_key_exists( $details['pro']['plug'], $all_plugins ) ) {
|
297 |
-
$is_mi_pro = true;
|
298 |
}
|
299 |
-
if ( $
|
|
|
|
|
|
|
300 |
$plugin = $details['pro']['plug'];
|
301 |
$details = $details['pro'];
|
302 |
}
|
@@ -327,7 +328,7 @@ class WPForms_About {
|
|
327 |
if ( isset( $details['act'] ) && 'go-to-url' === $details['act'] ) {
|
328 |
$status_class = 'status-go-to-url';
|
329 |
}
|
330 |
-
$status_text
|
331 |
// Button text/status.
|
332 |
$action_class = $status_class . ' button button-primary';
|
333 |
$action_text = esc_html__( 'Install Plugin', 'wpforms-lite' );
|
@@ -775,6 +776,14 @@ class WPForms_About {
|
|
775 |
'name' => esc_html__( 'WP Mail SMTP', 'wpforms-lite' ),
|
776 |
'desc' => esc_html__( 'SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication.', 'wpforms-lite' ),
|
777 |
'url' => 'https://downloads.wordpress.org/plugin/wp-mail-smtp.zip',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
778 |
),
|
779 |
);
|
780 |
|
286 |
<?php
|
287 |
foreach ( $am_plugins as $plugin => $details ) :
|
288 |
|
289 |
+
$have_pro = ( ! empty( $details['pro'] ) && ! empty( $details['pro']['plug'] ) );
|
290 |
+
$show_pro = false;
|
291 |
+
if ( $have_pro ) {
|
292 |
if ( array_key_exists( $plugin, $all_plugins ) ) {
|
293 |
if ( is_plugin_active( $plugin ) ) {
|
294 |
+
$show_pro = true;
|
295 |
}
|
|
|
|
|
296 |
}
|
297 |
+
if ( array_key_exists( $details['pro']['plug'], $all_plugins ) ) {
|
298 |
+
$show_pro = true;
|
299 |
+
}
|
300 |
+
if ( $show_pro ) {
|
301 |
$plugin = $details['pro']['plug'];
|
302 |
$details = $details['pro'];
|
303 |
}
|
328 |
if ( isset( $details['act'] ) && 'go-to-url' === $details['act'] ) {
|
329 |
$status_class = 'status-go-to-url';
|
330 |
}
|
331 |
+
$status_text = esc_html__( 'Not Installed', 'wpforms-lite' );
|
332 |
// Button text/status.
|
333 |
$action_class = $status_class . ' button button-primary';
|
334 |
$action_text = esc_html__( 'Install Plugin', 'wpforms-lite' );
|
776 |
'name' => esc_html__( 'WP Mail SMTP', 'wpforms-lite' ),
|
777 |
'desc' => esc_html__( 'SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication.', 'wpforms-lite' ),
|
778 |
'url' => 'https://downloads.wordpress.org/plugin/wp-mail-smtp.zip',
|
779 |
+
'pro' => array(
|
780 |
+
'plug' => 'wp-mail-smtp-pro/wp_mail_smtp.php',
|
781 |
+
'icon' => WPFORMS_PLUGIN_URL . 'assets/images/about/plugin-smtp.png',
|
782 |
+
'name' => esc_html__( 'WP Mail SMTP Pro', 'wpforms-lite' ),
|
783 |
+
'desc' => esc_html__( 'SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication.', 'wpforms-lite' ),
|
784 |
+
'url' => 'https://wpmailsmtp.com/pricing/',
|
785 |
+
'act' => 'go-to-url',
|
786 |
+
),
|
787 |
),
|
788 |
);
|
789 |
|
includes/admin/class-menu.php
CHANGED
@@ -75,7 +75,13 @@ class WPForms_Admin_Menu {
|
|
75 |
array( $this, 'admin_page' )
|
76 |
);
|
77 |
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
// Settings sub menu item.
|
81 |
add_submenu_page(
|
75 |
array( $this, 'admin_page' )
|
76 |
);
|
77 |
|
78 |
+
do_action_deprecated(
|
79 |
+
'wpform_admin_menu',
|
80 |
+
array( $this ),
|
81 |
+
'1.5.5 of the WPForms plugin',
|
82 |
+
'wpforms_admin_menu'
|
83 |
+
);
|
84 |
+
do_action( 'wpforms_admin_menu', $this );
|
85 |
|
86 |
// Settings sub menu item.
|
87 |
add_submenu_page(
|
includes/admin/class-settings.php
CHANGED
@@ -174,6 +174,7 @@ class WPForms_Settings {
|
|
174 |
'upgrd_to_pro_license_ok_msg' => esc_html__( 'We can automatically upgrade the installed version to WPForms PRO.', 'wpforms-lite' ),
|
175 |
'upgrd_to_pro_btn_ok' => esc_html__( 'Ok', 'wpforms-lite' ),
|
176 |
'upgrd_to_pro_btn_upgrade' => esc_html__( 'Upgrade now', 'wpforms-lite' ),
|
|
|
177 |
'upgrd_to_pro_btn_cancel' => esc_html__( 'Do upgrade later', 'wpforms-lite' ),
|
178 |
)
|
179 |
);
|
@@ -442,7 +443,7 @@ class WPForms_Settings {
|
|
442 |
'id' => 'recaptcha-type',
|
443 |
'name' => esc_html__( 'Type', 'wpforms-lite' ),
|
444 |
'type' => 'radio',
|
445 |
-
'default' => '
|
446 |
'options' => array(
|
447 |
'v2' => esc_html__( 'Checkbox reCAPTCHA v2', 'wpforms-lite' ),
|
448 |
'invisible' => esc_html__( 'Invisible reCAPTCHA v2', 'wpforms-lite' ),
|
174 |
'upgrd_to_pro_license_ok_msg' => esc_html__( 'We can automatically upgrade the installed version to WPForms PRO.', 'wpforms-lite' ),
|
175 |
'upgrd_to_pro_btn_ok' => esc_html__( 'Ok', 'wpforms-lite' ),
|
176 |
'upgrd_to_pro_btn_upgrade' => esc_html__( 'Upgrade now', 'wpforms-lite' ),
|
177 |
+
'upgrd_to_pro_btn_activate' => esc_html__( 'Activate now', 'wpforms-lite' ),
|
178 |
'upgrd_to_pro_btn_cancel' => esc_html__( 'Do upgrade later', 'wpforms-lite' ),
|
179 |
)
|
180 |
);
|
443 |
'id' => 'recaptcha-type',
|
444 |
'name' => esc_html__( 'Type', 'wpforms-lite' ),
|
445 |
'type' => 'radio',
|
446 |
+
'default' => 'v2',
|
447 |
'options' => array(
|
448 |
'v2' => esc_html__( 'Checkbox reCAPTCHA v2', 'wpforms-lite' ),
|
449 |
'invisible' => esc_html__( 'Invisible reCAPTCHA v2', 'wpforms-lite' ),
|
includes/class-install.php
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
* Handles plugin installation upon activation.
|
5 |
*
|
@@ -23,6 +22,9 @@ class WPForms_Install {
|
|
23 |
|
24 |
// Watch for new multisite blogs.
|
25 |
add_action( 'wpmu_new_blog', array( $this, 'new_multisite_blog' ), 10, 6 );
|
|
|
|
|
|
|
26 |
}
|
27 |
|
28 |
/**
|
@@ -45,7 +47,7 @@ class WPForms_Install {
|
|
45 |
|
46 |
foreach ( $sites as $site ) {
|
47 |
switch_to_blog( $site->blog_id );
|
48 |
-
$this->
|
49 |
restore_current_blog();
|
50 |
}
|
51 |
} else {
|
@@ -54,14 +56,14 @@ class WPForms_Install {
|
|
54 |
|
55 |
foreach ( $sites as $site ) {
|
56 |
switch_to_blog( $site['blog_id'] );
|
57 |
-
$this->
|
58 |
restore_current_blog();
|
59 |
}
|
60 |
}
|
61 |
} else {
|
62 |
|
63 |
// Normal single site.
|
64 |
-
$this->
|
65 |
}
|
66 |
|
67 |
// Abort so we only set the transient for single site installs.
|
@@ -74,13 +76,49 @@ class WPForms_Install {
|
|
74 |
}
|
75 |
|
76 |
/**
|
77 |
-
*
|
78 |
*
|
79 |
-
* @since 1.
|
|
|
|
|
80 |
*/
|
81 |
-
public function
|
|
|
|
|
82 |
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
// Hook for Pro users.
|
86 |
do_action( 'wpforms_install' );
|
@@ -103,21 +141,19 @@ class WPForms_Install {
|
|
103 |
*
|
104 |
* @since 1.3.0
|
105 |
*
|
106 |
-
* @param int
|
107 |
-
* @param int
|
108 |
-
* @param string $domain
|
109 |
-
* @param string $path
|
110 |
-
* @param int
|
111 |
-
* @param array
|
112 |
*/
|
113 |
public function new_multisite_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
|
114 |
|
115 |
if ( is_plugin_active_for_network( plugin_basename( WPFORMS_PLUGIN_FILE ) ) ) {
|
116 |
-
|
117 |
switch_to_blog( $blog_id );
|
118 |
-
$this->
|
119 |
restore_current_blog();
|
120 |
-
|
121 |
}
|
122 |
}
|
123 |
}
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
* Handles plugin installation upon activation.
|
4 |
*
|
22 |
|
23 |
// Watch for new multisite blogs.
|
24 |
add_action( 'wpmu_new_blog', array( $this, 'new_multisite_blog' ), 10, 6 );
|
25 |
+
|
26 |
+
// Watch for delayed admin install.
|
27 |
+
add_action( 'admin_init', array( $this, 'admin' ) );
|
28 |
}
|
29 |
|
30 |
/**
|
47 |
|
48 |
foreach ( $sites as $site ) {
|
49 |
switch_to_blog( $site->blog_id );
|
50 |
+
$this->run();
|
51 |
restore_current_blog();
|
52 |
}
|
53 |
} else {
|
56 |
|
57 |
foreach ( $sites as $site ) {
|
58 |
switch_to_blog( $site['blog_id'] );
|
59 |
+
$this->run();
|
60 |
restore_current_blog();
|
61 |
}
|
62 |
}
|
63 |
} else {
|
64 |
|
65 |
// Normal single site.
|
66 |
+
$this->run();
|
67 |
}
|
68 |
|
69 |
// Abort so we only set the transient for single site installs.
|
76 |
}
|
77 |
|
78 |
/**
|
79 |
+
* Runs manual install.
|
80 |
*
|
81 |
+
* @since 1.5.4.2
|
82 |
+
*
|
83 |
+
* @param bool $silent Silent install, disables welcome page.
|
84 |
*/
|
85 |
+
public function manual( $silent = false ) {
|
86 |
+
|
87 |
+
$this->install( is_plugin_active_for_network( plugin_basename( WPFORMS_PLUGIN_FILE ) ) );
|
88 |
|
89 |
+
if ( $silent ) {
|
90 |
+
delete_transient( 'wpforms_activation_redirect' );
|
91 |
+
}
|
92 |
+
}
|
93 |
+
|
94 |
+
/**
|
95 |
+
* Watch for delayed install procedure from WPForms admin.
|
96 |
+
*
|
97 |
+
* @since 1.5.4.2
|
98 |
+
*/
|
99 |
+
public function admin() {
|
100 |
+
|
101 |
+
if ( ! is_admin() ) {
|
102 |
+
return;
|
103 |
+
}
|
104 |
+
|
105 |
+
$install = get_option( 'wpforms_install', false );
|
106 |
+
|
107 |
+
if ( empty( $install ) ) {
|
108 |
+
return;
|
109 |
+
}
|
110 |
+
|
111 |
+
$this->manual( true );
|
112 |
+
|
113 |
+
delete_option( 'wpforms_install' );
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Run the actual installer.
|
118 |
+
*
|
119 |
+
* @since 1.5.4.2
|
120 |
+
*/
|
121 |
+
protected function run() {
|
122 |
|
123 |
// Hook for Pro users.
|
124 |
do_action( 'wpforms_install' );
|
141 |
*
|
142 |
* @since 1.3.0
|
143 |
*
|
144 |
+
* @param int $blog_id Blog ID.
|
145 |
+
* @param int $user_id User ID.
|
146 |
+
* @param string $domain Site domain.
|
147 |
+
* @param string $path Site path.
|
148 |
+
* @param int $site_id Site ID. Only relevant on multi-network installs.
|
149 |
+
* @param array $meta Meta data. Used to set initial site options.
|
150 |
*/
|
151 |
public function new_multisite_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
|
152 |
|
153 |
if ( is_plugin_active_for_network( plugin_basename( WPFORMS_PLUGIN_FILE ) ) ) {
|
|
|
154 |
switch_to_blog( $blog_id );
|
155 |
+
$this->run();
|
156 |
restore_current_blog();
|
|
|
157 |
}
|
158 |
}
|
159 |
}
|
includes/class-license.php
CHANGED
@@ -643,7 +643,7 @@ class WPForms_License {
|
|
643 |
deactivate_plugins( plugin_basename( WPFORMS_PLUGIN_FILE ) );
|
644 |
wp_send_json_success(
|
645 |
array(
|
646 |
-
'message' => esc_html__( '
|
647 |
'reload' => true,
|
648 |
)
|
649 |
);
|
@@ -811,6 +811,7 @@ class WPForms_License {
|
|
811 |
// Activate the plugin silently.
|
812 |
$activated = activate_plugin( $plugin_basename, '', false, true );
|
813 |
if ( ! is_wp_error( $activated ) ) {
|
|
|
814 |
wp_send_json_success( esc_html__( 'Plugin installed & activated.', 'wpforms-lite' ) );
|
815 |
} else {
|
816 |
// Reactivate the lite plugin if pro activation failed.
|
@@ -826,5 +827,4 @@ class WPForms_License {
|
|
826 |
|
827 |
}
|
828 |
}
|
829 |
-
|
830 |
}
|
643 |
deactivate_plugins( plugin_basename( WPFORMS_PLUGIN_FILE ) );
|
644 |
wp_send_json_success(
|
645 |
array(
|
646 |
+
'message' => esc_html__( 'WPForms Pro was already installed and has not been activated.', 'wpforms-lite' ),
|
647 |
'reload' => true,
|
648 |
)
|
649 |
);
|
811 |
// Activate the plugin silently.
|
812 |
$activated = activate_plugin( $plugin_basename, '', false, true );
|
813 |
if ( ! is_wp_error( $activated ) ) {
|
814 |
+
add_option( 'wpforms_install', 1 );
|
815 |
wp_send_json_success( esc_html__( 'Plugin installed & activated.', 'wpforms-lite' ) );
|
816 |
} else {
|
817 |
// Reactivate the lite plugin if pro activation failed.
|
827 |
|
828 |
}
|
829 |
}
|
|
|
830 |
}
|
languages/wpforms-lite.pot
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WPForms Lite 1.5.4.
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpforms-lite\n"
|
5 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
6 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
-
"POT-Creation-Date: 2019-
|
11 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
12 |
"X-Generator: WP-CLI 2.1.0\n"
|
13 |
"X-Domain: wpforms-lite\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
#: includes/admin/class-menu.php:39
|
18 |
#: includes/admin/class-menu.php:40
|
19 |
#: includes/admin/class-menu.php:51
|
20 |
-
#: includes/admin/class-menu.php:
|
21 |
#: includes/integrations.php:45
|
22 |
#: includes/class-form.php:74
|
23 |
#: src/Lite/Admin/DashboardWidget.php:162
|
@@ -190,7 +190,7 @@ msgid "Dismiss this message"
|
|
190 |
msgstr ""
|
191 |
|
192 |
#: lite/wpforms-lite.php:410
|
193 |
-
#: includes/admin/class-about.php:
|
194 |
msgid "Get WPForms Pro and Unlock all the Powerful Features"
|
195 |
msgstr ""
|
196 |
|
@@ -305,7 +305,7 @@ msgstr ""
|
|
305 |
|
306 |
#: lite/wpforms-lite.php:1065
|
307 |
#: includes/admin/class-about.php:85
|
308 |
-
#: includes/admin/class-menu.php:
|
309 |
msgid "WPForms Addons"
|
310 |
msgstr ""
|
311 |
|
@@ -1609,7 +1609,7 @@ msgstr ""
|
|
1609 |
|
1610 |
#: includes/functions.php:1695
|
1611 |
#: includes/class-frontend.php:1291
|
1612 |
-
#: includes/admin/class-settings.php:
|
1613 |
msgid "This field is required."
|
1614 |
msgstr ""
|
1615 |
|
@@ -1663,17 +1663,17 @@ msgid "<a href=\"%s\">Go to the full page</a> to view and submit the form."
|
|
1663 |
msgstr ""
|
1664 |
|
1665 |
#: includes/class-frontend.php:1292
|
1666 |
-
#: includes/admin/class-settings.php:
|
1667 |
msgid "Please enter a valid URL."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
#: includes/class-frontend.php:1293
|
1671 |
-
#: includes/admin/class-settings.php:
|
1672 |
msgid "Please enter a valid email address."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
#: includes/class-frontend.php:1294
|
1676 |
-
#: includes/admin/class-settings.php:
|
1677 |
msgid "Did you mean {suggestion}?"
|
1678 |
msgstr ""
|
1679 |
|
@@ -1682,13 +1682,13 @@ msgid "Click to accept this suggestion."
|
|
1682 |
msgstr ""
|
1683 |
|
1684 |
#: includes/class-frontend.php:1296
|
1685 |
-
#: includes/admin/class-settings.php:
|
1686 |
#: includes/fields/class-number.php:162
|
1687 |
msgid "Please enter a valid number."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
#: includes/class-frontend.php:1297
|
1691 |
-
#: includes/admin/class-settings.php:
|
1692 |
msgid "Field values do not match."
|
1693 |
msgstr ""
|
1694 |
|
@@ -1726,7 +1726,7 @@ msgid "The total size of the selected files {totalSize} Mb exceeds the allowed l
|
|
1726 |
msgstr ""
|
1727 |
|
1728 |
#: includes/class-frontend.php:1306
|
1729 |
-
#: includes/admin/class-settings.php:
|
1730 |
#: includes/fields/class-checkbox.php:592
|
1731 |
msgid "You have exceeded the number of allowed selections: {#}."
|
1732 |
msgstr ""
|
@@ -2081,7 +2081,7 @@ msgstr ""
|
|
2081 |
#. translators: %d - field ID.
|
2082 |
#: includes/emails/class-emails.php:514
|
2083 |
#: includes/emails/class-emails.php:556
|
2084 |
-
#: src/Pro/Admin/Entries/PrintPreview.php:
|
2085 |
msgid "Field ID #%d"
|
2086 |
msgstr ""
|
2087 |
|
@@ -2136,7 +2136,7 @@ msgid "Customer Support"
|
|
2136 |
msgstr ""
|
2137 |
|
2138 |
#: includes/admin/class-about.php:116
|
2139 |
-
#: includes/admin/class-menu.php:
|
2140 |
msgid "About Us"
|
2141 |
msgstr ""
|
2142 |
|
@@ -2178,362 +2178,367 @@ msgstr ""
|
|
2178 |
msgid "The WPForms Team"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: includes/admin/class-about.php:
|
2182 |
#: includes/admin/admin.php:123
|
2183 |
msgid "Active"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: includes/admin/class-about.php:
|
2187 |
#: includes/admin/admin.php:122
|
2188 |
msgid "Activated"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: includes/admin/class-about.php:
|
2192 |
#: includes/admin/admin.php:125
|
2193 |
msgid "Inactive"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: includes/admin/class-about.php:
|
2197 |
#: includes/admin/admin.php:121
|
2198 |
#: includes/admin/admin.php:152
|
2199 |
msgid "Activate"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: includes/admin/class-about.php:
|
2203 |
#: includes/admin/class-tools.php:277
|
2204 |
msgid "Not Installed"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: includes/admin/class-about.php:
|
2208 |
msgid "Install Plugin"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
#. translators: %s - addon status label.
|
2212 |
-
#: includes/admin/class-about.php:
|
2213 |
msgid "Status: %s"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: includes/admin/class-about.php:
|
2217 |
msgid "Creating Your First Form"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: includes/admin/class-about.php:
|
2221 |
msgid "Want to get started creating your first form with WPForms? By following the step by step instructions in this walkthrough, you can easily publish your first form on your site."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: includes/admin/class-about.php:
|
2225 |
msgid "To begin, you’ll need to be logged into the WordPress admin area. Once there, click on WPForms in the admin sidebar to go the Forms Overview page."
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: includes/admin/class-about.php:
|
2229 |
msgid "In the Forms Overview page, the forms list will be empty because there are no forms yet. To create a new form, click on the Add New button, and this will launch the WPForms Form Builder."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: includes/admin/class-about.php:
|
2233 |
msgid "How to Add a New Form"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: includes/admin/class-about.php:
|
2237 |
msgid "How to Customize Form Fields"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: includes/admin/class-about.php:
|
2241 |
msgid "How to Display Forms on Your Site"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: includes/admin/class-about.php:
|
2245 |
msgid "Thanks for being a loyal WPForms Lite user. <strong>Upgrade to WPForms Pro</strong> to unlock all the awesome features and experience<br>why WPForms is consistently rated the best WordPress form builder."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
#. translators: %s - stars.
|
2249 |
-
#: includes/admin/class-about.php:
|
2250 |
msgid "We know that you will truly love WPForms. It has over <strong>2000+ five star ratings</strong> (%s) and is active on over 1 million websites."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: includes/admin/class-about.php:
|
2254 |
msgid "Entry Management - view all leads in one place."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: includes/admin/class-about.php:
|
2258 |
msgid "All form features like file upload, pagination, etc."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: includes/admin/class-about.php:
|
2262 |
msgid "Create surveys & polls with the surveys addon."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: includes/admin/class-about.php:
|
2266 |
msgid "WordPress user registration and login forms."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: includes/admin/class-about.php:
|
2270 |
msgid "Create payment forms with Stripe and PayPal."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: includes/admin/class-about.php:
|
2274 |
msgid "Powerful Conditional Logic so you can create smart forms."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: includes/admin/class-about.php:
|
2278 |
msgid "500+ integrations with different marketing & payment services."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: includes/admin/class-about.php:
|
2282 |
msgid "Collect signatures, geo-location data, and more."
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: includes/admin/class-about.php:
|
2286 |
msgid "Accept user submitted content with Post Submissions addon."
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: includes/admin/class-about.php:
|
2290 |
msgid "Bonus form templates, form abandonment, and more."
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: includes/admin/class-about.php:
|
2294 |
-
#: includes/admin/class-about.php:
|
2295 |
msgid "Get WPForms Pro Today and Unlock all the Powerful Features"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: includes/admin/class-about.php:
|
2299 |
-
#: includes/admin/class-about.php:
|
2300 |
msgid "Bonus: WPForms Lite users get <span class=\"price-20-off\">50% off regular price</span>, automatically applied at checkout."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: includes/admin/class-about.php:
|
2304 |
msgid "How to Choose the Right Form Field"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: includes/admin/class-about.php:
|
2308 |
msgid "Are you wondering which form fields you have access to in WPForms and what each field does? WPForms has lots of field types to make creating and filling out forms easy. In this tutorial, we’ll cover all of the fields available in WPForms."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: includes/admin/class-about.php:
|
2312 |
-
#: includes/admin/class-about.php:
|
2313 |
-
#: includes/admin/class-about.php:
|
2314 |
-
#: includes/admin/class-about.php:
|
2315 |
msgid "Read Documentation"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: includes/admin/class-about.php:
|
2319 |
msgid "A Complete Guide to WPForms Settings"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: includes/admin/class-about.php:
|
2323 |
msgid "Would you like to learn more about all of the settings available in WPForms? In addition to tons of customization options within the form builder, WPForms has an extensive list of plugin-wide options available. This includes choosing your currency, adding GDPR enhancements, setting up integrations."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: includes/admin/class-about.php:
|
2327 |
msgid "How to Create GDPR Compliant Forms"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: includes/admin/class-about.php:
|
2331 |
msgid "Do you need to check that your forms are compliant with the European Union’s General Data Protection Regulation? The best way to ensure GDPR compliance for your specific site is always to consult legal counsel. In this guide, we’ll discuss general considerations for GDPR compliance in your WordPress forms."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: includes/admin/class-about.php:
|
2335 |
msgid "How to Install and Activate WPForms Addons"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: includes/admin/class-about.php:
|
2339 |
msgid "Would you like to access WPForms addons to extend the functionality of your forms? The first thing you need to do is install WPForms. Once that’s done, let’s go ahead and look at the process of activating addons."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: includes/admin/class-about.php:
|
2343 |
msgid "Get the most out of WPForms by upgrading to Pro and unlocking all of the powerful features."
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: includes/admin/class-about.php:
|
2347 |
msgid "Feature"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: includes/admin/class-about.php:
|
2351 |
msgid "Pro"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: includes/admin/class-about.php:
|
2355 |
#: src/Lite/Admin/DashboardWidget.php:364
|
2356 |
msgid "MonsterInsights"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: includes/admin/class-about.php:
|
2360 |
-
#: includes/admin/class-about.php:
|
2361 |
msgid "MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: includes/admin/class-about.php:
|
2365 |
msgid "MonsterInsights Pro"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: includes/admin/class-about.php:
|
2369 |
msgid "OptinMonster"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: includes/admin/class-about.php:
|
2373 |
msgid "Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: includes/admin/class-about.php:
|
2377 |
msgid "WP Mail SMTP"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: includes/admin/class-about.php:
|
|
|
2381 |
msgid "SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: includes/admin/class-about.php:
|
|
|
|
|
|
|
|
|
2385 |
msgid "Entries via Email Only"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: includes/admin/class-about.php:
|
2389 |
-
#: includes/admin/class-about.php:
|
2390 |
-
#: includes/admin/class-about.php:
|
2391 |
msgid "Complete Entry Management inside WordPress"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: includes/admin/class-about.php:
|
2395 |
msgid "Standard Fields Only"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: includes/admin/class-about.php:
|
2399 |
msgid "Name, Email, Single Line Text, Paragraph Text, Dropdown, Multiple Choice, Checkboxes, and Numbers"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: includes/admin/class-about.php:
|
2403 |
-
#: includes/admin/class-about.php:
|
2404 |
-
#: includes/admin/class-about.php:
|
2405 |
msgid "Access to all Standard and Fancy Fields"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: includes/admin/class-about.php:
|
2409 |
-
#: includes/admin/class-about.php:
|
2410 |
-
#: includes/admin/class-about.php:
|
2411 |
msgid "Address, Phone, Website URL, Date/Time, Password, File Upload, HTML, Pagebreaks, Section Dividers, Ratings, and Hidden Field"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: includes/admin/class-about.php:
|
2415 |
msgid "Not available"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: includes/admin/class-about.php:
|
2419 |
-
#: includes/admin/class-about.php:
|
2420 |
-
#: includes/admin/class-about.php:
|
2421 |
msgid "Powerful Form Logic for Building Smart Forms"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: includes/admin/class-about.php:
|
2425 |
-
#: includes/admin/class-about.php:
|
2426 |
-
#: includes/admin/class-about.php:
|
2427 |
msgid "Basic Form Templates"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: includes/admin/class-about.php:
|
2431 |
msgid "All Form Templates including Bonus 150+ pre-made form templates."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: includes/admin/class-about.php:
|
2435 |
-
#: includes/admin/class-about.php:
|
2436 |
msgid "Limited Marketing Integration"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: includes/admin/class-about.php:
|
2440 |
-
#: includes/admin/class-about.php:
|
2441 |
msgid "Constant Contact only"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: includes/admin/class-about.php:
|
2445 |
msgid "6 Email Marketing Integrations"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: includes/admin/class-about.php:
|
2449 |
msgid "Constant Contact, Mailchimp, AWeber, GetResponse, Campaign Monitor, and Drip"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: includes/admin/class-about.php:
|
2453 |
msgid "All Marketing Integrations"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: includes/admin/class-about.php:
|
2457 |
msgid "Constant Contact, MailChimp, AWeber, GetResponse, Campaign Monitor, and Drip."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: includes/admin/class-about.php:
|
2461 |
msgid "<strong>Bonus:</strong> 500+ integrations with Zapier."
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: includes/admin/class-about.php:
|
2465 |
-
#: includes/admin/class-about.php:
|
2466 |
-
#: includes/admin/class-about.php:
|
2467 |
-
#: includes/admin/class-about.php:
|
2468 |
-
#: includes/admin/class-about.php:
|
2469 |
-
#: includes/admin/class-about.php:
|
2470 |
msgid "Not Available"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: includes/admin/class-about.php:
|
2474 |
msgid "Create Payment Forms"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: includes/admin/class-about.php:
|
2478 |
msgid "Accept payments using Stripe (credit card) and PayPal"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: includes/admin/class-about.php:
|
2482 |
msgid "Create interactive Surveys and Polls with beautiful reports"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: includes/admin/class-about.php:
|
2486 |
msgid "No Advanced Features"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: includes/admin/class-about.php:
|
2490 |
-
#: includes/admin/class-about.php:
|
2491 |
msgid "Limited Advanced Features"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: includes/admin/class-about.php:
|
2495 |
-
#: includes/admin/class-about.php:
|
2496 |
msgid "Multi-page Forms, File Upload Forms, Multiple Form Notifications, Conditional Form Confirmation"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: includes/admin/class-about.php:
|
2500 |
msgid "All Advanced Features"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: includes/admin/class-about.php:
|
2504 |
msgid "Multi-page Forms, File Upload Forms, Multiple Form Notifications, Conditional Form Confirmation, Custom CAPTCHA, Offline Forms, Signature Forms"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: includes/admin/class-about.php:
|
2508 |
msgid "No Addons Included"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: includes/admin/class-about.php:
|
2512 |
msgid "Custom Captcha Addon included"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: includes/admin/class-about.php:
|
2516 |
msgid "Email Marketing Addons included"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: includes/admin/class-about.php:
|
2520 |
msgid "All Addons Included"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: includes/admin/class-about.php:
|
2524 |
msgid "Form Abandonment, Front-end Post Submission, User Registration, Geo-location, and more (17 total)"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: includes/admin/class-about.php:
|
2528 |
msgid "Limited Support"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: includes/admin/class-about.php:
|
2532 |
-
#: includes/admin/class-about.php:
|
2533 |
msgid "Standard Support"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: includes/admin/class-about.php:
|
2537 |
#: includes/admin/class-welcome.php:250
|
2538 |
msgid "Priority Support"
|
2539 |
msgstr ""
|
@@ -2775,7 +2780,7 @@ msgstr ""
|
|
2775 |
#: includes/admin/ajax-actions.php:549
|
2776 |
#: includes/class-license.php:756
|
2777 |
#: includes/class-license.php:762
|
2778 |
-
#: includes/class-license.php:
|
2779 |
msgid "Plugin installed & activated."
|
2780 |
msgstr ""
|
2781 |
|
@@ -3029,33 +3034,33 @@ msgstr ""
|
|
3029 |
msgid "Entries"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: includes/admin/class-menu.php:
|
3033 |
msgid "WPForms Settings"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: includes/admin/class-menu.php:
|
3037 |
-
#: includes/admin/class-menu.php:
|
3038 |
#: includes/admin/builder/panels/class-settings.php:22
|
3039 |
msgid "Settings"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: includes/admin/class-menu.php:
|
3043 |
msgid "WPForms Tools"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: includes/admin/class-menu.php:
|
3047 |
msgid "Tools"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: includes/admin/class-menu.php:
|
3051 |
msgid "Info"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: includes/admin/class-menu.php:
|
3055 |
msgid "Addons"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: includes/admin/class-menu.php:
|
3059 |
msgid "About WPForms"
|
3060 |
msgstr ""
|
3061 |
|
@@ -3721,8 +3726,8 @@ msgstr ""
|
|
3721 |
|
3722 |
#: includes/admin/builder/panels/class-settings.php:42
|
3723 |
#: includes/admin/builder/panels/class-settings.php:82
|
3724 |
-
#: includes/admin/class-settings.php:
|
3725 |
-
#: includes/admin/class-settings.php:
|
3726 |
msgid "General"
|
3727 |
msgstr ""
|
3728 |
|
@@ -4218,20 +4223,24 @@ msgid "Upgrade now"
|
|
4218 |
msgstr ""
|
4219 |
|
4220 |
#: includes/admin/class-settings.php:177
|
|
|
|
|
|
|
|
|
4221 |
msgid "Do upgrade later"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
-
#: includes/admin/class-settings.php:
|
4225 |
-
#: includes/admin/class-settings.php:
|
4226 |
-
#: includes/admin/class-settings.php:
|
4227 |
-
#: includes/admin/class-settings.php:
|
4228 |
-
#: includes/admin/class-settings.php:
|
4229 |
msgid "Save Settings"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
-
#: includes/admin/class-settings.php:
|
4233 |
-
#: includes/admin/class-settings.php:
|
4234 |
-
#: includes/admin/class-settings.php:
|
4235 |
#: includes/templates/class-subscribe.php:44
|
4236 |
#: includes/templates/class-suggestion.php:41
|
4237 |
#: includes/templates/class-contact.php:42
|
@@ -4241,257 +4250,257 @@ msgstr ""
|
|
4241 |
msgid "Email"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: includes/admin/class-settings.php:
|
4245 |
-
#: includes/admin/class-settings.php:
|
4246 |
msgid "reCAPTCHA"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: includes/admin/class-settings.php:
|
4250 |
msgid "Validation"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: includes/admin/class-settings.php:
|
4254 |
-
#: includes/admin/class-settings.php:
|
4255 |
-
#: includes/admin/class-settings.php:
|
4256 |
msgid "Integrations"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: includes/admin/class-settings.php:
|
4260 |
-
#: includes/admin/class-settings.php:
|
4261 |
msgid "Misc"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
-
#: includes/admin/class-settings.php:
|
4265 |
msgid "reCAPTCHA is a free anti-spam service from Google which helps to protect your website from spam and abuse while letting real people pass through with ease."
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
#: includes/admin/class-settings.php:
|
4269 |
msgid "Google offers 3 versions of reCAPTCHA (all supported within WPForms):"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: includes/admin/class-settings.php:
|
4273 |
msgid "<strong>v2 Checkbox reCAPTCHA</strong>: Prompts users to check a box to prove they're human."
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: includes/admin/class-settings.php:
|
4277 |
msgid "<strong>v2 Invisible reCAPTCHA</strong>: Uses advanced technology to detect real users without requiring any input."
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: includes/admin/class-settings.php:
|
4281 |
msgid "<strong>v3 reCAPTCHA</strong>: Uses a behind-the-scenes scoring system to detect abusive traffic, and lets you decide the minimum passing score. Recommended for advanced use only (or if using Google AMP)."
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: includes/admin/class-settings.php:
|
4285 |
msgid "Sites already using one type of reCAPTCHA will need to create new site keys before switching to a different option."
|
4286 |
msgstr ""
|
4287 |
|
4288 |
#. translators: %s - WPForms.com Setup Captcha URL.
|
4289 |
-
#: includes/admin/class-settings.php:
|
4290 |
msgid "<a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">Read our walk through</a> to learn more and for step-by-step directions."
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: includes/admin/class-settings.php:
|
4294 |
msgid "License"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: includes/admin/class-settings.php:
|
4298 |
msgid "Your license key provides access to updates and addons."
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: includes/admin/class-settings.php:
|
4302 |
msgid "License Key"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
-
#: includes/admin/class-settings.php:
|
4306 |
msgid "Include Form Styling"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
#. translators: %s - WPForms.com documentation URL.
|
4310 |
-
#: includes/admin/class-settings.php:
|
4311 |
msgid "Determines which CSS files to load for the site (<a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">please see our tutorial for full details</a>). Unless experienced with CSS or instructed by support, \"Base and Form Theme Styling\" is recommended."
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: includes/admin/class-settings.php:
|
4315 |
msgid "Base and form theme styling"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: includes/admin/class-settings.php:
|
4319 |
msgid "Base styling only"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: includes/admin/class-settings.php:
|
4323 |
msgid "No styling"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: includes/admin/class-settings.php:
|
4327 |
msgid "Load Assets Globally"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: includes/admin/class-settings.php:
|
4331 |
msgid "Check this if you would like to load WPForms assets site-wide. Only check if your site is having compatibility issues or instructed to by support."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: includes/admin/class-settings.php:
|
4335 |
msgid "GDPR"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: includes/admin/class-settings.php:
|
4339 |
msgid "GDPR Enhancements"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
#. translators: %s - WPForms.com GDPR documentation URL.
|
4343 |
-
#: includes/admin/class-settings.php:
|
4344 |
msgid "Check this to turn on GDPR related features and enhancements. <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">Read our GDPR documentation</a> to learn more."
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#: includes/admin/class-settings.php:
|
4348 |
msgid "Template"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: includes/admin/class-settings.php:
|
4352 |
msgid "Determines how email notifications will be formatted. HTML Templates are the default."
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: includes/admin/class-settings.php:
|
4356 |
msgid "HTML Template"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: includes/admin/class-settings.php:
|
4360 |
msgid "Plain text"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: includes/admin/class-settings.php:
|
4364 |
msgid "Header Image"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: includes/admin/class-settings.php:
|
4368 |
msgid "Upload or choose a logo to be displayed at the top of email notifications.<br>Recommended size is 300x100 or smaller for best support on all devices."
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: includes/admin/class-settings.php:
|
4372 |
msgid "Background Color"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#: includes/admin/class-settings.php:
|
4376 |
msgid "Customize the background color of the HTML email template."
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: includes/admin/class-settings.php:
|
4380 |
msgid "Carbon Copy"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: includes/admin/class-settings.php:
|
4384 |
msgid "Check this if you would like to enable the ability to CC: email addresses in the form notification settings."
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#: includes/admin/class-settings.php:
|
4388 |
msgid "Type"
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#: includes/admin/class-settings.php:
|
4392 |
msgid "Checkbox reCAPTCHA v2"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
-
#: includes/admin/class-settings.php:
|
4396 |
msgid "Invisible reCAPTCHA v2"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#: includes/admin/class-settings.php:
|
4400 |
msgid "reCAPTCHA v3"
|
4401 |
msgstr ""
|
4402 |
|
4403 |
-
#: includes/admin/class-settings.php:
|
4404 |
msgid "Site Key"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
-
#: includes/admin/class-settings.php:
|
4408 |
msgid "Secret Key"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: includes/admin/class-settings.php:
|
4412 |
msgid "Fail Message"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#: includes/admin/class-settings.php:
|
4416 |
msgid "The message displayed to users who fail the reCAPTCHA verification process."
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: includes/admin/class-settings.php:
|
4420 |
#: includes/class-process.php:176
|
4421 |
msgid "Google reCAPTCHA verification failed, please try again later."
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: includes/admin/class-settings.php:
|
4425 |
msgid "Score Threshold"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: includes/admin/class-settings.php:
|
4429 |
msgid "reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is very likely a bot). If the score less than or equal to this threshold, the form submission will be blocked and the message above will be displayed."
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: includes/admin/class-settings.php:
|
4433 |
msgid "0.4"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: includes/admin/class-settings.php:
|
4437 |
msgid "No-Conflict Mode"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: includes/admin/class-settings.php:
|
4441 |
msgid "When checked, other reCAPTCHA occurrences are forcefully removed, to prevent conflicts. Only check if your site is having compatibility issues or instructed to by support."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: includes/admin/class-settings.php:
|
4445 |
msgid "Validation Messages"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: includes/admin/class-settings.php:
|
4449 |
msgid "These messages are displayed to the users as they fill out a form in real-time."
|
4450 |
msgstr ""
|
4451 |
|
4452 |
-
#: includes/admin/class-settings.php:
|
4453 |
#: includes/fields/class-base.php:722
|
4454 |
msgid "Required"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
-
#: includes/admin/class-settings.php:
|
4458 |
msgid "Website URL"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: includes/admin/class-settings.php:
|
4462 |
msgid "Email Suggestion"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
-
#: includes/admin/class-settings.php:
|
4466 |
msgid "Number"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: includes/admin/class-settings.php:
|
4470 |
msgid "Confirm Value"
|
4471 |
msgstr ""
|
4472 |
|
4473 |
-
#: includes/admin/class-settings.php:
|
4474 |
msgid "Checkbox Selection Limit"
|
4475 |
msgstr ""
|
4476 |
|
4477 |
-
#: includes/admin/class-settings.php:
|
4478 |
-
#: includes/admin/class-settings.php:
|
4479 |
msgid "Manage integrations with popular providers such as Constant Contact, MailChimp, Zapier, and more."
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: includes/admin/class-settings.php:
|
4483 |
msgid "Hide Announcements"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: includes/admin/class-settings.php:
|
4487 |
msgid "Check this if you would like to hide plugin announcements and update details."
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: includes/admin/class-settings.php:
|
4491 |
msgid "Uninstall WPForms"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: includes/admin/class-settings.php:
|
4495 |
msgid "Check this if you would like to remove ALL WPForms data upon plugin deletion. All forms and settings will be unrecoverable."
|
4496 |
msgstr ""
|
4497 |
|
@@ -4654,7 +4663,7 @@ msgid "Only the Lite version can upgrade."
|
|
4654 |
msgstr ""
|
4655 |
|
4656 |
#: includes/class-license.php:646
|
4657 |
-
msgid "
|
4658 |
msgstr ""
|
4659 |
|
4660 |
#: includes/class-license.php:667
|
@@ -4669,7 +4678,7 @@ msgstr ""
|
|
4669 |
msgid "Could not install upgrade. Please check for file system permissions and try again. Also you can download plugin from wpforms.com and install manually."
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: includes/class-license.php:
|
4673 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
4674 |
msgstr ""
|
4675 |
|
@@ -5377,20 +5386,20 @@ msgstr ""
|
|
5377 |
msgid "Print"
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#: src/Pro/Admin/Entries/PrintPreview.php:
|
5381 |
msgid "This entry does not have any fields"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
-
#: src/Pro/Admin/Entries/PrintPreview.php:
|
5385 |
msgid "Empty"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#: src/Pro/Admin/Entries/PrintPreview.php:
|
5389 |
msgid "Notes"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
#. translators: %1$s - user name; %2$s - date
|
5393 |
-
#: src/Pro/Admin/Entries/PrintPreview.php:
|
5394 |
msgid "Added by %1$s on %2$s"
|
5395 |
msgstr ""
|
5396 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: WPForms Lite 1.5.4.2\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpforms-lite\n"
|
5 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
6 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"POT-Creation-Date: 2019-08-06T23:14:31+00:00\n"
|
11 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
12 |
"X-Generator: WP-CLI 2.1.0\n"
|
13 |
"X-Domain: wpforms-lite\n"
|
17 |
#: includes/admin/class-menu.php:39
|
18 |
#: includes/admin/class-menu.php:40
|
19 |
#: includes/admin/class-menu.php:51
|
20 |
+
#: includes/admin/class-menu.php:109
|
21 |
#: includes/integrations.php:45
|
22 |
#: includes/class-form.php:74
|
23 |
#: src/Lite/Admin/DashboardWidget.php:162
|
190 |
msgstr ""
|
191 |
|
192 |
#: lite/wpforms-lite.php:410
|
193 |
+
#: includes/admin/class-about.php:437
|
194 |
msgid "Get WPForms Pro and Unlock all the Powerful Features"
|
195 |
msgstr ""
|
196 |
|
305 |
|
306 |
#: lite/wpforms-lite.php:1065
|
307 |
#: includes/admin/class-about.php:85
|
308 |
+
#: includes/admin/class-menu.php:119
|
309 |
msgid "WPForms Addons"
|
310 |
msgstr ""
|
311 |
|
1609 |
|
1610 |
#: includes/functions.php:1695
|
1611 |
#: includes/class-frontend.php:1291
|
1612 |
+
#: includes/admin/class-settings.php:502
|
1613 |
msgid "This field is required."
|
1614 |
msgstr ""
|
1615 |
|
1663 |
msgstr ""
|
1664 |
|
1665 |
#: includes/class-frontend.php:1292
|
1666 |
+
#: includes/admin/class-settings.php:508
|
1667 |
msgid "Please enter a valid URL."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
#: includes/class-frontend.php:1293
|
1671 |
+
#: includes/admin/class-settings.php:514
|
1672 |
msgid "Please enter a valid email address."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
#: includes/class-frontend.php:1294
|
1676 |
+
#: includes/admin/class-settings.php:520
|
1677 |
msgid "Did you mean {suggestion}?"
|
1678 |
msgstr ""
|
1679 |
|
1682 |
msgstr ""
|
1683 |
|
1684 |
#: includes/class-frontend.php:1296
|
1685 |
+
#: includes/admin/class-settings.php:526
|
1686 |
#: includes/fields/class-number.php:162
|
1687 |
msgid "Please enter a valid number."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
#: includes/class-frontend.php:1297
|
1691 |
+
#: includes/admin/class-settings.php:532
|
1692 |
msgid "Field values do not match."
|
1693 |
msgstr ""
|
1694 |
|
1726 |
msgstr ""
|
1727 |
|
1728 |
#: includes/class-frontend.php:1306
|
1729 |
+
#: includes/admin/class-settings.php:538
|
1730 |
#: includes/fields/class-checkbox.php:592
|
1731 |
msgid "You have exceeded the number of allowed selections: {#}."
|
1732 |
msgstr ""
|
2081 |
#. translators: %d - field ID.
|
2082 |
#: includes/emails/class-emails.php:514
|
2083 |
#: includes/emails/class-emails.php:556
|
2084 |
+
#: src/Pro/Admin/Entries/PrintPreview.php:232
|
2085 |
msgid "Field ID #%d"
|
2086 |
msgstr ""
|
2087 |
|
2136 |
msgstr ""
|
2137 |
|
2138 |
#: includes/admin/class-about.php:116
|
2139 |
+
#: includes/admin/class-menu.php:130
|
2140 |
msgid "About Us"
|
2141 |
msgstr ""
|
2142 |
|
2178 |
msgid "The WPForms Team"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: includes/admin/class-about.php:310
|
2182 |
#: includes/admin/admin.php:123
|
2183 |
msgid "Active"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: includes/admin/class-about.php:313
|
2187 |
#: includes/admin/admin.php:122
|
2188 |
msgid "Activated"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: includes/admin/class-about.php:318
|
2192 |
#: includes/admin/admin.php:125
|
2193 |
msgid "Inactive"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: includes/admin/class-about.php:321
|
2197 |
#: includes/admin/admin.php:121
|
2198 |
#: includes/admin/admin.php:152
|
2199 |
msgid "Activate"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: includes/admin/class-about.php:331
|
2203 |
#: includes/admin/class-tools.php:277
|
2204 |
msgid "Not Installed"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: includes/admin/class-about.php:334
|
2208 |
msgid "Install Plugin"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
#. translators: %s - addon status label.
|
2212 |
+
#: includes/admin/class-about.php:355
|
2213 |
msgid "Status: %s"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: includes/admin/class-about.php:391
|
2217 |
msgid "Creating Your First Form"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: includes/admin/class-about.php:395
|
2221 |
msgid "Want to get started creating your first form with WPForms? By following the step by step instructions in this walkthrough, you can easily publish your first form on your site."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: includes/admin/class-about.php:399
|
2225 |
msgid "To begin, you’ll need to be logged into the WordPress admin area. Once there, click on WPForms in the admin sidebar to go the Forms Overview page."
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: includes/admin/class-about.php:403
|
2229 |
msgid "In the Forms Overview page, the forms list will be empty because there are no forms yet. To create a new form, click on the Add New button, and this will launch the WPForms Form Builder."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: includes/admin/class-about.php:409
|
2233 |
msgid "How to Add a New Form"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: includes/admin/class-about.php:414
|
2237 |
msgid "How to Customize Form Fields"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: includes/admin/class-about.php:419
|
2241 |
msgid "How to Display Forms on Your Site"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: includes/admin/class-about.php:443
|
2245 |
msgid "Thanks for being a loyal WPForms Lite user. <strong>Upgrade to WPForms Pro</strong> to unlock all the awesome features and experience<br>why WPForms is consistently rated the best WordPress form builder."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
#. translators: %s - stars.
|
2249 |
+
#: includes/admin/class-about.php:457
|
2250 |
msgid "We know that you will truly love WPForms. It has over <strong>2000+ five star ratings</strong> (%s) and is active on over 1 million websites."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: includes/admin/class-about.php:478
|
2254 |
msgid "Entry Management - view all leads in one place."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: includes/admin/class-about.php:482
|
2258 |
msgid "All form features like file upload, pagination, etc."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: includes/admin/class-about.php:486
|
2262 |
msgid "Create surveys & polls with the surveys addon."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: includes/admin/class-about.php:490
|
2266 |
msgid "WordPress user registration and login forms."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: includes/admin/class-about.php:494
|
2270 |
msgid "Create payment forms with Stripe and PayPal."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: includes/admin/class-about.php:502
|
2274 |
msgid "Powerful Conditional Logic so you can create smart forms."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: includes/admin/class-about.php:506
|
2278 |
msgid "500+ integrations with different marketing & payment services."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: includes/admin/class-about.php:510
|
2282 |
msgid "Collect signatures, geo-location data, and more."
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: includes/admin/class-about.php:514
|
2286 |
msgid "Accept user submitted content with Post Submissions addon."
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: includes/admin/class-about.php:518
|
2290 |
msgid "Bonus form templates, form abandonment, and more."
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: includes/admin/class-about.php:533
|
2294 |
+
#: includes/admin/class-about.php:716
|
2295 |
msgid "Get WPForms Pro Today and Unlock all the Powerful Features"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: includes/admin/class-about.php:542
|
2299 |
+
#: includes/admin/class-about.php:725
|
2300 |
msgid "Bonus: WPForms Lite users get <span class=\"price-20-off\">50% off regular price</span>, automatically applied at checkout."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: includes/admin/class-about.php:563
|
2304 |
msgid "How to Choose the Right Form Field"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: includes/admin/class-about.php:567
|
2308 |
msgid "Are you wondering which form fields you have access to in WPForms and what each field does? WPForms has lots of field types to make creating and filling out forms easy. In this tutorial, we’ll cover all of the fields available in WPForms."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: includes/admin/class-about.php:571
|
2312 |
+
#: includes/admin/class-about.php:590
|
2313 |
+
#: includes/admin/class-about.php:609
|
2314 |
+
#: includes/admin/class-about.php:628
|
2315 |
msgid "Read Documentation"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: includes/admin/class-about.php:582
|
2319 |
msgid "A Complete Guide to WPForms Settings"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/admin/class-about.php:586
|
2323 |
msgid "Would you like to learn more about all of the settings available in WPForms? In addition to tons of customization options within the form builder, WPForms has an extensive list of plugin-wide options available. This includes choosing your currency, adding GDPR enhancements, setting up integrations."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/admin/class-about.php:601
|
2327 |
msgid "How to Create GDPR Compliant Forms"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: includes/admin/class-about.php:605
|
2331 |
msgid "Do you need to check that your forms are compliant with the European Union’s General Data Protection Regulation? The best way to ensure GDPR compliance for your specific site is always to consult legal counsel. In this guide, we’ll discuss general considerations for GDPR compliance in your WordPress forms."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: includes/admin/class-about.php:620
|
2335 |
msgid "How to Install and Activate WPForms Addons"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: includes/admin/class-about.php:624
|
2339 |
msgid "Would you like to access WPForms addons to extend the functionality of your forms? The first thing you need to do is install WPForms. Once that’s done, let’s go ahead and look at the process of activating addons."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: includes/admin/class-about.php:652
|
2343 |
msgid "Get the most out of WPForms by upgrading to Pro and unlocking all of the powerful features."
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: includes/admin/class-about.php:661
|
2347 |
msgid "Feature"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: includes/admin/class-about.php:671
|
2351 |
msgid "Pro"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: includes/admin/class-about.php:754
|
2355 |
#: src/Lite/Admin/DashboardWidget.php:364
|
2356 |
msgid "MonsterInsights"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: includes/admin/class-about.php:755
|
2360 |
+
#: includes/admin/class-about.php:761
|
2361 |
msgid "MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: includes/admin/class-about.php:760
|
2365 |
msgid "MonsterInsights Pro"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: includes/admin/class-about.php:769
|
2369 |
msgid "OptinMonster"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: includes/admin/class-about.php:770
|
2373 |
msgid "Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: includes/admin/class-about.php:776
|
2377 |
msgid "WP Mail SMTP"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: includes/admin/class-about.php:777
|
2381 |
+
#: includes/admin/class-about.php:783
|
2382 |
msgid "SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: includes/admin/class-about.php:782
|
2386 |
+
msgid "WP Mail SMTP Pro"
|
2387 |
+
msgstr ""
|
2388 |
+
|
2389 |
+
#: includes/admin/class-about.php:810
|
2390 |
msgid "Entries via Email Only"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: includes/admin/class-about.php:816
|
2394 |
+
#: includes/admin/class-about.php:822
|
2395 |
+
#: includes/admin/class-about.php:828
|
2396 |
msgid "Complete Entry Management inside WordPress"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: includes/admin/class-about.php:836
|
2400 |
msgid "Standard Fields Only"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: includes/admin/class-about.php:837
|
2404 |
msgid "Name, Email, Single Line Text, Paragraph Text, Dropdown, Multiple Choice, Checkboxes, and Numbers"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: includes/admin/class-about.php:843
|
2408 |
+
#: includes/admin/class-about.php:850
|
2409 |
+
#: includes/admin/class-about.php:857
|
2410 |
msgid "Access to all Standard and Fancy Fields"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: includes/admin/class-about.php:844
|
2414 |
+
#: includes/admin/class-about.php:851
|
2415 |
+
#: includes/admin/class-about.php:858
|
2416 |
msgid "Address, Phone, Website URL, Date/Time, Password, File Upload, HTML, Pagebreaks, Section Dividers, Ratings, and Hidden Field"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: includes/admin/class-about.php:866
|
2420 |
msgid "Not available"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: includes/admin/class-about.php:872
|
2424 |
+
#: includes/admin/class-about.php:878
|
2425 |
+
#: includes/admin/class-about.php:884
|
2426 |
msgid "Powerful Form Logic for Building Smart Forms"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: includes/admin/class-about.php:892
|
2430 |
+
#: includes/admin/class-about.php:898
|
2431 |
+
#: includes/admin/class-about.php:904
|
2432 |
msgid "Basic Form Templates"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: includes/admin/class-about.php:910
|
2436 |
msgid "All Form Templates including Bonus 150+ pre-made form templates."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: includes/admin/class-about.php:918
|
2440 |
+
#: includes/admin/class-about.php:925
|
2441 |
msgid "Limited Marketing Integration"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: includes/admin/class-about.php:919
|
2445 |
+
#: includes/admin/class-about.php:926
|
2446 |
msgid "Constant Contact only"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: includes/admin/class-about.php:932
|
2450 |
msgid "6 Email Marketing Integrations"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: includes/admin/class-about.php:933
|
2454 |
msgid "Constant Contact, Mailchimp, AWeber, GetResponse, Campaign Monitor, and Drip"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: includes/admin/class-about.php:939
|
2458 |
msgid "All Marketing Integrations"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: includes/admin/class-about.php:940
|
2462 |
msgid "Constant Contact, MailChimp, AWeber, GetResponse, Campaign Monitor, and Drip."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: includes/admin/class-about.php:943
|
2466 |
msgid "<strong>Bonus:</strong> 500+ integrations with Zapier."
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: includes/admin/class-about.php:955
|
2470 |
+
#: includes/admin/class-about.php:961
|
2471 |
+
#: includes/admin/class-about.php:967
|
2472 |
+
#: includes/admin/class-about.php:982
|
2473 |
+
#: includes/admin/class-about.php:988
|
2474 |
+
#: includes/admin/class-about.php:994
|
2475 |
msgid "Not Available"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: includes/admin/class-about.php:973
|
2479 |
msgid "Create Payment Forms"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: includes/admin/class-about.php:974
|
2483 |
msgid "Accept payments using Stripe (credit card) and PayPal"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: includes/admin/class-about.php:1000
|
2487 |
msgid "Create interactive Surveys and Polls with beautiful reports"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: includes/admin/class-about.php:1008
|
2491 |
msgid "No Advanced Features"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: includes/admin/class-about.php:1014
|
2495 |
+
#: includes/admin/class-about.php:1021
|
2496 |
msgid "Limited Advanced Features"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: includes/admin/class-about.php:1015
|
2500 |
+
#: includes/admin/class-about.php:1022
|
2501 |
msgid "Multi-page Forms, File Upload Forms, Multiple Form Notifications, Conditional Form Confirmation"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: includes/admin/class-about.php:1028
|
2505 |
msgid "All Advanced Features"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: includes/admin/class-about.php:1029
|
2509 |
msgid "Multi-page Forms, File Upload Forms, Multiple Form Notifications, Conditional Form Confirmation, Custom CAPTCHA, Offline Forms, Signature Forms"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: includes/admin/class-about.php:1037
|
2513 |
msgid "No Addons Included"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: includes/admin/class-about.php:1043
|
2517 |
msgid "Custom Captcha Addon included"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: includes/admin/class-about.php:1049
|
2521 |
msgid "Email Marketing Addons included"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: includes/admin/class-about.php:1055
|
2525 |
msgid "All Addons Included"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: includes/admin/class-about.php:1056
|
2529 |
msgid "Form Abandonment, Front-end Post Submission, User Registration, Geo-location, and more (17 total)"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: includes/admin/class-about.php:1064
|
2533 |
msgid "Limited Support"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: includes/admin/class-about.php:1070
|
2537 |
+
#: includes/admin/class-about.php:1076
|
2538 |
msgid "Standard Support"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: includes/admin/class-about.php:1082
|
2542 |
#: includes/admin/class-welcome.php:250
|
2543 |
msgid "Priority Support"
|
2544 |
msgstr ""
|
2780 |
#: includes/admin/ajax-actions.php:549
|
2781 |
#: includes/class-license.php:756
|
2782 |
#: includes/class-license.php:762
|
2783 |
+
#: includes/class-license.php:815
|
2784 |
msgid "Plugin installed & activated."
|
2785 |
msgstr ""
|
2786 |
|
3034 |
msgid "Entries"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: includes/admin/class-menu.php:89
|
3038 |
msgid "WPForms Settings"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: includes/admin/class-menu.php:90
|
3042 |
+
#: includes/admin/class-menu.php:167
|
3043 |
#: includes/admin/builder/panels/class-settings.php:22
|
3044 |
msgid "Settings"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: includes/admin/class-menu.php:99
|
3048 |
msgid "WPForms Tools"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: includes/admin/class-menu.php:100
|
3052 |
msgid "Tools"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: includes/admin/class-menu.php:110
|
3056 |
msgid "Info"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: includes/admin/class-menu.php:120
|
3060 |
msgid "Addons"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: includes/admin/class-menu.php:129
|
3064 |
msgid "About WPForms"
|
3065 |
msgstr ""
|
3066 |
|
3726 |
|
3727 |
#: includes/admin/builder/panels/class-settings.php:42
|
3728 |
#: includes/admin/builder/panels/class-settings.php:82
|
3729 |
+
#: includes/admin/class-settings.php:196
|
3730 |
+
#: includes/admin/class-settings.php:329
|
3731 |
msgid "General"
|
3732 |
msgstr ""
|
3733 |
|
4223 |
msgstr ""
|
4224 |
|
4225 |
#: includes/admin/class-settings.php:177
|
4226 |
+
msgid "Activate now"
|
4227 |
+
msgstr ""
|
4228 |
+
|
4229 |
+
#: includes/admin/class-settings.php:178
|
4230 |
msgid "Do upgrade later"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: includes/admin/class-settings.php:198
|
4234 |
+
#: includes/admin/class-settings.php:203
|
4235 |
+
#: includes/admin/class-settings.php:208
|
4236 |
+
#: includes/admin/class-settings.php:213
|
4237 |
+
#: includes/admin/class-settings.php:223
|
4238 |
msgid "Save Settings"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: includes/admin/class-settings.php:201
|
4242 |
+
#: includes/admin/class-settings.php:397
|
4243 |
+
#: includes/admin/class-settings.php:512
|
4244 |
#: includes/templates/class-subscribe.php:44
|
4245 |
#: includes/templates/class-suggestion.php:41
|
4246 |
#: includes/templates/class-contact.php:42
|
4250 |
msgid "Email"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
+
#: includes/admin/class-settings.php:206
|
4254 |
+
#: includes/admin/class-settings.php:437
|
4255 |
msgid "reCAPTCHA"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: includes/admin/class-settings.php:211
|
4259 |
msgid "Validation"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: includes/admin/class-settings.php:216
|
4263 |
+
#: includes/admin/class-settings.php:545
|
4264 |
+
#: includes/admin/class-settings.php:552
|
4265 |
msgid "Integrations"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
+
#: includes/admin/class-settings.php:221
|
4269 |
+
#: includes/admin/class-settings.php:561
|
4270 |
msgid "Misc"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: includes/admin/class-settings.php:262
|
4274 |
msgid "reCAPTCHA is a free anti-spam service from Google which helps to protect your website from spam and abuse while letting real people pass through with ease."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: includes/admin/class-settings.php:263
|
4278 |
msgid "Google offers 3 versions of reCAPTCHA (all supported within WPForms):"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: includes/admin/class-settings.php:268
|
4282 |
msgid "<strong>v2 Checkbox reCAPTCHA</strong>: Prompts users to check a box to prove they're human."
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: includes/admin/class-settings.php:277
|
4286 |
msgid "<strong>v2 Invisible reCAPTCHA</strong>: Uses advanced technology to detect real users without requiring any input."
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: includes/admin/class-settings.php:286
|
4290 |
msgid "<strong>v3 reCAPTCHA</strong>: Uses a behind-the-scenes scoring system to detect abusive traffic, and lets you decide the minimum passing score. Recommended for advanced use only (or if using Google AMP)."
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: includes/admin/class-settings.php:293
|
4294 |
msgid "Sites already using one type of reCAPTCHA will need to create new site keys before switching to a different option."
|
4295 |
msgstr ""
|
4296 |
|
4297 |
#. translators: %s - WPForms.com Setup Captcha URL.
|
4298 |
+
#: includes/admin/class-settings.php:299
|
4299 |
msgid "<a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">Read our walk through</a> to learn more and for step-by-step directions."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: includes/admin/class-settings.php:317
|
4303 |
msgid "License"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: includes/admin/class-settings.php:317
|
4307 |
msgid "Your license key provides access to updates and addons."
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: includes/admin/class-settings.php:324
|
4311 |
msgid "License Key"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: includes/admin/class-settings.php:336
|
4315 |
msgid "Include Form Styling"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
#. translators: %s - WPForms.com documentation URL.
|
4319 |
+
#: includes/admin/class-settings.php:340
|
4320 |
msgid "Determines which CSS files to load for the site (<a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">please see our tutorial for full details</a>). Unless experienced with CSS or instructed by support, \"Base and Form Theme Styling\" is recommended."
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: includes/admin/class-settings.php:355
|
4324 |
msgid "Base and form theme styling"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: includes/admin/class-settings.php:356
|
4328 |
msgid "Base styling only"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
+
#: includes/admin/class-settings.php:357
|
4332 |
msgid "No styling"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: includes/admin/class-settings.php:362
|
4336 |
msgid "Load Assets Globally"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: includes/admin/class-settings.php:363
|
4340 |
msgid "Check this if you would like to load WPForms assets site-wide. Only check if your site is having compatibility issues or instructed to by support."
|
4341 |
msgstr ""
|
4342 |
|
4343 |
+
#: includes/admin/class-settings.php:368
|
4344 |
msgid "GDPR"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
+
#: includes/admin/class-settings.php:375
|
4348 |
msgid "GDPR Enhancements"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
#. translators: %s - WPForms.com GDPR documentation URL.
|
4352 |
+
#: includes/admin/class-settings.php:379
|
4353 |
msgid "Check this to turn on GDPR related features and enhancements. <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">Read our GDPR documentation</a> to learn more."
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: includes/admin/class-settings.php:404
|
4357 |
msgid "Template"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: includes/admin/class-settings.php:405
|
4361 |
msgid "Determines how email notifications will be formatted. HTML Templates are the default."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: includes/admin/class-settings.php:409
|
4365 |
msgid "HTML Template"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: includes/admin/class-settings.php:410
|
4369 |
msgid "Plain text"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: includes/admin/class-settings.php:415
|
4373 |
msgid "Header Image"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: includes/admin/class-settings.php:416
|
4377 |
msgid "Upload or choose a logo to be displayed at the top of email notifications.<br>Recommended size is 300x100 or smaller for best support on all devices."
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: includes/admin/class-settings.php:421
|
4381 |
msgid "Background Color"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: includes/admin/class-settings.php:422
|
4385 |
msgid "Customize the background color of the HTML email template."
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: includes/admin/class-settings.php:428
|
4389 |
msgid "Carbon Copy"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: includes/admin/class-settings.php:429
|
4393 |
msgid "Check this if you would like to enable the ability to CC: email addresses in the form notification settings."
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: includes/admin/class-settings.php:444
|
4397 |
msgid "Type"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: includes/admin/class-settings.php:448
|
4401 |
msgid "Checkbox reCAPTCHA v2"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: includes/admin/class-settings.php:449
|
4405 |
msgid "Invisible reCAPTCHA v2"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: includes/admin/class-settings.php:450
|
4409 |
msgid "reCAPTCHA v3"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: includes/admin/class-settings.php:455
|
4413 |
msgid "Site Key"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: includes/admin/class-settings.php:460
|
4417 |
msgid "Secret Key"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: includes/admin/class-settings.php:465
|
4421 |
msgid "Fail Message"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: includes/admin/class-settings.php:466
|
4425 |
msgid "The message displayed to users who fail the reCAPTCHA verification process."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: includes/admin/class-settings.php:468
|
4429 |
#: includes/class-process.php:176
|
4430 |
msgid "Google reCAPTCHA verification failed, please try again later."
|
4431 |
msgstr ""
|
4432 |
|
4433 |
+
#: includes/admin/class-settings.php:472
|
4434 |
msgid "Score Threshold"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
+
#: includes/admin/class-settings.php:473
|
4438 |
msgid "reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is very likely a bot). If the score less than or equal to this threshold, the form submission will be blocked and the message above will be displayed."
|
4439 |
msgstr ""
|
4440 |
|
4441 |
+
#: includes/admin/class-settings.php:480
|
4442 |
msgid "0.4"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
+
#: includes/admin/class-settings.php:484
|
4446 |
msgid "No-Conflict Mode"
|
4447 |
msgstr ""
|
4448 |
|
4449 |
+
#: includes/admin/class-settings.php:485
|
4450 |
msgid "When checked, other reCAPTCHA occurrences are forcefully removed, to prevent conflicts. Only check if your site is having compatibility issues or instructed to by support."
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: includes/admin/class-settings.php:493
|
4454 |
msgid "Validation Messages"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
+
#: includes/admin/class-settings.php:493
|
4458 |
msgid "These messages are displayed to the users as they fill out a form in real-time."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: includes/admin/class-settings.php:500
|
4462 |
#: includes/fields/class-base.php:722
|
4463 |
msgid "Required"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: includes/admin/class-settings.php:506
|
4467 |
msgid "Website URL"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: includes/admin/class-settings.php:518
|
4471 |
msgid "Email Suggestion"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: includes/admin/class-settings.php:524
|
4475 |
msgid "Number"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: includes/admin/class-settings.php:530
|
4479 |
msgid "Confirm Value"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: includes/admin/class-settings.php:536
|
4483 |
msgid "Checkbox Selection Limit"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: includes/admin/class-settings.php:545
|
4487 |
+
#: includes/admin/class-settings.php:552
|
4488 |
msgid "Manage integrations with popular providers such as Constant Contact, MailChimp, Zapier, and more."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: includes/admin/class-settings.php:568
|
4492 |
msgid "Hide Announcements"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: includes/admin/class-settings.php:569
|
4496 |
msgid "Check this if you would like to hide plugin announcements and update details."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: includes/admin/class-settings.php:574
|
4500 |
msgid "Uninstall WPForms"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
+
#: includes/admin/class-settings.php:575
|
4504 |
msgid "Check this if you would like to remove ALL WPForms data upon plugin deletion. All forms and settings will be unrecoverable."
|
4505 |
msgstr ""
|
4506 |
|
4663 |
msgstr ""
|
4664 |
|
4665 |
#: includes/class-license.php:646
|
4666 |
+
msgid "WPForms Pro was already installed and has not been activated."
|
4667 |
msgstr ""
|
4668 |
|
4669 |
#: includes/class-license.php:667
|
4678 |
msgid "Could not install upgrade. Please check for file system permissions and try again. Also you can download plugin from wpforms.com and install manually."
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: includes/class-license.php:819
|
4682 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
4683 |
msgstr ""
|
4684 |
|
5386 |
msgid "Print"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: src/Pro/Admin/Entries/PrintPreview.php:217
|
5390 |
msgid "This entry does not have any fields"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
+
#: src/Pro/Admin/Entries/PrintPreview.php:235
|
5394 |
msgid "Empty"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
+
#: src/Pro/Admin/Entries/PrintPreview.php:252
|
5398 |
msgid "Notes"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
#. translators: %1$s - user name; %2$s - date
|
5402 |
+
#: src/Pro/Admin/Entries/PrintPreview.php:265
|
5403 |
msgid "Added by %1$s on %2$s"
|
5404 |
msgstr ""
|
5405 |
|
lite/assets/js/admin/upgrade.js
CHANGED
@@ -208,7 +208,7 @@ var WPFormsUpgrade = window.WPFormsUpgrade || ( function( document, window, $ )
|
|
208 |
proAlreadyInstalled: function( res ) {
|
209 |
var buttons = {
|
210 |
confirm: {
|
211 |
-
text: wpforms_upgrade.
|
212 |
btnClass: 'btn-confirm',
|
213 |
keys: [ 'enter' ],
|
214 |
action: function() {
|
208 |
proAlreadyInstalled: function( res ) {
|
209 |
var buttons = {
|
210 |
confirm: {
|
211 |
+
text: wpforms_upgrade.upgrd_to_pro_btn_activate,
|
212 |
btnClass: 'btn-confirm',
|
213 |
keys: [ 'enter' ],
|
214 |
action: function() {
|
lite/assets/js/admin/upgrade.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
"use strict";var WPFormsUpgrade=window.WPFormsUpgrade||function(e,r,t){var n={$licenseKey:t("#wpforms-settings-upgrade-license-key"),$licenseKeySpinner:t("#wpforms-settings-upgrade-license-key ~ .wpforms-spinner"),$licenseKeyCont:t("#wpforms-settings-upgrade-license-key-cont"),$upgradeBtn:t("#wpforms-settings-upgrade-btn")},o={init:function(){t(e).ready(o.ready)},ready:function(){o.displayForm(),o.events()},displayForm:function(){""===n.$licenseKey.val()?n.$licenseKeyCont.removeClass("wpforms-hide"):n.$upgradeBtn.removeClass("wpforms-hide")},events:function(){o.licenseEvent(),o.upgradeBtnClick()},licenseEvent:function(){var e=null;n.$licenseKey.on("input",function(){null!==e&&clearTimeout(e),e=setTimeout(function(){o.licenseVerify()},500)})},upgradeBtnClick:function(){n.$upgradeBtn.on("click",function(){t.alert(o.licenseVerifySuccess())})},licenseVerify:function(){var e={action:"wpforms_verify_license",nonce:wpforms_admin.nonce,license:n.$licenseKey.val()};""!==e.license&&(n.$licenseKeySpinner.removeClass("wpforms-hide"),t.post(wpforms_admin.ajax_url,e).done(function(e){var n;n=e.success?o.licenseVerifySuccess(e):o.licenseVerifyError(e),t.alert(n)}).fail(function(e){o.failAlert(e)}).always(function(e){n.$licenseKeySpinner.addClass("wpforms-hide")}))},licenseVerifySuccess:function(e){var n={confirm:{text:wpforms_upgrade.upgrd_to_pro_btn_upgrade,btnClass:"btn-confirm",keys:["enter"],action:function(){o.gotoUpgradeUrl()}},cancel:{text:wpforms_upgrade.upgrd_to_pro_btn_cancel,keys:["esc"]}};return{title:wpforms_upgrade.upgrd_to_pro_license_ok_title,content:wpforms_upgrade.upgrd_to_pro_license_ok_msg,icon:"fa fa-check-circle",type:"green",buttons:n}},licenseVerifyError:function(e){return{title:wpforms_upgrade.error,content:e.data,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}},proAlreadyInstalled:function(e){var n={confirm:{text:wpforms_upgrade.
|
1 |
+
"use strict";var WPFormsUpgrade=window.WPFormsUpgrade||function(e,r,t){var n={$licenseKey:t("#wpforms-settings-upgrade-license-key"),$licenseKeySpinner:t("#wpforms-settings-upgrade-license-key ~ .wpforms-spinner"),$licenseKeyCont:t("#wpforms-settings-upgrade-license-key-cont"),$upgradeBtn:t("#wpforms-settings-upgrade-btn")},o={init:function(){t(e).ready(o.ready)},ready:function(){o.displayForm(),o.events()},displayForm:function(){""===n.$licenseKey.val()?n.$licenseKeyCont.removeClass("wpforms-hide"):n.$upgradeBtn.removeClass("wpforms-hide")},events:function(){o.licenseEvent(),o.upgradeBtnClick()},licenseEvent:function(){var e=null;n.$licenseKey.on("input",function(){null!==e&&clearTimeout(e),e=setTimeout(function(){o.licenseVerify()},500)})},upgradeBtnClick:function(){n.$upgradeBtn.on("click",function(){t.alert(o.licenseVerifySuccess())})},licenseVerify:function(){var e={action:"wpforms_verify_license",nonce:wpforms_admin.nonce,license:n.$licenseKey.val()};""!==e.license&&(n.$licenseKeySpinner.removeClass("wpforms-hide"),t.post(wpforms_admin.ajax_url,e).done(function(e){var n;n=e.success?o.licenseVerifySuccess(e):o.licenseVerifyError(e),t.alert(n)}).fail(function(e){o.failAlert(e)}).always(function(e){n.$licenseKeySpinner.addClass("wpforms-hide")}))},licenseVerifySuccess:function(e){var n={confirm:{text:wpforms_upgrade.upgrd_to_pro_btn_upgrade,btnClass:"btn-confirm",keys:["enter"],action:function(){o.gotoUpgradeUrl()}},cancel:{text:wpforms_upgrade.upgrd_to_pro_btn_cancel,keys:["esc"]}};return{title:wpforms_upgrade.upgrd_to_pro_license_ok_title,content:wpforms_upgrade.upgrd_to_pro_license_ok_msg,icon:"fa fa-check-circle",type:"green",buttons:n}},licenseVerifyError:function(e){return{title:wpforms_upgrade.error,content:e.data,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}}},proAlreadyInstalled:function(e){var n={confirm:{text:wpforms_upgrade.upgrd_to_pro_btn_activate,btnClass:"btn-confirm",keys:["enter"],action:function(){r.location=r.location}}};return{title:wpforms_upgrade.upgrd_to_pro_license_ok_title,content:e.data.message,icon:"fa fa-check-circle",type:"green",buttons:n}},gotoUpgradeUrl:function(){var e={action:"wpforms_get_upgrade_url",nonce:wpforms_admin.nonce};t.post(wpforms_admin.ajax_url,e).done(function(e){if(e.success)return e.data.reload?void t.alert(o.proAlreadyInstalled(e)):void(r.location.href=e.data.url);t.alert({title:wpforms_upgrade.error,content:e.data.message,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}).fail(function(e){o.failAlert(e)})},failAlert:function(e){console.log(e),t.alert({title:wpforms_upgrade.error,content:wpforms_upgrade.error_intro+" "+e.status+" "+e.statusText+" "+e.responseText,icon:"fa fa-exclamation-circle",type:"orange",buttons:{confirm:{text:wpforms_admin.ok,btnClass:"btn-confirm",keys:["enter"]}}})}};return o}(document,window,jQuery);WPFormsUpgrade.init();
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: wpforms, jaredatch, smub, slaFFik
|
|
3 |
Tags: contact form, contact form plugin, forms, form builder, custom form, contact button, contact me, custom contact form, form manager, form, forms builder, forms creator, captcha, recaptcha, Akismet, email form, web form, feedback form, payment form, survey form, donation form, email submit form, message form, mailchimp, mailchimp form, aweber, aweber form, paypal, paypal form, stripe, stripe form, getresponse, getresponse form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, feedback
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.2
|
6 |
-
Stable tag: 1.5.4.
|
7 |
Requires PHP: 5.3.3
|
8 |
License: GNU General Public License v2.0 or later
|
9 |
|
@@ -407,12 +407,17 @@ Syed Balkhi
|
|
407 |
|
408 |
== Changelog ==
|
409 |
|
|
|
|
|
|
|
|
|
|
|
410 |
= 1.5.4.1 =
|
411 |
- Fixed: Plugin Settings > Misc > 'View Email Summary Example' link errors.
|
412 |
|
413 |
= 1.5.4 =
|
414 |
- Added: Email Summaries.
|
415 |
-
- Added: Form builder hotkey to save changes, CTRL
|
416 |
- Changed: Team photo under WPForms > About Us. :)
|
417 |
- Fixed: Dynamic field population populates checkbox and radio fields values but not adding 'wpforms-selected' class to its containers.
|
418 |
- Fixed: Dropdown field attributes are now accessible with `wpforms_field_properties` filter.
|
@@ -507,4 +512,4 @@ Syed Balkhi
|
|
507 |
- Fixed: reCAPTCHA compatibility when form is inside OptinMonster popup.
|
508 |
- Fixed: Gutenberg block returning error if no forms have been created.
|
509 |
|
510 |
-
[See changelog for all versions](https://plugins.svn.wordpress.org/wpforms-lite/trunk/changelog.txt).
|
3 |
Tags: contact form, contact form plugin, forms, form builder, custom form, contact button, contact me, custom contact form, form manager, form, forms builder, forms creator, captcha, recaptcha, Akismet, email form, web form, feedback form, payment form, survey form, donation form, email submit form, message form, mailchimp, mailchimp form, aweber, aweber form, paypal, paypal form, stripe, stripe form, getresponse, getresponse form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, feedback
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.2
|
6 |
+
Stable tag: 1.5.4.2
|
7 |
Requires PHP: 5.3.3
|
8 |
License: GNU General Public License v2.0 or later
|
9 |
|
407 |
|
408 |
== Changelog ==
|
409 |
|
410 |
+
= 1.5.4.2 =
|
411 |
+
- Changed: Renamed certain actions with typos in their names, backwards-compatible. Added a deprecation text using `do_action_deprecated()`.
|
412 |
+
- Fixed: About Us page behaviour when WP Mail SMTP Pro is installed.
|
413 |
+
- Fixed: reCAPTCHA settings could be saved without providing reCAPTCHA type.
|
414 |
+
|
415 |
= 1.5.4.1 =
|
416 |
- Fixed: Plugin Settings > Misc > 'View Email Summary Example' link errors.
|
417 |
|
418 |
= 1.5.4 =
|
419 |
- Added: Email Summaries.
|
420 |
+
- Added: Form builder hotkey to save changes, CTRL + S.
|
421 |
- Changed: Team photo under WPForms > About Us. :)
|
422 |
- Fixed: Dynamic field population populates checkbox and radio fields values but not adding 'wpforms-selected' class to its containers.
|
423 |
- Fixed: Dropdown field attributes are now accessible with `wpforms_field_properties` filter.
|
512 |
- Fixed: reCAPTCHA compatibility when form is inside OptinMonster popup.
|
513 |
- Fixed: Gutenberg block returning error if no forms have been created.
|
514 |
|
515 |
+
[See changelog for all versions](https://plugins.svn.wordpress.org/wpforms-lite/trunk/changelog.txt).
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitfd7672430854241c2e9f5a2c8316f3fb::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitc42076eeaadec9a909038ef3a12fde09
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitfd7672430854241c2e9f5a2c8316f3fb
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitfd7672430854241c2e9f5a2c8316f3fb', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitfd7672430854241c2e9f5a2c8316f3fb', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitfd7672430854241c2e9f5a2c8316f3fb::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'W' =>
|
@@ -39,8 +39,8 @@ class ComposerStaticInitc42076eeaadec9a909038ef3a12fde09
|
|
39 |
public static function getInitializer(ClassLoader $loader)
|
40 |
{
|
41 |
return \Closure::bind(function () use ($loader) {
|
42 |
-
$loader->prefixLengthsPsr4 =
|
43 |
-
$loader->prefixDirsPsr4 =
|
44 |
|
45 |
}, null, ClassLoader::class);
|
46 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInitfd7672430854241c2e9f5a2c8316f3fb
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'W' =>
|
39 |
public static function getInitializer(ClassLoader $loader)
|
40 |
{
|
41 |
return \Closure::bind(function () use ($loader) {
|
42 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitfd7672430854241c2e9f5a2c8316f3fb::$prefixLengthsPsr4;
|
43 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitfd7672430854241c2e9f5a2c8316f3fb::$prefixDirsPsr4;
|
44 |
|
45 |
}, null, ClassLoader::class);
|
46 |
}
|
wpforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
-
* Version: 1.5.4.
|
9 |
* Text Domain: wpforms-lite
|
10 |
* Domain Path: languages
|
11 |
*
|
@@ -36,7 +36,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
36 |
|
37 |
// Plugin version.
|
38 |
if ( ! defined( 'WPFORMS_VERSION' ) ) {
|
39 |
-
define( 'WPFORMS_VERSION', '1.5.4.
|
40 |
}
|
41 |
|
42 |
// Plugin Folder Path.
|
5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
6 |
* Author: WPForms
|
7 |
* Author URI: https://wpforms.com
|
8 |
+
* Version: 1.5.4.2
|
9 |
* Text Domain: wpforms-lite
|
10 |
* Domain Path: languages
|
11 |
*
|
36 |
|
37 |
// Plugin version.
|
38 |
if ( ! defined( 'WPFORMS_VERSION' ) ) {
|
39 |
+
define( 'WPFORMS_VERSION', '1.5.4.2' );
|
40 |
}
|
41 |
|
42 |
// Plugin Folder Path.
|