Version Description
- Fix translatable field strings.
Download this release
Release Info
| Developer | tlovett1 |
| Plugin | |
| Version | 6.5.1 |
| Comparing to | |
| See all releases | |
Code changes from version 6.5 to 6.5.1
- classes/class-ccf-field-renderer.php +12 -12
- custom-contact-forms.php +1 -1
- languages/custom-contact-forms.mo +0 -0
- languages/custom-contact-forms.po +74 -57
- readme.txt +4 -1
classes/class-ccf-field-renderer.php
CHANGED
|
@@ -553,18 +553,18 @@ class CCF_Field_Renderer {
|
|
| 553 |
<?php if ( ! empty( $errors['street_required'] ) ) : ?>
|
| 554 |
<div class="error"><?php echo esc_html( $errors['street_required'] ); ?></div>
|
| 555 |
<?php endif; ?>
|
| 556 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-street" class="sub-label"
|
| 557 |
</div>
|
| 558 |
<div class="full">
|
| 559 |
<input value="<?php if ( ! empty( $line_two_post_value ) ) echo esc_attr( $line_two_post_value ); ?>" class=" field-input" id="ccf_field_<?php echo esc_attr( $slug ); ?>-line_two" type="text" name="ccf_field_<?php echo esc_attr( $slug ); ?>[line_two]">
|
| 560 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-line_two" class="sub-label"
|
| 561 |
</div>
|
| 562 |
<div class="left">
|
| 563 |
<input value="<?php if ( ! empty( $city_post_value ) ) echo esc_attr( $city_post_value ); ?>" class="<?php if ( ! empty( $errors['city_required'] ) ) : ?>field-error-input<?php endif; ?> field-input" <?php if ( ! empty( $required ) ) : ?>required aria-required="true"<?php endif; ?> type="text" name="ccf_field_<?php echo esc_attr( $slug ); ?>[city]" id="ccf_field_<?php echo esc_attr( $slug ); ?>-city">
|
| 564 |
<?php if ( ! empty( $errors['city_required'] ) ) : ?>
|
| 565 |
<div class="error"><?php echo esc_html( $errors['city_required'] ); ?></div>
|
| 566 |
<?php endif; ?>
|
| 567 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-city" class="sub-label"
|
| 568 |
|
| 569 |
</div>
|
| 570 |
<?php if ( $address_type === 'us' ) { ?>
|
|
@@ -577,7 +577,7 @@ class CCF_Field_Renderer {
|
|
| 577 |
<?php if ( ! empty( $errors['state_required'] ) ) : ?>
|
| 578 |
<div class="error"><?php echo esc_html( $errors['state_required'] ); ?></div>
|
| 579 |
<?php endif; ?>
|
| 580 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-state" class="sub-label"
|
| 581 |
|
| 582 |
</div>
|
| 583 |
<div class="left">
|
|
@@ -585,7 +585,7 @@ class CCF_Field_Renderer {
|
|
| 585 |
<?php if ( ! empty( $errors['zipcode_required'] ) ) : ?>
|
| 586 |
<div class="error"><?php echo esc_html( $errors['zipcode_required'] ); ?></div>
|
| 587 |
<?php endif; ?>
|
| 588 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-zipcode" class="sub-label"
|
| 589 |
|
| 590 |
</div>
|
| 591 |
<div class="ccf-clear"></div>
|
|
@@ -595,7 +595,7 @@ class CCF_Field_Renderer {
|
|
| 595 |
<?php if ( ! empty( $errors['state_required'] ) ) : ?>
|
| 596 |
<div class="error"><?php echo esc_html( $errors['state_required'] ); ?></div>
|
| 597 |
<?php endif; ?>
|
| 598 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-state" class="sub-label"
|
| 599 |
|
| 600 |
</div>
|
| 601 |
<div class="left">
|
|
@@ -603,7 +603,7 @@ class CCF_Field_Renderer {
|
|
| 603 |
<?php if ( ! empty( $errors['zipcode_required'] ) ) : ?>
|
| 604 |
<div class="error"><?php echo esc_html( $errors['zipcode_required'] ); ?></div>
|
| 605 |
<?php endif; ?>
|
| 606 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-zipcode" class="sub-label"
|
| 607 |
|
| 608 |
</div>
|
| 609 |
<div class="right">
|
|
@@ -615,7 +615,7 @@ class CCF_Field_Renderer {
|
|
| 615 |
<?php if ( ! empty( $errors['country_required'] ) ) : ?>
|
| 616 |
<div class="error"><?php echo esc_html( $errors['country_required'] ); ?></div>
|
| 617 |
<?php endif; ?>
|
| 618 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-country" class="sub-label"
|
| 619 |
|
| 620 |
</div>
|
| 621 |
<div class="ccf-clear"></div>
|
|
@@ -800,14 +800,14 @@ class CCF_Field_Renderer {
|
|
| 800 |
<?php if ( ! empty( $errors['email_required'] ) ) : ?>
|
| 801 |
<div class="error"><?php echo esc_html( $errors['email_required'] ); ?></div>
|
| 802 |
<?php endif; ?>
|
| 803 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>" class="sub-label"
|
| 804 |
</div>
|
| 805 |
<div class="right">
|
| 806 |
<input class="field-input <?php if ( ! empty( $errors['confirm_required'] ) || ! empty( $errors['match'] ) || ! empty( $errors['email'] ) ) : ?>field-error-input<?php endif; ?>" <?php if ( ! empty( $required ) ) : ?>required aria-required="true"<?php endif; ?> name="ccf_field_<?php echo esc_attr( $slug ); ?>[confirm]" id="ccf_field_<?php echo esc_attr( $slug ); ?>-confirm" value="<?php if ( ! empty( $confirm_post_value ) ) { echo esc_attr( $confirm_post_value ); } ?>" type="text">
|
| 807 |
<?php if ( ! empty( $errors['confirm_required'] ) ) : ?>
|
| 808 |
<div class="error"><?php echo esc_html( $errors['confirm_required'] ); ?></div>
|
| 809 |
<?php endif; ?>
|
| 810 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-confirm" class="sub-label"
|
| 811 |
</div>
|
| 812 |
<?php if ( ! empty( $errors['match'] ) ) : ?>
|
| 813 |
<div class="error"><?php echo esc_html( $errors['match'] ); ?></div>
|
|
@@ -873,14 +873,14 @@ class CCF_Field_Renderer {
|
|
| 873 |
<?php if ( ! empty( $errors['first_required'] ) ) : ?>
|
| 874 |
<div class="error"><?php echo esc_html( $errors['first_required'] ); ?></div>
|
| 875 |
<?php endif; ?>
|
| 876 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-first" class="sub-label"
|
| 877 |
</div>
|
| 878 |
<div class="right">
|
| 879 |
<input value="<?php if ( ! empty( $last_post_value ) ) echo esc_attr( $last_post_value ); ?>" class="<?php if ( ! empty( $errors['last_required'] ) ) : ?>field-error-input<?php endif; ?> field-input" <?php if ( ! empty( $required ) ) : ?>required aria-required="true"<?php endif; ?> type="text" name="ccf_field_<?php echo esc_attr( $slug ); ?>[last]" id="ccf_field_<?php echo esc_attr( $slug ); ?>-last">
|
| 880 |
<?php if ( ! empty( $errors['last_required'] ) ) : ?>
|
| 881 |
<div class="error"><?php echo esc_html( $errors['last_required'] ); ?></div>
|
| 882 |
<?php endif; ?>
|
| 883 |
-
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-last" class="sub-label"
|
| 884 |
</div>
|
| 885 |
|
| 886 |
<div class="ccf-clear"></div>
|
| 553 |
<?php if ( ! empty( $errors['street_required'] ) ) : ?>
|
| 554 |
<div class="error"><?php echo esc_html( $errors['street_required'] ); ?></div>
|
| 555 |
<?php endif; ?>
|
| 556 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-street" class="sub-label"><?php esc_html_e( 'Street Address', 'custom-contact-forms' ); ?></label>
|
| 557 |
</div>
|
| 558 |
<div class="full">
|
| 559 |
<input value="<?php if ( ! empty( $line_two_post_value ) ) echo esc_attr( $line_two_post_value ); ?>" class=" field-input" id="ccf_field_<?php echo esc_attr( $slug ); ?>-line_two" type="text" name="ccf_field_<?php echo esc_attr( $slug ); ?>[line_two]">
|
| 560 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-line_two" class="sub-label"><?php esc_html_e( 'Address Line 2', 'custom-contact-forms' ); ?></label>
|
| 561 |
</div>
|
| 562 |
<div class="left">
|
| 563 |
<input value="<?php if ( ! empty( $city_post_value ) ) echo esc_attr( $city_post_value ); ?>" class="<?php if ( ! empty( $errors['city_required'] ) ) : ?>field-error-input<?php endif; ?> field-input" <?php if ( ! empty( $required ) ) : ?>required aria-required="true"<?php endif; ?> type="text" name="ccf_field_<?php echo esc_attr( $slug ); ?>[city]" id="ccf_field_<?php echo esc_attr( $slug ); ?>-city">
|
| 564 |
<?php if ( ! empty( $errors['city_required'] ) ) : ?>
|
| 565 |
<div class="error"><?php echo esc_html( $errors['city_required'] ); ?></div>
|
| 566 |
<?php endif; ?>
|
| 567 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-city" class="sub-label"><?php esc_html_e( 'City', 'custom-contact-forms' ); ?></label>
|
| 568 |
|
| 569 |
</div>
|
| 570 |
<?php if ( $address_type === 'us' ) { ?>
|
| 577 |
<?php if ( ! empty( $errors['state_required'] ) ) : ?>
|
| 578 |
<div class="error"><?php echo esc_html( $errors['state_required'] ); ?></div>
|
| 579 |
<?php endif; ?>
|
| 580 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-state" class="sub-label"><?php esc_html_e( 'State', 'custom-contact-forms' ); ?></label>
|
| 581 |
|
| 582 |
</div>
|
| 583 |
<div class="left">
|
| 585 |
<?php if ( ! empty( $errors['zipcode_required'] ) ) : ?>
|
| 586 |
<div class="error"><?php echo esc_html( $errors['zipcode_required'] ); ?></div>
|
| 587 |
<?php endif; ?>
|
| 588 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-zipcode" class="sub-label"><?php esc_html_e( 'ZIP Code', 'custom-contact-forms' ); ?></label>
|
| 589 |
|
| 590 |
</div>
|
| 591 |
<div class="ccf-clear"></div>
|
| 595 |
<?php if ( ! empty( $errors['state_required'] ) ) : ?>
|
| 596 |
<div class="error"><?php echo esc_html( $errors['state_required'] ); ?></div>
|
| 597 |
<?php endif; ?>
|
| 598 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-state" class="sub-label"><?php esc_html_e( 'State / Region / Province', 'custom-contact-forms' ); ?></label>
|
| 599 |
|
| 600 |
</div>
|
| 601 |
<div class="left">
|
| 603 |
<?php if ( ! empty( $errors['zipcode_required'] ) ) : ?>
|
| 604 |
<div class="error"><?php echo esc_html( $errors['zipcode_required'] ); ?></div>
|
| 605 |
<?php endif; ?>
|
| 606 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-zipcode" class="sub-label"><?php esc_html_e( 'ZIP / Postal Code', 'custom-contact-forms' ); ?></label>
|
| 607 |
|
| 608 |
</div>
|
| 609 |
<div class="right">
|
| 615 |
<?php if ( ! empty( $errors['country_required'] ) ) : ?>
|
| 616 |
<div class="error"><?php echo esc_html( $errors['country_required'] ); ?></div>
|
| 617 |
<?php endif; ?>
|
| 618 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-country" class="sub-label"><?php esc_html_e( 'Country', 'custom-contact-forms' ); ?></label>
|
| 619 |
|
| 620 |
</div>
|
| 621 |
<div class="ccf-clear"></div>
|
| 800 |
<?php if ( ! empty( $errors['email_required'] ) ) : ?>
|
| 801 |
<div class="error"><?php echo esc_html( $errors['email_required'] ); ?></div>
|
| 802 |
<?php endif; ?>
|
| 803 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>" class="sub-label"><?php esc_html_e( 'Email', 'custom-contact-forms' ); ?></label>
|
| 804 |
</div>
|
| 805 |
<div class="right">
|
| 806 |
<input class="field-input <?php if ( ! empty( $errors['confirm_required'] ) || ! empty( $errors['match'] ) || ! empty( $errors['email'] ) ) : ?>field-error-input<?php endif; ?>" <?php if ( ! empty( $required ) ) : ?>required aria-required="true"<?php endif; ?> name="ccf_field_<?php echo esc_attr( $slug ); ?>[confirm]" id="ccf_field_<?php echo esc_attr( $slug ); ?>-confirm" value="<?php if ( ! empty( $confirm_post_value ) ) { echo esc_attr( $confirm_post_value ); } ?>" type="text">
|
| 807 |
<?php if ( ! empty( $errors['confirm_required'] ) ) : ?>
|
| 808 |
<div class="error"><?php echo esc_html( $errors['confirm_required'] ); ?></div>
|
| 809 |
<?php endif; ?>
|
| 810 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-confirm" class="sub-label"><?php esc_html_e( 'Confirm Email', 'custom-contact-forms' ); ?></label>
|
| 811 |
</div>
|
| 812 |
<?php if ( ! empty( $errors['match'] ) ) : ?>
|
| 813 |
<div class="error"><?php echo esc_html( $errors['match'] ); ?></div>
|
| 873 |
<?php if ( ! empty( $errors['first_required'] ) ) : ?>
|
| 874 |
<div class="error"><?php echo esc_html( $errors['first_required'] ); ?></div>
|
| 875 |
<?php endif; ?>
|
| 876 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-first" class="sub-label"><?php esc_html_e( 'First', 'custom-contact-forms' ); ?></label>
|
| 877 |
</div>
|
| 878 |
<div class="right">
|
| 879 |
<input value="<?php if ( ! empty( $last_post_value ) ) echo esc_attr( $last_post_value ); ?>" class="<?php if ( ! empty( $errors['last_required'] ) ) : ?>field-error-input<?php endif; ?> field-input" <?php if ( ! empty( $required ) ) : ?>required aria-required="true"<?php endif; ?> type="text" name="ccf_field_<?php echo esc_attr( $slug ); ?>[last]" id="ccf_field_<?php echo esc_attr( $slug ); ?>-last">
|
| 880 |
<?php if ( ! empty( $errors['last_required'] ) ) : ?>
|
| 881 |
<div class="error"><?php echo esc_html( $errors['last_required'] ); ?></div>
|
| 882 |
<?php endif; ?>
|
| 883 |
+
<label for="ccf_field_<?php echo esc_attr( $slug ); ?>-last" class="sub-label"><?php esc_html_e( 'Last', 'custom-contact-forms' ); ?></label>
|
| 884 |
</div>
|
| 885 |
|
| 886 |
<div class="ccf-clear"></div>
|
custom-contact-forms.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Plugin URI: http://www.taylorlovett.com
|
| 5 |
* Description: Build beautiful custom forms the WordPress way. View live previews of your forms while you build them.
|
| 6 |
* Author: Taylor Lovett
|
| 7 |
-
* Version: 6.5
|
| 8 |
* Author URI: http://www.taylorlovett.com
|
| 9 |
*/
|
| 10 |
|
| 4 |
* Plugin URI: http://www.taylorlovett.com
|
| 5 |
* Description: Build beautiful custom forms the WordPress way. View live previews of your forms while you build them.
|
| 6 |
* Author: Taylor Lovett
|
| 7 |
+
* Version: 6.5.1
|
| 8 |
* Author URI: http://www.taylorlovett.com
|
| 9 |
*/
|
| 10 |
|
languages/custom-contact-forms.mo
CHANGED
|
Binary file
|
languages/custom-contact-forms.po
CHANGED
|
@@ -3,10 +3,10 @@
|
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: Custom Contact Forms\n"
|
| 6 |
-
"Report-Msgid-Bugs-To: https://github.com/tlovett1/
|
| 7 |
"issues\n"
|
| 8 |
-
"POT-Creation-Date: 2015-03-
|
| 9 |
-
"PO-Revision-Date: 2015-03-
|
| 10 |
"Last-Translator: Taylor Lovett <tlovett88@gmail.com>\n"
|
| 11 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 12 |
"Language: en\n"
|
|
@@ -130,6 +130,70 @@ msgstr ""
|
|
| 130 |
msgid "Max file size is %d MB. "
|
| 131 |
msgstr ""
|
| 132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 133 |
#: ../classes/class-ccf-field-renderer.php:955
|
| 134 |
#: ../classes/class-ccf-field-renderer.php:976
|
| 135 |
#: ../classes/class-ccf-form-manager.php:1073
|
|
@@ -428,10 +492,15 @@ msgstr ""
|
|
| 428 |
|
| 429 |
#: ../classes/class-ccf-form-handler.php:815
|
| 430 |
#, php-format
|
| 431 |
-
msgid "%s: Form Submission
|
| 432 |
msgstr ""
|
| 433 |
|
| 434 |
-
#: ../classes/class-ccf-form-handler.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 435 |
#: ../classes/class-ccf-form-renderer.php:119
|
| 436 |
msgid "Thank you for your submission."
|
| 437 |
msgstr ""
|
|
@@ -885,62 +954,10 @@ msgstr ""
|
|
| 885 |
msgid "This is the sub-heading text."
|
| 886 |
msgstr ""
|
| 887 |
|
| 888 |
-
#: ../classes/class-ccf-form-manager.php:1054
|
| 889 |
-
msgid "First"
|
| 890 |
-
msgstr ""
|
| 891 |
-
|
| 892 |
-
#: ../classes/class-ccf-form-manager.php:1058
|
| 893 |
-
msgid "Last"
|
| 894 |
-
msgstr ""
|
| 895 |
-
|
| 896 |
-
#: ../classes/class-ccf-form-manager.php:1118
|
| 897 |
-
#: ../classes/class-ccf-form-manager.php:1143
|
| 898 |
-
msgid "Street Address"
|
| 899 |
-
msgstr ""
|
| 900 |
-
|
| 901 |
-
#: ../classes/class-ccf-form-manager.php:1122
|
| 902 |
-
#: ../classes/class-ccf-form-manager.php:1147
|
| 903 |
-
msgid "Address Line 2"
|
| 904 |
-
msgstr ""
|
| 905 |
-
|
| 906 |
-
#: ../classes/class-ccf-form-manager.php:1126
|
| 907 |
-
#: ../classes/class-ccf-form-manager.php:1151
|
| 908 |
-
msgid "City"
|
| 909 |
-
msgstr ""
|
| 910 |
-
|
| 911 |
-
#: ../classes/class-ccf-form-manager.php:1134
|
| 912 |
-
msgid "State"
|
| 913 |
-
msgstr ""
|
| 914 |
-
|
| 915 |
-
#: ../classes/class-ccf-form-manager.php:1138
|
| 916 |
-
msgid "ZIP Code"
|
| 917 |
-
msgstr ""
|
| 918 |
-
|
| 919 |
-
#: ../classes/class-ccf-form-manager.php:1155
|
| 920 |
-
msgid "State / Region / Province"
|
| 921 |
-
msgstr ""
|
| 922 |
-
|
| 923 |
-
#: ../classes/class-ccf-form-manager.php:1159
|
| 924 |
-
msgid "ZIP / Postal Code"
|
| 925 |
-
msgstr ""
|
| 926 |
-
|
| 927 |
-
#: ../classes/class-ccf-form-manager.php:1167
|
| 928 |
-
msgid "Country"
|
| 929 |
-
msgstr ""
|
| 930 |
-
|
| 931 |
#: ../classes/class-ccf-form-manager.php:1178
|
| 932 |
msgid "email@example.com"
|
| 933 |
msgstr ""
|
| 934 |
|
| 935 |
-
#: ../classes/class-ccf-form-manager.php:1182
|
| 936 |
-
#: ../classes/class-ccf-form-manager.php:1483
|
| 937 |
-
msgid "Email"
|
| 938 |
-
msgstr ""
|
| 939 |
-
|
| 940 |
-
#: ../classes/class-ccf-form-manager.php:1186
|
| 941 |
-
msgid "Confirm Email"
|
| 942 |
-
msgstr ""
|
| 943 |
-
|
| 944 |
#: ../classes/class-ccf-form-manager.php:1216
|
| 945 |
msgid "Edit"
|
| 946 |
msgstr ""
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: Custom Contact Forms\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: https://github.com/tlovett1/custom-contact-forms/"
|
| 7 |
"issues\n"
|
| 8 |
+
"POT-Creation-Date: 2015-03-27 10:30-0500\n"
|
| 9 |
+
"PO-Revision-Date: 2015-03-27 10:30-0500\n"
|
| 10 |
"Last-Translator: Taylor Lovett <tlovett88@gmail.com>\n"
|
| 11 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 12 |
"Language: en\n"
|
| 130 |
msgid "Max file size is %d MB. "
|
| 131 |
msgstr ""
|
| 132 |
|
| 133 |
+
#: ../classes/class-ccf-field-renderer.php:556
|
| 134 |
+
#: ../classes/class-ccf-form-manager.php:1118
|
| 135 |
+
#: ../classes/class-ccf-form-manager.php:1143
|
| 136 |
+
msgid "Street Address"
|
| 137 |
+
msgstr ""
|
| 138 |
+
|
| 139 |
+
#: ../classes/class-ccf-field-renderer.php:560
|
| 140 |
+
#: ../classes/class-ccf-form-manager.php:1122
|
| 141 |
+
#: ../classes/class-ccf-form-manager.php:1147
|
| 142 |
+
msgid "Address Line 2"
|
| 143 |
+
msgstr ""
|
| 144 |
+
|
| 145 |
+
#: ../classes/class-ccf-field-renderer.php:567
|
| 146 |
+
#: ../classes/class-ccf-form-manager.php:1126
|
| 147 |
+
#: ../classes/class-ccf-form-manager.php:1151
|
| 148 |
+
msgid "City"
|
| 149 |
+
msgstr ""
|
| 150 |
+
|
| 151 |
+
#: ../classes/class-ccf-field-renderer.php:580
|
| 152 |
+
#: ../classes/class-ccf-form-manager.php:1134
|
| 153 |
+
msgid "State"
|
| 154 |
+
msgstr ""
|
| 155 |
+
|
| 156 |
+
#: ../classes/class-ccf-field-renderer.php:588
|
| 157 |
+
#: ../classes/class-ccf-form-manager.php:1138
|
| 158 |
+
msgid "ZIP Code"
|
| 159 |
+
msgstr ""
|
| 160 |
+
|
| 161 |
+
#: ../classes/class-ccf-field-renderer.php:598
|
| 162 |
+
#: ../classes/class-ccf-form-manager.php:1155
|
| 163 |
+
msgid "State / Region / Province"
|
| 164 |
+
msgstr ""
|
| 165 |
+
|
| 166 |
+
#: ../classes/class-ccf-field-renderer.php:606
|
| 167 |
+
#: ../classes/class-ccf-form-manager.php:1159
|
| 168 |
+
msgid "ZIP / Postal Code"
|
| 169 |
+
msgstr ""
|
| 170 |
+
|
| 171 |
+
#: ../classes/class-ccf-field-renderer.php:618
|
| 172 |
+
#: ../classes/class-ccf-form-manager.php:1167
|
| 173 |
+
msgid "Country"
|
| 174 |
+
msgstr ""
|
| 175 |
+
|
| 176 |
+
#: ../classes/class-ccf-field-renderer.php:803
|
| 177 |
+
#: ../classes/class-ccf-form-manager.php:1182
|
| 178 |
+
#: ../classes/class-ccf-form-manager.php:1483
|
| 179 |
+
msgid "Email"
|
| 180 |
+
msgstr ""
|
| 181 |
+
|
| 182 |
+
#: ../classes/class-ccf-field-renderer.php:810
|
| 183 |
+
#: ../classes/class-ccf-form-manager.php:1186
|
| 184 |
+
msgid "Confirm Email"
|
| 185 |
+
msgstr ""
|
| 186 |
+
|
| 187 |
+
#: ../classes/class-ccf-field-renderer.php:876
|
| 188 |
+
#: ../classes/class-ccf-form-manager.php:1054
|
| 189 |
+
msgid "First"
|
| 190 |
+
msgstr ""
|
| 191 |
+
|
| 192 |
+
#: ../classes/class-ccf-field-renderer.php:883
|
| 193 |
+
#: ../classes/class-ccf-form-manager.php:1058
|
| 194 |
+
msgid "Last"
|
| 195 |
+
msgstr ""
|
| 196 |
+
|
| 197 |
#: ../classes/class-ccf-field-renderer.php:955
|
| 198 |
#: ../classes/class-ccf-field-renderer.php:976
|
| 199 |
#: ../classes/class-ccf-form-manager.php:1073
|
| 492 |
|
| 493 |
#: ../classes/class-ccf-form-handler.php:815
|
| 494 |
#, php-format
|
| 495 |
+
msgid "%s: Form Submission"
|
| 496 |
msgstr ""
|
| 497 |
|
| 498 |
+
#: ../classes/class-ccf-form-handler.php:817
|
| 499 |
+
#, php-format
|
| 500 |
+
msgid " to \"%s\""
|
| 501 |
+
msgstr ""
|
| 502 |
+
|
| 503 |
+
#: ../classes/class-ccf-form-handler.php:832
|
| 504 |
#: ../classes/class-ccf-form-renderer.php:119
|
| 505 |
msgid "Thank you for your submission."
|
| 506 |
msgstr ""
|
| 954 |
msgid "This is the sub-heading text."
|
| 955 |
msgstr ""
|
| 956 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 957 |
#: ../classes/class-ccf-form-manager.php:1178
|
| 958 |
msgid "email@example.com"
|
| 959 |
msgstr ""
|
| 960 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 961 |
#: ../classes/class-ccf-form-manager.php:1216
|
| 962 |
msgid "Edit"
|
| 963 |
msgstr ""
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
| 4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers, forms
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.2
|
| 7 |
-
Stable tag: 6.5
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -35,6 +35,9 @@ For questions, feature requests, and support concerning the Custom Contact Forms
|
|
| 35 |
|
| 36 |
== Changelog ==
|
| 37 |
|
|
|
|
|
|
|
|
|
|
| 38 |
= 6.5 =
|
| 39 |
* Add import/export functionality
|
| 40 |
|
| 4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers, forms
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.2
|
| 7 |
+
Stable tag: 6.5.1
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 35 |
|
| 36 |
== Changelog ==
|
| 37 |
|
| 38 |
+
= 6.5.1 =
|
| 39 |
+
* Fix translatable field strings.
|
| 40 |
+
|
| 41 |
= 6.5 =
|
| 42 |
* Add import/export functionality
|
| 43 |
|
