Version Description
- 30-12-2021 =
- Fix - Sanitization and escaping issues.
Download this release
Release Info
Developer | everestforms |
Plugin | Everest Forms – Easy Contact Form and Form Builder |
Version | 1.8.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.2.1 to 1.8.2.2
- everest-forms.php +1 -1
- includes/abstracts/class-evf-form-fields.php +2 -2
- includes/abstracts/class-evf-settings-api.php +4 -4
- includes/admin/class-evf-admin-import-export.php +1 -2
- includes/class-everest-forms.php +1 -1
- includes/class-evf-ajax.php +4 -4
- includes/class-evf-form-task.php +3 -3
- includes/class-evf-shortcodes.php +4 -5
- includes/evf-core-functions.php +92 -4
- includes/export/class-evf-entry-csv-exporter.php +2 -2
- includes/fields/class-evf-field-select.php +1 -1
- includes/fields/class-evf-field-textarea.php +2 -2
- includes/shortcodes/class-evf-shortcode-form.php +41 -28
- languages/everest-forms.pot +343 -527
- readme.txt +4 -2
- templates/emails/default.php +1 -1
- templates/emails/footer-default.php +2 -2
- templates/emails/header-default.php +5 -5
everest-forms.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Everest Forms
|
4 |
* Plugin URI: https://wpeverest.com/wordpress-plugins/everest-forms/
|
5 |
* Description: Drag and Drop contact form builder to easily create simple to complex forms for any purpose. Lightweight, Beautiful design, responsive and more.
|
6 |
-
* Version: 1.8.2.
|
7 |
* Author: WPEverest
|
8 |
* Author URI: https://wpeverest.com
|
9 |
* Text Domain: everest-forms
|
3 |
* Plugin Name: Everest Forms
|
4 |
* Plugin URI: https://wpeverest.com/wordpress-plugins/everest-forms/
|
5 |
* Description: Drag and Drop contact form builder to easily create simple to complex forms for any purpose. Lightweight, Beautiful design, responsive and more.
|
6 |
+
* Version: 1.8.2.2
|
7 |
* Author: WPEverest
|
8 |
* Author URI: https://wpeverest.com
|
9 |
* Text Domain: everest-forms
|
includes/abstracts/class-evf-form-fields.php
CHANGED
@@ -1626,7 +1626,7 @@ abstract class EVF_Form_Fields {
|
|
1626 |
}
|
1627 |
|
1628 |
// Grab field data.
|
1629 |
-
$field_args = ! empty( $_POST['defaults'] )
|
1630 |
$field_type = esc_attr( sanitize_text_field( wp_unslash( $_POST['field_type'] ) ) );
|
1631 |
$field_id = evf()->form->field_unique_key( sanitize_text_field( wp_unslash( $_POST['form_id'] ) ) );
|
1632 |
$field = array(
|
@@ -1739,7 +1739,7 @@ abstract class EVF_Form_Fields {
|
|
1739 |
return $properties;
|
1740 |
}
|
1741 |
|
1742 |
-
$get_value =
|
1743 |
|
1744 |
if ( ! empty( $field['choices'] ) && is_array( $field['choices'] ) ) {
|
1745 |
$properties = $this->get_single_field_property_value_choices( $get_value, $properties, $field );
|
1626 |
}
|
1627 |
|
1628 |
// Grab field data.
|
1629 |
+
$field_args = ! empty( $_POST['defaults'] ) && is_array( $_POST['defaults'] ) ? array_map( 'sanitize_text_field', wp_unslash( $_POST['defaults'] ) ) : array();
|
1630 |
$field_type = esc_attr( sanitize_text_field( wp_unslash( $_POST['field_type'] ) ) );
|
1631 |
$field_id = evf()->form->field_unique_key( sanitize_text_field( wp_unslash( $_POST['form_id'] ) ) );
|
1632 |
$field = array(
|
1739 |
return $properties;
|
1740 |
}
|
1741 |
|
1742 |
+
$get_value = wp_unslash( sanitize_text_field( $raw_value ) );
|
1743 |
|
1744 |
if ( ! empty( $field['choices'] ) && is_array( $field['choices'] ) ) {
|
1745 |
$properties = $this->get_single_field_property_value_choices( $get_value, $properties, $field );
|
includes/abstracts/class-evf-settings-api.php
CHANGED
@@ -721,7 +721,7 @@ abstract class EVF_Settings_API {
|
|
721 |
*/
|
722 |
public function validate_text_field( $key, $value ) {
|
723 |
$value = is_null( $value ) ? '' : $value;
|
724 |
-
return wp_kses_post( trim(
|
725 |
}
|
726 |
|
727 |
/**
|
@@ -733,7 +733,7 @@ abstract class EVF_Settings_API {
|
|
733 |
*/
|
734 |
public function validate_password_field( $key, $value ) {
|
735 |
$value = is_null( $value ) ? '' : $value;
|
736 |
-
return trim(
|
737 |
}
|
738 |
|
739 |
/**
|
@@ -746,7 +746,7 @@ abstract class EVF_Settings_API {
|
|
746 |
public function validate_textarea_field( $key, $value ) {
|
747 |
$value = is_null( $value ) ? '' : $value;
|
748 |
return wp_kses(
|
749 |
-
trim(
|
750 |
array_merge(
|
751 |
array(
|
752 |
'iframe' => array(
|
@@ -783,7 +783,7 @@ abstract class EVF_Settings_API {
|
|
783 |
*/
|
784 |
public function validate_select_field( $key, $value ) {
|
785 |
$value = is_null( $value ) ? '' : $value;
|
786 |
-
return evf_clean(
|
787 |
}
|
788 |
|
789 |
/**
|
721 |
*/
|
722 |
public function validate_text_field( $key, $value ) {
|
723 |
$value = is_null( $value ) ? '' : $value;
|
724 |
+
return wp_kses_post( trim( wp_unslash( $value ) ) );
|
725 |
}
|
726 |
|
727 |
/**
|
733 |
*/
|
734 |
public function validate_password_field( $key, $value ) {
|
735 |
$value = is_null( $value ) ? '' : $value;
|
736 |
+
return trim( wp_unslash( $value ) );
|
737 |
}
|
738 |
|
739 |
/**
|
746 |
public function validate_textarea_field( $key, $value ) {
|
747 |
$value = is_null( $value ) ? '' : $value;
|
748 |
return wp_kses(
|
749 |
+
trim( wp_unslash( $value ) ),
|
750 |
array_merge(
|
751 |
array(
|
752 |
'iframe' => array(
|
783 |
*/
|
784 |
public function validate_select_field( $key, $value ) {
|
785 |
$value = is_null( $value ) ? '' : $value;
|
786 |
+
return evf_clean( wp_unslash( $value ) );
|
787 |
}
|
788 |
|
789 |
/**
|
includes/admin/class-evf-admin-import-export.php
CHANGED
@@ -64,13 +64,12 @@ class EVF_Admin_Import_Export {
|
|
64 |
ob_clean();
|
65 |
}
|
66 |
|
67 |
-
$export_json = wp_json_encode( $export_data );
|
68 |
// Force download.
|
69 |
header( 'Content-Type: application/force-download' );
|
70 |
// Disposition / Encoding on response body.
|
71 |
header( "Content-Disposition: attachment;filename={$file_name}; charset=utf-8" );
|
72 |
header( 'Content-type: application/json' );
|
73 |
-
echo $
|
74 |
exit();
|
75 |
}
|
76 |
|
64 |
ob_clean();
|
65 |
}
|
66 |
|
|
|
67 |
// Force download.
|
68 |
header( 'Content-Type: application/force-download' );
|
69 |
// Disposition / Encoding on response body.
|
70 |
header( "Content-Disposition: attachment;filename={$file_name}; charset=utf-8" );
|
71 |
header( 'Content-type: application/json' );
|
72 |
+
echo wp_json_encode( $export_data );
|
73 |
exit();
|
74 |
}
|
75 |
|
includes/class-everest-forms.php
CHANGED
@@ -21,7 +21,7 @@ final class EverestForms {
|
|
21 |
*
|
22 |
* @var string
|
23 |
*/
|
24 |
-
public $version = '1.8.2.
|
25 |
|
26 |
/**
|
27 |
* The single instance of the class.
|
21 |
*
|
22 |
* @var string
|
23 |
*/
|
24 |
+
public $version = '1.8.2.2';
|
25 |
|
26 |
/**
|
27 |
* The single instance of the class.
|
includes/class-evf-ajax.php
CHANGED
@@ -216,7 +216,7 @@ class EVF_AJAX {
|
|
216 |
die( esc_html__( 'No data provided', 'everest-forms' ) );
|
217 |
}
|
218 |
|
219 |
-
$form_post = json_decode(
|
220 |
|
221 |
$data = array();
|
222 |
|
@@ -326,7 +326,7 @@ class EVF_AJAX {
|
|
326 |
check_ajax_referer( 'everest_forms_ajax_form_submission', 'security' );
|
327 |
|
328 |
if ( ! empty( $_POST['everest_forms']['id'] ) ) {
|
329 |
-
$process = evf()->task->ajax_form_submission(
|
330 |
if ( 'success' === $process['response'] ) {
|
331 |
wp_send_json_success( $process );
|
332 |
}
|
@@ -578,7 +578,7 @@ class EVF_AJAX {
|
|
578 |
);
|
579 |
}
|
580 |
|
581 |
-
do_action( 'everest_forms_integration_account_connect_' . sanitize_text_field( wp_unslash( $_POST['source'] ) ), $_POST );
|
582 |
}
|
583 |
|
584 |
/**
|
@@ -620,7 +620,7 @@ class EVF_AJAX {
|
|
620 |
);
|
621 |
}
|
622 |
|
623 |
-
do_action( 'everest_forms_integration_account_disconnect_' . sanitize_text_field( wp_unslash( $_POST['source'] ) ), $_POST );
|
624 |
|
625 |
$connected_accounts = get_option( 'everest_forms_integrations', false );
|
626 |
|
216 |
die( esc_html__( 'No data provided', 'everest-forms' ) );
|
217 |
}
|
218 |
|
219 |
+
$form_post = evf_sanitize_builder( json_decode( wp_unslash( $_POST['form_data'] ) ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash
|
220 |
|
221 |
$data = array();
|
222 |
|
326 |
check_ajax_referer( 'everest_forms_ajax_form_submission', 'security' );
|
327 |
|
328 |
if ( ! empty( $_POST['everest_forms']['id'] ) ) {
|
329 |
+
$process = evf()->task->ajax_form_submission( evf_sanitize_entry( wp_unslash( $_POST['everest_forms'] ) ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
330 |
if ( 'success' === $process['response'] ) {
|
331 |
wp_send_json_success( $process );
|
332 |
}
|
578 |
);
|
579 |
}
|
580 |
|
581 |
+
do_action( 'everest_forms_integration_account_connect_' . isset( $_POST['source'] ) ? sanitize_text_field( wp_unslash( $_POST['source'] ) ) : '', $_POST );
|
582 |
}
|
583 |
|
584 |
/**
|
620 |
);
|
621 |
}
|
622 |
|
623 |
+
do_action( 'everest_forms_integration_account_disconnect_' . isset( $_POST['source'] ) ? sanitize_text_field( wp_unslash( $_POST['source'] ) ) : '', $_POST );
|
624 |
|
625 |
$connected_accounts = get_option( 'everest_forms_integrations', false );
|
626 |
|
includes/class-evf-form-task.php
CHANGED
@@ -73,7 +73,7 @@ class EVF_Form_Task {
|
|
73 |
}
|
74 |
|
75 |
if ( ! empty( $_POST['everest_forms']['id'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
|
76 |
-
$this->do_task(
|
77 |
}
|
78 |
}
|
79 |
|
@@ -250,7 +250,7 @@ class EVF_Form_Task {
|
|
250 |
// Pass the form created date into the form data.
|
251 |
$this->form_data['created'] = $form->post_date;
|
252 |
|
253 |
-
// Format
|
254 |
foreach ( (array) $this->form_data['form_fields'] as $field ) {
|
255 |
$field_id = $field['id'];
|
256 |
$field_key = isset( $field['meta-key'] ) ? $field['meta-key'] : '';
|
@@ -395,7 +395,7 @@ class EVF_Form_Task {
|
|
395 |
*/
|
396 |
public function ajax_form_submission( $posted_data ) {
|
397 |
add_filter( 'wp_redirect', array( $this, 'ajax_process_redirect' ), 999 );
|
398 |
-
$process = $this->do_task(
|
399 |
return $process;
|
400 |
}
|
401 |
|
73 |
}
|
74 |
|
75 |
if ( ! empty( $_POST['everest_forms']['id'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
|
76 |
+
$this->do_task( evf_sanitize_entry( wp_unslash( $_POST['everest_forms'] ) ) ); // phpcs:ignore WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
77 |
}
|
78 |
}
|
79 |
|
250 |
// Pass the form created date into the form data.
|
251 |
$this->form_data['created'] = $form->post_date;
|
252 |
|
253 |
+
// Format and Sanitize inputs.
|
254 |
foreach ( (array) $this->form_data['form_fields'] as $field ) {
|
255 |
$field_id = $field['id'];
|
256 |
$field_key = isset( $field['meta-key'] ) ? $field['meta-key'] : '';
|
395 |
*/
|
396 |
public function ajax_form_submission( $posted_data ) {
|
397 |
add_filter( 'wp_redirect', array( $this, 'ajax_process_redirect' ), 999 );
|
398 |
+
$process = $this->do_task( $posted_data );
|
399 |
return $process;
|
400 |
}
|
401 |
|
includes/class-evf-shortcodes.php
CHANGED
@@ -48,12 +48,11 @@ class EVF_Shortcodes {
|
|
48 |
) {
|
49 |
ob_start();
|
50 |
|
51 |
-
|
52 |
-
echo
|
53 |
call_user_func( $function, $atts );
|
54 |
-
|
55 |
-
|
56 |
-
// @codingStandardsIgnoreEnd
|
57 |
|
58 |
return ob_get_clean();
|
59 |
}
|
48 |
) {
|
49 |
ob_start();
|
50 |
|
51 |
+
$wrap_before = empty( $wrapper['before'] ) ? '<div class="' . esc_attr( $wrapper['class'] ) . '">' : $wrapper['before'];
|
52 |
+
echo wp_kses_post( $wrap_before );
|
53 |
call_user_func( $function, $atts );
|
54 |
+
$wrap_after = empty( $wrapper['after'] ) ? '</div>' : $wrapper['after'];
|
55 |
+
echo wp_kses_post( $wrap_after );
|
|
|
56 |
|
57 |
return ob_get_clean();
|
58 |
}
|
includes/evf-core-functions.php
CHANGED
@@ -239,8 +239,7 @@ function evf_print_js() {
|
|
239 |
* @since 1.0.0
|
240 |
* @param string $js JavaScript code.
|
241 |
*/
|
242 |
-
echo apply_filters( 'everest_forms_queued_js', $js )
|
243 |
-
|
244 |
unset( $evf_queued_js );
|
245 |
}
|
246 |
}
|
@@ -287,7 +286,7 @@ function evf_get_log_file_path( $handle ) {
|
|
287 |
*/
|
288 |
function evf_get_csv_file_name( $handle ) {
|
289 |
if ( function_exists( 'wp_hash' ) ) {
|
290 |
-
$date_suffix =
|
291 |
$hash_suffix = wp_hash( $handle );
|
292 |
return sanitize_file_name( implode( '-', array( 'evf-entry-export', $handle, $date_suffix, $hash_suffix ) ) . '.csv' );
|
293 |
} else {
|
@@ -2388,7 +2387,7 @@ function evf_get_allowed_html_tags( $context = '' ) {
|
|
2388 |
$post_tags = wp_kses_allowed_html( 'post' );
|
2389 |
if ( 'builder' === $context ) {
|
2390 |
$response = wp_safe_remote_get( evf()->plugin_url() . '/assets/allowed_tags/allowed_tags.json' );
|
2391 |
-
if ( 200 === $response['response']['code'] ) {
|
2392 |
$json = wp_remote_retrieve_body( $response );
|
2393 |
if ( ! empty( $json ) ) {
|
2394 |
$allowed_tags = json_decode( $json, true );
|
@@ -2431,3 +2430,92 @@ function evf_get_allowed_html_tags( $context = '' ) {
|
|
2431 |
)
|
2432 |
);
|
2433 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
* @since 1.0.0
|
240 |
* @param string $js JavaScript code.
|
241 |
*/
|
242 |
+
echo wp_kses( apply_filters( 'everest_forms_queued_js', $js ), array( 'script' => array( 'type' => true ) ) );
|
|
|
243 |
unset( $evf_queued_js );
|
244 |
}
|
245 |
}
|
286 |
*/
|
287 |
function evf_get_csv_file_name( $handle ) {
|
288 |
if ( function_exists( 'wp_hash' ) ) {
|
289 |
+
$date_suffix = date_i18n( 'Y-m-d', time() );
|
290 |
$hash_suffix = wp_hash( $handle );
|
291 |
return sanitize_file_name( implode( '-', array( 'evf-entry-export', $handle, $date_suffix, $hash_suffix ) ) . '.csv' );
|
292 |
} else {
|
2387 |
$post_tags = wp_kses_allowed_html( 'post' );
|
2388 |
if ( 'builder' === $context ) {
|
2389 |
$response = wp_safe_remote_get( evf()->plugin_url() . '/assets/allowed_tags/allowed_tags.json' );
|
2390 |
+
if ( $response && 200 === $response['response']['code'] ) {
|
2391 |
$json = wp_remote_retrieve_body( $response );
|
2392 |
if ( ! empty( $json ) ) {
|
2393 |
$allowed_tags = json_decode( $json, true );
|
2430 |
)
|
2431 |
);
|
2432 |
}
|
2433 |
+
|
2434 |
+
/**
|
2435 |
+
* Parse Builder Post Data.
|
2436 |
+
*
|
2437 |
+
* @param mixed $post_data Post Data.
|
2438 |
+
*
|
2439 |
+
* @since 1.8.2.2
|
2440 |
+
*/
|
2441 |
+
function evf_sanitize_builder( $post_data = array() ) {
|
2442 |
+
if ( empty( $post_data ) || ! is_array( $post_data ) ) {
|
2443 |
+
return array();
|
2444 |
+
}
|
2445 |
+
|
2446 |
+
$form_data = array();
|
2447 |
+
foreach ( $post_data as $data_key => $data ) {
|
2448 |
+
$name = sanitize_text_field( $data->name );
|
2449 |
+
if ( preg_match( '/\<.*\>/', $data->value ) ) {
|
2450 |
+
$value = wp_kses_post( $data->value );
|
2451 |
+
} else {
|
2452 |
+
$value = sanitize_text_field( $data->value );
|
2453 |
+
}
|
2454 |
+
$form_data[ sanitize_text_field( $data_key ) ] = (object) array(
|
2455 |
+
'name' => $name,
|
2456 |
+
'value' => $value,
|
2457 |
+
);
|
2458 |
+
}
|
2459 |
+
return $form_data;
|
2460 |
+
}
|
2461 |
+
|
2462 |
+
|
2463 |
+
/**
|
2464 |
+
* Entry Post Data.
|
2465 |
+
*
|
2466 |
+
* @param mixed $entry Post Data.
|
2467 |
+
*
|
2468 |
+
* @since 1.8.2.2
|
2469 |
+
*/
|
2470 |
+
function evf_sanitize_entry( $entry = array() ) {
|
2471 |
+
if ( empty( $entry ) || ! is_array( $entry ) || empty( $entry['form_fields'] ) ) {
|
2472 |
+
return array();
|
2473 |
+
}
|
2474 |
+
|
2475 |
+
$form_id = absint( $entry['id'] );
|
2476 |
+
$form_data = evf()->form->get( $form_id, array( 'contents_only' => true ) );
|
2477 |
+
|
2478 |
+
if ( ! $form_data ) {
|
2479 |
+
return array();
|
2480 |
+
}
|
2481 |
+
|
2482 |
+
$form_data = evf_decode( $form_data->post_content );
|
2483 |
+
|
2484 |
+
$form_fields = $form_data['form_fields'];
|
2485 |
+
|
2486 |
+
if ( empty( $form_fields ) ) {
|
2487 |
+
return array();
|
2488 |
+
}
|
2489 |
+
|
2490 |
+
foreach ( $form_fields as $key => $field ) {
|
2491 |
+
$key = sanitize_text_field( $key );
|
2492 |
+
if ( array_key_exists( $key, $entry['form_fields'] ) ) {
|
2493 |
+
switch ( $field['type'] ) {
|
2494 |
+
case 'email':
|
2495 |
+
$entry['form_fields'][ $key ] = sanitize_email( $entry['form_fields'][ $key ] );
|
2496 |
+
break;
|
2497 |
+
case 'file-upload':
|
2498 |
+
case 'signature':
|
2499 |
+
case 'image-upload':
|
2500 |
+
$entry['form_fields'][ $key ] = esc_url_raw( $entry['form_fields'][ $key ] );
|
2501 |
+
break;
|
2502 |
+
case 'textarea':
|
2503 |
+
case 'html':
|
2504 |
+
case 'privacy-policy':
|
2505 |
+
$entry['form_fields'][ $key ] = wp_kses_post( $entry['form_fields'][ $key ] );
|
2506 |
+
break;
|
2507 |
+
default:
|
2508 |
+
if ( is_array( $entry['form_fields'][ $key ] ) ) {
|
2509 |
+
foreach ( $entry['form_fields'][ $key ] as $field_key => $value ) {
|
2510 |
+
$field_key = sanitize_text_field( $field_key );
|
2511 |
+
$entry['form_fields'][ $key ][ $field_key ] = sanitize_text_field( $value );
|
2512 |
+
}
|
2513 |
+
} else {
|
2514 |
+
$entry['form_fields'][ $key ] = sanitize_text_field( $entry['form_fields'][ $key ] );
|
2515 |
+
}
|
2516 |
+
}
|
2517 |
+
}
|
2518 |
+
return $entry;
|
2519 |
+
}
|
2520 |
+
|
2521 |
+
}
|
includes/export/class-evf-entry-csv-exporter.php
CHANGED
@@ -226,9 +226,9 @@ class EVF_Entry_CSV_Exporter extends EVF_CSV_Exporter {
|
|
226 |
}
|
227 |
|
228 |
ob_start();
|
229 |
-
echo implode( ', ', $columns );
|
230 |
echo "\n";
|
231 |
-
echo implode( ', ', $row );
|
232 |
|
233 |
return ob_get_clean();
|
234 |
}
|
226 |
}
|
227 |
|
228 |
ob_start();
|
229 |
+
echo esc_html( implode( ', ', $columns ) );
|
230 |
echo "\n";
|
231 |
+
echo esc_html( implode( ', ', $row ) );
|
232 |
|
233 |
return ob_get_clean();
|
234 |
}
|
includes/fields/class-evf-field-select.php
CHANGED
@@ -297,7 +297,7 @@ class EVF_Field_Select extends EVF_Form_Fields {
|
|
297 |
// Primary select field.
|
298 |
printf(
|
299 |
'<select %s>',
|
300 |
-
evf_html_attributes( $container['id'], $container['class'], $container['data'], $container['attr'] )
|
301 |
);
|
302 |
|
303 |
// Optional placeholder.
|
297 |
// Primary select field.
|
298 |
printf(
|
299 |
'<select %s>',
|
300 |
+
evf_html_attributes( $container['id'], $container['class'], $container['data'], $container['attr'] )
|
301 |
);
|
302 |
|
303 |
// Optional placeholder.
|
includes/fields/class-evf-field-textarea.php
CHANGED
@@ -199,7 +199,7 @@ class EVF_Field_Textarea extends EVF_Form_Fields {
|
|
199 |
'<textarea %s %s>%s</textarea>',
|
200 |
evf_html_attributes( $primary['id'], $primary['class'], $primary['data'], $primary['attr'] ),
|
201 |
esc_attr( $primary['required'] ),
|
202 |
-
$value
|
203 |
-
);
|
204 |
}
|
205 |
}
|
199 |
'<textarea %s %s>%s</textarea>',
|
200 |
evf_html_attributes( $primary['id'], $primary['class'], $primary['data'], $primary['attr'] ),
|
201 |
esc_attr( $primary['required'] ),
|
202 |
+
esc_html( $value )
|
203 |
+
);
|
204 |
}
|
205 |
}
|
includes/shortcodes/class-evf-shortcode-form.php
CHANGED
@@ -103,13 +103,13 @@ class EVF_Shortcode_Form {
|
|
103 |
|
104 |
printf(
|
105 |
"<button type='submit' name='everest_forms[submit]' class='everest-forms-submit-button button evf-submit %s' id='evf-submit-%d' value='evf-submit' %s conditional_rules='%s' conditional_id='%s' %s>%s</button>",
|
106 |
-
$classes,
|
107 |
-
$form_id,
|
108 |
-
$process,
|
109 |
-
$conditional_rules,
|
110 |
-
$conditional_id,
|
111 |
-
$visible,
|
112 |
-
$submit_btn
|
113 |
);
|
114 |
|
115 |
do_action( 'everest_forms_display_submit_after', $form_data );
|
@@ -168,7 +168,7 @@ class EVF_Shortcode_Form {
|
|
168 |
printf(
|
169 |
'<div %s>%s</div>',
|
170 |
evf_html_attributes( $description['id'], $description['class'], $description['data'], $description['attr'] ),
|
171 |
-
evf_string_translation( $form_data['id'], $field['id'], $description['value'], '-description' )
|
172 |
);
|
173 |
}
|
174 |
|
@@ -192,28 +192,41 @@ class EVF_Shortcode_Form {
|
|
192 |
printf(
|
193 |
'<label %s><span class="evf-label">%s</span> %s</label>',
|
194 |
evf_html_attributes( $label['id'], $label['class'], $label['data'], $label['attr'] ),
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
|
|
212 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
)
|
214 |
),
|
215 |
-
$required,
|
216 |
-
$custom_tags
|
217 |
);
|
218 |
}
|
219 |
|
@@ -730,7 +743,7 @@ class EVF_Shortcode_Form {
|
|
730 |
|
731 |
ob_start();
|
732 |
self::view( $atts['id'], $atts['title'], $atts['description'] );
|
733 |
-
echo ob_get_clean(); // phpcs:ignore WordPress.Security.EscapeOutput
|
734 |
}
|
735 |
|
736 |
/**
|
103 |
|
104 |
printf(
|
105 |
"<button type='submit' name='everest_forms[submit]' class='everest-forms-submit-button button evf-submit %s' id='evf-submit-%d' value='evf-submit' %s conditional_rules='%s' conditional_id='%s' %s>%s</button>",
|
106 |
+
esc_attr( $classes ),
|
107 |
+
esc_attr( $form_id ),
|
108 |
+
! isset( $settings['submit_button_processing_text'] ) ? 'data-process-text="' . esc_attr__( 'Processing…', 'everest-forms' ) . '"' : ( ! empty( $settings['submit_button_processing_text'] ) ? 'data-process-text="' . esc_attr( evf_string_translation( $form_data['id'], 'processing_text', $settings['submit_button_processing_text'] ) ) . '"' : '' ),
|
109 |
+
esc_attr( $conditional_rules ),
|
110 |
+
esc_attr( $conditional_id ),
|
111 |
+
esc_attr( $visible ),
|
112 |
+
esc_html( $submit_btn )
|
113 |
);
|
114 |
|
115 |
do_action( 'everest_forms_display_submit_after', $form_data );
|
168 |
printf(
|
169 |
'<div %s>%s</div>',
|
170 |
evf_html_attributes( $description['id'], $description['class'], $description['data'], $description['attr'] ),
|
171 |
+
wp_kses( evf_string_translation( $form_data['id'], $field['id'], $description['value'], '-description' ), evf_get_allowed_html_tags( 'builder' ) )
|
172 |
);
|
173 |
}
|
174 |
|
192 |
printf(
|
193 |
'<label %s><span class="evf-label">%s</span> %s</label>',
|
194 |
evf_html_attributes( $label['id'], $label['class'], $label['data'], $label['attr'] ),
|
195 |
+
wp_kses(
|
196 |
+
evf_string_translation(
|
197 |
+
$form_data['id'],
|
198 |
+
$field['id'],
|
199 |
+
wp_kses(
|
200 |
+
$label['value'],
|
201 |
+
array(
|
202 |
+
'a' => array(
|
203 |
+
'href' => array(),
|
204 |
+
'class' => array(),
|
205 |
+
),
|
206 |
+
'span' => array(
|
207 |
+
'class' => array(),
|
208 |
+
),
|
209 |
+
'em' => array(),
|
210 |
+
'small' => array(),
|
211 |
+
'strong' => array(),
|
212 |
+
)
|
213 |
)
|
214 |
+
),
|
215 |
+
array(
|
216 |
+
'a' => array(
|
217 |
+
'href' => array(),
|
218 |
+
'class' => array(),
|
219 |
+
),
|
220 |
+
'span' => array(
|
221 |
+
'class' => array(),
|
222 |
+
),
|
223 |
+
'em' => array(),
|
224 |
+
'small' => array(),
|
225 |
+
'strong' => array(),
|
226 |
)
|
227 |
),
|
228 |
+
wp_kses( $required, evf_get_allowed_html_tags( 'builder' ) ),
|
229 |
+
wp_kses( $custom_tags, evf_get_allowed_html_tags( 'builder' ) )
|
230 |
);
|
231 |
}
|
232 |
|
743 |
|
744 |
ob_start();
|
745 |
self::view( $atts['id'], $atts['title'], $atts['description'] );
|
746 |
+
echo ob_get_clean(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
747 |
}
|
748 |
|
749 |
/**
|
languages/everest-forms.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Everest Forms plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Everest Forms 1.8.2.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/everest-forms\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2021-12-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: everest-forms\n"
|
@@ -55,32 +55,32 @@ msgid "Off"
|
|
55 |
msgstr ""
|
56 |
|
57 |
#: includes/abstracts/class-evf-form-fields.php:389
|
58 |
-
#: includes/evf-core-functions.php:
|
59 |
msgid "Enter text for the form field label. This is recommended and can be hidden in the Advanced Settings."
|
60 |
msgstr ""
|
61 |
|
62 |
#: includes/abstracts/class-evf-form-fields.php:395
|
63 |
-
#: includes/evf-core-functions.php:
|
64 |
msgid "Label"
|
65 |
msgstr ""
|
66 |
|
67 |
#: includes/abstracts/class-evf-form-fields.php:425
|
68 |
-
#: includes/evf-core-functions.php:
|
69 |
msgid "Enter meta key to be stored in database."
|
70 |
msgstr ""
|
71 |
|
72 |
#: includes/abstracts/class-evf-form-fields.php:431
|
73 |
-
#: includes/evf-core-functions.php:
|
74 |
msgid "Meta Key"
|
75 |
msgstr ""
|
76 |
|
77 |
#: includes/abstracts/class-evf-form-fields.php:462
|
78 |
-
#: includes/evf-core-functions.php:
|
79 |
msgid "Enter text for the form field description."
|
80 |
msgstr ""
|
81 |
|
82 |
#: includes/abstracts/class-evf-form-fields.php:468
|
83 |
-
#: includes/evf-core-functions.php:
|
84 |
msgid "Description"
|
85 |
msgstr ""
|
86 |
|
@@ -90,7 +90,7 @@ msgstr ""
|
|
90 |
|
91 |
#: includes/abstracts/class-evf-form-fields.php:506
|
92 |
#: includes/admin/settings/class-evf-settings-validation.php:46
|
93 |
-
#: includes/evf-core-functions.php:
|
94 |
#: includes/shortcodes/class-evf-shortcode-form.php:189
|
95 |
msgid "Required"
|
96 |
msgstr ""
|
@@ -166,7 +166,7 @@ msgid "Code"
|
|
166 |
msgstr ""
|
167 |
|
168 |
#: includes/abstracts/class-evf-form-fields.php:754
|
169 |
-
#: includes/evf-core-functions.php:
|
170 |
msgid "Choices"
|
171 |
msgstr ""
|
172 |
|
@@ -175,7 +175,7 @@ msgid "Bulk Add"
|
|
175 |
msgstr ""
|
176 |
|
177 |
#: includes/abstracts/class-evf-form-fields.php:783
|
178 |
-
#: includes/evf-core-functions.php:
|
179 |
msgid "Add choices for the form field."
|
180 |
msgstr ""
|
181 |
|
@@ -454,12 +454,12 @@ msgid "Advanced Options"
|
|
454 |
msgstr ""
|
455 |
|
456 |
#: includes/abstracts/class-evf-form-fields.php:1151
|
457 |
-
#: includes/evf-core-functions.php:
|
458 |
msgid "Enter text for the form field placeholder."
|
459 |
msgstr ""
|
460 |
|
461 |
#: includes/abstracts/class-evf-form-fields.php:1157
|
462 |
-
#: includes/evf-core-functions.php:
|
463 |
msgid "Placeholder Text"
|
464 |
msgstr ""
|
465 |
|
@@ -484,27 +484,27 @@ msgid "Enter CSS class names for this field container. Multiple class names shou
|
|
484 |
msgstr ""
|
485 |
|
486 |
#: includes/abstracts/class-evf-form-fields.php:1258
|
487 |
-
#: includes/evf-core-functions.php:
|
488 |
msgid "CSS Classes"
|
489 |
msgstr ""
|
490 |
|
491 |
#: includes/abstracts/class-evf-form-fields.php:1289
|
492 |
-
#: includes/evf-core-functions.php:
|
493 |
msgid "Check this option to hide the form field label."
|
494 |
msgstr ""
|
495 |
|
496 |
#: includes/abstracts/class-evf-form-fields.php:1298
|
497 |
-
#: includes/evf-core-functions.php:
|
498 |
msgid "Hide Label"
|
499 |
msgstr ""
|
500 |
|
501 |
#: includes/abstracts/class-evf-form-fields.php:1319
|
502 |
-
#: includes/evf-core-functions.php:
|
503 |
msgid "Check this option to hide the form field sub-label."
|
504 |
msgstr ""
|
505 |
|
506 |
#: includes/abstracts/class-evf-form-fields.php:1328
|
507 |
-
#: includes/evf-core-functions.php:
|
508 |
msgid "Hide Sub-Labels"
|
509 |
msgstr ""
|
510 |
|
@@ -701,7 +701,7 @@ msgid "Form disabled message"
|
|
701 |
msgstr ""
|
702 |
|
703 |
#: includes/admin/builder/class-evf-builder-settings.php:158
|
704 |
-
#: includes/shortcodes/class-evf-shortcode-form.php:
|
705 |
msgid "This form is disabled."
|
706 |
msgstr ""
|
707 |
|
@@ -804,6 +804,7 @@ msgstr ""
|
|
804 |
|
805 |
#: includes/admin/builder/class-evf-builder-settings.php:282
|
806 |
#: includes/shortcodes/class-evf-shortcode-form.php:74
|
|
|
807 |
msgid "Processing…"
|
808 |
msgstr ""
|
809 |
|
@@ -1533,20 +1534,20 @@ msgstr ""
|
|
1533 |
msgid "Action failed. Please refresh the page and retry."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: includes/admin/class-evf-admin-import-export.php:
|
1537 |
msgid "Imported Successfully."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: includes/admin/class-evf-admin-import-export.php:
|
1541 |
-
#: includes/admin/class-evf-admin-import-export.php:
|
1542 |
msgid "Invalid file content. Please export file from Everest Forms plugin."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/admin/class-evf-admin-import-export.php:
|
1546 |
msgid "Invalid file format. Only JSON File Allowed."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: includes/admin/class-evf-admin-import-export.php:
|
1550 |
msgid "Please select json file to import form data."
|
1551 |
msgstr ""
|
1552 |
|
@@ -1844,7 +1845,7 @@ msgstr ""
|
|
1844 |
|
1845 |
#: includes/admin/settings/class-evf-settings-validation.php:52
|
1846 |
#: includes/class-evf-frontend-scripts.php:311
|
1847 |
-
#: includes/evf-core-functions.php:
|
1848 |
msgid "This field is required."
|
1849 |
msgstr ""
|
1850 |
|
@@ -2225,7 +2226,7 @@ msgstr ""
|
|
2225 |
#. translators: %1$s: Plugin Name, %2$s: Rating link
|
2226 |
#: includes/admin/views/html-notice-review.php:20
|
2227 |
msgid ""
|
2228 |
-
"Hope you are having nice experience with %1$s plugin. Please provide this plugin a nice review. %3$s %2$s\n"
|
2229 |
"\t\t\t\tBasically, it would encourage us to release updates regularly with new features & bug fixes so that you can keep on using the plugin without any issues and also to provide free support like we have been doing. %4$s"
|
2230 |
msgstr ""
|
2231 |
|
@@ -2477,7 +2478,7 @@ msgid "Everest Forms honeypot field triggered."
|
|
2477 |
msgstr ""
|
2478 |
|
2479 |
#: includes/class-evf-form-task.php:316
|
2480 |
-
#: includes/shortcodes/class-evf-shortcode-form.php:
|
2481 |
#: includes/templates/contact.php:61
|
2482 |
msgid "Thanks for contacting us! We will be in touch with you shortly."
|
2483 |
msgstr ""
|
@@ -2847,1269 +2848,1269 @@ msgstr ""
|
|
2847 |
msgid "action_args should not be overwritten when calling evf_get_template."
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: includes/evf-core-functions.php:
|
2851 |
#: includes/log-handlers/class-evf-log-handler-file.php:343
|
2852 |
#: includes/log-handlers/class-evf-log-handler-file.php:363
|
2853 |
msgid "This method should not be called before plugins_loaded."
|
2854 |
msgstr ""
|
2855 |
|
2856 |
#. translators: 1: class name 2: everest_forms_logging_class 3: EVF_Logger_Interface
|
2857 |
-
#: includes/evf-core-functions.php:
|
2858 |
msgid "The class %1$s provided by %2$s filter must implement %3$s."
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: includes/evf-core-functions.php:
|
2862 |
msgid "Afghanistan"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: includes/evf-core-functions.php:
|
2866 |
msgid "Åland Islands"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: includes/evf-core-functions.php:
|
2870 |
msgid "Albania"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: includes/evf-core-functions.php:
|
2874 |
msgid "Algeria"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: includes/evf-core-functions.php:
|
2878 |
msgid "American Samoa"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: includes/evf-core-functions.php:
|
2882 |
msgid "Andorra"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: includes/evf-core-functions.php:
|
2886 |
msgid "Angola"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: includes/evf-core-functions.php:
|
2890 |
msgid "Anguilla"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: includes/evf-core-functions.php:
|
2894 |
msgid "Antarctica"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: includes/evf-core-functions.php:
|
2898 |
msgid "Antigua and Barbuda"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: includes/evf-core-functions.php:
|
2902 |
msgid "Argentina"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: includes/evf-core-functions.php:
|
2906 |
msgid "Armenia"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: includes/evf-core-functions.php:
|
2910 |
msgid "Aruba"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#: includes/evf-core-functions.php:
|
2914 |
msgid "Australia"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
-
#: includes/evf-core-functions.php:
|
2918 |
msgid "Austria"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: includes/evf-core-functions.php:
|
2922 |
msgid "Azerbaijan"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: includes/evf-core-functions.php:
|
2926 |
msgid "Bahamas"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: includes/evf-core-functions.php:
|
2930 |
msgid "Bahrain"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: includes/evf-core-functions.php:
|
2934 |
msgid "Bangladesh"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: includes/evf-core-functions.php:
|
2938 |
msgid "Barbados"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#: includes/evf-core-functions.php:
|
2942 |
msgid "Belarus"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#: includes/evf-core-functions.php:
|
2946 |
msgid "Belgium"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: includes/evf-core-functions.php:
|
2950 |
msgid "Belau"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: includes/evf-core-functions.php:
|
2954 |
msgid "Belize"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: includes/evf-core-functions.php:
|
2958 |
msgid "Benin"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: includes/evf-core-functions.php:
|
2962 |
msgid "Bermuda"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: includes/evf-core-functions.php:
|
2966 |
msgid "Bhutan"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: includes/evf-core-functions.php:
|
2970 |
msgid "Bolivia"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: includes/evf-core-functions.php:
|
2974 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: includes/evf-core-functions.php:
|
2978 |
msgid "Bosnia and Herzegovina"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: includes/evf-core-functions.php:
|
2982 |
msgid "Botswana"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: includes/evf-core-functions.php:
|
2986 |
msgid "Bouvet Island"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: includes/evf-core-functions.php:
|
2990 |
msgid "Brazil"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: includes/evf-core-functions.php:
|
2994 |
msgid "British Indian Ocean Territory"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: includes/evf-core-functions.php:
|
2998 |
msgid "Brunei"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: includes/evf-core-functions.php:
|
3002 |
msgid "Bulgaria"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: includes/evf-core-functions.php:
|
3006 |
msgid "Burkina Faso"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: includes/evf-core-functions.php:
|
3010 |
msgid "Burundi"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: includes/evf-core-functions.php:
|
3014 |
msgid "Cambodia"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: includes/evf-core-functions.php:
|
3018 |
msgid "Cameroon"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: includes/evf-core-functions.php:
|
3022 |
msgid "Canada"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: includes/evf-core-functions.php:
|
3026 |
msgid "Cape Verde"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: includes/evf-core-functions.php:
|
3030 |
msgid "Cayman Islands"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: includes/evf-core-functions.php:
|
3034 |
msgid "Central African Republic"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: includes/evf-core-functions.php:
|
3038 |
msgid "Chad"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: includes/evf-core-functions.php:
|
3042 |
msgid "Chile"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: includes/evf-core-functions.php:
|
3046 |
msgid "China"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: includes/evf-core-functions.php:
|
3050 |
msgid "Christmas Island"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: includes/evf-core-functions.php:
|
3054 |
msgid "Cocos (Keeling) Islands"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: includes/evf-core-functions.php:
|
3058 |
msgid "Colombia"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: includes/evf-core-functions.php:
|
3062 |
msgid "Comoros"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: includes/evf-core-functions.php:
|
3066 |
msgid "Congo (Brazzaville)"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: includes/evf-core-functions.php:
|
3070 |
msgid "Congo (Kinshasa)"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: includes/evf-core-functions.php:
|
3074 |
msgid "Cook Islands"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: includes/evf-core-functions.php:
|
3078 |
msgid "Costa Rica"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: includes/evf-core-functions.php:
|
3082 |
msgid "Croatia"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: includes/evf-core-functions.php:
|
3086 |
msgid "Cuba"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: includes/evf-core-functions.php:
|
3090 |
msgid "Curaçao"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: includes/evf-core-functions.php:
|
3094 |
msgid "Cyprus"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: includes/evf-core-functions.php:
|
3098 |
msgid "Czech Republic"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: includes/evf-core-functions.php:
|
3102 |
msgid "Denmark"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: includes/evf-core-functions.php:
|
3106 |
msgid "Djibouti"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: includes/evf-core-functions.php:
|
3110 |
msgid "Dominica"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: includes/evf-core-functions.php:
|
3114 |
msgid "Dominican Republic"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: includes/evf-core-functions.php:
|
3118 |
msgid "Ecuador"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: includes/evf-core-functions.php:
|
3122 |
msgid "Egypt"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: includes/evf-core-functions.php:
|
3126 |
msgid "El Salvador"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: includes/evf-core-functions.php:
|
3130 |
msgid "Equatorial Guinea"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: includes/evf-core-functions.php:
|
3134 |
msgid "Eritrea"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: includes/evf-core-functions.php:
|
3138 |
msgid "Estonia"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: includes/evf-core-functions.php:
|
3142 |
msgid "Ethiopia"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: includes/evf-core-functions.php:
|
3146 |
msgid "Falkland Islands"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: includes/evf-core-functions.php:
|
3150 |
msgid "Faroe Islands"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: includes/evf-core-functions.php:
|
3154 |
msgid "Fiji"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: includes/evf-core-functions.php:
|
3158 |
msgid "Finland"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: includes/evf-core-functions.php:
|
3162 |
msgid "France"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: includes/evf-core-functions.php:
|
3166 |
msgid "French Guiana"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: includes/evf-core-functions.php:
|
3170 |
msgid "French Polynesia"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: includes/evf-core-functions.php:
|
3174 |
msgid "French Southern Territories"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: includes/evf-core-functions.php:
|
3178 |
msgid "Gabon"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: includes/evf-core-functions.php:
|
3182 |
msgid "Gambia"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#: includes/evf-core-functions.php:
|
3186 |
-
#: includes/evf-core-functions.php:
|
3187 |
msgid "Georgia"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: includes/evf-core-functions.php:
|
3191 |
msgid "Germany"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: includes/evf-core-functions.php:
|
3195 |
msgid "Ghana"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: includes/evf-core-functions.php:
|
3199 |
msgid "Gibraltar"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: includes/evf-core-functions.php:
|
3203 |
msgid "Greece"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: includes/evf-core-functions.php:
|
3207 |
msgid "Greenland"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: includes/evf-core-functions.php:
|
3211 |
msgid "Grenada"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: includes/evf-core-functions.php:
|
3215 |
msgid "Guadeloupe"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: includes/evf-core-functions.php:
|
3219 |
msgid "Guam"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: includes/evf-core-functions.php:
|
3223 |
msgid "Guatemala"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: includes/evf-core-functions.php:
|
3227 |
msgid "Guernsey"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: includes/evf-core-functions.php:
|
3231 |
msgid "Guinea"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: includes/evf-core-functions.php:
|
3235 |
msgid "Guinea-Bissau"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: includes/evf-core-functions.php:
|
3239 |
msgid "Guyana"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: includes/evf-core-functions.php:
|
3243 |
msgid "Haiti"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: includes/evf-core-functions.php:
|
3247 |
msgid "Heard Island and McDonald Islands"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: includes/evf-core-functions.php:
|
3251 |
msgid "Honduras"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: includes/evf-core-functions.php:
|
3255 |
msgid "Hong Kong"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: includes/evf-core-functions.php:
|
3259 |
msgid "Hungary"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: includes/evf-core-functions.php:
|
3263 |
msgid "Iceland"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: includes/evf-core-functions.php:
|
3267 |
msgid "India"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: includes/evf-core-functions.php:
|
3271 |
msgid "Indonesia"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: includes/evf-core-functions.php:
|
3275 |
msgid "Iran"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: includes/evf-core-functions.php:
|
3279 |
msgid "Iraq"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: includes/evf-core-functions.php:
|
3283 |
msgid "Ireland"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: includes/evf-core-functions.php:
|
3287 |
msgid "Isle of Man"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: includes/evf-core-functions.php:
|
3291 |
msgid "Israel"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: includes/evf-core-functions.php:
|
3295 |
msgid "Italy"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: includes/evf-core-functions.php:
|
3299 |
msgid "Ivory Coast"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: includes/evf-core-functions.php:
|
3303 |
msgid "Jamaica"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: includes/evf-core-functions.php:
|
3307 |
msgid "Japan"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: includes/evf-core-functions.php:
|
3311 |
msgid "Jersey"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: includes/evf-core-functions.php:
|
3315 |
msgid "Jordan"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: includes/evf-core-functions.php:
|
3319 |
msgid "Kazakhstan"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: includes/evf-core-functions.php:
|
3323 |
msgid "Kenya"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: includes/evf-core-functions.php:
|
3327 |
msgid "Kiribati"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: includes/evf-core-functions.php:
|
3331 |
msgid "Kuwait"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: includes/evf-core-functions.php:
|
3335 |
msgid "Kosovo"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: includes/evf-core-functions.php:
|
3339 |
msgid "Kyrgyzstan"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: includes/evf-core-functions.php:
|
3343 |
msgid "Laos"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: includes/evf-core-functions.php:
|
3347 |
msgid "Latvia"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: includes/evf-core-functions.php:
|
3351 |
msgid "Lebanon"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: includes/evf-core-functions.php:
|
3355 |
msgid "Lesotho"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: includes/evf-core-functions.php:
|
3359 |
msgid "Liberia"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: includes/evf-core-functions.php:
|
3363 |
msgid "Libya"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: includes/evf-core-functions.php:
|
3367 |
msgid "Liechtenstein"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: includes/evf-core-functions.php:
|
3371 |
msgid "Lithuania"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: includes/evf-core-functions.php:
|
3375 |
msgid "Luxembourg"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: includes/evf-core-functions.php:
|
3379 |
msgid "Macao"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: includes/evf-core-functions.php:
|
3383 |
msgid "North Macedonia"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: includes/evf-core-functions.php:
|
3387 |
msgid "Madagascar"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: includes/evf-core-functions.php:
|
3391 |
msgid "Malawi"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: includes/evf-core-functions.php:
|
3395 |
msgid "Malaysia"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: includes/evf-core-functions.php:
|
3399 |
msgid "Maldives"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: includes/evf-core-functions.php:
|
3403 |
msgid "Mali"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: includes/evf-core-functions.php:
|
3407 |
msgid "Malta"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: includes/evf-core-functions.php:
|
3411 |
msgid "Marshall Islands"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: includes/evf-core-functions.php:
|
3415 |
msgid "Martinique"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: includes/evf-core-functions.php:
|
3419 |
msgid "Mauritania"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: includes/evf-core-functions.php:
|
3423 |
msgid "Mauritius"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: includes/evf-core-functions.php:
|
3427 |
msgid "Mayotte"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: includes/evf-core-functions.php:
|
3431 |
msgid "Mexico"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: includes/evf-core-functions.php:
|
3435 |
msgid "Micronesia"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: includes/evf-core-functions.php:
|
3439 |
msgid "Moldova"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: includes/evf-core-functions.php:
|
3443 |
msgid "Monaco"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: includes/evf-core-functions.php:
|
3447 |
msgid "Mongolia"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: includes/evf-core-functions.php:
|
3451 |
msgid "Montenegro"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: includes/evf-core-functions.php:
|
3455 |
msgid "Montserrat"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: includes/evf-core-functions.php:
|
3459 |
msgid "Morocco"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: includes/evf-core-functions.php:
|
3463 |
msgid "Mozambique"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: includes/evf-core-functions.php:
|
3467 |
msgid "Myanmar"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: includes/evf-core-functions.php:
|
3471 |
msgid "Namibia"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: includes/evf-core-functions.php:
|
3475 |
msgid "Nauru"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: includes/evf-core-functions.php:
|
3479 |
msgid "Nepal"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: includes/evf-core-functions.php:
|
3483 |
msgid "Netherlands"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: includes/evf-core-functions.php:
|
3487 |
msgid "New Caledonia"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: includes/evf-core-functions.php:
|
3491 |
msgid "New Zealand"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: includes/evf-core-functions.php:
|
3495 |
msgid "Nicaragua"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: includes/evf-core-functions.php:
|
3499 |
msgid "Niger"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: includes/evf-core-functions.php:
|
3503 |
msgid "Nigeria"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: includes/evf-core-functions.php:
|
3507 |
msgid "Niue"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: includes/evf-core-functions.php:
|
3511 |
msgid "Norfolk Island"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: includes/evf-core-functions.php:
|
3515 |
msgid "Northern Mariana Islands"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: includes/evf-core-functions.php:
|
3519 |
msgid "North Korea"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: includes/evf-core-functions.php:
|
3523 |
msgid "Norway"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: includes/evf-core-functions.php:
|
3527 |
msgid "Oman"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: includes/evf-core-functions.php:
|
3531 |
msgid "Pakistan"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: includes/evf-core-functions.php:
|
3535 |
msgid "Palestinian Territory"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: includes/evf-core-functions.php:
|
3539 |
msgid "Panama"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: includes/evf-core-functions.php:
|
3543 |
msgid "Papua New Guinea"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: includes/evf-core-functions.php:
|
3547 |
msgid "Paraguay"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: includes/evf-core-functions.php:
|
3551 |
msgid "Peru"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: includes/evf-core-functions.php:
|
3555 |
msgid "Philippines"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: includes/evf-core-functions.php:
|
3559 |
msgid "Pitcairn"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: includes/evf-core-functions.php:
|
3563 |
msgid "Poland"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: includes/evf-core-functions.php:
|
3567 |
msgid "Portugal"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: includes/evf-core-functions.php:
|
3571 |
msgid "Puerto Rico"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: includes/evf-core-functions.php:
|
3575 |
msgid "Qatar"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: includes/evf-core-functions.php:
|
3579 |
msgid "Reunion"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: includes/evf-core-functions.php:
|
3583 |
msgid "Romania"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: includes/evf-core-functions.php:
|
3587 |
msgid "Russia"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: includes/evf-core-functions.php:
|
3591 |
msgid "Rwanda"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: includes/evf-core-functions.php:
|
3595 |
msgid "Saint Barthélemy"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: includes/evf-core-functions.php:
|
3599 |
msgid "Saint Helena"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: includes/evf-core-functions.php:
|
3603 |
msgid "Saint Kitts and Nevis"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: includes/evf-core-functions.php:
|
3607 |
msgid "Saint Lucia"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: includes/evf-core-functions.php:
|
3611 |
msgid "Saint Martin (French part)"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: includes/evf-core-functions.php:
|
3615 |
msgid "Saint Martin (Dutch part)"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: includes/evf-core-functions.php:
|
3619 |
msgid "Saint Pierre and Miquelon"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: includes/evf-core-functions.php:
|
3623 |
msgid "Saint Vincent and the Grenadines"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: includes/evf-core-functions.php:
|
3627 |
msgid "San Marino"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: includes/evf-core-functions.php:
|
3631 |
msgid "São Tomé and Príncipe"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: includes/evf-core-functions.php:
|
3635 |
msgid "Saudi Arabia"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: includes/evf-core-functions.php:
|
3639 |
msgid "Senegal"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: includes/evf-core-functions.php:
|
3643 |
msgid "Serbia"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: includes/evf-core-functions.php:
|
3647 |
msgid "Seychelles"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: includes/evf-core-functions.php:
|
3651 |
msgid "Sierra Leone"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: includes/evf-core-functions.php:
|
3655 |
msgid "Singapore"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: includes/evf-core-functions.php:
|
3659 |
msgid "Slovakia"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: includes/evf-core-functions.php:
|
3663 |
msgid "Slovenia"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: includes/evf-core-functions.php:
|
3667 |
msgid "Solomon Islands"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: includes/evf-core-functions.php:
|
3671 |
msgid "Somalia"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: includes/evf-core-functions.php:
|
3675 |
msgid "South Africa"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: includes/evf-core-functions.php:
|
3679 |
msgid "South Georgia/Sandwich Islands"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: includes/evf-core-functions.php:
|
3683 |
msgid "South Korea"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: includes/evf-core-functions.php:
|
3687 |
msgid "South Sudan"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: includes/evf-core-functions.php:
|
3691 |
msgid "Spain"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: includes/evf-core-functions.php:
|
3695 |
msgid "Sri Lanka"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: includes/evf-core-functions.php:
|
3699 |
msgid "Sudan"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: includes/evf-core-functions.php:
|
3703 |
msgid "Suriname"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: includes/evf-core-functions.php:
|
3707 |
msgid "Svalbard and Jan Mayen"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: includes/evf-core-functions.php:
|
3711 |
msgid "Swaziland"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: includes/evf-core-functions.php:
|
3715 |
msgid "Sweden"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: includes/evf-core-functions.php:
|
3719 |
msgid "Switzerland"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: includes/evf-core-functions.php:
|
3723 |
msgid "Syria"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: includes/evf-core-functions.php:
|
3727 |
msgid "Taiwan"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: includes/evf-core-functions.php:
|
3731 |
msgid "Tajikistan"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: includes/evf-core-functions.php:
|
3735 |
msgid "Tanzania"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: includes/evf-core-functions.php:
|
3739 |
msgid "Thailand"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: includes/evf-core-functions.php:
|
3743 |
msgid "Timor-Leste"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: includes/evf-core-functions.php:
|
3747 |
msgid "Togo"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: includes/evf-core-functions.php:
|
3751 |
msgid "Tokelau"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: includes/evf-core-functions.php:
|
3755 |
msgid "Tonga"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: includes/evf-core-functions.php:
|
3759 |
msgid "Trinidad and Tobago"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: includes/evf-core-functions.php:
|
3763 |
msgid "Tunisia"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: includes/evf-core-functions.php:
|
3767 |
msgid "Turkey"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: includes/evf-core-functions.php:
|
3771 |
msgid "Turkmenistan"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: includes/evf-core-functions.php:
|
3775 |
msgid "Turks and Caicos Islands"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: includes/evf-core-functions.php:
|
3779 |
msgid "Tuvalu"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: includes/evf-core-functions.php:
|
3783 |
msgid "Uganda"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: includes/evf-core-functions.php:
|
3787 |
msgid "Ukraine"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: includes/evf-core-functions.php:
|
3791 |
msgid "United Arab Emirates"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: includes/evf-core-functions.php:
|
3795 |
msgid "United Kingdom (UK)"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: includes/evf-core-functions.php:
|
3799 |
msgid "United States (US)"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: includes/evf-core-functions.php:
|
3803 |
msgid "United States (US) Minor Outlying Islands"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: includes/evf-core-functions.php:
|
3807 |
msgid "Uruguay"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: includes/evf-core-functions.php:
|
3811 |
msgid "Uzbekistan"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: includes/evf-core-functions.php:
|
3815 |
msgid "Vanuatu"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: includes/evf-core-functions.php:
|
3819 |
msgid "Vatican"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: includes/evf-core-functions.php:
|
3823 |
msgid "Venezuela"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: includes/evf-core-functions.php:
|
3827 |
msgid "Vietnam"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: includes/evf-core-functions.php:
|
3831 |
msgid "Virgin Islands (British)"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: includes/evf-core-functions.php:
|
3835 |
msgid "Virgin Islands (US)"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: includes/evf-core-functions.php:
|
3839 |
msgid "Wallis and Futuna"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: includes/evf-core-functions.php:
|
3843 |
msgid "Western Sahara"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: includes/evf-core-functions.php:
|
3847 |
msgid "Samoa"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: includes/evf-core-functions.php:
|
3851 |
msgid "Yemen"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: includes/evf-core-functions.php:
|
3855 |
msgid "Zambia"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: includes/evf-core-functions.php:
|
3859 |
msgid "Zimbabwe"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: includes/evf-core-functions.php:
|
3863 |
msgid "Alabama"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: includes/evf-core-functions.php:
|
3867 |
msgid "Alaska"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: includes/evf-core-functions.php:
|
3871 |
msgid "Arizona"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: includes/evf-core-functions.php:
|
3875 |
msgid "Arkansas"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: includes/evf-core-functions.php:
|
3879 |
msgid "California"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: includes/evf-core-functions.php:
|
3883 |
msgid "Colorado"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: includes/evf-core-functions.php:
|
3887 |
msgid "Connecticut"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: includes/evf-core-functions.php:
|
3891 |
msgid "Delaware"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: includes/evf-core-functions.php:
|
3895 |
msgid "District of Columbia"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: includes/evf-core-functions.php:
|
3899 |
msgid "Florida"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: includes/evf-core-functions.php:
|
3903 |
msgid "Hawaii"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: includes/evf-core-functions.php:
|
3907 |
msgid "Idaho"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: includes/evf-core-functions.php:
|
3911 |
msgid "Illinois"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: includes/evf-core-functions.php:
|
3915 |
msgid "Indiana"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: includes/evf-core-functions.php:
|
3919 |
msgid "Iowa"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: includes/evf-core-functions.php:
|
3923 |
msgid "Kansas"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: includes/evf-core-functions.php:
|
3927 |
msgid "Kentucky"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: includes/evf-core-functions.php:
|
3931 |
msgid "Louisiana"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: includes/evf-core-functions.php:
|
3935 |
msgid "Maine"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: includes/evf-core-functions.php:
|
3939 |
msgid "Maryland"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: includes/evf-core-functions.php:
|
3943 |
msgid "Massachusetts"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: includes/evf-core-functions.php:
|
3947 |
msgid "Michigan"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: includes/evf-core-functions.php:
|
3951 |
msgid "Minnesota"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: includes/evf-core-functions.php:
|
3955 |
msgid "Mississippi"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: includes/evf-core-functions.php:
|
3959 |
msgid "Missouri"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: includes/evf-core-functions.php:
|
3963 |
msgid "Montana"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: includes/evf-core-functions.php:
|
3967 |
msgid "Nebraska"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: includes/evf-core-functions.php:
|
3971 |
msgid "Nevada"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: includes/evf-core-functions.php:
|
3975 |
msgid "New Hampshire"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: includes/evf-core-functions.php:
|
3979 |
msgid "New Jersey"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: includes/evf-core-functions.php:
|
3983 |
msgid "New Mexico"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: includes/evf-core-functions.php:
|
3987 |
msgid "New York"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: includes/evf-core-functions.php:
|
3991 |
msgid "North Carolina"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: includes/evf-core-functions.php:
|
3995 |
msgid "North Dakota"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: includes/evf-core-functions.php:
|
3999 |
msgid "Ohio"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: includes/evf-core-functions.php:
|
4003 |
msgid "Oklahoma"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: includes/evf-core-functions.php:
|
4007 |
msgid "Oregon"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: includes/evf-core-functions.php:
|
4011 |
msgid "Pennsylvania"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: includes/evf-core-functions.php:
|
4015 |
msgid "Rhode Island"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: includes/evf-core-functions.php:
|
4019 |
msgid "South Carolina"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: includes/evf-core-functions.php:
|
4023 |
msgid "South Dakota"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: includes/evf-core-functions.php:
|
4027 |
msgid "Tennessee"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: includes/evf-core-functions.php:
|
4031 |
msgid "Texas"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: includes/evf-core-functions.php:
|
4035 |
msgid "Utah"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: includes/evf-core-functions.php:
|
4039 |
msgid "Vermont"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: includes/evf-core-functions.php:
|
4043 |
msgid "Virginia"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: includes/evf-core-functions.php:
|
4047 |
msgid "Washington"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: includes/evf-core-functions.php:
|
4051 |
msgid "West Virginia"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: includes/evf-core-functions.php:
|
4055 |
msgid "Wisconsin"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: includes/evf-core-functions.php:
|
4059 |
msgid "Wyoming"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: includes/evf-core-functions.php:
|
4063 |
msgid "General Fields"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: includes/evf-core-functions.php:
|
4067 |
msgid "Advanced Fields"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: includes/evf-core-functions.php:
|
4071 |
msgid "Payment Fields"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: includes/evf-core-functions.php:
|
4075 |
msgid "Survey Fields"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: includes/evf-core-functions.php:
|
4079 |
msgid "Check this option to mark the field required."
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: includes/evf-core-functions.php:
|
4083 |
#: includes/fields/class-evf-field-checkbox.php:27
|
4084 |
#: includes/fields/class-evf-field-radio.php:27
|
4085 |
msgid "First Choice"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: includes/evf-core-functions.php:
|
4089 |
#: includes/fields/class-evf-field-checkbox.php:33
|
4090 |
#: includes/fields/class-evf-field-radio.php:33
|
4091 |
msgid "Second Choice"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: includes/evf-core-functions.php:
|
4095 |
#: includes/fields/class-evf-field-checkbox.php:39
|
4096 |
#: includes/fields/class-evf-field-radio.php:39
|
4097 |
msgid "Third Choice"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: includes/evf-core-functions.php:
|
4101 |
msgid "Enter CSS class for this field container. Class names should be separated with spaces."
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: includes/evf-core-functions.php:
|
4105 |
msgid "Tablet"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: includes/evf-core-functions.php:
|
4109 |
msgid "Mobile"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: includes/evf-core-functions.php:
|
4113 |
msgid "Desktop"
|
4114 |
msgstr ""
|
4115 |
|
@@ -4584,188 +4585,3 @@ msgstr ""
|
|
4584 |
#: templates/emails/footer-default.php:45
|
4585 |
msgid "Sent from %s"
|
4586 |
msgstr ""
|
4587 |
-
|
4588 |
-
#: tests/wordpress/wp-includes/theme.json
|
4589 |
-
msgctxt "Font size name"
|
4590 |
-
msgid "Small"
|
4591 |
-
msgstr ""
|
4592 |
-
|
4593 |
-
#: tests/wordpress/wp-includes/theme.json
|
4594 |
-
msgctxt "Font size name"
|
4595 |
-
msgid "Normal"
|
4596 |
-
msgstr ""
|
4597 |
-
|
4598 |
-
#: tests/wordpress/wp-includes/theme.json
|
4599 |
-
msgctxt "Font size name"
|
4600 |
-
msgid "Medium"
|
4601 |
-
msgstr ""
|
4602 |
-
|
4603 |
-
#: tests/wordpress/wp-includes/theme.json
|
4604 |
-
msgctxt "Font size name"
|
4605 |
-
msgid "Large"
|
4606 |
-
msgstr ""
|
4607 |
-
|
4608 |
-
#: tests/wordpress/wp-includes/theme.json
|
4609 |
-
msgctxt "Font size name"
|
4610 |
-
msgid "Huge"
|
4611 |
-
msgstr ""
|
4612 |
-
|
4613 |
-
#: tests/wordpress/wp-includes/theme.json
|
4614 |
-
msgctxt "Color name"
|
4615 |
-
msgid "Black"
|
4616 |
-
msgstr ""
|
4617 |
-
|
4618 |
-
#: tests/wordpress/wp-includes/theme.json
|
4619 |
-
msgctxt "Color name"
|
4620 |
-
msgid "Cyan bluish gray"
|
4621 |
-
msgstr ""
|
4622 |
-
|
4623 |
-
#: tests/wordpress/wp-includes/theme.json
|
4624 |
-
msgctxt "Color name"
|
4625 |
-
msgid "White"
|
4626 |
-
msgstr ""
|
4627 |
-
|
4628 |
-
#: tests/wordpress/wp-includes/theme.json
|
4629 |
-
msgctxt "Color name"
|
4630 |
-
msgid "Pale pink"
|
4631 |
-
msgstr ""
|
4632 |
-
|
4633 |
-
#: tests/wordpress/wp-includes/theme.json
|
4634 |
-
msgctxt "Color name"
|
4635 |
-
msgid "Vivid red"
|
4636 |
-
msgstr ""
|
4637 |
-
|
4638 |
-
#: tests/wordpress/wp-includes/theme.json
|
4639 |
-
msgctxt "Color name"
|
4640 |
-
msgid "Luminous vivid orange"
|
4641 |
-
msgstr ""
|
4642 |
-
|
4643 |
-
#: tests/wordpress/wp-includes/theme.json
|
4644 |
-
msgctxt "Color name"
|
4645 |
-
msgid "Luminous vivid amber"
|
4646 |
-
msgstr ""
|
4647 |
-
|
4648 |
-
#: tests/wordpress/wp-includes/theme.json
|
4649 |
-
msgctxt "Color name"
|
4650 |
-
msgid "Light green cyan"
|
4651 |
-
msgstr ""
|
4652 |
-
|
4653 |
-
#: tests/wordpress/wp-includes/theme.json
|
4654 |
-
msgctxt "Color name"
|
4655 |
-
msgid "Vivid green cyan"
|
4656 |
-
msgstr ""
|
4657 |
-
|
4658 |
-
#: tests/wordpress/wp-includes/theme.json
|
4659 |
-
msgctxt "Color name"
|
4660 |
-
msgid "Pale cyan blue"
|
4661 |
-
msgstr ""
|
4662 |
-
|
4663 |
-
#: tests/wordpress/wp-includes/theme.json
|
4664 |
-
msgctxt "Color name"
|
4665 |
-
msgid "Vivid cyan blue"
|
4666 |
-
msgstr ""
|
4667 |
-
|
4668 |
-
#: tests/wordpress/wp-includes/theme.json
|
4669 |
-
msgctxt "Color name"
|
4670 |
-
msgid "Vivid purple"
|
4671 |
-
msgstr ""
|
4672 |
-
|
4673 |
-
#: tests/wordpress/wp-includes/theme.json
|
4674 |
-
msgctxt "Gradient name"
|
4675 |
-
msgid "Vivid cyan blue to vivid purple"
|
4676 |
-
msgstr ""
|
4677 |
-
|
4678 |
-
#: tests/wordpress/wp-includes/theme.json
|
4679 |
-
msgctxt "Gradient name"
|
4680 |
-
msgid "Light green cyan to vivid green cyan"
|
4681 |
-
msgstr ""
|
4682 |
-
|
4683 |
-
#: tests/wordpress/wp-includes/theme.json
|
4684 |
-
msgctxt "Gradient name"
|
4685 |
-
msgid "Luminous vivid amber to luminous vivid orange"
|
4686 |
-
msgstr ""
|
4687 |
-
|
4688 |
-
#: tests/wordpress/wp-includes/theme.json
|
4689 |
-
msgctxt "Gradient name"
|
4690 |
-
msgid "Luminous vivid orange to vivid red"
|
4691 |
-
msgstr ""
|
4692 |
-
|
4693 |
-
#: tests/wordpress/wp-includes/theme.json
|
4694 |
-
msgctxt "Gradient name"
|
4695 |
-
msgid "Very light gray to cyan bluish gray"
|
4696 |
-
msgstr ""
|
4697 |
-
|
4698 |
-
#: tests/wordpress/wp-includes/theme.json
|
4699 |
-
msgctxt "Gradient name"
|
4700 |
-
msgid "Cool to warm spectrum"
|
4701 |
-
msgstr ""
|
4702 |
-
|
4703 |
-
#: tests/wordpress/wp-includes/theme.json
|
4704 |
-
msgctxt "Gradient name"
|
4705 |
-
msgid "Blush light purple"
|
4706 |
-
msgstr ""
|
4707 |
-
|
4708 |
-
#: tests/wordpress/wp-includes/theme.json
|
4709 |
-
msgctxt "Gradient name"
|
4710 |
-
msgid "Blush bordeaux"
|
4711 |
-
msgstr ""
|
4712 |
-
|
4713 |
-
#: tests/wordpress/wp-includes/theme.json
|
4714 |
-
msgctxt "Gradient name"
|
4715 |
-
msgid "Luminous dusk"
|
4716 |
-
msgstr ""
|
4717 |
-
|
4718 |
-
#: tests/wordpress/wp-includes/theme.json
|
4719 |
-
msgctxt "Gradient name"
|
4720 |
-
msgid "Pale ocean"
|
4721 |
-
msgstr ""
|
4722 |
-
|
4723 |
-
#: tests/wordpress/wp-includes/theme.json
|
4724 |
-
msgctxt "Gradient name"
|
4725 |
-
msgid "Electric grass"
|
4726 |
-
msgstr ""
|
4727 |
-
|
4728 |
-
#: tests/wordpress/wp-includes/theme.json
|
4729 |
-
msgctxt "Gradient name"
|
4730 |
-
msgid "Midnight"
|
4731 |
-
msgstr ""
|
4732 |
-
|
4733 |
-
#: tests/wordpress/wp-includes/theme.json
|
4734 |
-
msgctxt "Duotone name"
|
4735 |
-
msgid "Dark grayscale"
|
4736 |
-
msgstr ""
|
4737 |
-
|
4738 |
-
#: tests/wordpress/wp-includes/theme.json
|
4739 |
-
msgctxt "Duotone name"
|
4740 |
-
msgid "Grayscale"
|
4741 |
-
msgstr ""
|
4742 |
-
|
4743 |
-
#: tests/wordpress/wp-includes/theme.json
|
4744 |
-
msgctxt "Duotone name"
|
4745 |
-
msgid "Purple and yellow"
|
4746 |
-
msgstr ""
|
4747 |
-
|
4748 |
-
#: tests/wordpress/wp-includes/theme.json
|
4749 |
-
msgctxt "Duotone name"
|
4750 |
-
msgid "Blue and red"
|
4751 |
-
msgstr ""
|
4752 |
-
|
4753 |
-
#: tests/wordpress/wp-includes/theme.json
|
4754 |
-
msgctxt "Duotone name"
|
4755 |
-
msgid "Midnight"
|
4756 |
-
msgstr ""
|
4757 |
-
|
4758 |
-
#: tests/wordpress/wp-includes/theme.json
|
4759 |
-
msgctxt "Duotone name"
|
4760 |
-
msgid "Magenta and yellow"
|
4761 |
-
msgstr ""
|
4762 |
-
|
4763 |
-
#: tests/wordpress/wp-includes/theme.json
|
4764 |
-
msgctxt "Duotone name"
|
4765 |
-
msgid "Purple and green"
|
4766 |
-
msgstr ""
|
4767 |
-
|
4768 |
-
#: tests/wordpress/wp-includes/theme.json
|
4769 |
-
msgctxt "Duotone name"
|
4770 |
-
msgid "Blue and orange"
|
4771 |
-
msgstr ""
|
2 |
# This file is distributed under the same license as the Everest Forms plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Everest Forms 1.8.2.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/everest-forms\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2021-12-30T16:08:21+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: everest-forms\n"
|
55 |
msgstr ""
|
56 |
|
57 |
#: includes/abstracts/class-evf-form-fields.php:389
|
58 |
+
#: includes/evf-core-functions.php:1929
|
59 |
msgid "Enter text for the form field label. This is recommended and can be hidden in the Advanced Settings."
|
60 |
msgstr ""
|
61 |
|
62 |
#: includes/abstracts/class-evf-form-fields.php:395
|
63 |
+
#: includes/evf-core-functions.php:1928
|
64 |
msgid "Label"
|
65 |
msgstr ""
|
66 |
|
67 |
#: includes/abstracts/class-evf-form-fields.php:425
|
68 |
+
#: includes/evf-core-functions.php:1937
|
69 |
msgid "Enter meta key to be stored in database."
|
70 |
msgstr ""
|
71 |
|
72 |
#: includes/abstracts/class-evf-form-fields.php:431
|
73 |
+
#: includes/evf-core-functions.php:1936
|
74 |
msgid "Meta Key"
|
75 |
msgstr ""
|
76 |
|
77 |
#: includes/abstracts/class-evf-form-fields.php:462
|
78 |
+
#: includes/evf-core-functions.php:1946
|
79 |
msgid "Enter text for the form field description."
|
80 |
msgstr ""
|
81 |
|
82 |
#: includes/abstracts/class-evf-form-fields.php:468
|
83 |
+
#: includes/evf-core-functions.php:1944
|
84 |
msgid "Description"
|
85 |
msgstr ""
|
86 |
|
90 |
|
91 |
#: includes/abstracts/class-evf-form-fields.php:506
|
92 |
#: includes/admin/settings/class-evf-settings-validation.php:46
|
93 |
+
#: includes/evf-core-functions.php:1952
|
94 |
#: includes/shortcodes/class-evf-shortcode-form.php:189
|
95 |
msgid "Required"
|
96 |
msgstr ""
|
166 |
msgstr ""
|
167 |
|
168 |
#: includes/abstracts/class-evf-form-fields.php:754
|
169 |
+
#: includes/evf-core-functions.php:1960
|
170 |
msgid "Choices"
|
171 |
msgstr ""
|
172 |
|
175 |
msgstr ""
|
176 |
|
177 |
#: includes/abstracts/class-evf-form-fields.php:783
|
178 |
+
#: includes/evf-core-functions.php:1961
|
179 |
msgid "Add choices for the form field."
|
180 |
msgstr ""
|
181 |
|
454 |
msgstr ""
|
455 |
|
456 |
#: includes/abstracts/class-evf-form-fields.php:1151
|
457 |
+
#: includes/evf-core-functions.php:1973
|
458 |
msgid "Enter text for the form field placeholder."
|
459 |
msgstr ""
|
460 |
|
461 |
#: includes/abstracts/class-evf-form-fields.php:1157
|
462 |
+
#: includes/evf-core-functions.php:1972
|
463 |
msgid "Placeholder Text"
|
464 |
msgstr ""
|
465 |
|
484 |
msgstr ""
|
485 |
|
486 |
#: includes/abstracts/class-evf-form-fields.php:1258
|
487 |
+
#: includes/evf-core-functions.php:1980
|
488 |
msgid "CSS Classes"
|
489 |
msgstr ""
|
490 |
|
491 |
#: includes/abstracts/class-evf-form-fields.php:1289
|
492 |
+
#: includes/evf-core-functions.php:1990
|
493 |
msgid "Check this option to hide the form field label."
|
494 |
msgstr ""
|
495 |
|
496 |
#: includes/abstracts/class-evf-form-fields.php:1298
|
497 |
+
#: includes/evf-core-functions.php:1988
|
498 |
msgid "Hide Label"
|
499 |
msgstr ""
|
500 |
|
501 |
#: includes/abstracts/class-evf-form-fields.php:1319
|
502 |
+
#: includes/evf-core-functions.php:1998
|
503 |
msgid "Check this option to hide the form field sub-label."
|
504 |
msgstr ""
|
505 |
|
506 |
#: includes/abstracts/class-evf-form-fields.php:1328
|
507 |
+
#: includes/evf-core-functions.php:1996
|
508 |
msgid "Hide Sub-Labels"
|
509 |
msgstr ""
|
510 |
|
701 |
msgstr ""
|
702 |
|
703 |
#: includes/admin/builder/class-evf-builder-settings.php:158
|
704 |
+
#: includes/shortcodes/class-evf-shortcode-form.php:777
|
705 |
msgid "This form is disabled."
|
706 |
msgstr ""
|
707 |
|
804 |
|
805 |
#: includes/admin/builder/class-evf-builder-settings.php:282
|
806 |
#: includes/shortcodes/class-evf-shortcode-form.php:74
|
807 |
+
#: includes/shortcodes/class-evf-shortcode-form.php:108
|
808 |
msgid "Processing…"
|
809 |
msgstr ""
|
810 |
|
1534 |
msgid "Action failed. Please refresh the page and retry."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: includes/admin/class-evf-admin-import-export.php:143
|
1538 |
msgid "Imported Successfully."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: includes/admin/class-evf-admin-import-export.php:150
|
1542 |
+
#: includes/admin/class-evf-admin-import-export.php:157
|
1543 |
msgid "Invalid file content. Please export file from Everest Forms plugin."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: includes/admin/class-evf-admin-import-export.php:164
|
1547 |
msgid "Invalid file format. Only JSON File Allowed."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/admin/class-evf-admin-import-export.php:171
|
1551 |
msgid "Please select json file to import form data."
|
1552 |
msgstr ""
|
1553 |
|
1845 |
|
1846 |
#: includes/admin/settings/class-evf-settings-validation.php:52
|
1847 |
#: includes/class-evf-frontend-scripts.php:311
|
1848 |
+
#: includes/evf-core-functions.php:1507
|
1849 |
msgid "This field is required."
|
1850 |
msgstr ""
|
1851 |
|
2226 |
#. translators: %1$s: Plugin Name, %2$s: Rating link
|
2227 |
#: includes/admin/views/html-notice-review.php:20
|
2228 |
msgid ""
|
2229 |
+
"Hope you are having nice experience with %1$s plugin. Please provide this plugin a nice review. %3$s %2$s\r\n"
|
2230 |
"\t\t\t\tBasically, it would encourage us to release updates regularly with new features & bug fixes so that you can keep on using the plugin without any issues and also to provide free support like we have been doing. %4$s"
|
2231 |
msgstr ""
|
2232 |
|
2478 |
msgstr ""
|
2479 |
|
2480 |
#: includes/class-evf-form-task.php:316
|
2481 |
+
#: includes/shortcodes/class-evf-shortcode-form.php:806
|
2482 |
#: includes/templates/contact.php:61
|
2483 |
msgid "Thanks for contacting us! We will be in touch with you shortly."
|
2484 |
msgstr ""
|
2848 |
msgid "action_args should not be overwritten when calling evf_get_template."
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: includes/evf-core-functions.php:293
|
2852 |
#: includes/log-handlers/class-evf-log-handler-file.php:343
|
2853 |
#: includes/log-handlers/class-evf-log-handler-file.php:363
|
2854 |
msgid "This method should not be called before plugins_loaded."
|
2855 |
msgstr ""
|
2856 |
|
2857 |
#. translators: 1: class name 2: everest_forms_logging_class 3: EVF_Logger_Interface
|
2858 |
+
#: includes/evf-core-functions.php:554
|
2859 |
msgid "The class %1$s provided by %2$s filter must implement %3$s."
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: includes/evf-core-functions.php:1572
|
2863 |
msgid "Afghanistan"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: includes/evf-core-functions.php:1573
|
2867 |
msgid "Åland Islands"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: includes/evf-core-functions.php:1574
|
2871 |
msgid "Albania"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: includes/evf-core-functions.php:1575
|
2875 |
msgid "Algeria"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: includes/evf-core-functions.php:1576
|
2879 |
msgid "American Samoa"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: includes/evf-core-functions.php:1577
|
2883 |
msgid "Andorra"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: includes/evf-core-functions.php:1578
|
2887 |
msgid "Angola"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: includes/evf-core-functions.php:1579
|
2891 |
msgid "Anguilla"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: includes/evf-core-functions.php:1580
|
2895 |
msgid "Antarctica"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: includes/evf-core-functions.php:1581
|
2899 |
msgid "Antigua and Barbuda"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: includes/evf-core-functions.php:1582
|
2903 |
msgid "Argentina"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: includes/evf-core-functions.php:1583
|
2907 |
msgid "Armenia"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: includes/evf-core-functions.php:1584
|
2911 |
msgid "Aruba"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: includes/evf-core-functions.php:1585
|
2915 |
msgid "Australia"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: includes/evf-core-functions.php:1586
|
2919 |
msgid "Austria"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: includes/evf-core-functions.php:1587
|
2923 |
msgid "Azerbaijan"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: includes/evf-core-functions.php:1588
|
2927 |
msgid "Bahamas"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: includes/evf-core-functions.php:1589
|
2931 |
msgid "Bahrain"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: includes/evf-core-functions.php:1590
|
2935 |
msgid "Bangladesh"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: includes/evf-core-functions.php:1591
|
2939 |
msgid "Barbados"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: includes/evf-core-functions.php:1592
|
2943 |
msgid "Belarus"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: includes/evf-core-functions.php:1593
|
2947 |
msgid "Belgium"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: includes/evf-core-functions.php:1594
|
2951 |
msgid "Belau"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: includes/evf-core-functions.php:1595
|
2955 |
msgid "Belize"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: includes/evf-core-functions.php:1596
|
2959 |
msgid "Benin"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: includes/evf-core-functions.php:1597
|
2963 |
msgid "Bermuda"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: includes/evf-core-functions.php:1598
|
2967 |
msgid "Bhutan"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: includes/evf-core-functions.php:1599
|
2971 |
msgid "Bolivia"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: includes/evf-core-functions.php:1600
|
2975 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: includes/evf-core-functions.php:1601
|
2979 |
msgid "Bosnia and Herzegovina"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: includes/evf-core-functions.php:1602
|
2983 |
msgid "Botswana"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: includes/evf-core-functions.php:1603
|
2987 |
msgid "Bouvet Island"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: includes/evf-core-functions.php:1604
|
2991 |
msgid "Brazil"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: includes/evf-core-functions.php:1605
|
2995 |
msgid "British Indian Ocean Territory"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: includes/evf-core-functions.php:1606
|
2999 |
msgid "Brunei"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: includes/evf-core-functions.php:1607
|
3003 |
msgid "Bulgaria"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: includes/evf-core-functions.php:1608
|
3007 |
msgid "Burkina Faso"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: includes/evf-core-functions.php:1609
|
3011 |
msgid "Burundi"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: includes/evf-core-functions.php:1610
|
3015 |
msgid "Cambodia"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: includes/evf-core-functions.php:1611
|
3019 |
msgid "Cameroon"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: includes/evf-core-functions.php:1612
|
3023 |
msgid "Canada"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: includes/evf-core-functions.php:1613
|
3027 |
msgid "Cape Verde"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: includes/evf-core-functions.php:1614
|
3031 |
msgid "Cayman Islands"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: includes/evf-core-functions.php:1615
|
3035 |
msgid "Central African Republic"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: includes/evf-core-functions.php:1616
|
3039 |
msgid "Chad"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: includes/evf-core-functions.php:1617
|
3043 |
msgid "Chile"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: includes/evf-core-functions.php:1618
|
3047 |
msgid "China"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: includes/evf-core-functions.php:1619
|
3051 |
msgid "Christmas Island"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: includes/evf-core-functions.php:1620
|
3055 |
msgid "Cocos (Keeling) Islands"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: includes/evf-core-functions.php:1621
|
3059 |
msgid "Colombia"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: includes/evf-core-functions.php:1622
|
3063 |
msgid "Comoros"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: includes/evf-core-functions.php:1623
|
3067 |
msgid "Congo (Brazzaville)"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: includes/evf-core-functions.php:1624
|
3071 |
msgid "Congo (Kinshasa)"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: includes/evf-core-functions.php:1625
|
3075 |
msgid "Cook Islands"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: includes/evf-core-functions.php:1626
|
3079 |
msgid "Costa Rica"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: includes/evf-core-functions.php:1627
|
3083 |
msgid "Croatia"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: includes/evf-core-functions.php:1628
|
3087 |
msgid "Cuba"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: includes/evf-core-functions.php:1629
|
3091 |
msgid "Curaçao"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: includes/evf-core-functions.php:1630
|
3095 |
msgid "Cyprus"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: includes/evf-core-functions.php:1631
|
3099 |
msgid "Czech Republic"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: includes/evf-core-functions.php:1632
|
3103 |
msgid "Denmark"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: includes/evf-core-functions.php:1633
|
3107 |
msgid "Djibouti"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: includes/evf-core-functions.php:1634
|
3111 |
msgid "Dominica"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: includes/evf-core-functions.php:1635
|
3115 |
msgid "Dominican Republic"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: includes/evf-core-functions.php:1636
|
3119 |
msgid "Ecuador"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: includes/evf-core-functions.php:1637
|
3123 |
msgid "Egypt"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: includes/evf-core-functions.php:1638
|
3127 |
msgid "El Salvador"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: includes/evf-core-functions.php:1639
|
3131 |
msgid "Equatorial Guinea"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: includes/evf-core-functions.php:1640
|
3135 |
msgid "Eritrea"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: includes/evf-core-functions.php:1641
|
3139 |
msgid "Estonia"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: includes/evf-core-functions.php:1642
|
3143 |
msgid "Ethiopia"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: includes/evf-core-functions.php:1643
|
3147 |
msgid "Falkland Islands"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: includes/evf-core-functions.php:1644
|
3151 |
msgid "Faroe Islands"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: includes/evf-core-functions.php:1645
|
3155 |
msgid "Fiji"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: includes/evf-core-functions.php:1646
|
3159 |
msgid "Finland"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: includes/evf-core-functions.php:1647
|
3163 |
msgid "France"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: includes/evf-core-functions.php:1648
|
3167 |
msgid "French Guiana"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: includes/evf-core-functions.php:1649
|
3171 |
msgid "French Polynesia"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: includes/evf-core-functions.php:1650
|
3175 |
msgid "French Southern Territories"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: includes/evf-core-functions.php:1651
|
3179 |
msgid "Gabon"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: includes/evf-core-functions.php:1652
|
3183 |
msgid "Gambia"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: includes/evf-core-functions.php:1653
|
3187 |
+
#: includes/evf-core-functions.php:1845
|
3188 |
msgid "Georgia"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: includes/evf-core-functions.php:1654
|
3192 |
msgid "Germany"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: includes/evf-core-functions.php:1655
|
3196 |
msgid "Ghana"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: includes/evf-core-functions.php:1656
|
3200 |
msgid "Gibraltar"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: includes/evf-core-functions.php:1657
|
3204 |
msgid "Greece"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: includes/evf-core-functions.php:1658
|
3208 |
msgid "Greenland"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
#: includes/evf-core-functions.php:1659
|
3212 |
msgid "Grenada"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: includes/evf-core-functions.php:1660
|
3216 |
msgid "Guadeloupe"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
+
#: includes/evf-core-functions.php:1661
|
3220 |
msgid "Guam"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: includes/evf-core-functions.php:1662
|
3224 |
msgid "Guatemala"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: includes/evf-core-functions.php:1663
|
3228 |
msgid "Guernsey"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: includes/evf-core-functions.php:1664
|
3232 |
msgid "Guinea"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
+
#: includes/evf-core-functions.php:1665
|
3236 |
msgid "Guinea-Bissau"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: includes/evf-core-functions.php:1666
|
3240 |
msgid "Guyana"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: includes/evf-core-functions.php:1667
|
3244 |
msgid "Haiti"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: includes/evf-core-functions.php:1668
|
3248 |
msgid "Heard Island and McDonald Islands"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: includes/evf-core-functions.php:1669
|
3252 |
msgid "Honduras"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: includes/evf-core-functions.php:1670
|
3256 |
msgid "Hong Kong"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: includes/evf-core-functions.php:1671
|
3260 |
msgid "Hungary"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: includes/evf-core-functions.php:1672
|
3264 |
msgid "Iceland"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: includes/evf-core-functions.php:1673
|
3268 |
msgid "India"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: includes/evf-core-functions.php:1674
|
3272 |
msgid "Indonesia"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: includes/evf-core-functions.php:1675
|
3276 |
msgid "Iran"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: includes/evf-core-functions.php:1676
|
3280 |
msgid "Iraq"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: includes/evf-core-functions.php:1677
|
3284 |
msgid "Ireland"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: includes/evf-core-functions.php:1678
|
3288 |
msgid "Isle of Man"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: includes/evf-core-functions.php:1679
|
3292 |
msgid "Israel"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: includes/evf-core-functions.php:1680
|
3296 |
msgid "Italy"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: includes/evf-core-functions.php:1681
|
3300 |
msgid "Ivory Coast"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: includes/evf-core-functions.php:1682
|
3304 |
msgid "Jamaica"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
+
#: includes/evf-core-functions.php:1683
|
3308 |
msgid "Japan"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: includes/evf-core-functions.php:1684
|
3312 |
msgid "Jersey"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: includes/evf-core-functions.php:1685
|
3316 |
msgid "Jordan"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: includes/evf-core-functions.php:1686
|
3320 |
msgid "Kazakhstan"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: includes/evf-core-functions.php:1687
|
3324 |
msgid "Kenya"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: includes/evf-core-functions.php:1688
|
3328 |
msgid "Kiribati"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: includes/evf-core-functions.php:1689
|
3332 |
msgid "Kuwait"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: includes/evf-core-functions.php:1690
|
3336 |
msgid "Kosovo"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: includes/evf-core-functions.php:1691
|
3340 |
msgid "Kyrgyzstan"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: includes/evf-core-functions.php:1692
|
3344 |
msgid "Laos"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: includes/evf-core-functions.php:1693
|
3348 |
msgid "Latvia"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: includes/evf-core-functions.php:1694
|
3352 |
msgid "Lebanon"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: includes/evf-core-functions.php:1695
|
3356 |
msgid "Lesotho"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: includes/evf-core-functions.php:1696
|
3360 |
msgid "Liberia"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: includes/evf-core-functions.php:1697
|
3364 |
msgid "Libya"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: includes/evf-core-functions.php:1698
|
3368 |
msgid "Liechtenstein"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: includes/evf-core-functions.php:1699
|
3372 |
msgid "Lithuania"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: includes/evf-core-functions.php:1700
|
3376 |
msgid "Luxembourg"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: includes/evf-core-functions.php:1701
|
3380 |
msgid "Macao"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: includes/evf-core-functions.php:1702
|
3384 |
msgid "North Macedonia"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: includes/evf-core-functions.php:1703
|
3388 |
msgid "Madagascar"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: includes/evf-core-functions.php:1704
|
3392 |
msgid "Malawi"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: includes/evf-core-functions.php:1705
|
3396 |
msgid "Malaysia"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: includes/evf-core-functions.php:1706
|
3400 |
msgid "Maldives"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: includes/evf-core-functions.php:1707
|
3404 |
msgid "Mali"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: includes/evf-core-functions.php:1708
|
3408 |
msgid "Malta"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: includes/evf-core-functions.php:1709
|
3412 |
msgid "Marshall Islands"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: includes/evf-core-functions.php:1710
|
3416 |
msgid "Martinique"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: includes/evf-core-functions.php:1711
|
3420 |
msgid "Mauritania"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: includes/evf-core-functions.php:1712
|
3424 |
msgid "Mauritius"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: includes/evf-core-functions.php:1713
|
3428 |
msgid "Mayotte"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: includes/evf-core-functions.php:1714
|
3432 |
msgid "Mexico"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: includes/evf-core-functions.php:1715
|
3436 |
msgid "Micronesia"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: includes/evf-core-functions.php:1716
|
3440 |
msgid "Moldova"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: includes/evf-core-functions.php:1717
|
3444 |
msgid "Monaco"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: includes/evf-core-functions.php:1718
|
3448 |
msgid "Mongolia"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
+
#: includes/evf-core-functions.php:1719
|
3452 |
msgid "Montenegro"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: includes/evf-core-functions.php:1720
|
3456 |
msgid "Montserrat"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: includes/evf-core-functions.php:1721
|
3460 |
msgid "Morocco"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: includes/evf-core-functions.php:1722
|
3464 |
msgid "Mozambique"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: includes/evf-core-functions.php:1723
|
3468 |
msgid "Myanmar"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: includes/evf-core-functions.php:1724
|
3472 |
msgid "Namibia"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: includes/evf-core-functions.php:1725
|
3476 |
msgid "Nauru"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: includes/evf-core-functions.php:1726
|
3480 |
msgid "Nepal"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: includes/evf-core-functions.php:1727
|
3484 |
msgid "Netherlands"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: includes/evf-core-functions.php:1728
|
3488 |
msgid "New Caledonia"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: includes/evf-core-functions.php:1729
|
3492 |
msgid "New Zealand"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: includes/evf-core-functions.php:1730
|
3496 |
msgid "Nicaragua"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: includes/evf-core-functions.php:1731
|
3500 |
msgid "Niger"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: includes/evf-core-functions.php:1732
|
3504 |
msgid "Nigeria"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: includes/evf-core-functions.php:1733
|
3508 |
msgid "Niue"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: includes/evf-core-functions.php:1734
|
3512 |
msgid "Norfolk Island"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: includes/evf-core-functions.php:1735
|
3516 |
msgid "Northern Mariana Islands"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: includes/evf-core-functions.php:1736
|
3520 |
msgid "North Korea"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: includes/evf-core-functions.php:1737
|
3524 |
msgid "Norway"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: includes/evf-core-functions.php:1738
|
3528 |
msgid "Oman"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: includes/evf-core-functions.php:1739
|
3532 |
msgid "Pakistan"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: includes/evf-core-functions.php:1740
|
3536 |
msgid "Palestinian Territory"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: includes/evf-core-functions.php:1741
|
3540 |
msgid "Panama"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: includes/evf-core-functions.php:1742
|
3544 |
msgid "Papua New Guinea"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: includes/evf-core-functions.php:1743
|
3548 |
msgid "Paraguay"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: includes/evf-core-functions.php:1744
|
3552 |
msgid "Peru"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: includes/evf-core-functions.php:1745
|
3556 |
msgid "Philippines"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: includes/evf-core-functions.php:1746
|
3560 |
msgid "Pitcairn"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: includes/evf-core-functions.php:1747
|
3564 |
msgid "Poland"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: includes/evf-core-functions.php:1748
|
3568 |
msgid "Portugal"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: includes/evf-core-functions.php:1749
|
3572 |
msgid "Puerto Rico"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: includes/evf-core-functions.php:1750
|
3576 |
msgid "Qatar"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: includes/evf-core-functions.php:1751
|
3580 |
msgid "Reunion"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: includes/evf-core-functions.php:1752
|
3584 |
msgid "Romania"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: includes/evf-core-functions.php:1753
|
3588 |
msgid "Russia"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: includes/evf-core-functions.php:1754
|
3592 |
msgid "Rwanda"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: includes/evf-core-functions.php:1755
|
3596 |
msgid "Saint Barthélemy"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: includes/evf-core-functions.php:1756
|
3600 |
msgid "Saint Helena"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: includes/evf-core-functions.php:1757
|
3604 |
msgid "Saint Kitts and Nevis"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: includes/evf-core-functions.php:1758
|
3608 |
msgid "Saint Lucia"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: includes/evf-core-functions.php:1759
|
3612 |
msgid "Saint Martin (French part)"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: includes/evf-core-functions.php:1760
|
3616 |
msgid "Saint Martin (Dutch part)"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: includes/evf-core-functions.php:1761
|
3620 |
msgid "Saint Pierre and Miquelon"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: includes/evf-core-functions.php:1762
|
3624 |
msgid "Saint Vincent and the Grenadines"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: includes/evf-core-functions.php:1763
|
3628 |
msgid "San Marino"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: includes/evf-core-functions.php:1764
|
3632 |
msgid "São Tomé and Príncipe"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: includes/evf-core-functions.php:1765
|
3636 |
msgid "Saudi Arabia"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: includes/evf-core-functions.php:1766
|
3640 |
msgid "Senegal"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: includes/evf-core-functions.php:1767
|
3644 |
msgid "Serbia"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: includes/evf-core-functions.php:1768
|
3648 |
msgid "Seychelles"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: includes/evf-core-functions.php:1769
|
3652 |
msgid "Sierra Leone"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: includes/evf-core-functions.php:1770
|
3656 |
msgid "Singapore"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: includes/evf-core-functions.php:1771
|
3660 |
msgid "Slovakia"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: includes/evf-core-functions.php:1772
|
3664 |
msgid "Slovenia"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: includes/evf-core-functions.php:1773
|
3668 |
msgid "Solomon Islands"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: includes/evf-core-functions.php:1774
|
3672 |
msgid "Somalia"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: includes/evf-core-functions.php:1775
|
3676 |
msgid "South Africa"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: includes/evf-core-functions.php:1776
|
3680 |
msgid "South Georgia/Sandwich Islands"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: includes/evf-core-functions.php:1777
|
3684 |
msgid "South Korea"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: includes/evf-core-functions.php:1778
|
3688 |
msgid "South Sudan"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: includes/evf-core-functions.php:1779
|
3692 |
msgid "Spain"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: includes/evf-core-functions.php:1780
|
3696 |
msgid "Sri Lanka"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: includes/evf-core-functions.php:1781
|
3700 |
msgid "Sudan"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: includes/evf-core-functions.php:1782
|
3704 |
msgid "Suriname"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: includes/evf-core-functions.php:1783
|
3708 |
msgid "Svalbard and Jan Mayen"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: includes/evf-core-functions.php:1784
|
3712 |
msgid "Swaziland"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: includes/evf-core-functions.php:1785
|
3716 |
msgid "Sweden"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: includes/evf-core-functions.php:1786
|
3720 |
msgid "Switzerland"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: includes/evf-core-functions.php:1787
|
3724 |
msgid "Syria"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: includes/evf-core-functions.php:1788
|
3728 |
msgid "Taiwan"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: includes/evf-core-functions.php:1789
|
3732 |
msgid "Tajikistan"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: includes/evf-core-functions.php:1790
|
3736 |
msgid "Tanzania"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: includes/evf-core-functions.php:1791
|
3740 |
msgid "Thailand"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: includes/evf-core-functions.php:1792
|
3744 |
msgid "Timor-Leste"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: includes/evf-core-functions.php:1793
|
3748 |
msgid "Togo"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: includes/evf-core-functions.php:1794
|
3752 |
msgid "Tokelau"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: includes/evf-core-functions.php:1795
|
3756 |
msgid "Tonga"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: includes/evf-core-functions.php:1796
|
3760 |
msgid "Trinidad and Tobago"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: includes/evf-core-functions.php:1797
|
3764 |
msgid "Tunisia"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: includes/evf-core-functions.php:1798
|
3768 |
msgid "Turkey"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: includes/evf-core-functions.php:1799
|
3772 |
msgid "Turkmenistan"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: includes/evf-core-functions.php:1800
|
3776 |
msgid "Turks and Caicos Islands"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: includes/evf-core-functions.php:1801
|
3780 |
msgid "Tuvalu"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: includes/evf-core-functions.php:1802
|
3784 |
msgid "Uganda"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: includes/evf-core-functions.php:1803
|
3788 |
msgid "Ukraine"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: includes/evf-core-functions.php:1804
|
3792 |
msgid "United Arab Emirates"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: includes/evf-core-functions.php:1805
|
3796 |
msgid "United Kingdom (UK)"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: includes/evf-core-functions.php:1806
|
3800 |
msgid "United States (US)"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: includes/evf-core-functions.php:1807
|
3804 |
msgid "United States (US) Minor Outlying Islands"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: includes/evf-core-functions.php:1808
|
3808 |
msgid "Uruguay"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: includes/evf-core-functions.php:1809
|
3812 |
msgid "Uzbekistan"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: includes/evf-core-functions.php:1810
|
3816 |
msgid "Vanuatu"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: includes/evf-core-functions.php:1811
|
3820 |
msgid "Vatican"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: includes/evf-core-functions.php:1812
|
3824 |
msgid "Venezuela"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: includes/evf-core-functions.php:1813
|
3828 |
msgid "Vietnam"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: includes/evf-core-functions.php:1814
|
3832 |
msgid "Virgin Islands (British)"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
+
#: includes/evf-core-functions.php:1815
|
3836 |
msgid "Virgin Islands (US)"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: includes/evf-core-functions.php:1816
|
3840 |
msgid "Wallis and Futuna"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: includes/evf-core-functions.php:1817
|
3844 |
msgid "Western Sahara"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: includes/evf-core-functions.php:1818
|
3848 |
msgid "Samoa"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: includes/evf-core-functions.php:1819
|
3852 |
msgid "Yemen"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: includes/evf-core-functions.php:1820
|
3856 |
msgid "Zambia"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: includes/evf-core-functions.php:1821
|
3860 |
msgid "Zimbabwe"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: includes/evf-core-functions.php:1835
|
3864 |
msgid "Alabama"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
#: includes/evf-core-functions.php:1836
|
3868 |
msgid "Alaska"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: includes/evf-core-functions.php:1837
|
3872 |
msgid "Arizona"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
+
#: includes/evf-core-functions.php:1838
|
3876 |
msgid "Arkansas"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: includes/evf-core-functions.php:1839
|
3880 |
msgid "California"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
+
#: includes/evf-core-functions.php:1840
|
3884 |
msgid "Colorado"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
+
#: includes/evf-core-functions.php:1841
|
3888 |
msgid "Connecticut"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: includes/evf-core-functions.php:1842
|
3892 |
msgid "Delaware"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: includes/evf-core-functions.php:1843
|
3896 |
msgid "District of Columbia"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
+
#: includes/evf-core-functions.php:1844
|
3900 |
msgid "Florida"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: includes/evf-core-functions.php:1846
|
3904 |
msgid "Hawaii"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: includes/evf-core-functions.php:1847
|
3908 |
msgid "Idaho"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: includes/evf-core-functions.php:1848
|
3912 |
msgid "Illinois"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: includes/evf-core-functions.php:1849
|
3916 |
msgid "Indiana"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: includes/evf-core-functions.php:1850
|
3920 |
msgid "Iowa"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: includes/evf-core-functions.php:1851
|
3924 |
msgid "Kansas"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: includes/evf-core-functions.php:1852
|
3928 |
msgid "Kentucky"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: includes/evf-core-functions.php:1853
|
3932 |
msgid "Louisiana"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: includes/evf-core-functions.php:1854
|
3936 |
msgid "Maine"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: includes/evf-core-functions.php:1855
|
3940 |
msgid "Maryland"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: includes/evf-core-functions.php:1856
|
3944 |
msgid "Massachusetts"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: includes/evf-core-functions.php:1857
|
3948 |
msgid "Michigan"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: includes/evf-core-functions.php:1858
|
3952 |
msgid "Minnesota"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: includes/evf-core-functions.php:1859
|
3956 |
msgid "Mississippi"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: includes/evf-core-functions.php:1860
|
3960 |
msgid "Missouri"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: includes/evf-core-functions.php:1861
|
3964 |
msgid "Montana"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: includes/evf-core-functions.php:1862
|
3968 |
msgid "Nebraska"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: includes/evf-core-functions.php:1863
|
3972 |
msgid "Nevada"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: includes/evf-core-functions.php:1864
|
3976 |
msgid "New Hampshire"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: includes/evf-core-functions.php:1865
|
3980 |
msgid "New Jersey"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: includes/evf-core-functions.php:1866
|
3984 |
msgid "New Mexico"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: includes/evf-core-functions.php:1867
|
3988 |
msgid "New York"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: includes/evf-core-functions.php:1868
|
3992 |
msgid "North Carolina"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: includes/evf-core-functions.php:1869
|
3996 |
msgid "North Dakota"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: includes/evf-core-functions.php:1870
|
4000 |
msgid "Ohio"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: includes/evf-core-functions.php:1871
|
4004 |
msgid "Oklahoma"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: includes/evf-core-functions.php:1872
|
4008 |
msgid "Oregon"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: includes/evf-core-functions.php:1873
|
4012 |
msgid "Pennsylvania"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: includes/evf-core-functions.php:1874
|
4016 |
msgid "Rhode Island"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: includes/evf-core-functions.php:1875
|
4020 |
msgid "South Carolina"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: includes/evf-core-functions.php:1876
|
4024 |
msgid "South Dakota"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: includes/evf-core-functions.php:1877
|
4028 |
msgid "Tennessee"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: includes/evf-core-functions.php:1878
|
4032 |
msgid "Texas"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: includes/evf-core-functions.php:1879
|
4036 |
msgid "Utah"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: includes/evf-core-functions.php:1880
|
4040 |
msgid "Vermont"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: includes/evf-core-functions.php:1881
|
4044 |
msgid "Virginia"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: includes/evf-core-functions.php:1882
|
4048 |
msgid "Washington"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: includes/evf-core-functions.php:1883
|
4052 |
msgid "West Virginia"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: includes/evf-core-functions.php:1884
|
4056 |
msgid "Wisconsin"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: includes/evf-core-functions.php:1885
|
4060 |
msgid "Wyoming"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: includes/evf-core-functions.php:1900
|
4064 |
msgid "General Fields"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: includes/evf-core-functions.php:1901
|
4068 |
msgid "Advanced Fields"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: includes/evf-core-functions.php:1902
|
4072 |
msgid "Payment Fields"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: includes/evf-core-functions.php:1903
|
4076 |
msgid "Survey Fields"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: includes/evf-core-functions.php:1954
|
4080 |
msgid "Check this option to mark the field required."
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: includes/evf-core-functions.php:1965
|
4084 |
#: includes/fields/class-evf-field-checkbox.php:27
|
4085 |
#: includes/fields/class-evf-field-radio.php:27
|
4086 |
msgid "First Choice"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: includes/evf-core-functions.php:1966
|
4090 |
#: includes/fields/class-evf-field-checkbox.php:33
|
4091 |
#: includes/fields/class-evf-field-radio.php:33
|
4092 |
msgid "Second Choice"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: includes/evf-core-functions.php:1967
|
4096 |
#: includes/fields/class-evf-field-checkbox.php:39
|
4097 |
#: includes/fields/class-evf-field-radio.php:39
|
4098 |
msgid "Third Choice"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: includes/evf-core-functions.php:1981
|
4102 |
msgid "Enter CSS class for this field container. Class names should be separated with spaces."
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: includes/evf-core-functions.php:2101
|
4106 |
msgid "Tablet"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: includes/evf-core-functions.php:2103
|
4110 |
msgid "Mobile"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
+
#: includes/evf-core-functions.php:2105
|
4114 |
msgid "Desktop"
|
4115 |
msgstr ""
|
4116 |
|
4585 |
#: templates/emails/footer-default.php:45
|
4586 |
msgid "Sent from %s"
|
4587 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: WPEverest
|
3 |
Tags: contact form, forms, form builder, contact, custom form
|
4 |
Requires at least: 5.0
|
5 |
-
Tested up to: 5.8
|
6 |
Requires PHP: 5.4
|
7 |
-
Stable tag: 1.8.2.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -301,6 +301,8 @@ Yes, we do. Check out this [Getting Started Videos](https://docs.wpeverest.com/d
|
|
301 |
Yes you can! Join in on our [GitHub repository](https://github.com/wpeverest/everest-forms/) :)
|
302 |
|
303 |
== Changelog ==
|
|
|
|
|
304 |
|
305 |
= 1.8.2.1 - 29-12-2021 =
|
306 |
* Fix - Sanitization and escaping issues.
|
2 |
Contributors: WPEverest
|
3 |
Tags: contact form, forms, form builder, contact, custom form
|
4 |
Requires at least: 5.0
|
5 |
+
Tested up to: 5.8.2
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 1.8.2.2
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
301 |
Yes you can! Join in on our [GitHub repository](https://github.com/wpeverest/everest-forms/) :)
|
302 |
|
303 |
== Changelog ==
|
304 |
+
= 1.8.2.2 - 30-12-2021 =
|
305 |
+
* Fix - Sanitization and escaping issues.
|
306 |
|
307 |
= 1.8.2.1 - 29-12-2021 =
|
308 |
* Fix - Sanitization and escaping issues.
|
templates/emails/default.php
CHANGED
@@ -267,7 +267,7 @@ defined( 'ABSPATH' ) || exit;
|
|
267 |
<?php
|
268 |
if ( ! empty( $header_image ) ) {
|
269 |
echo '<tr><td valign="top" align="center" id="templateHeader" style="padding-bottom:20px;text-align:center;">';
|
270 |
-
echo '<img src="' . esc_url( $header_image ) . '" alt="' . get_bloginfo( 'name' ) . '" />';
|
271 |
echo '</td></tr>';
|
272 |
}
|
273 |
?>
|
267 |
<?php
|
268 |
if ( ! empty( $header_image ) ) {
|
269 |
echo '<tr><td valign="top" align="center" id="templateHeader" style="padding-bottom:20px;text-align:center;">';
|
270 |
+
echo '<img src="' . esc_url( $header_image ) . '" alt="' . esc_attr( get_bloginfo( 'name' ) ) . '" />';
|
271 |
echo '</td></tr>';
|
272 |
}
|
273 |
?>
|
templates/emails/footer-default.php
CHANGED
@@ -30,7 +30,7 @@ $background_color = '#e9eaec';
|
|
30 |
</td>
|
31 |
</tr>
|
32 |
<tr>
|
33 |
-
<td valign="top" id="templateFooter" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo $background_color; ?>;border-top: 0;border-bottom: 0;padding-top: 12px;padding-bottom: 12px;">
|
34 |
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
|
35 |
<tbody class="mcnTextBlockOuter">
|
36 |
<tr>
|
@@ -43,7 +43,7 @@ $background_color = '#e9eaec';
|
|
43 |
<?php
|
44 |
/* translators: %s - link to a site. */
|
45 |
$footer = sprintf( esc_html__( 'Sent from %s', 'everest-forms' ), '<a href="' . esc_url( home_url() ) . '" style="color:#bbbbbb;">' . wp_specialchars_decode( get_bloginfo( 'name' ) ) . '</a>' );
|
46 |
-
echo apply_filters( 'everest_forms_email_footer_text', $footer );
|
47 |
?>
|
48 |
</td>
|
49 |
</tr>
|
30 |
</td>
|
31 |
</tr>
|
32 |
<tr>
|
33 |
+
<td valign="top" id="templateFooter" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo esc_attr( $background_color ); ?>;border-top: 0;border-bottom: 0;padding-top: 12px;padding-bottom: 12px;">
|
34 |
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
|
35 |
<tbody class="mcnTextBlockOuter">
|
36 |
<tr>
|
43 |
<?php
|
44 |
/* translators: %s - link to a site. */
|
45 |
$footer = sprintf( esc_html__( 'Sent from %s', 'everest-forms' ), '<a href="' . esc_url( home_url() ) . '" style="color:#bbbbbb;">' . wp_specialchars_decode( get_bloginfo( 'name' ) ) . '</a>' );
|
46 |
+
echo wp_kses_post( apply_filters( 'everest_forms_email_footer_text', $footer ) );
|
47 |
?>
|
48 |
</td>
|
49 |
</tr>
|
templates/emails/header-default.php
CHANGED
@@ -33,7 +33,7 @@ $background_color = '#e9eaec';
|
|
33 |
<meta charset="UTF-8">
|
34 |
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
35 |
<meta name="viewport" content="width=device-width, initial-scale=1">
|
36 |
-
<title><?php echo get_bloginfo( 'name' ); ?></title>
|
37 |
<style type="text/css">
|
38 |
p{
|
39 |
margin:10px 0;
|
@@ -120,7 +120,7 @@ $background_color = '#e9eaec';
|
|
120 |
/***** Make theme edits below if needed *****/
|
121 |
/* Page - Background Style */
|
122 |
body,#bodyTable{
|
123 |
-
background-color:<?php echo $background_color; ?>;
|
124 |
}
|
125 |
/* Page - Heading 1 */
|
126 |
h1{
|
@@ -195,7 +195,7 @@ $background_color = '#e9eaec';
|
|
195 |
}
|
196 |
/* Footer - Footer Style */
|
197 |
#templateFooter{
|
198 |
-
background-color:<?php echo $background_color; ?>;
|
199 |
border-top:0;
|
200 |
border-bottom:0;
|
201 |
padding-top:12px;
|
@@ -246,10 +246,10 @@ $background_color = '#e9eaec';
|
|
246 |
}
|
247 |
</style>
|
248 |
</head>
|
249 |
-
<body style="height: 100%;margin: 0;padding: 0;width: 100%;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo $background_color; ?>;">
|
250 |
<!-- Don't forget to run final template through http://templates.mailchimp.com/resources/inline-css/ -->
|
251 |
<center>
|
252 |
-
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;height: 100%;margin: 0;padding: 0;width: 100%;background-color: <?php echo $background_color; ?>;">
|
253 |
<tr>
|
254 |
<td align="center" valign="top" id="bodyCell" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;height: 100%;margin: 0;padding: 50px 50px;width: 100%;">
|
255 |
<!-- BEGIN TEMPLATE // -->
|
33 |
<meta charset="UTF-8">
|
34 |
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
35 |
<meta name="viewport" content="width=device-width, initial-scale=1">
|
36 |
+
<title><?php echo esc_html( get_bloginfo( 'name' ) ); ?></title>
|
37 |
<style type="text/css">
|
38 |
p{
|
39 |
margin:10px 0;
|
120 |
/***** Make theme edits below if needed *****/
|
121 |
/* Page - Background Style */
|
122 |
body,#bodyTable{
|
123 |
+
background-color:<?php echo esc_attr( $background_color ); ?>;
|
124 |
}
|
125 |
/* Page - Heading 1 */
|
126 |
h1{
|
195 |
}
|
196 |
/* Footer - Footer Style */
|
197 |
#templateFooter{
|
198 |
+
background-color:<?php echo esc_attr( $background_color ); ?>;
|
199 |
border-top:0;
|
200 |
border-bottom:0;
|
201 |
padding-top:12px;
|
246 |
}
|
247 |
</style>
|
248 |
</head>
|
249 |
+
<body style="height: 100%;margin: 0;padding: 0;width: 100%;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo esc_attr( $background_color ); ?>;">
|
250 |
<!-- Don't forget to run final template through http://templates.mailchimp.com/resources/inline-css/ -->
|
251 |
<center>
|
252 |
+
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;height: 100%;margin: 0;padding: 0;width: 100%;background-color: <?php echo esc_attr( $background_color ); ?>;">
|
253 |
<tr>
|
254 |
<td align="center" valign="top" id="bodyCell" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;height: 100%;margin: 0;padding: 50px 50px;width: 100%;">
|
255 |
<!-- BEGIN TEMPLATE // -->
|