Version Description
- Improvement: better usability of various elements of Edit Form screen.
Download this release
Release Info
Developer | thethemefoundry |
Plugin | Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms |
Version | 1.9.21 |
Comparing to | |
See all releases |
Code changes from version 1.9.20 to 1.9.21
- core/helpers/helper-form-templates.php +1 -1
- core/templates/customize-controls/setup/select.php +1 -1
- happyforms.php +2 -2
- inc/assets/js/customize.js +5 -0
- inc/assets/js/frontend.js +5 -0
- languages/happyforms.pot +140 -140
- readme.txt +7 -1
core/helpers/helper-form-templates.php
CHANGED
@@ -1147,7 +1147,6 @@ function happyforms_get_phone_countries() {
|
|
1147 |
'FO' => array( 'name' => __( 'Faroe Islands', 'happyforms' ), 'code' => '298', 'flag' => '🇫🇴' ),
|
1148 |
'FR' => array( 'name' => __( 'France', 'happyforms' ), 'code' => '33', 'flag' => '🇫🇷' ),
|
1149 |
'GA' => array( 'name' => __( 'Gabon', 'happyforms' ), 'code' => '241', 'flag' => '🇬🇦' ),
|
1150 |
-
'GB' => array( 'name' => __( 'United Kingdom', 'happyforms' ), 'code' => '44', 'flag' => '🇬🇧' ),
|
1151 |
'GD' => array( 'name' => __( 'Grenada', 'happyforms' ), 'code' => '1473', 'flag' => '🇬🇩' ),
|
1152 |
'GE' => array( 'name' => __( 'Georgia', 'happyforms' ), 'code' => '995', 'flag' => '🇬🇪' ),
|
1153 |
'GH' => array( 'name' => __( 'Ghana', 'happyforms' ), 'code' => '233', 'flag' => '🇬🇭' ),
|
@@ -1282,6 +1281,7 @@ function happyforms_get_phone_countries() {
|
|
1282 |
'TZ' => array( 'name' => __( 'Tanzania, United Republic of', 'happyforms' ), 'code' => '255', 'flag' => '🇹🇿' ),
|
1283 |
'UA' => array( 'name' => __( 'Ukraine', 'happyforms' ), 'code' => '380', 'flag' => '🇺🇦' ),
|
1284 |
'UG' => array( 'name' => __( 'Uganda', 'happyforms' ), 'code' => '256', 'flag' => '🇺🇬' ),
|
|
|
1285 |
'US' => array( 'name' => __( 'United States', 'happyforms' ), 'code' => '1', 'flag' => '🇺🇸' ),
|
1286 |
'UY' => array( 'name' => __( 'Uruguay', 'happyforms' ), 'code' => '598', 'flag' => '🇺🇾' ),
|
1287 |
'UZ' => array( 'name' => __( 'Uzbekistan', 'happyforms' ), 'code' => '998', 'flag' => '🇺🇿' ),
|
1147 |
'FO' => array( 'name' => __( 'Faroe Islands', 'happyforms' ), 'code' => '298', 'flag' => '🇫🇴' ),
|
1148 |
'FR' => array( 'name' => __( 'France', 'happyforms' ), 'code' => '33', 'flag' => '🇫🇷' ),
|
1149 |
'GA' => array( 'name' => __( 'Gabon', 'happyforms' ), 'code' => '241', 'flag' => '🇬🇦' ),
|
|
|
1150 |
'GD' => array( 'name' => __( 'Grenada', 'happyforms' ), 'code' => '1473', 'flag' => '🇬🇩' ),
|
1151 |
'GE' => array( 'name' => __( 'Georgia', 'happyforms' ), 'code' => '995', 'flag' => '🇬🇪' ),
|
1152 |
'GH' => array( 'name' => __( 'Ghana', 'happyforms' ), 'code' => '233', 'flag' => '🇬🇭' ),
|
1281 |
'TZ' => array( 'name' => __( 'Tanzania, United Republic of', 'happyforms' ), 'code' => '255', 'flag' => '🇹🇿' ),
|
1282 |
'UA' => array( 'name' => __( 'Ukraine', 'happyforms' ), 'code' => '380', 'flag' => '🇺🇦' ),
|
1283 |
'UG' => array( 'name' => __( 'Uganda', 'happyforms' ), 'code' => '256', 'flag' => '🇺🇬' ),
|
1284 |
+
'GB' => array( 'name' => __( 'United Kingdom', 'happyforms' ), 'code' => '44', 'flag' => '🇬🇧' ),
|
1285 |
'US' => array( 'name' => __( 'United States', 'happyforms' ), 'code' => '1', 'flag' => '🇺🇸' ),
|
1286 |
'UY' => array( 'name' => __( 'Uruguay', 'happyforms' ), 'code' => '598', 'flag' => '🇺🇾' ),
|
1287 |
'UZ' => array( 'name' => __( 'Uzbekistan', 'happyforms' ), 'code' => '998', 'flag' => '🇺🇿' ),
|
core/templates/customize-controls/setup/select.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<label for="<?php echo $control['field']; ?>" class="customize-control-title"><?php echo $control['label']; ?> <?php if ( isset( $control['tooltip'] ) ) : ?><i class="dashicons dashicons-editor-help" aria-hidden="true" data-pointer><span><?php echo $control['tooltip']; ?></span></i><?php endif; ?></label>
|
5 |
<select name="<?php echo $control['field']; ?>" id="<?php echo $control['field']; ?>" data-attribute="<?php echo $control['field']; ?>" data-pointer-target>
|
6 |
<?php if ( isset( $control['placeholder'] ) ) : ?>
|
7 |
-
<option value=""
|
8 |
<?php endif; ?>
|
9 |
<?php foreach ( $control['options'] as $option => $value ) : ?>
|
10 |
<?php if ( is_array( $value ) ) : ?>
|
4 |
<label for="<?php echo $control['field']; ?>" class="customize-control-title"><?php echo $control['label']; ?> <?php if ( isset( $control['tooltip'] ) ) : ?><i class="dashicons dashicons-editor-help" aria-hidden="true" data-pointer><span><?php echo $control['tooltip']; ?></span></i><?php endif; ?></label>
|
5 |
<select name="<?php echo $control['field']; ?>" id="<?php echo $control['field']; ?>" data-attribute="<?php echo $control['field']; ?>" data-pointer-target>
|
6 |
<?php if ( isset( $control['placeholder'] ) ) : ?>
|
7 |
+
<option value="" selected><?php echo $control['placeholder']; ?></option>
|
8 |
<?php endif; ?>
|
9 |
<?php foreach ( $control['options'] as $option => $value ) : ?>
|
10 |
<?php if ( is_array( $value ) ) : ?>
|
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: HappyForms
|
8 |
-
* Version: 1.9.
|
9 |
* Author URI: https://happyforms.me
|
10 |
* Upgrade URI: https://happyforms.me/upgrade
|
11 |
*/
|
@@ -13,7 +13,7 @@
|
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
-
define( 'HAPPYFORMS_VERSION', '1.9.
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: HappyForms
|
8 |
+
* Version: 1.9.21
|
9 |
* Author URI: https://happyforms.me
|
10 |
* Upgrade URI: https://happyforms.me/upgrade
|
11 |
*/
|
13 |
/**
|
14 |
* The current version of the plugin.
|
15 |
*/
|
16 |
+
define( 'HAPPYFORMS_VERSION', '1.9.21' );
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
inc/assets/js/customize.js
CHANGED
@@ -1072,6 +1072,11 @@
|
|
1072 |
|
1073 |
$( '.happyforms-widget-content', this.$el ).slideToggle( 200, function() {
|
1074 |
$el.toggleClass( 'happyforms-widget-expanded' );
|
|
|
|
|
|
|
|
|
|
|
1075 |
} );
|
1076 |
|
1077 |
happyForms.savedStates.build.activePartIndex = $el.index();
|
1072 |
|
1073 |
$( '.happyforms-widget-content', this.$el ).slideToggle( 200, function() {
|
1074 |
$el.toggleClass( 'happyforms-widget-expanded' );
|
1075 |
+
|
1076 |
+
if( $el.hasClass( 'happyforms-widget-expanded' ) ) {
|
1077 |
+
$( 'input[data-bind=label]', $el ).focus();
|
1078 |
+
}
|
1079 |
+
|
1080 |
} );
|
1081 |
|
1082 |
happyForms.savedStates.build.activePartIndex = $el.index();
|
inc/assets/js/frontend.js
CHANGED
@@ -326,6 +326,11 @@
|
|
326 |
|
327 |
this.$el.happyForm();
|
328 |
|
|
|
|
|
|
|
|
|
|
|
329 |
var elTopOffset = this.$el.offset().top;
|
330 |
var $notices = $( '.happyforms-message-notices', this.$el );
|
331 |
|
326 |
|
327 |
this.$el.happyForm();
|
328 |
|
329 |
+
// User filterable
|
330 |
+
if ( $form.attr( 'data-happyforms-scroll-disabled' ) ) {
|
331 |
+
return;
|
332 |
+
}
|
333 |
+
|
334 |
var elTopOffset = this.$el.offset().top;
|
335 |
var $notices = $( '.happyforms-message-notices', this.$el );
|
336 |
|
languages/happyforms.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: HappyForms 1.9.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2020-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -1455,546 +1455,546 @@ msgstr ""
|
|
1455 |
msgid "Gabon"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:
|
1459 |
-
msgid "United Kingdom"
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:310
|
1463 |
msgid "Grenada"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: core/helpers/helper-form-templates.php:
|
1467 |
msgid "Georgia"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: core/helpers/helper-form-templates.php:
|
1471 |
msgid "Ghana"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: core/helpers/helper-form-templates.php:
|
1475 |
msgid "Gibraltar"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: core/helpers/helper-form-templates.php:
|
1479 |
msgid "Greenland"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: core/helpers/helper-form-templates.php:
|
1483 |
msgid "Gambia"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: core/helpers/helper-form-templates.php:
|
1487 |
msgid "Guinea"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: core/helpers/helper-form-templates.php:
|
1491 |
msgid "Greece"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: core/helpers/helper-form-templates.php:
|
1495 |
msgid "Guatemala"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: core/helpers/helper-form-templates.php:
|
1499 |
msgid "Guam"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: core/helpers/helper-form-templates.php:
|
1503 |
msgid "Guinea-bissau"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: core/helpers/helper-form-templates.php:
|
1507 |
msgid "Guyana"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: core/helpers/helper-form-templates.php:
|
1511 |
msgid "Hong Kong"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: core/helpers/helper-form-templates.php:
|
1515 |
msgid "Honduras"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: core/helpers/helper-form-templates.php:
|
1519 |
msgid "Croatia"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: core/helpers/helper-form-templates.php:
|
1523 |
msgid "Haiti"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: core/helpers/helper-form-templates.php:
|
1527 |
msgid "Hungary"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: core/helpers/helper-form-templates.php:
|
1531 |
msgid "Indonesia"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: core/helpers/helper-form-templates.php:
|
1535 |
msgid "Ireland"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: core/helpers/helper-form-templates.php:
|
1539 |
msgid "Israel"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: core/helpers/helper-form-templates.php:
|
1543 |
msgid "India"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: core/helpers/helper-form-templates.php:
|
1547 |
msgid "Iraq"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: core/helpers/helper-form-templates.php:
|
1551 |
msgid "Iran, Islamic Republic of"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: core/helpers/helper-form-templates.php:
|
1555 |
msgid "Iceland"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: core/helpers/helper-form-templates.php:
|
1559 |
msgid "Italy"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: core/helpers/helper-form-templates.php:
|
1563 |
msgid "Jamaica"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: core/helpers/helper-form-templates.php:
|
1567 |
msgid "Jordan"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: core/helpers/helper-form-templates.php:
|
1571 |
msgid "Japan"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: core/helpers/helper-form-templates.php:
|
1575 |
msgid "Kenya"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: core/helpers/helper-form-templates.php:
|
1579 |
msgid "Kyrgyzstan"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: core/helpers/helper-form-templates.php:
|
1583 |
msgid "Cambodia"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: core/helpers/helper-form-templates.php:
|
1587 |
msgid "Kiribati"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: core/helpers/helper-form-templates.php:
|
1591 |
msgid "Comoros"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: core/helpers/helper-form-templates.php:
|
1595 |
msgid "Saint Kitts and Nevis"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: core/helpers/helper-form-templates.php:
|
1599 |
msgid "Korea Democratic Peoples Republic of"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: core/helpers/helper-form-templates.php:
|
1603 |
msgid "Korea Republic of"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: core/helpers/helper-form-templates.php:
|
1607 |
msgid "Kuwait"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: core/helpers/helper-form-templates.php:
|
1611 |
msgid "Cayman Islands"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: core/helpers/helper-form-templates.php:
|
1615 |
msgid "Lao Peoples Democratic Republic"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: core/helpers/helper-form-templates.php:
|
1619 |
msgid "Lebanon"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: core/helpers/helper-form-templates.php:
|
1623 |
msgid "Saint Lucia"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: core/helpers/helper-form-templates.php:
|
1627 |
msgid "Liechtenstein"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: core/helpers/helper-form-templates.php:
|
1631 |
msgid "Sri Lanka"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: core/helpers/helper-form-templates.php:
|
1635 |
msgid "Liberia"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: core/helpers/helper-form-templates.php:
|
1639 |
msgid "Lesotho"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: core/helpers/helper-form-templates.php:
|
1643 |
msgid "Lithuania"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: core/helpers/helper-form-templates.php:
|
1647 |
msgid "Luxembourg"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: core/helpers/helper-form-templates.php:
|
1651 |
msgid "Latvia"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: core/helpers/helper-form-templates.php:
|
1655 |
msgid "Libyan Arab Jamahiriya"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: core/helpers/helper-form-templates.php:
|
1659 |
msgid "Morocco"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: core/helpers/helper-form-templates.php:
|
1663 |
msgid "Monaco"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: core/helpers/helper-form-templates.php:
|
1667 |
msgid "Moldova, Republic of"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: core/helpers/helper-form-templates.php:
|
1671 |
msgid "Montenegro"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: core/helpers/helper-form-templates.php:
|
1675 |
msgid "Madagascar"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: core/helpers/helper-form-templates.php:
|
1679 |
msgid "Marshall Islands"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: core/helpers/helper-form-templates.php:
|
1683 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: core/helpers/helper-form-templates.php:
|
1687 |
msgid "Mali"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: core/helpers/helper-form-templates.php:
|
1691 |
msgid "Myanmar"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: core/helpers/helper-form-templates.php:
|
1695 |
msgid "Mongolia"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: core/helpers/helper-form-templates.php:
|
1699 |
msgid "Macau"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: core/helpers/helper-form-templates.php:
|
1703 |
msgid "Northern Mariana Islands"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: core/helpers/helper-form-templates.php:
|
1707 |
msgid "Mauritania"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: core/helpers/helper-form-templates.php:
|
1711 |
msgid "Montserrat"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: core/helpers/helper-form-templates.php:
|
1715 |
msgid "Malta"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: core/helpers/helper-form-templates.php:
|
1719 |
msgid "Mauritius"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: core/helpers/helper-form-templates.php:
|
1723 |
msgid "Maldives"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: core/helpers/helper-form-templates.php:
|
1727 |
msgid "Malawi"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: core/helpers/helper-form-templates.php:
|
1731 |
msgid "Mexico"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: core/helpers/helper-form-templates.php:
|
1735 |
msgid "Malaysia"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: core/helpers/helper-form-templates.php:
|
1739 |
msgid "Mozambique"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: core/helpers/helper-form-templates.php:
|
1743 |
msgid "Namibia"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: core/helpers/helper-form-templates.php:
|
1747 |
msgid "New Caledonia"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: core/helpers/helper-form-templates.php:
|
1751 |
msgid "Niger"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: core/helpers/helper-form-templates.php:
|
1755 |
msgid "Nigeria"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: core/helpers/helper-form-templates.php:
|
1759 |
msgid "Nicaragua"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: core/helpers/helper-form-templates.php:
|
1763 |
msgid "Netherlands"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: core/helpers/helper-form-templates.php:
|
1767 |
msgid "Norway"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: core/helpers/helper-form-templates.php:
|
1771 |
msgid "Nepal"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: core/helpers/helper-form-templates.php:
|
1775 |
msgid "Nauru"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: core/helpers/helper-form-templates.php:
|
1779 |
msgid "Niue"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: core/helpers/helper-form-templates.php:
|
1783 |
msgid "New Zealand"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: core/helpers/helper-form-templates.php:
|
1787 |
msgid "Oman"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: core/helpers/helper-form-templates.php:
|
1791 |
msgid "Panama"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: core/helpers/helper-form-templates.php:
|
1795 |
msgid "Peru"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: core/helpers/helper-form-templates.php:
|
1799 |
msgid "French Polynesia"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: core/helpers/helper-form-templates.php:
|
1803 |
msgid "Papua New Guinea"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: core/helpers/helper-form-templates.php:
|
1807 |
msgid "Philippines"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: core/helpers/helper-form-templates.php:
|
1811 |
msgid "Pakistan"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: core/helpers/helper-form-templates.php:
|
1815 |
msgid "Poland"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: core/helpers/helper-form-templates.php:
|
1819 |
msgid "Saint Pierre and Miquelon"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: core/helpers/helper-form-templates.php:
|
1823 |
msgid "Pitcairn"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: core/helpers/helper-form-templates.php:
|
1827 |
msgid "Portugal"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: core/helpers/helper-form-templates.php:
|
1831 |
msgid "Palau"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: core/helpers/helper-form-templates.php:
|
1835 |
msgid "Paraguay"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: core/helpers/helper-form-templates.php:
|
1839 |
msgid "Qatar"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: core/helpers/helper-form-templates.php:
|
1843 |
msgid "Romania"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: core/helpers/helper-form-templates.php:
|
1847 |
msgid "Serbia"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: core/helpers/helper-form-templates.php:
|
1851 |
msgid "Russian Federation"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: core/helpers/helper-form-templates.php:
|
1855 |
msgid "Rwanda"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: core/helpers/helper-form-templates.php:
|
1859 |
msgid "Saudi Arabia"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: core/helpers/helper-form-templates.php:
|
1863 |
msgid "Solomon Islands"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: core/helpers/helper-form-templates.php:
|
1867 |
msgid "Seychelles"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: core/helpers/helper-form-templates.php:
|
1871 |
msgid "Sudan"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: core/helpers/helper-form-templates.php:
|
1875 |
msgid "Sweden"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: core/helpers/helper-form-templates.php:
|
1879 |
msgid "Singapore"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: core/helpers/helper-form-templates.php:
|
1883 |
msgid "Saint Helena"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: core/helpers/helper-form-templates.php:
|
1887 |
msgid "Slovenia"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: core/helpers/helper-form-templates.php:
|
1891 |
msgid "Slovakia"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: core/helpers/helper-form-templates.php:
|
1895 |
msgid "Sierra Leone"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: core/helpers/helper-form-templates.php:
|
1899 |
msgid "San Marino"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: core/helpers/helper-form-templates.php:
|
1903 |
msgid "Senegal"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: core/helpers/helper-form-templates.php:
|
1907 |
msgid "Somalia"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: core/helpers/helper-form-templates.php:
|
1911 |
msgid "Suriname"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: core/helpers/helper-form-templates.php:
|
1915 |
msgid "Sao Tome and Principe"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: core/helpers/helper-form-templates.php:
|
1919 |
msgid "El Salvador"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: core/helpers/helper-form-templates.php:
|
1923 |
msgid "Syrian Arab Republic"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: core/helpers/helper-form-templates.php:
|
1927 |
msgid "Swaziland"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: core/helpers/helper-form-templates.php:
|
1931 |
msgid "Turks and Caicos Islands"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: core/helpers/helper-form-templates.php:
|
1935 |
msgid "Chad"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: core/helpers/helper-form-templates.php:
|
1939 |
msgid "Togo"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: core/helpers/helper-form-templates.php:
|
1943 |
msgid "Thailand"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: core/helpers/helper-form-templates.php:
|
1947 |
msgid "Tajikistan"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: core/helpers/helper-form-templates.php:
|
1951 |
msgid "Tokelau"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: core/helpers/helper-form-templates.php:
|
1955 |
msgid "Timor-leste"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: core/helpers/helper-form-templates.php:
|
1959 |
msgid "Turkmenistan"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: core/helpers/helper-form-templates.php:
|
1963 |
msgid "Tunisia"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: core/helpers/helper-form-templates.php:
|
1967 |
msgid "Tonga"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: core/helpers/helper-form-templates.php:
|
1971 |
msgid "Turkey"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: core/helpers/helper-form-templates.php:
|
1975 |
msgid "Trinidad and Tobago"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: core/helpers/helper-form-templates.php:
|
1979 |
msgid "Tuvalu"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: core/helpers/helper-form-templates.php:
|
1983 |
msgid "Taiwan, Province of China"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: core/helpers/helper-form-templates.php:
|
1987 |
msgid "Tanzania, United Republic of"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: core/helpers/helper-form-templates.php:
|
1991 |
msgid "Ukraine"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: core/helpers/helper-form-templates.php:
|
1995 |
msgid "Uganda"
|
1996 |
msgstr ""
|
1997 |
|
|
|
|
|
|
|
|
|
1998 |
#: core/helpers/helper-form-templates.php:1285 core/helpers/helper-misc.php:448
|
1999 |
msgid "United States"
|
2000 |
msgstr ""
|
2 |
# This file is distributed under the same license as the HappyForms package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: HappyForms 1.9.21\n"
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
+
"POT-Creation-Date: 2020-10-02 14:58:27+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
1455 |
msgid "Gabon"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: core/helpers/helper-form-templates.php:1150 core/helpers/helper-misc.php:310
|
|
|
|
|
|
|
|
|
1459 |
msgid "Grenada"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: core/helpers/helper-form-templates.php:1151 core/helpers/helper-misc.php:304
|
1463 |
msgid "Georgia"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: core/helpers/helper-form-templates.php:1152 core/helpers/helper-misc.php:306
|
1467 |
msgid "Ghana"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: core/helpers/helper-form-templates.php:1153 core/helpers/helper-misc.php:307
|
1471 |
msgid "Gibraltar"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: core/helpers/helper-form-templates.php:1154 core/helpers/helper-misc.php:309
|
1475 |
msgid "Greenland"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: core/helpers/helper-form-templates.php:1155 core/helpers/helper-misc.php:303
|
1479 |
msgid "Gambia"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: core/helpers/helper-form-templates.php:1156 core/helpers/helper-misc.php:314
|
1483 |
msgid "Guinea"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: core/helpers/helper-form-templates.php:1157 core/helpers/helper-misc.php:308
|
1487 |
msgid "Greece"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: core/helpers/helper-form-templates.php:1158 core/helpers/helper-misc.php:313
|
1491 |
msgid "Guatemala"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: core/helpers/helper-form-templates.php:1159 core/helpers/helper-misc.php:312
|
1495 |
msgid "Guam"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: core/helpers/helper-form-templates.php:1160
|
1499 |
msgid "Guinea-bissau"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: core/helpers/helper-form-templates.php:1161 core/helpers/helper-misc.php:316
|
1503 |
msgid "Guyana"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: core/helpers/helper-form-templates.php:1162 core/helpers/helper-misc.php:321
|
1507 |
msgid "Hong Kong"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: core/helpers/helper-form-templates.php:1163 core/helpers/helper-misc.php:320
|
1511 |
msgid "Honduras"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: core/helpers/helper-form-templates.php:1164
|
1515 |
msgid "Croatia"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: core/helpers/helper-form-templates.php:1165 core/helpers/helper-misc.php:317
|
1519 |
msgid "Haiti"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: core/helpers/helper-form-templates.php:1166 core/helpers/helper-misc.php:322
|
1523 |
msgid "Hungary"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: core/helpers/helper-form-templates.php:1167 core/helpers/helper-misc.php:325
|
1527 |
msgid "Indonesia"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: core/helpers/helper-form-templates.php:1168 core/helpers/helper-misc.php:328
|
1531 |
msgid "Ireland"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: core/helpers/helper-form-templates.php:1169 core/helpers/helper-misc.php:329
|
1535 |
msgid "Israel"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: core/helpers/helper-form-templates.php:1170 core/helpers/helper-misc.php:324
|
1539 |
msgid "India"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: core/helpers/helper-form-templates.php:1171 core/helpers/helper-misc.php:327
|
1543 |
msgid "Iraq"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: core/helpers/helper-form-templates.php:1172
|
1547 |
msgid "Iran, Islamic Republic of"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: core/helpers/helper-form-templates.php:1173 core/helpers/helper-misc.php:323
|
1551 |
msgid "Iceland"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: core/helpers/helper-form-templates.php:1174 core/helpers/helper-misc.php:330
|
1555 |
msgid "Italy"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: core/helpers/helper-form-templates.php:1175 core/helpers/helper-misc.php:331
|
1559 |
msgid "Jamaica"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: core/helpers/helper-form-templates.php:1176 core/helpers/helper-misc.php:333
|
1563 |
msgid "Jordan"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: core/helpers/helper-form-templates.php:1177 core/helpers/helper-misc.php:332
|
1567 |
msgid "Japan"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: core/helpers/helper-form-templates.php:1178 core/helpers/helper-misc.php:335
|
1571 |
msgid "Kenya"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: core/helpers/helper-form-templates.php:1179 core/helpers/helper-misc.php:340
|
1575 |
msgid "Kyrgyzstan"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: core/helpers/helper-form-templates.php:1180 core/helpers/helper-misc.php:259
|
1579 |
msgid "Cambodia"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: core/helpers/helper-form-templates.php:1181 core/helpers/helper-misc.php:336
|
1583 |
msgid "Kiribati"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: core/helpers/helper-form-templates.php:1182 core/helpers/helper-misc.php:271
|
1587 |
msgid "Comoros"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: core/helpers/helper-form-templates.php:1183 core/helpers/helper-misc.php:403
|
1591 |
msgid "Saint Kitts and Nevis"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: core/helpers/helper-form-templates.php:1184
|
1595 |
msgid "Korea Democratic Peoples Republic of"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: core/helpers/helper-form-templates.php:1185
|
1599 |
msgid "Korea Republic of"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: core/helpers/helper-form-templates.php:1186 core/helpers/helper-misc.php:339
|
1603 |
msgid "Kuwait"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: core/helpers/helper-form-templates.php:1187 core/helpers/helper-misc.php:263
|
1607 |
msgid "Cayman Islands"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: core/helpers/helper-form-templates.php:1188
|
1611 |
msgid "Lao Peoples Democratic Republic"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: core/helpers/helper-form-templates.php:1189 core/helpers/helper-misc.php:343
|
1615 |
msgid "Lebanon"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: core/helpers/helper-form-templates.php:1190 core/helpers/helper-misc.php:404
|
1619 |
msgid "Saint Lucia"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: core/helpers/helper-form-templates.php:1191 core/helpers/helper-misc.php:347
|
1623 |
msgid "Liechtenstein"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: core/helpers/helper-form-templates.php:1192 core/helpers/helper-misc.php:421
|
1627 |
msgid "Sri Lanka"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: core/helpers/helper-form-templates.php:1193 core/helpers/helper-misc.php:345
|
1631 |
msgid "Liberia"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: core/helpers/helper-form-templates.php:1194 core/helpers/helper-misc.php:344
|
1635 |
msgid "Lesotho"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: core/helpers/helper-form-templates.php:1195 core/helpers/helper-misc.php:348
|
1639 |
msgid "Lithuania"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: core/helpers/helper-form-templates.php:1196 core/helpers/helper-misc.php:349
|
1643 |
msgid "Luxembourg"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: core/helpers/helper-form-templates.php:1197 core/helpers/helper-misc.php:342
|
1647 |
msgid "Latvia"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: core/helpers/helper-form-templates.php:1198 core/helpers/helper-misc.php:346
|
1651 |
msgid "Libyan Arab Jamahiriya"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: core/helpers/helper-form-templates.php:1199 core/helpers/helper-misc.php:369
|
1655 |
msgid "Morocco"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: core/helpers/helper-form-templates.php:1200 core/helpers/helper-misc.php:366
|
1659 |
msgid "Monaco"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: core/helpers/helper-form-templates.php:1201 core/helpers/helper-misc.php:365
|
1663 |
msgid "Moldova, Republic of"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: core/helpers/helper-form-templates.php:1202
|
1667 |
msgid "Montenegro"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: core/helpers/helper-form-templates.php:1203 core/helpers/helper-misc.php:352
|
1671 |
msgid "Madagascar"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: core/helpers/helper-form-templates.php:1204 core/helpers/helper-misc.php:358
|
1675 |
msgid "Marshall Islands"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: core/helpers/helper-form-templates.php:1205 core/helpers/helper-misc.php:351
|
1679 |
msgid "Macedonia, The Former Yugoslav Republic of"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: core/helpers/helper-form-templates.php:1206 core/helpers/helper-misc.php:356
|
1683 |
msgid "Mali"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: core/helpers/helper-form-templates.php:1207 core/helpers/helper-misc.php:371
|
1687 |
msgid "Myanmar"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: core/helpers/helper-form-templates.php:1208 core/helpers/helper-misc.php:367
|
1691 |
msgid "Mongolia"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: core/helpers/helper-form-templates.php:1209 core/helpers/helper-misc.php:350
|
1695 |
msgid "Macau"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: core/helpers/helper-form-templates.php:1210 core/helpers/helper-misc.php:384
|
1699 |
msgid "Northern Mariana Islands"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: core/helpers/helper-form-templates.php:1211 core/helpers/helper-misc.php:360
|
1703 |
msgid "Mauritania"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: core/helpers/helper-form-templates.php:1212 core/helpers/helper-misc.php:368
|
1707 |
msgid "Montserrat"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: core/helpers/helper-form-templates.php:1213 core/helpers/helper-misc.php:357
|
1711 |
msgid "Malta"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: core/helpers/helper-form-templates.php:1214 core/helpers/helper-misc.php:361
|
1715 |
msgid "Mauritius"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: core/helpers/helper-form-templates.php:1215 core/helpers/helper-misc.php:355
|
1719 |
msgid "Maldives"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: core/helpers/helper-form-templates.php:1216 core/helpers/helper-misc.php:353
|
1723 |
msgid "Malawi"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: core/helpers/helper-form-templates.php:1217 core/helpers/helper-misc.php:363
|
1727 |
msgid "Mexico"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: core/helpers/helper-form-templates.php:1218 core/helpers/helper-misc.php:354
|
1731 |
msgid "Malaysia"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: core/helpers/helper-form-templates.php:1219 core/helpers/helper-misc.php:370
|
1735 |
msgid "Mozambique"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: core/helpers/helper-form-templates.php:1220 core/helpers/helper-misc.php:372
|
1739 |
msgid "Namibia"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: core/helpers/helper-form-templates.php:1221 core/helpers/helper-misc.php:377
|
1743 |
msgid "New Caledonia"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: core/helpers/helper-form-templates.php:1222 core/helpers/helper-misc.php:380
|
1747 |
msgid "Niger"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: core/helpers/helper-form-templates.php:1223 core/helpers/helper-misc.php:381
|
1751 |
msgid "Nigeria"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: core/helpers/helper-form-templates.php:1224 core/helpers/helper-misc.php:379
|
1755 |
msgid "Nicaragua"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: core/helpers/helper-form-templates.php:1225 core/helpers/helper-misc.php:375
|
1759 |
msgid "Netherlands"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: core/helpers/helper-form-templates.php:1226 core/helpers/helper-misc.php:385
|
1763 |
msgid "Norway"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: core/helpers/helper-form-templates.php:1227 core/helpers/helper-misc.php:374
|
1767 |
msgid "Nepal"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: core/helpers/helper-form-templates.php:1228 core/helpers/helper-misc.php:373
|
1771 |
msgid "Nauru"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: core/helpers/helper-form-templates.php:1229 core/helpers/helper-misc.php:382
|
1775 |
msgid "Niue"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: core/helpers/helper-form-templates.php:1230 core/helpers/helper-misc.php:378
|
1779 |
msgid "New Zealand"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: core/helpers/helper-form-templates.php:1231 core/helpers/helper-misc.php:386
|
1783 |
msgid "Oman"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: core/helpers/helper-form-templates.php:1232 core/helpers/helper-misc.php:389
|
1787 |
msgid "Panama"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: core/helpers/helper-form-templates.php:1233 core/helpers/helper-misc.php:392
|
1791 |
msgid "Peru"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: core/helpers/helper-form-templates.php:1234 core/helpers/helper-misc.php:300
|
1795 |
msgid "French Polynesia"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: core/helpers/helper-form-templates.php:1235 core/helpers/helper-misc.php:390
|
1799 |
msgid "Papua New Guinea"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: core/helpers/helper-form-templates.php:1236 core/helpers/helper-misc.php:393
|
1803 |
msgid "Philippines"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: core/helpers/helper-form-templates.php:1237 core/helpers/helper-misc.php:387
|
1807 |
msgid "Pakistan"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: core/helpers/helper-form-templates.php:1238 core/helpers/helper-misc.php:395
|
1811 |
msgid "Poland"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: core/helpers/helper-form-templates.php:1239
|
1815 |
msgid "Saint Pierre and Miquelon"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: core/helpers/helper-form-templates.php:1240 core/helpers/helper-misc.php:394
|
1819 |
msgid "Pitcairn"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: core/helpers/helper-form-templates.php:1241 core/helpers/helper-misc.php:396
|
1823 |
msgid "Portugal"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: core/helpers/helper-form-templates.php:1242 core/helpers/helper-misc.php:388
|
1827 |
msgid "Palau"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: core/helpers/helper-form-templates.php:1243 core/helpers/helper-misc.php:391
|
1831 |
msgid "Paraguay"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: core/helpers/helper-form-templates.php:1244 core/helpers/helper-misc.php:398
|
1835 |
msgid "Qatar"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: core/helpers/helper-form-templates.php:1245 core/helpers/helper-misc.php:400
|
1839 |
msgid "Romania"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: core/helpers/helper-form-templates.php:1246
|
1843 |
msgid "Serbia"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: core/helpers/helper-form-templates.php:1247 core/helpers/helper-misc.php:401
|
1847 |
msgid "Russian Federation"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: core/helpers/helper-form-templates.php:1248 core/helpers/helper-misc.php:402
|
1851 |
msgid "Rwanda"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: core/helpers/helper-form-templates.php:1249 core/helpers/helper-misc.php:409
|
1855 |
msgid "Saudi Arabia"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: core/helpers/helper-form-templates.php:1250 core/helpers/helper-misc.php:416
|
1859 |
msgid "Solomon Islands"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: core/helpers/helper-form-templates.php:1251 core/helpers/helper-misc.php:411
|
1863 |
msgid "Seychelles"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: core/helpers/helper-form-templates.php:1252 core/helpers/helper-misc.php:424
|
1867 |
msgid "Sudan"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: core/helpers/helper-form-templates.php:1253 core/helpers/helper-misc.php:428
|
1871 |
msgid "Sweden"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: core/helpers/helper-form-templates.php:1254 core/helpers/helper-misc.php:413
|
1875 |
msgid "Singapore"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: core/helpers/helper-form-templates.php:1255
|
1879 |
msgid "Saint Helena"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: core/helpers/helper-form-templates.php:1256 core/helpers/helper-misc.php:415
|
1883 |
msgid "Slovenia"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: core/helpers/helper-form-templates.php:1257
|
1887 |
msgid "Slovakia"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: core/helpers/helper-form-templates.php:1258 core/helpers/helper-misc.php:412
|
1891 |
msgid "Sierra Leone"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: core/helpers/helper-form-templates.php:1259 core/helpers/helper-misc.php:407
|
1895 |
msgid "San Marino"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: core/helpers/helper-form-templates.php:1260 core/helpers/helper-misc.php:410
|
1899 |
msgid "Senegal"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: core/helpers/helper-form-templates.php:1261 core/helpers/helper-misc.php:417
|
1903 |
msgid "Somalia"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: core/helpers/helper-form-templates.php:1262 core/helpers/helper-misc.php:425
|
1907 |
msgid "Suriname"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: core/helpers/helper-form-templates.php:1263 core/helpers/helper-misc.php:408
|
1911 |
msgid "Sao Tome and Principe"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: core/helpers/helper-form-templates.php:1264 core/helpers/helper-misc.php:288
|
1915 |
msgid "El Salvador"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: core/helpers/helper-form-templates.php:1265 core/helpers/helper-misc.php:430
|
1919 |
msgid "Syrian Arab Republic"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: core/helpers/helper-form-templates.php:1266 core/helpers/helper-misc.php:427
|
1923 |
msgid "Swaziland"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: core/helpers/helper-form-templates.php:1267 core/helpers/helper-misc.php:442
|
1927 |
msgid "Turks and Caicos Islands"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: core/helpers/helper-form-templates.php:1268 core/helpers/helper-misc.php:265
|
1931 |
msgid "Chad"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: core/helpers/helper-form-templates.php:1269 core/helpers/helper-misc.php:435
|
1935 |
msgid "Togo"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: core/helpers/helper-form-templates.php:1270 core/helpers/helper-misc.php:434
|
1939 |
msgid "Thailand"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: core/helpers/helper-form-templates.php:1271 core/helpers/helper-misc.php:432
|
1943 |
msgid "Tajikistan"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: core/helpers/helper-form-templates.php:1272 core/helpers/helper-misc.php:436
|
1947 |
msgid "Tokelau"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: core/helpers/helper-form-templates.php:1273
|
1951 |
msgid "Timor-leste"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: core/helpers/helper-form-templates.php:1274 core/helpers/helper-misc.php:441
|
1955 |
msgid "Turkmenistan"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: core/helpers/helper-form-templates.php:1275 core/helpers/helper-misc.php:439
|
1959 |
msgid "Tunisia"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: core/helpers/helper-form-templates.php:1276 core/helpers/helper-misc.php:437
|
1963 |
msgid "Tonga"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: core/helpers/helper-form-templates.php:1277 core/helpers/helper-misc.php:440
|
1967 |
msgid "Turkey"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: core/helpers/helper-form-templates.php:1278 core/helpers/helper-misc.php:438
|
1971 |
msgid "Trinidad and Tobago"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: core/helpers/helper-form-templates.php:1279 core/helpers/helper-misc.php:443
|
1975 |
msgid "Tuvalu"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: core/helpers/helper-form-templates.php:1280 core/helpers/helper-misc.php:431
|
1979 |
msgid "Taiwan, Province of China"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: core/helpers/helper-form-templates.php:1281 core/helpers/helper-misc.php:433
|
1983 |
msgid "Tanzania, United Republic of"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: core/helpers/helper-form-templates.php:1282 core/helpers/helper-misc.php:445
|
1987 |
msgid "Ukraine"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: core/helpers/helper-form-templates.php:1283 core/helpers/helper-misc.php:444
|
1991 |
msgid "Uganda"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: core/helpers/helper-form-templates.php:1284 core/helpers/helper-misc.php:447
|
1995 |
+
msgid "United Kingdom"
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
#: core/helpers/helper-form-templates.php:1285 core/helpers/helper-misc.php:448
|
1999 |
msgid "United States"
|
2000 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: contact, contact form, email, feedback form, form, form builder, custom fo
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5.1
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.9.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -97,6 +97,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
97 |
|
98 |
== Changelog ==
|
99 |
|
|
|
|
|
|
|
100 |
= 1.9.20 =
|
101 |
* Bugfix: Fixed wrapping glitches with long labels and descriptions.
|
102 |
|
@@ -653,6 +656,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more yo
|
|
653 |
|
654 |
== Upgrade Notice ==
|
655 |
|
|
|
|
|
|
|
656 |
= 1.9.20 =
|
657 |
* Minor bugfixes.
|
658 |
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5.1
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.9.21
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
97 |
|
98 |
== Changelog ==
|
99 |
|
100 |
+
= 1.9.21 =
|
101 |
+
* Improvement: better usability of various elements of Edit Form screen.
|
102 |
+
|
103 |
= 1.9.20 =
|
104 |
* Bugfix: Fixed wrapping glitches with long labels and descriptions.
|
105 |
|
656 |
|
657 |
== Upgrade Notice ==
|
658 |
|
659 |
+
= 1.9.21 =
|
660 |
+
* Minor improvements and bugfixes.
|
661 |
+
|
662 |
= 1.9.20 =
|
663 |
* Minor bugfixes.
|
664 |
|