Version Description
- New feature: Additional CSS section in Style tab allowing to write custom styles for each individual form.
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.2 |
Comparing to | |
See all releases |
Code changes from version 1.9.1 to 1.9.2
- core/assets/css/customize.css +31 -0
- core/classes/class-form-controller.php +3 -1
- core/classes/class-form-styles.php +46 -0
- core/classes/class-wp-customize-form-manager.php +4 -0
- core/helpers/helper-form-templates.php +81 -3
- core/templates/customize-controls/style/code.php +8 -0
- core/templates/customize-controls/style/divider.php +5 -0
- happyforms.php +2 -2
- inc/assets/js/customize.js +192 -0
- languages/happyforms.pot +332 -310
- readme.txt +7 -1
core/assets/css/customize.css
CHANGED
@@ -1395,3 +1395,34 @@ i.mce-i-happyforms_narrative_input:after {
|
|
1395 |
margin-top: 0;
|
1396 |
margin-bottom: 0;
|
1397 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1395 |
margin-top: 0;
|
1396 |
margin-bottom: 0;
|
1397 |
}
|
1398 |
+
|
1399 |
+
#customize-control-additional_css_divider + li {
|
1400 |
+
margin-bottom: 0;
|
1401 |
+
}
|
1402 |
+
#customize-control-additional_css {
|
1403 |
+
margin-bottom: 0;
|
1404 |
+
padding: 0;
|
1405 |
+
height: calc(100vh - 387px);
|
1406 |
+
}
|
1407 |
+
#customize-control-additional_css .customize-control-content,
|
1408 |
+
#customize-control-additional_css textarea[data-attribute],
|
1409 |
+
#customize-control-additional_css .CodeMirror {
|
1410 |
+
height: 100%;
|
1411 |
+
}
|
1412 |
+
|
1413 |
+
#customize-control-additional_css textarea[data-attribute] {
|
1414 |
+
font-family: Consolas, Monaco, monospace;
|
1415 |
+
font-size: 12px;
|
1416 |
+
padding: 6px 8px;
|
1417 |
+
-moz-tab-size: 2;
|
1418 |
+
-o-tab-size: 2;
|
1419 |
+
tab-size: 2;
|
1420 |
+
}
|
1421 |
+
|
1422 |
+
div.customize-section-description {
|
1423 |
+
margin: -16px 0 15px;
|
1424 |
+
padding: 12px 15px;
|
1425 |
+
border-top: 1px solid #ddd;
|
1426 |
+
color: #555d66;
|
1427 |
+
background: #fff;
|
1428 |
+
}
|
core/classes/class-form-controller.php
CHANGED
@@ -436,7 +436,7 @@ class HappyForms_Form_Controller {
|
|
436 |
public function do_get( $post_ids = array(), $only_id = false ) {
|
437 |
$query_params = array(
|
438 |
'post_type' => happyforms_get_form_controller()->post_type,
|
439 |
-
'post_status' => array( 'publish', 'archive' ),
|
440 |
'posts_per_page' => -1,
|
441 |
);
|
442 |
|
@@ -776,6 +776,8 @@ class HappyForms_Form_Controller {
|
|
776 |
happyforms_the_form_styles( $form );
|
777 |
}
|
778 |
|
|
|
|
|
779 |
$template_path = happyforms_get_core_folder() . '/templates/single-form.php';
|
780 |
$template_path = apply_filters( 'happyforms_form_template_path', $template_path, $form );
|
781 |
require( $template_path );
|
436 |
public function do_get( $post_ids = array(), $only_id = false ) {
|
437 |
$query_params = array(
|
438 |
'post_type' => happyforms_get_form_controller()->post_type,
|
439 |
+
'post_status' => array( 'publish', 'archive', 'trash' ),
|
440 |
'posts_per_page' => -1,
|
441 |
);
|
442 |
|
776 |
happyforms_the_form_styles( $form );
|
777 |
}
|
778 |
|
779 |
+
happyforms_additional_css( $form );
|
780 |
+
|
781 |
$template_path = happyforms_get_core_folder() . '/templates/single-form.php';
|
782 |
$template_path = apply_filters( 'happyforms_form_template_path', $template_path, $form );
|
783 |
require( $template_path );
|
core/classes/class-form-styles.php
CHANGED
@@ -513,6 +513,12 @@ class HappyForms_Form_Styles {
|
|
513 |
'target' => 'form_class',
|
514 |
'sanitize' => 'sanitize_text_field'
|
515 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
);
|
517 |
|
518 |
return apply_filters( 'happyforms_style_fields', $fields );
|
@@ -897,6 +903,45 @@ class HappyForms_Form_Styles {
|
|
897 |
),
|
898 |
);
|
899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
900 |
$controls = apply_filters( 'happyforms_style_controls', $controls );
|
901 |
ksort( $controls, SORT_NUMERIC );
|
902 |
|
@@ -916,6 +961,7 @@ class HappyForms_Form_Styles {
|
|
916 |
case 'text':
|
917 |
case 'select':
|
918 |
case 'heading':
|
|
|
919 |
require( "{$path}/{$type}.php" );
|
920 |
break;
|
921 |
default:
|
513 |
'target' => 'form_class',
|
514 |
'sanitize' => 'sanitize_text_field'
|
515 |
),
|
516 |
+
'additional_css' => array(
|
517 |
+
'default' => '',
|
518 |
+
'mode' => 'css',
|
519 |
+
'target' => 'value',
|
520 |
+
'sanitize' => ''
|
521 |
+
)
|
522 |
);
|
523 |
|
524 |
return apply_filters( 'happyforms_style_fields', $fields );
|
903 |
),
|
904 |
);
|
905 |
|
906 |
+
$current_user_id = get_current_user_id();
|
907 |
+
$code_editor_mode = 'plain';
|
908 |
+
|
909 |
+
if ( 'true' === get_user_meta( $current_user_id, 'syntax_highlighting', true ) ) {
|
910 |
+
$code_editor_mode = 'rich';
|
911 |
+
}
|
912 |
+
|
913 |
+
$code_section_description = '<p>' . __( 'Add your own CSS code here to customize the appearance of your form.', HAPPYFORMS_TEXT_DOMAIN ) . '</p>' .
|
914 |
+
'<p>' . sprintf(
|
915 |
+
__( 'For each rule you add, we\'ll prepend your form\'s HTML ID. This makes sure all styles added will only apply to this form. For example %s becomes %s.', HAPPYFORMS_TEXT_DOMAIN ),
|
916 |
+
'<code>p</code>',
|
917 |
+
'<code><%= ( happyForms.form.get( \'form_id\' ) ) ? happyForms.form.get( \'html_id\' ) : \'#happyforms-\'+happyForms.form.get( \'ID\' ) %> p</code>'
|
918 |
+
)
|
919 |
+
. '</p>';
|
920 |
+
|
921 |
+
if ( 'rich' === $code_editor_mode ) {
|
922 |
+
$code_section_description .= sprintf(
|
923 |
+
'<p>' . __( 'The edit field automatically highlights code syntax. You can disable this in your <a href="%s" class="%s" target="_blank">user profile</a> to work in plain text mode.', HAPPYFORMS_TEXT_DOMAIN ) . '</p>',
|
924 |
+
get_edit_profile_url( $current_user_id ),
|
925 |
+
'external external-link'
|
926 |
+
);
|
927 |
+
}
|
928 |
+
|
929 |
+
$controls[99990] = array(
|
930 |
+
'type' => 'divider',
|
931 |
+
'label' => __( 'Additional CSS', HAPPYFORMS_TEXT_DOMAIN ),
|
932 |
+
'id' => 'additional_css_divider',
|
933 |
+
'class' => "code-editor-mode--{$code_editor_mode}",
|
934 |
+
'description' => $code_section_description
|
935 |
+
);
|
936 |
+
|
937 |
+
$controls[99991] = array(
|
938 |
+
'type' => 'code',
|
939 |
+
'mode' => $code_editor_mode,
|
940 |
+
'hide_title' => true,
|
941 |
+
'label' => __( 'Additional CSS', HAPPYFORMS_TEXT_DOMAIN ),
|
942 |
+
'field' => 'additional_css'
|
943 |
+
);
|
944 |
+
|
945 |
$controls = apply_filters( 'happyforms_style_controls', $controls );
|
946 |
ksort( $controls, SORT_NUMERIC );
|
947 |
|
961 |
case 'text':
|
962 |
case 'select':
|
963 |
case 'heading':
|
964 |
+
case 'code':
|
965 |
require( "{$path}/{$type}.php" );
|
966 |
break;
|
967 |
default:
|
core/classes/class-wp-customize-form-manager.php
CHANGED
@@ -273,6 +273,8 @@ class HappyForms_WP_Customize_Form_Manager {
|
|
273 |
array( 'wp-color-picker', 'wp-pointer' ), HAPPYFORMS_VERSION
|
274 |
);
|
275 |
|
|
|
|
|
276 |
$customize_deps = apply_filters(
|
277 |
'happyforms_customize_dependencies',
|
278 |
array(
|
@@ -287,6 +289,8 @@ class HappyForms_WP_Customize_Form_Manager {
|
|
287 |
'wp-color-picker',
|
288 |
'wp-pointer',
|
289 |
'customize-controls',
|
|
|
|
|
290 |
)
|
291 |
);
|
292 |
|
273 |
array( 'wp-color-picker', 'wp-pointer' ), HAPPYFORMS_VERSION
|
274 |
);
|
275 |
|
276 |
+
wp_enqueue_style( 'code-editor' );
|
277 |
+
|
278 |
$customize_deps = apply_filters(
|
279 |
'happyforms_customize_dependencies',
|
280 |
array(
|
289 |
'wp-color-picker',
|
290 |
'wp-pointer',
|
291 |
'customize-controls',
|
292 |
+
'csslint',
|
293 |
+
'code-editor'
|
294 |
)
|
295 |
);
|
296 |
|
core/helpers/helper-form-templates.php
CHANGED
@@ -157,10 +157,10 @@ if ( ! function_exists( 'happyforms_part_has_tooltip' ) ) :
|
|
157 |
|
158 |
function happyforms_part_has_tooltip( $part ) {
|
159 |
if ( ( isset( $part['description_mode'] )
|
160 |
-
&& 'tooltip' === $part['description_mode'] )
|
161 |
-
|| ( isset( $part['tooltip_description'] )
|
162 |
&& 1 === intval( $part['tooltip_description'] ) ) ) {
|
163 |
-
|
164 |
return true;
|
165 |
}
|
166 |
|
@@ -785,6 +785,32 @@ function happyforms_the_form_styles( $form ) {
|
|
785 |
|
786 |
endif;
|
787 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
788 |
if ( ! function_exists( 'happyforms_get_form_property' ) ):
|
789 |
/**
|
790 |
* Get a form property.
|
@@ -1498,3 +1524,55 @@ function happyforms_get_part_states( $location = '' ) {
|
|
1498 |
}
|
1499 |
|
1500 |
endif;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
function happyforms_part_has_tooltip( $part ) {
|
159 |
if ( ( isset( $part['description_mode'] )
|
160 |
+
&& 'tooltip' === $part['description_mode'] )
|
161 |
+
|| ( isset( $part['tooltip_description'] )
|
162 |
&& 1 === intval( $part['tooltip_description'] ) ) ) {
|
163 |
+
|
164 |
return true;
|
165 |
}
|
166 |
|
785 |
|
786 |
endif;
|
787 |
|
788 |
+
if ( ! function_exists( 'happyforms_additional_css' ) ):
|
789 |
+
/**
|
790 |
+
* Output a form's styles.
|
791 |
+
*
|
792 |
+
* @param array $form Current form data.
|
793 |
+
*/
|
794 |
+
function happyforms_additional_css( $form ) {
|
795 |
+
$additional_css = happyforms_get_meta( $form['ID'], 'additional_css', true );
|
796 |
+
|
797 |
+
if ( ! $additional_css ) {
|
798 |
+
return;
|
799 |
+
}
|
800 |
+
|
801 |
+
$form_id = happyforms_get_form_id( $form );
|
802 |
+
$additional_css = happyforms_get_prefixed_css( $additional_css, "#{$form_id}" );
|
803 |
+
?>
|
804 |
+
<!-- HappyForms Additional CSS -->
|
805 |
+
<style>
|
806 |
+
<?php echo $additional_css; ?>
|
807 |
+
</style>
|
808 |
+
<!-- End of HappyForms Additional CSS -->
|
809 |
+
<?php
|
810 |
+
}
|
811 |
+
|
812 |
+
endif;
|
813 |
+
|
814 |
if ( ! function_exists( 'happyforms_get_form_property' ) ):
|
815 |
/**
|
816 |
* Get a form property.
|
1524 |
}
|
1525 |
|
1526 |
endif;
|
1527 |
+
|
1528 |
+
if ( ! function_exists( 'happyforms_get_prefixed_css' ) ):
|
1529 |
+
/**
|
1530 |
+
* Prefix CSS selectors with specified prefix.
|
1531 |
+
*
|
1532 |
+
* @param string $css CSS to be prefixed.
|
1533 |
+
* @param string $prefix Prefix to add in front of each selector.
|
1534 |
+
*
|
1535 |
+
* @return string
|
1536 |
+
*/
|
1537 |
+
function happyforms_get_prefixed_css( $css, $prefix ) {
|
1538 |
+
$css = preg_replace( '!/\*.*?\*/!s', '', $css );
|
1539 |
+
$parts = explode( '}', $css );
|
1540 |
+
$is_media_query = false;
|
1541 |
+
|
1542 |
+
foreach ( $parts as &$part ) {
|
1543 |
+
$part = trim( $part );
|
1544 |
+
|
1545 |
+
if ( empty( $part ) ) {
|
1546 |
+
continue;
|
1547 |
+
}
|
1548 |
+
|
1549 |
+
$part_contents = explode( '{', $part );
|
1550 |
+
|
1551 |
+
if ( 2 === substr_count( $part, '{' ) ) {
|
1552 |
+
$media_query = $part_contents[0] . '{';
|
1553 |
+
$part_contents[0] = $part_contents[1];
|
1554 |
+
$is_media_query = true;
|
1555 |
+
}
|
1556 |
+
|
1557 |
+
$sub_parts = explode( ',', $part_contents[0] );
|
1558 |
+
|
1559 |
+
foreach ( $sub_parts as &$sub_part ) {
|
1560 |
+
$sub_part = $prefix . ' ' . trim( $sub_part );
|
1561 |
+
}
|
1562 |
+
|
1563 |
+
if ( 2 === substr_count( $part, '{' ) ) {
|
1564 |
+
$part = $media_query . "\n" . implode( ', ', $sub_parts ) . '{'. $part_contents[2];
|
1565 |
+
} else if ( empty($part[0] ) && $is_media_query ) {
|
1566 |
+
$is_media_query = false;
|
1567 |
+
$part = implode( ', ', $sub_parts ). '{'. $part_contents[2]. "}\n";
|
1568 |
+
} else {
|
1569 |
+
if ( isset( $part_contents[1] ) ) {
|
1570 |
+
$part = implode( ', ', $sub_parts ) . '{'. $part_contents[1];
|
1571 |
+
}
|
1572 |
+
}
|
1573 |
+
}
|
1574 |
+
|
1575 |
+
return preg_replace( '/\s+/',' ', implode( '} ', $parts ) );
|
1576 |
+
}
|
1577 |
+
|
1578 |
+
endif;
|
core/templates/customize-controls/style/code.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<li class="customize-control <?php echo esc_attr( 'happyforms-' . $control['type'] . '-control' ); ?>" data-target="<?php echo esc_attr( $field['target'] ); ?>" data-mode="<?php echo $control['mode']; ?>" id="customize-control-<?php echo $control['field']; ?>">
|
2 |
+
<?php if ( ! isset( $control['hide_title'] ) || ! $control['hide_title'] ) : ?>
|
3 |
+
<label class="customize-control-title" for="<?php echo $control['field']; ?>"><?php echo $control['label']; ?> <?php if ( isset( $control['tooltip'] ) ) : ?> <i class="dashicons dashicons-editor-help" aria-hidden="true" data-pointer><span><?php echo $control['tooltip']; ?></span></i><?php endif; ?></label>
|
4 |
+
<?php endif; ?>
|
5 |
+
<div class="customize-control-content" data-pointer-target>
|
6 |
+
<textarea class="code" name="<?php echo $control['field']; ?>" id="<?php echo $control['field']; ?>" data-attribute="<?php echo $control['field']; ?>" data-mode="<?php echo $field['mode']; ?>"><%= <?php echo $control['field']; ?> %></textarea>
|
7 |
+
</div>
|
8 |
+
</li>
|
core/templates/customize-controls/style/divider.php
CHANGED
@@ -13,3 +13,8 @@
|
|
13 |
<span class="preview-notice"><?php _e( 'You are customizing', HAPPYFORMS_TEXT_DOMAIN ); ?> <strong class="panel-title"><?php echo $control['label']; ?></strong></span>
|
14 |
</div>
|
15 |
</li>
|
|
|
|
|
|
|
|
|
|
13 |
<span class="preview-notice"><?php _e( 'You are customizing', HAPPYFORMS_TEXT_DOMAIN ); ?> <strong class="panel-title"><?php echo $control['label']; ?></strong></span>
|
14 |
</div>
|
15 |
</li>
|
16 |
+
<?php if ( isset( $control['description'] ) ) : ?>
|
17 |
+
<div class="description customize-section-description open">
|
18 |
+
<?php echo $control['description']; ?>
|
19 |
+
</div>
|
20 |
+
<?php endif; ?>
|
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: The Theme Foundry
|
8 |
-
* Version: 1.9.
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
@@ -13,7 +13,7 @@
|
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
-
define( 'HAPPYFORMS_VERSION', '1.9.
|
17 |
define( 'HAPPYFORMS_TEXT_DOMAIN', 'happyforms' );
|
18 |
|
19 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
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: The Theme Foundry
|
8 |
+
* Version: 1.9.2
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
+
define( 'HAPPYFORMS_VERSION', '1.9.2' );
|
17 |
define( 'HAPPYFORMS_TEXT_DOMAIN', 'happyforms' );
|
18 |
|
19 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
inc/assets/js/customize.js
CHANGED
@@ -1592,6 +1592,7 @@
|
|
1592 |
this.initColorPickers();
|
1593 |
this.initUISliders();
|
1594 |
this.setupHelpPointers();
|
|
|
1595 |
|
1596 |
if ( happyForms.savedStates.style.activeSection ) {
|
1597 |
this.navigateToGroup( happyForms.savedStates.style.activeSection );
|
@@ -1818,6 +1819,197 @@
|
|
1818 |
} );
|
1819 |
} );
|
1820 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1821 |
} );
|
1822 |
|
1823 |
Previewer = {
|
1592 |
this.initColorPickers();
|
1593 |
this.initUISliders();
|
1594 |
this.setupHelpPointers();
|
1595 |
+
this.initCodeEditors();
|
1596 |
|
1597 |
if ( happyForms.savedStates.style.activeSection ) {
|
1598 |
this.navigateToGroup( happyForms.savedStates.style.activeSection );
|
1819 |
} );
|
1820 |
} );
|
1821 |
},
|
1822 |
+
|
1823 |
+
initFormWidthSlider: function(reInit) {
|
1824 |
+
var self = this;
|
1825 |
+
|
1826 |
+
var $container = this.$el.find( '.happyforms-range-control#customize-control-form_width' );
|
1827 |
+
var $slider = $( '.happyforms-range-slider', $container );
|
1828 |
+
var $input = $( 'input', $container );
|
1829 |
+
var $unitSwitch = $( '.happyforms-unit-switch', $container );
|
1830 |
+
|
1831 |
+
var stringValue = this.model.get('form_width').toString();
|
1832 |
+
var numericValue = (stringValue) ? parseFloat(stringValue.replace(/px|%/gi, '')) : 100;
|
1833 |
+
var unit = $unitSwitch.val();
|
1834 |
+
|
1835 |
+
if ( ! reInit ) {
|
1836 |
+
if ( -1 !== stringValue.indexOf('%') ) {
|
1837 |
+
unit = '%';
|
1838 |
+
} else if ( -1 !== stringValue.indexOf('px') ) {
|
1839 |
+
unit = 'px';
|
1840 |
+
} else {
|
1841 |
+
unit = '%';
|
1842 |
+
}
|
1843 |
+
|
1844 |
+
$unitSwitch.val(unit);
|
1845 |
+
}
|
1846 |
+
|
1847 |
+
var min = ('px' === unit) ? 360 : 0;
|
1848 |
+
var max = ('px' === unit) ? 1440 : 100;
|
1849 |
+
var step = ('px' === unit) ? 10 : 5;
|
1850 |
+
|
1851 |
+
$input.attr('min', min);
|
1852 |
+
$input.attr('max', max);
|
1853 |
+
$input.attr('step', step);
|
1854 |
+
|
1855 |
+
$unitSwitch.on('change', function () {
|
1856 |
+
self.initFormWidthSlider(true);
|
1857 |
+
});
|
1858 |
+
|
1859 |
+
if ( reInit ) {
|
1860 |
+
numericValue = ('%' === unit) ? 100 : 900;
|
1861 |
+
|
1862 |
+
self.updateFormWidth(numericValue, unit, $slider);
|
1863 |
+
}
|
1864 |
+
|
1865 |
+
$input.val(numericValue);
|
1866 |
+
|
1867 |
+
$input.on('keyup change mouseup', function () {
|
1868 |
+
var $this = $(this);
|
1869 |
+
|
1870 |
+
self.updateFormWidth($this.val(), unit, $slider);
|
1871 |
+
});
|
1872 |
+
|
1873 |
+
$slider.slider({
|
1874 |
+
value: numericValue,
|
1875 |
+
min: min,
|
1876 |
+
max: max,
|
1877 |
+
step: step,
|
1878 |
+
|
1879 |
+
stop: function (e, ui) {
|
1880 |
+
$input.val(ui.value);
|
1881 |
+
|
1882 |
+
self.updateFormWidth(ui.value, unit, $slider);
|
1883 |
+
}
|
1884 |
+
});
|
1885 |
+
},
|
1886 |
+
|
1887 |
+
updateFormWidth: function( value, unit, $slider ) {
|
1888 |
+
$slider.slider('value', value);
|
1889 |
+
|
1890 |
+
this.model.set('form_width', value + unit);
|
1891 |
+
|
1892 |
+
var data = {
|
1893 |
+
variable: '--happyforms-form-width',
|
1894 |
+
value: value + unit,
|
1895 |
+
};
|
1896 |
+
|
1897 |
+
happyForms.previewSend('happyforms-css-variable-update', data);
|
1898 |
+
},
|
1899 |
+
|
1900 |
+
initCodeEditors: function() {
|
1901 |
+
if ( ! $( '.happyforms-code-control', this.$el ).length ) {
|
1902 |
+
return;
|
1903 |
+
}
|
1904 |
+
|
1905 |
+
var self = this;
|
1906 |
+
|
1907 |
+
$( '.happyforms-code-control', this.$el ).each( function() {
|
1908 |
+
var $this = $( this );
|
1909 |
+
var $el = $( 'textarea', $this );
|
1910 |
+
|
1911 |
+
if ( 'rich' === $this.attr( 'data-mode' ) ) {
|
1912 |
+
self.initSyntaxHighlightingEditor( $el );
|
1913 |
+
} else {
|
1914 |
+
self.initPlainTextEditor( $el );
|
1915 |
+
}
|
1916 |
+
} );
|
1917 |
+
},
|
1918 |
+
|
1919 |
+
initSyntaxHighlightingEditor: function( $el ) {
|
1920 |
+
var self = this;
|
1921 |
+
var attribute = $el.attr( 'data-attribute' );
|
1922 |
+
|
1923 |
+
var editor = wp.codeEditor.initialize(
|
1924 |
+
$el.attr( 'id' ),
|
1925 |
+
{
|
1926 |
+
csslint: {
|
1927 |
+
"errors": true,
|
1928 |
+
"box-model": true,
|
1929 |
+
"display-property-grouping": true,
|
1930 |
+
"duplicate-properties": true,
|
1931 |
+
"known-properties": true,
|
1932 |
+
"outline-none": true
|
1933 |
+
},
|
1934 |
+
codemirror: {
|
1935 |
+
"mode": $el.attr( 'data-mode' ),
|
1936 |
+
"lint": true,
|
1937 |
+
"lineNumbers": true,
|
1938 |
+
"styleActiveLine": true,
|
1939 |
+
"indentUnit": 2,
|
1940 |
+
"indentWithTabs": true,
|
1941 |
+
"tabSize": 2,
|
1942 |
+
"lineWrapping": true,
|
1943 |
+
"autoCloseBrackets": true,
|
1944 |
+
"matchBrackets": true,
|
1945 |
+
"continueComments": true,
|
1946 |
+
"extraKeys": {
|
1947 |
+
"Ctrl-Space": "autocomplete",
|
1948 |
+
"Ctrl-\/": "toggleComment",
|
1949 |
+
"Cmd-\/": "toggleComment",
|
1950 |
+
"Alt-F": "findPersistent",
|
1951 |
+
"Ctrl-F": "findPersistent",
|
1952 |
+
"Cmd-F": "findPersistent"
|
1953 |
+
},
|
1954 |
+
"direction": "ltr",
|
1955 |
+
"gutters": [ "CodeMirror-lint-markers" ],
|
1956 |
+
}
|
1957 |
+
}
|
1958 |
+
);
|
1959 |
+
|
1960 |
+
editor.codemirror.on( 'change', function() {
|
1961 |
+
var value = editor.codemirror.getValue();
|
1962 |
+
|
1963 |
+
self.model.set( attribute, value );
|
1964 |
+
} );
|
1965 |
+
},
|
1966 |
+
|
1967 |
+
initPlainTextEditor: function( $el ) {
|
1968 |
+
var self = this;
|
1969 |
+
var attribute = $el.attr( 'data-attribute' );
|
1970 |
+
|
1971 |
+
$el.on( 'blur', function onBlur() {
|
1972 |
+
$el.data( 'next-tab-blurs', false );
|
1973 |
+
} );
|
1974 |
+
|
1975 |
+
$el.on( 'keydown', function onKeydown( event ) {
|
1976 |
+
var selectionStart, selectionEnd, value, tabKeyCode = 9, escKeyCode = 27;
|
1977 |
+
|
1978 |
+
if ( escKeyCode === event.keyCode ) {
|
1979 |
+
if ( ! $el.data( 'next-tab-blurs' ) ) {
|
1980 |
+
$el.data( 'next-tab-blurs', true );
|
1981 |
+
event.stopPropagation(); // Prevent collapsing the section.
|
1982 |
+
}
|
1983 |
+
return;
|
1984 |
+
}
|
1985 |
+
|
1986 |
+
// Short-circuit if tab key is not being pressed or if a modifier key *is* being pressed.
|
1987 |
+
if ( tabKeyCode !== event.keyCode || event.ctrlKey || event.altKey || event.shiftKey ) {
|
1988 |
+
return;
|
1989 |
+
}
|
1990 |
+
|
1991 |
+
// Prevent capturing Tab characters if Esc was pressed.
|
1992 |
+
if ( $el.data( 'next-tab-blurs' ) ) {
|
1993 |
+
return;
|
1994 |
+
}
|
1995 |
+
|
1996 |
+
selectionStart = $el[0].selectionStart;
|
1997 |
+
selectionEnd = $el[0].selectionEnd;
|
1998 |
+
value = $el[0].value;
|
1999 |
+
|
2000 |
+
if ( selectionStart >= 0 ) {
|
2001 |
+
$el[0].value = value.substring( 0, selectionStart ).concat( '\t', value.substring( selectionEnd ) );
|
2002 |
+
$el.selectionStart = $el[0].selectionEnd = selectionStart + 1;
|
2003 |
+
}
|
2004 |
+
|
2005 |
+
event.stopPropagation();
|
2006 |
+
event.preventDefault();
|
2007 |
+
});
|
2008 |
+
|
2009 |
+
$el.on( 'keyup', function( e ) {
|
2010 |
+
self.model.set( attribute, $( e.target ).val() );
|
2011 |
+
} );
|
2012 |
+
}
|
2013 |
} );
|
2014 |
|
2015 |
Previewer = {
|
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-01-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -531,168 +531,168 @@ msgstr ""
|
|
531 |
msgid "Below form"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: core/classes/class-form-styles.php:
|
535 |
msgid "General"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: core/classes/class-form-styles.php:
|
539 |
-
#: core/classes/class-form-styles.php:
|
540 |
#: core/templates/parts/customize-checkbox.php:85
|
541 |
msgid "Width"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: core/classes/class-form-styles.php:
|
545 |
-
#: core/classes/class-form-styles.php:
|
546 |
msgid "Padding"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: core/classes/class-form-styles.php:
|
550 |
msgid "Direction"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: core/classes/class-form-styles.php:
|
554 |
msgid "Display notices"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: core/classes/class-form-styles.php:
|
558 |
-
#: core/classes/class-form-styles.php:
|
559 |
-
#: core/classes/class-form-styles.php:
|
560 |
-
#: core/classes/class-form-styles.php:
|
561 |
msgid "Colors"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: core/classes/class-form-styles.php:
|
565 |
msgid "Primary"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: core/classes/class-form-styles.php:
|
569 |
msgid "Success notice"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: core/classes/class-form-styles.php:
|
573 |
msgid "Success notice text"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: core/classes/class-form-styles.php:
|
577 |
msgid "Error"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: core/classes/class-form-styles.php:
|
581 |
msgid "Error notice"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: core/classes/class-form-styles.php:
|
585 |
msgid "Error notice text"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: core/classes/class-form-styles.php:
|
589 |
-
#: core/classes/class-form-styles.php:
|
590 |
#: core/templates/customize-form-build.php:4
|
591 |
#: inc/classes/parts/class-part-title-dummy.php:8
|
592 |
msgid "Title"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: core/classes/class-form-styles.php:
|
596 |
msgid "Display"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: core/classes/class-form-styles.php:
|
600 |
-
#: core/classes/class-form-styles.php:
|
601 |
msgid "Alignment"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: core/classes/class-form-styles.php:
|
605 |
-
#: core/classes/class-form-styles.php:
|
606 |
msgid "Font size"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: core/classes/class-form-styles.php:
|
610 |
msgid "Part borders & spacing"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: core/classes/class-form-styles.php:
|
614 |
-
#: core/classes/class-form-styles.php:
|
615 |
-
#: core/classes/class-form-styles.php:
|
616 |
-
#: core/classes/class-form-styles.php:
|
617 |
msgid "Border"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: core/classes/class-form-styles.php:
|
621 |
msgid "Border location"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: core/classes/class-form-styles.php:
|
625 |
-
#: core/classes/class-form-styles.php:
|
626 |
msgid "Border radius"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: core/classes/class-form-styles.php:
|
630 |
msgid "Outer spacing"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: core/classes/class-form-styles.php:
|
634 |
msgid "Inner spacing"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: core/classes/class-form-styles.php:
|
638 |
msgid "Border on focus"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: core/classes/class-form-styles.php:
|
642 |
-
#: core/classes/class-form-styles.php:
|
643 |
-
#: core/classes/class-form-styles.php:
|
644 |
-
#: core/classes/class-form-styles.php:
|
645 |
msgid "Background"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: core/classes/class-form-styles.php:
|
649 |
-
#: core/classes/class-form-styles.php:
|
650 |
-
#: core/classes/class-form-styles.php:
|
651 |
-
#: core/classes/class-form-styles.php:
|
652 |
msgid "Background on focus"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: core/classes/class-form-styles.php:
|
656 |
msgid "Part labels & text"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: core/classes/class-form-styles.php:
|
660 |
msgid "Toggle placeholder on part focus"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: core/classes/class-form-styles.php:
|
664 |
msgid "Title alignment"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: core/classes/class-form-styles.php:
|
668 |
msgid "Title font size"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: core/classes/class-form-styles.php:
|
672 |
msgid "Title font weight"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: core/classes/class-form-styles.php:
|
676 |
msgid "Description alignment"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: core/classes/class-form-styles.php:
|
680 |
msgid "Description font size"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: core/classes/class-form-styles.php:
|
684 |
msgid "Placeholder & value alignment"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: core/classes/class-form-styles.php:
|
688 |
msgid "Value font size"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: core/classes/class-form-styles.php:
|
692 |
msgid "Value"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: core/classes/class-form-styles.php:
|
696 |
#: core/templates/parts/customize-email.php:30
|
697 |
#: core/templates/parts/customize-multi-line-text.php:30
|
698 |
#: core/templates/parts/customize-number.php:30
|
@@ -702,88 +702,110 @@ msgstr ""
|
|
702 |
msgid "Placeholder"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: core/classes/class-form-styles.php:
|
706 |
msgid "Dropdowns"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: core/classes/class-form-styles.php:
|
710 |
msgid "Items"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: core/classes/class-form-styles.php:
|
714 |
-
#: core/classes/class-form-styles.php:
|
715 |
msgid "Text"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: core/classes/class-form-styles.php:
|
719 |
msgid "Text focused"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: core/classes/class-form-styles.php:
|
723 |
msgid "Checkboxes & Radios"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: core/classes/class-form-styles.php:
|
727 |
msgid "Checkmark"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: core/classes/class-form-styles.php:
|
731 |
#: inc/classes/parts/class-part-rating-dummy.php:8
|
732 |
msgid "Rating"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: core/classes/class-form-styles.php:
|
736 |
msgid "Rating star color"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: core/classes/class-form-styles.php:
|
740 |
msgid "Rating star color on hover"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: core/classes/class-form-styles.php:
|
744 |
msgid "Item background"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: core/classes/class-form-styles.php:
|
748 |
msgid "Item background on hover"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: core/classes/class-form-styles.php:
|
752 |
msgid "Tables"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: core/classes/class-form-styles.php:
|
756 |
msgid "Odd row primary"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: core/classes/class-form-styles.php:
|
760 |
msgid "Odd row secondary"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: core/classes/class-form-styles.php:
|
764 |
msgid "Even row primary"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: core/classes/class-form-styles.php:
|
768 |
msgid "Even row secondary"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: core/classes/class-form-styles.php:
|
772 |
msgid "Submit button"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: core/classes/class-form-styles.php:
|
776 |
msgid "Font weight"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: core/classes/class-form-styles.php:
|
780 |
msgid "Make button a part of last input"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: core/classes/class-form-styles.php:
|
784 |
msgid "Text on focus"
|
785 |
msgstr ""
|
786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
#: core/classes/class-happyforms-core.php:163
|
788 |
msgid "HappyForms Index"
|
789 |
msgstr ""
|
@@ -1099,935 +1121,935 @@ msgstr ""
|
|
1099 |
msgid "Spam protection, skip this field"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: core/helpers/helper-form-templates.php:
|
1103 |
msgid "Get my location"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: core/helpers/helper-form-templates.php:
|
1107 |
msgid "Fetching location…"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: core/helpers/helper-form-templates.php:
|
1111 |
msgid "January"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: core/helpers/helper-form-templates.php:
|
1115 |
msgid "February"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: core/helpers/helper-form-templates.php:
|
1119 |
msgid "March"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: core/helpers/helper-form-templates.php:
|
1123 |
msgid "April"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: core/helpers/helper-form-templates.php:
|
1127 |
msgid "May"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: core/helpers/helper-form-templates.php:
|
1131 |
msgid "June"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: core/helpers/helper-form-templates.php:
|
1135 |
msgid "July"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: core/helpers/helper-form-templates.php:
|
1139 |
msgid "August"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: core/helpers/helper-form-templates.php:
|
1143 |
msgid "September"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: core/helpers/helper-form-templates.php:
|
1147 |
msgid "October"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: core/helpers/helper-form-templates.php:
|
1151 |
msgid "November"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: core/helpers/helper-form-templates.php:
|
1155 |
msgid "December"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: core/helpers/helper-form-templates.php:
|
1159 |
msgid "Andorra"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: core/helpers/helper-form-templates.php:
|
1163 |
msgid "United Arab Emirates"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: core/helpers/helper-form-templates.php:
|
1167 |
msgid "Afghanistan"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: core/helpers/helper-form-templates.php:
|
1171 |
msgid "Antigua and Barbuda"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: core/helpers/helper-form-templates.php:
|
1175 |
msgid "Anguilla"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: core/helpers/helper-form-templates.php:
|
1179 |
msgid "Albania"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: core/helpers/helper-form-templates.php:
|
1183 |
msgid "Armenia"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: core/helpers/helper-form-templates.php:
|
1187 |
msgid "Angola"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: core/helpers/helper-form-templates.php:
|
1191 |
msgid "Antarctica"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: core/helpers/helper-form-templates.php:
|
1195 |
msgid "Argentina"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: core/helpers/helper-form-templates.php:
|
1199 |
msgid "American Samoa"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: core/helpers/helper-form-templates.php:
|
1203 |
msgid "Austria"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: core/helpers/helper-form-templates.php:
|
1207 |
msgid "Australia"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: core/helpers/helper-form-templates.php:
|
1211 |
msgid "Aruba"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: core/helpers/helper-form-templates.php:
|
1215 |
msgid "Azerbaijan"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: core/helpers/helper-form-templates.php:
|
1219 |
msgid "Bosnia and Herzegovina"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: core/helpers/helper-form-templates.php:
|
1223 |
msgid "Barbados"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: core/helpers/helper-form-templates.php:
|
1227 |
msgid "Bangladesh"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: core/helpers/helper-form-templates.php:
|
1231 |
msgid "Belgium"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: core/helpers/helper-form-templates.php:
|
1235 |
msgid "Burkina Faso"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: core/helpers/helper-form-templates.php:
|
1239 |
msgid "Bulgaria"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: core/helpers/helper-form-templates.php:
|
1243 |
msgid "Bahrain"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: core/helpers/helper-form-templates.php:
|
1247 |
msgid "Burundi"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: core/helpers/helper-form-templates.php:
|
1251 |
msgid "Benin"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: core/helpers/helper-form-templates.php:
|
1255 |
msgid "Saint Barthelemy"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: core/helpers/helper-form-templates.php:
|
1259 |
msgid "Bermuda"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: core/helpers/helper-form-templates.php:
|
1263 |
msgid "Brunei Darussalam"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: core/helpers/helper-form-templates.php:
|
1267 |
msgid "Bolivia"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: core/helpers/helper-form-templates.php:
|
1271 |
msgid "Brazil"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: core/helpers/helper-form-templates.php:
|
1275 |
msgid "Bahamas"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: core/helpers/helper-form-templates.php:
|
1279 |
msgid "Bhutan"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: core/helpers/helper-form-templates.php:
|
1283 |
msgid "Botswana"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: core/helpers/helper-form-templates.php:
|
1287 |
msgid "Belarus"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: core/helpers/helper-form-templates.php:
|
1291 |
msgid "Belize"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: core/helpers/helper-form-templates.php:
|
1295 |
msgid "Canada"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: core/helpers/helper-form-templates.php:
|
1299 |
msgid "Congo, The Democratic Republic of the"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: core/helpers/helper-form-templates.php:
|
1303 |
msgid "Central African Republic"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: core/helpers/helper-form-templates.php:
|
1307 |
msgid "Congo"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: core/helpers/helper-form-templates.php:
|
1311 |
msgid "Switzerland"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: core/helpers/helper-form-templates.php:
|
1315 |
msgid "Cook Islands"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: core/helpers/helper-form-templates.php:
|
1319 |
msgid "Chile"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: core/helpers/helper-form-templates.php:
|
1323 |
msgid "Cameroon"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: core/helpers/helper-form-templates.php:
|
1327 |
msgid "China"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: core/helpers/helper-form-templates.php:
|
1331 |
msgid "Colombia"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: core/helpers/helper-form-templates.php:
|
1335 |
msgid "Costa Rica"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: core/helpers/helper-form-templates.php:
|
1339 |
msgid "Cuba"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: core/helpers/helper-form-templates.php:
|
1343 |
msgid "Cape Verde"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: core/helpers/helper-form-templates.php:
|
1347 |
msgid "Cyprus"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: core/helpers/helper-form-templates.php:
|
1351 |
msgid "Czech Republic"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: core/helpers/helper-form-templates.php:
|
1355 |
msgid "Germany"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: core/helpers/helper-form-templates.php:
|
1359 |
msgid "Djibouti"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: core/helpers/helper-form-templates.php:
|
1363 |
msgid "Denmark"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: core/helpers/helper-form-templates.php:
|
1367 |
msgid "Dominica"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: core/helpers/helper-form-templates.php:
|
1371 |
msgid "Dominican Republic"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: core/helpers/helper-form-templates.php:
|
1375 |
msgid "Algeria"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: core/helpers/helper-form-templates.php:
|
1379 |
msgid "Ecuador"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: core/helpers/helper-form-templates.php:
|
1383 |
msgid "Estonia"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: core/helpers/helper-form-templates.php:
|
1387 |
msgid "Egypt"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: core/helpers/helper-form-templates.php:
|
1391 |
msgid "Eritrea"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: core/helpers/helper-form-templates.php:
|
1395 |
msgid "Spain"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: core/helpers/helper-form-templates.php:
|
1399 |
msgid "Ethiopia"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: core/helpers/helper-form-templates.php:
|
1403 |
msgid "Finland"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: core/helpers/helper-form-templates.php:
|
1407 |
msgid "Fiji"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: core/helpers/helper-form-templates.php:
|
1411 |
msgid "Falkland Islands (Malvinas)"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: core/helpers/helper-form-templates.php:
|
1415 |
msgid "Micronesia, Federated States of"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: core/helpers/helper-form-templates.php:
|
1419 |
msgid "Faroe Islands"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: core/helpers/helper-form-templates.php:
|
1423 |
msgid "France"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: core/helpers/helper-form-templates.php:
|
1427 |
msgid "Gabon"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: core/helpers/helper-form-templates.php:
|
1431 |
msgid "United Kingdom"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: core/helpers/helper-form-templates.php:
|
1435 |
msgid "Grenada"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: core/helpers/helper-form-templates.php:
|
1439 |
msgid "Georgia"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: core/helpers/helper-form-templates.php:
|
1443 |
msgid "Ghana"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: core/helpers/helper-form-templates.php:
|
1447 |
msgid "Gibraltar"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: core/helpers/helper-form-templates.php:
|
1451 |
msgid "Greenland"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: core/helpers/helper-form-templates.php:
|
1455 |
msgid "Gambia"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: core/helpers/helper-form-templates.php:
|
1459 |
msgid "Guinea"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: core/helpers/helper-form-templates.php:
|
1463 |
msgid "Greece"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: core/helpers/helper-form-templates.php:
|
1467 |
msgid "Guatemala"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: core/helpers/helper-form-templates.php:
|
1471 |
msgid "Guam"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: core/helpers/helper-form-templates.php:
|
1475 |
msgid "Guinea-bissau"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: core/helpers/helper-form-templates.php:
|
1479 |
msgid "Guyana"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: core/helpers/helper-form-templates.php:
|
1483 |
msgid "Hong Kong"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: core/helpers/helper-form-templates.php:
|
1487 |
msgid "Honduras"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: core/helpers/helper-form-templates.php:
|
1491 |
msgid "Croatia"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: core/helpers/helper-form-templates.php:
|
1495 |
msgid "Haiti"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: core/helpers/helper-form-templates.php:
|
1499 |
msgid "Hungary"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: core/helpers/helper-form-templates.php:
|
1503 |
msgid "Indonesia"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: core/helpers/helper-form-templates.php:
|
1507 |
msgid "Ireland"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: core/helpers/helper-form-templates.php:
|
1511 |
msgid "Israel"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: core/helpers/helper-form-templates.php:
|
1515 |
msgid "India"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: core/helpers/helper-form-templates.php:
|
1519 |
msgid "Iraq"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: core/helpers/helper-form-templates.php:
|
1523 |
msgid "Iran, Islamic Republic of"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: core/helpers/helper-form-templates.php:
|
1527 |
msgid "Iceland"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: core/helpers/helper-form-templates.php:
|
1531 |
msgid "Italy"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: core/helpers/helper-form-templates.php:
|
1535 |
msgid "Jamaica"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: core/helpers/helper-form-templates.php:
|
1539 |
msgid "Jordan"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: core/helpers/helper-form-templates.php:
|
1543 |
msgid "Japan"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: core/helpers/helper-form-templates.php:
|
1547 |
msgid "Kenya"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: core/helpers/helper-form-templates.php:
|
1551 |
msgid "Kyrgyzstan"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: core/helpers/helper-form-templates.php:
|
1555 |
msgid "Cambodia"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: core/helpers/helper-form-templates.php:
|
1559 |
msgid "Kiribati"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: core/helpers/helper-form-templates.php:
|
1563 |
msgid "Comoros"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: core/helpers/helper-form-templates.php:
|
1567 |
msgid "Saint Kitts and Nevis"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: core/helpers/helper-form-templates.php:
|
1571 |
msgid "Korea Democratic Peoples Republic of"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: core/helpers/helper-form-templates.php:
|
1575 |
msgid "Korea Republic of"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: core/helpers/helper-form-templates.php:
|
1579 |
msgid "Kuwait"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: core/helpers/helper-form-templates.php:
|
1583 |
msgid "Cayman Islands"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: core/helpers/helper-form-templates.php:
|
1587 |
msgid "Lao Peoples Democratic Republic"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: core/helpers/helper-form-templates.php:
|
1591 |
msgid "Lebanon"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: core/helpers/helper-form-templates.php:
|
1595 |
msgid "Saint Lucia"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: core/helpers/helper-form-templates.php:
|
1599 |
msgid "Liechtenstein"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: core/helpers/helper-form-templates.php:
|
1603 |
msgid "Sri Lanka"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: core/helpers/helper-form-templates.php:
|
1607 |
msgid "Liberia"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: core/helpers/helper-form-templates.php:
|
1611 |
msgid "Lesotho"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: core/helpers/helper-form-templates.php:
|
1615 |
msgid "Lithuania"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: core/helpers/helper-form-templates.php:
|
1619 |
msgid "Luxembourg"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: core/helpers/helper-form-templates.php:
|
1623 |
msgid "Latvia"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: core/helpers/helper-form-templates.php:
|
1627 |
msgid "Libyan Arab Jamahiriya"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: core/helpers/helper-form-templates.php:
|
1631 |
msgid "Morocco"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: core/helpers/helper-form-templates.php:
|
1635 |
msgid "Monaco"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: core/helpers/helper-form-templates.php:
|
1639 |
msgid "Moldova, Republic of"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: core/helpers/helper-form-templates.php:
|
1643 |
msgid "Montenegro"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: core/helpers/helper-form-templates.php:
|
1647 |
msgid "Madagascar"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: core/helpers/helper-form-templates.php:
|
1651 |
msgid "Marshall Islands"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: core/helpers/helper-form-templates.php:
|
1655 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: core/helpers/helper-form-templates.php:
|
1659 |
msgid "Mali"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: core/helpers/helper-form-templates.php:
|
1663 |
msgid "Myanmar"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: core/helpers/helper-form-templates.php:
|
1667 |
msgid "Mongolia"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: core/helpers/helper-form-templates.php:
|
1671 |
msgid "Macau"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: core/helpers/helper-form-templates.php:
|
1675 |
msgid "Northern Mariana Islands"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: core/helpers/helper-form-templates.php:
|
1679 |
msgid "Mauritania"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: core/helpers/helper-form-templates.php:
|
1683 |
msgid "Montserrat"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: core/helpers/helper-form-templates.php:
|
1687 |
msgid "Malta"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: core/helpers/helper-form-templates.php:
|
1691 |
msgid "Mauritius"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: core/helpers/helper-form-templates.php:
|
1695 |
msgid "Maldives"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: core/helpers/helper-form-templates.php:
|
1699 |
msgid "Malawi"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: core/helpers/helper-form-templates.php:
|
1703 |
msgid "Mexico"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: core/helpers/helper-form-templates.php:
|
1707 |
msgid "Malaysia"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: core/helpers/helper-form-templates.php:
|
1711 |
msgid "Mozambique"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: core/helpers/helper-form-templates.php:
|
1715 |
msgid "Namibia"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: core/helpers/helper-form-templates.php:
|
1719 |
msgid "New Caledonia"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: core/helpers/helper-form-templates.php:
|
1723 |
msgid "Niger"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: core/helpers/helper-form-templates.php:
|
1727 |
msgid "Nigeria"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: core/helpers/helper-form-templates.php:
|
1731 |
msgid "Nicaragua"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: core/helpers/helper-form-templates.php:
|
1735 |
msgid "Netherlands"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: core/helpers/helper-form-templates.php:
|
1739 |
msgid "Norway"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: core/helpers/helper-form-templates.php:
|
1743 |
msgid "Nepal"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: core/helpers/helper-form-templates.php:
|
1747 |
msgid "Nauru"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: core/helpers/helper-form-templates.php:
|
1751 |
msgid "Niue"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: core/helpers/helper-form-templates.php:
|
1755 |
msgid "New Zealand"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: core/helpers/helper-form-templates.php:
|
1759 |
msgid "Oman"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: core/helpers/helper-form-templates.php:
|
1763 |
msgid "Panama"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: core/helpers/helper-form-templates.php:
|
1767 |
msgid "Peru"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: core/helpers/helper-form-templates.php:
|
1771 |
msgid "French Polynesia"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: core/helpers/helper-form-templates.php:
|
1775 |
msgid "Papua New Guinea"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: core/helpers/helper-form-templates.php:
|
1779 |
msgid "Philippines"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: core/helpers/helper-form-templates.php:
|
1783 |
msgid "Pakistan"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: core/helpers/helper-form-templates.php:
|
1787 |
msgid "Poland"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: core/helpers/helper-form-templates.php:
|
1791 |
msgid "Saint Pierre and Miquelon"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: core/helpers/helper-form-templates.php:
|
1795 |
msgid "Pitcairn"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: core/helpers/helper-form-templates.php:
|
1799 |
msgid "Portugal"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: core/helpers/helper-form-templates.php:
|
1803 |
msgid "Palau"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: core/helpers/helper-form-templates.php:
|
1807 |
msgid "Paraguay"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: core/helpers/helper-form-templates.php:
|
1811 |
msgid "Qatar"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: core/helpers/helper-form-templates.php:
|
1815 |
msgid "Romania"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: core/helpers/helper-form-templates.php:
|
1819 |
msgid "Serbia"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: core/helpers/helper-form-templates.php:
|
1823 |
msgid "Russian Federation"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: core/helpers/helper-form-templates.php:
|
1827 |
msgid "Rwanda"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: core/helpers/helper-form-templates.php:
|
1831 |
msgid "Saudi Arabia"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: core/helpers/helper-form-templates.php:
|
1835 |
msgid "Solomon Islands"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: core/helpers/helper-form-templates.php:
|
1839 |
msgid "Seychelles"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: core/helpers/helper-form-templates.php:
|
1843 |
msgid "Sudan"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: core/helpers/helper-form-templates.php:
|
1847 |
msgid "Sweden"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: core/helpers/helper-form-templates.php:
|
1851 |
msgid "Singapore"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: core/helpers/helper-form-templates.php:
|
1855 |
msgid "Saint Helena"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: core/helpers/helper-form-templates.php:
|
1859 |
msgid "Slovenia"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: core/helpers/helper-form-templates.php:
|
1863 |
msgid "Slovakia"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: core/helpers/helper-form-templates.php:
|
1867 |
msgid "Sierra Leone"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: core/helpers/helper-form-templates.php:
|
1871 |
msgid "San Marino"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: core/helpers/helper-form-templates.php:
|
1875 |
msgid "Senegal"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: core/helpers/helper-form-templates.php:
|
1879 |
msgid "Somalia"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: core/helpers/helper-form-templates.php:
|
1883 |
msgid "Suriname"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: core/helpers/helper-form-templates.php:
|
1887 |
msgid "Sao Tome and Principe"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: core/helpers/helper-form-templates.php:
|
1891 |
msgid "El Salvador"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: core/helpers/helper-form-templates.php:
|
1895 |
msgid "Syrian Arab Republic"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: core/helpers/helper-form-templates.php:
|
1899 |
msgid "Swaziland"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: core/helpers/helper-form-templates.php:
|
1903 |
msgid "Turks and Caicos Islands"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: core/helpers/helper-form-templates.php:
|
1907 |
msgid "Chad"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: core/helpers/helper-form-templates.php:
|
1911 |
msgid "Togo"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: core/helpers/helper-form-templates.php:
|
1915 |
msgid "Thailand"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: core/helpers/helper-form-templates.php:
|
1919 |
msgid "Tajikistan"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: core/helpers/helper-form-templates.php:
|
1923 |
msgid "Tokelau"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: core/helpers/helper-form-templates.php:
|
1927 |
msgid "Timor-leste"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: core/helpers/helper-form-templates.php:
|
1931 |
msgid "Turkmenistan"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: core/helpers/helper-form-templates.php:
|
1935 |
msgid "Tunisia"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: core/helpers/helper-form-templates.php:
|
1939 |
msgid "Tonga"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: core/helpers/helper-form-templates.php:
|
1943 |
msgid "Turkey"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: core/helpers/helper-form-templates.php:
|
1947 |
msgid "Trinidad and Tobago"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: core/helpers/helper-form-templates.php:
|
1951 |
msgid "Tuvalu"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: core/helpers/helper-form-templates.php:
|
1955 |
msgid "Taiwan, Province of China"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: core/helpers/helper-form-templates.php:
|
1959 |
msgid "Tanzania, United Republic of"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: core/helpers/helper-form-templates.php:
|
1963 |
msgid "Ukraine"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: core/helpers/helper-form-templates.php:
|
1967 |
msgid "Uganda"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: core/helpers/helper-form-templates.php:
|
1971 |
msgid "United States"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: core/helpers/helper-form-templates.php:
|
1975 |
msgid "Uruguay"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: core/helpers/helper-form-templates.php:
|
1979 |
msgid "Uzbekistan"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: core/helpers/helper-form-templates.php:
|
1983 |
msgid "Saint Vincent and the Grenadines"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: core/helpers/helper-form-templates.php:
|
1987 |
msgid "Venezuela"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: core/helpers/helper-form-templates.php:
|
1991 |
msgid "Virgin Islands, British"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: core/helpers/helper-form-templates.php:
|
1995 |
msgid "Virgin Islands, U.S."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: core/helpers/helper-form-templates.php:
|
1999 |
msgid "Vietnam"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: core/helpers/helper-form-templates.php:
|
2003 |
msgid "Vanuatu"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: core/helpers/helper-form-templates.php:
|
2007 |
msgid "Wallis and Futuna"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: core/helpers/helper-form-templates.php:
|
2011 |
msgid "Samoa"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: core/helpers/helper-form-templates.php:
|
2015 |
msgid "Yemen"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: core/helpers/helper-form-templates.php:
|
2019 |
msgid "Mayotte"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: core/helpers/helper-form-templates.php:
|
2023 |
msgid "South Africa"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: core/helpers/helper-form-templates.php:
|
2027 |
msgid "Zambia"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: core/helpers/helper-form-templates.php:
|
2031 |
msgid "Zimbabwe"
|
2032 |
msgstr ""
|
2033 |
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: HappyForms 1.9.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2020-01-22 12:52:11+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
531 |
msgid "Below form"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: core/classes/class-form-styles.php:531
|
535 |
msgid "General"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: core/classes/class-form-styles.php:536
|
539 |
+
#: core/classes/class-form-styles.php:846 core/helpers/helper-misc.php:899
|
540 |
#: core/templates/parts/customize-checkbox.php:85
|
541 |
msgid "Width"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: core/classes/class-form-styles.php:541
|
545 |
+
#: core/classes/class-form-styles.php:851
|
546 |
msgid "Padding"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: core/classes/class-form-styles.php:546
|
550 |
msgid "Direction"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: core/classes/class-form-styles.php:551
|
554 |
msgid "Display notices"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: core/classes/class-form-styles.php:557
|
558 |
+
#: core/classes/class-form-styles.php:642
|
559 |
+
#: core/classes/class-form-styles.php:712
|
560 |
+
#: core/classes/class-form-styles.php:877
|
561 |
msgid "Colors"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: core/classes/class-form-styles.php:561
|
565 |
msgid "Primary"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: core/classes/class-form-styles.php:566
|
569 |
msgid "Success notice"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: core/classes/class-form-styles.php:571
|
573 |
msgid "Success notice text"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: core/classes/class-form-styles.php:576
|
577 |
msgid "Error"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: core/classes/class-form-styles.php:581
|
581 |
msgid "Error notice"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: core/classes/class-form-styles.php:586
|
585 |
msgid "Error notice text"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: core/classes/class-form-styles.php:591
|
589 |
+
#: core/classes/class-form-styles.php:716
|
590 |
#: core/templates/customize-form-build.php:4
|
591 |
#: inc/classes/parts/class-part-title-dummy.php:8
|
592 |
msgid "Title"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: core/classes/class-form-styles.php:596
|
596 |
msgid "Display"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: core/classes/class-form-styles.php:601
|
600 |
+
#: core/classes/class-form-styles.php:866
|
601 |
msgid "Alignment"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: core/classes/class-form-styles.php:606
|
605 |
+
#: core/classes/class-form-styles.php:856
|
606 |
msgid "Font size"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: core/classes/class-form-styles.php:611
|
610 |
msgid "Part borders & spacing"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: core/classes/class-form-styles.php:616
|
614 |
+
#: core/classes/class-form-styles.php:646
|
615 |
+
#: core/classes/class-form-styles.php:836
|
616 |
+
#: core/classes/class-form-styles.php:891
|
617 |
msgid "Border"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: core/classes/class-form-styles.php:621
|
621 |
msgid "Border location"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: core/classes/class-form-styles.php:626
|
625 |
+
#: core/classes/class-form-styles.php:841
|
626 |
msgid "Border radius"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: core/classes/class-form-styles.php:631
|
630 |
msgid "Outer spacing"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: core/classes/class-form-styles.php:636
|
634 |
msgid "Inner spacing"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: core/classes/class-form-styles.php:651
|
638 |
msgid "Border on focus"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: core/classes/class-form-styles.php:656
|
642 |
+
#: core/classes/class-form-styles.php:741
|
643 |
+
#: core/classes/class-form-styles.php:766
|
644 |
+
#: core/classes/class-form-styles.php:881
|
645 |
msgid "Background"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: core/classes/class-form-styles.php:661
|
649 |
+
#: core/classes/class-form-styles.php:751
|
650 |
+
#: core/classes/class-form-styles.php:771
|
651 |
+
#: core/classes/class-form-styles.php:886
|
652 |
msgid "Background on focus"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: core/classes/class-form-styles.php:666
|
656 |
msgid "Part labels & text"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: core/classes/class-form-styles.php:671
|
660 |
msgid "Toggle placeholder on part focus"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: core/classes/class-form-styles.php:676
|
664 |
msgid "Title alignment"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: core/classes/class-form-styles.php:681
|
668 |
msgid "Title font size"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: core/classes/class-form-styles.php:686
|
672 |
msgid "Title font weight"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: core/classes/class-form-styles.php:691
|
676 |
msgid "Description alignment"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: core/classes/class-form-styles.php:696
|
680 |
msgid "Description font size"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: core/classes/class-form-styles.php:701
|
684 |
msgid "Placeholder & value alignment"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: core/classes/class-form-styles.php:706
|
688 |
msgid "Value font size"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: core/classes/class-form-styles.php:721
|
692 |
msgid "Value"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: core/classes/class-form-styles.php:726
|
696 |
#: core/templates/parts/customize-email.php:30
|
697 |
#: core/templates/parts/customize-multi-line-text.php:30
|
698 |
#: core/templates/parts/customize-number.php:30
|
702 |
msgid "Placeholder"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: core/classes/class-form-styles.php:731
|
706 |
msgid "Dropdowns"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: core/classes/class-form-styles.php:737
|
710 |
msgid "Items"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: core/classes/class-form-styles.php:746
|
714 |
+
#: core/classes/class-form-styles.php:896
|
715 |
msgid "Text"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: core/classes/class-form-styles.php:756
|
719 |
msgid "Text focused"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: core/classes/class-form-styles.php:761
|
723 |
msgid "Checkboxes & Radios"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: core/classes/class-form-styles.php:776
|
727 |
msgid "Checkmark"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: core/classes/class-form-styles.php:781
|
731 |
#: inc/classes/parts/class-part-rating-dummy.php:8
|
732 |
msgid "Rating"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: core/classes/class-form-styles.php:786
|
736 |
msgid "Rating star color"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: core/classes/class-form-styles.php:791
|
740 |
msgid "Rating star color on hover"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: core/classes/class-form-styles.php:796
|
744 |
msgid "Item background"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: core/classes/class-form-styles.php:801
|
748 |
msgid "Item background on hover"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: core/classes/class-form-styles.php:806
|
752 |
msgid "Tables"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: core/classes/class-form-styles.php:811
|
756 |
msgid "Odd row primary"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: core/classes/class-form-styles.php:816
|
760 |
msgid "Odd row secondary"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: core/classes/class-form-styles.php:821
|
764 |
msgid "Even row primary"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: core/classes/class-form-styles.php:826
|
768 |
msgid "Even row secondary"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: core/classes/class-form-styles.php:831
|
772 |
msgid "Submit button"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: core/classes/class-form-styles.php:861
|
776 |
msgid "Font weight"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: core/classes/class-form-styles.php:871
|
780 |
msgid "Make button a part of last input"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: core/classes/class-form-styles.php:901
|
784 |
msgid "Text on focus"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: core/classes/class-form-styles.php:913
|
788 |
+
msgid "Add your own CSS code here to customize the appearance of your form."
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: core/classes/class-form-styles.php:915
|
792 |
+
msgid ""
|
793 |
+
"For each rule you add, we'll prepend your form's HTML ID. This makes sure "
|
794 |
+
"all styles added will only apply to this form. For example %s becomes %s."
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: core/classes/class-form-styles.php:923
|
798 |
+
msgid ""
|
799 |
+
"The edit field automatically highlights code syntax. You can disable this "
|
800 |
+
"in your <a href=\"%s\" class=\"%s\" target=\"_blank\">user profile</a> to "
|
801 |
+
"work in plain text mode."
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: core/classes/class-form-styles.php:931
|
805 |
+
#: core/classes/class-form-styles.php:941
|
806 |
+
msgid "Additional CSS"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
#: core/classes/class-happyforms-core.php:163
|
810 |
msgid "HappyForms Index"
|
811 |
msgstr ""
|
1121 |
msgid "Spam protection, skip this field"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: core/helpers/helper-form-templates.php:953
|
1125 |
msgid "Get my location"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: core/helpers/helper-form-templates.php:953
|
1129 |
msgid "Fetching location…"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: core/helpers/helper-form-templates.php:963
|
1133 |
msgid "January"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: core/helpers/helper-form-templates.php:964
|
1137 |
msgid "February"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: core/helpers/helper-form-templates.php:965
|
1141 |
msgid "March"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: core/helpers/helper-form-templates.php:966
|
1145 |
msgid "April"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: core/helpers/helper-form-templates.php:967
|
1149 |
msgid "May"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: core/helpers/helper-form-templates.php:968
|
1153 |
msgid "June"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: core/helpers/helper-form-templates.php:969
|
1157 |
msgid "July"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: core/helpers/helper-form-templates.php:970
|
1161 |
msgid "August"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: core/helpers/helper-form-templates.php:971
|
1165 |
msgid "September"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: core/helpers/helper-form-templates.php:972
|
1169 |
msgid "October"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: core/helpers/helper-form-templates.php:973
|
1173 |
msgid "November"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: core/helpers/helper-form-templates.php:974
|
1177 |
msgid "December"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: core/helpers/helper-form-templates.php:1015 core/helpers/helper-misc.php:218
|
1181 |
msgid "Andorra"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: core/helpers/helper-form-templates.php:1016 core/helpers/helper-misc.php:436
|
1185 |
msgid "United Arab Emirates"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: core/helpers/helper-form-templates.php:1017 core/helpers/helper-misc.php:214
|
1189 |
msgid "Afghanistan"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: core/helpers/helper-form-templates.php:1018 core/helpers/helper-misc.php:222
|
1193 |
msgid "Antigua and Barbuda"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: core/helpers/helper-form-templates.php:1019 core/helpers/helper-misc.php:220
|
1197 |
msgid "Anguilla"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: core/helpers/helper-form-templates.php:1020 core/helpers/helper-misc.php:215
|
1201 |
msgid "Albania"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: core/helpers/helper-form-templates.php:1021 core/helpers/helper-misc.php:224
|
1205 |
msgid "Armenia"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: core/helpers/helper-form-templates.php:1022 core/helpers/helper-misc.php:219
|
1209 |
msgid "Angola"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: core/helpers/helper-form-templates.php:1023 core/helpers/helper-misc.php:221
|
1213 |
msgid "Antarctica"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: core/helpers/helper-form-templates.php:1024 core/helpers/helper-misc.php:223
|
1217 |
msgid "Argentina"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: core/helpers/helper-form-templates.php:1025 core/helpers/helper-misc.php:217
|
1221 |
msgid "American Samoa"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: core/helpers/helper-form-templates.php:1026 core/helpers/helper-misc.php:227
|
1225 |
msgid "Austria"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: core/helpers/helper-form-templates.php:1027 core/helpers/helper-misc.php:226
|
1229 |
msgid "Australia"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: core/helpers/helper-form-templates.php:1028 core/helpers/helper-misc.php:225
|
1233 |
msgid "Aruba"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: core/helpers/helper-form-templates.php:1029 core/helpers/helper-misc.php:228
|
1237 |
msgid "Azerbaijan"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: core/helpers/helper-form-templates.php:1030
|
1241 |
msgid "Bosnia and Herzegovina"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: core/helpers/helper-form-templates.php:1031 core/helpers/helper-misc.php:232
|
1245 |
msgid "Barbados"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: core/helpers/helper-form-templates.php:1032 core/helpers/helper-misc.php:231
|
1249 |
msgid "Bangladesh"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: core/helpers/helper-form-templates.php:1033 core/helpers/helper-misc.php:234
|
1253 |
msgid "Belgium"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: core/helpers/helper-form-templates.php:1034 core/helpers/helper-misc.php:247
|
1257 |
msgid "Burkina Faso"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: core/helpers/helper-form-templates.php:1035 core/helpers/helper-misc.php:246
|
1261 |
msgid "Bulgaria"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: core/helpers/helper-form-templates.php:1036 core/helpers/helper-misc.php:230
|
1265 |
msgid "Bahrain"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: core/helpers/helper-form-templates.php:1037 core/helpers/helper-misc.php:248
|
1269 |
msgid "Burundi"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: core/helpers/helper-form-templates.php:1038 core/helpers/helper-misc.php:236
|
1273 |
msgid "Benin"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: core/helpers/helper-form-templates.php:1039
|
1277 |
msgid "Saint Barthelemy"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: core/helpers/helper-form-templates.php:1040 core/helpers/helper-misc.php:237
|
1281 |
msgid "Bermuda"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: core/helpers/helper-form-templates.php:1041 core/helpers/helper-misc.php:245
|
1285 |
msgid "Brunei Darussalam"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: core/helpers/helper-form-templates.php:1042 core/helpers/helper-misc.php:239
|
1289 |
msgid "Bolivia"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: core/helpers/helper-form-templates.php:1043 core/helpers/helper-misc.php:243
|
1293 |
msgid "Brazil"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: core/helpers/helper-form-templates.php:1044 core/helpers/helper-misc.php:229
|
1297 |
msgid "Bahamas"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: core/helpers/helper-form-templates.php:1045 core/helpers/helper-misc.php:238
|
1301 |
msgid "Bhutan"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: core/helpers/helper-form-templates.php:1046 core/helpers/helper-misc.php:241
|
1305 |
msgid "Botswana"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: core/helpers/helper-form-templates.php:1047 core/helpers/helper-misc.php:233
|
1309 |
msgid "Belarus"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: core/helpers/helper-form-templates.php:1048 core/helpers/helper-misc.php:235
|
1313 |
msgid "Belize"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: core/helpers/helper-form-templates.php:1049 core/helpers/helper-misc.php:251
|
1317 |
msgid "Canada"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: core/helpers/helper-form-templates.php:1050
|
1321 |
msgid "Congo, The Democratic Republic of the"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: core/helpers/helper-form-templates.php:1051 core/helpers/helper-misc.php:254
|
1325 |
msgid "Central African Republic"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: core/helpers/helper-form-templates.php:1052 core/helpers/helper-misc.php:262
|
1329 |
msgid "Congo"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: core/helpers/helper-form-templates.php:1053 core/helpers/helper-misc.php:419
|
1333 |
msgid "Switzerland"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: core/helpers/helper-form-templates.php:1054 core/helpers/helper-misc.php:264
|
1337 |
msgid "Cook Islands"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: core/helpers/helper-form-templates.php:1055 core/helpers/helper-misc.php:256
|
1341 |
msgid "Chile"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: core/helpers/helper-form-templates.php:1056 core/helpers/helper-misc.php:250
|
1345 |
msgid "Cameroon"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: core/helpers/helper-form-templates.php:1057 core/helpers/helper-misc.php:257
|
1349 |
msgid "China"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: core/helpers/helper-form-templates.php:1058 core/helpers/helper-misc.php:260
|
1353 |
msgid "Colombia"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: core/helpers/helper-form-templates.php:1059 core/helpers/helper-misc.php:265
|
1357 |
msgid "Costa Rica"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: core/helpers/helper-form-templates.php:1060 core/helpers/helper-misc.php:268
|
1361 |
msgid "Cuba"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: core/helpers/helper-form-templates.php:1061 core/helpers/helper-misc.php:252
|
1365 |
msgid "Cape Verde"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: core/helpers/helper-form-templates.php:1062 core/helpers/helper-misc.php:269
|
1369 |
msgid "Cyprus"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: core/helpers/helper-form-templates.php:1063 core/helpers/helper-misc.php:270
|
1373 |
msgid "Czech Republic"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: core/helpers/helper-form-templates.php:1064 core/helpers/helper-misc.php:295
|
1377 |
msgid "Germany"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: core/helpers/helper-form-templates.php:1065 core/helpers/helper-misc.php:272
|
1381 |
msgid "Djibouti"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: core/helpers/helper-form-templates.php:1066 core/helpers/helper-misc.php:271
|
1385 |
msgid "Denmark"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: core/helpers/helper-form-templates.php:1067 core/helpers/helper-misc.php:273
|
1389 |
msgid "Dominica"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: core/helpers/helper-form-templates.php:1068 core/helpers/helper-misc.php:274
|
1393 |
msgid "Dominican Republic"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: core/helpers/helper-form-templates.php:1069 core/helpers/helper-misc.php:216
|
1397 |
msgid "Algeria"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: core/helpers/helper-form-templates.php:1070 core/helpers/helper-misc.php:276
|
1401 |
msgid "Ecuador"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: core/helpers/helper-form-templates.php:1071 core/helpers/helper-misc.php:281
|
1405 |
msgid "Estonia"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: core/helpers/helper-form-templates.php:1072 core/helpers/helper-misc.php:277
|
1409 |
msgid "Egypt"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: core/helpers/helper-form-templates.php:1073 core/helpers/helper-misc.php:280
|
1413 |
msgid "Eritrea"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: core/helpers/helper-form-templates.php:1074 core/helpers/helper-misc.php:410
|
1417 |
msgid "Spain"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: core/helpers/helper-form-templates.php:1075 core/helpers/helper-misc.php:282
|
1421 |
msgid "Ethiopia"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: core/helpers/helper-form-templates.php:1076 core/helpers/helper-misc.php:286
|
1425 |
msgid "Finland"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: core/helpers/helper-form-templates.php:1077 core/helpers/helper-misc.php:285
|
1429 |
msgid "Fiji"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: core/helpers/helper-form-templates.php:1078 core/helpers/helper-misc.php:283
|
1433 |
msgid "Falkland Islands (Malvinas)"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: core/helpers/helper-form-templates.php:1079 core/helpers/helper-misc.php:354
|
1437 |
msgid "Micronesia, Federated States of"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: core/helpers/helper-form-templates.php:1080 core/helpers/helper-misc.php:284
|
1441 |
msgid "Faroe Islands"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: core/helpers/helper-form-templates.php:1081 core/helpers/helper-misc.php:287
|
1445 |
msgid "France"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: core/helpers/helper-form-templates.php:1082 core/helpers/helper-misc.php:292
|
1449 |
msgid "Gabon"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: core/helpers/helper-form-templates.php:1083 core/helpers/helper-misc.php:437
|
1453 |
msgid "United Kingdom"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: core/helpers/helper-form-templates.php:1084 core/helpers/helper-misc.php:300
|
1457 |
msgid "Grenada"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: core/helpers/helper-form-templates.php:1085 core/helpers/helper-misc.php:294
|
1461 |
msgid "Georgia"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: core/helpers/helper-form-templates.php:1086 core/helpers/helper-misc.php:296
|
1465 |
msgid "Ghana"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: core/helpers/helper-form-templates.php:1087 core/helpers/helper-misc.php:297
|
1469 |
msgid "Gibraltar"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: core/helpers/helper-form-templates.php:1088 core/helpers/helper-misc.php:299
|
1473 |
msgid "Greenland"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: core/helpers/helper-form-templates.php:1089 core/helpers/helper-misc.php:293
|
1477 |
msgid "Gambia"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: core/helpers/helper-form-templates.php:1090 core/helpers/helper-misc.php:304
|
1481 |
msgid "Guinea"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: core/helpers/helper-form-templates.php:1091 core/helpers/helper-misc.php:298
|
1485 |
msgid "Greece"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: core/helpers/helper-form-templates.php:1092 core/helpers/helper-misc.php:303
|
1489 |
msgid "Guatemala"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: core/helpers/helper-form-templates.php:1093 core/helpers/helper-misc.php:302
|
1493 |
msgid "Guam"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: core/helpers/helper-form-templates.php:1094
|
1497 |
msgid "Guinea-bissau"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: core/helpers/helper-form-templates.php:1095 core/helpers/helper-misc.php:306
|
1501 |
msgid "Guyana"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: core/helpers/helper-form-templates.php:1096 core/helpers/helper-misc.php:311
|
1505 |
msgid "Hong Kong"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: core/helpers/helper-form-templates.php:1097 core/helpers/helper-misc.php:310
|
1509 |
msgid "Honduras"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: core/helpers/helper-form-templates.php:1098
|
1513 |
msgid "Croatia"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: core/helpers/helper-form-templates.php:1099 core/helpers/helper-misc.php:307
|
1517 |
msgid "Haiti"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: core/helpers/helper-form-templates.php:1100 core/helpers/helper-misc.php:312
|
1521 |
msgid "Hungary"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: core/helpers/helper-form-templates.php:1101 core/helpers/helper-misc.php:315
|
1525 |
msgid "Indonesia"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: core/helpers/helper-form-templates.php:1102 core/helpers/helper-misc.php:318
|
1529 |
msgid "Ireland"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: core/helpers/helper-form-templates.php:1103 core/helpers/helper-misc.php:319
|
1533 |
msgid "Israel"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: core/helpers/helper-form-templates.php:1104 core/helpers/helper-misc.php:314
|
1537 |
msgid "India"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: core/helpers/helper-form-templates.php:1105 core/helpers/helper-misc.php:317
|
1541 |
msgid "Iraq"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: core/helpers/helper-form-templates.php:1106
|
1545 |
msgid "Iran, Islamic Republic of"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: core/helpers/helper-form-templates.php:1107 core/helpers/helper-misc.php:313
|
1549 |
msgid "Iceland"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: core/helpers/helper-form-templates.php:1108 core/helpers/helper-misc.php:320
|
1553 |
msgid "Italy"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: core/helpers/helper-form-templates.php:1109 core/helpers/helper-misc.php:321
|
1557 |
msgid "Jamaica"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: core/helpers/helper-form-templates.php:1110 core/helpers/helper-misc.php:323
|
1561 |
msgid "Jordan"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: core/helpers/helper-form-templates.php:1111 core/helpers/helper-misc.php:322
|
1565 |
msgid "Japan"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: core/helpers/helper-form-templates.php:1112 core/helpers/helper-misc.php:325
|
1569 |
msgid "Kenya"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: core/helpers/helper-form-templates.php:1113 core/helpers/helper-misc.php:330
|
1573 |
msgid "Kyrgyzstan"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: core/helpers/helper-form-templates.php:1114 core/helpers/helper-misc.php:249
|
1577 |
msgid "Cambodia"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: core/helpers/helper-form-templates.php:1115 core/helpers/helper-misc.php:326
|
1581 |
msgid "Kiribati"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: core/helpers/helper-form-templates.php:1116 core/helpers/helper-misc.php:261
|
1585 |
msgid "Comoros"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: core/helpers/helper-form-templates.php:1117 core/helpers/helper-misc.php:393
|
1589 |
msgid "Saint Kitts and Nevis"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: core/helpers/helper-form-templates.php:1118
|
1593 |
msgid "Korea Democratic Peoples Republic of"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: core/helpers/helper-form-templates.php:1119
|
1597 |
msgid "Korea Republic of"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: core/helpers/helper-form-templates.php:1120 core/helpers/helper-misc.php:329
|
1601 |
msgid "Kuwait"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: core/helpers/helper-form-templates.php:1121 core/helpers/helper-misc.php:253
|
1605 |
msgid "Cayman Islands"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: core/helpers/helper-form-templates.php:1122
|
1609 |
msgid "Lao Peoples Democratic Republic"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: core/helpers/helper-form-templates.php:1123 core/helpers/helper-misc.php:333
|
1613 |
msgid "Lebanon"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: core/helpers/helper-form-templates.php:1124 core/helpers/helper-misc.php:394
|
1617 |
msgid "Saint Lucia"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: core/helpers/helper-form-templates.php:1125 core/helpers/helper-misc.php:337
|
1621 |
msgid "Liechtenstein"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: core/helpers/helper-form-templates.php:1126 core/helpers/helper-misc.php:411
|
1625 |
msgid "Sri Lanka"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: core/helpers/helper-form-templates.php:1127 core/helpers/helper-misc.php:335
|
1629 |
msgid "Liberia"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: core/helpers/helper-form-templates.php:1128 core/helpers/helper-misc.php:334
|
1633 |
msgid "Lesotho"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: core/helpers/helper-form-templates.php:1129 core/helpers/helper-misc.php:338
|
1637 |
msgid "Lithuania"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: core/helpers/helper-form-templates.php:1130 core/helpers/helper-misc.php:339
|
1641 |
msgid "Luxembourg"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: core/helpers/helper-form-templates.php:1131 core/helpers/helper-misc.php:332
|
1645 |
msgid "Latvia"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: core/helpers/helper-form-templates.php:1132 core/helpers/helper-misc.php:336
|
1649 |
msgid "Libyan Arab Jamahiriya"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: core/helpers/helper-form-templates.php:1133 core/helpers/helper-misc.php:359
|
1653 |
msgid "Morocco"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: core/helpers/helper-form-templates.php:1134 core/helpers/helper-misc.php:356
|
1657 |
msgid "Monaco"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: core/helpers/helper-form-templates.php:1135 core/helpers/helper-misc.php:355
|
1661 |
msgid "Moldova, Republic of"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: core/helpers/helper-form-templates.php:1136
|
1665 |
msgid "Montenegro"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: core/helpers/helper-form-templates.php:1137 core/helpers/helper-misc.php:342
|
1669 |
msgid "Madagascar"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: core/helpers/helper-form-templates.php:1138 core/helpers/helper-misc.php:348
|
1673 |
msgid "Marshall Islands"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: core/helpers/helper-form-templates.php:1139 core/helpers/helper-misc.php:341
|
1677 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: core/helpers/helper-form-templates.php:1140 core/helpers/helper-misc.php:346
|
1681 |
msgid "Mali"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: core/helpers/helper-form-templates.php:1141 core/helpers/helper-misc.php:361
|
1685 |
msgid "Myanmar"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: core/helpers/helper-form-templates.php:1142 core/helpers/helper-misc.php:357
|
1689 |
msgid "Mongolia"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: core/helpers/helper-form-templates.php:1143 core/helpers/helper-misc.php:340
|
1693 |
msgid "Macau"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: core/helpers/helper-form-templates.php:1144 core/helpers/helper-misc.php:374
|
1697 |
msgid "Northern Mariana Islands"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: core/helpers/helper-form-templates.php:1145 core/helpers/helper-misc.php:350
|
1701 |
msgid "Mauritania"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: core/helpers/helper-form-templates.php:1146 core/helpers/helper-misc.php:358
|
1705 |
msgid "Montserrat"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: core/helpers/helper-form-templates.php:1147 core/helpers/helper-misc.php:347
|
1709 |
msgid "Malta"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: core/helpers/helper-form-templates.php:1148 core/helpers/helper-misc.php:351
|
1713 |
msgid "Mauritius"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: core/helpers/helper-form-templates.php:1149 core/helpers/helper-misc.php:345
|
1717 |
msgid "Maldives"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:343
|
1721 |
msgid "Malawi"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:353
|
1725 |
msgid "Mexico"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: core/helpers/helper-form-templates.php:1152 core/helpers/helper-misc.php:344
|
1729 |
msgid "Malaysia"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: core/helpers/helper-form-templates.php:1153 core/helpers/helper-misc.php:360
|
1733 |
msgid "Mozambique"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: core/helpers/helper-form-templates.php:1154 core/helpers/helper-misc.php:362
|
1737 |
msgid "Namibia"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: core/helpers/helper-form-templates.php:1155 core/helpers/helper-misc.php:367
|
1741 |
msgid "New Caledonia"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: core/helpers/helper-form-templates.php:1156 core/helpers/helper-misc.php:370
|
1745 |
msgid "Niger"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: core/helpers/helper-form-templates.php:1157 core/helpers/helper-misc.php:371
|
1749 |
msgid "Nigeria"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: core/helpers/helper-form-templates.php:1158 core/helpers/helper-misc.php:369
|
1753 |
msgid "Nicaragua"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: core/helpers/helper-form-templates.php:1159 core/helpers/helper-misc.php:365
|
1757 |
msgid "Netherlands"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: core/helpers/helper-form-templates.php:1160 core/helpers/helper-misc.php:375
|
1761 |
msgid "Norway"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: core/helpers/helper-form-templates.php:1161 core/helpers/helper-misc.php:364
|
1765 |
msgid "Nepal"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: core/helpers/helper-form-templates.php:1162 core/helpers/helper-misc.php:363
|
1769 |
msgid "Nauru"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: core/helpers/helper-form-templates.php:1163 core/helpers/helper-misc.php:372
|
1773 |
msgid "Niue"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: core/helpers/helper-form-templates.php:1164 core/helpers/helper-misc.php:368
|
1777 |
msgid "New Zealand"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: core/helpers/helper-form-templates.php:1165 core/helpers/helper-misc.php:376
|
1781 |
msgid "Oman"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: core/helpers/helper-form-templates.php:1166 core/helpers/helper-misc.php:379
|
1785 |
msgid "Panama"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: core/helpers/helper-form-templates.php:1167 core/helpers/helper-misc.php:382
|
1789 |
msgid "Peru"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: core/helpers/helper-form-templates.php:1168 core/helpers/helper-misc.php:290
|
1793 |
msgid "French Polynesia"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: core/helpers/helper-form-templates.php:1169 core/helpers/helper-misc.php:380
|
1797 |
msgid "Papua New Guinea"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: core/helpers/helper-form-templates.php:1170 core/helpers/helper-misc.php:383
|
1801 |
msgid "Philippines"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: core/helpers/helper-form-templates.php:1171 core/helpers/helper-misc.php:377
|
1805 |
msgid "Pakistan"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: core/helpers/helper-form-templates.php:1172 core/helpers/helper-misc.php:385
|
1809 |
msgid "Poland"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: core/helpers/helper-form-templates.php:1173
|
1813 |
msgid "Saint Pierre and Miquelon"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: core/helpers/helper-form-templates.php:1174 core/helpers/helper-misc.php:384
|
1817 |
msgid "Pitcairn"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: core/helpers/helper-form-templates.php:1175 core/helpers/helper-misc.php:386
|
1821 |
msgid "Portugal"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: core/helpers/helper-form-templates.php:1176 core/helpers/helper-misc.php:378
|
1825 |
msgid "Palau"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: core/helpers/helper-form-templates.php:1177 core/helpers/helper-misc.php:381
|
1829 |
msgid "Paraguay"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: core/helpers/helper-form-templates.php:1178 core/helpers/helper-misc.php:388
|
1833 |
msgid "Qatar"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: core/helpers/helper-form-templates.php:1179 core/helpers/helper-misc.php:390
|
1837 |
msgid "Romania"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: core/helpers/helper-form-templates.php:1180
|
1841 |
msgid "Serbia"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: core/helpers/helper-form-templates.php:1181 core/helpers/helper-misc.php:391
|
1845 |
msgid "Russian Federation"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: core/helpers/helper-form-templates.php:1182 core/helpers/helper-misc.php:392
|
1849 |
msgid "Rwanda"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: core/helpers/helper-form-templates.php:1183 core/helpers/helper-misc.php:399
|
1853 |
msgid "Saudi Arabia"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: core/helpers/helper-form-templates.php:1184 core/helpers/helper-misc.php:406
|
1857 |
msgid "Solomon Islands"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: core/helpers/helper-form-templates.php:1185 core/helpers/helper-misc.php:401
|
1861 |
msgid "Seychelles"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: core/helpers/helper-form-templates.php:1186 core/helpers/helper-misc.php:414
|
1865 |
msgid "Sudan"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: core/helpers/helper-form-templates.php:1187 core/helpers/helper-misc.php:418
|
1869 |
msgid "Sweden"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: core/helpers/helper-form-templates.php:1188 core/helpers/helper-misc.php:403
|
1873 |
msgid "Singapore"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: core/helpers/helper-form-templates.php:1189
|
1877 |
msgid "Saint Helena"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: core/helpers/helper-form-templates.php:1190 core/helpers/helper-misc.php:405
|
1881 |
msgid "Slovenia"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: core/helpers/helper-form-templates.php:1191
|
1885 |
msgid "Slovakia"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: core/helpers/helper-form-templates.php:1192 core/helpers/helper-misc.php:402
|
1889 |
msgid "Sierra Leone"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: core/helpers/helper-form-templates.php:1193 core/helpers/helper-misc.php:397
|
1893 |
msgid "San Marino"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: core/helpers/helper-form-templates.php:1194 core/helpers/helper-misc.php:400
|
1897 |
msgid "Senegal"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: core/helpers/helper-form-templates.php:1195 core/helpers/helper-misc.php:407
|
1901 |
msgid "Somalia"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: core/helpers/helper-form-templates.php:1196 core/helpers/helper-misc.php:415
|
1905 |
msgid "Suriname"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: core/helpers/helper-form-templates.php:1197 core/helpers/helper-misc.php:398
|
1909 |
msgid "Sao Tome and Principe"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: core/helpers/helper-form-templates.php:1198 core/helpers/helper-misc.php:278
|
1913 |
msgid "El Salvador"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: core/helpers/helper-form-templates.php:1199 core/helpers/helper-misc.php:420
|
1917 |
msgid "Syrian Arab Republic"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: core/helpers/helper-form-templates.php:1200 core/helpers/helper-misc.php:417
|
1921 |
msgid "Swaziland"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: core/helpers/helper-form-templates.php:1201 core/helpers/helper-misc.php:432
|
1925 |
msgid "Turks and Caicos Islands"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: core/helpers/helper-form-templates.php:1202 core/helpers/helper-misc.php:255
|
1929 |
msgid "Chad"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: core/helpers/helper-form-templates.php:1203 core/helpers/helper-misc.php:425
|
1933 |
msgid "Togo"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: core/helpers/helper-form-templates.php:1204 core/helpers/helper-misc.php:424
|
1937 |
msgid "Thailand"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: core/helpers/helper-form-templates.php:1205 core/helpers/helper-misc.php:422
|
1941 |
msgid "Tajikistan"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: core/helpers/helper-form-templates.php:1206 core/helpers/helper-misc.php:426
|
1945 |
msgid "Tokelau"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: core/helpers/helper-form-templates.php:1207
|
1949 |
msgid "Timor-leste"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: core/helpers/helper-form-templates.php:1208 core/helpers/helper-misc.php:431
|
1953 |
msgid "Turkmenistan"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: core/helpers/helper-form-templates.php:1209 core/helpers/helper-misc.php:429
|
1957 |
msgid "Tunisia"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: core/helpers/helper-form-templates.php:1210 core/helpers/helper-misc.php:427
|
1961 |
msgid "Tonga"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: core/helpers/helper-form-templates.php:1211 core/helpers/helper-misc.php:430
|
1965 |
msgid "Turkey"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: core/helpers/helper-form-templates.php:1212 core/helpers/helper-misc.php:428
|
1969 |
msgid "Trinidad and Tobago"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: core/helpers/helper-form-templates.php:1213 core/helpers/helper-misc.php:433
|
1973 |
msgid "Tuvalu"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: core/helpers/helper-form-templates.php:1214 core/helpers/helper-misc.php:421
|
1977 |
msgid "Taiwan, Province of China"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: core/helpers/helper-form-templates.php:1215 core/helpers/helper-misc.php:423
|
1981 |
msgid "Tanzania, United Republic of"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: core/helpers/helper-form-templates.php:1216 core/helpers/helper-misc.php:435
|
1985 |
msgid "Ukraine"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: core/helpers/helper-form-templates.php:1217 core/helpers/helper-misc.php:434
|
1989 |
msgid "Uganda"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: core/helpers/helper-form-templates.php:1218 core/helpers/helper-misc.php:438
|
1993 |
msgid "United States"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: core/helpers/helper-form-templates.php:1219 core/helpers/helper-misc.php:440
|
1997 |
msgid "Uruguay"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: core/helpers/helper-form-templates.php:1220 core/helpers/helper-misc.php:441
|
2001 |
msgid "Uzbekistan"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: core/helpers/helper-form-templates.php:1221 core/helpers/helper-misc.php:395
|
2005 |
msgid "Saint Vincent and the Grenadines"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: core/helpers/helper-form-templates.php:1222 core/helpers/helper-misc.php:443
|
2009 |
msgid "Venezuela"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: core/helpers/helper-form-templates.php:1223
|
2013 |
msgid "Virgin Islands, British"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: core/helpers/helper-form-templates.php:1224
|
2017 |
msgid "Virgin Islands, U.S."
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: core/helpers/helper-form-templates.php:1225 core/helpers/helper-misc.php:444
|
2021 |
msgid "Vietnam"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: core/helpers/helper-form-templates.php:1226 core/helpers/helper-misc.php:442
|
2025 |
msgid "Vanuatu"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: core/helpers/helper-form-templates.php:1227
|
2029 |
msgid "Wallis and Futuna"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: core/helpers/helper-form-templates.php:1228 core/helpers/helper-misc.php:396
|
2033 |
msgid "Samoa"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: core/helpers/helper-form-templates.php:1229 core/helpers/helper-misc.php:449
|
2037 |
msgid "Yemen"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: core/helpers/helper-form-templates.php:1230 core/helpers/helper-misc.php:352
|
2041 |
msgid "Mayotte"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: core/helpers/helper-form-templates.php:1231 core/helpers/helper-misc.php:408
|
2045 |
msgid "South Africa"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: core/helpers/helper-form-templates.php:1232 core/helpers/helper-misc.php:451
|
2049 |
msgid "Zambia"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: core/helpers/helper-form-templates.php:1233 core/helpers/helper-misc.php:452
|
2053 |
msgid "Zimbabwe"
|
2054 |
msgstr ""
|
2055 |
|
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.3
|
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,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
97 |
|
98 |
== Changelog ==
|
99 |
|
|
|
|
|
|
|
100 |
= 1.9.1 =
|
101 |
* New feature: Quarter width setting for parts and part choices.
|
102 |
* Improvement: Various improvements to HappyForms UI styles.
|
@@ -565,6 +568,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
565 |
|
566 |
== Upgrade Notice ==
|
567 |
|
|
|
|
|
|
|
568 |
= 1.9.1 =
|
569 |
* Quarter width for parts and part choices. Various improvements to UI and part styles.
|
570 |
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.3
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.9.2
|
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.2 =
|
101 |
+
* New feature: Additional CSS section in Style tab allowing to write custom styles for each individual form.
|
102 |
+
|
103 |
= 1.9.1 =
|
104 |
* New feature: Quarter width setting for parts and part choices.
|
105 |
* Improvement: Various improvements to HappyForms UI styles.
|
568 |
|
569 |
== Upgrade Notice ==
|
570 |
|
571 |
+
= 1.9.2 =
|
572 |
+
* New Additional CSS section in Style step.
|
573 |
+
|
574 |
= 1.9.1 =
|
575 |
* Quarter width for parts and part choices. Various improvements to UI and part styles.
|
576 |
|