Version Description
- Improvement: Added filters to control CSV header and row values.
- Bugfix: HTML entities were encoded in CSV export files.
Download this release
Release Info
Developer | thethemefoundry |
Plugin | Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms |
Version | 1.6.12 |
Comparing to | |
See all releases |
Code changes from version 1.6.11 to 1.6.12
- happyforms.php +2 -2
- inc/classes/class-message-admin.php +28 -29
- inc/helpers/helper-misc.php +37 -0
- languages/happyforms.pot +254 -254
- readme.txt +8 -1
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: The Theme Foundry
|
8 |
-
* Version: 1.6.
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
@@ -13,7 +13,7 @@
|
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
-
define( 'HAPPYFORMS_VERSION', '1.6.
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: The Theme Foundry
|
8 |
+
* Version: 1.6.12
|
9 |
* Author URI: https://thethemefoundry.com
|
10 |
* Upgrade URI: https://thethemefoundry.com
|
11 |
*/
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
+
define( 'HAPPYFORMS_VERSION', '1.6.12' );
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
inc/classes/class-message-admin.php
CHANGED
@@ -710,50 +710,49 @@ class HappyForms_Message_Admin {
|
|
710 |
global $wpdb;
|
711 |
|
712 |
$this->parse_request();
|
713 |
-
$part_metas = wp_list_pluck( $this->current_form['parts'], 'id' );
|
714 |
-
$part_labels = wp_list_pluck( $this->current_form['parts'], 'label' );
|
715 |
-
$ids_values = implode( ', ', $ids );
|
716 |
-
$part_meta_values = implode( '\', \'', $part_metas );
|
717 |
-
$filename = 'messages.csv';
|
718 |
-
$messages = array();
|
719 |
-
|
720 |
-
$results = $wpdb->get_results(
|
721 |
-
"SELECT posts.ID, postmeta.meta_value FROM $wpdb->posts posts
|
722 |
-
LEFT JOIN $wpdb->postmeta postmeta ON posts.ID = postmeta.post_id
|
723 |
-
WHERE posts.ID IN({$ids_values}) AND postmeta.meta_key IN('{$part_meta_values}')
|
724 |
-
ORDER BY FIELD(postmeta.meta_key, '{$part_meta_values}');",
|
725 |
-
ARRAY_A
|
726 |
-
);
|
727 |
-
|
728 |
-
$headers = array();
|
729 |
|
730 |
-
|
731 |
-
|
|
|
|
|
|
|
|
|
|
|
732 |
|
733 |
-
|
734 |
-
|
735 |
-
|
|
|
|
|
736 |
|
737 |
-
|
|
|
738 |
}
|
739 |
|
740 |
-
$
|
|
|
|
|
|
|
741 |
|
742 |
-
|
743 |
-
|
744 |
-
$
|
|
|
745 |
}
|
746 |
|
747 |
-
$
|
748 |
}
|
749 |
|
|
|
750 |
$output = fopen( 'php://output', 'w' );
|
|
|
751 |
header( 'Content-Description: File Transfer' );
|
752 |
header( 'Content-Disposition: attachment; filename=' . $filename );
|
753 |
header( 'Content-Type: text/csv; charset=' . get_option( 'blog_charset' ), true );
|
754 |
|
755 |
-
|
756 |
-
|
|
|
757 |
fputcsv( $output, array_values( $row ) );
|
758 |
}
|
759 |
|
710 |
global $wpdb;
|
711 |
|
712 |
$this->parse_request();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
|
714 |
+
$controller = happyforms_get_message_controller();
|
715 |
+
$messages = get_posts( array(
|
716 |
+
'post_type' => $controller->post_type,
|
717 |
+
'posts_per_page' => -1,
|
718 |
+
'post__in' => $ids,
|
719 |
+
'post_status' => 'any',
|
720 |
+
) );
|
721 |
|
722 |
+
$parts = array_column( $this->current_form['parts'], null, 'id' );
|
723 |
+
$messages = array_map( array( $controller, 'to_array' ), $messages );
|
724 |
+
$messages = wp_list_pluck( $messages, 'parts' );
|
725 |
+
$headers = array();
|
726 |
+
$rows = array();
|
727 |
|
728 |
+
foreach ( $parts as $part_id => $part ) {
|
729 |
+
$headers[$part_id] = happyforms_get_csv_header( $part );
|
730 |
}
|
731 |
|
732 |
+
$headers = apply_filters( 'happyforms_csv_headers', $headers, $this->current_form );
|
733 |
+
|
734 |
+
foreach( $messages as $message ) {
|
735 |
+
$row = array();
|
736 |
|
737 |
+
foreach( $headers as $part_id => $header ) {
|
738 |
+
$value = $message[$part_id];
|
739 |
+
$part = $parts[$part_id];
|
740 |
+
$row[] = happyforms_get_csv_value( $value, $message, $part, $this->current_form );
|
741 |
}
|
742 |
|
743 |
+
$rows[] = $row;
|
744 |
}
|
745 |
|
746 |
+
$filename = 'messages.csv';
|
747 |
$output = fopen( 'php://output', 'w' );
|
748 |
+
|
749 |
header( 'Content-Description: File Transfer' );
|
750 |
header( 'Content-Disposition: attachment; filename=' . $filename );
|
751 |
header( 'Content-Type: text/csv; charset=' . get_option( 'blog_charset' ), true );
|
752 |
|
753 |
+
fputcsv( $output, array_values( $headers ) );
|
754 |
+
|
755 |
+
foreach( $rows as $row ) {
|
756 |
fputcsv( $output, array_values( $row ) );
|
757 |
}
|
758 |
|
inc/helpers/helper-misc.php
CHANGED
@@ -41,6 +41,43 @@ function happyforms_get_part_label( $part_data ) {
|
|
41 |
|
42 |
endif;
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
if ( ! function_exists( 'happyforms_get_message_part_value' ) ):
|
45 |
/**
|
46 |
* Get the part submission value in a readable format.
|
41 |
|
42 |
endif;
|
43 |
|
44 |
+
if ( ! function_exists( 'happyforms_get_csv_header' ) ):
|
45 |
+
/**
|
46 |
+
* Get a non-empty CSV header for the part.
|
47 |
+
*
|
48 |
+
* @param array $part The part data to retrieve the label for.
|
49 |
+
*
|
50 |
+
* @return string
|
51 |
+
*/
|
52 |
+
function happyforms_get_csv_header( $part ) {
|
53 |
+
$part_label = $part['label'];
|
54 |
+
$part_id = $part['id'];
|
55 |
+
$header = ! empty( $part['label'] ) ? $part_label : "Blank [{$part_id}]";
|
56 |
+
|
57 |
+
return $header;
|
58 |
+
}
|
59 |
+
|
60 |
+
endif;
|
61 |
+
|
62 |
+
if ( ! function_exists( 'happyforms_get_csv_value' ) ):
|
63 |
+
/**
|
64 |
+
* Get a CSV response value.
|
65 |
+
*
|
66 |
+
* @param array $message The message data to retrieve the value for.
|
67 |
+
* @param array $part The part data relative to the current value.
|
68 |
+
*
|
69 |
+
* @return string
|
70 |
+
*/
|
71 |
+
function happyforms_get_csv_value( $value, $message, $part, $form ) {
|
72 |
+
$value = happyforms_get_message_part_value( $value, $part );
|
73 |
+
$value = htmlspecialchars_decode( $value );
|
74 |
+
$value = apply_filters( 'happyforms_get_csv_value', $value, $message, $part, $form );
|
75 |
+
|
76 |
+
return $value;
|
77 |
+
}
|
78 |
+
|
79 |
+
endif;
|
80 |
+
|
81 |
if ( ! function_exists( 'happyforms_get_message_part_value' ) ):
|
82 |
/**
|
83 |
* Get the part submission value in a readable format.
|
languages/happyforms.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: HappyForms 1.6.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2018-11-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -150,7 +150,7 @@ msgid "Duplicate"
|
|
150 |
msgstr ""
|
151 |
|
152 |
#: inc/classes/class-form-admin.php:374 inc/classes/class-message-admin.php:611
|
153 |
-
#: inc/classes/class-message-admin.php:
|
154 |
msgid "Trash"
|
155 |
msgstr ""
|
156 |
|
@@ -171,7 +171,7 @@ msgstr ""
|
|
171 |
|
172 |
#: inc/classes/class-form-controller.php:92
|
173 |
#: inc/classes/class-message-admin.php:372
|
174 |
-
#: inc/classes/class-message-admin.php:
|
175 |
msgid "Form"
|
176 |
msgstr ""
|
177 |
|
@@ -804,12 +804,12 @@ msgid "All forms"
|
|
804 |
msgstr ""
|
805 |
|
806 |
#: inc/classes/class-message-admin.php:609
|
807 |
-
#: inc/classes/class-message-admin.php:
|
808 |
msgid "Mark read"
|
809 |
msgstr ""
|
810 |
|
811 |
#: inc/classes/class-message-admin.php:610
|
812 |
-
#: inc/classes/class-message-admin.php:
|
813 |
msgid "Mark unread"
|
814 |
msgstr ""
|
815 |
|
@@ -825,27 +825,27 @@ msgstr ""
|
|
825 |
msgid "Delete Permanently"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: inc/classes/class-message-admin.php:
|
829 |
msgid "Details"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: inc/classes/class-message-admin.php:
|
833 |
msgid "Submitted on"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: inc/classes/class-message-admin.php:
|
837 |
msgid "M j, Y @ H:i"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: inc/classes/class-message-admin.php:
|
841 |
msgid "Status"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: inc/classes/class-message-admin.php:
|
845 |
msgid "Read"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: inc/classes/class-message-admin.php:
|
849 |
msgid "Unread"
|
850 |
msgstr ""
|
851 |
|
@@ -1405,63 +1405,63 @@ msgstr ""
|
|
1405 |
msgid "December"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: inc/helpers/helper-form-templates.php:911 inc/helpers/helper-misc.php:
|
1409 |
msgid "Andorra"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: inc/helpers/helper-form-templates.php:912 inc/helpers/helper-misc.php:
|
1413 |
msgid "United Arab Emirates"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: inc/helpers/helper-form-templates.php:913 inc/helpers/helper-misc.php:
|
1417 |
msgid "Afghanistan"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: inc/helpers/helper-form-templates.php:914 inc/helpers/helper-misc.php:
|
1421 |
msgid "Antigua and Barbuda"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: inc/helpers/helper-form-templates.php:915 inc/helpers/helper-misc.php:
|
1425 |
msgid "Anguilla"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: inc/helpers/helper-form-templates.php:916 inc/helpers/helper-misc.php:
|
1429 |
msgid "Albania"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: inc/helpers/helper-form-templates.php:917 inc/helpers/helper-misc.php:
|
1433 |
msgid "Armenia"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: inc/helpers/helper-form-templates.php:918 inc/helpers/helper-misc.php:
|
1437 |
msgid "Angola"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: inc/helpers/helper-form-templates.php:919 inc/helpers/helper-misc.php:
|
1441 |
msgid "Antarctica"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: inc/helpers/helper-form-templates.php:920 inc/helpers/helper-misc.php:
|
1445 |
msgid "Argentina"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: inc/helpers/helper-form-templates.php:921 inc/helpers/helper-misc.php:
|
1449 |
msgid "American Samoa"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: inc/helpers/helper-form-templates.php:922 inc/helpers/helper-misc.php:
|
1453 |
msgid "Austria"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: inc/helpers/helper-form-templates.php:923 inc/helpers/helper-misc.php:
|
1457 |
msgid "Australia"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: inc/helpers/helper-form-templates.php:924 inc/helpers/helper-misc.php:
|
1461 |
msgid "Aruba"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: inc/helpers/helper-form-templates.php:925 inc/helpers/helper-misc.php:
|
1465 |
msgid "Azerbaijan"
|
1466 |
msgstr ""
|
1467 |
|
@@ -1469,35 +1469,35 @@ msgstr ""
|
|
1469 |
msgid "Bosnia and Herzegovina"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: inc/helpers/helper-form-templates.php:927 inc/helpers/helper-misc.php:
|
1473 |
msgid "Barbados"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: inc/helpers/helper-form-templates.php:928 inc/helpers/helper-misc.php:
|
1477 |
msgid "Bangladesh"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: inc/helpers/helper-form-templates.php:929 inc/helpers/helper-misc.php:
|
1481 |
msgid "Belgium"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: inc/helpers/helper-form-templates.php:930 inc/helpers/helper-misc.php:
|
1485 |
msgid "Burkina Faso"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: inc/helpers/helper-form-templates.php:931 inc/helpers/helper-misc.php:
|
1489 |
msgid "Bulgaria"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: inc/helpers/helper-form-templates.php:932 inc/helpers/helper-misc.php:
|
1493 |
msgid "Bahrain"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: inc/helpers/helper-form-templates.php:933 inc/helpers/helper-misc.php:
|
1497 |
msgid "Burundi"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: inc/helpers/helper-form-templates.php:934 inc/helpers/helper-misc.php:
|
1501 |
msgid "Benin"
|
1502 |
msgstr ""
|
1503 |
|
@@ -1505,43 +1505,43 @@ msgstr ""
|
|
1505 |
msgid "Saint Barthelemy"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: inc/helpers/helper-form-templates.php:936 inc/helpers/helper-misc.php:
|
1509 |
msgid "Bermuda"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: inc/helpers/helper-form-templates.php:937 inc/helpers/helper-misc.php:
|
1513 |
msgid "Brunei Darussalam"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: inc/helpers/helper-form-templates.php:938 inc/helpers/helper-misc.php:
|
1517 |
msgid "Bolivia"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: inc/helpers/helper-form-templates.php:939 inc/helpers/helper-misc.php:
|
1521 |
msgid "Brazil"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: inc/helpers/helper-form-templates.php:940 inc/helpers/helper-misc.php:
|
1525 |
msgid "Bahamas"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: inc/helpers/helper-form-templates.php:941 inc/helpers/helper-misc.php:
|
1529 |
msgid "Bhutan"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: inc/helpers/helper-form-templates.php:942 inc/helpers/helper-misc.php:
|
1533 |
msgid "Botswana"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: inc/helpers/helper-form-templates.php:943 inc/helpers/helper-misc.php:
|
1537 |
msgid "Belarus"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: inc/helpers/helper-form-templates.php:944 inc/helpers/helper-misc.php:
|
1541 |
msgid "Belize"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: inc/helpers/helper-form-templates.php:945 inc/helpers/helper-misc.php:
|
1545 |
msgid "Canada"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1549,175 +1549,175 @@ msgstr ""
|
|
1549 |
msgid "Congo, The Democratic Republic of the"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: inc/helpers/helper-form-templates.php:947 inc/helpers/helper-misc.php:
|
1553 |
msgid "Central African Republic"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: inc/helpers/helper-form-templates.php:948 inc/helpers/helper-misc.php:
|
1557 |
msgid "Congo"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: inc/helpers/helper-form-templates.php:949 inc/helpers/helper-misc.php:
|
1561 |
msgid "Switzerland"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: inc/helpers/helper-form-templates.php:950 inc/helpers/helper-misc.php:
|
1565 |
msgid "Cook Islands"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: inc/helpers/helper-form-templates.php:951 inc/helpers/helper-misc.php:
|
1569 |
msgid "Chile"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: inc/helpers/helper-form-templates.php:952 inc/helpers/helper-misc.php:
|
1573 |
msgid "Cameroon"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: inc/helpers/helper-form-templates.php:953 inc/helpers/helper-misc.php:
|
1577 |
msgid "China"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: inc/helpers/helper-form-templates.php:954 inc/helpers/helper-misc.php:
|
1581 |
msgid "Colombia"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: inc/helpers/helper-form-templates.php:955 inc/helpers/helper-misc.php:
|
1585 |
msgid "Costa Rica"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: inc/helpers/helper-form-templates.php:956 inc/helpers/helper-misc.php:
|
1589 |
msgid "Cuba"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: inc/helpers/helper-form-templates.php:957 inc/helpers/helper-misc.php:
|
1593 |
msgid "Cape Verde"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: inc/helpers/helper-form-templates.php:958 inc/helpers/helper-misc.php:
|
1597 |
msgid "Cyprus"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: inc/helpers/helper-form-templates.php:959 inc/helpers/helper-misc.php:
|
1601 |
msgid "Czech Republic"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: inc/helpers/helper-form-templates.php:960 inc/helpers/helper-misc.php:
|
1605 |
msgid "Germany"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: inc/helpers/helper-form-templates.php:961 inc/helpers/helper-misc.php:
|
1609 |
msgid "Djibouti"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: inc/helpers/helper-form-templates.php:962 inc/helpers/helper-misc.php:
|
1613 |
msgid "Denmark"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: inc/helpers/helper-form-templates.php:963 inc/helpers/helper-misc.php:
|
1617 |
msgid "Dominica"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: inc/helpers/helper-form-templates.php:964 inc/helpers/helper-misc.php:
|
1621 |
msgid "Dominican Republic"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: inc/helpers/helper-form-templates.php:965 inc/helpers/helper-misc.php:
|
1625 |
msgid "Algeria"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: inc/helpers/helper-form-templates.php:966 inc/helpers/helper-misc.php:
|
1629 |
msgid "Ecuador"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: inc/helpers/helper-form-templates.php:967 inc/helpers/helper-misc.php:
|
1633 |
msgid "Estonia"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: inc/helpers/helper-form-templates.php:968 inc/helpers/helper-misc.php:
|
1637 |
msgid "Egypt"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: inc/helpers/helper-form-templates.php:969 inc/helpers/helper-misc.php:
|
1641 |
msgid "Eritrea"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: inc/helpers/helper-form-templates.php:970 inc/helpers/helper-misc.php:
|
1645 |
msgid "Spain"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: inc/helpers/helper-form-templates.php:971 inc/helpers/helper-misc.php:
|
1649 |
msgid "Ethiopia"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: inc/helpers/helper-form-templates.php:972 inc/helpers/helper-misc.php:
|
1653 |
msgid "Finland"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: inc/helpers/helper-form-templates.php:973 inc/helpers/helper-misc.php:
|
1657 |
msgid "Fiji"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: inc/helpers/helper-form-templates.php:974 inc/helpers/helper-misc.php:
|
1661 |
msgid "Falkland Islands (Malvinas)"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: inc/helpers/helper-form-templates.php:975 inc/helpers/helper-misc.php:
|
1665 |
msgid "Micronesia, Federated States of"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: inc/helpers/helper-form-templates.php:976 inc/helpers/helper-misc.php:
|
1669 |
msgid "Faroe Islands"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: inc/helpers/helper-form-templates.php:977 inc/helpers/helper-misc.php:
|
1673 |
msgid "France"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: inc/helpers/helper-form-templates.php:978 inc/helpers/helper-misc.php:
|
1677 |
msgid "Gabon"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: inc/helpers/helper-form-templates.php:979 inc/helpers/helper-misc.php:
|
1681 |
msgid "United Kingdom"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: inc/helpers/helper-form-templates.php:980 inc/helpers/helper-misc.php:
|
1685 |
msgid "Grenada"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: inc/helpers/helper-form-templates.php:981 inc/helpers/helper-misc.php:
|
1689 |
msgid "Georgia"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: inc/helpers/helper-form-templates.php:982 inc/helpers/helper-misc.php:
|
1693 |
msgid "Ghana"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: inc/helpers/helper-form-templates.php:983 inc/helpers/helper-misc.php:
|
1697 |
msgid "Gibraltar"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: inc/helpers/helper-form-templates.php:984 inc/helpers/helper-misc.php:
|
1701 |
msgid "Greenland"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: inc/helpers/helper-form-templates.php:985 inc/helpers/helper-misc.php:
|
1705 |
msgid "Gambia"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: inc/helpers/helper-form-templates.php:986 inc/helpers/helper-misc.php:
|
1709 |
msgid "Guinea"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: inc/helpers/helper-form-templates.php:987 inc/helpers/helper-misc.php:
|
1713 |
msgid "Greece"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: inc/helpers/helper-form-templates.php:988 inc/helpers/helper-misc.php:
|
1717 |
msgid "Guatemala"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: inc/helpers/helper-form-templates.php:989 inc/helpers/helper-misc.php:
|
1721 |
msgid "Guam"
|
1722 |
msgstr ""
|
1723 |
|
@@ -1725,15 +1725,15 @@ msgstr ""
|
|
1725 |
msgid "Guinea-bissau"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: inc/helpers/helper-form-templates.php:991 inc/helpers/helper-misc.php:
|
1729 |
msgid "Guyana"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: inc/helpers/helper-form-templates.php:992 inc/helpers/helper-misc.php:
|
1733 |
msgid "Hong Kong"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: inc/helpers/helper-form-templates.php:993 inc/helpers/helper-misc.php:
|
1737 |
msgid "Honduras"
|
1738 |
msgstr ""
|
1739 |
|
@@ -1741,31 +1741,31 @@ msgstr ""
|
|
1741 |
msgid "Croatia"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: inc/helpers/helper-form-templates.php:995 inc/helpers/helper-misc.php:
|
1745 |
msgid "Haiti"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: inc/helpers/helper-form-templates.php:996 inc/helpers/helper-misc.php:
|
1749 |
msgid "Hungary"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: inc/helpers/helper-form-templates.php:997 inc/helpers/helper-misc.php:
|
1753 |
msgid "Indonesia"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: inc/helpers/helper-form-templates.php:998 inc/helpers/helper-misc.php:
|
1757 |
msgid "Ireland"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: inc/helpers/helper-form-templates.php:999 inc/helpers/helper-misc.php:
|
1761 |
msgid "Israel"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: inc/helpers/helper-form-templates.php:1000 inc/helpers/helper-misc.php:
|
1765 |
msgid "India"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: inc/helpers/helper-form-templates.php:1001 inc/helpers/helper-misc.php:
|
1769 |
msgid "Iraq"
|
1770 |
msgstr ""
|
1771 |
|
@@ -1773,47 +1773,47 @@ msgstr ""
|
|
1773 |
msgid "Iran, Islamic Republic of"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: inc/helpers/helper-form-templates.php:1003 inc/helpers/helper-misc.php:
|
1777 |
msgid "Iceland"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: inc/helpers/helper-form-templates.php:1004 inc/helpers/helper-misc.php:
|
1781 |
msgid "Italy"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: inc/helpers/helper-form-templates.php:1005 inc/helpers/helper-misc.php:
|
1785 |
msgid "Jamaica"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: inc/helpers/helper-form-templates.php:1006 inc/helpers/helper-misc.php:
|
1789 |
msgid "Jordan"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: inc/helpers/helper-form-templates.php:1007 inc/helpers/helper-misc.php:
|
1793 |
msgid "Japan"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: inc/helpers/helper-form-templates.php:1008 inc/helpers/helper-misc.php:
|
1797 |
msgid "Kenya"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: inc/helpers/helper-form-templates.php:1009 inc/helpers/helper-misc.php:
|
1801 |
msgid "Kyrgyzstan"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: inc/helpers/helper-form-templates.php:1010 inc/helpers/helper-misc.php:
|
1805 |
msgid "Cambodia"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: inc/helpers/helper-form-templates.php:1011 inc/helpers/helper-misc.php:
|
1809 |
msgid "Kiribati"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: inc/helpers/helper-form-templates.php:1012 inc/helpers/helper-misc.php:
|
1813 |
msgid "Comoros"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: inc/helpers/helper-form-templates.php:1013 inc/helpers/helper-misc.php:
|
1817 |
msgid "Saint Kitts and Nevis"
|
1818 |
msgstr ""
|
1819 |
|
@@ -1825,11 +1825,11 @@ msgstr ""
|
|
1825 |
msgid "Korea Republic of"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: inc/helpers/helper-form-templates.php:1016 inc/helpers/helper-misc.php:
|
1829 |
msgid "Kuwait"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: inc/helpers/helper-form-templates.php:1017 inc/helpers/helper-misc.php:
|
1833 |
msgid "Cayman Islands"
|
1834 |
msgstr ""
|
1835 |
|
@@ -1837,55 +1837,55 @@ msgstr ""
|
|
1837 |
msgid "Lao Peoples Democratic Republic"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: inc/helpers/helper-form-templates.php:1019 inc/helpers/helper-misc.php:
|
1841 |
msgid "Lebanon"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: inc/helpers/helper-form-templates.php:1020 inc/helpers/helper-misc.php:
|
1845 |
msgid "Saint Lucia"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: inc/helpers/helper-form-templates.php:1021 inc/helpers/helper-misc.php:
|
1849 |
msgid "Liechtenstein"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: inc/helpers/helper-form-templates.php:1022 inc/helpers/helper-misc.php:
|
1853 |
msgid "Sri Lanka"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: inc/helpers/helper-form-templates.php:1023 inc/helpers/helper-misc.php:
|
1857 |
msgid "Liberia"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: inc/helpers/helper-form-templates.php:1024 inc/helpers/helper-misc.php:
|
1861 |
msgid "Lesotho"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: inc/helpers/helper-form-templates.php:1025 inc/helpers/helper-misc.php:
|
1865 |
msgid "Lithuania"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: inc/helpers/helper-form-templates.php:1026 inc/helpers/helper-misc.php:
|
1869 |
msgid "Luxembourg"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: inc/helpers/helper-form-templates.php:1027 inc/helpers/helper-misc.php:
|
1873 |
msgid "Latvia"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: inc/helpers/helper-form-templates.php:1028 inc/helpers/helper-misc.php:
|
1877 |
msgid "Libyan Arab Jamahiriya"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: inc/helpers/helper-form-templates.php:1029 inc/helpers/helper-misc.php:
|
1881 |
msgid "Morocco"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: inc/helpers/helper-form-templates.php:1030 inc/helpers/helper-misc.php:
|
1885 |
msgid "Monaco"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: inc/helpers/helper-form-templates.php:1031 inc/helpers/helper-misc.php:
|
1889 |
msgid "Moldova, Republic of"
|
1890 |
msgstr ""
|
1891 |
|
@@ -1893,147 +1893,147 @@ msgstr ""
|
|
1893 |
msgid "Montenegro"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: inc/helpers/helper-form-templates.php:1033 inc/helpers/helper-misc.php:
|
1897 |
msgid "Madagascar"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: inc/helpers/helper-form-templates.php:1034 inc/helpers/helper-misc.php:
|
1901 |
msgid "Marshall Islands"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: inc/helpers/helper-form-templates.php:1035 inc/helpers/helper-misc.php:
|
1905 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: inc/helpers/helper-form-templates.php:1036 inc/helpers/helper-misc.php:
|
1909 |
msgid "Mali"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: inc/helpers/helper-form-templates.php:1037 inc/helpers/helper-misc.php:
|
1913 |
msgid "Myanmar"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: inc/helpers/helper-form-templates.php:1038 inc/helpers/helper-misc.php:
|
1917 |
msgid "Mongolia"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: inc/helpers/helper-form-templates.php:1039 inc/helpers/helper-misc.php:
|
1921 |
msgid "Macau"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: inc/helpers/helper-form-templates.php:1040 inc/helpers/helper-misc.php:
|
1925 |
msgid "Northern Mariana Islands"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: inc/helpers/helper-form-templates.php:1041 inc/helpers/helper-misc.php:
|
1929 |
msgid "Mauritania"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: inc/helpers/helper-form-templates.php:1042 inc/helpers/helper-misc.php:
|
1933 |
msgid "Montserrat"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: inc/helpers/helper-form-templates.php:1043 inc/helpers/helper-misc.php:
|
1937 |
msgid "Malta"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: inc/helpers/helper-form-templates.php:1044 inc/helpers/helper-misc.php:
|
1941 |
msgid "Mauritius"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: inc/helpers/helper-form-templates.php:1045 inc/helpers/helper-misc.php:
|
1945 |
msgid "Maldives"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: inc/helpers/helper-form-templates.php:1046 inc/helpers/helper-misc.php:
|
1949 |
msgid "Malawi"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: inc/helpers/helper-form-templates.php:1047 inc/helpers/helper-misc.php:
|
1953 |
msgid "Mexico"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: inc/helpers/helper-form-templates.php:1048 inc/helpers/helper-misc.php:
|
1957 |
msgid "Malaysia"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: inc/helpers/helper-form-templates.php:1049 inc/helpers/helper-misc.php:
|
1961 |
msgid "Mozambique"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: inc/helpers/helper-form-templates.php:1050 inc/helpers/helper-misc.php:
|
1965 |
msgid "Namibia"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: inc/helpers/helper-form-templates.php:1051 inc/helpers/helper-misc.php:
|
1969 |
msgid "New Caledonia"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: inc/helpers/helper-form-templates.php:1052 inc/helpers/helper-misc.php:
|
1973 |
msgid "Niger"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: inc/helpers/helper-form-templates.php:1053 inc/helpers/helper-misc.php:
|
1977 |
msgid "Nigeria"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: inc/helpers/helper-form-templates.php:1054 inc/helpers/helper-misc.php:
|
1981 |
msgid "Nicaragua"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: inc/helpers/helper-form-templates.php:1055 inc/helpers/helper-misc.php:
|
1985 |
msgid "Netherlands"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: inc/helpers/helper-form-templates.php:1056 inc/helpers/helper-misc.php:
|
1989 |
msgid "Norway"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: inc/helpers/helper-form-templates.php:1057 inc/helpers/helper-misc.php:
|
1993 |
msgid "Nepal"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: inc/helpers/helper-form-templates.php:1058 inc/helpers/helper-misc.php:
|
1997 |
msgid "Nauru"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: inc/helpers/helper-form-templates.php:1059 inc/helpers/helper-misc.php:
|
2001 |
msgid "Niue"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: inc/helpers/helper-form-templates.php:1060 inc/helpers/helper-misc.php:
|
2005 |
msgid "New Zealand"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: inc/helpers/helper-form-templates.php:1061 inc/helpers/helper-misc.php:
|
2009 |
msgid "Oman"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: inc/helpers/helper-form-templates.php:1062 inc/helpers/helper-misc.php:
|
2013 |
msgid "Panama"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: inc/helpers/helper-form-templates.php:1063 inc/helpers/helper-misc.php:
|
2017 |
msgid "Peru"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: inc/helpers/helper-form-templates.php:1064 inc/helpers/helper-misc.php:
|
2021 |
msgid "French Polynesia"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: inc/helpers/helper-form-templates.php:1065 inc/helpers/helper-misc.php:
|
2025 |
msgid "Papua New Guinea"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: inc/helpers/helper-form-templates.php:1066 inc/helpers/helper-misc.php:
|
2029 |
msgid "Philippines"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: inc/helpers/helper-form-templates.php:1067 inc/helpers/helper-misc.php:
|
2033 |
msgid "Pakistan"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: inc/helpers/helper-form-templates.php:1068 inc/helpers/helper-misc.php:
|
2037 |
msgid "Poland"
|
2038 |
msgstr ""
|
2039 |
|
@@ -2041,27 +2041,27 @@ msgstr ""
|
|
2041 |
msgid "Saint Pierre and Miquelon"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: inc/helpers/helper-form-templates.php:1070 inc/helpers/helper-misc.php:
|
2045 |
msgid "Pitcairn"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: inc/helpers/helper-form-templates.php:1071 inc/helpers/helper-misc.php:
|
2049 |
msgid "Portugal"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: inc/helpers/helper-form-templates.php:1072 inc/helpers/helper-misc.php:
|
2053 |
msgid "Palau"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: inc/helpers/helper-form-templates.php:1073 inc/helpers/helper-misc.php:
|
2057 |
msgid "Paraguay"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: inc/helpers/helper-form-templates.php:1074 inc/helpers/helper-misc.php:
|
2061 |
msgid "Qatar"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: inc/helpers/helper-form-templates.php:1075 inc/helpers/helper-misc.php:
|
2065 |
msgid "Romania"
|
2066 |
msgstr ""
|
2067 |
|
@@ -2069,35 +2069,35 @@ msgstr ""
|
|
2069 |
msgid "Serbia"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: inc/helpers/helper-form-templates.php:1077 inc/helpers/helper-misc.php:
|
2073 |
msgid "Russian Federation"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: inc/helpers/helper-form-templates.php:1078 inc/helpers/helper-misc.php:
|
2077 |
msgid "Rwanda"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: inc/helpers/helper-form-templates.php:1079 inc/helpers/helper-misc.php:
|
2081 |
msgid "Saudi Arabia"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: inc/helpers/helper-form-templates.php:1080 inc/helpers/helper-misc.php:
|
2085 |
msgid "Solomon Islands"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: inc/helpers/helper-form-templates.php:1081 inc/helpers/helper-misc.php:
|
2089 |
msgid "Seychelles"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: inc/helpers/helper-form-templates.php:1082 inc/helpers/helper-misc.php:
|
2093 |
msgid "Sudan"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: inc/helpers/helper-form-templates.php:1083 inc/helpers/helper-misc.php:
|
2097 |
msgid "Sweden"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: inc/helpers/helper-form-templates.php:1084 inc/helpers/helper-misc.php:
|
2101 |
msgid "Singapore"
|
2102 |
msgstr ""
|
2103 |
|
@@ -2105,7 +2105,7 @@ msgstr ""
|
|
2105 |
msgid "Saint Helena"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: inc/helpers/helper-form-templates.php:1086 inc/helpers/helper-misc.php:
|
2109 |
msgid "Slovenia"
|
2110 |
msgstr ""
|
2111 |
|
@@ -2113,63 +2113,63 @@ msgstr ""
|
|
2113 |
msgid "Slovakia"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: inc/helpers/helper-form-templates.php:1088 inc/helpers/helper-misc.php:
|
2117 |
msgid "Sierra Leone"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: inc/helpers/helper-form-templates.php:1089 inc/helpers/helper-misc.php:
|
2121 |
msgid "San Marino"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: inc/helpers/helper-form-templates.php:1090 inc/helpers/helper-misc.php:
|
2125 |
msgid "Senegal"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: inc/helpers/helper-form-templates.php:1091 inc/helpers/helper-misc.php:
|
2129 |
msgid "Somalia"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: inc/helpers/helper-form-templates.php:1092 inc/helpers/helper-misc.php:
|
2133 |
msgid "Suriname"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: inc/helpers/helper-form-templates.php:1093 inc/helpers/helper-misc.php:
|
2137 |
msgid "Sao Tome and Principe"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: inc/helpers/helper-form-templates.php:1094 inc/helpers/helper-misc.php:
|
2141 |
msgid "El Salvador"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: inc/helpers/helper-form-templates.php:1095 inc/helpers/helper-misc.php:
|
2145 |
msgid "Syrian Arab Republic"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: inc/helpers/helper-form-templates.php:1096 inc/helpers/helper-misc.php:
|
2149 |
msgid "Swaziland"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: inc/helpers/helper-form-templates.php:1097 inc/helpers/helper-misc.php:
|
2153 |
msgid "Turks and Caicos Islands"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: inc/helpers/helper-form-templates.php:1098 inc/helpers/helper-misc.php:
|
2157 |
msgid "Chad"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: inc/helpers/helper-form-templates.php:1099 inc/helpers/helper-misc.php:
|
2161 |
msgid "Togo"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: inc/helpers/helper-form-templates.php:1100 inc/helpers/helper-misc.php:
|
2165 |
msgid "Thailand"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: inc/helpers/helper-form-templates.php:1101 inc/helpers/helper-misc.php:
|
2169 |
msgid "Tajikistan"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: inc/helpers/helper-form-templates.php:1102 inc/helpers/helper-misc.php:
|
2173 |
msgid "Tokelau"
|
2174 |
msgstr ""
|
2175 |
|
@@ -2177,63 +2177,63 @@ msgstr ""
|
|
2177 |
msgid "Timor-leste"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: inc/helpers/helper-form-templates.php:1104 inc/helpers/helper-misc.php:
|
2181 |
msgid "Turkmenistan"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: inc/helpers/helper-form-templates.php:1105 inc/helpers/helper-misc.php:
|
2185 |
msgid "Tunisia"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: inc/helpers/helper-form-templates.php:1106 inc/helpers/helper-misc.php:
|
2189 |
msgid "Tonga"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: inc/helpers/helper-form-templates.php:1107 inc/helpers/helper-misc.php:
|
2193 |
msgid "Turkey"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: inc/helpers/helper-form-templates.php:1108 inc/helpers/helper-misc.php:
|
2197 |
msgid "Trinidad and Tobago"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: inc/helpers/helper-form-templates.php:1109 inc/helpers/helper-misc.php:
|
2201 |
msgid "Tuvalu"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: inc/helpers/helper-form-templates.php:1110 inc/helpers/helper-misc.php:
|
2205 |
msgid "Taiwan, Province of China"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: inc/helpers/helper-form-templates.php:1111 inc/helpers/helper-misc.php:
|
2209 |
msgid "Tanzania, United Republic of"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: inc/helpers/helper-form-templates.php:1112 inc/helpers/helper-misc.php:
|
2213 |
msgid "Ukraine"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: inc/helpers/helper-form-templates.php:1113 inc/helpers/helper-misc.php:
|
2217 |
msgid "Uganda"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: inc/helpers/helper-form-templates.php:1114 inc/helpers/helper-misc.php:
|
2221 |
msgid "United States"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: inc/helpers/helper-form-templates.php:1115 inc/helpers/helper-misc.php:
|
2225 |
msgid "Uruguay"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: inc/helpers/helper-form-templates.php:1116 inc/helpers/helper-misc.php:
|
2229 |
msgid "Uzbekistan"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: inc/helpers/helper-form-templates.php:1117 inc/helpers/helper-misc.php:
|
2233 |
msgid "Saint Vincent and the Grenadines"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: inc/helpers/helper-form-templates.php:1118 inc/helpers/helper-misc.php:
|
2237 |
msgid "Venezuela"
|
2238 |
msgstr ""
|
2239 |
|
@@ -2245,11 +2245,11 @@ msgstr ""
|
|
2245 |
msgid "Virgin Islands, U.S."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: inc/helpers/helper-form-templates.php:1121 inc/helpers/helper-misc.php:
|
2249 |
msgid "Vietnam"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: inc/helpers/helper-form-templates.php:1122 inc/helpers/helper-misc.php:
|
2253 |
msgid "Vanuatu"
|
2254 |
msgstr ""
|
2255 |
|
@@ -2257,191 +2257,191 @@ msgstr ""
|
|
2257 |
msgid "Wallis and Futuna"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: inc/helpers/helper-form-templates.php:1124 inc/helpers/helper-misc.php:
|
2261 |
msgid "Samoa"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: inc/helpers/helper-form-templates.php:1125 inc/helpers/helper-misc.php:
|
2265 |
msgid "Yemen"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: inc/helpers/helper-form-templates.php:1126 inc/helpers/helper-misc.php:
|
2269 |
msgid "Mayotte"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: inc/helpers/helper-form-templates.php:1127 inc/helpers/helper-misc.php:
|
2273 |
msgid "South Africa"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: inc/helpers/helper-form-templates.php:1128 inc/helpers/helper-misc.php:
|
2277 |
msgid "Zambia"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: inc/helpers/helper-form-templates.php:1129 inc/helpers/helper-misc.php:
|
2281 |
msgid "Zimbabwe"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: inc/helpers/helper-misc.php:
|
2285 |
msgid "How are we doing? Please rate"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: inc/helpers/helper-misc.php:
|
2289 |
msgid "on"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: inc/helpers/helper-misc.php:
|
2293 |
msgid "to help us spread the word."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: inc/helpers/helper-misc.php:
|
2297 |
msgid "Bosnia and Herzegowina"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: inc/helpers/helper-misc.php:
|
2301 |
msgid "Bouvet Island"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: inc/helpers/helper-misc.php:
|
2305 |
msgid "British Indian Ocean Territory"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: inc/helpers/helper-misc.php:
|
2309 |
msgid "Christmas Island"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: inc/helpers/helper-misc.php:
|
2313 |
msgid "Cocos (Keeling) Islands"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: inc/helpers/helper-misc.php:
|
2317 |
msgid "Congo, the Democratic Republic of the"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: inc/helpers/helper-misc.php:
|
2321 |
msgid "Ivory Coast"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: inc/helpers/helper-misc.php:
|
2325 |
msgid "Croatia (Hrvatska)"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: inc/helpers/helper-misc.php:
|
2329 |
msgid "East Timor"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: inc/helpers/helper-misc.php:
|
2333 |
msgid "Equatorial Guinea"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: inc/helpers/helper-misc.php:
|
2337 |
msgid "France Metropolitan"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: inc/helpers/helper-misc.php:
|
2341 |
msgid "French Guiana"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: inc/helpers/helper-misc.php:
|
2345 |
msgid "French Southern Territories"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: inc/helpers/helper-misc.php:
|
2349 |
msgid "Guadeloupe"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: inc/helpers/helper-misc.php:
|
2353 |
msgid "Guinea-Bissau"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: inc/helpers/helper-misc.php:
|
2357 |
msgid "Heard and Mc Donald Islands"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: inc/helpers/helper-misc.php:
|
2361 |
msgid "Holy See (Vatican City State)"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: inc/helpers/helper-misc.php:
|
2365 |
msgid "Iran (Islamic Republic of)"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: inc/helpers/helper-misc.php:
|
2369 |
msgid "Kazakhstan"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: inc/helpers/helper-misc.php:
|
2373 |
msgid "Korea, Democratic People's Republic of"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: inc/helpers/helper-misc.php:
|
2377 |
msgid "Korea, Republic of"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: inc/helpers/helper-misc.php:
|
2381 |
msgid "Lao, People's Democratic Republic"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: inc/helpers/helper-misc.php:
|
2385 |
msgid "Martinique"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: inc/helpers/helper-misc.php:
|
2389 |
msgid "Netherlands Antilles"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: inc/helpers/helper-misc.php:
|
2393 |
msgid "Norfolk Island"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: inc/helpers/helper-misc.php:
|
2397 |
msgid "Puerto Rico"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: inc/helpers/helper-misc.php:
|
2401 |
msgid "Reunion"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: inc/helpers/helper-misc.php:
|
2405 |
msgid "Slovakia (Slovak Republic)"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: inc/helpers/helper-misc.php:
|
2409 |
msgid "South Georgia and the South Sandwich Islands"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#: inc/helpers/helper-misc.php:
|
2413 |
msgid "St. Helena"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: inc/helpers/helper-misc.php:
|
2417 |
msgid "St. Pierre and Miquelon"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: inc/helpers/helper-misc.php:
|
2421 |
msgid "Svalbard and Jan Mayen Islands"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: inc/helpers/helper-misc.php:
|
2425 |
msgid "United States Minor Outlying Islands"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: inc/helpers/helper-misc.php:
|
2429 |
msgid "Virgin Islands (British)"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: inc/helpers/helper-misc.php:
|
2433 |
msgid "Virgin Islands (U.S.)"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: inc/helpers/helper-misc.php:
|
2437 |
msgid "Wallis and Futuna Islands"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: inc/helpers/helper-misc.php:
|
2441 |
msgid "Western Sahara"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: inc/helpers/helper-misc.php:
|
2445 |
msgid "Yugoslavia"
|
2446 |
msgstr ""
|
2447 |
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: HappyForms 1.6.12\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2018-11-30 11:08:30+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
150 |
msgstr ""
|
151 |
|
152 |
#: inc/classes/class-form-admin.php:374 inc/classes/class-message-admin.php:611
|
153 |
+
#: inc/classes/class-message-admin.php:878
|
154 |
msgid "Trash"
|
155 |
msgstr ""
|
156 |
|
171 |
|
172 |
#: inc/classes/class-form-controller.php:92
|
173 |
#: inc/classes/class-message-admin.php:372
|
174 |
+
#: inc/classes/class-message-admin.php:863
|
175 |
msgid "Form"
|
176 |
msgstr ""
|
177 |
|
804 |
msgstr ""
|
805 |
|
806 |
#: inc/classes/class-message-admin.php:609
|
807 |
+
#: inc/classes/class-message-admin.php:873
|
808 |
msgid "Mark read"
|
809 |
msgstr ""
|
810 |
|
811 |
#: inc/classes/class-message-admin.php:610
|
812 |
+
#: inc/classes/class-message-admin.php:873
|
813 |
msgid "Mark unread"
|
814 |
msgstr ""
|
815 |
|
825 |
msgid "Delete Permanently"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: inc/classes/class-message-admin.php:848
|
829 |
msgid "Details"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: inc/classes/class-message-admin.php:868
|
833 |
msgid "Submitted on"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: inc/classes/class-message-admin.php:868
|
837 |
msgid "M j, Y @ H:i"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: inc/classes/class-message-admin.php:873
|
841 |
msgid "Status"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: inc/classes/class-message-admin.php:873
|
845 |
msgid "Read"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/classes/class-message-admin.php:873
|
849 |
msgid "Unread"
|
850 |
msgstr ""
|
851 |
|
1405 |
msgid "December"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: inc/helpers/helper-form-templates.php:911 inc/helpers/helper-misc.php:285
|
1409 |
msgid "Andorra"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: inc/helpers/helper-form-templates.php:912 inc/helpers/helper-misc.php:503
|
1413 |
msgid "United Arab Emirates"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: inc/helpers/helper-form-templates.php:913 inc/helpers/helper-misc.php:281
|
1417 |
msgid "Afghanistan"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: inc/helpers/helper-form-templates.php:914 inc/helpers/helper-misc.php:289
|
1421 |
msgid "Antigua and Barbuda"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: inc/helpers/helper-form-templates.php:915 inc/helpers/helper-misc.php:287
|
1425 |
msgid "Anguilla"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: inc/helpers/helper-form-templates.php:916 inc/helpers/helper-misc.php:282
|
1429 |
msgid "Albania"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: inc/helpers/helper-form-templates.php:917 inc/helpers/helper-misc.php:291
|
1433 |
msgid "Armenia"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: inc/helpers/helper-form-templates.php:918 inc/helpers/helper-misc.php:286
|
1437 |
msgid "Angola"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: inc/helpers/helper-form-templates.php:919 inc/helpers/helper-misc.php:288
|
1441 |
msgid "Antarctica"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: inc/helpers/helper-form-templates.php:920 inc/helpers/helper-misc.php:290
|
1445 |
msgid "Argentina"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: inc/helpers/helper-form-templates.php:921 inc/helpers/helper-misc.php:284
|
1449 |
msgid "American Samoa"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: inc/helpers/helper-form-templates.php:922 inc/helpers/helper-misc.php:294
|
1453 |
msgid "Austria"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: inc/helpers/helper-form-templates.php:923 inc/helpers/helper-misc.php:293
|
1457 |
msgid "Australia"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: inc/helpers/helper-form-templates.php:924 inc/helpers/helper-misc.php:292
|
1461 |
msgid "Aruba"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: inc/helpers/helper-form-templates.php:925 inc/helpers/helper-misc.php:295
|
1465 |
msgid "Azerbaijan"
|
1466 |
msgstr ""
|
1467 |
|
1469 |
msgid "Bosnia and Herzegovina"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: inc/helpers/helper-form-templates.php:927 inc/helpers/helper-misc.php:299
|
1473 |
msgid "Barbados"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: inc/helpers/helper-form-templates.php:928 inc/helpers/helper-misc.php:298
|
1477 |
msgid "Bangladesh"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: inc/helpers/helper-form-templates.php:929 inc/helpers/helper-misc.php:301
|
1481 |
msgid "Belgium"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: inc/helpers/helper-form-templates.php:930 inc/helpers/helper-misc.php:314
|
1485 |
msgid "Burkina Faso"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: inc/helpers/helper-form-templates.php:931 inc/helpers/helper-misc.php:313
|
1489 |
msgid "Bulgaria"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: inc/helpers/helper-form-templates.php:932 inc/helpers/helper-misc.php:297
|
1493 |
msgid "Bahrain"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: inc/helpers/helper-form-templates.php:933 inc/helpers/helper-misc.php:315
|
1497 |
msgid "Burundi"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: inc/helpers/helper-form-templates.php:934 inc/helpers/helper-misc.php:303
|
1501 |
msgid "Benin"
|
1502 |
msgstr ""
|
1503 |
|
1505 |
msgid "Saint Barthelemy"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: inc/helpers/helper-form-templates.php:936 inc/helpers/helper-misc.php:304
|
1509 |
msgid "Bermuda"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: inc/helpers/helper-form-templates.php:937 inc/helpers/helper-misc.php:312
|
1513 |
msgid "Brunei Darussalam"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: inc/helpers/helper-form-templates.php:938 inc/helpers/helper-misc.php:306
|
1517 |
msgid "Bolivia"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: inc/helpers/helper-form-templates.php:939 inc/helpers/helper-misc.php:310
|
1521 |
msgid "Brazil"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: inc/helpers/helper-form-templates.php:940 inc/helpers/helper-misc.php:296
|
1525 |
msgid "Bahamas"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: inc/helpers/helper-form-templates.php:941 inc/helpers/helper-misc.php:305
|
1529 |
msgid "Bhutan"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: inc/helpers/helper-form-templates.php:942 inc/helpers/helper-misc.php:308
|
1533 |
msgid "Botswana"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: inc/helpers/helper-form-templates.php:943 inc/helpers/helper-misc.php:300
|
1537 |
msgid "Belarus"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: inc/helpers/helper-form-templates.php:944 inc/helpers/helper-misc.php:302
|
1541 |
msgid "Belize"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: inc/helpers/helper-form-templates.php:945 inc/helpers/helper-misc.php:318
|
1545 |
msgid "Canada"
|
1546 |
msgstr ""
|
1547 |
|
1549 |
msgid "Congo, The Democratic Republic of the"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: inc/helpers/helper-form-templates.php:947 inc/helpers/helper-misc.php:321
|
1553 |
msgid "Central African Republic"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: inc/helpers/helper-form-templates.php:948 inc/helpers/helper-misc.php:329
|
1557 |
msgid "Congo"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: inc/helpers/helper-form-templates.php:949 inc/helpers/helper-misc.php:486
|
1561 |
msgid "Switzerland"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: inc/helpers/helper-form-templates.php:950 inc/helpers/helper-misc.php:331
|
1565 |
msgid "Cook Islands"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: inc/helpers/helper-form-templates.php:951 inc/helpers/helper-misc.php:323
|
1569 |
msgid "Chile"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: inc/helpers/helper-form-templates.php:952 inc/helpers/helper-misc.php:317
|
1573 |
msgid "Cameroon"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: inc/helpers/helper-form-templates.php:953 inc/helpers/helper-misc.php:324
|
1577 |
msgid "China"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: inc/helpers/helper-form-templates.php:954 inc/helpers/helper-misc.php:327
|
1581 |
msgid "Colombia"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: inc/helpers/helper-form-templates.php:955 inc/helpers/helper-misc.php:332
|
1585 |
msgid "Costa Rica"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: inc/helpers/helper-form-templates.php:956 inc/helpers/helper-misc.php:335
|
1589 |
msgid "Cuba"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: inc/helpers/helper-form-templates.php:957 inc/helpers/helper-misc.php:319
|
1593 |
msgid "Cape Verde"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: inc/helpers/helper-form-templates.php:958 inc/helpers/helper-misc.php:336
|
1597 |
msgid "Cyprus"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: inc/helpers/helper-form-templates.php:959 inc/helpers/helper-misc.php:337
|
1601 |
msgid "Czech Republic"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: inc/helpers/helper-form-templates.php:960 inc/helpers/helper-misc.php:362
|
1605 |
msgid "Germany"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: inc/helpers/helper-form-templates.php:961 inc/helpers/helper-misc.php:339
|
1609 |
msgid "Djibouti"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: inc/helpers/helper-form-templates.php:962 inc/helpers/helper-misc.php:338
|
1613 |
msgid "Denmark"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: inc/helpers/helper-form-templates.php:963 inc/helpers/helper-misc.php:340
|
1617 |
msgid "Dominica"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: inc/helpers/helper-form-templates.php:964 inc/helpers/helper-misc.php:341
|
1621 |
msgid "Dominican Republic"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: inc/helpers/helper-form-templates.php:965 inc/helpers/helper-misc.php:283
|
1625 |
msgid "Algeria"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: inc/helpers/helper-form-templates.php:966 inc/helpers/helper-misc.php:343
|
1629 |
msgid "Ecuador"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: inc/helpers/helper-form-templates.php:967 inc/helpers/helper-misc.php:348
|
1633 |
msgid "Estonia"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: inc/helpers/helper-form-templates.php:968 inc/helpers/helper-misc.php:344
|
1637 |
msgid "Egypt"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: inc/helpers/helper-form-templates.php:969 inc/helpers/helper-misc.php:347
|
1641 |
msgid "Eritrea"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: inc/helpers/helper-form-templates.php:970 inc/helpers/helper-misc.php:477
|
1645 |
msgid "Spain"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: inc/helpers/helper-form-templates.php:971 inc/helpers/helper-misc.php:349
|
1649 |
msgid "Ethiopia"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: inc/helpers/helper-form-templates.php:972 inc/helpers/helper-misc.php:353
|
1653 |
msgid "Finland"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: inc/helpers/helper-form-templates.php:973 inc/helpers/helper-misc.php:352
|
1657 |
msgid "Fiji"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: inc/helpers/helper-form-templates.php:974 inc/helpers/helper-misc.php:350
|
1661 |
msgid "Falkland Islands (Malvinas)"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: inc/helpers/helper-form-templates.php:975 inc/helpers/helper-misc.php:421
|
1665 |
msgid "Micronesia, Federated States of"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: inc/helpers/helper-form-templates.php:976 inc/helpers/helper-misc.php:351
|
1669 |
msgid "Faroe Islands"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: inc/helpers/helper-form-templates.php:977 inc/helpers/helper-misc.php:354
|
1673 |
msgid "France"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: inc/helpers/helper-form-templates.php:978 inc/helpers/helper-misc.php:359
|
1677 |
msgid "Gabon"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: inc/helpers/helper-form-templates.php:979 inc/helpers/helper-misc.php:504
|
1681 |
msgid "United Kingdom"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: inc/helpers/helper-form-templates.php:980 inc/helpers/helper-misc.php:367
|
1685 |
msgid "Grenada"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: inc/helpers/helper-form-templates.php:981 inc/helpers/helper-misc.php:361
|
1689 |
msgid "Georgia"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: inc/helpers/helper-form-templates.php:982 inc/helpers/helper-misc.php:363
|
1693 |
msgid "Ghana"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: inc/helpers/helper-form-templates.php:983 inc/helpers/helper-misc.php:364
|
1697 |
msgid "Gibraltar"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: inc/helpers/helper-form-templates.php:984 inc/helpers/helper-misc.php:366
|
1701 |
msgid "Greenland"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: inc/helpers/helper-form-templates.php:985 inc/helpers/helper-misc.php:360
|
1705 |
msgid "Gambia"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: inc/helpers/helper-form-templates.php:986 inc/helpers/helper-misc.php:371
|
1709 |
msgid "Guinea"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: inc/helpers/helper-form-templates.php:987 inc/helpers/helper-misc.php:365
|
1713 |
msgid "Greece"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: inc/helpers/helper-form-templates.php:988 inc/helpers/helper-misc.php:370
|
1717 |
msgid "Guatemala"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: inc/helpers/helper-form-templates.php:989 inc/helpers/helper-misc.php:369
|
1721 |
msgid "Guam"
|
1722 |
msgstr ""
|
1723 |
|
1725 |
msgid "Guinea-bissau"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: inc/helpers/helper-form-templates.php:991 inc/helpers/helper-misc.php:373
|
1729 |
msgid "Guyana"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: inc/helpers/helper-form-templates.php:992 inc/helpers/helper-misc.php:378
|
1733 |
msgid "Hong Kong"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: inc/helpers/helper-form-templates.php:993 inc/helpers/helper-misc.php:377
|
1737 |
msgid "Honduras"
|
1738 |
msgstr ""
|
1739 |
|
1741 |
msgid "Croatia"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: inc/helpers/helper-form-templates.php:995 inc/helpers/helper-misc.php:374
|
1745 |
msgid "Haiti"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: inc/helpers/helper-form-templates.php:996 inc/helpers/helper-misc.php:379
|
1749 |
msgid "Hungary"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: inc/helpers/helper-form-templates.php:997 inc/helpers/helper-misc.php:382
|
1753 |
msgid "Indonesia"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: inc/helpers/helper-form-templates.php:998 inc/helpers/helper-misc.php:385
|
1757 |
msgid "Ireland"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: inc/helpers/helper-form-templates.php:999 inc/helpers/helper-misc.php:386
|
1761 |
msgid "Israel"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: inc/helpers/helper-form-templates.php:1000 inc/helpers/helper-misc.php:381
|
1765 |
msgid "India"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: inc/helpers/helper-form-templates.php:1001 inc/helpers/helper-misc.php:384
|
1769 |
msgid "Iraq"
|
1770 |
msgstr ""
|
1771 |
|
1773 |
msgid "Iran, Islamic Republic of"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: inc/helpers/helper-form-templates.php:1003 inc/helpers/helper-misc.php:380
|
1777 |
msgid "Iceland"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: inc/helpers/helper-form-templates.php:1004 inc/helpers/helper-misc.php:387
|
1781 |
msgid "Italy"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: inc/helpers/helper-form-templates.php:1005 inc/helpers/helper-misc.php:388
|
1785 |
msgid "Jamaica"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: inc/helpers/helper-form-templates.php:1006 inc/helpers/helper-misc.php:390
|
1789 |
msgid "Jordan"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: inc/helpers/helper-form-templates.php:1007 inc/helpers/helper-misc.php:389
|
1793 |
msgid "Japan"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: inc/helpers/helper-form-templates.php:1008 inc/helpers/helper-misc.php:392
|
1797 |
msgid "Kenya"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: inc/helpers/helper-form-templates.php:1009 inc/helpers/helper-misc.php:397
|
1801 |
msgid "Kyrgyzstan"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: inc/helpers/helper-form-templates.php:1010 inc/helpers/helper-misc.php:316
|
1805 |
msgid "Cambodia"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: inc/helpers/helper-form-templates.php:1011 inc/helpers/helper-misc.php:393
|
1809 |
msgid "Kiribati"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: inc/helpers/helper-form-templates.php:1012 inc/helpers/helper-misc.php:328
|
1813 |
msgid "Comoros"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: inc/helpers/helper-form-templates.php:1013 inc/helpers/helper-misc.php:460
|
1817 |
msgid "Saint Kitts and Nevis"
|
1818 |
msgstr ""
|
1819 |
|
1825 |
msgid "Korea Republic of"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: inc/helpers/helper-form-templates.php:1016 inc/helpers/helper-misc.php:396
|
1829 |
msgid "Kuwait"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: inc/helpers/helper-form-templates.php:1017 inc/helpers/helper-misc.php:320
|
1833 |
msgid "Cayman Islands"
|
1834 |
msgstr ""
|
1835 |
|
1837 |
msgid "Lao Peoples Democratic Republic"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: inc/helpers/helper-form-templates.php:1019 inc/helpers/helper-misc.php:400
|
1841 |
msgid "Lebanon"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: inc/helpers/helper-form-templates.php:1020 inc/helpers/helper-misc.php:461
|
1845 |
msgid "Saint Lucia"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: inc/helpers/helper-form-templates.php:1021 inc/helpers/helper-misc.php:404
|
1849 |
msgid "Liechtenstein"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: inc/helpers/helper-form-templates.php:1022 inc/helpers/helper-misc.php:478
|
1853 |
msgid "Sri Lanka"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: inc/helpers/helper-form-templates.php:1023 inc/helpers/helper-misc.php:402
|
1857 |
msgid "Liberia"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: inc/helpers/helper-form-templates.php:1024 inc/helpers/helper-misc.php:401
|
1861 |
msgid "Lesotho"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: inc/helpers/helper-form-templates.php:1025 inc/helpers/helper-misc.php:405
|
1865 |
msgid "Lithuania"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: inc/helpers/helper-form-templates.php:1026 inc/helpers/helper-misc.php:406
|
1869 |
msgid "Luxembourg"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: inc/helpers/helper-form-templates.php:1027 inc/helpers/helper-misc.php:399
|
1873 |
msgid "Latvia"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: inc/helpers/helper-form-templates.php:1028 inc/helpers/helper-misc.php:403
|
1877 |
msgid "Libyan Arab Jamahiriya"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: inc/helpers/helper-form-templates.php:1029 inc/helpers/helper-misc.php:426
|
1881 |
msgid "Morocco"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: inc/helpers/helper-form-templates.php:1030 inc/helpers/helper-misc.php:423
|
1885 |
msgid "Monaco"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: inc/helpers/helper-form-templates.php:1031 inc/helpers/helper-misc.php:422
|
1889 |
msgid "Moldova, Republic of"
|
1890 |
msgstr ""
|
1891 |
|
1893 |
msgid "Montenegro"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: inc/helpers/helper-form-templates.php:1033 inc/helpers/helper-misc.php:409
|
1897 |
msgid "Madagascar"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: inc/helpers/helper-form-templates.php:1034 inc/helpers/helper-misc.php:415
|
1901 |
msgid "Marshall Islands"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: inc/helpers/helper-form-templates.php:1035 inc/helpers/helper-misc.php:408
|
1905 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: inc/helpers/helper-form-templates.php:1036 inc/helpers/helper-misc.php:413
|
1909 |
msgid "Mali"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: inc/helpers/helper-form-templates.php:1037 inc/helpers/helper-misc.php:428
|
1913 |
msgid "Myanmar"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: inc/helpers/helper-form-templates.php:1038 inc/helpers/helper-misc.php:424
|
1917 |
msgid "Mongolia"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: inc/helpers/helper-form-templates.php:1039 inc/helpers/helper-misc.php:407
|
1921 |
msgid "Macau"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: inc/helpers/helper-form-templates.php:1040 inc/helpers/helper-misc.php:441
|
1925 |
msgid "Northern Mariana Islands"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: inc/helpers/helper-form-templates.php:1041 inc/helpers/helper-misc.php:417
|
1929 |
msgid "Mauritania"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: inc/helpers/helper-form-templates.php:1042 inc/helpers/helper-misc.php:425
|
1933 |
msgid "Montserrat"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: inc/helpers/helper-form-templates.php:1043 inc/helpers/helper-misc.php:414
|
1937 |
msgid "Malta"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: inc/helpers/helper-form-templates.php:1044 inc/helpers/helper-misc.php:418
|
1941 |
msgid "Mauritius"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: inc/helpers/helper-form-templates.php:1045 inc/helpers/helper-misc.php:412
|
1945 |
msgid "Maldives"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: inc/helpers/helper-form-templates.php:1046 inc/helpers/helper-misc.php:410
|
1949 |
msgid "Malawi"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: inc/helpers/helper-form-templates.php:1047 inc/helpers/helper-misc.php:420
|
1953 |
msgid "Mexico"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: inc/helpers/helper-form-templates.php:1048 inc/helpers/helper-misc.php:411
|
1957 |
msgid "Malaysia"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: inc/helpers/helper-form-templates.php:1049 inc/helpers/helper-misc.php:427
|
1961 |
msgid "Mozambique"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: inc/helpers/helper-form-templates.php:1050 inc/helpers/helper-misc.php:429
|
1965 |
msgid "Namibia"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: inc/helpers/helper-form-templates.php:1051 inc/helpers/helper-misc.php:434
|
1969 |
msgid "New Caledonia"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: inc/helpers/helper-form-templates.php:1052 inc/helpers/helper-misc.php:437
|
1973 |
msgid "Niger"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: inc/helpers/helper-form-templates.php:1053 inc/helpers/helper-misc.php:438
|
1977 |
msgid "Nigeria"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: inc/helpers/helper-form-templates.php:1054 inc/helpers/helper-misc.php:436
|
1981 |
msgid "Nicaragua"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: inc/helpers/helper-form-templates.php:1055 inc/helpers/helper-misc.php:432
|
1985 |
msgid "Netherlands"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: inc/helpers/helper-form-templates.php:1056 inc/helpers/helper-misc.php:442
|
1989 |
msgid "Norway"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: inc/helpers/helper-form-templates.php:1057 inc/helpers/helper-misc.php:431
|
1993 |
msgid "Nepal"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: inc/helpers/helper-form-templates.php:1058 inc/helpers/helper-misc.php:430
|
1997 |
msgid "Nauru"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: inc/helpers/helper-form-templates.php:1059 inc/helpers/helper-misc.php:439
|
2001 |
msgid "Niue"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: inc/helpers/helper-form-templates.php:1060 inc/helpers/helper-misc.php:435
|
2005 |
msgid "New Zealand"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: inc/helpers/helper-form-templates.php:1061 inc/helpers/helper-misc.php:443
|
2009 |
msgid "Oman"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: inc/helpers/helper-form-templates.php:1062 inc/helpers/helper-misc.php:446
|
2013 |
msgid "Panama"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: inc/helpers/helper-form-templates.php:1063 inc/helpers/helper-misc.php:449
|
2017 |
msgid "Peru"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: inc/helpers/helper-form-templates.php:1064 inc/helpers/helper-misc.php:357
|
2021 |
msgid "French Polynesia"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: inc/helpers/helper-form-templates.php:1065 inc/helpers/helper-misc.php:447
|
2025 |
msgid "Papua New Guinea"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: inc/helpers/helper-form-templates.php:1066 inc/helpers/helper-misc.php:450
|
2029 |
msgid "Philippines"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: inc/helpers/helper-form-templates.php:1067 inc/helpers/helper-misc.php:444
|
2033 |
msgid "Pakistan"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: inc/helpers/helper-form-templates.php:1068 inc/helpers/helper-misc.php:452
|
2037 |
msgid "Poland"
|
2038 |
msgstr ""
|
2039 |
|
2041 |
msgid "Saint Pierre and Miquelon"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: inc/helpers/helper-form-templates.php:1070 inc/helpers/helper-misc.php:451
|
2045 |
msgid "Pitcairn"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: inc/helpers/helper-form-templates.php:1071 inc/helpers/helper-misc.php:453
|
2049 |
msgid "Portugal"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: inc/helpers/helper-form-templates.php:1072 inc/helpers/helper-misc.php:445
|
2053 |
msgid "Palau"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: inc/helpers/helper-form-templates.php:1073 inc/helpers/helper-misc.php:448
|
2057 |
msgid "Paraguay"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: inc/helpers/helper-form-templates.php:1074 inc/helpers/helper-misc.php:455
|
2061 |
msgid "Qatar"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: inc/helpers/helper-form-templates.php:1075 inc/helpers/helper-misc.php:457
|
2065 |
msgid "Romania"
|
2066 |
msgstr ""
|
2067 |
|
2069 |
msgid "Serbia"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: inc/helpers/helper-form-templates.php:1077 inc/helpers/helper-misc.php:458
|
2073 |
msgid "Russian Federation"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: inc/helpers/helper-form-templates.php:1078 inc/helpers/helper-misc.php:459
|
2077 |
msgid "Rwanda"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: inc/helpers/helper-form-templates.php:1079 inc/helpers/helper-misc.php:466
|
2081 |
msgid "Saudi Arabia"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: inc/helpers/helper-form-templates.php:1080 inc/helpers/helper-misc.php:473
|
2085 |
msgid "Solomon Islands"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: inc/helpers/helper-form-templates.php:1081 inc/helpers/helper-misc.php:468
|
2089 |
msgid "Seychelles"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: inc/helpers/helper-form-templates.php:1082 inc/helpers/helper-misc.php:481
|
2093 |
msgid "Sudan"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: inc/helpers/helper-form-templates.php:1083 inc/helpers/helper-misc.php:485
|
2097 |
msgid "Sweden"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: inc/helpers/helper-form-templates.php:1084 inc/helpers/helper-misc.php:470
|
2101 |
msgid "Singapore"
|
2102 |
msgstr ""
|
2103 |
|
2105 |
msgid "Saint Helena"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: inc/helpers/helper-form-templates.php:1086 inc/helpers/helper-misc.php:472
|
2109 |
msgid "Slovenia"
|
2110 |
msgstr ""
|
2111 |
|
2113 |
msgid "Slovakia"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: inc/helpers/helper-form-templates.php:1088 inc/helpers/helper-misc.php:469
|
2117 |
msgid "Sierra Leone"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: inc/helpers/helper-form-templates.php:1089 inc/helpers/helper-misc.php:464
|
2121 |
msgid "San Marino"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: inc/helpers/helper-form-templates.php:1090 inc/helpers/helper-misc.php:467
|
2125 |
msgid "Senegal"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: inc/helpers/helper-form-templates.php:1091 inc/helpers/helper-misc.php:474
|
2129 |
msgid "Somalia"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: inc/helpers/helper-form-templates.php:1092 inc/helpers/helper-misc.php:482
|
2133 |
msgid "Suriname"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: inc/helpers/helper-form-templates.php:1093 inc/helpers/helper-misc.php:465
|
2137 |
msgid "Sao Tome and Principe"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: inc/helpers/helper-form-templates.php:1094 inc/helpers/helper-misc.php:345
|
2141 |
msgid "El Salvador"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: inc/helpers/helper-form-templates.php:1095 inc/helpers/helper-misc.php:487
|
2145 |
msgid "Syrian Arab Republic"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: inc/helpers/helper-form-templates.php:1096 inc/helpers/helper-misc.php:484
|
2149 |
msgid "Swaziland"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: inc/helpers/helper-form-templates.php:1097 inc/helpers/helper-misc.php:499
|
2153 |
msgid "Turks and Caicos Islands"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: inc/helpers/helper-form-templates.php:1098 inc/helpers/helper-misc.php:322
|
2157 |
msgid "Chad"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: inc/helpers/helper-form-templates.php:1099 inc/helpers/helper-misc.php:492
|
2161 |
msgid "Togo"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: inc/helpers/helper-form-templates.php:1100 inc/helpers/helper-misc.php:491
|
2165 |
msgid "Thailand"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: inc/helpers/helper-form-templates.php:1101 inc/helpers/helper-misc.php:489
|
2169 |
msgid "Tajikistan"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: inc/helpers/helper-form-templates.php:1102 inc/helpers/helper-misc.php:493
|
2173 |
msgid "Tokelau"
|
2174 |
msgstr ""
|
2175 |
|
2177 |
msgid "Timor-leste"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: inc/helpers/helper-form-templates.php:1104 inc/helpers/helper-misc.php:498
|
2181 |
msgid "Turkmenistan"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: inc/helpers/helper-form-templates.php:1105 inc/helpers/helper-misc.php:496
|
2185 |
msgid "Tunisia"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: inc/helpers/helper-form-templates.php:1106 inc/helpers/helper-misc.php:494
|
2189 |
msgid "Tonga"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: inc/helpers/helper-form-templates.php:1107 inc/helpers/helper-misc.php:497
|
2193 |
msgid "Turkey"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: inc/helpers/helper-form-templates.php:1108 inc/helpers/helper-misc.php:495
|
2197 |
msgid "Trinidad and Tobago"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: inc/helpers/helper-form-templates.php:1109 inc/helpers/helper-misc.php:500
|
2201 |
msgid "Tuvalu"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: inc/helpers/helper-form-templates.php:1110 inc/helpers/helper-misc.php:488
|
2205 |
msgid "Taiwan, Province of China"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: inc/helpers/helper-form-templates.php:1111 inc/helpers/helper-misc.php:490
|
2209 |
msgid "Tanzania, United Republic of"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: inc/helpers/helper-form-templates.php:1112 inc/helpers/helper-misc.php:502
|
2213 |
msgid "Ukraine"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: inc/helpers/helper-form-templates.php:1113 inc/helpers/helper-misc.php:501
|
2217 |
msgid "Uganda"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: inc/helpers/helper-form-templates.php:1114 inc/helpers/helper-misc.php:505
|
2221 |
msgid "United States"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: inc/helpers/helper-form-templates.php:1115 inc/helpers/helper-misc.php:507
|
2225 |
msgid "Uruguay"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: inc/helpers/helper-form-templates.php:1116 inc/helpers/helper-misc.php:508
|
2229 |
msgid "Uzbekistan"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: inc/helpers/helper-form-templates.php:1117 inc/helpers/helper-misc.php:462
|
2233 |
msgid "Saint Vincent and the Grenadines"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: inc/helpers/helper-form-templates.php:1118 inc/helpers/helper-misc.php:510
|
2237 |
msgid "Venezuela"
|
2238 |
msgstr ""
|
2239 |
|
2245 |
msgid "Virgin Islands, U.S."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: inc/helpers/helper-form-templates.php:1121 inc/helpers/helper-misc.php:511
|
2249 |
msgid "Vietnam"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: inc/helpers/helper-form-templates.php:1122 inc/helpers/helper-misc.php:509
|
2253 |
msgid "Vanuatu"
|
2254 |
msgstr ""
|
2255 |
|
2257 |
msgid "Wallis and Futuna"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: inc/helpers/helper-form-templates.php:1124 inc/helpers/helper-misc.php:463
|
2261 |
msgid "Samoa"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: inc/helpers/helper-form-templates.php:1125 inc/helpers/helper-misc.php:516
|
2265 |
msgid "Yemen"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: inc/helpers/helper-form-templates.php:1126 inc/helpers/helper-misc.php:419
|
2269 |
msgid "Mayotte"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: inc/helpers/helper-form-templates.php:1127 inc/helpers/helper-misc.php:475
|
2273 |
msgid "South Africa"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: inc/helpers/helper-form-templates.php:1128 inc/helpers/helper-misc.php:518
|
2277 |
msgid "Zambia"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: inc/helpers/helper-form-templates.php:1129 inc/helpers/helper-misc.php:519
|
2281 |
msgid "Zimbabwe"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: inc/helpers/helper-misc.php:227
|
2285 |
msgid "How are we doing? Please rate"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: inc/helpers/helper-misc.php:227
|
2289 |
msgid "on"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: inc/helpers/helper-misc.php:227
|
2293 |
msgid "to help us spread the word."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: inc/helpers/helper-misc.php:307
|
2297 |
msgid "Bosnia and Herzegowina"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: inc/helpers/helper-misc.php:309
|
2301 |
msgid "Bouvet Island"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: inc/helpers/helper-misc.php:311
|
2305 |
msgid "British Indian Ocean Territory"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: inc/helpers/helper-misc.php:325
|
2309 |
msgid "Christmas Island"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: inc/helpers/helper-misc.php:326
|
2313 |
msgid "Cocos (Keeling) Islands"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: inc/helpers/helper-misc.php:330
|
2317 |
msgid "Congo, the Democratic Republic of the"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: inc/helpers/helper-misc.php:333
|
2321 |
msgid "Ivory Coast"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: inc/helpers/helper-misc.php:334
|
2325 |
msgid "Croatia (Hrvatska)"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: inc/helpers/helper-misc.php:342
|
2329 |
msgid "East Timor"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: inc/helpers/helper-misc.php:346
|
2333 |
msgid "Equatorial Guinea"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: inc/helpers/helper-misc.php:355
|
2337 |
msgid "France Metropolitan"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: inc/helpers/helper-misc.php:356
|
2341 |
msgid "French Guiana"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: inc/helpers/helper-misc.php:358
|
2345 |
msgid "French Southern Territories"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: inc/helpers/helper-misc.php:368
|
2349 |
msgid "Guadeloupe"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: inc/helpers/helper-misc.php:372
|
2353 |
msgid "Guinea-Bissau"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: inc/helpers/helper-misc.php:375
|
2357 |
msgid "Heard and Mc Donald Islands"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: inc/helpers/helper-misc.php:376
|
2361 |
msgid "Holy See (Vatican City State)"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: inc/helpers/helper-misc.php:383
|
2365 |
msgid "Iran (Islamic Republic of)"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: inc/helpers/helper-misc.php:391
|
2369 |
msgid "Kazakhstan"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: inc/helpers/helper-misc.php:394
|
2373 |
msgid "Korea, Democratic People's Republic of"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: inc/helpers/helper-misc.php:395
|
2377 |
msgid "Korea, Republic of"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: inc/helpers/helper-misc.php:398
|
2381 |
msgid "Lao, People's Democratic Republic"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: inc/helpers/helper-misc.php:416
|
2385 |
msgid "Martinique"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: inc/helpers/helper-misc.php:433
|
2389 |
msgid "Netherlands Antilles"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: inc/helpers/helper-misc.php:440
|
2393 |
msgid "Norfolk Island"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: inc/helpers/helper-misc.php:454
|
2397 |
msgid "Puerto Rico"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: inc/helpers/helper-misc.php:456
|
2401 |
msgid "Reunion"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: inc/helpers/helper-misc.php:471
|
2405 |
msgid "Slovakia (Slovak Republic)"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: inc/helpers/helper-misc.php:476
|
2409 |
msgid "South Georgia and the South Sandwich Islands"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: inc/helpers/helper-misc.php:479
|
2413 |
msgid "St. Helena"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: inc/helpers/helper-misc.php:480
|
2417 |
msgid "St. Pierre and Miquelon"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: inc/helpers/helper-misc.php:483
|
2421 |
msgid "Svalbard and Jan Mayen Islands"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: inc/helpers/helper-misc.php:506
|
2425 |
msgid "United States Minor Outlying Islands"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: inc/helpers/helper-misc.php:512
|
2429 |
msgid "Virgin Islands (British)"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: inc/helpers/helper-misc.php:513
|
2433 |
msgid "Virgin Islands (U.S.)"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: inc/helpers/helper-misc.php:514
|
2437 |
msgid "Wallis and Futuna Islands"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: inc/helpers/helper-misc.php:515
|
2441 |
msgid "Western Sahara"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: inc/helpers/helper-misc.php:517
|
2445 |
msgid "Yugoslavia"
|
2446 |
msgstr ""
|
2447 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: contact, contact form, email, feedback form, form, form builder, custom fo
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 4.9.8
|
7 |
Requires PHP: 5.2.4
|
8 |
-
Stable tag: 1.6.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -80,6 +80,10 @@ Absolutely! HappyForms gets out of the way and is designed to work with any them
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
|
|
|
|
|
|
|
|
83 |
= 1.6.11 =
|
84 |
* New feature: Autocomplete for Email part that suggests common email domains when "@" is typed.
|
85 |
* New feature: Form padding style control for adding more space between form parts and its container.
|
@@ -328,6 +332,9 @@ Absolutely! HappyForms gets out of the way and is designed to work with any them
|
|
328 |
|
329 |
== Upgrade Notice ==
|
330 |
|
|
|
|
|
|
|
331 |
= 1.6.11 ==
|
332 |
* New style controls, email autocomplete feature, and bugfixes.
|
333 |
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 4.9.8
|
7 |
Requires PHP: 5.2.4
|
8 |
+
Stable tag: 1.6.12
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
+
= 1.6.12 =
|
84 |
+
* Improvement: Added filters to control CSV header and row values.
|
85 |
+
* Bugfix: HTML entities were encoded in CSV export files.
|
86 |
+
|
87 |
= 1.6.11 =
|
88 |
* New feature: Autocomplete for Email part that suggests common email domains when "@" is typed.
|
89 |
* New feature: Form padding style control for adding more space between form parts and its container.
|
332 |
|
333 |
== Upgrade Notice ==
|
334 |
|
335 |
+
= 1.6.12 ==
|
336 |
+
* Bugfixes.
|
337 |
+
|
338 |
= 1.6.11 ==
|
339 |
* New style controls, email autocomplete feature, and bugfixes.
|
340 |
|