Version Description
- Improvement: Added label to HoneyPot input along with screen reader text for better accessibility compliance.
- Bugfix: Reply-to email handling was misbehaving.
- Bugfix: Sample form wasn't being installed on activation.
- Bugfix: Overlays' display: none rule was ignored on some setups.
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.8.5 |
Comparing to | |
See all releases |
Code changes from version 1.8.4 to 1.8.5
- happyforms.php +3 -3
- inc/classes/class-happyforms.php +32 -0
- inc/classes/class-message-controller.php +2 -1
- inc/core/assets/css/layout.css +24 -0
- inc/{classes → core/classes}/class-form-admin.php +1 -22
- inc/{classes → core/classes}/class-form-controller.php +0 -0
- inc/core/classes/class-happyforms-core.php +5 -3
- inc/{helpers → core/helpers}/helper-activation.php +61 -28
- inc/core/helpers/helper-form-templates.php +3 -1
- inc/templates/admin/upgrade-modal-existing.php +2 -2
- inc/templates/admin/upgrade-modal-new.php +1 -1
- languages/happyforms.pot +480 -475
- readme.txt +11 -2
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.8.
|
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.8.
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
@@ -78,7 +78,7 @@ endif;
|
|
78 |
/**
|
79 |
* Activate
|
80 |
*/
|
81 |
-
require_once( happyforms_get_include_folder() . '/helpers/helper-activation.php' );
|
82 |
|
83 |
/**
|
84 |
* Core
|
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.8.5
|
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.8.5' );
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
78 |
/**
|
79 |
* Activate
|
80 |
*/
|
81 |
+
require_once( happyforms_get_include_folder() . '/core/helpers/helper-activation.php' );
|
82 |
|
83 |
/**
|
84 |
* Core
|
inc/classes/class-happyforms.php
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
<?php
|
2 |
class HappyForms extends HappyForms_Core {
|
|
|
3 |
public $default_notice;
|
|
|
4 |
|
5 |
public function initialize_plugin() {
|
6 |
parent::initialize_plugin();
|
@@ -9,6 +11,7 @@ class HappyForms extends HappyForms_Core {
|
|
9 |
add_action( 'happyforms_do_setup_control', array( $this, 'do_control' ), 10, 3 );
|
10 |
add_filter( 'happyforms_setup_controls', array( $this, 'add_dummy_setup_controls' ) );
|
11 |
add_action( 'admin_print_footer_scripts', array( $this, 'print_upgrade_modals' ) );
|
|
|
12 |
|
13 |
$this->register_dummy_parts();
|
14 |
}
|
@@ -178,4 +181,33 @@ class HappyForms extends HappyForms_Core {
|
|
178 |
|
179 |
wp_enqueue_script( 'happyforms-free-admin' );
|
180 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
}
|
1 |
<?php
|
2 |
class HappyForms extends HappyForms_Core {
|
3 |
+
|
4 |
public $default_notice;
|
5 |
+
public $action_archive = 'archive';
|
6 |
|
7 |
public function initialize_plugin() {
|
8 |
parent::initialize_plugin();
|
11 |
add_action( 'happyforms_do_setup_control', array( $this, 'do_control' ), 10, 3 );
|
12 |
add_filter( 'happyforms_setup_controls', array( $this, 'add_dummy_setup_controls' ) );
|
13 |
add_action( 'admin_print_footer_scripts', array( $this, 'print_upgrade_modals' ) );
|
14 |
+
add_action( 'parse_request', array( $this, 'parse_archive_request' ) );
|
15 |
|
16 |
$this->register_dummy_parts();
|
17 |
}
|
181 |
|
182 |
wp_enqueue_script( 'happyforms-free-admin' );
|
183 |
}
|
184 |
+
|
185 |
+
public function parse_archive_request() {
|
186 |
+
global $pagenow;
|
187 |
+
|
188 |
+
if ( 'edit.php' !== $pagenow ) {
|
189 |
+
return;
|
190 |
+
}
|
191 |
+
|
192 |
+
$form_post_type = happyforms_get_form_controller()->post_type;
|
193 |
+
|
194 |
+
if ( ! isset( $_GET['post_type'] ) || $form_post_type !== $_GET['post_type'] ) {
|
195 |
+
return;
|
196 |
+
}
|
197 |
+
|
198 |
+
if ( ! isset( $_GET[$this->action_archive] ) ) {
|
199 |
+
return;
|
200 |
+
}
|
201 |
+
|
202 |
+
$form_id = $_GET[$this->action_archive];
|
203 |
+
$form_controller = happyforms_get_form_controller();
|
204 |
+
$message_controller = happyforms_get_message_controller();
|
205 |
+
$form = $form_controller->get( $form_id );
|
206 |
+
|
207 |
+
if ( ! $form ) {
|
208 |
+
return;
|
209 |
+
}
|
210 |
+
|
211 |
+
$message_controller->export_archive( $form );
|
212 |
+
}
|
213 |
}
|
inc/classes/class-message-controller.php
CHANGED
@@ -567,7 +567,8 @@ class HappyForms_Message_Controller {
|
|
567 |
$email_part = happyforms_get_form_controller()->get_first_part_by_type( $form, 'email' );
|
568 |
|
569 |
if ( false !== $email_part ) {
|
570 |
-
$
|
|
|
571 |
$email_message->set_reply_to( $reply_to );
|
572 |
}
|
573 |
|
567 |
$email_part = happyforms_get_form_controller()->get_first_part_by_type( $form, 'email' );
|
568 |
|
569 |
if ( false !== $email_part ) {
|
570 |
+
$email_part_id = $email_part['id'];
|
571 |
+
$reply_to = happyforms_get_message_part_value( $message[$email_part_id], $email_part );
|
572 |
$email_message->set_reply_to( $reply_to );
|
573 |
}
|
574 |
|
inc/core/assets/css/layout.css
CHANGED
@@ -2400,4 +2400,28 @@ div.mce-inline-toolbar-grp.happyforms-editor-toolbar-link div.wp-link-input inpu
|
|
2400 |
pointer-events: none;
|
2401 |
color: var(--happyforms-color-part-placeholder);
|
2402 |
font-size: 13px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2403 |
}
|
2400 |
pointer-events: none;
|
2401 |
color: var(--happyforms-color-part-placeholder);
|
2402 |
font-size: 13px;
|
2403 |
+
}
|
2404 |
+
.screen-reader-text {
|
2405 |
+
position: absolute;
|
2406 |
+
top: 0;
|
2407 |
+
left: -10000em;
|
2408 |
+
}
|
2409 |
+
|
2410 |
+
.screen-reader-text:focus {
|
2411 |
+
display: block;
|
2412 |
+
z-index: 100000;
|
2413 |
+
top: 7px;
|
2414 |
+
left: 6px;
|
2415 |
+
width: auto;
|
2416 |
+
height: auto;
|
2417 |
+
padding: 15px 23px 14px;
|
2418 |
+
color: #0073aa;
|
2419 |
+
background: #f1f1f1;
|
2420 |
+
-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
2421 |
+
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
2422 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
2423 |
+
font-size: 14px;
|
2424 |
+
font-weight: 600;
|
2425 |
+
line-height: normal;
|
2426 |
+
text-decoration: none;
|
2427 |
}
|
inc/{classes → core/classes}/class-form-admin.php
RENAMED
@@ -11,8 +11,6 @@ class HappyForms_Form_Admin {
|
|
11 |
*/
|
12 |
private static $instance;
|
13 |
|
14 |
-
public $action_archive = 'archive';
|
15 |
-
|
16 |
/**
|
17 |
* The singleton constructor.
|
18 |
*
|
@@ -55,8 +53,6 @@ class HappyForms_Form_Admin {
|
|
55 |
add_action( 'load-edit.php', array( $this, 'duplicate_form_redirect' ) );
|
56 |
add_action( 'admin_footer', array( $this, 'admin_footer' ) );
|
57 |
add_filter( 'admin_footer_text', 'happyforms_admin_footer' );
|
58 |
-
|
59 |
-
add_action( 'parse_request', array( $this, 'parse_request' ) );
|
60 |
}
|
61 |
|
62 |
/**
|
@@ -456,26 +452,9 @@ class HappyForms_Form_Admin {
|
|
456 |
<?php endif;
|
457 |
}
|
458 |
|
459 |
-
public function parse_request() {
|
460 |
-
if ( ! isset( $_GET[$this->action_archive] ) ) {
|
461 |
-
return;
|
462 |
-
}
|
463 |
-
|
464 |
-
$form_id = $_GET[$this->action_archive];
|
465 |
-
$form_controller = happyforms_get_form_controller();
|
466 |
-
$message_controller = happyforms_get_message_controller();
|
467 |
-
$form = $form_controller->get( $form_id );
|
468 |
-
|
469 |
-
if ( ! $form ) {
|
470 |
-
return;
|
471 |
-
}
|
472 |
-
|
473 |
-
$message_controller->export_archive( $form );
|
474 |
-
}
|
475 |
-
|
476 |
}
|
477 |
|
478 |
/**
|
479 |
* Initialize the HappyForms_Form_Admin class immediately.
|
480 |
*/
|
481 |
-
HappyForms_Form_Admin::instance();
|
11 |
*/
|
12 |
private static $instance;
|
13 |
|
|
|
|
|
14 |
/**
|
15 |
* The singleton constructor.
|
16 |
*
|
53 |
add_action( 'load-edit.php', array( $this, 'duplicate_form_redirect' ) );
|
54 |
add_action( 'admin_footer', array( $this, 'admin_footer' ) );
|
55 |
add_filter( 'admin_footer_text', 'happyforms_admin_footer' );
|
|
|
|
|
56 |
}
|
57 |
|
58 |
/**
|
452 |
<?php endif;
|
453 |
}
|
454 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
}
|
456 |
|
457 |
/**
|
458 |
* Initialize the HappyForms_Form_Admin class immediately.
|
459 |
*/
|
460 |
+
HappyForms_Form_Admin::instance();
|
inc/{classes → core/classes}/class-form-controller.php
RENAMED
File without changes
|
inc/core/classes/class-happyforms-core.php
CHANGED
@@ -67,7 +67,7 @@ class HappyForms_Core {
|
|
67 |
}
|
68 |
|
69 |
require_once( happyforms_get_include_folder() . '/core/classes/class-tracking.php' );
|
70 |
-
require_once( happyforms_get_include_folder() . '/classes/class-form-controller.php' );
|
71 |
require_once( happyforms_get_include_folder() . '/classes/class-message-controller.php' );
|
72 |
require_once( happyforms_get_include_folder() . '/core/classes/class-email-message.php' );
|
73 |
require_once( happyforms_get_include_folder() . '/core/classes/class-form-part-library.php' );
|
@@ -184,12 +184,14 @@ class HappyForms_Core {
|
|
184 |
happyforms_get_form_edit_link( 0 )
|
185 |
);
|
186 |
|
|
|
|
|
187 |
add_submenu_page(
|
188 |
'happyforms',
|
189 |
__( 'Responses', 'happyforms' ),
|
190 |
__( 'Responses', 'happyforms' ),
|
191 |
'manage_options',
|
192 |
-
|
193 |
);
|
194 |
|
195 |
add_submenu_page(
|
@@ -279,7 +281,7 @@ class HappyForms_Core {
|
|
279 |
if ( in_array( $pagenow, array( 'edit.php', 'post.php' ) )
|
280 |
&& ( $current_post_type === $form_post_type ) ) {
|
281 |
|
282 |
-
require_once( happyforms_get_include_folder() . '/classes/class-form-admin.php' );
|
283 |
}
|
284 |
}
|
285 |
|
67 |
}
|
68 |
|
69 |
require_once( happyforms_get_include_folder() . '/core/classes/class-tracking.php' );
|
70 |
+
require_once( happyforms_get_include_folder() . '/core/classes/class-form-controller.php' );
|
71 |
require_once( happyforms_get_include_folder() . '/classes/class-message-controller.php' );
|
72 |
require_once( happyforms_get_include_folder() . '/core/classes/class-email-message.php' );
|
73 |
require_once( happyforms_get_include_folder() . '/core/classes/class-form-part-library.php' );
|
184 |
happyforms_get_form_edit_link( 0 )
|
185 |
);
|
186 |
|
187 |
+
$responses_link = apply_filters( 'happyforms_responses_menu_link', '#' );
|
188 |
+
|
189 |
add_submenu_page(
|
190 |
'happyforms',
|
191 |
__( 'Responses', 'happyforms' ),
|
192 |
__( 'Responses', 'happyforms' ),
|
193 |
'manage_options',
|
194 |
+
$responses_link
|
195 |
);
|
196 |
|
197 |
add_submenu_page(
|
281 |
if ( in_array( $pagenow, array( 'edit.php', 'post.php' ) )
|
282 |
&& ( $current_post_type === $form_post_type ) ) {
|
283 |
|
284 |
+
require_once( happyforms_get_include_folder() . '/core/classes/class-form-admin.php' );
|
285 |
}
|
286 |
}
|
287 |
|
inc/{helpers → core/helpers}/helper-activation.php
RENAMED
@@ -1,24 +1,42 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
if ( ! function_exists( 'happyforms_first_run' ) ):
|
4 |
/**
|
5 |
-
* Action: First run routine.
|
6 |
-
*
|
7 |
-
* Creates an example form with example submissions
|
8 |
-
* and sets up user feedback options.
|
9 |
*
|
10 |
-
*
|
11 |
*
|
12 |
-
* @hooked register_activation_hook
|
13 |
-
*
|
14 |
-
* @return void
|
15 |
*/
|
|
|
|
|
16 |
function happyforms_activate() {
|
17 |
do_action( 'happyforms_activate' );
|
18 |
}
|
19 |
|
20 |
endif;
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
if ( ! function_exists( 'happyforms_create_samples' ) ):
|
23 |
|
24 |
function happyforms_create_samples() {
|
@@ -131,8 +149,6 @@ function happyforms_create_samples() {
|
|
131 |
$form_data['parts'][] = $part_data;
|
132 |
}
|
133 |
|
134 |
-
echo var_dump( $form_data['parts'] );
|
135 |
-
|
136 |
// Update the new form with default parts
|
137 |
$form_data = $form_controller->update( $form_data );
|
138 |
|
@@ -145,19 +161,7 @@ function happyforms_create_samples() {
|
|
145 |
|
146 |
endif;
|
147 |
|
148 |
-
|
149 |
-
/**
|
150 |
-
* Action: Deactivation routine.
|
151 |
-
*
|
152 |
-
* Updates user feedback options.
|
153 |
-
*
|
154 |
-
* @since 1.0
|
155 |
-
*
|
156 |
-
* @hooked register_deactivation_hook
|
157 |
-
*
|
158 |
-
* @return void
|
159 |
-
*/
|
160 |
-
function happyforms_deactivate() {
|
161 |
require_once( happyforms_get_include_folder() . '/core/classes/class-tracking.php' );
|
162 |
|
163 |
$tracking = happyforms_get_tracking();
|
@@ -173,7 +177,36 @@ function happyforms_deactivate() {
|
|
173 |
}
|
174 |
}
|
175 |
|
176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
|
178 |
-
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
|
|
|
|
2 |
/**
|
|
|
|
|
|
|
|
|
3 |
*
|
4 |
+
* Core activation/deactivation/remove hooks
|
5 |
*
|
|
|
|
|
|
|
6 |
*/
|
7 |
+
if ( ! function_exists( 'happyforms_first_run' ) ):
|
8 |
+
|
9 |
function happyforms_activate() {
|
10 |
do_action( 'happyforms_activate' );
|
11 |
}
|
12 |
|
13 |
endif;
|
14 |
|
15 |
+
if ( ! function_exists( 'happyforms_deactivate' ) ):
|
16 |
+
|
17 |
+
function happyforms_deactivate() {
|
18 |
+
do_action( 'happyforms_deactivate' );
|
19 |
+
}
|
20 |
+
|
21 |
+
endif;
|
22 |
+
|
23 |
+
if ( ! function_exists( 'happyforms_uninstall' ) ) :
|
24 |
+
|
25 |
+
function happyforms_uninstall() {
|
26 |
+
do_action( 'happyforms_uninstall' );
|
27 |
+
}
|
28 |
+
|
29 |
+
endif;
|
30 |
+
|
31 |
+
register_activation_hook( happyforms_plugin_file(), 'happyforms_activate' );
|
32 |
+
register_deactivation_hook( happyforms_plugin_file(), 'happyforms_deactivate' );
|
33 |
+
register_uninstall_hook( happyforms_plugin_file(), 'happyforms_uninstall');
|
34 |
+
|
35 |
+
/**
|
36 |
+
*
|
37 |
+
* Hooked activation/deactivation/remove routines
|
38 |
+
*
|
39 |
+
*/
|
40 |
if ( ! function_exists( 'happyforms_create_samples' ) ):
|
41 |
|
42 |
function happyforms_create_samples() {
|
149 |
$form_data['parts'][] = $part_data;
|
150 |
}
|
151 |
|
|
|
|
|
152 |
// Update the new form with default parts
|
153 |
$form_data = $form_controller->update( $form_data );
|
154 |
|
161 |
|
162 |
endif;
|
163 |
|
164 |
+
function happyforms_deactivate_tracking() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
require_once( happyforms_get_include_folder() . '/core/classes/class-tracking.php' );
|
166 |
|
167 |
$tracking = happyforms_get_tracking();
|
177 |
}
|
178 |
}
|
179 |
|
180 |
+
function happyforms_uninstall_cleanup() {
|
181 |
+
// Cleanup forms
|
182 |
+
$forms = get_posts( array(
|
183 |
+
'post_type' => 'happyform',
|
184 |
+
'post_status' => 'any',
|
185 |
+
'numberposts' => -1,
|
186 |
+
) );
|
187 |
|
188 |
+
foreach( $forms as $form ) {
|
189 |
+
wp_delete_post( $form->ID, true );
|
190 |
+
}
|
191 |
+
|
192 |
+
// Cleanup responses
|
193 |
+
$responses = get_posts( array(
|
194 |
+
'post_type' => 'happyforms-message',
|
195 |
+
'post_status' => 'any',
|
196 |
+
'numberposts' => -1,
|
197 |
+
) );
|
198 |
+
|
199 |
+
foreach( $responses as $response ) {
|
200 |
+
wp_delete_post( $response->ID, true );
|
201 |
+
}
|
202 |
+
|
203 |
+
// Cleanup options
|
204 |
+
delete_option( 'happyforms-data-version' );
|
205 |
+
delete_option( 'happyforms-tracking' );
|
206 |
+
delete_option( 'widget_happyforms_widget' );
|
207 |
+
delete_transient( '_happyforms_has_responses' );
|
208 |
+
}
|
209 |
+
|
210 |
+
add_action( 'happyforms_activate', 'happyforms_create_samples' );
|
211 |
+
add_action( 'happyforms_deactivate', 'happyforms_deactivate_tracking' );
|
212 |
+
add_action( 'happyforms_uninstall', 'happyforms_uninstall_cleanup' );
|
inc/core/helpers/helper-form-templates.php
CHANGED
@@ -61,7 +61,9 @@ function happyforms_honeypot( $form ) {
|
|
61 |
$controller = happyforms_get_form_controller();
|
62 |
|
63 |
if ( $controller->has_spam_protection( $form ) ) : ?>
|
64 |
-
<
|
|
|
|
|
65 |
<?php endif;
|
66 |
}
|
67 |
|
61 |
$controller = happyforms_get_form_controller();
|
62 |
|
63 |
if ( $controller->has_spam_protection( $form ) ) : ?>
|
64 |
+
<label>
|
65 |
+
<input type="checkbox" name="<?php echo $form['ID']; ?>single_line_text_-1" value="1" style="display: none;" tabindex="-1" autocomplete="off"> <span class="screen-reader-text"><?php _e( 'Spam protection, skip this field', 'happyforms' ); ?></span>
|
66 |
+
</label>
|
67 |
<?php endif;
|
68 |
}
|
69 |
|
inc/templates/admin/upgrade-modal-existing.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<div id="happyforms-upgrade-existing" class="happyforms-upgrade-modal-container">
|
2 |
<div class="happyforms-upgrade-modal">
|
3 |
<a href="#" class="happyforms-upgrade-modal__close">
|
4 |
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times-circle" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-times-circle fa-w-16 fa-3x"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" class=""></path></svg>
|
@@ -20,7 +20,7 @@
|
|
20 |
<div class="happyforms-upgrade-modal__button">
|
21 |
<a href="#" class="button happyforms-export-button">Download My Archived Responses</a>
|
22 |
</div>
|
23 |
-
<form action="">
|
24 |
<input type="hidden" name="post_type" value="happyform" />
|
25 |
<select name="archive">
|
26 |
<?php foreach( $forms as $form ) : ?>
|
1 |
+
<div id="happyforms-upgrade-existing" class="happyforms-upgrade-modal-container" style="display: none">
|
2 |
<div class="happyforms-upgrade-modal">
|
3 |
<a href="#" class="happyforms-upgrade-modal__close">
|
4 |
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times-circle" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-times-circle fa-w-16 fa-3x"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" class=""></path></svg>
|
20 |
<div class="happyforms-upgrade-modal__button">
|
21 |
<a href="#" class="button happyforms-export-button">Download My Archived Responses</a>
|
22 |
</div>
|
23 |
+
<form action="<?php echo admin_url( 'edit.php?post_type=happyform' ); ?>">
|
24 |
<input type="hidden" name="post_type" value="happyform" />
|
25 |
<select name="archive">
|
26 |
<?php foreach( $forms as $form ) : ?>
|
inc/templates/admin/upgrade-modal-new.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<div id="happyforms-upgrade-new" class="happyforms-upgrade-modal-container">
|
2 |
<div class="happyforms-upgrade-modal">
|
3 |
<a href="#" class="happyforms-upgrade-modal__close">
|
4 |
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times-circle" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-times-circle fa-w-16 fa-3x"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" class=""></path></svg>
|
1 |
+
<div id="happyforms-upgrade-new" class="happyforms-upgrade-modal-container" style="display: none">
|
2 |
<div class="happyforms-upgrade-modal">
|
3 |
<a href="#" class="happyforms-upgrade-modal__close">
|
4 |
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times-circle" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-times-circle fa-w-16 fa-3x"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" class=""></path></svg>
|
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.8.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2019-05-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,341 +13,342 @@ msgstr ""
|
|
13 |
"Language-Team: The Theme Foundry\n"
|
14 |
"X-Generator: grunt-wp-i18n 0.4.9\n"
|
15 |
|
16 |
-
#: inc/classes/class-
|
17 |
-
|
18 |
-
msgid "View form"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: inc/classes/class-
|
22 |
-
msgid "
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: inc/classes/class-
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: inc/classes/class-
|
30 |
-
msgid "
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: inc/classes/class-
|
34 |
-
msgid "
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: inc/classes/class-
|
38 |
-
msgid "
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: inc/classes/class-
|
42 |
-
msgid "
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: inc/classes/class-
|
46 |
-
msgid "
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: inc/classes/class-
|
50 |
-
msgid "
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: inc/classes/class-
|
54 |
-
msgid "
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: inc/classes/class-
|
58 |
-
msgid "
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: inc/classes/class-
|
62 |
-
msgid "
|
63 |
-
msgid_plural "%s forms updated."
|
64 |
-
msgstr[0] ""
|
65 |
-
msgstr[1] ""
|
66 |
-
|
67 |
-
#: inc/classes/class-form-admin.php:202
|
68 |
-
msgid "%s form not updated, somebody is editing it."
|
69 |
-
msgid_plural "%s forms not updated, somebody is editing them."
|
70 |
-
msgstr[0] ""
|
71 |
-
msgstr[1] ""
|
72 |
-
|
73 |
-
#: inc/classes/class-form-admin.php:203
|
74 |
-
msgid "%s form permanently deleted."
|
75 |
-
msgid_plural "%s forms permanently deleted."
|
76 |
-
msgstr[0] ""
|
77 |
-
msgstr[1] ""
|
78 |
-
|
79 |
-
#: inc/classes/class-form-admin.php:204
|
80 |
-
msgid "%s form moved to the Trash."
|
81 |
-
msgid_plural "%s forms moved to the Trash."
|
82 |
-
msgstr[0] ""
|
83 |
-
msgstr[1] ""
|
84 |
-
|
85 |
-
#: inc/classes/class-form-admin.php:205
|
86 |
-
msgid "%s form restored from the Trash."
|
87 |
-
msgid_plural "%s forms restored from the Trash."
|
88 |
-
msgstr[0] ""
|
89 |
-
msgstr[1] ""
|
90 |
-
|
91 |
-
#: inc/classes/class-form-admin.php:258
|
92 |
-
msgid "Shortcode"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/classes/class-
|
96 |
-
msgid "
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/classes/class-
|
100 |
-
msgid "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: inc/classes/class-
|
104 |
-
|
105 |
-
msgid "Build"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: inc/classes/class-
|
109 |
-
|
110 |
-
#: inc/core/templates/customize-form-steps.php:8
|
111 |
-
#: inc/core/templates/customize-form-steps.php:15
|
112 |
-
msgid "Setup"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/classes/class-
|
116 |
-
|
117 |
-
#: inc/core/templates/customize-form-steps.php:18
|
118 |
-
msgid "Style"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: inc/classes/class-
|
122 |
-
|
123 |
-
#: inc/core/templates/customize-form-part-footer.php:4
|
124 |
-
msgid "Duplicate"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: inc/classes/class-
|
128 |
-
msgid "
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: inc/classes/class-
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: inc/classes/class-
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: inc/classes/class-
|
140 |
-
msgid "
|
|
|
|
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: inc/classes/class-
|
144 |
-
|
145 |
-
msgid "Build form"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/classes/class-
|
149 |
-
|
|
|
|
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/classes/class-
|
153 |
-
|
|
|
|
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/classes/class-
|
157 |
-
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc/classes/class-
|
161 |
-
msgid "
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/classes/class-
|
165 |
-
msgid "
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/classes/class-
|
169 |
-
|
170 |
-
#: inc/core/classes/class-happyforms-core.php:173
|
171 |
-
#: inc/core/classes/class-happyforms-core.php:174
|
172 |
-
msgid "All Forms"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/classes/class-
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/classes/class-
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/classes/class-
|
184 |
-
|
185 |
-
#: inc/classes/class-message-controller.php:335
|
186 |
-
#: inc/classes/class-message-controller.php:370
|
187 |
-
msgid "Oops! Your response is invalid — please review your message."
|
188 |
msgstr ""
|
189 |
|
190 |
-
|
191 |
-
msgid "
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: inc/classes/class-
|
195 |
-
msgid "
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: inc/classes/class-
|
199 |
-
msgid "
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: inc/classes/class-
|
203 |
-
msgid ""
|
204 |
-
"Track recipients landing on this internal page after successfully "
|
205 |
-
"submitting this form."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/classes/class-
|
209 |
-
msgid "
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/classes/class-
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/classes/class-
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/classes/class-
|
221 |
-
msgid "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/classes/class-
|
225 |
-
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/classes/class-
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/classes/class-
|
233 |
-
|
|
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/classes/class-
|
237 |
-
msgid "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/classes/class-
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/classes/class-
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/classes/class-
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/classes/class-
|
253 |
-
msgid "
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/classes/class-
|
257 |
-
msgid "
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: inc/classes/class-
|
261 |
-
msgid "
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/classes/class-
|
265 |
-
msgid "
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/classes/class-
|
269 |
-
msgid "
|
270 |
-
|
|
|
|
|
271 |
|
272 |
-
#: inc/classes/class-
|
273 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/classes/class-
|
277 |
-
msgid ""
|
278 |
-
"Show or hide this form during a chosen time and day. Go to Settings > "
|
279 |
-
"Timezone to set your city offset."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: inc/classes/class-
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: inc/classes/class-
|
287 |
-
#: inc/core/templates/customize-form-
|
288 |
-
|
289 |
-
msgid "Upgrade"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/classes/class-
|
293 |
-
#: inc/templates/
|
294 |
-
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/classes/
|
298 |
-
|
|
|
|
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/classes/
|
302 |
-
|
|
|
|
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/classes/
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/classes/
|
310 |
-
msgid "
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/classes/
|
314 |
-
msgid "
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/classes/
|
318 |
-
msgid "
|
319 |
msgstr ""
|
320 |
|
321 |
-
|
322 |
-
|
|
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/core/classes/class-
|
326 |
-
msgid "
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/core/classes/class-
|
330 |
-
msgid "
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/core/classes/class-
|
334 |
-
msgid "
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: inc/core/classes/class-
|
338 |
-
msgid "
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: inc/core/classes/class-
|
342 |
-
msgid "
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/core/classes/class-
|
346 |
-
|
|
|
|
|
|
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/core/classes/class-
|
350 |
-
msgid "
|
|
|
|
|
|
|
|
|
351 |
msgstr ""
|
352 |
|
353 |
#: inc/core/classes/class-form-part-library.php:197
|
@@ -1016,29 +1017,29 @@ msgstr ""
|
|
1016 |
msgid "Add New"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1020 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1021 |
msgid "Responses"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1025 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1026 |
msgid "Welcome"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1030 |
msgid "HappyForm"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1034 |
msgid "New HappyForm"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1038 |
msgid "Insert HappyForm"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: inc/core/classes/class-happyforms-core.php:
|
1042 |
msgid "Add HappyForms"
|
1043 |
msgstr ""
|
1044 |
|
@@ -1502,1135 +1503,1175 @@ msgstr ""
|
|
1502 |
msgid "Not a valid URL."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: inc/core/helpers/helper-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1506 |
msgid "Get my location"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1510 |
msgid "Fetching location…"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1514 |
msgid "January"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1518 |
msgid "February"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1522 |
msgid "March"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1526 |
msgid "April"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1530 |
msgid "May"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1534 |
msgid "June"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1538 |
msgid "July"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1542 |
msgid "August"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1546 |
msgid "September"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1550 |
msgid "October"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1554 |
msgid "November"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1558 |
msgid "December"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1562 |
#: inc/core/helpers/helper-misc.php:216
|
1563 |
msgid "Andorra"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1567 |
#: inc/core/helpers/helper-misc.php:434
|
1568 |
msgid "United Arab Emirates"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1572 |
#: inc/core/helpers/helper-misc.php:212
|
1573 |
msgid "Afghanistan"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1577 |
#: inc/core/helpers/helper-misc.php:220
|
1578 |
msgid "Antigua and Barbuda"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1582 |
#: inc/core/helpers/helper-misc.php:218
|
1583 |
msgid "Anguilla"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1587 |
#: inc/core/helpers/helper-misc.php:213
|
1588 |
msgid "Albania"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1592 |
#: inc/core/helpers/helper-misc.php:222
|
1593 |
msgid "Armenia"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1597 |
#: inc/core/helpers/helper-misc.php:217
|
1598 |
msgid "Angola"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1602 |
#: inc/core/helpers/helper-misc.php:219
|
1603 |
msgid "Antarctica"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1607 |
#: inc/core/helpers/helper-misc.php:221
|
1608 |
msgid "Argentina"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1612 |
#: inc/core/helpers/helper-misc.php:215
|
1613 |
msgid "American Samoa"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1617 |
#: inc/core/helpers/helper-misc.php:225
|
1618 |
msgid "Austria"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1622 |
#: inc/core/helpers/helper-misc.php:224
|
1623 |
msgid "Australia"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1627 |
#: inc/core/helpers/helper-misc.php:223
|
1628 |
msgid "Aruba"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1632 |
#: inc/core/helpers/helper-misc.php:226
|
1633 |
msgid "Azerbaijan"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1637 |
msgid "Bosnia and Herzegovina"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1641 |
#: inc/core/helpers/helper-misc.php:230
|
1642 |
msgid "Barbados"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1646 |
#: inc/core/helpers/helper-misc.php:229
|
1647 |
msgid "Bangladesh"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1651 |
#: inc/core/helpers/helper-misc.php:232
|
1652 |
msgid "Belgium"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1656 |
#: inc/core/helpers/helper-misc.php:245
|
1657 |
msgid "Burkina Faso"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1661 |
#: inc/core/helpers/helper-misc.php:244
|
1662 |
msgid "Bulgaria"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1666 |
#: inc/core/helpers/helper-misc.php:228
|
1667 |
msgid "Bahrain"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1671 |
#: inc/core/helpers/helper-misc.php:246
|
1672 |
msgid "Burundi"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1676 |
#: inc/core/helpers/helper-misc.php:234
|
1677 |
msgid "Benin"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1681 |
msgid "Saint Barthelemy"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1685 |
#: inc/core/helpers/helper-misc.php:235
|
1686 |
msgid "Bermuda"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1690 |
#: inc/core/helpers/helper-misc.php:243
|
1691 |
msgid "Brunei Darussalam"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1695 |
#: inc/core/helpers/helper-misc.php:237
|
1696 |
msgid "Bolivia"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1700 |
#: inc/core/helpers/helper-misc.php:241
|
1701 |
msgid "Brazil"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1705 |
#: inc/core/helpers/helper-misc.php:227
|
1706 |
msgid "Bahamas"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1710 |
#: inc/core/helpers/helper-misc.php:236
|
1711 |
msgid "Bhutan"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1715 |
#: inc/core/helpers/helper-misc.php:239
|
1716 |
msgid "Botswana"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1720 |
#: inc/core/helpers/helper-misc.php:231
|
1721 |
msgid "Belarus"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1725 |
#: inc/core/helpers/helper-misc.php:233
|
1726 |
msgid "Belize"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1730 |
#: inc/core/helpers/helper-misc.php:249
|
1731 |
msgid "Canada"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1735 |
msgid "Congo, The Democratic Republic of the"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1739 |
#: inc/core/helpers/helper-misc.php:252
|
1740 |
msgid "Central African Republic"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1744 |
#: inc/core/helpers/helper-misc.php:260
|
1745 |
msgid "Congo"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1749 |
#: inc/core/helpers/helper-misc.php:417
|
1750 |
msgid "Switzerland"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1754 |
#: inc/core/helpers/helper-misc.php:262
|
1755 |
msgid "Cook Islands"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1759 |
#: inc/core/helpers/helper-misc.php:254
|
1760 |
msgid "Chile"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1764 |
#: inc/core/helpers/helper-misc.php:248
|
1765 |
msgid "Cameroon"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1769 |
#: inc/core/helpers/helper-misc.php:255
|
1770 |
msgid "China"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1774 |
#: inc/core/helpers/helper-misc.php:258
|
1775 |
msgid "Colombia"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1779 |
#: inc/core/helpers/helper-misc.php:263
|
1780 |
msgid "Costa Rica"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1784 |
#: inc/core/helpers/helper-misc.php:266
|
1785 |
msgid "Cuba"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1789 |
#: inc/core/helpers/helper-misc.php:250
|
1790 |
msgid "Cape Verde"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1794 |
#: inc/core/helpers/helper-misc.php:267
|
1795 |
msgid "Cyprus"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1799 |
#: inc/core/helpers/helper-misc.php:268
|
1800 |
msgid "Czech Republic"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1804 |
#: inc/core/helpers/helper-misc.php:293
|
1805 |
msgid "Germany"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1809 |
#: inc/core/helpers/helper-misc.php:270
|
1810 |
msgid "Djibouti"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1814 |
#: inc/core/helpers/helper-misc.php:269
|
1815 |
msgid "Denmark"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1819 |
#: inc/core/helpers/helper-misc.php:271
|
1820 |
msgid "Dominica"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1824 |
#: inc/core/helpers/helper-misc.php:272
|
1825 |
msgid "Dominican Republic"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1829 |
#: inc/core/helpers/helper-misc.php:214
|
1830 |
msgid "Algeria"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1834 |
#: inc/core/helpers/helper-misc.php:274
|
1835 |
msgid "Ecuador"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1839 |
#: inc/core/helpers/helper-misc.php:279
|
1840 |
msgid "Estonia"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1844 |
#: inc/core/helpers/helper-misc.php:275
|
1845 |
msgid "Egypt"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1849 |
#: inc/core/helpers/helper-misc.php:278
|
1850 |
msgid "Eritrea"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1854 |
#: inc/core/helpers/helper-misc.php:408
|
1855 |
msgid "Spain"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1859 |
#: inc/core/helpers/helper-misc.php:280
|
1860 |
msgid "Ethiopia"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1864 |
#: inc/core/helpers/helper-misc.php:284
|
1865 |
msgid "Finland"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1869 |
#: inc/core/helpers/helper-misc.php:283
|
1870 |
msgid "Fiji"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1874 |
#: inc/core/helpers/helper-misc.php:281
|
1875 |
msgid "Falkland Islands (Malvinas)"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1879 |
#: inc/core/helpers/helper-misc.php:352
|
1880 |
msgid "Micronesia, Federated States of"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1884 |
#: inc/core/helpers/helper-misc.php:282
|
1885 |
msgid "Faroe Islands"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1889 |
#: inc/core/helpers/helper-misc.php:285
|
1890 |
msgid "France"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1894 |
#: inc/core/helpers/helper-misc.php:290
|
1895 |
msgid "Gabon"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1899 |
#: inc/core/helpers/helper-misc.php:435
|
1900 |
msgid "United Kingdom"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1904 |
#: inc/core/helpers/helper-misc.php:298
|
1905 |
msgid "Grenada"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1909 |
#: inc/core/helpers/helper-misc.php:292
|
1910 |
msgid "Georgia"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1914 |
#: inc/core/helpers/helper-misc.php:294
|
1915 |
msgid "Ghana"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1919 |
#: inc/core/helpers/helper-misc.php:295
|
1920 |
msgid "Gibraltar"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1924 |
#: inc/core/helpers/helper-misc.php:297
|
1925 |
msgid "Greenland"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1929 |
#: inc/core/helpers/helper-misc.php:291
|
1930 |
msgid "Gambia"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1934 |
#: inc/core/helpers/helper-misc.php:302
|
1935 |
msgid "Guinea"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1939 |
#: inc/core/helpers/helper-misc.php:296
|
1940 |
msgid "Greece"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1944 |
#: inc/core/helpers/helper-misc.php:301
|
1945 |
msgid "Guatemala"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1949 |
#: inc/core/helpers/helper-misc.php:300
|
1950 |
msgid "Guam"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1954 |
msgid "Guinea-bissau"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1958 |
#: inc/core/helpers/helper-misc.php:304
|
1959 |
msgid "Guyana"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1963 |
#: inc/core/helpers/helper-misc.php:309
|
1964 |
msgid "Hong Kong"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1968 |
#: inc/core/helpers/helper-misc.php:308
|
1969 |
msgid "Honduras"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1973 |
msgid "Croatia"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1977 |
#: inc/core/helpers/helper-misc.php:305
|
1978 |
msgid "Haiti"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1982 |
#: inc/core/helpers/helper-misc.php:310
|
1983 |
msgid "Hungary"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1987 |
#: inc/core/helpers/helper-misc.php:313
|
1988 |
msgid "Indonesia"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1992 |
#: inc/core/helpers/helper-misc.php:316
|
1993 |
msgid "Ireland"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: inc/core/helpers/helper-form-templates.php:
|
1997 |
#: inc/core/helpers/helper-misc.php:317
|
1998 |
msgid "Israel"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2002 |
#: inc/core/helpers/helper-misc.php:312
|
2003 |
msgid "India"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2007 |
#: inc/core/helpers/helper-misc.php:315
|
2008 |
msgid "Iraq"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2012 |
msgid "Iran, Islamic Republic of"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2016 |
#: inc/core/helpers/helper-misc.php:311
|
2017 |
msgid "Iceland"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2021 |
#: inc/core/helpers/helper-misc.php:318
|
2022 |
msgid "Italy"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2026 |
#: inc/core/helpers/helper-misc.php:319
|
2027 |
msgid "Jamaica"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2031 |
#: inc/core/helpers/helper-misc.php:321
|
2032 |
msgid "Jordan"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2036 |
#: inc/core/helpers/helper-misc.php:320
|
2037 |
msgid "Japan"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2041 |
#: inc/core/helpers/helper-misc.php:323
|
2042 |
msgid "Kenya"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2046 |
#: inc/core/helpers/helper-misc.php:328
|
2047 |
msgid "Kyrgyzstan"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2051 |
#: inc/core/helpers/helper-misc.php:247
|
2052 |
msgid "Cambodia"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2056 |
#: inc/core/helpers/helper-misc.php:324
|
2057 |
msgid "Kiribati"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2061 |
#: inc/core/helpers/helper-misc.php:259
|
2062 |
msgid "Comoros"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2066 |
#: inc/core/helpers/helper-misc.php:391
|
2067 |
msgid "Saint Kitts and Nevis"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2071 |
msgid "Korea Democratic Peoples Republic of"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2075 |
msgid "Korea Republic of"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2079 |
#: inc/core/helpers/helper-misc.php:327
|
2080 |
msgid "Kuwait"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2084 |
#: inc/core/helpers/helper-misc.php:251
|
2085 |
msgid "Cayman Islands"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2089 |
msgid "Lao Peoples Democratic Republic"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2093 |
#: inc/core/helpers/helper-misc.php:331
|
2094 |
msgid "Lebanon"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2098 |
#: inc/core/helpers/helper-misc.php:392
|
2099 |
msgid "Saint Lucia"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2103 |
#: inc/core/helpers/helper-misc.php:335
|
2104 |
msgid "Liechtenstein"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2108 |
#: inc/core/helpers/helper-misc.php:409
|
2109 |
msgid "Sri Lanka"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2113 |
#: inc/core/helpers/helper-misc.php:333
|
2114 |
msgid "Liberia"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2118 |
#: inc/core/helpers/helper-misc.php:332
|
2119 |
msgid "Lesotho"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2123 |
#: inc/core/helpers/helper-misc.php:336
|
2124 |
msgid "Lithuania"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2128 |
#: inc/core/helpers/helper-misc.php:337
|
2129 |
msgid "Luxembourg"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2133 |
#: inc/core/helpers/helper-misc.php:330
|
2134 |
msgid "Latvia"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2138 |
#: inc/core/helpers/helper-misc.php:334
|
2139 |
msgid "Libyan Arab Jamahiriya"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2143 |
#: inc/core/helpers/helper-misc.php:357
|
2144 |
msgid "Morocco"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2148 |
#: inc/core/helpers/helper-misc.php:354
|
2149 |
msgid "Monaco"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2153 |
#: inc/core/helpers/helper-misc.php:353
|
2154 |
msgid "Moldova, Republic of"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2158 |
msgid "Montenegro"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2162 |
#: inc/core/helpers/helper-misc.php:340
|
2163 |
msgid "Madagascar"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2167 |
#: inc/core/helpers/helper-misc.php:346
|
2168 |
msgid "Marshall Islands"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2172 |
#: inc/core/helpers/helper-misc.php:339
|
2173 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2177 |
#: inc/core/helpers/helper-misc.php:344
|
2178 |
msgid "Mali"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2182 |
#: inc/core/helpers/helper-misc.php:359
|
2183 |
msgid "Myanmar"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2187 |
#: inc/core/helpers/helper-misc.php:355
|
2188 |
msgid "Mongolia"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2192 |
#: inc/core/helpers/helper-misc.php:338
|
2193 |
msgid "Macau"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2197 |
#: inc/core/helpers/helper-misc.php:372
|
2198 |
msgid "Northern Mariana Islands"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2202 |
#: inc/core/helpers/helper-misc.php:348
|
2203 |
msgid "Mauritania"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2207 |
#: inc/core/helpers/helper-misc.php:356
|
2208 |
msgid "Montserrat"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2212 |
#: inc/core/helpers/helper-misc.php:345
|
2213 |
msgid "Malta"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2217 |
#: inc/core/helpers/helper-misc.php:349
|
2218 |
msgid "Mauritius"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2222 |
#: inc/core/helpers/helper-misc.php:343
|
2223 |
msgid "Maldives"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2227 |
#: inc/core/helpers/helper-misc.php:341
|
2228 |
msgid "Malawi"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2232 |
#: inc/core/helpers/helper-misc.php:351
|
2233 |
msgid "Mexico"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2237 |
#: inc/core/helpers/helper-misc.php:342
|
2238 |
msgid "Malaysia"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2242 |
#: inc/core/helpers/helper-misc.php:358
|
2243 |
msgid "Mozambique"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2247 |
#: inc/core/helpers/helper-misc.php:360
|
2248 |
msgid "Namibia"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2252 |
#: inc/core/helpers/helper-misc.php:365
|
2253 |
msgid "New Caledonia"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2257 |
#: inc/core/helpers/helper-misc.php:368
|
2258 |
msgid "Niger"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2262 |
#: inc/core/helpers/helper-misc.php:369
|
2263 |
msgid "Nigeria"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2267 |
#: inc/core/helpers/helper-misc.php:367
|
2268 |
msgid "Nicaragua"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2272 |
#: inc/core/helpers/helper-misc.php:363
|
2273 |
msgid "Netherlands"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2277 |
#: inc/core/helpers/helper-misc.php:373
|
2278 |
msgid "Norway"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2282 |
#: inc/core/helpers/helper-misc.php:362
|
2283 |
msgid "Nepal"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2287 |
#: inc/core/helpers/helper-misc.php:361
|
2288 |
msgid "Nauru"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2292 |
#: inc/core/helpers/helper-misc.php:370
|
2293 |
msgid "Niue"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2297 |
#: inc/core/helpers/helper-misc.php:366
|
2298 |
msgid "New Zealand"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2302 |
#: inc/core/helpers/helper-misc.php:374
|
2303 |
msgid "Oman"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2307 |
#: inc/core/helpers/helper-misc.php:377
|
2308 |
msgid "Panama"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2312 |
#: inc/core/helpers/helper-misc.php:380
|
2313 |
msgid "Peru"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2317 |
#: inc/core/helpers/helper-misc.php:288
|
2318 |
msgid "French Polynesia"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2322 |
#: inc/core/helpers/helper-misc.php:378
|
2323 |
msgid "Papua New Guinea"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2327 |
#: inc/core/helpers/helper-misc.php:381
|
2328 |
msgid "Philippines"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2332 |
#: inc/core/helpers/helper-misc.php:375
|
2333 |
msgid "Pakistan"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2337 |
#: inc/core/helpers/helper-misc.php:383
|
2338 |
msgid "Poland"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2342 |
msgid "Saint Pierre and Miquelon"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2346 |
#: inc/core/helpers/helper-misc.php:382
|
2347 |
msgid "Pitcairn"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2351 |
#: inc/core/helpers/helper-misc.php:384
|
2352 |
msgid "Portugal"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2356 |
#: inc/core/helpers/helper-misc.php:376
|
2357 |
msgid "Palau"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2361 |
#: inc/core/helpers/helper-misc.php:379
|
2362 |
msgid "Paraguay"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2366 |
#: inc/core/helpers/helper-misc.php:386
|
2367 |
msgid "Qatar"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2371 |
#: inc/core/helpers/helper-misc.php:388
|
2372 |
msgid "Romania"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2376 |
msgid "Serbia"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2380 |
#: inc/core/helpers/helper-misc.php:389
|
2381 |
msgid "Russian Federation"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2385 |
#: inc/core/helpers/helper-misc.php:390
|
2386 |
msgid "Rwanda"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2390 |
#: inc/core/helpers/helper-misc.php:397
|
2391 |
msgid "Saudi Arabia"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2395 |
#: inc/core/helpers/helper-misc.php:404
|
2396 |
msgid "Solomon Islands"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2400 |
#: inc/core/helpers/helper-misc.php:399
|
2401 |
msgid "Seychelles"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2405 |
#: inc/core/helpers/helper-misc.php:412
|
2406 |
msgid "Sudan"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2410 |
#: inc/core/helpers/helper-misc.php:416
|
2411 |
msgid "Sweden"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2415 |
#: inc/core/helpers/helper-misc.php:401
|
2416 |
msgid "Singapore"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2420 |
msgid "Saint Helena"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2424 |
#: inc/core/helpers/helper-misc.php:403
|
2425 |
msgid "Slovenia"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2429 |
msgid "Slovakia"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2433 |
#: inc/core/helpers/helper-misc.php:400
|
2434 |
msgid "Sierra Leone"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2438 |
#: inc/core/helpers/helper-misc.php:395
|
2439 |
msgid "San Marino"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2443 |
#: inc/core/helpers/helper-misc.php:398
|
2444 |
msgid "Senegal"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2448 |
#: inc/core/helpers/helper-misc.php:405
|
2449 |
msgid "Somalia"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2453 |
#: inc/core/helpers/helper-misc.php:413
|
2454 |
msgid "Suriname"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2458 |
#: inc/core/helpers/helper-misc.php:396
|
2459 |
msgid "Sao Tome and Principe"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2463 |
#: inc/core/helpers/helper-misc.php:276
|
2464 |
msgid "El Salvador"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2468 |
#: inc/core/helpers/helper-misc.php:418
|
2469 |
msgid "Syrian Arab Republic"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2473 |
#: inc/core/helpers/helper-misc.php:415
|
2474 |
msgid "Swaziland"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2478 |
#: inc/core/helpers/helper-misc.php:430
|
2479 |
msgid "Turks and Caicos Islands"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2483 |
#: inc/core/helpers/helper-misc.php:253
|
2484 |
msgid "Chad"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2488 |
#: inc/core/helpers/helper-misc.php:423
|
2489 |
msgid "Togo"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2493 |
#: inc/core/helpers/helper-misc.php:422
|
2494 |
msgid "Thailand"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2498 |
#: inc/core/helpers/helper-misc.php:420
|
2499 |
msgid "Tajikistan"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2503 |
#: inc/core/helpers/helper-misc.php:424
|
2504 |
msgid "Tokelau"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2508 |
msgid "Timor-leste"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2512 |
#: inc/core/helpers/helper-misc.php:429
|
2513 |
msgid "Turkmenistan"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2517 |
#: inc/core/helpers/helper-misc.php:427
|
2518 |
msgid "Tunisia"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2522 |
#: inc/core/helpers/helper-misc.php:425
|
2523 |
msgid "Tonga"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2527 |
#: inc/core/helpers/helper-misc.php:428
|
2528 |
msgid "Turkey"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2532 |
#: inc/core/helpers/helper-misc.php:426
|
2533 |
msgid "Trinidad and Tobago"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2537 |
#: inc/core/helpers/helper-misc.php:431
|
2538 |
msgid "Tuvalu"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2542 |
#: inc/core/helpers/helper-misc.php:419
|
2543 |
msgid "Taiwan, Province of China"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2547 |
#: inc/core/helpers/helper-misc.php:421
|
2548 |
msgid "Tanzania, United Republic of"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2552 |
#: inc/core/helpers/helper-misc.php:433
|
2553 |
msgid "Ukraine"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2557 |
#: inc/core/helpers/helper-misc.php:432
|
2558 |
msgid "Uganda"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2562 |
#: inc/core/helpers/helper-misc.php:436
|
2563 |
msgid "United States"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2567 |
#: inc/core/helpers/helper-misc.php:438
|
2568 |
msgid "Uruguay"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2572 |
#: inc/core/helpers/helper-misc.php:439
|
2573 |
msgid "Uzbekistan"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2577 |
#: inc/core/helpers/helper-misc.php:393
|
2578 |
msgid "Saint Vincent and the Grenadines"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2582 |
#: inc/core/helpers/helper-misc.php:441
|
2583 |
msgid "Venezuela"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2587 |
msgid "Virgin Islands, British"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2591 |
msgid "Virgin Islands, U.S."
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2595 |
#: inc/core/helpers/helper-misc.php:442
|
2596 |
msgid "Vietnam"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2600 |
#: inc/core/helpers/helper-misc.php:440
|
2601 |
msgid "Vanuatu"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2605 |
msgid "Wallis and Futuna"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2609 |
#: inc/core/helpers/helper-misc.php:394
|
2610 |
msgid "Samoa"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2614 |
#: inc/core/helpers/helper-misc.php:447
|
2615 |
msgid "Yemen"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2619 |
#: inc/core/helpers/helper-misc.php:350
|
2620 |
msgid "Mayotte"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2624 |
#: inc/core/helpers/helper-misc.php:406
|
2625 |
msgid "South Africa"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2629 |
#: inc/core/helpers/helper-misc.php:449
|
2630 |
msgid "Zambia"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: inc/core/helpers/helper-form-templates.php:
|
2634 |
#: inc/core/helpers/helper-misc.php:450
|
2635 |
msgid "Zimbabwe"
|
2636 |
msgstr ""
|
@@ -4303,42 +4344,6 @@ msgstr ""
|
|
4303 |
msgid "Click to edit this part."
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: inc/helpers/helper-activation.php:52
|
4307 |
-
msgid "Sample Form"
|
4308 |
-
msgstr ""
|
4309 |
-
|
4310 |
-
#: inc/helpers/helper-activation.php:82
|
4311 |
-
msgid "First name"
|
4312 |
-
msgstr ""
|
4313 |
-
|
4314 |
-
#: inc/helpers/helper-activation.php:87
|
4315 |
-
msgid "Last name"
|
4316 |
-
msgstr ""
|
4317 |
-
|
4318 |
-
#: inc/helpers/helper-activation.php:92
|
4319 |
-
msgid "What's your reason for contacting us?"
|
4320 |
-
msgstr ""
|
4321 |
-
|
4322 |
-
#: inc/helpers/helper-activation.php:95
|
4323 |
-
msgid "Need technical help"
|
4324 |
-
msgstr ""
|
4325 |
-
|
4326 |
-
#: inc/helpers/helper-activation.php:98
|
4327 |
-
msgid "Want to suggest a feature"
|
4328 |
-
msgstr ""
|
4329 |
-
|
4330 |
-
#: inc/helpers/helper-activation.php:101
|
4331 |
-
msgid "Asking about my account"
|
4332 |
-
msgstr ""
|
4333 |
-
|
4334 |
-
#: inc/helpers/helper-activation.php:107
|
4335 |
-
msgid "What's your age?"
|
4336 |
-
msgstr ""
|
4337 |
-
|
4338 |
-
#: inc/helpers/helper-activation.php:112
|
4339 |
-
msgid "Your message"
|
4340 |
-
msgstr ""
|
4341 |
-
|
4342 |
#. Plugin URI of the plugin/theme
|
4343 |
msgid "https://happyforms.me"
|
4344 |
msgstr ""
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: HappyForms 1.8.5\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2019-05-09 13:42:33+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Language-Team: The Theme Foundry\n"
|
14 |
"X-Generator: grunt-wp-i18n 0.4.9\n"
|
15 |
|
16 |
+
#: inc/classes/class-happyforms.php:36
|
17 |
+
msgid "Include mark and reply link"
|
|
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: inc/classes/class-happyforms.php:37
|
21 |
+
msgid "Reply to your users and mark their submission as read in one click."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: inc/classes/class-happyforms.php:43
|
25 |
+
msgid "Track goal link"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: inc/classes/class-happyforms.php:44
|
29 |
+
msgid ""
|
30 |
+
"Track recipients landing on this internal page after successfully "
|
31 |
+
"submitting this form."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: inc/classes/class-happyforms.php:50
|
35 |
+
msgid "Use theme styles"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: inc/classes/class-happyforms.php:51
|
39 |
+
msgid "Inherit theme default styles instead of using HappyForms styles."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: inc/classes/class-happyforms.php:57
|
43 |
+
msgid "Shuffle parts"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/classes/class-happyforms.php:58
|
47 |
+
msgid "Shuffle the order of all form parts to avoid biases in your responses."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: inc/classes/class-happyforms.php:64
|
51 |
+
msgid "Require password"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: inc/classes/class-happyforms.php:65
|
55 |
+
msgid "Only users with password will be able to view and submit the form."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: inc/classes/class-happyforms.php:71
|
59 |
+
msgid "Open in overlay window"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/classes/class-happyforms.php:72
|
63 |
+
msgid "Generate a link that can be clicked to open an overlay window for this form."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: inc/classes/class-happyforms.php:78
|
67 |
+
msgid "Save responses"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/classes/class-happyforms.php:79
|
71 |
+
msgid "Keep recipients responses stored in your WordPress database."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/classes/class-happyforms.php:86
|
75 |
+
msgid "Save abandoned responses"
|
|
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/classes/class-happyforms.php:87
|
79 |
+
msgid "Keep incomplete recipients responses stored in your WordPress database."
|
|
|
|
|
|
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/classes/class-happyforms.php:93
|
83 |
+
msgid "Give each response an ID number"
|
|
|
|
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/classes/class-happyforms.php:94
|
87 |
+
msgid "Tag responses with a unique, incremental identifier."
|
|
|
|
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/classes/class-happyforms.php:100
|
91 |
+
msgid "Limit responses"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/classes/class-happyforms.php:101
|
95 |
+
msgid "Set limit on number of allowed form submission in general or per user."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/classes/class-happyforms.php:107
|
99 |
+
msgid "Schedule visibility"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/classes/class-happyforms.php:108
|
103 |
+
msgid ""
|
104 |
+
"Show or hide this form during a chosen time and day. Go to Settings > "
|
105 |
+
"Timezone to set your city offset."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: inc/classes/class-happyforms.php:134
|
109 |
+
msgid "HappyForms Upgrade"
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/classes/class-happyforms.php:135
|
113 |
+
#: inc/core/templates/customize-form-parts-drawer.php:30
|
114 |
+
#: inc/templates/customize-controls/checkbox_dummy.php:7
|
115 |
+
msgid "Upgrade"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/classes/class-message-controller.php:244
|
119 |
+
#: inc/classes/class-message-controller.php:335
|
120 |
+
#: inc/classes/class-message-controller.php:370
|
121 |
+
#: inc/core/classes/class-form-controller.php:748
|
122 |
+
msgid "Oops! Your response is invalid — please review your message."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/classes/class-message-controller.php:682
|
126 |
+
#: inc/templates/email-owner.php:29
|
127 |
+
msgid "Tracking number"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/classes/parts/class-part-attachment-dummy.php:8
|
131 |
+
msgid "Attachment"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: inc/classes/parts/class-part-attachment-dummy.php:9
|
135 |
+
msgid "For allowing file uploads with easy drag and drop zone."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/classes/parts/class-part-page-break-dummy.php:8
|
139 |
+
msgid "Page Break"
|
|
|
|
|
|
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/classes/parts/class-part-page-break-dummy.php:9
|
143 |
+
msgid "For splitting your form across multiple pages with navigation controls."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/classes/parts/class-part-poll-dummy.php:8
|
147 |
+
msgid "Poll"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/classes/parts/class-part-poll-dummy.php:9
|
151 |
+
msgid "For collecting opinions and showing published results in a bar chart."
|
|
|
|
|
|
|
152 |
msgstr ""
|
153 |
|
154 |
+
#. Plugin Name of the plugin/theme
|
155 |
+
msgid "HappyForms"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: inc/core/classes/class-block.php:50
|
159 |
+
msgid "Contact form to manage and respond to conversations with customers."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/core/classes/class-block.php:101
|
163 |
+
msgid "Do you want access to HappyForms’ most powerful features?"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: inc/core/classes/class-block.php:102
|
167 |
+
msgid "Discover HappyForms Upgrade"
|
|
|
|
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/core/classes/class-block.php:107
|
171 |
+
msgid "Select"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/core/classes/class-block.php:108
|
175 |
+
msgid "Which form would you like to add here?"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/core/classes/class-block.php:109
|
179 |
+
msgid "HappyForms Settings"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/core/classes/class-block.php:110
|
183 |
+
msgid "Edit Form"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: inc/core/classes/class-form-admin.php:155
|
187 |
+
#: inc/core/classes/class-form-controller.php:79
|
188 |
+
msgid "View form"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: inc/core/classes/class-form-admin.php:160
|
192 |
+
msgid "Preview form"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: inc/core/classes/class-form-admin.php:165
|
196 |
+
#: inc/core/classes/class-form-admin.php:168
|
197 |
+
msgid "Form updated."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/core/classes/class-form-admin.php:166
|
201 |
+
msgid "Custom field updated."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/core/classes/class-form-admin.php:167
|
205 |
+
msgid "Custom field deleted."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/core/classes/class-form-admin.php:169
|
209 |
+
msgid "Form restored to revision from %s."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/core/classes/class-form-admin.php:170
|
213 |
+
msgid "Form published."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/core/classes/class-form-admin.php:171
|
217 |
+
msgid "Form saved."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/core/classes/class-form-admin.php:172
|
221 |
+
msgid "Form submitted."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: inc/core/classes/class-form-admin.php:173
|
225 |
+
msgid "Form scheduled."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/core/classes/class-form-admin.php:174
|
229 |
+
msgid "Form draft updated."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/core/classes/class-form-admin.php:197
|
233 |
+
msgid "%s form updated."
|
234 |
+
msgid_plural "%s forms updated."
|
235 |
+
msgstr[0] ""
|
236 |
+
msgstr[1] ""
|
237 |
|
238 |
+
#: inc/core/classes/class-form-admin.php:198
|
239 |
+
msgid "%s form not updated, somebody is editing it."
|
240 |
+
msgid_plural "%s forms not updated, somebody is editing them."
|
241 |
+
msgstr[0] ""
|
242 |
+
msgstr[1] ""
|
243 |
+
|
244 |
+
#: inc/core/classes/class-form-admin.php:199
|
245 |
+
msgid "%s form permanently deleted."
|
246 |
+
msgid_plural "%s forms permanently deleted."
|
247 |
+
msgstr[0] ""
|
248 |
+
msgstr[1] ""
|
249 |
+
|
250 |
+
#: inc/core/classes/class-form-admin.php:200
|
251 |
+
msgid "%s form moved to the Trash."
|
252 |
+
msgid_plural "%s forms moved to the Trash."
|
253 |
+
msgstr[0] ""
|
254 |
+
msgstr[1] ""
|
255 |
+
|
256 |
+
#: inc/core/classes/class-form-admin.php:201
|
257 |
+
msgid "%s form restored from the Trash."
|
258 |
+
msgid_plural "%s forms restored from the Trash."
|
259 |
+
msgstr[0] ""
|
260 |
+
msgstr[1] ""
|
261 |
+
|
262 |
+
#: inc/core/classes/class-form-admin.php:254
|
263 |
+
msgid "Shortcode"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/core/classes/class-form-admin.php:255
|
267 |
+
msgid "Author"
|
|
|
|
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/core/classes/class-form-admin.php:293
|
271 |
+
msgid "Copy to clipboard"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/core/classes/class-form-admin.php:347
|
275 |
+
#: inc/core/templates/customize-form-steps.php:5
|
276 |
+
msgid "Build"
|
|
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/core/classes/class-form-admin.php:351
|
280 |
+
#: inc/core/templates/customize-form-item.php:21
|
281 |
+
#: inc/core/templates/customize-form-steps.php:8
|
282 |
+
#: inc/core/templates/customize-form-steps.php:15
|
283 |
+
msgid "Setup"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/core/classes/class-form-admin.php:355
|
287 |
+
#: inc/core/templates/customize-form-item.php:24
|
288 |
+
#: inc/core/templates/customize-form-steps.php:18
|
289 |
+
msgid "Style"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/core/classes/class-form-admin.php:359
|
293 |
+
#: inc/core/templates/customize-form-item.php:27
|
294 |
+
#: inc/core/templates/customize-form-part-footer.php:4
|
295 |
+
msgid "Duplicate"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/core/classes/class-form-admin.php:363
|
299 |
+
msgid "Trash"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/core/classes/class-form-admin.php:408
|
303 |
+
msgid "Form duplicated succesfully."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/core/classes/class-form-controller.php:74
|
307 |
+
msgid "Forms"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/core/classes/class-form-controller.php:75
|
311 |
+
msgid "Form"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/core/classes/class-form-controller.php:76
|
315 |
+
#: inc/core/classes/class-form-controller.php:78
|
316 |
+
msgid "Build form"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/core/classes/class-form-controller.php:77
|
320 |
+
msgid "Edit form"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: inc/core/classes/class-form-controller.php:80
|
324 |
+
msgid "View forms"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/core/classes/class-form-controller.php:81
|
328 |
+
msgid "Search Forms"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/core/classes/class-form-controller.php:82
|
332 |
+
msgid "No form found"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: inc/core/classes/class-form-controller.php:83
|
336 |
+
msgid "No forms found in Trash"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: inc/core/classes/class-form-controller.php:84
|
340 |
+
#: inc/core/classes/class-form-controller.php:85
|
341 |
+
#: inc/core/classes/class-happyforms-core.php:173
|
342 |
+
#: inc/core/classes/class-happyforms-core.php:174
|
343 |
+
msgid "All Forms"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: inc/core/classes/class-form-controller.php:184
|
347 |
+
msgid "Untitled form"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: inc/core/classes/class-form-controller.php:614
|
351 |
+
msgid " Copy"
|
352 |
msgstr ""
|
353 |
|
354 |
#: inc/core/classes/class-form-part-library.php:197
|
1017 |
msgid "Add New"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: inc/core/classes/class-happyforms-core.php:191
|
1021 |
+
#: inc/core/classes/class-happyforms-core.php:192
|
1022 |
msgid "Responses"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: inc/core/classes/class-happyforms-core.php:199
|
1026 |
+
#: inc/core/classes/class-happyforms-core.php:200
|
1027 |
msgid "Welcome"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: inc/core/classes/class-happyforms-core.php:319
|
1031 |
msgid "HappyForm"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: inc/core/classes/class-happyforms-core.php:323
|
1035 |
msgid "New HappyForm"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: inc/core/classes/class-happyforms-core.php:444
|
1039 |
msgid "Insert HappyForm"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: inc/core/classes/class-happyforms-core.php:444
|
1043 |
msgid "Add HappyForms"
|
1044 |
msgstr ""
|
1045 |
|
1503 |
msgid "Not a valid URL."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: inc/core/helpers/helper-activation.php:70
|
1507 |
+
msgid "Sample Form"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: inc/core/helpers/helper-activation.php:100
|
1511 |
+
msgid "First name"
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: inc/core/helpers/helper-activation.php:105
|
1515 |
+
msgid "Last name"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: inc/core/helpers/helper-activation.php:110
|
1519 |
+
msgid "What's your reason for contacting us?"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: inc/core/helpers/helper-activation.php:113
|
1523 |
+
msgid "Need technical help"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: inc/core/helpers/helper-activation.php:116
|
1527 |
+
msgid "Want to suggest a feature"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: inc/core/helpers/helper-activation.php:119
|
1531 |
+
msgid "Asking about my account"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: inc/core/helpers/helper-activation.php:125
|
1535 |
+
msgid "What's your age?"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: inc/core/helpers/helper-activation.php:130
|
1539 |
+
msgid "Your message"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: inc/core/helpers/helper-form-templates.php:65
|
1543 |
+
msgid "Spam protection, skip this field"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: inc/core/helpers/helper-form-templates.php:940
|
1547 |
msgid "Get my location"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: inc/core/helpers/helper-form-templates.php:940
|
1551 |
msgid "Fetching location…"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: inc/core/helpers/helper-form-templates.php:950
|
1555 |
msgid "January"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: inc/core/helpers/helper-form-templates.php:951
|
1559 |
msgid "February"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: inc/core/helpers/helper-form-templates.php:952
|
1563 |
msgid "March"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: inc/core/helpers/helper-form-templates.php:953
|
1567 |
msgid "April"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: inc/core/helpers/helper-form-templates.php:954
|
1571 |
msgid "May"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: inc/core/helpers/helper-form-templates.php:955
|
1575 |
msgid "June"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: inc/core/helpers/helper-form-templates.php:956
|
1579 |
msgid "July"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: inc/core/helpers/helper-form-templates.php:957
|
1583 |
msgid "August"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: inc/core/helpers/helper-form-templates.php:958
|
1587 |
msgid "September"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: inc/core/helpers/helper-form-templates.php:959
|
1591 |
msgid "October"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: inc/core/helpers/helper-form-templates.php:960
|
1595 |
msgid "November"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: inc/core/helpers/helper-form-templates.php:961
|
1599 |
msgid "December"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: inc/core/helpers/helper-form-templates.php:1002
|
1603 |
#: inc/core/helpers/helper-misc.php:216
|
1604 |
msgid "Andorra"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: inc/core/helpers/helper-form-templates.php:1003
|
1608 |
#: inc/core/helpers/helper-misc.php:434
|
1609 |
msgid "United Arab Emirates"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: inc/core/helpers/helper-form-templates.php:1004
|
1613 |
#: inc/core/helpers/helper-misc.php:212
|
1614 |
msgid "Afghanistan"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: inc/core/helpers/helper-form-templates.php:1005
|
1618 |
#: inc/core/helpers/helper-misc.php:220
|
1619 |
msgid "Antigua and Barbuda"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: inc/core/helpers/helper-form-templates.php:1006
|
1623 |
#: inc/core/helpers/helper-misc.php:218
|
1624 |
msgid "Anguilla"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: inc/core/helpers/helper-form-templates.php:1007
|
1628 |
#: inc/core/helpers/helper-misc.php:213
|
1629 |
msgid "Albania"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: inc/core/helpers/helper-form-templates.php:1008
|
1633 |
#: inc/core/helpers/helper-misc.php:222
|
1634 |
msgid "Armenia"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: inc/core/helpers/helper-form-templates.php:1009
|
1638 |
#: inc/core/helpers/helper-misc.php:217
|
1639 |
msgid "Angola"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: inc/core/helpers/helper-form-templates.php:1010
|
1643 |
#: inc/core/helpers/helper-misc.php:219
|
1644 |
msgid "Antarctica"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: inc/core/helpers/helper-form-templates.php:1011
|
1648 |
#: inc/core/helpers/helper-misc.php:221
|
1649 |
msgid "Argentina"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: inc/core/helpers/helper-form-templates.php:1012
|
1653 |
#: inc/core/helpers/helper-misc.php:215
|
1654 |
msgid "American Samoa"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: inc/core/helpers/helper-form-templates.php:1013
|
1658 |
#: inc/core/helpers/helper-misc.php:225
|
1659 |
msgid "Austria"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: inc/core/helpers/helper-form-templates.php:1014
|
1663 |
#: inc/core/helpers/helper-misc.php:224
|
1664 |
msgid "Australia"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: inc/core/helpers/helper-form-templates.php:1015
|
1668 |
#: inc/core/helpers/helper-misc.php:223
|
1669 |
msgid "Aruba"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: inc/core/helpers/helper-form-templates.php:1016
|
1673 |
#: inc/core/helpers/helper-misc.php:226
|
1674 |
msgid "Azerbaijan"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: inc/core/helpers/helper-form-templates.php:1017
|
1678 |
msgid "Bosnia and Herzegovina"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: inc/core/helpers/helper-form-templates.php:1018
|
1682 |
#: inc/core/helpers/helper-misc.php:230
|
1683 |
msgid "Barbados"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: inc/core/helpers/helper-form-templates.php:1019
|
1687 |
#: inc/core/helpers/helper-misc.php:229
|
1688 |
msgid "Bangladesh"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: inc/core/helpers/helper-form-templates.php:1020
|
1692 |
#: inc/core/helpers/helper-misc.php:232
|
1693 |
msgid "Belgium"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: inc/core/helpers/helper-form-templates.php:1021
|
1697 |
#: inc/core/helpers/helper-misc.php:245
|
1698 |
msgid "Burkina Faso"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: inc/core/helpers/helper-form-templates.php:1022
|
1702 |
#: inc/core/helpers/helper-misc.php:244
|
1703 |
msgid "Bulgaria"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: inc/core/helpers/helper-form-templates.php:1023
|
1707 |
#: inc/core/helpers/helper-misc.php:228
|
1708 |
msgid "Bahrain"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: inc/core/helpers/helper-form-templates.php:1024
|
1712 |
#: inc/core/helpers/helper-misc.php:246
|
1713 |
msgid "Burundi"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: inc/core/helpers/helper-form-templates.php:1025
|
1717 |
#: inc/core/helpers/helper-misc.php:234
|
1718 |
msgid "Benin"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: inc/core/helpers/helper-form-templates.php:1026
|
1722 |
msgid "Saint Barthelemy"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: inc/core/helpers/helper-form-templates.php:1027
|
1726 |
#: inc/core/helpers/helper-misc.php:235
|
1727 |
msgid "Bermuda"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: inc/core/helpers/helper-form-templates.php:1028
|
1731 |
#: inc/core/helpers/helper-misc.php:243
|
1732 |
msgid "Brunei Darussalam"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: inc/core/helpers/helper-form-templates.php:1029
|
1736 |
#: inc/core/helpers/helper-misc.php:237
|
1737 |
msgid "Bolivia"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: inc/core/helpers/helper-form-templates.php:1030
|
1741 |
#: inc/core/helpers/helper-misc.php:241
|
1742 |
msgid "Brazil"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: inc/core/helpers/helper-form-templates.php:1031
|
1746 |
#: inc/core/helpers/helper-misc.php:227
|
1747 |
msgid "Bahamas"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: inc/core/helpers/helper-form-templates.php:1032
|
1751 |
#: inc/core/helpers/helper-misc.php:236
|
1752 |
msgid "Bhutan"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: inc/core/helpers/helper-form-templates.php:1033
|
1756 |
#: inc/core/helpers/helper-misc.php:239
|
1757 |
msgid "Botswana"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: inc/core/helpers/helper-form-templates.php:1034
|
1761 |
#: inc/core/helpers/helper-misc.php:231
|
1762 |
msgid "Belarus"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: inc/core/helpers/helper-form-templates.php:1035
|
1766 |
#: inc/core/helpers/helper-misc.php:233
|
1767 |
msgid "Belize"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: inc/core/helpers/helper-form-templates.php:1036
|
1771 |
#: inc/core/helpers/helper-misc.php:249
|
1772 |
msgid "Canada"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: inc/core/helpers/helper-form-templates.php:1037
|
1776 |
msgid "Congo, The Democratic Republic of the"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: inc/core/helpers/helper-form-templates.php:1038
|
1780 |
#: inc/core/helpers/helper-misc.php:252
|
1781 |
msgid "Central African Republic"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: inc/core/helpers/helper-form-templates.php:1039
|
1785 |
#: inc/core/helpers/helper-misc.php:260
|
1786 |
msgid "Congo"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: inc/core/helpers/helper-form-templates.php:1040
|
1790 |
#: inc/core/helpers/helper-misc.php:417
|
1791 |
msgid "Switzerland"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: inc/core/helpers/helper-form-templates.php:1041
|
1795 |
#: inc/core/helpers/helper-misc.php:262
|
1796 |
msgid "Cook Islands"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: inc/core/helpers/helper-form-templates.php:1042
|
1800 |
#: inc/core/helpers/helper-misc.php:254
|
1801 |
msgid "Chile"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: inc/core/helpers/helper-form-templates.php:1043
|
1805 |
#: inc/core/helpers/helper-misc.php:248
|
1806 |
msgid "Cameroon"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: inc/core/helpers/helper-form-templates.php:1044
|
1810 |
#: inc/core/helpers/helper-misc.php:255
|
1811 |
msgid "China"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: inc/core/helpers/helper-form-templates.php:1045
|
1815 |
#: inc/core/helpers/helper-misc.php:258
|
1816 |
msgid "Colombia"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: inc/core/helpers/helper-form-templates.php:1046
|
1820 |
#: inc/core/helpers/helper-misc.php:263
|
1821 |
msgid "Costa Rica"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: inc/core/helpers/helper-form-templates.php:1047
|
1825 |
#: inc/core/helpers/helper-misc.php:266
|
1826 |
msgid "Cuba"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: inc/core/helpers/helper-form-templates.php:1048
|
1830 |
#: inc/core/helpers/helper-misc.php:250
|
1831 |
msgid "Cape Verde"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: inc/core/helpers/helper-form-templates.php:1049
|
1835 |
#: inc/core/helpers/helper-misc.php:267
|
1836 |
msgid "Cyprus"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: inc/core/helpers/helper-form-templates.php:1050
|
1840 |
#: inc/core/helpers/helper-misc.php:268
|
1841 |
msgid "Czech Republic"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: inc/core/helpers/helper-form-templates.php:1051
|
1845 |
#: inc/core/helpers/helper-misc.php:293
|
1846 |
msgid "Germany"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: inc/core/helpers/helper-form-templates.php:1052
|
1850 |
#: inc/core/helpers/helper-misc.php:270
|
1851 |
msgid "Djibouti"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: inc/core/helpers/helper-form-templates.php:1053
|
1855 |
#: inc/core/helpers/helper-misc.php:269
|
1856 |
msgid "Denmark"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: inc/core/helpers/helper-form-templates.php:1054
|
1860 |
#: inc/core/helpers/helper-misc.php:271
|
1861 |
msgid "Dominica"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: inc/core/helpers/helper-form-templates.php:1055
|
1865 |
#: inc/core/helpers/helper-misc.php:272
|
1866 |
msgid "Dominican Republic"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: inc/core/helpers/helper-form-templates.php:1056
|
1870 |
#: inc/core/helpers/helper-misc.php:214
|
1871 |
msgid "Algeria"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: inc/core/helpers/helper-form-templates.php:1057
|
1875 |
#: inc/core/helpers/helper-misc.php:274
|
1876 |
msgid "Ecuador"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: inc/core/helpers/helper-form-templates.php:1058
|
1880 |
#: inc/core/helpers/helper-misc.php:279
|
1881 |
msgid "Estonia"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: inc/core/helpers/helper-form-templates.php:1059
|
1885 |
#: inc/core/helpers/helper-misc.php:275
|
1886 |
msgid "Egypt"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: inc/core/helpers/helper-form-templates.php:1060
|
1890 |
#: inc/core/helpers/helper-misc.php:278
|
1891 |
msgid "Eritrea"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: inc/core/helpers/helper-form-templates.php:1061
|
1895 |
#: inc/core/helpers/helper-misc.php:408
|
1896 |
msgid "Spain"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: inc/core/helpers/helper-form-templates.php:1062
|
1900 |
#: inc/core/helpers/helper-misc.php:280
|
1901 |
msgid "Ethiopia"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: inc/core/helpers/helper-form-templates.php:1063
|
1905 |
#: inc/core/helpers/helper-misc.php:284
|
1906 |
msgid "Finland"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: inc/core/helpers/helper-form-templates.php:1064
|
1910 |
#: inc/core/helpers/helper-misc.php:283
|
1911 |
msgid "Fiji"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: inc/core/helpers/helper-form-templates.php:1065
|
1915 |
#: inc/core/helpers/helper-misc.php:281
|
1916 |
msgid "Falkland Islands (Malvinas)"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: inc/core/helpers/helper-form-templates.php:1066
|
1920 |
#: inc/core/helpers/helper-misc.php:352
|
1921 |
msgid "Micronesia, Federated States of"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: inc/core/helpers/helper-form-templates.php:1067
|
1925 |
#: inc/core/helpers/helper-misc.php:282
|
1926 |
msgid "Faroe Islands"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: inc/core/helpers/helper-form-templates.php:1068
|
1930 |
#: inc/core/helpers/helper-misc.php:285
|
1931 |
msgid "France"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: inc/core/helpers/helper-form-templates.php:1069
|
1935 |
#: inc/core/helpers/helper-misc.php:290
|
1936 |
msgid "Gabon"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: inc/core/helpers/helper-form-templates.php:1070
|
1940 |
#: inc/core/helpers/helper-misc.php:435
|
1941 |
msgid "United Kingdom"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: inc/core/helpers/helper-form-templates.php:1071
|
1945 |
#: inc/core/helpers/helper-misc.php:298
|
1946 |
msgid "Grenada"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: inc/core/helpers/helper-form-templates.php:1072
|
1950 |
#: inc/core/helpers/helper-misc.php:292
|
1951 |
msgid "Georgia"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: inc/core/helpers/helper-form-templates.php:1073
|
1955 |
#: inc/core/helpers/helper-misc.php:294
|
1956 |
msgid "Ghana"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: inc/core/helpers/helper-form-templates.php:1074
|
1960 |
#: inc/core/helpers/helper-misc.php:295
|
1961 |
msgid "Gibraltar"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: inc/core/helpers/helper-form-templates.php:1075
|
1965 |
#: inc/core/helpers/helper-misc.php:297
|
1966 |
msgid "Greenland"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: inc/core/helpers/helper-form-templates.php:1076
|
1970 |
#: inc/core/helpers/helper-misc.php:291
|
1971 |
msgid "Gambia"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: inc/core/helpers/helper-form-templates.php:1077
|
1975 |
#: inc/core/helpers/helper-misc.php:302
|
1976 |
msgid "Guinea"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: inc/core/helpers/helper-form-templates.php:1078
|
1980 |
#: inc/core/helpers/helper-misc.php:296
|
1981 |
msgid "Greece"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: inc/core/helpers/helper-form-templates.php:1079
|
1985 |
#: inc/core/helpers/helper-misc.php:301
|
1986 |
msgid "Guatemala"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: inc/core/helpers/helper-form-templates.php:1080
|
1990 |
#: inc/core/helpers/helper-misc.php:300
|
1991 |
msgid "Guam"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: inc/core/helpers/helper-form-templates.php:1081
|
1995 |
msgid "Guinea-bissau"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: inc/core/helpers/helper-form-templates.php:1082
|
1999 |
#: inc/core/helpers/helper-misc.php:304
|
2000 |
msgid "Guyana"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: inc/core/helpers/helper-form-templates.php:1083
|
2004 |
#: inc/core/helpers/helper-misc.php:309
|
2005 |
msgid "Hong Kong"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: inc/core/helpers/helper-form-templates.php:1084
|
2009 |
#: inc/core/helpers/helper-misc.php:308
|
2010 |
msgid "Honduras"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: inc/core/helpers/helper-form-templates.php:1085
|
2014 |
msgid "Croatia"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: inc/core/helpers/helper-form-templates.php:1086
|
2018 |
#: inc/core/helpers/helper-misc.php:305
|
2019 |
msgid "Haiti"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: inc/core/helpers/helper-form-templates.php:1087
|
2023 |
#: inc/core/helpers/helper-misc.php:310
|
2024 |
msgid "Hungary"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: inc/core/helpers/helper-form-templates.php:1088
|
2028 |
#: inc/core/helpers/helper-misc.php:313
|
2029 |
msgid "Indonesia"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: inc/core/helpers/helper-form-templates.php:1089
|
2033 |
#: inc/core/helpers/helper-misc.php:316
|
2034 |
msgid "Ireland"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: inc/core/helpers/helper-form-templates.php:1090
|
2038 |
#: inc/core/helpers/helper-misc.php:317
|
2039 |
msgid "Israel"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: inc/core/helpers/helper-form-templates.php:1091
|
2043 |
#: inc/core/helpers/helper-misc.php:312
|
2044 |
msgid "India"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: inc/core/helpers/helper-form-templates.php:1092
|
2048 |
#: inc/core/helpers/helper-misc.php:315
|
2049 |
msgid "Iraq"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: inc/core/helpers/helper-form-templates.php:1093
|
2053 |
msgid "Iran, Islamic Republic of"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: inc/core/helpers/helper-form-templates.php:1094
|
2057 |
#: inc/core/helpers/helper-misc.php:311
|
2058 |
msgid "Iceland"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: inc/core/helpers/helper-form-templates.php:1095
|
2062 |
#: inc/core/helpers/helper-misc.php:318
|
2063 |
msgid "Italy"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: inc/core/helpers/helper-form-templates.php:1096
|
2067 |
#: inc/core/helpers/helper-misc.php:319
|
2068 |
msgid "Jamaica"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: inc/core/helpers/helper-form-templates.php:1097
|
2072 |
#: inc/core/helpers/helper-misc.php:321
|
2073 |
msgid "Jordan"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: inc/core/helpers/helper-form-templates.php:1098
|
2077 |
#: inc/core/helpers/helper-misc.php:320
|
2078 |
msgid "Japan"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: inc/core/helpers/helper-form-templates.php:1099
|
2082 |
#: inc/core/helpers/helper-misc.php:323
|
2083 |
msgid "Kenya"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: inc/core/helpers/helper-form-templates.php:1100
|
2087 |
#: inc/core/helpers/helper-misc.php:328
|
2088 |
msgid "Kyrgyzstan"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: inc/core/helpers/helper-form-templates.php:1101
|
2092 |
#: inc/core/helpers/helper-misc.php:247
|
2093 |
msgid "Cambodia"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: inc/core/helpers/helper-form-templates.php:1102
|
2097 |
#: inc/core/helpers/helper-misc.php:324
|
2098 |
msgid "Kiribati"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: inc/core/helpers/helper-form-templates.php:1103
|
2102 |
#: inc/core/helpers/helper-misc.php:259
|
2103 |
msgid "Comoros"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: inc/core/helpers/helper-form-templates.php:1104
|
2107 |
#: inc/core/helpers/helper-misc.php:391
|
2108 |
msgid "Saint Kitts and Nevis"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: inc/core/helpers/helper-form-templates.php:1105
|
2112 |
msgid "Korea Democratic Peoples Republic of"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: inc/core/helpers/helper-form-templates.php:1106
|
2116 |
msgid "Korea Republic of"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: inc/core/helpers/helper-form-templates.php:1107
|
2120 |
#: inc/core/helpers/helper-misc.php:327
|
2121 |
msgid "Kuwait"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: inc/core/helpers/helper-form-templates.php:1108
|
2125 |
#: inc/core/helpers/helper-misc.php:251
|
2126 |
msgid "Cayman Islands"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: inc/core/helpers/helper-form-templates.php:1109
|
2130 |
msgid "Lao Peoples Democratic Republic"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: inc/core/helpers/helper-form-templates.php:1110
|
2134 |
#: inc/core/helpers/helper-misc.php:331
|
2135 |
msgid "Lebanon"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: inc/core/helpers/helper-form-templates.php:1111
|
2139 |
#: inc/core/helpers/helper-misc.php:392
|
2140 |
msgid "Saint Lucia"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: inc/core/helpers/helper-form-templates.php:1112
|
2144 |
#: inc/core/helpers/helper-misc.php:335
|
2145 |
msgid "Liechtenstein"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: inc/core/helpers/helper-form-templates.php:1113
|
2149 |
#: inc/core/helpers/helper-misc.php:409
|
2150 |
msgid "Sri Lanka"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: inc/core/helpers/helper-form-templates.php:1114
|
2154 |
#: inc/core/helpers/helper-misc.php:333
|
2155 |
msgid "Liberia"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: inc/core/helpers/helper-form-templates.php:1115
|
2159 |
#: inc/core/helpers/helper-misc.php:332
|
2160 |
msgid "Lesotho"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: inc/core/helpers/helper-form-templates.php:1116
|
2164 |
#: inc/core/helpers/helper-misc.php:336
|
2165 |
msgid "Lithuania"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: inc/core/helpers/helper-form-templates.php:1117
|
2169 |
#: inc/core/helpers/helper-misc.php:337
|
2170 |
msgid "Luxembourg"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: inc/core/helpers/helper-form-templates.php:1118
|
2174 |
#: inc/core/helpers/helper-misc.php:330
|
2175 |
msgid "Latvia"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: inc/core/helpers/helper-form-templates.php:1119
|
2179 |
#: inc/core/helpers/helper-misc.php:334
|
2180 |
msgid "Libyan Arab Jamahiriya"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: inc/core/helpers/helper-form-templates.php:1120
|
2184 |
#: inc/core/helpers/helper-misc.php:357
|
2185 |
msgid "Morocco"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: inc/core/helpers/helper-form-templates.php:1121
|
2189 |
#: inc/core/helpers/helper-misc.php:354
|
2190 |
msgid "Monaco"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: inc/core/helpers/helper-form-templates.php:1122
|
2194 |
#: inc/core/helpers/helper-misc.php:353
|
2195 |
msgid "Moldova, Republic of"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: inc/core/helpers/helper-form-templates.php:1123
|
2199 |
msgid "Montenegro"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: inc/core/helpers/helper-form-templates.php:1124
|
2203 |
#: inc/core/helpers/helper-misc.php:340
|
2204 |
msgid "Madagascar"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: inc/core/helpers/helper-form-templates.php:1125
|
2208 |
#: inc/core/helpers/helper-misc.php:346
|
2209 |
msgid "Marshall Islands"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: inc/core/helpers/helper-form-templates.php:1126
|
2213 |
#: inc/core/helpers/helper-misc.php:339
|
2214 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: inc/core/helpers/helper-form-templates.php:1127
|
2218 |
#: inc/core/helpers/helper-misc.php:344
|
2219 |
msgid "Mali"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: inc/core/helpers/helper-form-templates.php:1128
|
2223 |
#: inc/core/helpers/helper-misc.php:359
|
2224 |
msgid "Myanmar"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: inc/core/helpers/helper-form-templates.php:1129
|
2228 |
#: inc/core/helpers/helper-misc.php:355
|
2229 |
msgid "Mongolia"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: inc/core/helpers/helper-form-templates.php:1130
|
2233 |
#: inc/core/helpers/helper-misc.php:338
|
2234 |
msgid "Macau"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: inc/core/helpers/helper-form-templates.php:1131
|
2238 |
#: inc/core/helpers/helper-misc.php:372
|
2239 |
msgid "Northern Mariana Islands"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: inc/core/helpers/helper-form-templates.php:1132
|
2243 |
#: inc/core/helpers/helper-misc.php:348
|
2244 |
msgid "Mauritania"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: inc/core/helpers/helper-form-templates.php:1133
|
2248 |
#: inc/core/helpers/helper-misc.php:356
|
2249 |
msgid "Montserrat"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: inc/core/helpers/helper-form-templates.php:1134
|
2253 |
#: inc/core/helpers/helper-misc.php:345
|
2254 |
msgid "Malta"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: inc/core/helpers/helper-form-templates.php:1135
|
2258 |
#: inc/core/helpers/helper-misc.php:349
|
2259 |
msgid "Mauritius"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: inc/core/helpers/helper-form-templates.php:1136
|
2263 |
#: inc/core/helpers/helper-misc.php:343
|
2264 |
msgid "Maldives"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: inc/core/helpers/helper-form-templates.php:1137
|
2268 |
#: inc/core/helpers/helper-misc.php:341
|
2269 |
msgid "Malawi"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: inc/core/helpers/helper-form-templates.php:1138
|
2273 |
#: inc/core/helpers/helper-misc.php:351
|
2274 |
msgid "Mexico"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: inc/core/helpers/helper-form-templates.php:1139
|
2278 |
#: inc/core/helpers/helper-misc.php:342
|
2279 |
msgid "Malaysia"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: inc/core/helpers/helper-form-templates.php:1140
|
2283 |
#: inc/core/helpers/helper-misc.php:358
|
2284 |
msgid "Mozambique"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: inc/core/helpers/helper-form-templates.php:1141
|
2288 |
#: inc/core/helpers/helper-misc.php:360
|
2289 |
msgid "Namibia"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: inc/core/helpers/helper-form-templates.php:1142
|
2293 |
#: inc/core/helpers/helper-misc.php:365
|
2294 |
msgid "New Caledonia"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: inc/core/helpers/helper-form-templates.php:1143
|
2298 |
#: inc/core/helpers/helper-misc.php:368
|
2299 |
msgid "Niger"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: inc/core/helpers/helper-form-templates.php:1144
|
2303 |
#: inc/core/helpers/helper-misc.php:369
|
2304 |
msgid "Nigeria"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: inc/core/helpers/helper-form-templates.php:1145
|
2308 |
#: inc/core/helpers/helper-misc.php:367
|
2309 |
msgid "Nicaragua"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: inc/core/helpers/helper-form-templates.php:1146
|
2313 |
#: inc/core/helpers/helper-misc.php:363
|
2314 |
msgid "Netherlands"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: inc/core/helpers/helper-form-templates.php:1147
|
2318 |
#: inc/core/helpers/helper-misc.php:373
|
2319 |
msgid "Norway"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: inc/core/helpers/helper-form-templates.php:1148
|
2323 |
#: inc/core/helpers/helper-misc.php:362
|
2324 |
msgid "Nepal"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: inc/core/helpers/helper-form-templates.php:1149
|
2328 |
#: inc/core/helpers/helper-misc.php:361
|
2329 |
msgid "Nauru"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: inc/core/helpers/helper-form-templates.php:1150
|
2333 |
#: inc/core/helpers/helper-misc.php:370
|
2334 |
msgid "Niue"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: inc/core/helpers/helper-form-templates.php:1151
|
2338 |
#: inc/core/helpers/helper-misc.php:366
|
2339 |
msgid "New Zealand"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: inc/core/helpers/helper-form-templates.php:1152
|
2343 |
#: inc/core/helpers/helper-misc.php:374
|
2344 |
msgid "Oman"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: inc/core/helpers/helper-form-templates.php:1153
|
2348 |
#: inc/core/helpers/helper-misc.php:377
|
2349 |
msgid "Panama"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: inc/core/helpers/helper-form-templates.php:1154
|
2353 |
#: inc/core/helpers/helper-misc.php:380
|
2354 |
msgid "Peru"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: inc/core/helpers/helper-form-templates.php:1155
|
2358 |
#: inc/core/helpers/helper-misc.php:288
|
2359 |
msgid "French Polynesia"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: inc/core/helpers/helper-form-templates.php:1156
|
2363 |
#: inc/core/helpers/helper-misc.php:378
|
2364 |
msgid "Papua New Guinea"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: inc/core/helpers/helper-form-templates.php:1157
|
2368 |
#: inc/core/helpers/helper-misc.php:381
|
2369 |
msgid "Philippines"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: inc/core/helpers/helper-form-templates.php:1158
|
2373 |
#: inc/core/helpers/helper-misc.php:375
|
2374 |
msgid "Pakistan"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: inc/core/helpers/helper-form-templates.php:1159
|
2378 |
#: inc/core/helpers/helper-misc.php:383
|
2379 |
msgid "Poland"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: inc/core/helpers/helper-form-templates.php:1160
|
2383 |
msgid "Saint Pierre and Miquelon"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: inc/core/helpers/helper-form-templates.php:1161
|
2387 |
#: inc/core/helpers/helper-misc.php:382
|
2388 |
msgid "Pitcairn"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: inc/core/helpers/helper-form-templates.php:1162
|
2392 |
#: inc/core/helpers/helper-misc.php:384
|
2393 |
msgid "Portugal"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: inc/core/helpers/helper-form-templates.php:1163
|
2397 |
#: inc/core/helpers/helper-misc.php:376
|
2398 |
msgid "Palau"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: inc/core/helpers/helper-form-templates.php:1164
|
2402 |
#: inc/core/helpers/helper-misc.php:379
|
2403 |
msgid "Paraguay"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: inc/core/helpers/helper-form-templates.php:1165
|
2407 |
#: inc/core/helpers/helper-misc.php:386
|
2408 |
msgid "Qatar"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: inc/core/helpers/helper-form-templates.php:1166
|
2412 |
#: inc/core/helpers/helper-misc.php:388
|
2413 |
msgid "Romania"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: inc/core/helpers/helper-form-templates.php:1167
|
2417 |
msgid "Serbia"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: inc/core/helpers/helper-form-templates.php:1168
|
2421 |
#: inc/core/helpers/helper-misc.php:389
|
2422 |
msgid "Russian Federation"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: inc/core/helpers/helper-form-templates.php:1169
|
2426 |
#: inc/core/helpers/helper-misc.php:390
|
2427 |
msgid "Rwanda"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: inc/core/helpers/helper-form-templates.php:1170
|
2431 |
#: inc/core/helpers/helper-misc.php:397
|
2432 |
msgid "Saudi Arabia"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: inc/core/helpers/helper-form-templates.php:1171
|
2436 |
#: inc/core/helpers/helper-misc.php:404
|
2437 |
msgid "Solomon Islands"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: inc/core/helpers/helper-form-templates.php:1172
|
2441 |
#: inc/core/helpers/helper-misc.php:399
|
2442 |
msgid "Seychelles"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: inc/core/helpers/helper-form-templates.php:1173
|
2446 |
#: inc/core/helpers/helper-misc.php:412
|
2447 |
msgid "Sudan"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: inc/core/helpers/helper-form-templates.php:1174
|
2451 |
#: inc/core/helpers/helper-misc.php:416
|
2452 |
msgid "Sweden"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: inc/core/helpers/helper-form-templates.php:1175
|
2456 |
#: inc/core/helpers/helper-misc.php:401
|
2457 |
msgid "Singapore"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: inc/core/helpers/helper-form-templates.php:1176
|
2461 |
msgid "Saint Helena"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: inc/core/helpers/helper-form-templates.php:1177
|
2465 |
#: inc/core/helpers/helper-misc.php:403
|
2466 |
msgid "Slovenia"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: inc/core/helpers/helper-form-templates.php:1178
|
2470 |
msgid "Slovakia"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: inc/core/helpers/helper-form-templates.php:1179
|
2474 |
#: inc/core/helpers/helper-misc.php:400
|
2475 |
msgid "Sierra Leone"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: inc/core/helpers/helper-form-templates.php:1180
|
2479 |
#: inc/core/helpers/helper-misc.php:395
|
2480 |
msgid "San Marino"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: inc/core/helpers/helper-form-templates.php:1181
|
2484 |
#: inc/core/helpers/helper-misc.php:398
|
2485 |
msgid "Senegal"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: inc/core/helpers/helper-form-templates.php:1182
|
2489 |
#: inc/core/helpers/helper-misc.php:405
|
2490 |
msgid "Somalia"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: inc/core/helpers/helper-form-templates.php:1183
|
2494 |
#: inc/core/helpers/helper-misc.php:413
|
2495 |
msgid "Suriname"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: inc/core/helpers/helper-form-templates.php:1184
|
2499 |
#: inc/core/helpers/helper-misc.php:396
|
2500 |
msgid "Sao Tome and Principe"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: inc/core/helpers/helper-form-templates.php:1185
|
2504 |
#: inc/core/helpers/helper-misc.php:276
|
2505 |
msgid "El Salvador"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: inc/core/helpers/helper-form-templates.php:1186
|
2509 |
#: inc/core/helpers/helper-misc.php:418
|
2510 |
msgid "Syrian Arab Republic"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: inc/core/helpers/helper-form-templates.php:1187
|
2514 |
#: inc/core/helpers/helper-misc.php:415
|
2515 |
msgid "Swaziland"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: inc/core/helpers/helper-form-templates.php:1188
|
2519 |
#: inc/core/helpers/helper-misc.php:430
|
2520 |
msgid "Turks and Caicos Islands"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: inc/core/helpers/helper-form-templates.php:1189
|
2524 |
#: inc/core/helpers/helper-misc.php:253
|
2525 |
msgid "Chad"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: inc/core/helpers/helper-form-templates.php:1190
|
2529 |
#: inc/core/helpers/helper-misc.php:423
|
2530 |
msgid "Togo"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: inc/core/helpers/helper-form-templates.php:1191
|
2534 |
#: inc/core/helpers/helper-misc.php:422
|
2535 |
msgid "Thailand"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: inc/core/helpers/helper-form-templates.php:1192
|
2539 |
#: inc/core/helpers/helper-misc.php:420
|
2540 |
msgid "Tajikistan"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: inc/core/helpers/helper-form-templates.php:1193
|
2544 |
#: inc/core/helpers/helper-misc.php:424
|
2545 |
msgid "Tokelau"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: inc/core/helpers/helper-form-templates.php:1194
|
2549 |
msgid "Timor-leste"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: inc/core/helpers/helper-form-templates.php:1195
|
2553 |
#: inc/core/helpers/helper-misc.php:429
|
2554 |
msgid "Turkmenistan"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: inc/core/helpers/helper-form-templates.php:1196
|
2558 |
#: inc/core/helpers/helper-misc.php:427
|
2559 |
msgid "Tunisia"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: inc/core/helpers/helper-form-templates.php:1197
|
2563 |
#: inc/core/helpers/helper-misc.php:425
|
2564 |
msgid "Tonga"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: inc/core/helpers/helper-form-templates.php:1198
|
2568 |
#: inc/core/helpers/helper-misc.php:428
|
2569 |
msgid "Turkey"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: inc/core/helpers/helper-form-templates.php:1199
|
2573 |
#: inc/core/helpers/helper-misc.php:426
|
2574 |
msgid "Trinidad and Tobago"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: inc/core/helpers/helper-form-templates.php:1200
|
2578 |
#: inc/core/helpers/helper-misc.php:431
|
2579 |
msgid "Tuvalu"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: inc/core/helpers/helper-form-templates.php:1201
|
2583 |
#: inc/core/helpers/helper-misc.php:419
|
2584 |
msgid "Taiwan, Province of China"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: inc/core/helpers/helper-form-templates.php:1202
|
2588 |
#: inc/core/helpers/helper-misc.php:421
|
2589 |
msgid "Tanzania, United Republic of"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: inc/core/helpers/helper-form-templates.php:1203
|
2593 |
#: inc/core/helpers/helper-misc.php:433
|
2594 |
msgid "Ukraine"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: inc/core/helpers/helper-form-templates.php:1204
|
2598 |
#: inc/core/helpers/helper-misc.php:432
|
2599 |
msgid "Uganda"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: inc/core/helpers/helper-form-templates.php:1205
|
2603 |
#: inc/core/helpers/helper-misc.php:436
|
2604 |
msgid "United States"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: inc/core/helpers/helper-form-templates.php:1206
|
2608 |
#: inc/core/helpers/helper-misc.php:438
|
2609 |
msgid "Uruguay"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: inc/core/helpers/helper-form-templates.php:1207
|
2613 |
#: inc/core/helpers/helper-misc.php:439
|
2614 |
msgid "Uzbekistan"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: inc/core/helpers/helper-form-templates.php:1208
|
2618 |
#: inc/core/helpers/helper-misc.php:393
|
2619 |
msgid "Saint Vincent and the Grenadines"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: inc/core/helpers/helper-form-templates.php:1209
|
2623 |
#: inc/core/helpers/helper-misc.php:441
|
2624 |
msgid "Venezuela"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: inc/core/helpers/helper-form-templates.php:1210
|
2628 |
msgid "Virgin Islands, British"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: inc/core/helpers/helper-form-templates.php:1211
|
2632 |
msgid "Virgin Islands, U.S."
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: inc/core/helpers/helper-form-templates.php:1212
|
2636 |
#: inc/core/helpers/helper-misc.php:442
|
2637 |
msgid "Vietnam"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: inc/core/helpers/helper-form-templates.php:1213
|
2641 |
#: inc/core/helpers/helper-misc.php:440
|
2642 |
msgid "Vanuatu"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: inc/core/helpers/helper-form-templates.php:1214
|
2646 |
msgid "Wallis and Futuna"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: inc/core/helpers/helper-form-templates.php:1215
|
2650 |
#: inc/core/helpers/helper-misc.php:394
|
2651 |
msgid "Samoa"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: inc/core/helpers/helper-form-templates.php:1216
|
2655 |
#: inc/core/helpers/helper-misc.php:447
|
2656 |
msgid "Yemen"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: inc/core/helpers/helper-form-templates.php:1217
|
2660 |
#: inc/core/helpers/helper-misc.php:350
|
2661 |
msgid "Mayotte"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: inc/core/helpers/helper-form-templates.php:1218
|
2665 |
#: inc/core/helpers/helper-misc.php:406
|
2666 |
msgid "South Africa"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: inc/core/helpers/helper-form-templates.php:1219
|
2670 |
#: inc/core/helpers/helper-misc.php:449
|
2671 |
msgid "Zambia"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: inc/core/helpers/helper-form-templates.php:1220
|
2675 |
#: inc/core/helpers/helper-misc.php:450
|
2676 |
msgid "Zimbabwe"
|
2677 |
msgstr ""
|
4344 |
msgid "Click to edit this part."
|
4345 |
msgstr ""
|
4346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4347 |
#. Plugin URI of the plugin/theme
|
4348 |
msgid "https://happyforms.me"
|
4349 |
msgstr ""
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
Contributors: thethemefoundry
|
4 |
Tags: contact, contact form, email, feedback form, form, form builder, custom form, lead generation, survey form, quote form
|
5 |
Requires at least: 4.8
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.8.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -107,6 +107,12 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
= 1.8.4 =
|
111 |
* Bugfix: Migrations were triggering errors during activation.
|
112 |
* Bugfix: Reply-to email handling had been deactivated.
|
@@ -496,6 +502,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
|
|
496 |
|
497 |
== Upgrade Notice ==
|
498 |
|
|
|
|
|
|
|
499 |
= 1.8.4 =
|
500 |
* Bugfixes.
|
501 |
|
3 |
Contributors: thethemefoundry
|
4 |
Tags: contact, contact form, email, feedback form, form, form builder, custom form, lead generation, survey form, quote form
|
5 |
Requires at least: 4.8
|
6 |
+
Tested up to: 5.2
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.8.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 1.8.5 =
|
111 |
+
* Improvement: Added label to HoneyPot input along with screen reader text for better accessibility compliance.
|
112 |
+
* Bugfix: Reply-to email handling was misbehaving.
|
113 |
+
* Bugfix: Sample form wasn't being installed on activation.
|
114 |
+
* Bugfix: Overlays' display: none rule was ignored on some setups.
|
115 |
+
|
116 |
= 1.8.4 =
|
117 |
* Bugfix: Migrations were triggering errors during activation.
|
118 |
* Bugfix: Reply-to email handling had been deactivated.
|
502 |
|
503 |
== Upgrade Notice ==
|
504 |
|
505 |
+
= 1.8.5 =
|
506 |
+
* Bugfixes.
|
507 |
+
|
508 |
= 1.8.4 =
|
509 |
* Bugfixes.
|
510 |
|