Version Description
- Improvement: A Javascript event is triggered after a form submission.
- Improvement: Notices font family and weight are now theme independent.
- Bugfix: Query caching was causing issues on some hosts.
- Bugfix: A Javascript error was triggered when no notices are shown after a form submit.
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.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
- happyforms.php +2 -2
- inc/core/assets/css/notice.css +5 -1
- inc/core/assets/js/frontend.js +5 -3
- inc/core/classes/class-form-controller.php +43 -31
- inc/core/classes/class-message-controller.php +35 -23
- inc/core/helpers/helper-misc.php +0 -33
- inc/core/templates/partials/part-preview.php +1 -1
- languages/happyforms.pot +143 -143
- readme.txt +10 -1
happyforms.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://happyforms.me
|
6 |
* Description: Your friendly drag and drop contact form builder for creating contact forms, lead generation forms, feedback forms, quote forms, survey forms and more!
|
7 |
* Author: The Theme Foundry
|
8 |
-
* Version: 1.7.
|
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.
|
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.1
|
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.1' );
|
17 |
|
18 |
if ( ! function_exists( 'happyforms_plugin_file' ) ):
|
19 |
/**
|
inc/core/assets/css/notice.css
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
.happyforms-notice--custom h2.happyforms-notice__title {
|
11 |
margin: 0 0 15px !important;
|
12 |
padding: 0 !important;
|
|
|
13 |
font-weight: bold !important;
|
14 |
font-size: 16px !important;
|
15 |
color: #000 !important;
|
@@ -54,6 +55,8 @@
|
|
54 |
|
55 |
.happyforms-notice--custom p,
|
56 |
.happyforms-notice--custom ul li {
|
|
|
|
|
57 |
font-size: 16px !important;
|
58 |
color: #000 !important;
|
59 |
}
|
@@ -106,7 +109,8 @@
|
|
106 |
border-color: #0073aa #006799 #006799;
|
107 |
box-sizing: border-box;
|
108 |
line-height: 1.4285714;
|
109 |
-
font-
|
|
|
110 |
font-size: 14px;
|
111 |
white-space: nowrap;
|
112 |
color: #fff;
|
10 |
.happyforms-notice--custom h2.happyforms-notice__title {
|
11 |
margin: 0 0 15px !important;
|
12 |
padding: 0 !important;
|
13 |
+
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif !important;
|
14 |
font-weight: bold !important;
|
15 |
font-size: 16px !important;
|
16 |
color: #000 !important;
|
55 |
|
56 |
.happyforms-notice--custom p,
|
57 |
.happyforms-notice--custom ul li {
|
58 |
+
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif !important;
|
59 |
+
font-weight: normal !important;
|
60 |
font-size: 16px !important;
|
61 |
color: #000 !important;
|
62 |
}
|
109 |
border-color: #0073aa #006799 #006799;
|
110 |
box-sizing: border-box;
|
111 |
line-height: 1.4285714;
|
112 |
+
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif !important;
|
113 |
+
font-weight: normal !important;
|
114 |
font-size: 14px;
|
115 |
white-space: nowrap;
|
116 |
color: #fff;
|
inc/core/assets/js/frontend.js
CHANGED
@@ -246,6 +246,8 @@
|
|
246 |
},
|
247 |
|
248 |
onSubmitComplete: function( response ) {
|
|
|
|
|
249 |
if ( ! response.data ) {
|
250 |
return false;
|
251 |
}
|
@@ -266,14 +268,14 @@
|
|
266 |
} );
|
267 |
|
268 |
this.$el.replaceWith( $el );
|
269 |
-
|
270 |
$el.happyForm();
|
271 |
|
272 |
var elTopOffset = $el.offset().top;
|
273 |
var $form = $( 'form', $el );
|
|
|
274 |
|
275 |
-
if ( $form.is( '.happyforms-form--notices-below' ) ) {
|
276 |
-
elTopOffset = $
|
277 |
}
|
278 |
|
279 |
// User filterable
|
246 |
},
|
247 |
|
248 |
onSubmitComplete: function( response ) {
|
249 |
+
this.$form.trigger( 'happyforms.submitted', response );
|
250 |
+
|
251 |
if ( ! response.data ) {
|
252 |
return false;
|
253 |
}
|
268 |
} );
|
269 |
|
270 |
this.$el.replaceWith( $el );
|
|
|
271 |
$el.happyForm();
|
272 |
|
273 |
var elTopOffset = $el.offset().top;
|
274 |
var $form = $( 'form', $el );
|
275 |
+
var $notices = $( '.happyforms-message-notices', $el );
|
276 |
|
277 |
+
if ( $form.is( '.happyforms-form--notices-below' ) && $notices.length ) {
|
278 |
+
elTopOffset = $notices.offset().top;
|
279 |
}
|
280 |
|
281 |
// User filterable
|
inc/core/classes/class-form-controller.php
CHANGED
@@ -432,46 +432,58 @@ class HappyForms_Form_Controller {
|
|
432 |
*
|
433 |
* @return array
|
434 |
*/
|
435 |
-
public function
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
);
|
442 |
|
443 |
-
|
444 |
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
|
459 |
-
|
460 |
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
}
|
471 |
}
|
|
|
|
|
|
|
|
|
472 |
|
473 |
-
|
474 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
}
|
476 |
|
477 |
/**
|
432 |
*
|
433 |
* @return array
|
434 |
*/
|
435 |
+
public function do_get( $post_ids = array(), $only_id = false ) {
|
436 |
+
$query_params = array(
|
437 |
+
'post_type' => happyforms_get_form_controller()->post_type,
|
438 |
+
'post_status' => 'publish',
|
439 |
+
'posts_per_page' => -1,
|
440 |
+
);
|
|
|
441 |
|
442 |
+
$query_params['post__in'] = is_array( $post_ids ) ? $post_ids : array( $post_ids );
|
443 |
|
444 |
+
if ( true === $only_id ) {
|
445 |
+
$query_params['fields'] = 'ids';
|
446 |
+
}
|
447 |
|
448 |
+
if ( 0 !== $post_ids ) {
|
449 |
+
$forms = get_posts( $query_params );
|
450 |
+
} else {
|
451 |
+
$forms = array( $this->create_virtual() );
|
452 |
+
}
|
453 |
|
454 |
+
if ( true === $only_id ) {
|
455 |
+
return $forms;
|
456 |
+
}
|
457 |
|
458 |
+
$form_entries = array();
|
459 |
|
460 |
+
foreach ( $forms as $form ) {
|
461 |
+
$form_entries[] = $this->to_array( $form );
|
462 |
+
}
|
463 |
|
464 |
+
if ( ! is_array( $post_ids ) ) {
|
465 |
+
if ( count( $form_entries ) > 0 ) {
|
466 |
+
return $form_entries[0];
|
467 |
+
} else {
|
468 |
+
return false;
|
|
|
469 |
}
|
470 |
+
}
|
471 |
+
|
472 |
+
return $form_entries;
|
473 |
+
}
|
474 |
|
475 |
+
public function get( $post_ids = array(), $only_id = false ) {
|
476 |
+
$args = md5( serialize( func_get_args() ) );
|
477 |
+
$key = "_happyforms_cache_forms_get_{$args}";
|
478 |
+
$found = false;
|
479 |
+
$result = wp_cache_get( $key, '', false, $found );
|
480 |
+
|
481 |
+
if ( false === $found ) {
|
482 |
+
$result = $this->do_get( $post_ids, $only_id );
|
483 |
+
wp_cache_set( $key, $result );
|
484 |
+
}
|
485 |
+
|
486 |
+
return $result;
|
487 |
}
|
488 |
|
489 |
/**
|
inc/core/classes/class-message-controller.php
CHANGED
@@ -668,35 +668,47 @@ class HappyForms_Message_Controller {
|
|
668 |
*
|
669 |
* @return array
|
670 |
*/
|
671 |
-
public function
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
);
|
678 |
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
}
|
685 |
}
|
|
|
686 |
|
687 |
-
|
688 |
-
|
689 |
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
}
|
696 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
|
698 |
-
|
699 |
-
} );
|
700 |
}
|
701 |
|
702 |
/**
|
668 |
*
|
669 |
* @return array
|
670 |
*/
|
671 |
+
public function do_get( $post_ids = '' ) {
|
672 |
+
$query_params = array(
|
673 |
+
'post_type' => $this->post_type,
|
674 |
+
'post_status' => 'any',
|
675 |
+
'posts_per_page' => -1,
|
676 |
+
);
|
|
|
677 |
|
678 |
+
if ( ! empty( $post_ids ) ) {
|
679 |
+
if ( is_numeric( $post_ids ) ) {
|
680 |
+
$query_params['p'] = $post_ids;
|
681 |
+
} else if ( is_array( $post_ids ) ) {
|
682 |
+
$query_params['post__in'] = $post_ids;
|
|
|
683 |
}
|
684 |
+
}
|
685 |
|
686 |
+
$messages = get_posts( $query_params );
|
687 |
+
$message_entries = array_map( array( $this, 'to_array'), $messages );
|
688 |
|
689 |
+
if ( is_numeric( $post_ids ) ) {
|
690 |
+
if ( count( $message_entries ) > 0 ) {
|
691 |
+
return $message_entries[0];
|
692 |
+
} else {
|
693 |
+
return false;
|
|
|
694 |
}
|
695 |
+
}
|
696 |
+
|
697 |
+
return $message_entries;
|
698 |
+
}
|
699 |
+
|
700 |
+
public function get( $post_ids ) {
|
701 |
+
$args = md5( serialize( func_get_args() ) );
|
702 |
+
$key = "_happyforms_cache_responses_get_{$args}";
|
703 |
+
$found = false;
|
704 |
+
$result = wp_cache_get( $key, '', false, $found );
|
705 |
+
|
706 |
+
if ( false === $found ) {
|
707 |
+
$result = $this->do_get( $post_ids );
|
708 |
+
wp_cache_set( $key, $result );
|
709 |
+
}
|
710 |
|
711 |
+
return $result;
|
|
|
712 |
}
|
713 |
|
714 |
/**
|
inc/core/helpers/helper-misc.php
CHANGED
@@ -729,39 +729,6 @@ function happyforms_get_part_customize_template_path( $template, $type ) {
|
|
729 |
|
730 |
endif;
|
731 |
|
732 |
-
if ( ! function_exists( 'happyforms_get_query_cache_key' ) ):
|
733 |
-
|
734 |
-
function happyforms_get_query_cache_key( $class, $function, $args ) {
|
735 |
-
$args = md5( serialize( $args ) );
|
736 |
-
$key = "_happyforms_cache_{$class}_{$function}_{$args}";
|
737 |
-
|
738 |
-
return $key;
|
739 |
-
}
|
740 |
-
|
741 |
-
endif;
|
742 |
-
|
743 |
-
if ( ! function_exists( 'happyforms_cache_query' ) ):
|
744 |
-
|
745 |
-
function happyforms_cache_query( $callback ) {
|
746 |
-
$backtrace = debug_backtrace( false, 2 );
|
747 |
-
$context = $backtrace[1];
|
748 |
-
$class = $context['class'];
|
749 |
-
$function = $context['function'];
|
750 |
-
$args = $context['args'];
|
751 |
-
$serialized_args = md5( serialize( $args ) );
|
752 |
-
$key = "_happyforms_cache_{$class}_{$function}_{$serialized_args}";
|
753 |
-
$result = wp_cache_get( $key, '', false, $found );
|
754 |
-
|
755 |
-
if ( false === $found ) {
|
756 |
-
$result = call_user_func( $callback );
|
757 |
-
wp_cache_set( $key, $result );
|
758 |
-
}
|
759 |
-
|
760 |
-
return $result;
|
761 |
-
}
|
762 |
-
|
763 |
-
endif;
|
764 |
-
|
765 |
if ( ! function_exists( 'happyforms_get_php_locales' ) ):
|
766 |
|
767 |
function happyforms_get_php_locales( $code = '' ) {
|
729 |
|
730 |
endif;
|
731 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
if ( ! function_exists( 'happyforms_get_php_locales' ) ):
|
733 |
|
734 |
function happyforms_get_php_locales( $code = '' ) {
|
inc/core/templates/partials/part-preview.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
$required = happyforms_is_truthy( $
|
3 |
$empty = empty( happyforms_get_part_preview_value( $part, $form ) );
|
4 |
$hidden = ( ! $required && $empty );
|
5 |
?>
|
1 |
<?php
|
2 |
+
$required = happyforms_is_truthy( $part['required'] );
|
3 |
$empty = empty( happyforms_get_part_preview_value( $part, $form ) );
|
4 |
$hidden = ( ! $required && $empty );
|
5 |
?>
|
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.
|
6 |
"Report-Msgid-Bugs-To: https://thethemefoundry.com/support/\n"
|
7 |
-
"POT-Creation-Date: 2019-02-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -262,11 +262,11 @@ msgstr ""
|
|
262 |
msgid "Untitled form"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: inc/core/classes/class-form-controller.php:
|
266 |
msgid " Copy"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: inc/core/classes/class-form-controller.php:
|
270 |
#: inc/core/classes/class-message-controller.php:317
|
271 |
#: inc/core/classes/class-message-controller.php:417
|
272 |
#: inc/core/classes/class-message-controller.php:452
|
@@ -1076,8 +1076,8 @@ msgstr ""
|
|
1076 |
#: inc/core/classes/class-message-admin.php:394
|
1077 |
#: inc/core/classes/class-message-admin.php:778
|
1078 |
#: inc/core/classes/class-message-controller.php:654
|
1079 |
-
#: inc/core/classes/class-message-controller.php:
|
1080 |
-
#: inc/core/classes/class-message-controller.php:
|
1081 |
#: inc/core/templates/admin-message-edit.php:27
|
1082 |
msgid "Tracking number"
|
1083 |
msgstr ""
|
@@ -1147,7 +1147,7 @@ msgstr ""
|
|
1147 |
msgid "All Responses"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: inc/core/classes/class-message-controller.php:
|
1151 |
msgid "Reply to this message and mark it as read"
|
1152 |
msgstr ""
|
1153 |
|
@@ -2911,547 +2911,547 @@ msgstr ""
|
|
2911 |
msgid "Response #%s"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: inc/core/helpers/helper-misc.php:
|
2915 |
msgid "Afrikaans"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: inc/core/helpers/helper-misc.php:
|
2919 |
msgid "Akan"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: inc/core/helpers/helper-misc.php:
|
2923 |
msgid "Albanian"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: inc/core/helpers/helper-misc.php:
|
2927 |
msgid "Algerian Arabic"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: inc/core/helpers/helper-misc.php:
|
2931 |
msgid "Amharic"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: inc/core/helpers/helper-misc.php:
|
2935 |
msgid "Arabic"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: inc/core/helpers/helper-misc.php:
|
2939 |
msgid "Armenian"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: inc/core/helpers/helper-misc.php:
|
2943 |
msgid "Aromanian"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: inc/core/helpers/helper-misc.php:
|
2947 |
msgid "Arpitan"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: inc/core/helpers/helper-misc.php:
|
2951 |
msgid "Assamese"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: inc/core/helpers/helper-misc.php:
|
2955 |
msgid "Azerbaijani"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: inc/core/helpers/helper-misc.php:
|
2959 |
msgid "Balochi Southern"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: inc/core/helpers/helper-misc.php:
|
2963 |
msgid "Bashkir"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: inc/core/helpers/helper-misc.php:
|
2967 |
msgid "Basque"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: inc/core/helpers/helper-misc.php:
|
2971 |
msgid "Belarusian"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: inc/core/helpers/helper-misc.php:
|
2975 |
msgid "Bengali"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: inc/core/helpers/helper-misc.php:
|
2979 |
msgid "Bosnian"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: inc/core/helpers/helper-misc.php:
|
2983 |
msgid "Breton"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: inc/core/helpers/helper-misc.php:
|
2987 |
msgid "Bulgarian"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: inc/core/helpers/helper-misc.php:
|
2991 |
msgid "Catalan"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: inc/core/helpers/helper-misc.php:
|
2995 |
msgid "Cebuano"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: inc/core/helpers/helper-misc.php:
|
2999 |
msgid "Chinese"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: inc/core/helpers/helper-misc.php:
|
3003 |
msgid "Corsican"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: inc/core/helpers/helper-misc.php:
|
3007 |
msgid "Croatian"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: inc/core/helpers/helper-misc.php:
|
3011 |
msgid "Czech"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: inc/core/helpers/helper-misc.php:
|
3015 |
msgid "Danish"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: inc/core/helpers/helper-misc.php:
|
3019 |
msgid "Dhivehi"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: inc/core/helpers/helper-misc.php:
|
3023 |
msgid "Dutch"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: inc/core/helpers/helper-misc.php:
|
3027 |
msgid "Dzongkha"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: inc/core/helpers/helper-misc.php:
|
3031 |
msgid "English"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: inc/core/helpers/helper-misc.php:
|
3035 |
msgid "Esperanto"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: inc/core/helpers/helper-misc.php:
|
3039 |
msgid "Estonian"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: inc/core/helpers/helper-misc.php:
|
3043 |
msgid "Faroese"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: inc/core/helpers/helper-misc.php:
|
3047 |
msgid "Finnish"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: inc/core/helpers/helper-misc.php:
|
3051 |
msgid "French"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: inc/core/helpers/helper-misc.php:
|
3055 |
msgid "Frisian"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: inc/core/helpers/helper-misc.php:
|
3059 |
msgid "Friulian"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: inc/core/helpers/helper-misc.php:
|
3063 |
msgid "Fulah"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: inc/core/helpers/helper-misc.php:
|
3067 |
msgid "Galician"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: inc/core/helpers/helper-misc.php:
|
3071 |
msgid "Georgian"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: inc/core/helpers/helper-misc.php:
|
3075 |
msgid "German"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: inc/core/helpers/helper-misc.php:
|
3079 |
msgid "Greek"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: inc/core/helpers/helper-misc.php:
|
3083 |
msgid "Greenlandic"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: inc/core/helpers/helper-misc.php:
|
3087 |
msgid "Guaraní"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: inc/core/helpers/helper-misc.php:
|
3091 |
msgid "Gujarati"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: inc/core/helpers/helper-misc.php:
|
3095 |
msgid "Hawaiian"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: inc/core/helpers/helper-misc.php:
|
3099 |
msgid "Hazaragi"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: inc/core/helpers/helper-misc.php:
|
3103 |
msgid "Hebrew"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: inc/core/helpers/helper-misc.php:
|
3107 |
msgid "Hindi"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: inc/core/helpers/helper-misc.php:
|
3111 |
msgid "Hungarian"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: inc/core/helpers/helper-misc.php:
|
3115 |
msgid "Icelandic"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: inc/core/helpers/helper-misc.php:
|
3119 |
msgid "Ido"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: inc/core/helpers/helper-misc.php:
|
3123 |
msgid "Indonesian"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: inc/core/helpers/helper-misc.php:
|
3127 |
msgid "Irish"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: inc/core/helpers/helper-misc.php:
|
3131 |
msgid "Italian"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: inc/core/helpers/helper-misc.php:
|
3135 |
msgid "Japanese"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: inc/core/helpers/helper-misc.php:
|
3139 |
msgid "Javanese"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: inc/core/helpers/helper-misc.php:
|
3143 |
msgid "Kabyle"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: inc/core/helpers/helper-misc.php:
|
3147 |
msgid "Kannada"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: inc/core/helpers/helper-misc.php:
|
3151 |
msgid "Kazakh"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: inc/core/helpers/helper-misc.php:
|
3155 |
msgid "Khmer"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: inc/core/helpers/helper-misc.php:
|
3159 |
msgid "Kinyarwanda"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: inc/core/helpers/helper-misc.php:
|
3163 |
msgid "Kirghiz"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: inc/core/helpers/helper-misc.php:
|
3167 |
msgid "Korean"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: inc/core/helpers/helper-misc.php:
|
3171 |
msgid "Kurdish"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: inc/core/helpers/helper-misc.php:
|
3175 |
msgid "Lao"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: inc/core/helpers/helper-misc.php:
|
3179 |
msgid "Latvian"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: inc/core/helpers/helper-misc.php:
|
3183 |
msgid "Limburgish"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: inc/core/helpers/helper-misc.php:
|
3187 |
msgid "Lingala"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: inc/core/helpers/helper-misc.php:
|
3191 |
msgid "Lithuanian"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: inc/core/helpers/helper-misc.php:
|
3195 |
msgid "Luxembourgish"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: inc/core/helpers/helper-misc.php:
|
3199 |
msgid "Macedonian"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: inc/core/helpers/helper-misc.php:
|
3203 |
msgid "Malagasy"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: inc/core/helpers/helper-misc.php:
|
3207 |
msgid "Malay"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: inc/core/helpers/helper-misc.php:
|
3211 |
msgid "Malayalam"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: inc/core/helpers/helper-misc.php:
|
3215 |
msgid "Maori"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: inc/core/helpers/helper-misc.php:
|
3219 |
msgid "Marathi"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: inc/core/helpers/helper-misc.php:
|
3223 |
msgid "Mingrelian"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: inc/core/helpers/helper-misc.php:
|
3227 |
msgid "Mongolian"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: inc/core/helpers/helper-misc.php:
|
3231 |
msgid "Montenegrin"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: inc/core/helpers/helper-misc.php:
|
3235 |
msgid "Moroccan Arabic"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: inc/core/helpers/helper-misc.php:
|
3239 |
msgid "Myanmar (Burmese)"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: inc/core/helpers/helper-misc.php:
|
3243 |
msgid "Nepali"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: inc/core/helpers/helper-misc.php:
|
3247 |
msgid "Norwegian (Bokmål)"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: inc/core/helpers/helper-misc.php:
|
3251 |
msgid "Norwegian (Nynorsk)"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: inc/core/helpers/helper-misc.php:
|
3255 |
msgid "Occitan"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: inc/core/helpers/helper-misc.php:
|
3259 |
msgid "Oriya"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: inc/core/helpers/helper-misc.php:
|
3263 |
msgid "Ossetic"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: inc/core/helpers/helper-misc.php:
|
3267 |
msgid "Pashto"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: inc/core/helpers/helper-misc.php:
|
3271 |
msgid "Persian"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: inc/core/helpers/helper-misc.php:
|
3275 |
msgid "Polish"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: inc/core/helpers/helper-misc.php:
|
3279 |
msgid "Portuguese"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: inc/core/helpers/helper-misc.php:
|
3283 |
msgid "Punjabi"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: inc/core/helpers/helper-misc.php:
|
3287 |
msgid "Rohingya"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: inc/core/helpers/helper-misc.php:
|
3291 |
msgid "Romanian"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: inc/core/helpers/helper-misc.php:
|
3295 |
msgid "Romansh Vallader"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: inc/core/helpers/helper-misc.php:
|
3299 |
msgid "Russian"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: inc/core/helpers/helper-misc.php:
|
3303 |
msgid "Rusyn"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: inc/core/helpers/helper-misc.php:
|
3307 |
msgid "Sakha"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: inc/core/helpers/helper-misc.php:
|
3311 |
msgid "Sanskrit"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: inc/core/helpers/helper-misc.php:
|
3315 |
msgid "Sardinian"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: inc/core/helpers/helper-misc.php:
|
3319 |
msgid "Scottish Gaelic"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: inc/core/helpers/helper-misc.php:
|
3323 |
msgid "Serbian"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: inc/core/helpers/helper-misc.php:
|
3327 |
msgid "Silesian"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: inc/core/helpers/helper-misc.php:
|
3331 |
msgid "Sindhi"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: inc/core/helpers/helper-misc.php:
|
3335 |
msgid "Sinhala"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: inc/core/helpers/helper-misc.php:
|
3339 |
msgid "Slovak"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: inc/core/helpers/helper-misc.php:
|
3343 |
msgid "Slovenian"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: inc/core/helpers/helper-misc.php:
|
3347 |
msgid "Somali"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: inc/core/helpers/helper-misc.php:
|
3351 |
msgid "South Azerbaijani"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: inc/core/helpers/helper-misc.php:
|
3355 |
msgid "Spanish"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: inc/core/helpers/helper-misc.php:
|
3359 |
msgid "Sundanese"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: inc/core/helpers/helper-misc.php:
|
3363 |
msgid "Swahili"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: inc/core/helpers/helper-misc.php:
|
3367 |
msgid "Swedish"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: inc/core/helpers/helper-misc.php:
|
3371 |
msgid "Swiss German"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: inc/core/helpers/helper-misc.php:
|
3375 |
msgid "Tagalog"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: inc/core/helpers/helper-misc.php:
|
3379 |
msgid "Tahitian"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: inc/core/helpers/helper-misc.php:
|
3383 |
msgid "Tajik"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: inc/core/helpers/helper-misc.php:
|
3387 |
msgid "Tamazight"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: inc/core/helpers/helper-misc.php:
|
3391 |
msgid "Tamil"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: inc/core/helpers/helper-misc.php:
|
3395 |
msgid "Tatar"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: inc/core/helpers/helper-misc.php:
|
3399 |
msgid "Telugu"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: inc/core/helpers/helper-misc.php:
|
3403 |
msgid "Thai"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: inc/core/helpers/helper-misc.php:
|
3407 |
msgid "Tibetan"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: inc/core/helpers/helper-misc.php:
|
3411 |
msgid "Tigrinya"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: inc/core/helpers/helper-misc.php:
|
3415 |
msgid "Turkish"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: inc/core/helpers/helper-misc.php:
|
3419 |
msgid "Turkmen"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: inc/core/helpers/helper-misc.php:
|
3423 |
msgid "Tweants"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: inc/core/helpers/helper-misc.php:
|
3427 |
msgid "Uighur"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: inc/core/helpers/helper-misc.php:
|
3431 |
msgid "Ukrainian"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: inc/core/helpers/helper-misc.php:
|
3435 |
msgid "Urdu"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: inc/core/helpers/helper-misc.php:
|
3439 |
msgid "Uzbek"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: inc/core/helpers/helper-misc.php:
|
3443 |
msgid "Vietnamese"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: inc/core/helpers/helper-misc.php:
|
3447 |
msgid "Walloon"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: inc/core/helpers/helper-misc.php:
|
3451 |
msgid "Welsh"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: inc/core/helpers/helper-misc.php:
|
3455 |
msgid "Yoruba"
|
3456 |
msgstr ""
|
3457 |
|
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"
|
262 |
msgid "Untitled form"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: inc/core/classes/class-form-controller.php:608
|
266 |
msgid " Copy"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: inc/core/classes/class-form-controller.php:787
|
270 |
#: inc/core/classes/class-message-controller.php:317
|
271 |
#: inc/core/classes/class-message-controller.php:417
|
272 |
#: inc/core/classes/class-message-controller.php:452
|
1076 |
#: inc/core/classes/class-message-admin.php:394
|
1077 |
#: inc/core/classes/class-message-admin.php:778
|
1078 |
#: inc/core/classes/class-message-controller.php:654
|
1079 |
+
#: inc/core/classes/class-message-controller.php:867
|
1080 |
+
#: inc/core/classes/class-message-controller.php:934
|
1081 |
#: inc/core/templates/admin-message-edit.php:27
|
1082 |
msgid "Tracking number"
|
1083 |
msgstr ""
|
1147 |
msgid "All Responses"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: inc/core/classes/class-message-controller.php:886
|
1151 |
msgid "Reply to this message and mark it as read"
|
1152 |
msgstr ""
|
1153 |
|
2911 |
msgid "Response #%s"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: inc/core/helpers/helper-misc.php:736
|
2915 |
msgid "Afrikaans"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: inc/core/helpers/helper-misc.php:737
|
2919 |
msgid "Akan"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: inc/core/helpers/helper-misc.php:738
|
2923 |
msgid "Albanian"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: inc/core/helpers/helper-misc.php:739
|
2927 |
msgid "Algerian Arabic"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: inc/core/helpers/helper-misc.php:740
|
2931 |
msgid "Amharic"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: inc/core/helpers/helper-misc.php:741
|
2935 |
msgid "Arabic"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: inc/core/helpers/helper-misc.php:742
|
2939 |
msgid "Armenian"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: inc/core/helpers/helper-misc.php:743
|
2943 |
msgid "Aromanian"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: inc/core/helpers/helper-misc.php:744
|
2947 |
msgid "Arpitan"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: inc/core/helpers/helper-misc.php:745
|
2951 |
msgid "Assamese"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: inc/core/helpers/helper-misc.php:746
|
2955 |
msgid "Azerbaijani"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: inc/core/helpers/helper-misc.php:747
|
2959 |
msgid "Balochi Southern"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: inc/core/helpers/helper-misc.php:748
|
2963 |
msgid "Bashkir"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: inc/core/helpers/helper-misc.php:749
|
2967 |
msgid "Basque"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: inc/core/helpers/helper-misc.php:750
|
2971 |
msgid "Belarusian"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: inc/core/helpers/helper-misc.php:751
|
2975 |
msgid "Bengali"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: inc/core/helpers/helper-misc.php:752
|
2979 |
msgid "Bosnian"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: inc/core/helpers/helper-misc.php:753
|
2983 |
msgid "Breton"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: inc/core/helpers/helper-misc.php:754
|
2987 |
msgid "Bulgarian"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: inc/core/helpers/helper-misc.php:755
|
2991 |
msgid "Catalan"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: inc/core/helpers/helper-misc.php:756
|
2995 |
msgid "Cebuano"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: inc/core/helpers/helper-misc.php:757
|
2999 |
msgid "Chinese"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: inc/core/helpers/helper-misc.php:758
|
3003 |
msgid "Corsican"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: inc/core/helpers/helper-misc.php:759
|
3007 |
msgid "Croatian"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: inc/core/helpers/helper-misc.php:760
|
3011 |
msgid "Czech"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: inc/core/helpers/helper-misc.php:761
|
3015 |
msgid "Danish"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: inc/core/helpers/helper-misc.php:762
|
3019 |
msgid "Dhivehi"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: inc/core/helpers/helper-misc.php:763
|
3023 |
msgid "Dutch"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: inc/core/helpers/helper-misc.php:764
|
3027 |
msgid "Dzongkha"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: inc/core/helpers/helper-misc.php:765
|
3031 |
msgid "English"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: inc/core/helpers/helper-misc.php:766
|
3035 |
msgid "Esperanto"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: inc/core/helpers/helper-misc.php:767
|
3039 |
msgid "Estonian"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: inc/core/helpers/helper-misc.php:768
|
3043 |
msgid "Faroese"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: inc/core/helpers/helper-misc.php:769
|
3047 |
msgid "Finnish"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: inc/core/helpers/helper-misc.php:770
|
3051 |
msgid "French"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: inc/core/helpers/helper-misc.php:771
|
3055 |
msgid "Frisian"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: inc/core/helpers/helper-misc.php:772
|
3059 |
msgid "Friulian"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: inc/core/helpers/helper-misc.php:773
|
3063 |
msgid "Fulah"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: inc/core/helpers/helper-misc.php:774
|
3067 |
msgid "Galician"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: inc/core/helpers/helper-misc.php:775
|
3071 |
msgid "Georgian"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: inc/core/helpers/helper-misc.php:776
|
3075 |
msgid "German"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: inc/core/helpers/helper-misc.php:777
|
3079 |
msgid "Greek"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: inc/core/helpers/helper-misc.php:778
|
3083 |
msgid "Greenlandic"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: inc/core/helpers/helper-misc.php:779
|
3087 |
msgid "Guaraní"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: inc/core/helpers/helper-misc.php:780
|
3091 |
msgid "Gujarati"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: inc/core/helpers/helper-misc.php:781
|
3095 |
msgid "Hawaiian"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: inc/core/helpers/helper-misc.php:782
|
3099 |
msgid "Hazaragi"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: inc/core/helpers/helper-misc.php:783
|
3103 |
msgid "Hebrew"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: inc/core/helpers/helper-misc.php:784
|
3107 |
msgid "Hindi"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: inc/core/helpers/helper-misc.php:785
|
3111 |
msgid "Hungarian"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: inc/core/helpers/helper-misc.php:786
|
3115 |
msgid "Icelandic"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: inc/core/helpers/helper-misc.php:787
|
3119 |
msgid "Ido"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: inc/core/helpers/helper-misc.php:788
|
3123 |
msgid "Indonesian"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: inc/core/helpers/helper-misc.php:789
|
3127 |
msgid "Irish"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: inc/core/helpers/helper-misc.php:790
|
3131 |
msgid "Italian"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: inc/core/helpers/helper-misc.php:791
|
3135 |
msgid "Japanese"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: inc/core/helpers/helper-misc.php:792
|
3139 |
msgid "Javanese"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: inc/core/helpers/helper-misc.php:793
|
3143 |
msgid "Kabyle"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: inc/core/helpers/helper-misc.php:794
|
3147 |
msgid "Kannada"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: inc/core/helpers/helper-misc.php:795
|
3151 |
msgid "Kazakh"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: inc/core/helpers/helper-misc.php:796
|
3155 |
msgid "Khmer"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: inc/core/helpers/helper-misc.php:797
|
3159 |
msgid "Kinyarwanda"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: inc/core/helpers/helper-misc.php:798
|
3163 |
msgid "Kirghiz"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: inc/core/helpers/helper-misc.php:799
|
3167 |
msgid "Korean"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: inc/core/helpers/helper-misc.php:800
|
3171 |
msgid "Kurdish"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: inc/core/helpers/helper-misc.php:801
|
3175 |
msgid "Lao"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: inc/core/helpers/helper-misc.php:802
|
3179 |
msgid "Latvian"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: inc/core/helpers/helper-misc.php:803
|
3183 |
msgid "Limburgish"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: inc/core/helpers/helper-misc.php:804
|
3187 |
msgid "Lingala"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: inc/core/helpers/helper-misc.php:805
|
3191 |
msgid "Lithuanian"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: inc/core/helpers/helper-misc.php:806
|
3195 |
msgid "Luxembourgish"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: inc/core/helpers/helper-misc.php:807
|
3199 |
msgid "Macedonian"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: inc/core/helpers/helper-misc.php:808
|
3203 |
msgid "Malagasy"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: inc/core/helpers/helper-misc.php:809
|
3207 |
msgid "Malay"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: inc/core/helpers/helper-misc.php:810
|
3211 |
msgid "Malayalam"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: inc/core/helpers/helper-misc.php:811
|
3215 |
msgid "Maori"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: inc/core/helpers/helper-misc.php:812
|
3219 |
msgid "Marathi"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: inc/core/helpers/helper-misc.php:813
|
3223 |
msgid "Mingrelian"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: inc/core/helpers/helper-misc.php:814
|
3227 |
msgid "Mongolian"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: inc/core/helpers/helper-misc.php:815
|
3231 |
msgid "Montenegrin"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: inc/core/helpers/helper-misc.php:816
|
3235 |
msgid "Moroccan Arabic"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: inc/core/helpers/helper-misc.php:817
|
3239 |
msgid "Myanmar (Burmese)"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: inc/core/helpers/helper-misc.php:818
|
3243 |
msgid "Nepali"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: inc/core/helpers/helper-misc.php:819
|
3247 |
msgid "Norwegian (Bokmål)"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: inc/core/helpers/helper-misc.php:820
|
3251 |
msgid "Norwegian (Nynorsk)"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: inc/core/helpers/helper-misc.php:821
|
3255 |
msgid "Occitan"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: inc/core/helpers/helper-misc.php:822
|
3259 |
msgid "Oriya"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: inc/core/helpers/helper-misc.php:823
|
3263 |
msgid "Ossetic"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: inc/core/helpers/helper-misc.php:824
|
3267 |
msgid "Pashto"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: inc/core/helpers/helper-misc.php:825
|
3271 |
msgid "Persian"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: inc/core/helpers/helper-misc.php:826
|
3275 |
msgid "Polish"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: inc/core/helpers/helper-misc.php:827
|
3279 |
msgid "Portuguese"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: inc/core/helpers/helper-misc.php:828
|
3283 |
msgid "Punjabi"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: inc/core/helpers/helper-misc.php:829
|
3287 |
msgid "Rohingya"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: inc/core/helpers/helper-misc.php:830
|
3291 |
msgid "Romanian"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: inc/core/helpers/helper-misc.php:831
|
3295 |
msgid "Romansh Vallader"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: inc/core/helpers/helper-misc.php:832
|
3299 |
msgid "Russian"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: inc/core/helpers/helper-misc.php:833
|
3303 |
msgid "Rusyn"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: inc/core/helpers/helper-misc.php:834
|
3307 |
msgid "Sakha"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: inc/core/helpers/helper-misc.php:835
|
3311 |
msgid "Sanskrit"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: inc/core/helpers/helper-misc.php:836
|
3315 |
msgid "Sardinian"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: inc/core/helpers/helper-misc.php:837
|
3319 |
msgid "Scottish Gaelic"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: inc/core/helpers/helper-misc.php:838
|
3323 |
msgid "Serbian"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: inc/core/helpers/helper-misc.php:839
|
3327 |
msgid "Silesian"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: inc/core/helpers/helper-misc.php:840
|
3331 |
msgid "Sindhi"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: inc/core/helpers/helper-misc.php:841
|
3335 |
msgid "Sinhala"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: inc/core/helpers/helper-misc.php:842
|
3339 |
msgid "Slovak"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: inc/core/helpers/helper-misc.php:843
|
3343 |
msgid "Slovenian"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: inc/core/helpers/helper-misc.php:844
|
3347 |
msgid "Somali"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: inc/core/helpers/helper-misc.php:845
|
3351 |
msgid "South Azerbaijani"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: inc/core/helpers/helper-misc.php:846
|
3355 |
msgid "Spanish"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: inc/core/helpers/helper-misc.php:847
|
3359 |
msgid "Sundanese"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: inc/core/helpers/helper-misc.php:848
|
3363 |
msgid "Swahili"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: inc/core/helpers/helper-misc.php:849
|
3367 |
msgid "Swedish"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: inc/core/helpers/helper-misc.php:850
|
3371 |
msgid "Swiss German"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: inc/core/helpers/helper-misc.php:851
|
3375 |
msgid "Tagalog"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: inc/core/helpers/helper-misc.php:852
|
3379 |
msgid "Tahitian"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: inc/core/helpers/helper-misc.php:853
|
3383 |
msgid "Tajik"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: inc/core/helpers/helper-misc.php:854
|
3387 |
msgid "Tamazight"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: inc/core/helpers/helper-misc.php:855
|
3391 |
msgid "Tamil"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: inc/core/helpers/helper-misc.php:856
|
3395 |
msgid "Tatar"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: inc/core/helpers/helper-misc.php:857
|
3399 |
msgid "Telugu"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: inc/core/helpers/helper-misc.php:858
|
3403 |
msgid "Thai"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: inc/core/helpers/helper-misc.php:859
|
3407 |
msgid "Tibetan"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: inc/core/helpers/helper-misc.php:860
|
3411 |
msgid "Tigrinya"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: inc/core/helpers/helper-misc.php:861
|
3415 |
msgid "Turkish"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: inc/core/helpers/helper-misc.php:862
|
3419 |
msgid "Turkmen"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: inc/core/helpers/helper-misc.php:863
|
3423 |
msgid "Tweants"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: inc/core/helpers/helper-misc.php:864
|
3427 |
msgid "Uighur"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: inc/core/helpers/helper-misc.php:865
|
3431 |
msgid "Ukrainian"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: inc/core/helpers/helper-misc.php:866
|
3435 |
msgid "Urdu"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: inc/core/helpers/helper-misc.php:867
|
3439 |
msgid "Uzbek"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: inc/core/helpers/helper-misc.php:868
|
3443 |
msgid "Vietnamese"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: inc/core/helpers/helper-misc.php:869
|
3447 |
msgid "Walloon"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: inc/core/helpers/helper-misc.php:870
|
3451 |
msgid "Welsh"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: inc/core/helpers/helper-misc.php:871
|
3455 |
msgid "Yoruba"
|
3456 |
msgstr ""
|
3457 |
|
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.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -99,6 +99,12 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
= 1.7.0 =
|
103 |
* New feature: Added new control to Step 2 for adding custom HTML class to submit button.
|
104 |
* Improvement: ReCaptcha now loads language based on site locale settings.
|
@@ -418,6 +424,9 @@ Yep! HappyForms free isn't going anywhere but for those looking for even more po
|
|
418 |
|
419 |
== Upgrade Notice ==
|
420 |
|
|
|
|
|
|
|
421 |
= 1.7.0 =
|
422 |
* Better left styled forms, improvements on emails, recaptcha and performance, bugfixes.
|
423 |
|
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 |
|
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.
|
105 |
+
* Bugfix: Query caching was causing issues on some hosts.
|
106 |
+
* Bugfix: A Javascript error was triggered when no notices are shown after a form submit.
|
107 |
+
|
108 |
= 1.7.0 =
|
109 |
* New feature: Added new control to Step 2 for adding custom HTML class to submit button.
|
110 |
* Improvement: ReCaptcha now loads language based on site locale settings.
|
424 |
|
425 |
== Upgrade Notice ==
|
426 |
|
427 |
+
= 1.7.1 =
|
428 |
+
* Minor fixes and improvements.
|
429 |
+
|
430 |
= 1.7.0 =
|
431 |
* Better left styled forms, improvements on emails, recaptcha and performance, bugfixes.
|
432 |
|