Version Description
- Improvement: Style Additional CSS now updates preview in realtime.
- Improvement: Added filter to force style output for compatibility with 3rd party plugins.
- Bugfix: Hidden form title was being displayed in widget previews.
Download this release
Release Info
Developer | thethemefoundry |
Plugin | Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms |
Version | 1.9.26 |
Comparing to | |
See all releases |
Code changes from version 1.9.25 to 1.9.26
- core/assets/css/admin.css +6 -0
- core/assets/css/layout.css +1 -1
- core/classes/class-happyforms-core.php +3 -2
- core/classes/class-wp-customize-form-manager.php +27 -0
- core/classes/parts/class-part-email.php +19 -1
- core/classes/parts/class-part-number.php +18 -0
- core/classes/parts/class-part-single-line-text.php +18 -0
- core/helpers/helper-form-templates.php +1 -6
- core/templates/admin-tracking.php +1 -1
- core/templates/preview-form-edit.php +1 -0
- happyforms.php +2 -2
- inc/assets/js/customize.js +30 -1
- inc/assets/js/preview.js +5 -0
- languages/happyforms.pot +283 -283
- readme.txt +9 -1
core/assets/css/admin.css
CHANGED
@@ -247,6 +247,12 @@ p.welcome-panel-footer a:active {
|
|
247 |
border: 0;
|
248 |
}
|
249 |
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
#happyforms-notice-happyforms_form_saved_guide {
|
251 |
border-left-color: #46b450;
|
252 |
}
|
247 |
border: 0;
|
248 |
}
|
249 |
|
250 |
+
.happyforms-dialog .ui-dialog-titlebar-close {
|
251 |
+
width: 35px;
|
252 |
+
height: 35px;
|
253 |
+
overflow: hidden;
|
254 |
+
}
|
255 |
+
|
256 |
#happyforms-notice-happyforms_form_saved_guide {
|
257 |
border-left-color: #46b450;
|
258 |
}
|
core/assets/css/layout.css
CHANGED
@@ -54,7 +54,7 @@ h3.happyforms-form__title {
|
|
54 |
padding: 0;
|
55 |
}
|
56 |
|
57 |
-
.happyforms-form--hide-title
|
58 |
display: none;
|
59 |
}
|
60 |
|
54 |
padding: 0;
|
55 |
}
|
56 |
|
57 |
+
.happyforms-form--hide-title h3.happyforms-form__title {
|
58 |
display: none;
|
59 |
}
|
60 |
|
core/classes/class-happyforms-core.php
CHANGED
@@ -489,9 +489,10 @@ class HappyForms_Core {
|
|
489 |
|
490 |
public function print_frontend_styles( $form ) {
|
491 |
$output = apply_filters( 'happyforms_enqueue_style', true );
|
|
|
492 |
|
493 |
if ( $output && ! $this->frontend_color_styles ) {
|
494 |
-
$this->frontend_color_styles =
|
495 |
$color_url = happyforms_get_frontend_stylesheet_url( 'color.css' );
|
496 |
?>
|
497 |
<link rel="stylesheet" property="stylesheet" href="<?php echo $color_url; ?>" />
|
@@ -499,7 +500,7 @@ class HappyForms_Core {
|
|
499 |
}
|
500 |
|
501 |
if ( $output && ! $this->frontend_styles ) {
|
502 |
-
$this->frontend_styles =
|
503 |
$url = happyforms_get_frontend_stylesheet_url( 'layout.css' );
|
504 |
?>
|
505 |
<link rel="stylesheet" property="stylesheet" href="<?php echo $url; ?>" />
|
489 |
|
490 |
public function print_frontend_styles( $form ) {
|
491 |
$output = apply_filters( 'happyforms_enqueue_style', true );
|
492 |
+
$force_styles = apply_filters( 'happyforms_force_styles', false );
|
493 |
|
494 |
if ( $output && ! $this->frontend_color_styles ) {
|
495 |
+
$this->frontend_color_styles = ! $force_styles;
|
496 |
$color_url = happyforms_get_frontend_stylesheet_url( 'color.css' );
|
497 |
?>
|
498 |
<link rel="stylesheet" property="stylesheet" href="<?php echo $color_url; ?>" />
|
500 |
}
|
501 |
|
502 |
if ( $output && ! $this->frontend_styles ) {
|
503 |
+
$this->frontend_styles = ! $force_styles;
|
504 |
$url = happyforms_get_frontend_stylesheet_url( 'layout.css' );
|
505 |
?>
|
506 |
<link rel="stylesheet" property="stylesheet" href="<?php echo $url; ?>" />
|
core/classes/class-wp-customize-form-manager.php
CHANGED
@@ -31,6 +31,7 @@ class HappyForms_WP_Customize_Form_Manager {
|
|
31 |
add_action( 'wp_ajax_happyforms-form-part-add', array( $this, 'ajax_form_part_add' ) );
|
32 |
add_action( 'wp_ajax_happyforms-form-parts-add', array( $this, 'ajax_form_parts_add' ) );
|
33 |
add_action( 'wp_ajax_happyforms-form-fetch-partial-html', array( $this, 'ajax_fetch_partial' ) );
|
|
|
34 |
}
|
35 |
|
36 |
/**
|
@@ -393,6 +394,32 @@ class HappyForms_WP_Customize_Form_Manager {
|
|
393 |
exit();
|
394 |
}
|
395 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
/**
|
397 |
* Action: output Javascript templates for the form editing interface.
|
398 |
*
|
31 |
add_action( 'wp_ajax_happyforms-form-part-add', array( $this, 'ajax_form_part_add' ) );
|
32 |
add_action( 'wp_ajax_happyforms-form-parts-add', array( $this, 'ajax_form_parts_add' ) );
|
33 |
add_action( 'wp_ajax_happyforms-form-fetch-partial-html', array( $this, 'ajax_fetch_partial' ) );
|
34 |
+
add_action( 'wp_ajax_happyforms-get-custom-css', array( $this, 'ajax_get_custom_css' ) );
|
35 |
}
|
36 |
|
37 |
/**
|
394 |
exit();
|
395 |
}
|
396 |
|
397 |
+
public function ajax_get_custom_css() {
|
398 |
+
if ( ! check_ajax_referer( 'happyforms', 'happyforms-nonce', false ) ) {
|
399 |
+
status_header( 400 );
|
400 |
+
wp_send_json_error( 'bad_nonce' );
|
401 |
+
}
|
402 |
+
|
403 |
+
if ( ! current_user_can( 'customize' ) ) {
|
404 |
+
status_header( 403 );
|
405 |
+
wp_send_json_error( 'customize_not_allowed' );
|
406 |
+
}
|
407 |
+
|
408 |
+
if ( ! isset( $_POST['form'] ) || empty( $_POST['form'] ) ) {
|
409 |
+
status_header( 403 );
|
410 |
+
wp_send_json_error( 'empty form data' );
|
411 |
+
}
|
412 |
+
|
413 |
+
$form = json_decode( wp_unslash( $_POST['form'] ), true );
|
414 |
+
$additional_css = $form['additional_css'];
|
415 |
+
$form_wrapper_id = happyforms_get_form_wrapper_id( $form );
|
416 |
+
$additional_css = happyforms_get_prefixed_css( $additional_css, "#{$form_wrapper_id}" );
|
417 |
+
|
418 |
+
header( 'Content-type: text/plain' );
|
419 |
+
echo ( $additional_css );
|
420 |
+
exit();
|
421 |
+
}
|
422 |
+
|
423 |
/**
|
424 |
* Action: output Javascript templates for the form editing interface.
|
425 |
*
|
core/classes/parts/class-part-email.php
CHANGED
@@ -14,6 +14,7 @@ class HappyForms_Part_Email extends HappyForms_Form_Part {
|
|
14 |
add_filter( 'happyforms_frontend_dependencies', array( $this, 'script_dependencies' ), 10, 2 );
|
15 |
add_filter( 'happyforms_stringify_part_value', array( $this, 'stringify_value' ), 10, 3 );
|
16 |
add_filter( 'happyforms_validate_part', array( $this, 'validate_part' ) );
|
|
|
17 |
}
|
18 |
|
19 |
/**
|
@@ -116,6 +117,23 @@ class HappyForms_Part_Email extends HappyForms_Form_Part {
|
|
116 |
return $part_data;
|
117 |
}
|
118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
/**
|
120 |
* Get front end part template with parsed data.
|
121 |
*
|
@@ -186,7 +204,7 @@ class HappyForms_Part_Email extends HappyForms_Form_Part {
|
|
186 |
|
187 |
return $error;
|
188 |
} else {
|
189 |
-
return $value;
|
190 |
}
|
191 |
}
|
192 |
|
14 |
add_filter( 'happyforms_frontend_dependencies', array( $this, 'script_dependencies' ), 10, 2 );
|
15 |
add_filter( 'happyforms_stringify_part_value', array( $this, 'stringify_value' ), 10, 3 );
|
16 |
add_filter( 'happyforms_validate_part', array( $this, 'validate_part' ) );
|
17 |
+
add_filter( 'happyforms_email_part_visible', array( $this, 'email_part_visible' ), 10, 4 );
|
18 |
}
|
19 |
|
20 |
/**
|
117 |
return $part_data;
|
118 |
}
|
119 |
|
120 |
+
public function email_part_visible( $visible, $part, $form, $response ) {
|
121 |
+
if ( $this->type === $part['type'] ) {
|
122 |
+
if ( empty( $part['prefix'] ) && empty( $part['suffix'] ) ) {
|
123 |
+
return $visible;
|
124 |
+
}
|
125 |
+
|
126 |
+
$empty_value = $part['prefix'] . $part['suffix'];
|
127 |
+
$value = happyforms_get_message_part_value( $response['parts'][$part['id']], $part );
|
128 |
+
|
129 |
+
if ( $empty_value === $value ) {
|
130 |
+
$visible = false;
|
131 |
+
}
|
132 |
+
}
|
133 |
+
|
134 |
+
return $visible;
|
135 |
+
}
|
136 |
+
|
137 |
/**
|
138 |
* Get front end part template with parsed data.
|
139 |
*
|
204 |
|
205 |
return $error;
|
206 |
} else {
|
207 |
+
return $value[0];
|
208 |
}
|
209 |
}
|
210 |
|
core/classes/parts/class-part-number.php
CHANGED
@@ -13,6 +13,7 @@ class HappyForms_Part_Number extends HappyForms_Form_Part {
|
|
13 |
add_filter( 'happyforms_frontend_dependencies', array( $this, 'script_dependencies' ), 10, 2 );
|
14 |
add_filter( 'happyforms_stringify_part_value', array( $this, 'stringify_value' ), 10, 3 );
|
15 |
add_filter( 'happyforms_validate_part', array( $this, 'validate_part' ) );
|
|
|
16 |
}
|
17 |
|
18 |
/**
|
@@ -136,6 +137,23 @@ class HappyForms_Part_Number extends HappyForms_Form_Part {
|
|
136 |
return $part_data;
|
137 |
}
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
/**
|
140 |
* Get front end part template with parsed data.
|
141 |
*
|
13 |
add_filter( 'happyforms_frontend_dependencies', array( $this, 'script_dependencies' ), 10, 2 );
|
14 |
add_filter( 'happyforms_stringify_part_value', array( $this, 'stringify_value' ), 10, 3 );
|
15 |
add_filter( 'happyforms_validate_part', array( $this, 'validate_part' ) );
|
16 |
+
add_filter( 'happyforms_email_part_visible', array( $this, 'email_part_visible' ), 10, 4 );
|
17 |
}
|
18 |
|
19 |
/**
|
137 |
return $part_data;
|
138 |
}
|
139 |
|
140 |
+
public function email_part_visible( $visible, $part, $form, $response ) {
|
141 |
+
if ( $this->type === $part['type'] ) {
|
142 |
+
if ( empty( $part['mask_numeric_prefix'] ) && empty( $part['mask_numeric_suffix'] ) ) {
|
143 |
+
return $visible;
|
144 |
+
}
|
145 |
+
|
146 |
+
$empty_value = $part['mask_numeric_prefix'] . $part['mask_numeric_suffix'];
|
147 |
+
$value = happyforms_get_email_part_value( $response, $part, $form );
|
148 |
+
|
149 |
+
if ( $empty_value === $value ) {
|
150 |
+
$visible = false;
|
151 |
+
}
|
152 |
+
}
|
153 |
+
|
154 |
+
return $visible;
|
155 |
+
}
|
156 |
+
|
157 |
/**
|
158 |
* Get front end part template with parsed data.
|
159 |
*
|
core/classes/parts/class-part-single-line-text.php
CHANGED
@@ -11,6 +11,7 @@ class HappyForms_Part_SingleLineText extends HappyForms_Form_Part {
|
|
11 |
add_filter( 'happyforms_the_part_value', array( $this, 'output_part_value' ), 10, 3 );
|
12 |
add_filter( 'happyforms_stringify_part_value', array( $this, 'stringify_value' ), 10, 3 );
|
13 |
add_filter( 'happyforms_part_class', array( $this, 'html_part_class' ), 10, 3 );
|
|
|
14 |
}
|
15 |
|
16 |
/**
|
@@ -180,6 +181,23 @@ class HappyForms_Part_SingleLineText extends HappyForms_Form_Part {
|
|
180 |
return $class;
|
181 |
}
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
/**
|
184 |
* Enqueue scripts in customizer area.
|
185 |
*
|
11 |
add_filter( 'happyforms_the_part_value', array( $this, 'output_part_value' ), 10, 3 );
|
12 |
add_filter( 'happyforms_stringify_part_value', array( $this, 'stringify_value' ), 10, 3 );
|
13 |
add_filter( 'happyforms_part_class', array( $this, 'html_part_class' ), 10, 3 );
|
14 |
+
add_filter( 'happyforms_email_part_visible', array( $this, 'email_part_visible' ), 10, 4 );
|
15 |
}
|
16 |
|
17 |
/**
|
181 |
return $class;
|
182 |
}
|
183 |
|
184 |
+
public function email_part_visible( $visible, $part, $form, $response ) {
|
185 |
+
if ( $this->type === $part['type'] ) {
|
186 |
+
if ( empty( $part['prefix'] ) && empty( $part['suffix'] ) ) {
|
187 |
+
return $visible;
|
188 |
+
}
|
189 |
+
|
190 |
+
$empty_value = $part['prefix'] . $part['suffix'];
|
191 |
+
$value = happyforms_get_email_part_value( $response, $part, $form );
|
192 |
+
|
193 |
+
if ( $empty_value === $value ) {
|
194 |
+
$visible = false;
|
195 |
+
}
|
196 |
+
}
|
197 |
+
|
198 |
+
return $visible;
|
199 |
+
}
|
200 |
+
|
201 |
/**
|
202 |
* Enqueue scripts in customizer area.
|
203 |
*
|
core/helpers/helper-form-templates.php
CHANGED
@@ -865,16 +865,11 @@ if ( ! function_exists( 'happyforms_additional_css' ) ):
|
|
865 |
*/
|
866 |
function happyforms_additional_css( $form ) {
|
867 |
$additional_css = happyforms_get_meta( $form['ID'], 'additional_css', true );
|
868 |
-
|
869 |
-
if ( ! $additional_css ) {
|
870 |
-
return;
|
871 |
-
}
|
872 |
-
|
873 |
$form_wrapper_id = happyforms_get_form_wrapper_id( $form );
|
874 |
$additional_css = happyforms_get_prefixed_css( $additional_css, "#{$form_wrapper_id}" );
|
875 |
?>
|
876 |
<!-- HappyForms Additional CSS -->
|
877 |
-
<style>
|
878 |
<?php echo $additional_css; ?>
|
879 |
</style>
|
880 |
<!-- End of HappyForms Additional CSS -->
|
865 |
*/
|
866 |
function happyforms_additional_css( $form ) {
|
867 |
$additional_css = happyforms_get_meta( $form['ID'], 'additional_css', true );
|
|
|
|
|
|
|
|
|
|
|
868 |
$form_wrapper_id = happyforms_get_form_wrapper_id( $form );
|
869 |
$additional_css = happyforms_get_prefixed_css( $additional_css, "#{$form_wrapper_id}" );
|
870 |
?>
|
871 |
<!-- HappyForms Additional CSS -->
|
872 |
+
<style data-happyforms-additional-css>
|
873 |
<?php echo $additional_css; ?>
|
874 |
</style>
|
875 |
<!-- End of HappyForms Additional CSS -->
|
core/templates/admin-tracking.php
CHANGED
@@ -12,7 +12,7 @@ $status = $tracking->get_status();
|
|
12 |
<h1><?php _e( 'Add your email address to complete setup', 'happyforms' ); ?>…</h1>
|
13 |
<p class="description"><?php _e( 'Your email address will only ever be used to receive communications from us', 'happyforms' ); ?>.</p>
|
14 |
<form action="<?php echo esc_attr( $tracking->monitor_action ); ?>" method="post" id="happyforms-tracking">
|
15 |
-
<input name="<?php echo esc_attr( $tracking->monitor_email_field ); ?>" type="email" placeholder="<?php _e( 'Email address', 'happyforms' ); ?>" required
|
16 |
<button type="submit" class="button button-primary button-hero button-block"><?php _e( 'Allow and set up', 'happyforms' ); ?></button>
|
17 |
</form>
|
18 |
<?php } ?>
|
12 |
<h1><?php _e( 'Add your email address to complete setup', 'happyforms' ); ?>…</h1>
|
13 |
<p class="description"><?php _e( 'Your email address will only ever be used to receive communications from us', 'happyforms' ); ?>.</p>
|
14 |
<form action="<?php echo esc_attr( $tracking->monitor_action ); ?>" method="post" id="happyforms-tracking">
|
15 |
+
<input name="<?php echo esc_attr( $tracking->monitor_email_field ); ?>" type="email" placeholder="<?php _e( 'Email address', 'happyforms' ); ?>" required value="<?php echo get_option( 'admin_email' ); ?>" />
|
16 |
<button type="submit" class="button button-primary button-hero button-block"><?php _e( 'Allow and set up', 'happyforms' ); ?></button>
|
17 |
</form>
|
18 |
<?php } ?>
|
core/templates/preview-form-edit.php
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
<body class="happyforms-preview">
|
11 |
<?php global $post; $form = happyforms_get_form_controller()->get( $post->ID ); ?>
|
12 |
<?php happyforms_the_form_styles( $form ); ?>
|
|
|
13 |
<?php include( happyforms_get_core_folder() . '/templates/single-form.php' ); ?>
|
14 |
|
15 |
<?php wp_footer(); ?>
|
10 |
<body class="happyforms-preview">
|
11 |
<?php global $post; $form = happyforms_get_form_controller()->get( $post->ID ); ?>
|
12 |
<?php happyforms_the_form_styles( $form ); ?>
|
13 |
+
<?php happyforms_additional_css( $form ); ?>
|
14 |
<?php include( happyforms_get_core_folder() . '/templates/single-form.php' ); ?>
|
15 |
|
16 |
<?php wp_footer(); ?>
|
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: HappyForms
|
8 |
-
* Version: 1.9.
|
9 |
* Author URI: https://happyforms.me
|
10 |
* Upgrade URI: https://happyforms.me/upgrade
|
11 |
*/
|
@@ -13,7 +13,7 @@
|
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
-
define( 'HAPPYFORMS_VERSION', '1.9.
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: HappyForms
|
8 |
+
* Version: 1.9.26
|
9 |
* Author URI: https://happyforms.me
|
10 |
* Upgrade URI: https://happyforms.me/upgrade
|
11 |
*/
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
+
define( 'HAPPYFORMS_VERSION', '1.9.26' );
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
inc/assets/js/customize.js
CHANGED
@@ -86,7 +86,26 @@
|
|
86 |
}
|
87 |
|
88 |
_wpCustomizeSettings.documentTitleTmpl = titleTemplate;
|
89 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
} );
|
91 |
|
92 |
classes.models.Part = Backbone.Model.extend( {
|
@@ -1695,6 +1714,10 @@
|
|
1695 |
initialize: function() {
|
1696 |
classes.views.Base.prototype.initialize.apply( this, arguments );
|
1697 |
|
|
|
|
|
|
|
|
|
1698 |
this.styles = new Backbone.Collection();
|
1699 |
},
|
1700 |
|
@@ -1704,6 +1727,12 @@
|
|
1704 |
return this;
|
1705 |
},
|
1706 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1707 |
applyConditionClasses: function() {
|
1708 |
var self = this;
|
1709 |
|
86 |
}
|
87 |
|
88 |
_wpCustomizeSettings.documentTitleTmpl = titleTemplate;
|
89 |
+
},
|
90 |
+
|
91 |
+
fetchCustomCSS: function( success ) {
|
92 |
+
var data = {
|
93 |
+
action: 'happyforms-get-custom-css',
|
94 |
+
'happyforms-nonce': api.settings.nonce.happyforms,
|
95 |
+
happyforms: 1,
|
96 |
+
wp_customize: 'on',
|
97 |
+
form_id: happyForms.form.id,
|
98 |
+
form: JSON.stringify( this.toJSON() ),
|
99 |
+
};
|
100 |
+
|
101 |
+
var request = $.ajax( ajaxurl, {
|
102 |
+
type: 'post',
|
103 |
+
dataType: 'text',
|
104 |
+
data: data,
|
105 |
+
} );
|
106 |
+
|
107 |
+
request.done( success );
|
108 |
+
},
|
109 |
} );
|
110 |
|
111 |
classes.models.Part = Backbone.Model.extend( {
|
1714 |
initialize: function() {
|
1715 |
classes.views.Base.prototype.initialize.apply( this, arguments );
|
1716 |
|
1717 |
+
this.listenTo( this.model, 'change:additional_css', _.debounce( function( model, value ) {
|
1718 |
+
this.onAdditionalCSSChange( model, value );
|
1719 |
+
}, 500 ) );
|
1720 |
+
|
1721 |
this.styles = new Backbone.Collection();
|
1722 |
},
|
1723 |
|
1727 |
return this;
|
1728 |
},
|
1729 |
|
1730 |
+
onAdditionalCSSChange: function( model, value ) {
|
1731 |
+
happyForms.form.fetchCustomCSS( function( response ) {
|
1732 |
+
api.previewer.send( 'happyforms-custom-css-updated', response );
|
1733 |
+
} );
|
1734 |
+
},
|
1735 |
+
|
1736 |
applyConditionClasses: function() {
|
1737 |
var self = this;
|
1738 |
|
inc/assets/js/preview.js
CHANGED
@@ -217,6 +217,10 @@
|
|
217 |
$( '.happyforms-button--submit' ).attr( 'value', text );
|
218 |
}
|
219 |
|
|
|
|
|
|
|
|
|
220 |
handlers.silenceEvent = function( e ) {
|
221 |
e.preventDefault();
|
222 |
}
|
@@ -256,6 +260,7 @@
|
|
256 |
api.preview.bind( 'happyforms-form-class-update', handlers.formClassUpdate );
|
257 |
api.preview.bind( 'happyforms-form-class-updated', handlers.formClassUpdated );
|
258 |
api.preview.bind( 'happyforms-submit-button-text-update', handlers.submitButtonTextUpdate );
|
|
|
259 |
|
260 |
// Bind DOM handlers
|
261 |
$( document.body ).on(
|
217 |
$( '.happyforms-button--submit' ).attr( 'value', text );
|
218 |
}
|
219 |
|
220 |
+
handlers.customCSSUpdated = function( css ) {
|
221 |
+
$( '[data-happyforms-additional-css]' ).html( css );
|
222 |
+
}
|
223 |
+
|
224 |
handlers.silenceEvent = function( e ) {
|
225 |
e.preventDefault();
|
226 |
}
|
260 |
api.preview.bind( 'happyforms-form-class-update', handlers.formClassUpdate );
|
261 |
api.preview.bind( 'happyforms-form-class-updated', handlers.formClassUpdated );
|
262 |
api.preview.bind( 'happyforms-submit-button-text-update', handlers.submitButtonTextUpdate );
|
263 |
+
api.preview.bind( 'happyforms-custom-css-updated', handlers.customCSSUpdated );
|
264 |
|
265 |
// Bind DOM handlers
|
266 |
$( document.body ).on(
|
languages/happyforms.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: HappyForms 1.9.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2020-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -894,26 +894,26 @@ msgstr ""
|
|
894 |
msgid "Add HappyForms"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: core/classes/class-happyforms-core.php:
|
898 |
msgid "Overview"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: core/classes/class-happyforms-core.php:
|
902 |
msgid "Hey 👋 Welcome to your HappyForms Dashboard!"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: core/classes/class-happyforms-core.php:
|
906 |
msgid ""
|
907 |
"Are you looking for help? Well, we’ve swept the nacho crumbs from our "
|
908 |
"keyboards, refilled our ginger beers and are ready to reply with answers! "
|
909 |
"So, go on, email %s."
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: core/classes/class-happyforms-core.php:
|
913 |
msgid "For more help"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: core/classes/class-happyforms-core.php:
|
917 |
msgid "Help guide"
|
918 |
msgstr ""
|
919 |
|
@@ -987,58 +987,58 @@ msgstr ""
|
|
987 |
msgid "This message is too short"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
991 |
msgid "Form saved 👏"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
995 |
msgid "There are two ways to embed your form. Here goes…"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
999 |
msgid "Add HappyForms to your page or post"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1003 |
msgid "In your Edit Post / Edit Page screen, click Add Block."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1007 |
msgid "Select the HappyForms content block."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1011 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1012 |
msgid "Select a form in the Form dropdown."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1016 |
msgid "That's it! You'll see a basic preview of your form in the editor."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1020 |
msgid "Use HappyForms in a widget area"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1024 |
msgid "Head over to Appearance → <a href=\"%s\">Widgets</a> screen."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1028 |
msgid "Drag the HappyForms widget to your sidebar."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1032 |
msgid "All done!"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1036 |
msgid ""
|
1037 |
"Still have questions? Head over to our <a href=\"%s\" "
|
1038 |
"target=\"_blank\">help guide</a>."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: core/classes/class-wp-customize-form-manager.php:
|
1042 |
msgid ""
|
1043 |
"Form saved. You can add this form to any Page, Post and Widget area. Have "
|
1044 |
"questions? <a href=\"%s\" target=\"_blank\">Ask for help in our support "
|
@@ -1054,14 +1054,14 @@ msgid "For checkboxes allowing multiple selections."
|
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: core/classes/parts/class-part-checkbox.php:39
|
1057 |
-
#: core/classes/parts/class-part-email.php:
|
1058 |
-
#: core/classes/parts/class-part-email.php:
|
1059 |
#: core/classes/parts/class-part-multi-line-text.php:34
|
1060 |
-
#: core/classes/parts/class-part-number.php:
|
1061 |
-
#: core/classes/parts/class-part-number.php:
|
1062 |
#: core/classes/parts/class-part-radio.php:40
|
1063 |
#: core/classes/parts/class-part-select.php:35
|
1064 |
-
#: core/classes/parts/class-part-single-line-text.php:
|
1065 |
msgid "Untitled"
|
1066 |
msgstr ""
|
1067 |
|
@@ -1172,1028 +1172,1028 @@ msgstr ""
|
|
1172 |
msgid "Spam protection, skip this field"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: core/helpers/helper-form-templates.php:
|
1176 |
msgid "January"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: core/helpers/helper-form-templates.php:
|
1180 |
msgid "February"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: core/helpers/helper-form-templates.php:
|
1184 |
msgid "March"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: core/helpers/helper-form-templates.php:
|
1188 |
msgid "April"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: core/helpers/helper-form-templates.php:
|
1192 |
msgid "May"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: core/helpers/helper-form-templates.php:
|
1196 |
msgid "June"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: core/helpers/helper-form-templates.php:
|
1200 |
msgid "July"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: core/helpers/helper-form-templates.php:
|
1204 |
msgid "August"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: core/helpers/helper-form-templates.php:
|
1208 |
msgid "September"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: core/helpers/helper-form-templates.php:
|
1212 |
msgid "October"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: core/helpers/helper-form-templates.php:
|
1216 |
msgid "November"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: core/helpers/helper-form-templates.php:
|
1220 |
msgid "December"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: core/helpers/helper-form-templates.php:
|
1224 |
msgid "Ascension Island"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: core/helpers/helper-form-templates.php:
|
1228 |
msgid "Andorra"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: core/helpers/helper-form-templates.php:
|
1232 |
msgid "United Arab Emirates"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: core/helpers/helper-form-templates.php:
|
1236 |
msgid "Afghanistan"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: core/helpers/helper-form-templates.php:
|
1240 |
msgid "Antigua and Barbuda"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: core/helpers/helper-form-templates.php:
|
1244 |
msgid "Anguilla"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: core/helpers/helper-form-templates.php:
|
1248 |
msgid "Albania"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: core/helpers/helper-form-templates.php:
|
1252 |
msgid "Armenia"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: core/helpers/helper-form-templates.php:
|
1256 |
msgid "Angola"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: core/helpers/helper-form-templates.php:
|
1260 |
msgid "Argentina"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: core/helpers/helper-form-templates.php:
|
1264 |
msgid "American Samoa"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: core/helpers/helper-form-templates.php:
|
1268 |
msgid "Austria"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: core/helpers/helper-form-templates.php:
|
1272 |
msgid "Australia"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: core/helpers/helper-form-templates.php:
|
1276 |
msgid "Aruba"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: core/helpers/helper-form-templates.php:
|
1280 |
msgid "Åland Islands"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: core/helpers/helper-form-templates.php:
|
1284 |
msgid "Azerbaijan"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: core/helpers/helper-form-templates.php:
|
1288 |
msgid "Bosnia and Herzegovina"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: core/helpers/helper-form-templates.php:
|
1292 |
msgid "Barbados"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: core/helpers/helper-form-templates.php:
|
1296 |
msgid "Bangladesh"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: core/helpers/helper-form-templates.php:
|
1300 |
msgid "Belgium"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: core/helpers/helper-form-templates.php:
|
1304 |
msgid "Burkina Faso"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: core/helpers/helper-form-templates.php:
|
1308 |
msgid "Bulgaria"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: core/helpers/helper-form-templates.php:
|
1312 |
msgid "Bahrain"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: core/helpers/helper-form-templates.php:
|
1316 |
msgid "Burundi"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: core/helpers/helper-form-templates.php:
|
1320 |
msgid "Benin"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: core/helpers/helper-form-templates.php:
|
1324 |
msgid "Saint Barthélemy"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: core/helpers/helper-form-templates.php:
|
1328 |
msgid "Bermuda"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: core/helpers/helper-form-templates.php:
|
1332 |
msgid "Brunei Darussalam"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: core/helpers/helper-form-templates.php:
|
1336 |
msgid "Bolivia"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: core/helpers/helper-form-templates.php:
|
1340 |
msgid "Bonaire, Sint Eustatius and Saba"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: core/helpers/helper-form-templates.php:
|
1344 |
msgid "Brazil"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: core/helpers/helper-form-templates.php:
|
1348 |
msgid "Bahamas"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: core/helpers/helper-form-templates.php:
|
1352 |
msgid "Bhutan"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: core/helpers/helper-form-templates.php:
|
1356 |
msgid "Botswana"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: core/helpers/helper-form-templates.php:
|
1360 |
msgid "Belarus"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: core/helpers/helper-form-templates.php:
|
1364 |
msgid "Belize"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: core/helpers/helper-form-templates.php:
|
1368 |
msgid "Canada"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: core/helpers/helper-form-templates.php:
|
1372 |
msgid "Cocos (Keeling) Islands"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: core/helpers/helper-form-templates.php:
|
1376 |
msgid "Congo, the Democratic Republic of the"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: core/helpers/helper-form-templates.php:
|
1380 |
msgid "Central African Republic"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: core/helpers/helper-form-templates.php:
|
1384 |
msgid "Congo"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: core/helpers/helper-form-templates.php:
|
1388 |
msgid "Switzerland"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: core/helpers/helper-form-templates.php:
|
1392 |
msgid "Cote D'Ivoire"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: core/helpers/helper-form-templates.php:
|
1396 |
msgid "Cook Islands"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: core/helpers/helper-form-templates.php:
|
1400 |
msgid "Chile"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: core/helpers/helper-form-templates.php:
|
1404 |
msgid "Cameroon"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: core/helpers/helper-form-templates.php:
|
1408 |
msgid "China"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: core/helpers/helper-form-templates.php:
|
1412 |
msgid "Colombia"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: core/helpers/helper-form-templates.php:
|
1416 |
msgid "Costa Rica"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: core/helpers/helper-form-templates.php:
|
1420 |
msgid "Cuba"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: core/helpers/helper-form-templates.php:
|
1424 |
msgid "Cape Verde"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: core/helpers/helper-form-templates.php:
|
1428 |
msgid "Curaçao"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: core/helpers/helper-form-templates.php:
|
1432 |
msgid "Christmas Island"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: core/helpers/helper-form-templates.php:
|
1436 |
msgid "Cyprus"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: core/helpers/helper-form-templates.php:
|
1440 |
msgid "Czech Republic"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: core/helpers/helper-form-templates.php:
|
1444 |
msgid "Germany"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: core/helpers/helper-form-templates.php:
|
1448 |
msgid "Djibouti"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: core/helpers/helper-form-templates.php:
|
1452 |
msgid "Denmark"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: core/helpers/helper-form-templates.php:
|
1456 |
msgid "Dominica"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: core/helpers/helper-form-templates.php:
|
1460 |
msgid "Dominican Republic"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: core/helpers/helper-form-templates.php:
|
1464 |
msgid "Algeria"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: core/helpers/helper-form-templates.php:
|
1468 |
msgid "Ecuador"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: core/helpers/helper-form-templates.php:
|
1472 |
msgid "Estonia"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: core/helpers/helper-form-templates.php:
|
1476 |
msgid "Egypt"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: core/helpers/helper-form-templates.php:
|
1480 |
msgid "Western Sahara"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: core/helpers/helper-form-templates.php:
|
1484 |
msgid "Eritrea"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: core/helpers/helper-form-templates.php:
|
1488 |
msgid "Spain"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: core/helpers/helper-form-templates.php:
|
1492 |
msgid "Ethiopia"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: core/helpers/helper-form-templates.php:
|
1496 |
msgid "Finland"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: core/helpers/helper-form-templates.php:
|
1500 |
msgid "Fiji"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: core/helpers/helper-form-templates.php:
|
1504 |
msgid "Falkland Islands (Malvinas)"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: core/helpers/helper-form-templates.php:
|
1508 |
msgid "Micronesia, Federated States of"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: core/helpers/helper-form-templates.php:
|
1512 |
msgid "Faroe Islands"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: core/helpers/helper-form-templates.php:
|
1516 |
msgid "France"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: core/helpers/helper-form-templates.php:
|
1520 |
msgid "Gabon"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: core/helpers/helper-form-templates.php:
|
1524 |
msgid "United Kingdom"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: core/helpers/helper-form-templates.php:
|
1528 |
msgid "Grenada"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: core/helpers/helper-form-templates.php:
|
1532 |
msgid "Georgia"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: core/helpers/helper-form-templates.php:
|
1536 |
msgid "French Guiana"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: core/helpers/helper-form-templates.php:
|
1540 |
msgid "Guernsey"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: core/helpers/helper-form-templates.php:
|
1544 |
msgid "Ghana"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: core/helpers/helper-form-templates.php:
|
1548 |
msgid "Gibraltar"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: core/helpers/helper-form-templates.php:
|
1552 |
msgid "Greenland"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: core/helpers/helper-form-templates.php:
|
1556 |
msgid "Gambia"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: core/helpers/helper-form-templates.php:
|
1560 |
msgid "Guinea"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: core/helpers/helper-form-templates.php:
|
1564 |
msgid "Guadeloupe"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: core/helpers/helper-form-templates.php:
|
1568 |
msgid "Equatorial Guinea"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: core/helpers/helper-form-templates.php:
|
1572 |
msgid "Greece"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: core/helpers/helper-form-templates.php:
|
1576 |
msgid "Guatemala"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: core/helpers/helper-form-templates.php:
|
1580 |
msgid "Guam"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: core/helpers/helper-form-templates.php:
|
1584 |
msgid "Guinea-Bissau"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: core/helpers/helper-form-templates.php:
|
1588 |
msgid "Guyana"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: core/helpers/helper-form-templates.php:
|
1592 |
msgid "Hong Kong"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: core/helpers/helper-form-templates.php:
|
1596 |
msgid "Honduras"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: core/helpers/helper-form-templates.php:
|
1600 |
msgid "Croatia"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: core/helpers/helper-form-templates.php:
|
1604 |
msgid "Haiti"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: core/helpers/helper-form-templates.php:
|
1608 |
msgid "Hungary"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: core/helpers/helper-form-templates.php:
|
1612 |
msgid "Indonesia"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: core/helpers/helper-form-templates.php:
|
1616 |
msgid "Ireland"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: core/helpers/helper-form-templates.php:
|
1620 |
msgid "Israel"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: core/helpers/helper-form-templates.php:
|
1624 |
msgid "Isle of Man"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: core/helpers/helper-form-templates.php:
|
1628 |
msgid "India"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: core/helpers/helper-form-templates.php:
|
1632 |
msgid "British Indian Ocean Territory"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: core/helpers/helper-form-templates.php:
|
1636 |
msgid "Iraq"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: core/helpers/helper-form-templates.php:
|
1640 |
msgid "Iran, Islamic Republic of"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: core/helpers/helper-form-templates.php:
|
1644 |
msgid "Iceland"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: core/helpers/helper-form-templates.php:
|
1648 |
msgid "Italy"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: core/helpers/helper-form-templates.php:
|
1652 |
msgid "Jersey"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: core/helpers/helper-form-templates.php:
|
1656 |
msgid "Jamaica"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: core/helpers/helper-form-templates.php:
|
1660 |
msgid "Jordan"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: core/helpers/helper-form-templates.php:
|
1664 |
msgid "Japan"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: core/helpers/helper-form-templates.php:
|
1668 |
msgid "Kenya"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: core/helpers/helper-form-templates.php:
|
1672 |
msgid "Kyrgyzstan"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: core/helpers/helper-form-templates.php:
|
1676 |
msgid "Cambodia"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: core/helpers/helper-form-templates.php:
|
1680 |
msgid "Kiribati"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: core/helpers/helper-form-templates.php:
|
1684 |
msgid "Comoros"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: core/helpers/helper-form-templates.php:
|
1688 |
msgid "Saint Kitts and Nevis"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: core/helpers/helper-form-templates.php:
|
1692 |
msgid "North Korea"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: core/helpers/helper-form-templates.php:
|
1696 |
msgid "South Korea"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: core/helpers/helper-form-templates.php:
|
1700 |
msgid "Kuwait"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: core/helpers/helper-form-templates.php:
|
1704 |
msgid "Cayman Islands"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: core/helpers/helper-form-templates.php:
|
1708 |
msgid "Kazakhstan"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: core/helpers/helper-form-templates.php:
|
1712 |
msgid "Lao People's Democratic Republic"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: core/helpers/helper-form-templates.php:
|
1716 |
msgid "Lebanon"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: core/helpers/helper-form-templates.php:
|
1720 |
msgid "Saint Lucia"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: core/helpers/helper-form-templates.php:
|
1724 |
msgid "Liechtenstein"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: core/helpers/helper-form-templates.php:
|
1728 |
msgid "Sri Lanka"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: core/helpers/helper-form-templates.php:
|
1732 |
msgid "Liberia"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: core/helpers/helper-form-templates.php:
|
1736 |
msgid "Lesotho"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: core/helpers/helper-form-templates.php:
|
1740 |
msgid "Lithuania"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: core/helpers/helper-form-templates.php:
|
1744 |
msgid "Luxembourg"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: core/helpers/helper-form-templates.php:
|
1748 |
msgid "Latvia"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: core/helpers/helper-form-templates.php:
|
1752 |
msgid "Libya"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: core/helpers/helper-form-templates.php:
|
1756 |
msgid "Morocco"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: core/helpers/helper-form-templates.php:
|
1760 |
msgid "Monaco"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: core/helpers/helper-form-templates.php:
|
1764 |
msgid "Moldova, Republic of"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: core/helpers/helper-form-templates.php:
|
1768 |
msgid "Montenegro"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: core/helpers/helper-form-templates.php:
|
1772 |
msgid "Saint Martin (French part)"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: core/helpers/helper-form-templates.php:
|
1776 |
msgid "Madagascar"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: core/helpers/helper-form-templates.php:
|
1780 |
msgid "Marshall Islands"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: core/helpers/helper-form-templates.php:
|
1784 |
msgid "North Macedonia, Republic of"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: core/helpers/helper-form-templates.php:
|
1788 |
msgid "Mali"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: core/helpers/helper-form-templates.php:
|
1792 |
msgid "Myanmar"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: core/helpers/helper-form-templates.php:
|
1796 |
msgid "Mongolia"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: core/helpers/helper-form-templates.php:
|
1800 |
msgid "Macao"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: core/helpers/helper-form-templates.php:
|
1804 |
msgid "Northern Mariana Islands"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: core/helpers/helper-form-templates.php:
|
1808 |
msgid "Martinique"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: core/helpers/helper-form-templates.php:
|
1812 |
msgid "Mauritania"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: core/helpers/helper-form-templates.php:
|
1816 |
msgid "Montserrat"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: core/helpers/helper-form-templates.php:
|
1820 |
msgid "Malta"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: core/helpers/helper-form-templates.php:
|
1824 |
msgid "Mauritius"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: core/helpers/helper-form-templates.php:
|
1828 |
msgid "Maldives"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: core/helpers/helper-form-templates.php:
|
1832 |
msgid "Malawi"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: core/helpers/helper-form-templates.php:
|
1836 |
msgid "Mexico"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: core/helpers/helper-form-templates.php:
|
1840 |
msgid "Malaysia"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: core/helpers/helper-form-templates.php:
|
1844 |
msgid "Mozambique"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: core/helpers/helper-form-templates.php:
|
1848 |
msgid "Namibia"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: core/helpers/helper-form-templates.php:
|
1852 |
msgid "New Caledonia"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: core/helpers/helper-form-templates.php:
|
1856 |
msgid "Niger"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: core/helpers/helper-form-templates.php:
|
1860 |
msgid "Norfolk Island"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: core/helpers/helper-form-templates.php:
|
1864 |
msgid "Nigeria"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: core/helpers/helper-form-templates.php:
|
1868 |
msgid "Nicaragua"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: core/helpers/helper-form-templates.php:
|
1872 |
msgid "Netherlands"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: core/helpers/helper-form-templates.php:
|
1876 |
msgid "Norway"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: core/helpers/helper-form-templates.php:
|
1880 |
msgid "Nepal"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: core/helpers/helper-form-templates.php:
|
1884 |
msgid "Nauru"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: core/helpers/helper-form-templates.php:
|
1888 |
msgid "Niue"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: core/helpers/helper-form-templates.php:
|
1892 |
msgid "New Zealand"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: core/helpers/helper-form-templates.php:
|
1896 |
msgid "Oman"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: core/helpers/helper-form-templates.php:
|
1900 |
msgid "Panama"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: core/helpers/helper-form-templates.php:
|
1904 |
msgid "Peru"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: core/helpers/helper-form-templates.php:
|
1908 |
msgid "French Polynesia"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: core/helpers/helper-form-templates.php:
|
1912 |
msgid "Papua New Guinea"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: core/helpers/helper-form-templates.php:
|
1916 |
msgid "Philippines"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: core/helpers/helper-form-templates.php:
|
1920 |
msgid "Pakistan"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: core/helpers/helper-form-templates.php:
|
1924 |
msgid "Poland"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: core/helpers/helper-form-templates.php:
|
1928 |
msgid "Saint Pierre and Miquelon"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: core/helpers/helper-form-templates.php:
|
1932 |
msgid "Puerto Rico"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: core/helpers/helper-form-templates.php:
|
1936 |
msgid "Palestinian Territory, Occupied"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: core/helpers/helper-form-templates.php:
|
1940 |
msgid "Portugal"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: core/helpers/helper-form-templates.php:
|
1944 |
msgid "Palau"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: core/helpers/helper-form-templates.php:
|
1948 |
msgid "Paraguay"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: core/helpers/helper-form-templates.php:
|
1952 |
msgid "Qatar"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: core/helpers/helper-form-templates.php:
|
1956 |
msgid "Reunion"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: core/helpers/helper-form-templates.php:
|
1960 |
msgid "Romania"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: core/helpers/helper-form-templates.php:
|
1964 |
msgid "Serbia"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: core/helpers/helper-form-templates.php:
|
1968 |
msgid "Russian Federation"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: core/helpers/helper-form-templates.php:
|
1972 |
msgid "Rwanda"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: core/helpers/helper-form-templates.php:
|
1976 |
msgid "Saudi Arabia"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: core/helpers/helper-form-templates.php:
|
1980 |
msgid "Solomon Islands"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: core/helpers/helper-form-templates.php:
|
1984 |
msgid "Seychelles"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: core/helpers/helper-form-templates.php:
|
1988 |
msgid "Sudan"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: core/helpers/helper-form-templates.php:
|
1992 |
msgid "Sweden"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: core/helpers/helper-form-templates.php:
|
1996 |
msgid "Singapore"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: core/helpers/helper-form-templates.php:
|
2000 |
-
#: core/helpers/helper-form-templates.php:
|
2001 |
msgid "Saint Helena"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: core/helpers/helper-form-templates.php:
|
2005 |
msgid "Slovenia"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: core/helpers/helper-form-templates.php:
|
2009 |
msgid "Svalbard and Jan Mayen"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: core/helpers/helper-form-templates.php:
|
2013 |
msgid "Slovakia"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: core/helpers/helper-form-templates.php:
|
2017 |
msgid "Sierra Leone"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: core/helpers/helper-form-templates.php:
|
2021 |
msgid "San Marino"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: core/helpers/helper-form-templates.php:
|
2025 |
msgid "Senegal"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: core/helpers/helper-form-templates.php:
|
2029 |
msgid "Somalia"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: core/helpers/helper-form-templates.php:
|
2033 |
msgid "Suriname"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: core/helpers/helper-form-templates.php:
|
2037 |
msgid "South Sudan"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: core/helpers/helper-form-templates.php:
|
2041 |
msgid "Sao Tome and Principe"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: core/helpers/helper-form-templates.php:
|
2045 |
msgid "El Salvador"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: core/helpers/helper-form-templates.php:
|
2049 |
msgid "Sint Maarten (Dutch part)"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: core/helpers/helper-form-templates.php:
|
2053 |
msgid "Syrian Arab Republic"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: core/helpers/helper-form-templates.php:
|
2057 |
msgid "Eswatini"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: core/helpers/helper-form-templates.php:
|
2061 |
msgid "Turks and Caicos Islands"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: core/helpers/helper-form-templates.php:
|
2065 |
msgid "Chad"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: core/helpers/helper-form-templates.php:
|
2069 |
msgid "Togo"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: core/helpers/helper-form-templates.php:
|
2073 |
msgid "Thailand"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: core/helpers/helper-form-templates.php:
|
2077 |
msgid "Tajikistan"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: core/helpers/helper-form-templates.php:
|
2081 |
msgid "Tokelau"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: core/helpers/helper-form-templates.php:
|
2085 |
msgid "Timor-Leste"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: core/helpers/helper-form-templates.php:
|
2089 |
msgid "Turkmenistan"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: core/helpers/helper-form-templates.php:
|
2093 |
msgid "Tunisia"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: core/helpers/helper-form-templates.php:
|
2097 |
msgid "Tonga"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: core/helpers/helper-form-templates.php:
|
2101 |
msgid "Turkey"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: core/helpers/helper-form-templates.php:
|
2105 |
msgid "Trinidad and Tobago"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: core/helpers/helper-form-templates.php:
|
2109 |
msgid "Tuvalu"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: core/helpers/helper-form-templates.php:
|
2113 |
msgid "Taiwan"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: core/helpers/helper-form-templates.php:
|
2117 |
msgid "Tanzania, United Republic of"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: core/helpers/helper-form-templates.php:
|
2121 |
msgid "Ukraine"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: core/helpers/helper-form-templates.php:
|
2125 |
msgid "Uganda"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: core/helpers/helper-form-templates.php:
|
2129 |
msgid "United States of America"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: core/helpers/helper-form-templates.php:
|
2133 |
msgid "Uruguay"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: core/helpers/helper-form-templates.php:
|
2137 |
msgid "Uzbekistan"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: core/helpers/helper-form-templates.php:
|
2141 |
msgid "Holy See (Vatican City State)"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: core/helpers/helper-form-templates.php:
|
2145 |
msgid "Saint Vincent and the Grenadines"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: core/helpers/helper-form-templates.php:
|
2149 |
msgid "Venezuela"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: core/helpers/helper-form-templates.php:
|
2153 |
msgid "Virgin Islands, British"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: core/helpers/helper-form-templates.php:
|
2157 |
msgid "Virgin Islands, U.S."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: core/helpers/helper-form-templates.php:
|
2161 |
msgid "Vietnam"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: core/helpers/helper-form-templates.php:
|
2165 |
msgid "Vanuatu"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: core/helpers/helper-form-templates.php:
|
2169 |
msgid "Wallis and Futuna"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: core/helpers/helper-form-templates.php:
|
2173 |
msgid "Samoa"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: core/helpers/helper-form-templates.php:
|
2177 |
msgid "Kosovo"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: core/helpers/helper-form-templates.php:
|
2181 |
msgid "Yemen"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: core/helpers/helper-form-templates.php:
|
2185 |
msgid "Mayotte"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: core/helpers/helper-form-templates.php:
|
2189 |
msgid "South Africa"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: core/helpers/helper-form-templates.php:
|
2193 |
msgid "Zambia"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: core/helpers/helper-form-templates.php:
|
2197 |
msgid "Zimbabwe"
|
2198 |
msgstr ""
|
2199 |
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: HappyForms 1.9.26\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2020-12-02 14:32:32+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
894 |
msgid "Add HappyForms"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: core/classes/class-happyforms-core.php:692
|
898 |
msgid "Overview"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: core/classes/class-happyforms-core.php:702
|
902 |
msgid "Hey 👋 Welcome to your HappyForms Dashboard!"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: core/classes/class-happyforms-core.php:705
|
906 |
msgid ""
|
907 |
"Are you looking for help? Well, we’ve swept the nacho crumbs from our "
|
908 |
"keyboards, refilled our ginger beers and are ready to reply with answers! "
|
909 |
"So, go on, email %s."
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: core/classes/class-happyforms-core.php:714
|
913 |
msgid "For more help"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: core/classes/class-happyforms-core.php:716
|
917 |
msgid "Help guide"
|
918 |
msgstr ""
|
919 |
|
987 |
msgid "This message is too short"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: core/classes/class-wp-customize-form-manager.php:167
|
991 |
msgid "Form saved 👏"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: core/classes/class-wp-customize-form-manager.php:168
|
995 |
msgid "There are two ways to embed your form. Here goes…"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: core/classes/class-wp-customize-form-manager.php:169
|
999 |
msgid "Add HappyForms to your page or post"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: core/classes/class-wp-customize-form-manager.php:170
|
1003 |
msgid "In your Edit Post / Edit Page screen, click Add Block."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: core/classes/class-wp-customize-form-manager.php:170
|
1007 |
msgid "Select the HappyForms content block."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: core/classes/class-wp-customize-form-manager.php:170
|
1011 |
+
#: core/classes/class-wp-customize-form-manager.php:175
|
1012 |
msgid "Select a form in the Form dropdown."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: core/classes/class-wp-customize-form-manager.php:170
|
1016 |
msgid "That's it! You'll see a basic preview of your form in the editor."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: core/classes/class-wp-customize-form-manager.php:171
|
1020 |
msgid "Use HappyForms in a widget area"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: core/classes/class-wp-customize-form-manager.php:173
|
1024 |
msgid "Head over to Appearance → <a href=\"%s\">Widgets</a> screen."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: core/classes/class-wp-customize-form-manager.php:174
|
1028 |
msgid "Drag the HappyForms widget to your sidebar."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: core/classes/class-wp-customize-form-manager.php:176
|
1032 |
msgid "All done!"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: core/classes/class-wp-customize-form-manager.php:178
|
1036 |
msgid ""
|
1037 |
"Still have questions? Head over to our <a href=\"%s\" "
|
1038 |
"target=\"_blank\">help guide</a>."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: core/classes/class-wp-customize-form-manager.php:185
|
1042 |
msgid ""
|
1043 |
"Form saved. You can add this form to any Page, Post and Widget area. Have "
|
1044 |
"questions? <a href=\"%s\" target=\"_blank\">Ask for help in our support "
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: core/classes/parts/class-part-checkbox.php:39
|
1057 |
+
#: core/classes/parts/class-part-email.php:34
|
1058 |
+
#: core/classes/parts/class-part-email.php:58
|
1059 |
#: core/classes/parts/class-part-multi-line-text.php:34
|
1060 |
+
#: core/classes/parts/class-part-number.php:33
|
1061 |
+
#: core/classes/parts/class-part-number.php:93
|
1062 |
#: core/classes/parts/class-part-radio.php:40
|
1063 |
#: core/classes/parts/class-part-select.php:35
|
1064 |
+
#: core/classes/parts/class-part-single-line-text.php:31
|
1065 |
msgid "Untitled"
|
1066 |
msgstr ""
|
1067 |
|
1172 |
msgid "Spam protection, skip this field"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: core/helpers/helper-form-templates.php:1031
|
1176 |
msgid "January"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: core/helpers/helper-form-templates.php:1032
|
1180 |
msgid "February"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: core/helpers/helper-form-templates.php:1033
|
1184 |
msgid "March"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: core/helpers/helper-form-templates.php:1034
|
1188 |
msgid "April"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: core/helpers/helper-form-templates.php:1035
|
1192 |
msgid "May"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: core/helpers/helper-form-templates.php:1036
|
1196 |
msgid "June"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: core/helpers/helper-form-templates.php:1037
|
1200 |
msgid "July"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: core/helpers/helper-form-templates.php:1038
|
1204 |
msgid "August"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: core/helpers/helper-form-templates.php:1039
|
1208 |
msgid "September"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: core/helpers/helper-form-templates.php:1040
|
1212 |
msgid "October"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: core/helpers/helper-form-templates.php:1041
|
1216 |
msgid "November"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: core/helpers/helper-form-templates.php:1042
|
1220 |
msgid "December"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: core/helpers/helper-form-templates.php:1083
|
1224 |
msgid "Ascension Island"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: core/helpers/helper-form-templates.php:1084 core/helpers/helper-misc.php:228
|
1228 |
msgid "Andorra"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: core/helpers/helper-form-templates.php:1085 core/helpers/helper-misc.php:446
|
1232 |
msgid "United Arab Emirates"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: core/helpers/helper-form-templates.php:1086 core/helpers/helper-misc.php:224
|
1236 |
msgid "Afghanistan"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: core/helpers/helper-form-templates.php:1087 core/helpers/helper-misc.php:232
|
1240 |
msgid "Antigua and Barbuda"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: core/helpers/helper-form-templates.php:1088 core/helpers/helper-misc.php:230
|
1244 |
msgid "Anguilla"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: core/helpers/helper-form-templates.php:1089 core/helpers/helper-misc.php:225
|
1248 |
msgid "Albania"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: core/helpers/helper-form-templates.php:1090 core/helpers/helper-misc.php:234
|
1252 |
msgid "Armenia"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: core/helpers/helper-form-templates.php:1091 core/helpers/helper-misc.php:229
|
1256 |
msgid "Angola"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: core/helpers/helper-form-templates.php:1092 core/helpers/helper-misc.php:233
|
1260 |
msgid "Argentina"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: core/helpers/helper-form-templates.php:1093 core/helpers/helper-misc.php:227
|
1264 |
msgid "American Samoa"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: core/helpers/helper-form-templates.php:1094 core/helpers/helper-misc.php:237
|
1268 |
msgid "Austria"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: core/helpers/helper-form-templates.php:1095 core/helpers/helper-misc.php:236
|
1272 |
msgid "Australia"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: core/helpers/helper-form-templates.php:1096 core/helpers/helper-misc.php:235
|
1276 |
msgid "Aruba"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: core/helpers/helper-form-templates.php:1097
|
1280 |
msgid "Åland Islands"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: core/helpers/helper-form-templates.php:1098 core/helpers/helper-misc.php:238
|
1284 |
msgid "Azerbaijan"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: core/helpers/helper-form-templates.php:1099
|
1288 |
msgid "Bosnia and Herzegovina"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: core/helpers/helper-form-templates.php:1100 core/helpers/helper-misc.php:242
|
1292 |
msgid "Barbados"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: core/helpers/helper-form-templates.php:1101 core/helpers/helper-misc.php:241
|
1296 |
msgid "Bangladesh"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: core/helpers/helper-form-templates.php:1102 core/helpers/helper-misc.php:244
|
1300 |
msgid "Belgium"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: core/helpers/helper-form-templates.php:1103 core/helpers/helper-misc.php:257
|
1304 |
msgid "Burkina Faso"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: core/helpers/helper-form-templates.php:1104 core/helpers/helper-misc.php:256
|
1308 |
msgid "Bulgaria"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: core/helpers/helper-form-templates.php:1105 core/helpers/helper-misc.php:240
|
1312 |
msgid "Bahrain"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: core/helpers/helper-form-templates.php:1106 core/helpers/helper-misc.php:258
|
1316 |
msgid "Burundi"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: core/helpers/helper-form-templates.php:1107 core/helpers/helper-misc.php:246
|
1320 |
msgid "Benin"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: core/helpers/helper-form-templates.php:1108
|
1324 |
msgid "Saint Barthélemy"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: core/helpers/helper-form-templates.php:1109 core/helpers/helper-misc.php:247
|
1328 |
msgid "Bermuda"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: core/helpers/helper-form-templates.php:1110 core/helpers/helper-misc.php:255
|
1332 |
msgid "Brunei Darussalam"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: core/helpers/helper-form-templates.php:1111 core/helpers/helper-misc.php:249
|
1336 |
msgid "Bolivia"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: core/helpers/helper-form-templates.php:1112
|
1340 |
msgid "Bonaire, Sint Eustatius and Saba"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: core/helpers/helper-form-templates.php:1113 core/helpers/helper-misc.php:253
|
1344 |
msgid "Brazil"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: core/helpers/helper-form-templates.php:1114 core/helpers/helper-misc.php:239
|
1348 |
msgid "Bahamas"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: core/helpers/helper-form-templates.php:1115 core/helpers/helper-misc.php:248
|
1352 |
msgid "Bhutan"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: core/helpers/helper-form-templates.php:1116 core/helpers/helper-misc.php:251
|
1356 |
msgid "Botswana"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: core/helpers/helper-form-templates.php:1117 core/helpers/helper-misc.php:243
|
1360 |
msgid "Belarus"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: core/helpers/helper-form-templates.php:1118 core/helpers/helper-misc.php:245
|
1364 |
msgid "Belize"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: core/helpers/helper-form-templates.php:1119 core/helpers/helper-misc.php:261
|
1368 |
msgid "Canada"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: core/helpers/helper-form-templates.php:1120 core/helpers/helper-misc.php:269
|
1372 |
msgid "Cocos (Keeling) Islands"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: core/helpers/helper-form-templates.php:1121 core/helpers/helper-misc.php:273
|
1376 |
msgid "Congo, the Democratic Republic of the"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: core/helpers/helper-form-templates.php:1122 core/helpers/helper-misc.php:264
|
1380 |
msgid "Central African Republic"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: core/helpers/helper-form-templates.php:1123 core/helpers/helper-misc.php:272
|
1384 |
msgid "Congo"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: core/helpers/helper-form-templates.php:1124 core/helpers/helper-misc.php:429
|
1388 |
msgid "Switzerland"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: core/helpers/helper-form-templates.php:1125
|
1392 |
msgid "Cote D'Ivoire"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: core/helpers/helper-form-templates.php:1126 core/helpers/helper-misc.php:274
|
1396 |
msgid "Cook Islands"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: core/helpers/helper-form-templates.php:1127 core/helpers/helper-misc.php:266
|
1400 |
msgid "Chile"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: core/helpers/helper-form-templates.php:1128 core/helpers/helper-misc.php:260
|
1404 |
msgid "Cameroon"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: core/helpers/helper-form-templates.php:1129 core/helpers/helper-misc.php:267
|
1408 |
msgid "China"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: core/helpers/helper-form-templates.php:1130 core/helpers/helper-misc.php:270
|
1412 |
msgid "Colombia"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: core/helpers/helper-form-templates.php:1131 core/helpers/helper-misc.php:275
|
1416 |
msgid "Costa Rica"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: core/helpers/helper-form-templates.php:1132 core/helpers/helper-misc.php:278
|
1420 |
msgid "Cuba"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: core/helpers/helper-form-templates.php:1133 core/helpers/helper-misc.php:262
|
1424 |
msgid "Cape Verde"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: core/helpers/helper-form-templates.php:1134
|
1428 |
msgid "Curaçao"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: core/helpers/helper-form-templates.php:1135 core/helpers/helper-misc.php:268
|
1432 |
msgid "Christmas Island"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: core/helpers/helper-form-templates.php:1136 core/helpers/helper-misc.php:279
|
1436 |
msgid "Cyprus"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: core/helpers/helper-form-templates.php:1137 core/helpers/helper-misc.php:280
|
1440 |
msgid "Czech Republic"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: core/helpers/helper-form-templates.php:1138 core/helpers/helper-misc.php:305
|
1444 |
msgid "Germany"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: core/helpers/helper-form-templates.php:1139 core/helpers/helper-misc.php:282
|
1448 |
msgid "Djibouti"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: core/helpers/helper-form-templates.php:1140 core/helpers/helper-misc.php:281
|
1452 |
msgid "Denmark"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: core/helpers/helper-form-templates.php:1141 core/helpers/helper-misc.php:283
|
1456 |
msgid "Dominica"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: core/helpers/helper-form-templates.php:1142 core/helpers/helper-misc.php:284
|
1460 |
msgid "Dominican Republic"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: core/helpers/helper-form-templates.php:1143 core/helpers/helper-misc.php:226
|
1464 |
msgid "Algeria"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: core/helpers/helper-form-templates.php:1144 core/helpers/helper-misc.php:286
|
1468 |
msgid "Ecuador"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: core/helpers/helper-form-templates.php:1145 core/helpers/helper-misc.php:291
|
1472 |
msgid "Estonia"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: core/helpers/helper-form-templates.php:1146 core/helpers/helper-misc.php:287
|
1476 |
msgid "Egypt"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: core/helpers/helper-form-templates.php:1147 core/helpers/helper-misc.php:458
|
1480 |
msgid "Western Sahara"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: core/helpers/helper-form-templates.php:1148 core/helpers/helper-misc.php:290
|
1484 |
msgid "Eritrea"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: core/helpers/helper-form-templates.php:1149 core/helpers/helper-misc.php:420
|
1488 |
msgid "Spain"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:292
|
1492 |
msgid "Ethiopia"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:296
|
1496 |
msgid "Finland"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: core/helpers/helper-form-templates.php:1152 core/helpers/helper-misc.php:295
|
1500 |
msgid "Fiji"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: core/helpers/helper-form-templates.php:1153 core/helpers/helper-misc.php:293
|
1504 |
msgid "Falkland Islands (Malvinas)"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: core/helpers/helper-form-templates.php:1154 core/helpers/helper-misc.php:364
|
1508 |
msgid "Micronesia, Federated States of"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: core/helpers/helper-form-templates.php:1155 core/helpers/helper-misc.php:294
|
1512 |
msgid "Faroe Islands"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: core/helpers/helper-form-templates.php:1156 core/helpers/helper-misc.php:297
|
1516 |
msgid "France"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: core/helpers/helper-form-templates.php:1157 core/helpers/helper-misc.php:302
|
1520 |
msgid "Gabon"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: core/helpers/helper-form-templates.php:1158 core/helpers/helper-misc.php:447
|
1524 |
msgid "United Kingdom"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: core/helpers/helper-form-templates.php:1159 core/helpers/helper-misc.php:310
|
1528 |
msgid "Grenada"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: core/helpers/helper-form-templates.php:1160 core/helpers/helper-misc.php:304
|
1532 |
msgid "Georgia"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: core/helpers/helper-form-templates.php:1161 core/helpers/helper-misc.php:299
|
1536 |
msgid "French Guiana"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: core/helpers/helper-form-templates.php:1162
|
1540 |
msgid "Guernsey"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: core/helpers/helper-form-templates.php:1163 core/helpers/helper-misc.php:306
|
1544 |
msgid "Ghana"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: core/helpers/helper-form-templates.php:1164 core/helpers/helper-misc.php:307
|
1548 |
msgid "Gibraltar"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: core/helpers/helper-form-templates.php:1165 core/helpers/helper-misc.php:309
|
1552 |
msgid "Greenland"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: core/helpers/helper-form-templates.php:1166 core/helpers/helper-misc.php:303
|
1556 |
msgid "Gambia"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: core/helpers/helper-form-templates.php:1167 core/helpers/helper-misc.php:314
|
1560 |
msgid "Guinea"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: core/helpers/helper-form-templates.php:1168 core/helpers/helper-misc.php:311
|
1564 |
msgid "Guadeloupe"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: core/helpers/helper-form-templates.php:1169 core/helpers/helper-misc.php:289
|
1568 |
msgid "Equatorial Guinea"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: core/helpers/helper-form-templates.php:1170 core/helpers/helper-misc.php:308
|
1572 |
msgid "Greece"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: core/helpers/helper-form-templates.php:1171 core/helpers/helper-misc.php:313
|
1576 |
msgid "Guatemala"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: core/helpers/helper-form-templates.php:1172 core/helpers/helper-misc.php:312
|
1580 |
msgid "Guam"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: core/helpers/helper-form-templates.php:1173 core/helpers/helper-misc.php:315
|
1584 |
msgid "Guinea-Bissau"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: core/helpers/helper-form-templates.php:1174 core/helpers/helper-misc.php:316
|
1588 |
msgid "Guyana"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: core/helpers/helper-form-templates.php:1175 core/helpers/helper-misc.php:321
|
1592 |
msgid "Hong Kong"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: core/helpers/helper-form-templates.php:1176 core/helpers/helper-misc.php:320
|
1596 |
msgid "Honduras"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: core/helpers/helper-form-templates.php:1177
|
1600 |
msgid "Croatia"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: core/helpers/helper-form-templates.php:1178 core/helpers/helper-misc.php:317
|
1604 |
msgid "Haiti"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: core/helpers/helper-form-templates.php:1179 core/helpers/helper-misc.php:322
|
1608 |
msgid "Hungary"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: core/helpers/helper-form-templates.php:1180 core/helpers/helper-misc.php:325
|
1612 |
msgid "Indonesia"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: core/helpers/helper-form-templates.php:1181 core/helpers/helper-misc.php:328
|
1616 |
msgid "Ireland"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: core/helpers/helper-form-templates.php:1182 core/helpers/helper-misc.php:329
|
1620 |
msgid "Israel"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: core/helpers/helper-form-templates.php:1183
|
1624 |
msgid "Isle of Man"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: core/helpers/helper-form-templates.php:1184 core/helpers/helper-misc.php:324
|
1628 |
msgid "India"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: core/helpers/helper-form-templates.php:1185 core/helpers/helper-misc.php:254
|
1632 |
msgid "British Indian Ocean Territory"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: core/helpers/helper-form-templates.php:1186 core/helpers/helper-misc.php:327
|
1636 |
msgid "Iraq"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: core/helpers/helper-form-templates.php:1187
|
1640 |
msgid "Iran, Islamic Republic of"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: core/helpers/helper-form-templates.php:1188 core/helpers/helper-misc.php:323
|
1644 |
msgid "Iceland"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: core/helpers/helper-form-templates.php:1189 core/helpers/helper-misc.php:330
|
1648 |
msgid "Italy"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: core/helpers/helper-form-templates.php:1190
|
1652 |
msgid "Jersey"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: core/helpers/helper-form-templates.php:1191 core/helpers/helper-misc.php:331
|
1656 |
msgid "Jamaica"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: core/helpers/helper-form-templates.php:1192 core/helpers/helper-misc.php:333
|
1660 |
msgid "Jordan"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: core/helpers/helper-form-templates.php:1193 core/helpers/helper-misc.php:332
|
1664 |
msgid "Japan"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: core/helpers/helper-form-templates.php:1194 core/helpers/helper-misc.php:335
|
1668 |
msgid "Kenya"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: core/helpers/helper-form-templates.php:1195 core/helpers/helper-misc.php:340
|
1672 |
msgid "Kyrgyzstan"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: core/helpers/helper-form-templates.php:1196 core/helpers/helper-misc.php:259
|
1676 |
msgid "Cambodia"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: core/helpers/helper-form-templates.php:1197 core/helpers/helper-misc.php:336
|
1680 |
msgid "Kiribati"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: core/helpers/helper-form-templates.php:1198 core/helpers/helper-misc.php:271
|
1684 |
msgid "Comoros"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: core/helpers/helper-form-templates.php:1199 core/helpers/helper-misc.php:403
|
1688 |
msgid "Saint Kitts and Nevis"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: core/helpers/helper-form-templates.php:1200
|
1692 |
msgid "North Korea"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: core/helpers/helper-form-templates.php:1201
|
1696 |
msgid "South Korea"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: core/helpers/helper-form-templates.php:1202 core/helpers/helper-misc.php:339
|
1700 |
msgid "Kuwait"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: core/helpers/helper-form-templates.php:1203 core/helpers/helper-misc.php:263
|
1704 |
msgid "Cayman Islands"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: core/helpers/helper-form-templates.php:1204 core/helpers/helper-misc.php:334
|
1708 |
msgid "Kazakhstan"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: core/helpers/helper-form-templates.php:1205
|
1712 |
msgid "Lao People's Democratic Republic"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: core/helpers/helper-form-templates.php:1206 core/helpers/helper-misc.php:343
|
1716 |
msgid "Lebanon"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: core/helpers/helper-form-templates.php:1207 core/helpers/helper-misc.php:404
|
1720 |
msgid "Saint Lucia"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: core/helpers/helper-form-templates.php:1208 core/helpers/helper-misc.php:347
|
1724 |
msgid "Liechtenstein"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: core/helpers/helper-form-templates.php:1209 core/helpers/helper-misc.php:421
|
1728 |
msgid "Sri Lanka"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: core/helpers/helper-form-templates.php:1210 core/helpers/helper-misc.php:345
|
1732 |
msgid "Liberia"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: core/helpers/helper-form-templates.php:1211 core/helpers/helper-misc.php:344
|
1736 |
msgid "Lesotho"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: core/helpers/helper-form-templates.php:1212 core/helpers/helper-misc.php:348
|
1740 |
msgid "Lithuania"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: core/helpers/helper-form-templates.php:1213 core/helpers/helper-misc.php:349
|
1744 |
msgid "Luxembourg"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: core/helpers/helper-form-templates.php:1214 core/helpers/helper-misc.php:342
|
1748 |
msgid "Latvia"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: core/helpers/helper-form-templates.php:1215
|
1752 |
msgid "Libya"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: core/helpers/helper-form-templates.php:1216 core/helpers/helper-misc.php:369
|
1756 |
msgid "Morocco"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: core/helpers/helper-form-templates.php:1217 core/helpers/helper-misc.php:366
|
1760 |
msgid "Monaco"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: core/helpers/helper-form-templates.php:1218 core/helpers/helper-misc.php:365
|
1764 |
msgid "Moldova, Republic of"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: core/helpers/helper-form-templates.php:1219
|
1768 |
msgid "Montenegro"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: core/helpers/helper-form-templates.php:1220
|
1772 |
msgid "Saint Martin (French part)"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: core/helpers/helper-form-templates.php:1221 core/helpers/helper-misc.php:352
|
1776 |
msgid "Madagascar"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: core/helpers/helper-form-templates.php:1222 core/helpers/helper-misc.php:358
|
1780 |
msgid "Marshall Islands"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: core/helpers/helper-form-templates.php:1223
|
1784 |
msgid "North Macedonia, Republic of"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: core/helpers/helper-form-templates.php:1224 core/helpers/helper-misc.php:356
|
1788 |
msgid "Mali"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: core/helpers/helper-form-templates.php:1225 core/helpers/helper-misc.php:371
|
1792 |
msgid "Myanmar"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: core/helpers/helper-form-templates.php:1226 core/helpers/helper-misc.php:367
|
1796 |
msgid "Mongolia"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: core/helpers/helper-form-templates.php:1227
|
1800 |
msgid "Macao"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: core/helpers/helper-form-templates.php:1228 core/helpers/helper-misc.php:384
|
1804 |
msgid "Northern Mariana Islands"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: core/helpers/helper-form-templates.php:1229 core/helpers/helper-misc.php:359
|
1808 |
msgid "Martinique"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: core/helpers/helper-form-templates.php:1230 core/helpers/helper-misc.php:360
|
1812 |
msgid "Mauritania"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: core/helpers/helper-form-templates.php:1231 core/helpers/helper-misc.php:368
|
1816 |
msgid "Montserrat"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: core/helpers/helper-form-templates.php:1232 core/helpers/helper-misc.php:357
|
1820 |
msgid "Malta"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: core/helpers/helper-form-templates.php:1233 core/helpers/helper-misc.php:361
|
1824 |
msgid "Mauritius"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: core/helpers/helper-form-templates.php:1234 core/helpers/helper-misc.php:355
|
1828 |
msgid "Maldives"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: core/helpers/helper-form-templates.php:1235 core/helpers/helper-misc.php:353
|
1832 |
msgid "Malawi"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: core/helpers/helper-form-templates.php:1236 core/helpers/helper-misc.php:363
|
1836 |
msgid "Mexico"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: core/helpers/helper-form-templates.php:1237 core/helpers/helper-misc.php:354
|
1840 |
msgid "Malaysia"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: core/helpers/helper-form-templates.php:1238 core/helpers/helper-misc.php:370
|
1844 |
msgid "Mozambique"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: core/helpers/helper-form-templates.php:1239 core/helpers/helper-misc.php:372
|
1848 |
msgid "Namibia"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: core/helpers/helper-form-templates.php:1240 core/helpers/helper-misc.php:377
|
1852 |
msgid "New Caledonia"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: core/helpers/helper-form-templates.php:1241 core/helpers/helper-misc.php:380
|
1856 |
msgid "Niger"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: core/helpers/helper-form-templates.php:1242 core/helpers/helper-misc.php:383
|
1860 |
msgid "Norfolk Island"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: core/helpers/helper-form-templates.php:1243 core/helpers/helper-misc.php:381
|
1864 |
msgid "Nigeria"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: core/helpers/helper-form-templates.php:1244 core/helpers/helper-misc.php:379
|
1868 |
msgid "Nicaragua"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: core/helpers/helper-form-templates.php:1245 core/helpers/helper-misc.php:375
|
1872 |
msgid "Netherlands"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: core/helpers/helper-form-templates.php:1246 core/helpers/helper-misc.php:385
|
1876 |
msgid "Norway"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: core/helpers/helper-form-templates.php:1247 core/helpers/helper-misc.php:374
|
1880 |
msgid "Nepal"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: core/helpers/helper-form-templates.php:1248 core/helpers/helper-misc.php:373
|
1884 |
msgid "Nauru"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: core/helpers/helper-form-templates.php:1249 core/helpers/helper-misc.php:382
|
1888 |
msgid "Niue"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: core/helpers/helper-form-templates.php:1250 core/helpers/helper-misc.php:378
|
1892 |
msgid "New Zealand"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: core/helpers/helper-form-templates.php:1251 core/helpers/helper-misc.php:386
|
1896 |
msgid "Oman"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: core/helpers/helper-form-templates.php:1252 core/helpers/helper-misc.php:389
|
1900 |
msgid "Panama"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: core/helpers/helper-form-templates.php:1253 core/helpers/helper-misc.php:392
|
1904 |
msgid "Peru"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: core/helpers/helper-form-templates.php:1254 core/helpers/helper-misc.php:300
|
1908 |
msgid "French Polynesia"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: core/helpers/helper-form-templates.php:1255 core/helpers/helper-misc.php:390
|
1912 |
msgid "Papua New Guinea"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: core/helpers/helper-form-templates.php:1256 core/helpers/helper-misc.php:393
|
1916 |
msgid "Philippines"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: core/helpers/helper-form-templates.php:1257 core/helpers/helper-misc.php:387
|
1920 |
msgid "Pakistan"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: core/helpers/helper-form-templates.php:1258 core/helpers/helper-misc.php:395
|
1924 |
msgid "Poland"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: core/helpers/helper-form-templates.php:1259
|
1928 |
msgid "Saint Pierre and Miquelon"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: core/helpers/helper-form-templates.php:1260 core/helpers/helper-misc.php:397
|
1932 |
msgid "Puerto Rico"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: core/helpers/helper-form-templates.php:1261
|
1936 |
msgid "Palestinian Territory, Occupied"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: core/helpers/helper-form-templates.php:1262 core/helpers/helper-misc.php:396
|
1940 |
msgid "Portugal"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: core/helpers/helper-form-templates.php:1263 core/helpers/helper-misc.php:388
|
1944 |
msgid "Palau"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: core/helpers/helper-form-templates.php:1264 core/helpers/helper-misc.php:391
|
1948 |
msgid "Paraguay"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: core/helpers/helper-form-templates.php:1265 core/helpers/helper-misc.php:398
|
1952 |
msgid "Qatar"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: core/helpers/helper-form-templates.php:1266 core/helpers/helper-misc.php:399
|
1956 |
msgid "Reunion"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: core/helpers/helper-form-templates.php:1267 core/helpers/helper-misc.php:400
|
1960 |
msgid "Romania"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: core/helpers/helper-form-templates.php:1268
|
1964 |
msgid "Serbia"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: core/helpers/helper-form-templates.php:1269 core/helpers/helper-misc.php:401
|
1968 |
msgid "Russian Federation"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: core/helpers/helper-form-templates.php:1270 core/helpers/helper-misc.php:402
|
1972 |
msgid "Rwanda"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: core/helpers/helper-form-templates.php:1271 core/helpers/helper-misc.php:409
|
1976 |
msgid "Saudi Arabia"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: core/helpers/helper-form-templates.php:1272 core/helpers/helper-misc.php:416
|
1980 |
msgid "Solomon Islands"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: core/helpers/helper-form-templates.php:1273 core/helpers/helper-misc.php:411
|
1984 |
msgid "Seychelles"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: core/helpers/helper-form-templates.php:1274 core/helpers/helper-misc.php:424
|
1988 |
msgid "Sudan"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: core/helpers/helper-form-templates.php:1275 core/helpers/helper-misc.php:428
|
1992 |
msgid "Sweden"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: core/helpers/helper-form-templates.php:1276 core/helpers/helper-misc.php:413
|
1996 |
msgid "Singapore"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: core/helpers/helper-form-templates.php:1277
|
2000 |
+
#: core/helpers/helper-form-templates.php:1292
|
2001 |
msgid "Saint Helena"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: core/helpers/helper-form-templates.php:1278 core/helpers/helper-misc.php:415
|
2005 |
msgid "Slovenia"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: core/helpers/helper-form-templates.php:1279
|
2009 |
msgid "Svalbard and Jan Mayen"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: core/helpers/helper-form-templates.php:1280
|
2013 |
msgid "Slovakia"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: core/helpers/helper-form-templates.php:1281 core/helpers/helper-misc.php:412
|
2017 |
msgid "Sierra Leone"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: core/helpers/helper-form-templates.php:1282 core/helpers/helper-misc.php:407
|
2021 |
msgid "San Marino"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: core/helpers/helper-form-templates.php:1283 core/helpers/helper-misc.php:410
|
2025 |
msgid "Senegal"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: core/helpers/helper-form-templates.php:1284 core/helpers/helper-misc.php:417
|
2029 |
msgid "Somalia"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: core/helpers/helper-form-templates.php:1285 core/helpers/helper-misc.php:425
|
2033 |
msgid "Suriname"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: core/helpers/helper-form-templates.php:1286
|
2037 |
msgid "South Sudan"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: core/helpers/helper-form-templates.php:1287 core/helpers/helper-misc.php:408
|
2041 |
msgid "Sao Tome and Principe"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: core/helpers/helper-form-templates.php:1288 core/helpers/helper-misc.php:288
|
2045 |
msgid "El Salvador"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: core/helpers/helper-form-templates.php:1289
|
2049 |
msgid "Sint Maarten (Dutch part)"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: core/helpers/helper-form-templates.php:1290 core/helpers/helper-misc.php:430
|
2053 |
msgid "Syrian Arab Republic"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: core/helpers/helper-form-templates.php:1291
|
2057 |
msgid "Eswatini"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: core/helpers/helper-form-templates.php:1293 core/helpers/helper-misc.php:442
|
2061 |
msgid "Turks and Caicos Islands"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: core/helpers/helper-form-templates.php:1294 core/helpers/helper-misc.php:265
|
2065 |
msgid "Chad"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: core/helpers/helper-form-templates.php:1295 core/helpers/helper-misc.php:435
|
2069 |
msgid "Togo"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: core/helpers/helper-form-templates.php:1296 core/helpers/helper-misc.php:434
|
2073 |
msgid "Thailand"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: core/helpers/helper-form-templates.php:1297 core/helpers/helper-misc.php:432
|
2077 |
msgid "Tajikistan"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: core/helpers/helper-form-templates.php:1298 core/helpers/helper-misc.php:436
|
2081 |
msgid "Tokelau"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: core/helpers/helper-form-templates.php:1299
|
2085 |
msgid "Timor-Leste"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: core/helpers/helper-form-templates.php:1300 core/helpers/helper-misc.php:441
|
2089 |
msgid "Turkmenistan"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: core/helpers/helper-form-templates.php:1301 core/helpers/helper-misc.php:439
|
2093 |
msgid "Tunisia"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: core/helpers/helper-form-templates.php:1302 core/helpers/helper-misc.php:437
|
2097 |
msgid "Tonga"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: core/helpers/helper-form-templates.php:1303 core/helpers/helper-misc.php:440
|
2101 |
msgid "Turkey"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: core/helpers/helper-form-templates.php:1304 core/helpers/helper-misc.php:438
|
2105 |
msgid "Trinidad and Tobago"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: core/helpers/helper-form-templates.php:1305 core/helpers/helper-misc.php:443
|
2109 |
msgid "Tuvalu"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: core/helpers/helper-form-templates.php:1306
|
2113 |
msgid "Taiwan"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: core/helpers/helper-form-templates.php:1307 core/helpers/helper-misc.php:433
|
2117 |
msgid "Tanzania, United Republic of"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: core/helpers/helper-form-templates.php:1308 core/helpers/helper-misc.php:445
|
2121 |
msgid "Ukraine"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: core/helpers/helper-form-templates.php:1309 core/helpers/helper-misc.php:444
|
2125 |
msgid "Uganda"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: core/helpers/helper-form-templates.php:1310
|
2129 |
msgid "United States of America"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: core/helpers/helper-form-templates.php:1311 core/helpers/helper-misc.php:450
|
2133 |
msgid "Uruguay"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: core/helpers/helper-form-templates.php:1312 core/helpers/helper-misc.php:451
|
2137 |
msgid "Uzbekistan"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: core/helpers/helper-form-templates.php:1313 core/helpers/helper-misc.php:319
|
2141 |
msgid "Holy See (Vatican City State)"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: core/helpers/helper-form-templates.php:1314 core/helpers/helper-misc.php:405
|
2145 |
msgid "Saint Vincent and the Grenadines"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: core/helpers/helper-form-templates.php:1315 core/helpers/helper-misc.php:453
|
2149 |
msgid "Venezuela"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: core/helpers/helper-form-templates.php:1316
|
2153 |
msgid "Virgin Islands, British"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: core/helpers/helper-form-templates.php:1317
|
2157 |
msgid "Virgin Islands, U.S."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: core/helpers/helper-form-templates.php:1318 core/helpers/helper-misc.php:454
|
2161 |
msgid "Vietnam"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: core/helpers/helper-form-templates.php:1319 core/helpers/helper-misc.php:452
|
2165 |
msgid "Vanuatu"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: core/helpers/helper-form-templates.php:1320
|
2169 |
msgid "Wallis and Futuna"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: core/helpers/helper-form-templates.php:1321 core/helpers/helper-misc.php:406
|
2173 |
msgid "Samoa"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: core/helpers/helper-form-templates.php:1322
|
2177 |
msgid "Kosovo"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: core/helpers/helper-form-templates.php:1323 core/helpers/helper-misc.php:459
|
2181 |
msgid "Yemen"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: core/helpers/helper-form-templates.php:1324 core/helpers/helper-misc.php:362
|
2185 |
msgid "Mayotte"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: core/helpers/helper-form-templates.php:1325 core/helpers/helper-misc.php:418
|
2189 |
msgid "South Africa"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: core/helpers/helper-form-templates.php:1326 core/helpers/helper-misc.php:461
|
2193 |
msgid "Zambia"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: core/helpers/helper-form-templates.php:1327 core/helpers/helper-misc.php:462
|
2197 |
msgid "Zimbabwe"
|
2198 |
msgstr ""
|
2199 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: contact, contact form, email, feedback form, form, form builder, custom fo
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5.1
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.9.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -97,6 +97,11 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
97 |
|
98 |
== Changelog ==
|
99 |
|
|
|
|
|
|
|
|
|
|
|
100 |
= 1.9.25 =
|
101 |
* Bugfix: "Fields Borders & Spacing" → "Inner Spacing" control was unresponsive.
|
102 |
* Improvement: Added "Prefix" control to Email field.
|
@@ -679,6 +684,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
679 |
|
680 |
== Upgrade Notice ==
|
681 |
|
|
|
|
|
|
|
682 |
= 1.9.25 =
|
683 |
* New "Prefix" control in Email field, performance improvements and bugfixes.
|
684 |
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5.1
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.9.26
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
97 |
|
98 |
== Changelog ==
|
99 |
|
100 |
+
= 1.9.26 =
|
101 |
+
* Improvement: Style → Additional CSS now updates preview in realtime.
|
102 |
+
* Improvement: Added filter to force style output for compatibility with 3rd party plugins.
|
103 |
+
* Bugfix: Hidden form title was being displayed in widget previews.
|
104 |
+
|
105 |
= 1.9.25 =
|
106 |
* Bugfix: "Fields Borders & Spacing" → "Inner Spacing" control was unresponsive.
|
107 |
* Improvement: Added "Prefix" control to Email field.
|
684 |
|
685 |
== Upgrade Notice ==
|
686 |
|
687 |
+
= 1.9.26 =
|
688 |
+
* Realtime Additional CSS preview, new filters and bugfixes.
|
689 |
+
|
690 |
= 1.9.25 =
|
691 |
* New "Prefix" control in Email field, performance improvements and bugfixes.
|
692 |
|