Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms - Version 1.7.2

Version Description

  • Improvement: Added date days filter.
  • Improvement: Easier filtering of email message fields.
  • Bugfix: Phone part wasn't showing correct country flag when same prefix is used by more than one country.
Download this release

Release Info

Developer thethemefoundry
Plugin Icon 128x128 Form builder to get in touch with visitors, grow your email list and collect payments — Happyforms
Version 1.7.2
Comparing to
See all releases

Code changes from version 1.7.1 to 1.7.2

happyforms.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://happyforms.me
6
  * Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
7
  * Author: The Theme Foundry
8
- * Version: 1.7.1
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.7.1' );
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.7.2
9
  * Author URI: https://thethemefoundry.com
10
  * Upgrade URI: https://thethemefoundry.com
11
  */
13
  /**
14
  * The current version of the plugin.
15
  */
16
+ define( 'HAPPYFORMS_VERSION', '1.7.2' );
17
 
18
  if ( ! function_exists( 'happyforms_plugin_file' ) ):
19
  /**
inc/core/classes/class-email-message.php CHANGED
@@ -136,6 +136,10 @@ class HappyForms_Email_Message {
136
  $this->to = trim( $to );
137
  }
138
 
 
 
 
 
139
  public function set_ccs( $ccs = array() ) {
140
  if ( is_string( $ccs ) ) {
141
  $ccs = array( $ccs );
@@ -156,6 +160,10 @@ class HappyForms_Email_Message {
156
  $this->ccs = array_map( 'trim', $ccs );
157
  }
158
 
 
 
 
 
159
  public function set_bccs( $bccs = array() ) {
160
  if ( is_string( $bccs ) ) {
161
  $bccs = array( $bccs );
@@ -176,6 +184,10 @@ class HappyForms_Email_Message {
176
  $this->bccs = array_map( 'trim', $bccs );
177
  }
178
 
 
 
 
 
179
  public function set_reply_to( $reply_to = array() ) {
180
  if ( is_string( $reply_to ) ) {
181
  $reply_to = array( $reply_to );
@@ -196,6 +208,10 @@ class HappyForms_Email_Message {
196
  $this->reply_to = array_map( 'trim', $reply_to );
197
  }
198
 
 
 
 
 
199
  public function set_subject( $subject = '' ) {
200
  $subject = trim( $subject );
201
 
@@ -215,6 +231,10 @@ class HappyForms_Email_Message {
215
  $this->subject = $subject;
216
  }
217
 
 
 
 
 
218
  public function set_content( $content = '' ) {
219
  $content = trim( $content );
220
 
@@ -234,7 +254,15 @@ class HappyForms_Email_Message {
234
  $this->content = $content;
235
  }
236
 
237
- private function get_headers() {
 
 
 
 
 
 
 
 
238
  $headers = array();
239
 
240
  if ( ! empty( $this->reply_to ) ) {
136
  $this->to = trim( $to );
137
  }
138
 
139
+ public function get_to() {
140
+ return $this->to;
141
+ }
142
+
143
  public function set_ccs( $ccs = array() ) {
144
  if ( is_string( $ccs ) ) {
145
  $ccs = array( $ccs );
160
  $this->ccs = array_map( 'trim', $ccs );
161
  }
162
 
163
+ public function get_ccs() {
164
+ return $this->ccs;
165
+ }
166
+
167
  public function set_bccs( $bccs = array() ) {
168
  if ( is_string( $bccs ) ) {
169
  $bccs = array( $bccs );
184
  $this->bccs = array_map( 'trim', $bccs );
185
  }
186
 
187
+ public function get_bccs() {
188
+ return $this->bccs;
189
+ }
190
+
191
  public function set_reply_to( $reply_to = array() ) {
192
  if ( is_string( $reply_to ) ) {
193
  $reply_to = array( $reply_to );
208
  $this->reply_to = array_map( 'trim', $reply_to );
209
  }
210
 
211
+ public function get_reply_to() {
212
+ return $this->reply_to;
213
+ }
214
+
215
  public function set_subject( $subject = '' ) {
216
  $subject = trim( $subject );
217
 
231
  $this->subject = $subject;
232
  }
233
 
234
+ public function get_subject() {
235
+ return $this->subject;
236
+ }
237
+
238
  public function set_content( $content = '' ) {
239
  $content = trim( $content );
240
 
254
  $this->content = $content;
255
  }
256
 
257
+ public function get_content() {
258
+ return $this->content;
259
+ }
260
+
261
+ public function get_response() {
262
+ return $this->message;
263
+ }
264
+
265
+ public function get_headers() {
266
  $headers = array();
267
 
268
  if ( ! empty( $this->reply_to ) ) {
inc/core/helpers/helper-form-templates.php CHANGED
@@ -898,7 +898,6 @@ function happyforms_geolocation_link( $part ) {
898
 
899
  endif;
900
 
901
-
902
  if ( ! function_exists( 'happyforms_get_months' ) ) :
903
 
904
  function happyforms_get_months() {
@@ -924,6 +923,16 @@ function happyforms_get_months() {
924
 
925
  endif;
926
 
 
 
 
 
 
 
 
 
 
 
927
  if ( ! function_exists( 'happyforms_get_site_date_format' ) ) :
928
 
929
  function happyforms_get_site_date_format() {
898
 
899
  endif;
900
 
 
901
  if ( ! function_exists( 'happyforms_get_months' ) ) :
902
 
903
  function happyforms_get_months() {
923
 
924
  endif;
925
 
926
+ if ( ! function_exists( 'happyforms_get_days' ) ) :
927
+
928
+ function happyforms_get_days() {
929
+ $days = apply_filters( 'happyforms_get_days', range( 1, 31 ) );
930
+
931
+ return $days;
932
+ }
933
+
934
+ endif;
935
+
936
  if ( ! function_exists( 'happyforms_get_site_date_format' ) ) :
937
 
938
  function happyforms_get_site_date_format() {
inc/core/templates/partials/part-phone-dropdown.php CHANGED
@@ -7,9 +7,7 @@
7
  $current_country = 0;
8
 
9
  foreach( $countries as $code => $country ) {
10
- if ( intval( $code_value ) && $code_value === $country['code'] ) {
11
- $current_country = $country;
12
- } else if ( strtolower( $code ) === strtolower( $code_value ) ) {
13
  $current_country = $country;
14
  }
15
  }
7
  $current_country = 0;
8
 
9
  foreach( $countries as $code => $country ) {
10
+ if ( $country_value === $code ) {
 
 
11
  $current_country = $country;
12
  }
13
  }
inc/core/templates/parts/frontend-date-day.php CHANGED
@@ -11,22 +11,23 @@ if ( '' === $day_value && 'current' === $part['default_datetime'] ) {
11
  <div class="happyforms-custom-select" data-searchable="true">
12
  <div class="happyforms-part__select-wrap">
13
  <?php $placeholder_text = __( 'Day', 'happyforms' ); ?>
14
-
15
  <input type="hidden" name="<?php happyforms_the_part_name( $part, $form ); ?>[day]" value="<?php echo $day_value; ?>" data-serialize />
16
-
17
  <input type="text" value="<?php echo $day_value; ?>" placeholder="<?php echo $placeholder_text; ?>" data-searchable="true" autocomplete="off" <?php if ( 1 === $part['required'] ) : ?> required aria-required="true"<?php endif; ?> <?php happyforms_the_part_attributes( $part, $form ); ?> />
18
-
19
  <?php
20
  $options = array();
21
-
22
- for ( $i = 1; $i <= 31; $i++ ) {
 
23
  $options[] = array(
24
  'label' => $i,
25
  'value' => $i,
26
  'is_default' => ( intval( $day_value ) === $i )
27
  );
28
  }
29
-
30
  happyforms_select( $options, $part, $form, $placeholder_text );
31
  ?>
32
  </div>
11
  <div class="happyforms-custom-select" data-searchable="true">
12
  <div class="happyforms-part__select-wrap">
13
  <?php $placeholder_text = __( 'Day', 'happyforms' ); ?>
14
+
15
  <input type="hidden" name="<?php happyforms_the_part_name( $part, $form ); ?>[day]" value="<?php echo $day_value; ?>" data-serialize />
16
+
17
  <input type="text" value="<?php echo $day_value; ?>" placeholder="<?php echo $placeholder_text; ?>" data-searchable="true" autocomplete="off" <?php if ( 1 === $part['required'] ) : ?> required aria-required="true"<?php endif; ?> <?php happyforms_the_part_attributes( $part, $form ); ?> />
18
+
19
  <?php
20
  $options = array();
21
+ $days = happyforms_get_days();
22
+
23
+ foreach( $days as $i ) {
24
  $options[] = array(
25
  'label' => $i,
26
  'value' => $i,
27
  'is_default' => ( intval( $day_value ) === $i )
28
  );
29
  }
30
+
31
  happyforms_select( $options, $part, $form, $placeholder_text );
32
  ?>
33
  </div>
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.7.1\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
- "POT-Creation-Date: 2019-02-27 09:48:43+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -1618,1127 +1618,1127 @@ msgstr ""
1618
  msgid "Fetching location…"
1619
  msgstr ""
1620
 
1621
- #: inc/core/helpers/helper-form-templates.php:906
1622
  msgid "January"
1623
  msgstr ""
1624
 
1625
- #: inc/core/helpers/helper-form-templates.php:907
1626
  msgid "February"
1627
  msgstr ""
1628
 
1629
- #: inc/core/helpers/helper-form-templates.php:908
1630
  msgid "March"
1631
  msgstr ""
1632
 
1633
- #: inc/core/helpers/helper-form-templates.php:909
1634
  msgid "April"
1635
  msgstr ""
1636
 
1637
- #: inc/core/helpers/helper-form-templates.php:910
1638
  msgid "May"
1639
  msgstr ""
1640
 
1641
- #: inc/core/helpers/helper-form-templates.php:911
1642
  msgid "June"
1643
  msgstr ""
1644
 
1645
- #: inc/core/helpers/helper-form-templates.php:912
1646
  msgid "July"
1647
  msgstr ""
1648
 
1649
- #: inc/core/helpers/helper-form-templates.php:913
1650
  msgid "August"
1651
  msgstr ""
1652
 
1653
- #: inc/core/helpers/helper-form-templates.php:914
1654
  msgid "September"
1655
  msgstr ""
1656
 
1657
- #: inc/core/helpers/helper-form-templates.php:915
1658
  msgid "October"
1659
  msgstr ""
1660
 
1661
- #: inc/core/helpers/helper-form-templates.php:916
1662
  msgid "November"
1663
  msgstr ""
1664
 
1665
- #: inc/core/helpers/helper-form-templates.php:917
1666
  msgid "December"
1667
  msgstr ""
1668
 
1669
- #: inc/core/helpers/helper-form-templates.php:948
1670
  #: inc/core/helpers/helper-misc.php:254
1671
  msgid "Andorra"
1672
  msgstr ""
1673
 
1674
- #: inc/core/helpers/helper-form-templates.php:949
1675
  #: inc/core/helpers/helper-misc.php:472
1676
  msgid "United Arab Emirates"
1677
  msgstr ""
1678
 
1679
- #: inc/core/helpers/helper-form-templates.php:950
1680
  #: inc/core/helpers/helper-misc.php:250
1681
  msgid "Afghanistan"
1682
  msgstr ""
1683
 
1684
- #: inc/core/helpers/helper-form-templates.php:951
1685
  #: inc/core/helpers/helper-misc.php:258
1686
  msgid "Antigua and Barbuda"
1687
  msgstr ""
1688
 
1689
- #: inc/core/helpers/helper-form-templates.php:952
1690
  #: inc/core/helpers/helper-misc.php:256
1691
  msgid "Anguilla"
1692
  msgstr ""
1693
 
1694
- #: inc/core/helpers/helper-form-templates.php:953
1695
  #: inc/core/helpers/helper-misc.php:251
1696
  msgid "Albania"
1697
  msgstr ""
1698
 
1699
- #: inc/core/helpers/helper-form-templates.php:954
1700
  #: inc/core/helpers/helper-misc.php:260
1701
  msgid "Armenia"
1702
  msgstr ""
1703
 
1704
- #: inc/core/helpers/helper-form-templates.php:955
1705
  #: inc/core/helpers/helper-misc.php:255
1706
  msgid "Angola"
1707
  msgstr ""
1708
 
1709
- #: inc/core/helpers/helper-form-templates.php:956
1710
  #: inc/core/helpers/helper-misc.php:257
1711
  msgid "Antarctica"
1712
  msgstr ""
1713
 
1714
- #: inc/core/helpers/helper-form-templates.php:957
1715
  #: inc/core/helpers/helper-misc.php:259
1716
  msgid "Argentina"
1717
  msgstr ""
1718
 
1719
- #: inc/core/helpers/helper-form-templates.php:958
1720
  #: inc/core/helpers/helper-misc.php:253
1721
  msgid "American Samoa"
1722
  msgstr ""
1723
 
1724
- #: inc/core/helpers/helper-form-templates.php:959
1725
  #: inc/core/helpers/helper-misc.php:263
1726
  msgid "Austria"
1727
  msgstr ""
1728
 
1729
- #: inc/core/helpers/helper-form-templates.php:960
1730
  #: inc/core/helpers/helper-misc.php:262
1731
  msgid "Australia"
1732
  msgstr ""
1733
 
1734
- #: inc/core/helpers/helper-form-templates.php:961
1735
  #: inc/core/helpers/helper-misc.php:261
1736
  msgid "Aruba"
1737
  msgstr ""
1738
 
1739
- #: inc/core/helpers/helper-form-templates.php:962
1740
  #: inc/core/helpers/helper-misc.php:264
1741
  msgid "Azerbaijan"
1742
  msgstr ""
1743
 
1744
- #: inc/core/helpers/helper-form-templates.php:963
1745
  msgid "Bosnia and Herzegovina"
1746
  msgstr ""
1747
 
1748
- #: inc/core/helpers/helper-form-templates.php:964
1749
  #: inc/core/helpers/helper-misc.php:268
1750
  msgid "Barbados"
1751
  msgstr ""
1752
 
1753
- #: inc/core/helpers/helper-form-templates.php:965
1754
  #: inc/core/helpers/helper-misc.php:267
1755
  msgid "Bangladesh"
1756
  msgstr ""
1757
 
1758
- #: inc/core/helpers/helper-form-templates.php:966
1759
  #: inc/core/helpers/helper-misc.php:270
1760
  msgid "Belgium"
1761
  msgstr ""
1762
 
1763
- #: inc/core/helpers/helper-form-templates.php:967
1764
  #: inc/core/helpers/helper-misc.php:283
1765
  msgid "Burkina Faso"
1766
  msgstr ""
1767
 
1768
- #: inc/core/helpers/helper-form-templates.php:968
1769
  #: inc/core/helpers/helper-misc.php:282
1770
  msgid "Bulgaria"
1771
  msgstr ""
1772
 
1773
- #: inc/core/helpers/helper-form-templates.php:969
1774
  #: inc/core/helpers/helper-misc.php:266
1775
  msgid "Bahrain"
1776
  msgstr ""
1777
 
1778
- #: inc/core/helpers/helper-form-templates.php:970
1779
  #: inc/core/helpers/helper-misc.php:284
1780
  msgid "Burundi"
1781
  msgstr ""
1782
 
1783
- #: inc/core/helpers/helper-form-templates.php:971
1784
  #: inc/core/helpers/helper-misc.php:272
1785
  msgid "Benin"
1786
  msgstr ""
1787
 
1788
- #: inc/core/helpers/helper-form-templates.php:972
1789
  msgid "Saint Barthelemy"
1790
  msgstr ""
1791
 
1792
- #: inc/core/helpers/helper-form-templates.php:973
1793
  #: inc/core/helpers/helper-misc.php:273
1794
  msgid "Bermuda"
1795
  msgstr ""
1796
 
1797
- #: inc/core/helpers/helper-form-templates.php:974
1798
  #: inc/core/helpers/helper-misc.php:281
1799
  msgid "Brunei Darussalam"
1800
  msgstr ""
1801
 
1802
- #: inc/core/helpers/helper-form-templates.php:975
1803
  #: inc/core/helpers/helper-misc.php:275
1804
  msgid "Bolivia"
1805
  msgstr ""
1806
 
1807
- #: inc/core/helpers/helper-form-templates.php:976
1808
  #: inc/core/helpers/helper-misc.php:279
1809
  msgid "Brazil"
1810
  msgstr ""
1811
 
1812
- #: inc/core/helpers/helper-form-templates.php:977
1813
  #: inc/core/helpers/helper-misc.php:265
1814
  msgid "Bahamas"
1815
  msgstr ""
1816
 
1817
- #: inc/core/helpers/helper-form-templates.php:978
1818
  #: inc/core/helpers/helper-misc.php:274
1819
  msgid "Bhutan"
1820
  msgstr ""
1821
 
1822
- #: inc/core/helpers/helper-form-templates.php:979
1823
  #: inc/core/helpers/helper-misc.php:277
1824
  msgid "Botswana"
1825
  msgstr ""
1826
 
1827
- #: inc/core/helpers/helper-form-templates.php:980
1828
  #: inc/core/helpers/helper-misc.php:269
1829
  msgid "Belarus"
1830
  msgstr ""
1831
 
1832
- #: inc/core/helpers/helper-form-templates.php:981
1833
  #: inc/core/helpers/helper-misc.php:271
1834
  msgid "Belize"
1835
  msgstr ""
1836
 
1837
- #: inc/core/helpers/helper-form-templates.php:982
1838
  #: inc/core/helpers/helper-misc.php:287
1839
  msgid "Canada"
1840
  msgstr ""
1841
 
1842
- #: inc/core/helpers/helper-form-templates.php:983
1843
  msgid "Congo, The Democratic Republic of the"
1844
  msgstr ""
1845
 
1846
- #: inc/core/helpers/helper-form-templates.php:984
1847
  #: inc/core/helpers/helper-misc.php:290
1848
  msgid "Central African Republic"
1849
  msgstr ""
1850
 
1851
- #: inc/core/helpers/helper-form-templates.php:985
1852
  #: inc/core/helpers/helper-misc.php:298
1853
  msgid "Congo"
1854
  msgstr ""
1855
 
1856
- #: inc/core/helpers/helper-form-templates.php:986
1857
  #: inc/core/helpers/helper-misc.php:455
1858
  msgid "Switzerland"
1859
  msgstr ""
1860
 
1861
- #: inc/core/helpers/helper-form-templates.php:987
1862
  #: inc/core/helpers/helper-misc.php:300
1863
  msgid "Cook Islands"
1864
  msgstr ""
1865
 
1866
- #: inc/core/helpers/helper-form-templates.php:988
1867
  #: inc/core/helpers/helper-misc.php:292
1868
  msgid "Chile"
1869
  msgstr ""
1870
 
1871
- #: inc/core/helpers/helper-form-templates.php:989
1872
  #: inc/core/helpers/helper-misc.php:286
1873
  msgid "Cameroon"
1874
  msgstr ""
1875
 
1876
- #: inc/core/helpers/helper-form-templates.php:990
1877
  #: inc/core/helpers/helper-misc.php:293
1878
  msgid "China"
1879
  msgstr ""
1880
 
1881
- #: inc/core/helpers/helper-form-templates.php:991
1882
  #: inc/core/helpers/helper-misc.php:296
1883
  msgid "Colombia"
1884
  msgstr ""
1885
 
1886
- #: inc/core/helpers/helper-form-templates.php:992
1887
  #: inc/core/helpers/helper-misc.php:301
1888
  msgid "Costa Rica"
1889
  msgstr ""
1890
 
1891
- #: inc/core/helpers/helper-form-templates.php:993
1892
  #: inc/core/helpers/helper-misc.php:304
1893
  msgid "Cuba"
1894
  msgstr ""
1895
 
1896
- #: inc/core/helpers/helper-form-templates.php:994
1897
  #: inc/core/helpers/helper-misc.php:288
1898
  msgid "Cape Verde"
1899
  msgstr ""
1900
 
1901
- #: inc/core/helpers/helper-form-templates.php:995
1902
  #: inc/core/helpers/helper-misc.php:305
1903
  msgid "Cyprus"
1904
  msgstr ""
1905
 
1906
- #: inc/core/helpers/helper-form-templates.php:996
1907
  #: inc/core/helpers/helper-misc.php:306
1908
  msgid "Czech Republic"
1909
  msgstr ""
1910
 
1911
- #: inc/core/helpers/helper-form-templates.php:997
1912
  #: inc/core/helpers/helper-misc.php:331
1913
  msgid "Germany"
1914
  msgstr ""
1915
 
1916
- #: inc/core/helpers/helper-form-templates.php:998
1917
  #: inc/core/helpers/helper-misc.php:308
1918
  msgid "Djibouti"
1919
  msgstr ""
1920
 
1921
- #: inc/core/helpers/helper-form-templates.php:999
1922
  #: inc/core/helpers/helper-misc.php:307
1923
  msgid "Denmark"
1924
  msgstr ""
1925
 
1926
- #: inc/core/helpers/helper-form-templates.php:1000
1927
  #: inc/core/helpers/helper-misc.php:309
1928
  msgid "Dominica"
1929
  msgstr ""
1930
 
1931
- #: inc/core/helpers/helper-form-templates.php:1001
1932
  #: inc/core/helpers/helper-misc.php:310
1933
  msgid "Dominican Republic"
1934
  msgstr ""
1935
 
1936
- #: inc/core/helpers/helper-form-templates.php:1002
1937
  #: inc/core/helpers/helper-misc.php:252
1938
  msgid "Algeria"
1939
  msgstr ""
1940
 
1941
- #: inc/core/helpers/helper-form-templates.php:1003
1942
  #: inc/core/helpers/helper-misc.php:312
1943
  msgid "Ecuador"
1944
  msgstr ""
1945
 
1946
- #: inc/core/helpers/helper-form-templates.php:1004
1947
  #: inc/core/helpers/helper-misc.php:317
1948
  msgid "Estonia"
1949
  msgstr ""
1950
 
1951
- #: inc/core/helpers/helper-form-templates.php:1005
1952
  #: inc/core/helpers/helper-misc.php:313
1953
  msgid "Egypt"
1954
  msgstr ""
1955
 
1956
- #: inc/core/helpers/helper-form-templates.php:1006
1957
  #: inc/core/helpers/helper-misc.php:316
1958
  msgid "Eritrea"
1959
  msgstr ""
1960
 
1961
- #: inc/core/helpers/helper-form-templates.php:1007
1962
  #: inc/core/helpers/helper-misc.php:446
1963
  msgid "Spain"
1964
  msgstr ""
1965
 
1966
- #: inc/core/helpers/helper-form-templates.php:1008
1967
  #: inc/core/helpers/helper-misc.php:318
1968
  msgid "Ethiopia"
1969
  msgstr ""
1970
 
1971
- #: inc/core/helpers/helper-form-templates.php:1009
1972
  #: inc/core/helpers/helper-misc.php:322
1973
  msgid "Finland"
1974
  msgstr ""
1975
 
1976
- #: inc/core/helpers/helper-form-templates.php:1010
1977
  #: inc/core/helpers/helper-misc.php:321
1978
  msgid "Fiji"
1979
  msgstr ""
1980
 
1981
- #: inc/core/helpers/helper-form-templates.php:1011
1982
  #: inc/core/helpers/helper-misc.php:319
1983
  msgid "Falkland Islands (Malvinas)"
1984
  msgstr ""
1985
 
1986
- #: inc/core/helpers/helper-form-templates.php:1012
1987
  #: inc/core/helpers/helper-misc.php:390
1988
  msgid "Micronesia, Federated States of"
1989
  msgstr ""
1990
 
1991
- #: inc/core/helpers/helper-form-templates.php:1013
1992
  #: inc/core/helpers/helper-misc.php:320
1993
  msgid "Faroe Islands"
1994
  msgstr ""
1995
 
1996
- #: inc/core/helpers/helper-form-templates.php:1014
1997
  #: inc/core/helpers/helper-misc.php:323
1998
  msgid "France"
1999
  msgstr ""
2000
 
2001
- #: inc/core/helpers/helper-form-templates.php:1015
2002
  #: inc/core/helpers/helper-misc.php:328
2003
  msgid "Gabon"
2004
  msgstr ""
2005
 
2006
- #: inc/core/helpers/helper-form-templates.php:1016
2007
  #: inc/core/helpers/helper-misc.php:473
2008
  msgid "United Kingdom"
2009
  msgstr ""
2010
 
2011
- #: inc/core/helpers/helper-form-templates.php:1017
2012
  #: inc/core/helpers/helper-misc.php:336
2013
  msgid "Grenada"
2014
  msgstr ""
2015
 
2016
- #: inc/core/helpers/helper-form-templates.php:1018
2017
  #: inc/core/helpers/helper-misc.php:330
2018
  msgid "Georgia"
2019
  msgstr ""
2020
 
2021
- #: inc/core/helpers/helper-form-templates.php:1019
2022
  #: inc/core/helpers/helper-misc.php:332
2023
  msgid "Ghana"
2024
  msgstr ""
2025
 
2026
- #: inc/core/helpers/helper-form-templates.php:1020
2027
  #: inc/core/helpers/helper-misc.php:333
2028
  msgid "Gibraltar"
2029
  msgstr ""
2030
 
2031
- #: inc/core/helpers/helper-form-templates.php:1021
2032
  #: inc/core/helpers/helper-misc.php:335
2033
  msgid "Greenland"
2034
  msgstr ""
2035
 
2036
- #: inc/core/helpers/helper-form-templates.php:1022
2037
  #: inc/core/helpers/helper-misc.php:329
2038
  msgid "Gambia"
2039
  msgstr ""
2040
 
2041
- #: inc/core/helpers/helper-form-templates.php:1023
2042
  #: inc/core/helpers/helper-misc.php:340
2043
  msgid "Guinea"
2044
  msgstr ""
2045
 
2046
- #: inc/core/helpers/helper-form-templates.php:1024
2047
  #: inc/core/helpers/helper-misc.php:334
2048
  msgid "Greece"
2049
  msgstr ""
2050
 
2051
- #: inc/core/helpers/helper-form-templates.php:1025
2052
  #: inc/core/helpers/helper-misc.php:339
2053
  msgid "Guatemala"
2054
  msgstr ""
2055
 
2056
- #: inc/core/helpers/helper-form-templates.php:1026
2057
  #: inc/core/helpers/helper-misc.php:338
2058
  msgid "Guam"
2059
  msgstr ""
2060
 
2061
- #: inc/core/helpers/helper-form-templates.php:1027
2062
  msgid "Guinea-bissau"
2063
  msgstr ""
2064
 
2065
- #: inc/core/helpers/helper-form-templates.php:1028
2066
  #: inc/core/helpers/helper-misc.php:342
2067
  msgid "Guyana"
2068
  msgstr ""
2069
 
2070
- #: inc/core/helpers/helper-form-templates.php:1029
2071
  #: inc/core/helpers/helper-misc.php:347
2072
  msgid "Hong Kong"
2073
  msgstr ""
2074
 
2075
- #: inc/core/helpers/helper-form-templates.php:1030
2076
  #: inc/core/helpers/helper-misc.php:346
2077
  msgid "Honduras"
2078
  msgstr ""
2079
 
2080
- #: inc/core/helpers/helper-form-templates.php:1031
2081
  msgid "Croatia"
2082
  msgstr ""
2083
 
2084
- #: inc/core/helpers/helper-form-templates.php:1032
2085
  #: inc/core/helpers/helper-misc.php:343
2086
  msgid "Haiti"
2087
  msgstr ""
2088
 
2089
- #: inc/core/helpers/helper-form-templates.php:1033
2090
  #: inc/core/helpers/helper-misc.php:348
2091
  msgid "Hungary"
2092
  msgstr ""
2093
 
2094
- #: inc/core/helpers/helper-form-templates.php:1034
2095
  #: inc/core/helpers/helper-misc.php:351
2096
  msgid "Indonesia"
2097
  msgstr ""
2098
 
2099
- #: inc/core/helpers/helper-form-templates.php:1035
2100
  #: inc/core/helpers/helper-misc.php:354
2101
  msgid "Ireland"
2102
  msgstr ""
2103
 
2104
- #: inc/core/helpers/helper-form-templates.php:1036
2105
  #: inc/core/helpers/helper-misc.php:355
2106
  msgid "Israel"
2107
  msgstr ""
2108
 
2109
- #: inc/core/helpers/helper-form-templates.php:1037
2110
  #: inc/core/helpers/helper-misc.php:350
2111
  msgid "India"
2112
  msgstr ""
2113
 
2114
- #: inc/core/helpers/helper-form-templates.php:1038
2115
  #: inc/core/helpers/helper-misc.php:353
2116
  msgid "Iraq"
2117
  msgstr ""
2118
 
2119
- #: inc/core/helpers/helper-form-templates.php:1039
2120
  msgid "Iran, Islamic Republic of"
2121
  msgstr ""
2122
 
2123
- #: inc/core/helpers/helper-form-templates.php:1040
2124
  #: inc/core/helpers/helper-misc.php:349
2125
  msgid "Iceland"
2126
  msgstr ""
2127
 
2128
- #: inc/core/helpers/helper-form-templates.php:1041
2129
  #: inc/core/helpers/helper-misc.php:356
2130
  msgid "Italy"
2131
  msgstr ""
2132
 
2133
- #: inc/core/helpers/helper-form-templates.php:1042
2134
  #: inc/core/helpers/helper-misc.php:357
2135
  msgid "Jamaica"
2136
  msgstr ""
2137
 
2138
- #: inc/core/helpers/helper-form-templates.php:1043
2139
  #: inc/core/helpers/helper-misc.php:359
2140
  msgid "Jordan"
2141
  msgstr ""
2142
 
2143
- #: inc/core/helpers/helper-form-templates.php:1044
2144
  #: inc/core/helpers/helper-misc.php:358
2145
  msgid "Japan"
2146
  msgstr ""
2147
 
2148
- #: inc/core/helpers/helper-form-templates.php:1045
2149
  #: inc/core/helpers/helper-misc.php:361
2150
  msgid "Kenya"
2151
  msgstr ""
2152
 
2153
- #: inc/core/helpers/helper-form-templates.php:1046
2154
  #: inc/core/helpers/helper-misc.php:366
2155
  msgid "Kyrgyzstan"
2156
  msgstr ""
2157
 
2158
- #: inc/core/helpers/helper-form-templates.php:1047
2159
  #: inc/core/helpers/helper-misc.php:285
2160
  msgid "Cambodia"
2161
  msgstr ""
2162
 
2163
- #: inc/core/helpers/helper-form-templates.php:1048
2164
  #: inc/core/helpers/helper-misc.php:362
2165
  msgid "Kiribati"
2166
  msgstr ""
2167
 
2168
- #: inc/core/helpers/helper-form-templates.php:1049
2169
  #: inc/core/helpers/helper-misc.php:297
2170
  msgid "Comoros"
2171
  msgstr ""
2172
 
2173
- #: inc/core/helpers/helper-form-templates.php:1050
2174
  #: inc/core/helpers/helper-misc.php:429
2175
  msgid "Saint Kitts and Nevis"
2176
  msgstr ""
2177
 
2178
- #: inc/core/helpers/helper-form-templates.php:1051
2179
  msgid "Korea Democratic Peoples Republic of"
2180
  msgstr ""
2181
 
2182
- #: inc/core/helpers/helper-form-templates.php:1052
2183
  msgid "Korea Republic of"
2184
  msgstr ""
2185
 
2186
- #: inc/core/helpers/helper-form-templates.php:1053
2187
  #: inc/core/helpers/helper-misc.php:365
2188
  msgid "Kuwait"
2189
  msgstr ""
2190
 
2191
- #: inc/core/helpers/helper-form-templates.php:1054
2192
  #: inc/core/helpers/helper-misc.php:289
2193
  msgid "Cayman Islands"
2194
  msgstr ""
2195
 
2196
- #: inc/core/helpers/helper-form-templates.php:1055
2197
  msgid "Lao Peoples Democratic Republic"
2198
  msgstr ""
2199
 
2200
- #: inc/core/helpers/helper-form-templates.php:1056
2201
  #: inc/core/helpers/helper-misc.php:369
2202
  msgid "Lebanon"
2203
  msgstr ""
2204
 
2205
- #: inc/core/helpers/helper-form-templates.php:1057
2206
  #: inc/core/helpers/helper-misc.php:430
2207
  msgid "Saint Lucia"
2208
  msgstr ""
2209
 
2210
- #: inc/core/helpers/helper-form-templates.php:1058
2211
  #: inc/core/helpers/helper-misc.php:373
2212
  msgid "Liechtenstein"
2213
  msgstr ""
2214
 
2215
- #: inc/core/helpers/helper-form-templates.php:1059
2216
  #: inc/core/helpers/helper-misc.php:447
2217
  msgid "Sri Lanka"
2218
  msgstr ""
2219
 
2220
- #: inc/core/helpers/helper-form-templates.php:1060
2221
  #: inc/core/helpers/helper-misc.php:371
2222
  msgid "Liberia"
2223
  msgstr ""
2224
 
2225
- #: inc/core/helpers/helper-form-templates.php:1061
2226
  #: inc/core/helpers/helper-misc.php:370
2227
  msgid "Lesotho"
2228
  msgstr ""
2229
 
2230
- #: inc/core/helpers/helper-form-templates.php:1062
2231
  #: inc/core/helpers/helper-misc.php:374
2232
  msgid "Lithuania"
2233
  msgstr ""
2234
 
2235
- #: inc/core/helpers/helper-form-templates.php:1063
2236
  #: inc/core/helpers/helper-misc.php:375
2237
  msgid "Luxembourg"
2238
  msgstr ""
2239
 
2240
- #: inc/core/helpers/helper-form-templates.php:1064
2241
  #: inc/core/helpers/helper-misc.php:368
2242
  msgid "Latvia"
2243
  msgstr ""
2244
 
2245
- #: inc/core/helpers/helper-form-templates.php:1065
2246
  #: inc/core/helpers/helper-misc.php:372
2247
  msgid "Libyan Arab Jamahiriya"
2248
  msgstr ""
2249
 
2250
- #: inc/core/helpers/helper-form-templates.php:1066
2251
  #: inc/core/helpers/helper-misc.php:395
2252
  msgid "Morocco"
2253
  msgstr ""
2254
 
2255
- #: inc/core/helpers/helper-form-templates.php:1067
2256
  #: inc/core/helpers/helper-misc.php:392
2257
  msgid "Monaco"
2258
  msgstr ""
2259
 
2260
- #: inc/core/helpers/helper-form-templates.php:1068
2261
  #: inc/core/helpers/helper-misc.php:391
2262
  msgid "Moldova, Republic of"
2263
  msgstr ""
2264
 
2265
- #: inc/core/helpers/helper-form-templates.php:1069
2266
  msgid "Montenegro"
2267
  msgstr ""
2268
 
2269
- #: inc/core/helpers/helper-form-templates.php:1070
2270
  #: inc/core/helpers/helper-misc.php:378
2271
  msgid "Madagascar"
2272
  msgstr ""
2273
 
2274
- #: inc/core/helpers/helper-form-templates.php:1071
2275
  #: inc/core/helpers/helper-misc.php:384
2276
  msgid "Marshall Islands"
2277
  msgstr ""
2278
 
2279
- #: inc/core/helpers/helper-form-templates.php:1072
2280
  #: inc/core/helpers/helper-misc.php:377
2281
  msgid "Macedonia, The Former Yugoslav Republic of"
2282
  msgstr ""
2283
 
2284
- #: inc/core/helpers/helper-form-templates.php:1073
2285
  #: inc/core/helpers/helper-misc.php:382
2286
  msgid "Mali"
2287
  msgstr ""
2288
 
2289
- #: inc/core/helpers/helper-form-templates.php:1074
2290
  #: inc/core/helpers/helper-misc.php:397
2291
  msgid "Myanmar"
2292
  msgstr ""
2293
 
2294
- #: inc/core/helpers/helper-form-templates.php:1075
2295
  #: inc/core/helpers/helper-misc.php:393
2296
  msgid "Mongolia"
2297
  msgstr ""
2298
 
2299
- #: inc/core/helpers/helper-form-templates.php:1076
2300
  #: inc/core/helpers/helper-misc.php:376
2301
  msgid "Macau"
2302
  msgstr ""
2303
 
2304
- #: inc/core/helpers/helper-form-templates.php:1077
2305
  #: inc/core/helpers/helper-misc.php:410
2306
  msgid "Northern Mariana Islands"
2307
  msgstr ""
2308
 
2309
- #: inc/core/helpers/helper-form-templates.php:1078
2310
  #: inc/core/helpers/helper-misc.php:386
2311
  msgid "Mauritania"
2312
  msgstr ""
2313
 
2314
- #: inc/core/helpers/helper-form-templates.php:1079
2315
  #: inc/core/helpers/helper-misc.php:394
2316
  msgid "Montserrat"
2317
  msgstr ""
2318
 
2319
- #: inc/core/helpers/helper-form-templates.php:1080
2320
  #: inc/core/helpers/helper-misc.php:383
2321
  msgid "Malta"
2322
  msgstr ""
2323
 
2324
- #: inc/core/helpers/helper-form-templates.php:1081
2325
  #: inc/core/helpers/helper-misc.php:387
2326
  msgid "Mauritius"
2327
  msgstr ""
2328
 
2329
- #: inc/core/helpers/helper-form-templates.php:1082
2330
  #: inc/core/helpers/helper-misc.php:381
2331
  msgid "Maldives"
2332
  msgstr ""
2333
 
2334
- #: inc/core/helpers/helper-form-templates.php:1083
2335
  #: inc/core/helpers/helper-misc.php:379
2336
  msgid "Malawi"
2337
  msgstr ""
2338
 
2339
- #: inc/core/helpers/helper-form-templates.php:1084
2340
  #: inc/core/helpers/helper-misc.php:389
2341
  msgid "Mexico"
2342
  msgstr ""
2343
 
2344
- #: inc/core/helpers/helper-form-templates.php:1085
2345
  #: inc/core/helpers/helper-misc.php:380
2346
  msgid "Malaysia"
2347
  msgstr ""
2348
 
2349
- #: inc/core/helpers/helper-form-templates.php:1086
2350
  #: inc/core/helpers/helper-misc.php:396
2351
  msgid "Mozambique"
2352
  msgstr ""
2353
 
2354
- #: inc/core/helpers/helper-form-templates.php:1087
2355
  #: inc/core/helpers/helper-misc.php:398
2356
  msgid "Namibia"
2357
  msgstr ""
2358
 
2359
- #: inc/core/helpers/helper-form-templates.php:1088
2360
  #: inc/core/helpers/helper-misc.php:403
2361
  msgid "New Caledonia"
2362
  msgstr ""
2363
 
2364
- #: inc/core/helpers/helper-form-templates.php:1089
2365
  #: inc/core/helpers/helper-misc.php:406
2366
  msgid "Niger"
2367
  msgstr ""
2368
 
2369
- #: inc/core/helpers/helper-form-templates.php:1090
2370
  #: inc/core/helpers/helper-misc.php:407
2371
  msgid "Nigeria"
2372
  msgstr ""
2373
 
2374
- #: inc/core/helpers/helper-form-templates.php:1091
2375
  #: inc/core/helpers/helper-misc.php:405
2376
  msgid "Nicaragua"
2377
  msgstr ""
2378
 
2379
- #: inc/core/helpers/helper-form-templates.php:1092
2380
  #: inc/core/helpers/helper-misc.php:401
2381
  msgid "Netherlands"
2382
  msgstr ""
2383
 
2384
- #: inc/core/helpers/helper-form-templates.php:1093
2385
  #: inc/core/helpers/helper-misc.php:411
2386
  msgid "Norway"
2387
  msgstr ""
2388
 
2389
- #: inc/core/helpers/helper-form-templates.php:1094
2390
  #: inc/core/helpers/helper-misc.php:400
2391
  msgid "Nepal"
2392
  msgstr ""
2393
 
2394
- #: inc/core/helpers/helper-form-templates.php:1095
2395
  #: inc/core/helpers/helper-misc.php:399
2396
  msgid "Nauru"
2397
  msgstr ""
2398
 
2399
- #: inc/core/helpers/helper-form-templates.php:1096
2400
  #: inc/core/helpers/helper-misc.php:408
2401
  msgid "Niue"
2402
  msgstr ""
2403
 
2404
- #: inc/core/helpers/helper-form-templates.php:1097
2405
  #: inc/core/helpers/helper-misc.php:404
2406
  msgid "New Zealand"
2407
  msgstr ""
2408
 
2409
- #: inc/core/helpers/helper-form-templates.php:1098
2410
  #: inc/core/helpers/helper-misc.php:412
2411
  msgid "Oman"
2412
  msgstr ""
2413
 
2414
- #: inc/core/helpers/helper-form-templates.php:1099
2415
  #: inc/core/helpers/helper-misc.php:415
2416
  msgid "Panama"
2417
  msgstr ""
2418
 
2419
- #: inc/core/helpers/helper-form-templates.php:1100
2420
  #: inc/core/helpers/helper-misc.php:418
2421
  msgid "Peru"
2422
  msgstr ""
2423
 
2424
- #: inc/core/helpers/helper-form-templates.php:1101
2425
  #: inc/core/helpers/helper-misc.php:326
2426
  msgid "French Polynesia"
2427
  msgstr ""
2428
 
2429
- #: inc/core/helpers/helper-form-templates.php:1102
2430
  #: inc/core/helpers/helper-misc.php:416
2431
  msgid "Papua New Guinea"
2432
  msgstr ""
2433
 
2434
- #: inc/core/helpers/helper-form-templates.php:1103
2435
  #: inc/core/helpers/helper-misc.php:419
2436
  msgid "Philippines"
2437
  msgstr ""
2438
 
2439
- #: inc/core/helpers/helper-form-templates.php:1104
2440
  #: inc/core/helpers/helper-misc.php:413
2441
  msgid "Pakistan"
2442
  msgstr ""
2443
 
2444
- #: inc/core/helpers/helper-form-templates.php:1105
2445
  #: inc/core/helpers/helper-misc.php:421
2446
  msgid "Poland"
2447
  msgstr ""
2448
 
2449
- #: inc/core/helpers/helper-form-templates.php:1106
2450
  msgid "Saint Pierre and Miquelon"
2451
  msgstr ""
2452
 
2453
- #: inc/core/helpers/helper-form-templates.php:1107
2454
  #: inc/core/helpers/helper-misc.php:420
2455
  msgid "Pitcairn"
2456
  msgstr ""
2457
 
2458
- #: inc/core/helpers/helper-form-templates.php:1108
2459
  #: inc/core/helpers/helper-misc.php:422
2460
  msgid "Portugal"
2461
  msgstr ""
2462
 
2463
- #: inc/core/helpers/helper-form-templates.php:1109
2464
  #: inc/core/helpers/helper-misc.php:414
2465
  msgid "Palau"
2466
  msgstr ""
2467
 
2468
- #: inc/core/helpers/helper-form-templates.php:1110
2469
  #: inc/core/helpers/helper-misc.php:417
2470
  msgid "Paraguay"
2471
  msgstr ""
2472
 
2473
- #: inc/core/helpers/helper-form-templates.php:1111
2474
  #: inc/core/helpers/helper-misc.php:424
2475
  msgid "Qatar"
2476
  msgstr ""
2477
 
2478
- #: inc/core/helpers/helper-form-templates.php:1112
2479
  #: inc/core/helpers/helper-misc.php:426
2480
  msgid "Romania"
2481
  msgstr ""
2482
 
2483
- #: inc/core/helpers/helper-form-templates.php:1113
2484
  msgid "Serbia"
2485
  msgstr ""
2486
 
2487
- #: inc/core/helpers/helper-form-templates.php:1114
2488
  #: inc/core/helpers/helper-misc.php:427
2489
  msgid "Russian Federation"
2490
  msgstr ""
2491
 
2492
- #: inc/core/helpers/helper-form-templates.php:1115
2493
  #: inc/core/helpers/helper-misc.php:428
2494
  msgid "Rwanda"
2495
  msgstr ""
2496
 
2497
- #: inc/core/helpers/helper-form-templates.php:1116
2498
  #: inc/core/helpers/helper-misc.php:435
2499
  msgid "Saudi Arabia"
2500
  msgstr ""
2501
 
2502
- #: inc/core/helpers/helper-form-templates.php:1117
2503
  #: inc/core/helpers/helper-misc.php:442
2504
  msgid "Solomon Islands"
2505
  msgstr ""
2506
 
2507
- #: inc/core/helpers/helper-form-templates.php:1118
2508
  #: inc/core/helpers/helper-misc.php:437
2509
  msgid "Seychelles"
2510
  msgstr ""
2511
 
2512
- #: inc/core/helpers/helper-form-templates.php:1119
2513
  #: inc/core/helpers/helper-misc.php:450
2514
  msgid "Sudan"
2515
  msgstr ""
2516
 
2517
- #: inc/core/helpers/helper-form-templates.php:1120
2518
  #: inc/core/helpers/helper-misc.php:454
2519
  msgid "Sweden"
2520
  msgstr ""
2521
 
2522
- #: inc/core/helpers/helper-form-templates.php:1121
2523
  #: inc/core/helpers/helper-misc.php:439
2524
  msgid "Singapore"
2525
  msgstr ""
2526
 
2527
- #: inc/core/helpers/helper-form-templates.php:1122
2528
  msgid "Saint Helena"
2529
  msgstr ""
2530
 
2531
- #: inc/core/helpers/helper-form-templates.php:1123
2532
  #: inc/core/helpers/helper-misc.php:441
2533
  msgid "Slovenia"
2534
  msgstr ""
2535
 
2536
- #: inc/core/helpers/helper-form-templates.php:1124
2537
  msgid "Slovakia"
2538
  msgstr ""
2539
 
2540
- #: inc/core/helpers/helper-form-templates.php:1125
2541
  #: inc/core/helpers/helper-misc.php:438
2542
  msgid "Sierra Leone"
2543
  msgstr ""
2544
 
2545
- #: inc/core/helpers/helper-form-templates.php:1126
2546
  #: inc/core/helpers/helper-misc.php:433
2547
  msgid "San Marino"
2548
  msgstr ""
2549
 
2550
- #: inc/core/helpers/helper-form-templates.php:1127
2551
  #: inc/core/helpers/helper-misc.php:436
2552
  msgid "Senegal"
2553
  msgstr ""
2554
 
2555
- #: inc/core/helpers/helper-form-templates.php:1128
2556
  #: inc/core/helpers/helper-misc.php:443
2557
  msgid "Somalia"
2558
  msgstr ""
2559
 
2560
- #: inc/core/helpers/helper-form-templates.php:1129
2561
  #: inc/core/helpers/helper-misc.php:451
2562
  msgid "Suriname"
2563
  msgstr ""
2564
 
2565
- #: inc/core/helpers/helper-form-templates.php:1130
2566
  #: inc/core/helpers/helper-misc.php:434
2567
  msgid "Sao Tome and Principe"
2568
  msgstr ""
2569
 
2570
- #: inc/core/helpers/helper-form-templates.php:1131
2571
  #: inc/core/helpers/helper-misc.php:314
2572
  msgid "El Salvador"
2573
  msgstr ""
2574
 
2575
- #: inc/core/helpers/helper-form-templates.php:1132
2576
  #: inc/core/helpers/helper-misc.php:456
2577
  msgid "Syrian Arab Republic"
2578
  msgstr ""
2579
 
2580
- #: inc/core/helpers/helper-form-templates.php:1133
2581
  #: inc/core/helpers/helper-misc.php:453
2582
  msgid "Swaziland"
2583
  msgstr ""
2584
 
2585
- #: inc/core/helpers/helper-form-templates.php:1134
2586
  #: inc/core/helpers/helper-misc.php:468
2587
  msgid "Turks and Caicos Islands"
2588
  msgstr ""
2589
 
2590
- #: inc/core/helpers/helper-form-templates.php:1135
2591
  #: inc/core/helpers/helper-misc.php:291
2592
  msgid "Chad"
2593
  msgstr ""
2594
 
2595
- #: inc/core/helpers/helper-form-templates.php:1136
2596
  #: inc/core/helpers/helper-misc.php:461
2597
  msgid "Togo"
2598
  msgstr ""
2599
 
2600
- #: inc/core/helpers/helper-form-templates.php:1137
2601
  #: inc/core/helpers/helper-misc.php:460
2602
  msgid "Thailand"
2603
  msgstr ""
2604
 
2605
- #: inc/core/helpers/helper-form-templates.php:1138
2606
  #: inc/core/helpers/helper-misc.php:458
2607
  msgid "Tajikistan"
2608
  msgstr ""
2609
 
2610
- #: inc/core/helpers/helper-form-templates.php:1139
2611
  #: inc/core/helpers/helper-misc.php:462
2612
  msgid "Tokelau"
2613
  msgstr ""
2614
 
2615
- #: inc/core/helpers/helper-form-templates.php:1140
2616
  msgid "Timor-leste"
2617
  msgstr ""
2618
 
2619
- #: inc/core/helpers/helper-form-templates.php:1141
2620
  #: inc/core/helpers/helper-misc.php:467
2621
  msgid "Turkmenistan"
2622
  msgstr ""
2623
 
2624
- #: inc/core/helpers/helper-form-templates.php:1142
2625
  #: inc/core/helpers/helper-misc.php:465
2626
  msgid "Tunisia"
2627
  msgstr ""
2628
 
2629
- #: inc/core/helpers/helper-form-templates.php:1143
2630
  #: inc/core/helpers/helper-misc.php:463
2631
  msgid "Tonga"
2632
  msgstr ""
2633
 
2634
- #: inc/core/helpers/helper-form-templates.php:1144
2635
  #: inc/core/helpers/helper-misc.php:466
2636
  msgid "Turkey"
2637
  msgstr ""
2638
 
2639
- #: inc/core/helpers/helper-form-templates.php:1145
2640
  #: inc/core/helpers/helper-misc.php:464
2641
  msgid "Trinidad and Tobago"
2642
  msgstr ""
2643
 
2644
- #: inc/core/helpers/helper-form-templates.php:1146
2645
  #: inc/core/helpers/helper-misc.php:469
2646
  msgid "Tuvalu"
2647
  msgstr ""
2648
 
2649
- #: inc/core/helpers/helper-form-templates.php:1147
2650
  #: inc/core/helpers/helper-misc.php:457
2651
  msgid "Taiwan, Province of China"
2652
  msgstr ""
2653
 
2654
- #: inc/core/helpers/helper-form-templates.php:1148
2655
  #: inc/core/helpers/helper-misc.php:459
2656
  msgid "Tanzania, United Republic of"
2657
  msgstr ""
2658
 
2659
- #: inc/core/helpers/helper-form-templates.php:1149
2660
  #: inc/core/helpers/helper-misc.php:471
2661
  msgid "Ukraine"
2662
  msgstr ""
2663
 
2664
- #: inc/core/helpers/helper-form-templates.php:1150
2665
  #: inc/core/helpers/helper-misc.php:470
2666
  msgid "Uganda"
2667
  msgstr ""
2668
 
2669
- #: inc/core/helpers/helper-form-templates.php:1151
2670
  #: inc/core/helpers/helper-misc.php:474
2671
  msgid "United States"
2672
  msgstr ""
2673
 
2674
- #: inc/core/helpers/helper-form-templates.php:1152
2675
  #: inc/core/helpers/helper-misc.php:476
2676
  msgid "Uruguay"
2677
  msgstr ""
2678
 
2679
- #: inc/core/helpers/helper-form-templates.php:1153
2680
  #: inc/core/helpers/helper-misc.php:477
2681
  msgid "Uzbekistan"
2682
  msgstr ""
2683
 
2684
- #: inc/core/helpers/helper-form-templates.php:1154
2685
  #: inc/core/helpers/helper-misc.php:431
2686
  msgid "Saint Vincent and the Grenadines"
2687
  msgstr ""
2688
 
2689
- #: inc/core/helpers/helper-form-templates.php:1155
2690
  #: inc/core/helpers/helper-misc.php:479
2691
  msgid "Venezuela"
2692
  msgstr ""
2693
 
2694
- #: inc/core/helpers/helper-form-templates.php:1156
2695
  msgid "Virgin Islands, British"
2696
  msgstr ""
2697
 
2698
- #: inc/core/helpers/helper-form-templates.php:1157
2699
  msgid "Virgin Islands, U.S."
2700
  msgstr ""
2701
 
2702
- #: inc/core/helpers/helper-form-templates.php:1158
2703
  #: inc/core/helpers/helper-misc.php:480
2704
  msgid "Vietnam"
2705
  msgstr ""
2706
 
2707
- #: inc/core/helpers/helper-form-templates.php:1159
2708
  #: inc/core/helpers/helper-misc.php:478
2709
  msgid "Vanuatu"
2710
  msgstr ""
2711
 
2712
- #: inc/core/helpers/helper-form-templates.php:1160
2713
  msgid "Wallis and Futuna"
2714
  msgstr ""
2715
 
2716
- #: inc/core/helpers/helper-form-templates.php:1161
2717
  #: inc/core/helpers/helper-misc.php:432
2718
  msgid "Samoa"
2719
  msgstr ""
2720
 
2721
- #: inc/core/helpers/helper-form-templates.php:1162
2722
  #: inc/core/helpers/helper-misc.php:485
2723
  msgid "Yemen"
2724
  msgstr ""
2725
 
2726
- #: inc/core/helpers/helper-form-templates.php:1163
2727
  #: inc/core/helpers/helper-misc.php:388
2728
  msgid "Mayotte"
2729
  msgstr ""
2730
 
2731
- #: inc/core/helpers/helper-form-templates.php:1164
2732
  #: inc/core/helpers/helper-misc.php:444
2733
  msgid "South Africa"
2734
  msgstr ""
2735
 
2736
- #: inc/core/helpers/helper-form-templates.php:1165
2737
  #: inc/core/helpers/helper-misc.php:487
2738
  msgid "Zambia"
2739
  msgstr ""
2740
 
2741
- #: inc/core/helpers/helper-form-templates.php:1166
2742
  #: inc/core/helpers/helper-misc.php:488
2743
  msgid "Zimbabwe"
2744
  msgstr ""
2
  # This file is distributed under the same license as the HappyForms package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: HappyForms 1.7.2\n"
6
  "Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
7
+ "POT-Creation-Date: 2019-02-28 12:05:44+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
1618
  msgid "Fetching location…"
1619
  msgstr ""
1620
 
1621
+ #: inc/core/helpers/helper-form-templates.php:905
1622
  msgid "January"
1623
  msgstr ""
1624
 
1625
+ #: inc/core/helpers/helper-form-templates.php:906
1626
  msgid "February"
1627
  msgstr ""
1628
 
1629
+ #: inc/core/helpers/helper-form-templates.php:907
1630
  msgid "March"
1631
  msgstr ""
1632
 
1633
+ #: inc/core/helpers/helper-form-templates.php:908
1634
  msgid "April"
1635
  msgstr ""
1636
 
1637
+ #: inc/core/helpers/helper-form-templates.php:909
1638
  msgid "May"
1639
  msgstr ""
1640
 
1641
+ #: inc/core/helpers/helper-form-templates.php:910
1642
  msgid "June"
1643
  msgstr ""
1644
 
1645
+ #: inc/core/helpers/helper-form-templates.php:911
1646
  msgid "July"
1647
  msgstr ""
1648
 
1649
+ #: inc/core/helpers/helper-form-templates.php:912
1650
  msgid "August"
1651
  msgstr ""
1652
 
1653
+ #: inc/core/helpers/helper-form-templates.php:913
1654
  msgid "September"
1655
  msgstr ""
1656
 
1657
+ #: inc/core/helpers/helper-form-templates.php:914
1658
  msgid "October"
1659
  msgstr ""
1660
 
1661
+ #: inc/core/helpers/helper-form-templates.php:915
1662
  msgid "November"
1663
  msgstr ""
1664
 
1665
+ #: inc/core/helpers/helper-form-templates.php:916
1666
  msgid "December"
1667
  msgstr ""
1668
 
1669
+ #: inc/core/helpers/helper-form-templates.php:957
1670
  #: inc/core/helpers/helper-misc.php:254
1671
  msgid "Andorra"
1672
  msgstr ""
1673
 
1674
+ #: inc/core/helpers/helper-form-templates.php:958
1675
  #: inc/core/helpers/helper-misc.php:472
1676
  msgid "United Arab Emirates"
1677
  msgstr ""
1678
 
1679
+ #: inc/core/helpers/helper-form-templates.php:959
1680
  #: inc/core/helpers/helper-misc.php:250
1681
  msgid "Afghanistan"
1682
  msgstr ""
1683
 
1684
+ #: inc/core/helpers/helper-form-templates.php:960
1685
  #: inc/core/helpers/helper-misc.php:258
1686
  msgid "Antigua and Barbuda"
1687
  msgstr ""
1688
 
1689
+ #: inc/core/helpers/helper-form-templates.php:961
1690
  #: inc/core/helpers/helper-misc.php:256
1691
  msgid "Anguilla"
1692
  msgstr ""
1693
 
1694
+ #: inc/core/helpers/helper-form-templates.php:962
1695
  #: inc/core/helpers/helper-misc.php:251
1696
  msgid "Albania"
1697
  msgstr ""
1698
 
1699
+ #: inc/core/helpers/helper-form-templates.php:963
1700
  #: inc/core/helpers/helper-misc.php:260
1701
  msgid "Armenia"
1702
  msgstr ""
1703
 
1704
+ #: inc/core/helpers/helper-form-templates.php:964
1705
  #: inc/core/helpers/helper-misc.php:255
1706
  msgid "Angola"
1707
  msgstr ""
1708
 
1709
+ #: inc/core/helpers/helper-form-templates.php:965
1710
  #: inc/core/helpers/helper-misc.php:257
1711
  msgid "Antarctica"
1712
  msgstr ""
1713
 
1714
+ #: inc/core/helpers/helper-form-templates.php:966
1715
  #: inc/core/helpers/helper-misc.php:259
1716
  msgid "Argentina"
1717
  msgstr ""
1718
 
1719
+ #: inc/core/helpers/helper-form-templates.php:967
1720
  #: inc/core/helpers/helper-misc.php:253
1721
  msgid "American Samoa"
1722
  msgstr ""
1723
 
1724
+ #: inc/core/helpers/helper-form-templates.php:968
1725
  #: inc/core/helpers/helper-misc.php:263
1726
  msgid "Austria"
1727
  msgstr ""
1728
 
1729
+ #: inc/core/helpers/helper-form-templates.php:969
1730
  #: inc/core/helpers/helper-misc.php:262
1731
  msgid "Australia"
1732
  msgstr ""
1733
 
1734
+ #: inc/core/helpers/helper-form-templates.php:970
1735
  #: inc/core/helpers/helper-misc.php:261
1736
  msgid "Aruba"
1737
  msgstr ""
1738
 
1739
+ #: inc/core/helpers/helper-form-templates.php:971
1740
  #: inc/core/helpers/helper-misc.php:264
1741
  msgid "Azerbaijan"
1742
  msgstr ""
1743
 
1744
+ #: inc/core/helpers/helper-form-templates.php:972
1745
  msgid "Bosnia and Herzegovina"
1746
  msgstr ""
1747
 
1748
+ #: inc/core/helpers/helper-form-templates.php:973
1749
  #: inc/core/helpers/helper-misc.php:268
1750
  msgid "Barbados"
1751
  msgstr ""
1752
 
1753
+ #: inc/core/helpers/helper-form-templates.php:974
1754
  #: inc/core/helpers/helper-misc.php:267
1755
  msgid "Bangladesh"
1756
  msgstr ""
1757
 
1758
+ #: inc/core/helpers/helper-form-templates.php:975
1759
  #: inc/core/helpers/helper-misc.php:270
1760
  msgid "Belgium"
1761
  msgstr ""
1762
 
1763
+ #: inc/core/helpers/helper-form-templates.php:976
1764
  #: inc/core/helpers/helper-misc.php:283
1765
  msgid "Burkina Faso"
1766
  msgstr ""
1767
 
1768
+ #: inc/core/helpers/helper-form-templates.php:977
1769
  #: inc/core/helpers/helper-misc.php:282
1770
  msgid "Bulgaria"
1771
  msgstr ""
1772
 
1773
+ #: inc/core/helpers/helper-form-templates.php:978
1774
  #: inc/core/helpers/helper-misc.php:266
1775
  msgid "Bahrain"
1776
  msgstr ""
1777
 
1778
+ #: inc/core/helpers/helper-form-templates.php:979
1779
  #: inc/core/helpers/helper-misc.php:284
1780
  msgid "Burundi"
1781
  msgstr ""
1782
 
1783
+ #: inc/core/helpers/helper-form-templates.php:980
1784
  #: inc/core/helpers/helper-misc.php:272
1785
  msgid "Benin"
1786
  msgstr ""
1787
 
1788
+ #: inc/core/helpers/helper-form-templates.php:981
1789
  msgid "Saint Barthelemy"
1790
  msgstr ""
1791
 
1792
+ #: inc/core/helpers/helper-form-templates.php:982
1793
  #: inc/core/helpers/helper-misc.php:273
1794
  msgid "Bermuda"
1795
  msgstr ""
1796
 
1797
+ #: inc/core/helpers/helper-form-templates.php:983
1798
  #: inc/core/helpers/helper-misc.php:281
1799
  msgid "Brunei Darussalam"
1800
  msgstr ""
1801
 
1802
+ #: inc/core/helpers/helper-form-templates.php:984
1803
  #: inc/core/helpers/helper-misc.php:275
1804
  msgid "Bolivia"
1805
  msgstr ""
1806
 
1807
+ #: inc/core/helpers/helper-form-templates.php:985
1808
  #: inc/core/helpers/helper-misc.php:279
1809
  msgid "Brazil"
1810
  msgstr ""
1811
 
1812
+ #: inc/core/helpers/helper-form-templates.php:986
1813
  #: inc/core/helpers/helper-misc.php:265
1814
  msgid "Bahamas"
1815
  msgstr ""
1816
 
1817
+ #: inc/core/helpers/helper-form-templates.php:987
1818
  #: inc/core/helpers/helper-misc.php:274
1819
  msgid "Bhutan"
1820
  msgstr ""
1821
 
1822
+ #: inc/core/helpers/helper-form-templates.php:988
1823
  #: inc/core/helpers/helper-misc.php:277
1824
  msgid "Botswana"
1825
  msgstr ""
1826
 
1827
+ #: inc/core/helpers/helper-form-templates.php:989
1828
  #: inc/core/helpers/helper-misc.php:269
1829
  msgid "Belarus"
1830
  msgstr ""
1831
 
1832
+ #: inc/core/helpers/helper-form-templates.php:990
1833
  #: inc/core/helpers/helper-misc.php:271
1834
  msgid "Belize"
1835
  msgstr ""
1836
 
1837
+ #: inc/core/helpers/helper-form-templates.php:991
1838
  #: inc/core/helpers/helper-misc.php:287
1839
  msgid "Canada"
1840
  msgstr ""
1841
 
1842
+ #: inc/core/helpers/helper-form-templates.php:992
1843
  msgid "Congo, The Democratic Republic of the"
1844
  msgstr ""
1845
 
1846
+ #: inc/core/helpers/helper-form-templates.php:993
1847
  #: inc/core/helpers/helper-misc.php:290
1848
  msgid "Central African Republic"
1849
  msgstr ""
1850
 
1851
+ #: inc/core/helpers/helper-form-templates.php:994
1852
  #: inc/core/helpers/helper-misc.php:298
1853
  msgid "Congo"
1854
  msgstr ""
1855
 
1856
+ #: inc/core/helpers/helper-form-templates.php:995
1857
  #: inc/core/helpers/helper-misc.php:455
1858
  msgid "Switzerland"
1859
  msgstr ""
1860
 
1861
+ #: inc/core/helpers/helper-form-templates.php:996
1862
  #: inc/core/helpers/helper-misc.php:300
1863
  msgid "Cook Islands"
1864
  msgstr ""
1865
 
1866
+ #: inc/core/helpers/helper-form-templates.php:997
1867
  #: inc/core/helpers/helper-misc.php:292
1868
  msgid "Chile"
1869
  msgstr ""
1870
 
1871
+ #: inc/core/helpers/helper-form-templates.php:998
1872
  #: inc/core/helpers/helper-misc.php:286
1873
  msgid "Cameroon"
1874
  msgstr ""
1875
 
1876
+ #: inc/core/helpers/helper-form-templates.php:999
1877
  #: inc/core/helpers/helper-misc.php:293
1878
  msgid "China"
1879
  msgstr ""
1880
 
1881
+ #: inc/core/helpers/helper-form-templates.php:1000
1882
  #: inc/core/helpers/helper-misc.php:296
1883
  msgid "Colombia"
1884
  msgstr ""
1885
 
1886
+ #: inc/core/helpers/helper-form-templates.php:1001
1887
  #: inc/core/helpers/helper-misc.php:301
1888
  msgid "Costa Rica"
1889
  msgstr ""
1890
 
1891
+ #: inc/core/helpers/helper-form-templates.php:1002
1892
  #: inc/core/helpers/helper-misc.php:304
1893
  msgid "Cuba"
1894
  msgstr ""
1895
 
1896
+ #: inc/core/helpers/helper-form-templates.php:1003
1897
  #: inc/core/helpers/helper-misc.php:288
1898
  msgid "Cape Verde"
1899
  msgstr ""
1900
 
1901
+ #: inc/core/helpers/helper-form-templates.php:1004
1902
  #: inc/core/helpers/helper-misc.php:305
1903
  msgid "Cyprus"
1904
  msgstr ""
1905
 
1906
+ #: inc/core/helpers/helper-form-templates.php:1005
1907
  #: inc/core/helpers/helper-misc.php:306
1908
  msgid "Czech Republic"
1909
  msgstr ""
1910
 
1911
+ #: inc/core/helpers/helper-form-templates.php:1006
1912
  #: inc/core/helpers/helper-misc.php:331
1913
  msgid "Germany"
1914
  msgstr ""
1915
 
1916
+ #: inc/core/helpers/helper-form-templates.php:1007
1917
  #: inc/core/helpers/helper-misc.php:308
1918
  msgid "Djibouti"
1919
  msgstr ""
1920
 
1921
+ #: inc/core/helpers/helper-form-templates.php:1008
1922
  #: inc/core/helpers/helper-misc.php:307
1923
  msgid "Denmark"
1924
  msgstr ""
1925
 
1926
+ #: inc/core/helpers/helper-form-templates.php:1009
1927
  #: inc/core/helpers/helper-misc.php:309
1928
  msgid "Dominica"
1929
  msgstr ""
1930
 
1931
+ #: inc/core/helpers/helper-form-templates.php:1010
1932
  #: inc/core/helpers/helper-misc.php:310
1933
  msgid "Dominican Republic"
1934
  msgstr ""
1935
 
1936
+ #: inc/core/helpers/helper-form-templates.php:1011
1937
  #: inc/core/helpers/helper-misc.php:252
1938
  msgid "Algeria"
1939
  msgstr ""
1940
 
1941
+ #: inc/core/helpers/helper-form-templates.php:1012
1942
  #: inc/core/helpers/helper-misc.php:312
1943
  msgid "Ecuador"
1944
  msgstr ""
1945
 
1946
+ #: inc/core/helpers/helper-form-templates.php:1013
1947
  #: inc/core/helpers/helper-misc.php:317
1948
  msgid "Estonia"
1949
  msgstr ""
1950
 
1951
+ #: inc/core/helpers/helper-form-templates.php:1014
1952
  #: inc/core/helpers/helper-misc.php:313
1953
  msgid "Egypt"
1954
  msgstr ""
1955
 
1956
+ #: inc/core/helpers/helper-form-templates.php:1015
1957
  #: inc/core/helpers/helper-misc.php:316
1958
  msgid "Eritrea"
1959
  msgstr ""
1960
 
1961
+ #: inc/core/helpers/helper-form-templates.php:1016
1962
  #: inc/core/helpers/helper-misc.php:446
1963
  msgid "Spain"
1964
  msgstr ""
1965
 
1966
+ #: inc/core/helpers/helper-form-templates.php:1017
1967
  #: inc/core/helpers/helper-misc.php:318
1968
  msgid "Ethiopia"
1969
  msgstr ""
1970
 
1971
+ #: inc/core/helpers/helper-form-templates.php:1018
1972
  #: inc/core/helpers/helper-misc.php:322
1973
  msgid "Finland"
1974
  msgstr ""
1975
 
1976
+ #: inc/core/helpers/helper-form-templates.php:1019
1977
  #: inc/core/helpers/helper-misc.php:321
1978
  msgid "Fiji"
1979
  msgstr ""
1980
 
1981
+ #: inc/core/helpers/helper-form-templates.php:1020
1982
  #: inc/core/helpers/helper-misc.php:319
1983
  msgid "Falkland Islands (Malvinas)"
1984
  msgstr ""
1985
 
1986
+ #: inc/core/helpers/helper-form-templates.php:1021
1987
  #: inc/core/helpers/helper-misc.php:390
1988
  msgid "Micronesia, Federated States of"
1989
  msgstr ""
1990
 
1991
+ #: inc/core/helpers/helper-form-templates.php:1022
1992
  #: inc/core/helpers/helper-misc.php:320
1993
  msgid "Faroe Islands"
1994
  msgstr ""
1995
 
1996
+ #: inc/core/helpers/helper-form-templates.php:1023
1997
  #: inc/core/helpers/helper-misc.php:323
1998
  msgid "France"
1999
  msgstr ""
2000
 
2001
+ #: inc/core/helpers/helper-form-templates.php:1024
2002
  #: inc/core/helpers/helper-misc.php:328
2003
  msgid "Gabon"
2004
  msgstr ""
2005
 
2006
+ #: inc/core/helpers/helper-form-templates.php:1025
2007
  #: inc/core/helpers/helper-misc.php:473
2008
  msgid "United Kingdom"
2009
  msgstr ""
2010
 
2011
+ #: inc/core/helpers/helper-form-templates.php:1026
2012
  #: inc/core/helpers/helper-misc.php:336
2013
  msgid "Grenada"
2014
  msgstr ""
2015
 
2016
+ #: inc/core/helpers/helper-form-templates.php:1027
2017
  #: inc/core/helpers/helper-misc.php:330
2018
  msgid "Georgia"
2019
  msgstr ""
2020
 
2021
+ #: inc/core/helpers/helper-form-templates.php:1028
2022
  #: inc/core/helpers/helper-misc.php:332
2023
  msgid "Ghana"
2024
  msgstr ""
2025
 
2026
+ #: inc/core/helpers/helper-form-templates.php:1029
2027
  #: inc/core/helpers/helper-misc.php:333
2028
  msgid "Gibraltar"
2029
  msgstr ""
2030
 
2031
+ #: inc/core/helpers/helper-form-templates.php:1030
2032
  #: inc/core/helpers/helper-misc.php:335
2033
  msgid "Greenland"
2034
  msgstr ""
2035
 
2036
+ #: inc/core/helpers/helper-form-templates.php:1031
2037
  #: inc/core/helpers/helper-misc.php:329
2038
  msgid "Gambia"
2039
  msgstr ""
2040
 
2041
+ #: inc/core/helpers/helper-form-templates.php:1032
2042
  #: inc/core/helpers/helper-misc.php:340
2043
  msgid "Guinea"
2044
  msgstr ""
2045
 
2046
+ #: inc/core/helpers/helper-form-templates.php:1033
2047
  #: inc/core/helpers/helper-misc.php:334
2048
  msgid "Greece"
2049
  msgstr ""
2050
 
2051
+ #: inc/core/helpers/helper-form-templates.php:1034
2052
  #: inc/core/helpers/helper-misc.php:339
2053
  msgid "Guatemala"
2054
  msgstr ""
2055
 
2056
+ #: inc/core/helpers/helper-form-templates.php:1035
2057
  #: inc/core/helpers/helper-misc.php:338
2058
  msgid "Guam"
2059
  msgstr ""
2060
 
2061
+ #: inc/core/helpers/helper-form-templates.php:1036
2062
  msgid "Guinea-bissau"
2063
  msgstr ""
2064
 
2065
+ #: inc/core/helpers/helper-form-templates.php:1037
2066
  #: inc/core/helpers/helper-misc.php:342
2067
  msgid "Guyana"
2068
  msgstr ""
2069
 
2070
+ #: inc/core/helpers/helper-form-templates.php:1038
2071
  #: inc/core/helpers/helper-misc.php:347
2072
  msgid "Hong Kong"
2073
  msgstr ""
2074
 
2075
+ #: inc/core/helpers/helper-form-templates.php:1039
2076
  #: inc/core/helpers/helper-misc.php:346
2077
  msgid "Honduras"
2078
  msgstr ""
2079
 
2080
+ #: inc/core/helpers/helper-form-templates.php:1040
2081
  msgid "Croatia"
2082
  msgstr ""
2083
 
2084
+ #: inc/core/helpers/helper-form-templates.php:1041
2085
  #: inc/core/helpers/helper-misc.php:343
2086
  msgid "Haiti"
2087
  msgstr ""
2088
 
2089
+ #: inc/core/helpers/helper-form-templates.php:1042
2090
  #: inc/core/helpers/helper-misc.php:348
2091
  msgid "Hungary"
2092
  msgstr ""
2093
 
2094
+ #: inc/core/helpers/helper-form-templates.php:1043
2095
  #: inc/core/helpers/helper-misc.php:351
2096
  msgid "Indonesia"
2097
  msgstr ""
2098
 
2099
+ #: inc/core/helpers/helper-form-templates.php:1044
2100
  #: inc/core/helpers/helper-misc.php:354
2101
  msgid "Ireland"
2102
  msgstr ""
2103
 
2104
+ #: inc/core/helpers/helper-form-templates.php:1045
2105
  #: inc/core/helpers/helper-misc.php:355
2106
  msgid "Israel"
2107
  msgstr ""
2108
 
2109
+ #: inc/core/helpers/helper-form-templates.php:1046
2110
  #: inc/core/helpers/helper-misc.php:350
2111
  msgid "India"
2112
  msgstr ""
2113
 
2114
+ #: inc/core/helpers/helper-form-templates.php:1047
2115
  #: inc/core/helpers/helper-misc.php:353
2116
  msgid "Iraq"
2117
  msgstr ""
2118
 
2119
+ #: inc/core/helpers/helper-form-templates.php:1048
2120
  msgid "Iran, Islamic Republic of"
2121
  msgstr ""
2122
 
2123
+ #: inc/core/helpers/helper-form-templates.php:1049
2124
  #: inc/core/helpers/helper-misc.php:349
2125
  msgid "Iceland"
2126
  msgstr ""
2127
 
2128
+ #: inc/core/helpers/helper-form-templates.php:1050
2129
  #: inc/core/helpers/helper-misc.php:356
2130
  msgid "Italy"
2131
  msgstr ""
2132
 
2133
+ #: inc/core/helpers/helper-form-templates.php:1051
2134
  #: inc/core/helpers/helper-misc.php:357
2135
  msgid "Jamaica"
2136
  msgstr ""
2137
 
2138
+ #: inc/core/helpers/helper-form-templates.php:1052
2139
  #: inc/core/helpers/helper-misc.php:359
2140
  msgid "Jordan"
2141
  msgstr ""
2142
 
2143
+ #: inc/core/helpers/helper-form-templates.php:1053
2144
  #: inc/core/helpers/helper-misc.php:358
2145
  msgid "Japan"
2146
  msgstr ""
2147
 
2148
+ #: inc/core/helpers/helper-form-templates.php:1054
2149
  #: inc/core/helpers/helper-misc.php:361
2150
  msgid "Kenya"
2151
  msgstr ""
2152
 
2153
+ #: inc/core/helpers/helper-form-templates.php:1055
2154
  #: inc/core/helpers/helper-misc.php:366
2155
  msgid "Kyrgyzstan"
2156
  msgstr ""
2157
 
2158
+ #: inc/core/helpers/helper-form-templates.php:1056
2159
  #: inc/core/helpers/helper-misc.php:285
2160
  msgid "Cambodia"
2161
  msgstr ""
2162
 
2163
+ #: inc/core/helpers/helper-form-templates.php:1057
2164
  #: inc/core/helpers/helper-misc.php:362
2165
  msgid "Kiribati"
2166
  msgstr ""
2167
 
2168
+ #: inc/core/helpers/helper-form-templates.php:1058
2169
  #: inc/core/helpers/helper-misc.php:297
2170
  msgid "Comoros"
2171
  msgstr ""
2172
 
2173
+ #: inc/core/helpers/helper-form-templates.php:1059
2174
  #: inc/core/helpers/helper-misc.php:429
2175
  msgid "Saint Kitts and Nevis"
2176
  msgstr ""
2177
 
2178
+ #: inc/core/helpers/helper-form-templates.php:1060
2179
  msgid "Korea Democratic Peoples Republic of"
2180
  msgstr ""
2181
 
2182
+ #: inc/core/helpers/helper-form-templates.php:1061
2183
  msgid "Korea Republic of"
2184
  msgstr ""
2185
 
2186
+ #: inc/core/helpers/helper-form-templates.php:1062
2187
  #: inc/core/helpers/helper-misc.php:365
2188
  msgid "Kuwait"
2189
  msgstr ""
2190
 
2191
+ #: inc/core/helpers/helper-form-templates.php:1063
2192
  #: inc/core/helpers/helper-misc.php:289
2193
  msgid "Cayman Islands"
2194
  msgstr ""
2195
 
2196
+ #: inc/core/helpers/helper-form-templates.php:1064
2197
  msgid "Lao Peoples Democratic Republic"
2198
  msgstr ""
2199
 
2200
+ #: inc/core/helpers/helper-form-templates.php:1065
2201
  #: inc/core/helpers/helper-misc.php:369
2202
  msgid "Lebanon"
2203
  msgstr ""
2204
 
2205
+ #: inc/core/helpers/helper-form-templates.php:1066
2206
  #: inc/core/helpers/helper-misc.php:430
2207
  msgid "Saint Lucia"
2208
  msgstr ""
2209
 
2210
+ #: inc/core/helpers/helper-form-templates.php:1067
2211
  #: inc/core/helpers/helper-misc.php:373
2212
  msgid "Liechtenstein"
2213
  msgstr ""
2214
 
2215
+ #: inc/core/helpers/helper-form-templates.php:1068
2216
  #: inc/core/helpers/helper-misc.php:447
2217
  msgid "Sri Lanka"
2218
  msgstr ""
2219
 
2220
+ #: inc/core/helpers/helper-form-templates.php:1069
2221
  #: inc/core/helpers/helper-misc.php:371
2222
  msgid "Liberia"
2223
  msgstr ""
2224
 
2225
+ #: inc/core/helpers/helper-form-templates.php:1070
2226
  #: inc/core/helpers/helper-misc.php:370
2227
  msgid "Lesotho"
2228
  msgstr ""
2229
 
2230
+ #: inc/core/helpers/helper-form-templates.php:1071
2231
  #: inc/core/helpers/helper-misc.php:374
2232
  msgid "Lithuania"
2233
  msgstr ""
2234
 
2235
+ #: inc/core/helpers/helper-form-templates.php:1072
2236
  #: inc/core/helpers/helper-misc.php:375
2237
  msgid "Luxembourg"
2238
  msgstr ""
2239
 
2240
+ #: inc/core/helpers/helper-form-templates.php:1073
2241
  #: inc/core/helpers/helper-misc.php:368
2242
  msgid "Latvia"
2243
  msgstr ""
2244
 
2245
+ #: inc/core/helpers/helper-form-templates.php:1074
2246
  #: inc/core/helpers/helper-misc.php:372
2247
  msgid "Libyan Arab Jamahiriya"
2248
  msgstr ""
2249
 
2250
+ #: inc/core/helpers/helper-form-templates.php:1075
2251
  #: inc/core/helpers/helper-misc.php:395
2252
  msgid "Morocco"
2253
  msgstr ""
2254
 
2255
+ #: inc/core/helpers/helper-form-templates.php:1076
2256
  #: inc/core/helpers/helper-misc.php:392
2257
  msgid "Monaco"
2258
  msgstr ""
2259
 
2260
+ #: inc/core/helpers/helper-form-templates.php:1077
2261
  #: inc/core/helpers/helper-misc.php:391
2262
  msgid "Moldova, Republic of"
2263
  msgstr ""
2264
 
2265
+ #: inc/core/helpers/helper-form-templates.php:1078
2266
  msgid "Montenegro"
2267
  msgstr ""
2268
 
2269
+ #: inc/core/helpers/helper-form-templates.php:1079
2270
  #: inc/core/helpers/helper-misc.php:378
2271
  msgid "Madagascar"
2272
  msgstr ""
2273
 
2274
+ #: inc/core/helpers/helper-form-templates.php:1080
2275
  #: inc/core/helpers/helper-misc.php:384
2276
  msgid "Marshall Islands"
2277
  msgstr ""
2278
 
2279
+ #: inc/core/helpers/helper-form-templates.php:1081
2280
  #: inc/core/helpers/helper-misc.php:377
2281
  msgid "Macedonia, The Former Yugoslav Republic of"
2282
  msgstr ""
2283
 
2284
+ #: inc/core/helpers/helper-form-templates.php:1082
2285
  #: inc/core/helpers/helper-misc.php:382
2286
  msgid "Mali"
2287
  msgstr ""
2288
 
2289
+ #: inc/core/helpers/helper-form-templates.php:1083
2290
  #: inc/core/helpers/helper-misc.php:397
2291
  msgid "Myanmar"
2292
  msgstr ""
2293
 
2294
+ #: inc/core/helpers/helper-form-templates.php:1084
2295
  #: inc/core/helpers/helper-misc.php:393
2296
  msgid "Mongolia"
2297
  msgstr ""
2298
 
2299
+ #: inc/core/helpers/helper-form-templates.php:1085
2300
  #: inc/core/helpers/helper-misc.php:376
2301
  msgid "Macau"
2302
  msgstr ""
2303
 
2304
+ #: inc/core/helpers/helper-form-templates.php:1086
2305
  #: inc/core/helpers/helper-misc.php:410
2306
  msgid "Northern Mariana Islands"
2307
  msgstr ""
2308
 
2309
+ #: inc/core/helpers/helper-form-templates.php:1087
2310
  #: inc/core/helpers/helper-misc.php:386
2311
  msgid "Mauritania"
2312
  msgstr ""
2313
 
2314
+ #: inc/core/helpers/helper-form-templates.php:1088
2315
  #: inc/core/helpers/helper-misc.php:394
2316
  msgid "Montserrat"
2317
  msgstr ""
2318
 
2319
+ #: inc/core/helpers/helper-form-templates.php:1089
2320
  #: inc/core/helpers/helper-misc.php:383
2321
  msgid "Malta"
2322
  msgstr ""
2323
 
2324
+ #: inc/core/helpers/helper-form-templates.php:1090
2325
  #: inc/core/helpers/helper-misc.php:387
2326
  msgid "Mauritius"
2327
  msgstr ""
2328
 
2329
+ #: inc/core/helpers/helper-form-templates.php:1091
2330
  #: inc/core/helpers/helper-misc.php:381
2331
  msgid "Maldives"
2332
  msgstr ""
2333
 
2334
+ #: inc/core/helpers/helper-form-templates.php:1092
2335
  #: inc/core/helpers/helper-misc.php:379
2336
  msgid "Malawi"
2337
  msgstr ""
2338
 
2339
+ #: inc/core/helpers/helper-form-templates.php:1093
2340
  #: inc/core/helpers/helper-misc.php:389
2341
  msgid "Mexico"
2342
  msgstr ""
2343
 
2344
+ #: inc/core/helpers/helper-form-templates.php:1094
2345
  #: inc/core/helpers/helper-misc.php:380
2346
  msgid "Malaysia"
2347
  msgstr ""
2348
 
2349
+ #: inc/core/helpers/helper-form-templates.php:1095
2350
  #: inc/core/helpers/helper-misc.php:396
2351
  msgid "Mozambique"
2352
  msgstr ""
2353
 
2354
+ #: inc/core/helpers/helper-form-templates.php:1096
2355
  #: inc/core/helpers/helper-misc.php:398
2356
  msgid "Namibia"
2357
  msgstr ""
2358
 
2359
+ #: inc/core/helpers/helper-form-templates.php:1097
2360
  #: inc/core/helpers/helper-misc.php:403
2361
  msgid "New Caledonia"
2362
  msgstr ""
2363
 
2364
+ #: inc/core/helpers/helper-form-templates.php:1098
2365
  #: inc/core/helpers/helper-misc.php:406
2366
  msgid "Niger"
2367
  msgstr ""
2368
 
2369
+ #: inc/core/helpers/helper-form-templates.php:1099
2370
  #: inc/core/helpers/helper-misc.php:407
2371
  msgid "Nigeria"
2372
  msgstr ""
2373
 
2374
+ #: inc/core/helpers/helper-form-templates.php:1100
2375
  #: inc/core/helpers/helper-misc.php:405
2376
  msgid "Nicaragua"
2377
  msgstr ""
2378
 
2379
+ #: inc/core/helpers/helper-form-templates.php:1101
2380
  #: inc/core/helpers/helper-misc.php:401
2381
  msgid "Netherlands"
2382
  msgstr ""
2383
 
2384
+ #: inc/core/helpers/helper-form-templates.php:1102
2385
  #: inc/core/helpers/helper-misc.php:411
2386
  msgid "Norway"
2387
  msgstr ""
2388
 
2389
+ #: inc/core/helpers/helper-form-templates.php:1103
2390
  #: inc/core/helpers/helper-misc.php:400
2391
  msgid "Nepal"
2392
  msgstr ""
2393
 
2394
+ #: inc/core/helpers/helper-form-templates.php:1104
2395
  #: inc/core/helpers/helper-misc.php:399
2396
  msgid "Nauru"
2397
  msgstr ""
2398
 
2399
+ #: inc/core/helpers/helper-form-templates.php:1105
2400
  #: inc/core/helpers/helper-misc.php:408
2401
  msgid "Niue"
2402
  msgstr ""
2403
 
2404
+ #: inc/core/helpers/helper-form-templates.php:1106
2405
  #: inc/core/helpers/helper-misc.php:404
2406
  msgid "New Zealand"
2407
  msgstr ""
2408
 
2409
+ #: inc/core/helpers/helper-form-templates.php:1107
2410
  #: inc/core/helpers/helper-misc.php:412
2411
  msgid "Oman"
2412
  msgstr ""
2413
 
2414
+ #: inc/core/helpers/helper-form-templates.php:1108
2415
  #: inc/core/helpers/helper-misc.php:415
2416
  msgid "Panama"
2417
  msgstr ""
2418
 
2419
+ #: inc/core/helpers/helper-form-templates.php:1109
2420
  #: inc/core/helpers/helper-misc.php:418
2421
  msgid "Peru"
2422
  msgstr ""
2423
 
2424
+ #: inc/core/helpers/helper-form-templates.php:1110
2425
  #: inc/core/helpers/helper-misc.php:326
2426
  msgid "French Polynesia"
2427
  msgstr ""
2428
 
2429
+ #: inc/core/helpers/helper-form-templates.php:1111
2430
  #: inc/core/helpers/helper-misc.php:416
2431
  msgid "Papua New Guinea"
2432
  msgstr ""
2433
 
2434
+ #: inc/core/helpers/helper-form-templates.php:1112
2435
  #: inc/core/helpers/helper-misc.php:419
2436
  msgid "Philippines"
2437
  msgstr ""
2438
 
2439
+ #: inc/core/helpers/helper-form-templates.php:1113
2440
  #: inc/core/helpers/helper-misc.php:413
2441
  msgid "Pakistan"
2442
  msgstr ""
2443
 
2444
+ #: inc/core/helpers/helper-form-templates.php:1114
2445
  #: inc/core/helpers/helper-misc.php:421
2446
  msgid "Poland"
2447
  msgstr ""
2448
 
2449
+ #: inc/core/helpers/helper-form-templates.php:1115
2450
  msgid "Saint Pierre and Miquelon"
2451
  msgstr ""
2452
 
2453
+ #: inc/core/helpers/helper-form-templates.php:1116
2454
  #: inc/core/helpers/helper-misc.php:420
2455
  msgid "Pitcairn"
2456
  msgstr ""
2457
 
2458
+ #: inc/core/helpers/helper-form-templates.php:1117
2459
  #: inc/core/helpers/helper-misc.php:422
2460
  msgid "Portugal"
2461
  msgstr ""
2462
 
2463
+ #: inc/core/helpers/helper-form-templates.php:1118
2464
  #: inc/core/helpers/helper-misc.php:414
2465
  msgid "Palau"
2466
  msgstr ""
2467
 
2468
+ #: inc/core/helpers/helper-form-templates.php:1119
2469
  #: inc/core/helpers/helper-misc.php:417
2470
  msgid "Paraguay"
2471
  msgstr ""
2472
 
2473
+ #: inc/core/helpers/helper-form-templates.php:1120
2474
  #: inc/core/helpers/helper-misc.php:424
2475
  msgid "Qatar"
2476
  msgstr ""
2477
 
2478
+ #: inc/core/helpers/helper-form-templates.php:1121
2479
  #: inc/core/helpers/helper-misc.php:426
2480
  msgid "Romania"
2481
  msgstr ""
2482
 
2483
+ #: inc/core/helpers/helper-form-templates.php:1122
2484
  msgid "Serbia"
2485
  msgstr ""
2486
 
2487
+ #: inc/core/helpers/helper-form-templates.php:1123
2488
  #: inc/core/helpers/helper-misc.php:427
2489
  msgid "Russian Federation"
2490
  msgstr ""
2491
 
2492
+ #: inc/core/helpers/helper-form-templates.php:1124
2493
  #: inc/core/helpers/helper-misc.php:428
2494
  msgid "Rwanda"
2495
  msgstr ""
2496
 
2497
+ #: inc/core/helpers/helper-form-templates.php:1125
2498
  #: inc/core/helpers/helper-misc.php:435
2499
  msgid "Saudi Arabia"
2500
  msgstr ""
2501
 
2502
+ #: inc/core/helpers/helper-form-templates.php:1126
2503
  #: inc/core/helpers/helper-misc.php:442
2504
  msgid "Solomon Islands"
2505
  msgstr ""
2506
 
2507
+ #: inc/core/helpers/helper-form-templates.php:1127
2508
  #: inc/core/helpers/helper-misc.php:437
2509
  msgid "Seychelles"
2510
  msgstr ""
2511
 
2512
+ #: inc/core/helpers/helper-form-templates.php:1128
2513
  #: inc/core/helpers/helper-misc.php:450
2514
  msgid "Sudan"
2515
  msgstr ""
2516
 
2517
+ #: inc/core/helpers/helper-form-templates.php:1129
2518
  #: inc/core/helpers/helper-misc.php:454
2519
  msgid "Sweden"
2520
  msgstr ""
2521
 
2522
+ #: inc/core/helpers/helper-form-templates.php:1130
2523
  #: inc/core/helpers/helper-misc.php:439
2524
  msgid "Singapore"
2525
  msgstr ""
2526
 
2527
+ #: inc/core/helpers/helper-form-templates.php:1131
2528
  msgid "Saint Helena"
2529
  msgstr ""
2530
 
2531
+ #: inc/core/helpers/helper-form-templates.php:1132
2532
  #: inc/core/helpers/helper-misc.php:441
2533
  msgid "Slovenia"
2534
  msgstr ""
2535
 
2536
+ #: inc/core/helpers/helper-form-templates.php:1133
2537
  msgid "Slovakia"
2538
  msgstr ""
2539
 
2540
+ #: inc/core/helpers/helper-form-templates.php:1134
2541
  #: inc/core/helpers/helper-misc.php:438
2542
  msgid "Sierra Leone"
2543
  msgstr ""
2544
 
2545
+ #: inc/core/helpers/helper-form-templates.php:1135
2546
  #: inc/core/helpers/helper-misc.php:433
2547
  msgid "San Marino"
2548
  msgstr ""
2549
 
2550
+ #: inc/core/helpers/helper-form-templates.php:1136
2551
  #: inc/core/helpers/helper-misc.php:436
2552
  msgid "Senegal"
2553
  msgstr ""
2554
 
2555
+ #: inc/core/helpers/helper-form-templates.php:1137
2556
  #: inc/core/helpers/helper-misc.php:443
2557
  msgid "Somalia"
2558
  msgstr ""
2559
 
2560
+ #: inc/core/helpers/helper-form-templates.php:1138
2561
  #: inc/core/helpers/helper-misc.php:451
2562
  msgid "Suriname"
2563
  msgstr ""
2564
 
2565
+ #: inc/core/helpers/helper-form-templates.php:1139
2566
  #: inc/core/helpers/helper-misc.php:434
2567
  msgid "Sao Tome and Principe"
2568
  msgstr ""
2569
 
2570
+ #: inc/core/helpers/helper-form-templates.php:1140
2571
  #: inc/core/helpers/helper-misc.php:314
2572
  msgid "El Salvador"
2573
  msgstr ""
2574
 
2575
+ #: inc/core/helpers/helper-form-templates.php:1141
2576
  #: inc/core/helpers/helper-misc.php:456
2577
  msgid "Syrian Arab Republic"
2578
  msgstr ""
2579
 
2580
+ #: inc/core/helpers/helper-form-templates.php:1142
2581
  #: inc/core/helpers/helper-misc.php:453
2582
  msgid "Swaziland"
2583
  msgstr ""
2584
 
2585
+ #: inc/core/helpers/helper-form-templates.php:1143
2586
  #: inc/core/helpers/helper-misc.php:468
2587
  msgid "Turks and Caicos Islands"
2588
  msgstr ""
2589
 
2590
+ #: inc/core/helpers/helper-form-templates.php:1144
2591
  #: inc/core/helpers/helper-misc.php:291
2592
  msgid "Chad"
2593
  msgstr ""
2594
 
2595
+ #: inc/core/helpers/helper-form-templates.php:1145
2596
  #: inc/core/helpers/helper-misc.php:461
2597
  msgid "Togo"
2598
  msgstr ""
2599
 
2600
+ #: inc/core/helpers/helper-form-templates.php:1146
2601
  #: inc/core/helpers/helper-misc.php:460
2602
  msgid "Thailand"
2603
  msgstr ""
2604
 
2605
+ #: inc/core/helpers/helper-form-templates.php:1147
2606
  #: inc/core/helpers/helper-misc.php:458
2607
  msgid "Tajikistan"
2608
  msgstr ""
2609
 
2610
+ #: inc/core/helpers/helper-form-templates.php:1148
2611
  #: inc/core/helpers/helper-misc.php:462
2612
  msgid "Tokelau"
2613
  msgstr ""
2614
 
2615
+ #: inc/core/helpers/helper-form-templates.php:1149
2616
  msgid "Timor-leste"
2617
  msgstr ""
2618
 
2619
+ #: inc/core/helpers/helper-form-templates.php:1150
2620
  #: inc/core/helpers/helper-misc.php:467
2621
  msgid "Turkmenistan"
2622
  msgstr ""
2623
 
2624
+ #: inc/core/helpers/helper-form-templates.php:1151
2625
  #: inc/core/helpers/helper-misc.php:465
2626
  msgid "Tunisia"
2627
  msgstr ""
2628
 
2629
+ #: inc/core/helpers/helper-form-templates.php:1152
2630
  #: inc/core/helpers/helper-misc.php:463
2631
  msgid "Tonga"
2632
  msgstr ""
2633
 
2634
+ #: inc/core/helpers/helper-form-templates.php:1153
2635
  #: inc/core/helpers/helper-misc.php:466
2636
  msgid "Turkey"
2637
  msgstr ""
2638
 
2639
+ #: inc/core/helpers/helper-form-templates.php:1154
2640
  #: inc/core/helpers/helper-misc.php:464
2641
  msgid "Trinidad and Tobago"
2642
  msgstr ""
2643
 
2644
+ #: inc/core/helpers/helper-form-templates.php:1155
2645
  #: inc/core/helpers/helper-misc.php:469
2646
  msgid "Tuvalu"
2647
  msgstr ""
2648
 
2649
+ #: inc/core/helpers/helper-form-templates.php:1156
2650
  #: inc/core/helpers/helper-misc.php:457
2651
  msgid "Taiwan, Province of China"
2652
  msgstr ""
2653
 
2654
+ #: inc/core/helpers/helper-form-templates.php:1157
2655
  #: inc/core/helpers/helper-misc.php:459
2656
  msgid "Tanzania, United Republic of"
2657
  msgstr ""
2658
 
2659
+ #: inc/core/helpers/helper-form-templates.php:1158
2660
  #: inc/core/helpers/helper-misc.php:471
2661
  msgid "Ukraine"
2662
  msgstr ""
2663
 
2664
+ #: inc/core/helpers/helper-form-templates.php:1159
2665
  #: inc/core/helpers/helper-misc.php:470
2666
  msgid "Uganda"
2667
  msgstr ""
2668
 
2669
+ #: inc/core/helpers/helper-form-templates.php:1160
2670
  #: inc/core/helpers/helper-misc.php:474
2671
  msgid "United States"
2672
  msgstr ""
2673
 
2674
+ #: inc/core/helpers/helper-form-templates.php:1161
2675
  #: inc/core/helpers/helper-misc.php:476
2676
  msgid "Uruguay"
2677
  msgstr ""
2678
 
2679
+ #: inc/core/helpers/helper-form-templates.php:1162
2680
  #: inc/core/helpers/helper-misc.php:477
2681
  msgid "Uzbekistan"
2682
  msgstr ""
2683
 
2684
+ #: inc/core/helpers/helper-form-templates.php:1163
2685
  #: inc/core/helpers/helper-misc.php:431
2686
  msgid "Saint Vincent and the Grenadines"
2687
  msgstr ""
2688
 
2689
+ #: inc/core/helpers/helper-form-templates.php:1164
2690
  #: inc/core/helpers/helper-misc.php:479
2691
  msgid "Venezuela"
2692
  msgstr ""
2693
 
2694
+ #: inc/core/helpers/helper-form-templates.php:1165
2695
  msgid "Virgin Islands, British"
2696
  msgstr ""
2697
 
2698
+ #: inc/core/helpers/helper-form-templates.php:1166
2699
  msgid "Virgin Islands, U.S."
2700
  msgstr ""
2701
 
2702
+ #: inc/core/helpers/helper-form-templates.php:1167
2703
  #: inc/core/helpers/helper-misc.php:480
2704
  msgid "Vietnam"
2705
  msgstr ""
2706
 
2707
+ #: inc/core/helpers/helper-form-templates.php:1168
2708
  #: inc/core/helpers/helper-misc.php:478
2709
  msgid "Vanuatu"
2710
  msgstr ""
2711
 
2712
+ #: inc/core/helpers/helper-form-templates.php:1169
2713
  msgid "Wallis and Futuna"
2714
  msgstr ""
2715
 
2716
+ #: inc/core/helpers/helper-form-templates.php:1170
2717
  #: inc/core/helpers/helper-misc.php:432
2718
  msgid "Samoa"
2719
  msgstr ""
2720
 
2721
+ #: inc/core/helpers/helper-form-templates.php:1171
2722
  #: inc/core/helpers/helper-misc.php:485
2723
  msgid "Yemen"
2724
  msgstr ""
2725
 
2726
+ #: inc/core/helpers/helper-form-templates.php:1172
2727
  #: inc/core/helpers/helper-misc.php:388
2728
  msgid "Mayotte"
2729
  msgstr ""
2730
 
2731
+ #: inc/core/helpers/helper-form-templates.php:1173
2732
  #: inc/core/helpers/helper-misc.php:444
2733
  msgid "South Africa"
2734
  msgstr ""
2735
 
2736
+ #: inc/core/helpers/helper-form-templates.php:1174
2737
  #: inc/core/helpers/helper-misc.php:487
2738
  msgid "Zambia"
2739
  msgstr ""
2740
 
2741
+ #: inc/core/helpers/helper-form-templates.php:1175
2742
  #: inc/core/helpers/helper-misc.php:488
2743
  msgid "Zimbabwe"
2744
  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.1
7
  Requires PHP: 5.3
8
- Stable tag: 1.7.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -99,6 +99,11 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
99
 
100
  == Changelog ==
101
 
 
 
 
 
 
102
  = 1.7.1 =
103
  * Improvement: A Javascript event is triggered after a form submission.
104
  * Improvement: Notices font family and weight are now theme independent.
@@ -424,6 +429,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
424
 
425
  == Upgrade Notice ==
426
 
 
 
 
427
  = 1.7.1 =
428
  * Minor fixes and improvements.
429
 
5
  Requires at least: 4.8
6
  Tested up to: 5.1
7
  Requires PHP: 5.3
8
+ Stable tag: 1.7.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
99
 
100
  == Changelog ==
101
 
102
+ = 1.7.2 =
103
+ * Improvement: Added date days filter.
104
+ * Improvement: Easier filtering of email message fields.
105
+ * Bugfix: Phone part wasn't showing correct country flag when same prefix is used by more than one country.
106
+
107
  = 1.7.1 =
108
  * Improvement: A Javascript event is triggered after a form submission.
109
  * Improvement: Notices font family and weight are now theme independent.
429
 
430
  == Upgrade Notice ==
431
 
432
+ = 1.7.2 =
433
+ * Minor fixes and improvements.
434
+
435
  = 1.7.1 =
436
  * Minor fixes and improvements.
437