Version Description
- Corrected admin script dependencies.
- Shows a hint for keyboard operation in the editor screen.
- Translations for Estonian, Portuguese, Dutch, and Turkish have been updated.
Download this release
Release Info
Developer | takayukister |
Plugin | Contact Form 7 |
Version | 4.2.1 |
Comparing to | |
See all releases |
Code changes from version 4.2 to 4.2.1
- admin/admin.php +7 -9
- admin/css/styles.css +5 -0
- admin/edit-contact-form.php +2 -0
- admin/js/scripts.js +8 -0
- languages/contact-form-7-et.mo +0 -0
- languages/contact-form-7-ja.mo +0 -0
- languages/contact-form-7-nl_NL.mo +0 -0
- languages/contact-form-7-pt_PT.mo +0 -0
- languages/contact-form-7-tr_TR.mo +0 -0
- languages/contact-form-7.pot +185 -180
- modules/acceptance.php +3 -1
- modules/captcha.php +3 -1
- modules/checkbox.php +3 -1
- modules/date.php +3 -1
- modules/file.php +3 -1
- modules/number.php +3 -1
- modules/quiz.php +3 -1
- modules/select.php +3 -1
- modules/submit.php +3 -1
- modules/text.php +3 -1
- modules/textarea.php +3 -1
- readme.txt +9 -25
- wp-contact-form-7.php +2 -2
admin/admin.php
CHANGED
@@ -198,23 +198,21 @@ function wpcf7_admin_enqueue_scripts( $hook_suffix ) {
|
|
198 |
array(), WPCF7_VERSION, 'all' );
|
199 |
}
|
200 |
|
201 |
-
add_thickbox();
|
202 |
-
|
203 |
-
wp_enqueue_script( 'wpcf7-admin-taggenerator',
|
204 |
-
wpcf7_plugin_url( 'admin/js/tag-generator.js' ),
|
205 |
-
array( 'jquery' ), WPCF7_VERSION, true );
|
206 |
-
|
207 |
wp_enqueue_script( 'wpcf7-admin',
|
208 |
wpcf7_plugin_url( 'admin/js/scripts.js' ),
|
209 |
-
array( 'jquery', 'jquery-ui-tabs'
|
210 |
WPCF7_VERSION, true );
|
211 |
|
212 |
-
$current_screen = get_current_screen();
|
213 |
-
|
214 |
wp_localize_script( 'wpcf7-admin', '_wpcf7', array(
|
215 |
'pluginUrl' => wpcf7_plugin_url(),
|
216 |
'saveAlert' => __( "The changes you made will be lost if you navigate away from this page.", 'contact-form-7' ),
|
217 |
'activeTab' => isset( $_GET['active-tab'] ) ? (int) $_GET['active-tab'] : 0 ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
}
|
219 |
|
220 |
function wpcf7_admin_management_page() {
|
198 |
array(), WPCF7_VERSION, 'all' );
|
199 |
}
|
200 |
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
wp_enqueue_script( 'wpcf7-admin',
|
202 |
wpcf7_plugin_url( 'admin/js/scripts.js' ),
|
203 |
+
array( 'jquery', 'jquery-ui-tabs' ),
|
204 |
WPCF7_VERSION, true );
|
205 |
|
|
|
|
|
206 |
wp_localize_script( 'wpcf7-admin', '_wpcf7', array(
|
207 |
'pluginUrl' => wpcf7_plugin_url(),
|
208 |
'saveAlert' => __( "The changes you made will be lost if you navigate away from this page.", 'contact-form-7' ),
|
209 |
'activeTab' => isset( $_GET['active-tab'] ) ? (int) $_GET['active-tab'] : 0 ) );
|
210 |
+
|
211 |
+
add_thickbox();
|
212 |
+
|
213 |
+
wp_enqueue_script( 'wpcf7-admin-taggenerator',
|
214 |
+
wpcf7_plugin_url( 'admin/js/tag-generator.js' ),
|
215 |
+
array( 'jquery', 'thickbox', 'wpcf7-admin' ), WPCF7_VERSION, true );
|
216 |
}
|
217 |
|
218 |
function wpcf7_admin_management_page() {
|
admin/css/styles.css
CHANGED
@@ -42,6 +42,11 @@ span.shortcode > input {
|
|
42 |
border-bottom: 1px solid transparent;
|
43 |
}
|
44 |
|
|
|
|
|
|
|
|
|
|
|
45 |
/*
|
46 |
* Tabs
|
47 |
*/
|
42 |
border-bottom: 1px solid transparent;
|
43 |
}
|
44 |
|
45 |
+
.keyboard-interaction {
|
46 |
+
visibility: hidden;
|
47 |
+
color: #23282d;
|
48 |
+
}
|
49 |
+
|
50 |
/*
|
51 |
* Tabs
|
52 |
*/
|
admin/edit-contact-form.php
CHANGED
@@ -167,6 +167,8 @@ if ( $post ) :
|
|
167 |
|
168 |
<div id="postbox-container-2" class="postbox-container">
|
169 |
<div id="contact-form-editor">
|
|
|
|
|
170 |
<?php
|
171 |
|
172 |
$editor = new WPCF7_Editor( $post );
|
167 |
|
168 |
<div id="postbox-container-2" class="postbox-container">
|
169 |
<div id="contact-form-editor">
|
170 |
+
<div class="keyboard-interaction"><?php echo sprintf( esc_html( __( '%s keys switch panels', 'contact-form-7' ) ), '<span class="dashicons dashicons-leftright"></span>' ); ?></div>
|
171 |
+
|
172 |
<?php
|
173 |
|
174 |
$editor = new WPCF7_Editor( $post );
|
admin/js/scripts.js
CHANGED
@@ -29,6 +29,14 @@
|
|
29 |
}
|
30 |
});
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
$('input:checkbox.toggle-form-table').click(function(event) {
|
33 |
$(this).wpcf7ToggleFormTable();
|
34 |
}).wpcf7ToggleFormTable();
|
29 |
}
|
30 |
});
|
31 |
|
32 |
+
$('#contact-form-editor-tabs').focusin(function(event) {
|
33 |
+
$('#contact-form-editor .keyboard-interaction').css(
|
34 |
+
'visibility', 'visible');
|
35 |
+
}).focusout(function(event) {
|
36 |
+
$('#contact-form-editor .keyboard-interaction').css(
|
37 |
+
'visibility', 'hidden');
|
38 |
+
});
|
39 |
+
|
40 |
$('input:checkbox.toggle-form-table').click(function(event) {
|
41 |
$(this).wpcf7ToggleFormTable();
|
42 |
}).wpcf7ToggleFormTable();
|
languages/contact-form-7-et.mo
CHANGED
Binary file
|
languages/contact-form-7-ja.mo
CHANGED
Binary file
|
languages/contact-form-7-nl_NL.mo
CHANGED
Binary file
|
languages/contact-form-7-pt_PT.mo
CHANGED
Binary file
|
languages/contact-form-7-tr_TR.mo
CHANGED
Binary file
|
languages/contact-form-7.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Contact Form 7\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2015-06-
|
7 |
"PO-Revision-Date: 2015-05-18 21:49+0900\n"
|
8 |
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
@@ -35,23 +35,23 @@ msgid "Edit Contact Form"
|
|
35 |
msgstr ""
|
36 |
|
37 |
#: contact-form-7/admin/admin.php:17 contact-form-7/admin/admin.php:178
|
38 |
-
#: contact-form-7/admin/admin.php:
|
39 |
#: contact-form-7/includes/contact-form.php:29
|
40 |
msgid "Contact Forms"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: contact-form-7/admin/admin.php:24 contact-form-7/admin/admin.php:
|
44 |
#: contact-form-7/admin/edit-contact-form.php:36
|
45 |
msgid "Add New Contact Form"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: contact-form-7/admin/admin.php:25 contact-form-7/admin/admin.php:
|
49 |
-
#: contact-form-7/admin/admin.php:
|
50 |
#: contact-form-7/admin/edit-contact-form.php:41
|
51 |
msgid "Add New"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: contact-form-7/admin/admin.php:35 contact-form-7/admin/admin.php:
|
55 |
msgid "Integration with Other Services"
|
56 |
msgstr ""
|
57 |
|
@@ -71,152 +71,152 @@ msgstr ""
|
|
71 |
msgid "Error in deleting."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: contact-form-7/admin/admin.php:
|
75 |
msgid "The changes you made will be lost if you navigate away from this page."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: contact-form-7/admin/admin.php:
|
79 |
#, php-format
|
80 |
msgid "Search results for “%s”"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: contact-form-7/admin/admin.php:
|
84 |
msgid "Search Contact Forms"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: contact-form-7/admin/admin.php:
|
88 |
#, php-format
|
89 |
msgid "Use the default language (%s)"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: contact-form-7/admin/admin.php:
|
93 |
msgid "Or"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: contact-form-7/admin/admin.php:
|
97 |
msgid "(select language)"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: contact-form-7/admin/admin.php:
|
101 |
msgid "Contact form created."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: contact-form-7/admin/admin.php:
|
105 |
msgid "Contact form saved."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: contact-form-7/admin/admin.php:
|
109 |
msgid "Contact form deleted."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: contact-form-7/admin/admin.php:
|
113 |
msgid "Settings"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: contact-form-7/admin/admin.php:
|
117 |
#, php-format
|
118 |
msgid ""
|
119 |
"<strong>Contact Form 7 %1$s requires WordPress %2$s or higher.</strong> "
|
120 |
"Please <a href=\"%3$s\">update WordPress</a> first."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: contact-form-7/admin/admin.php:
|
124 |
msgid "Dismiss"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: contact-form-7/admin/admin.php:
|
128 |
msgid "Contact Form 7 Needs Your Support"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: contact-form-7/admin/admin.php:
|
132 |
msgid ""
|
133 |
"It is hard to continue development and support for this plugin without "
|
134 |
"contributions from users like you. If you enjoy using Contact Form 7 and "
|
135 |
"find it useful, please consider making a donation."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: contact-form-7/admin/admin.php:
|
139 |
msgid "http://contactform7.com/donate/"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: contact-form-7/admin/admin.php:
|
143 |
msgid "Donate"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: contact-form-7/admin/admin.php:
|
147 |
msgid "Get Started"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: contact-form-7/admin/admin.php:
|
151 |
msgid "http://contactform7.com/getting-started-with-contact-form-7/"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: contact-form-7/admin/admin.php:
|
155 |
msgid "Getting Started with Contact Form 7"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: contact-form-7/admin/admin.php:
|
159 |
msgid "http://contactform7.com/admin-screen/"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: contact-form-7/admin/admin.php:
|
163 |
msgid "Admin Screen"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: contact-form-7/admin/admin.php:
|
167 |
msgid "http://contactform7.com/tag-syntax/"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: contact-form-7/admin/admin.php:
|
171 |
msgid "How Tags Work"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: contact-form-7/admin/admin.php:
|
175 |
msgid "http://contactform7.com/setting-up-mail/"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: contact-form-7/admin/admin.php:
|
179 |
msgid "Setting Up Mail"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: contact-form-7/admin/admin.php:
|
183 |
msgid "Did You Know?"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: contact-form-7/admin/admin.php:
|
187 |
msgid "http://contactform7.com/spam-filtering-with-akismet/"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: contact-form-7/admin/admin.php:
|
191 |
msgid "Spam Filtering with Akismet"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: contact-form-7/admin/admin.php:
|
195 |
msgid "http://contactform7.com/save-submitted-messages-with-flamingo/"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: contact-form-7/admin/admin.php:
|
199 |
msgid "Save Messages with Flamingo"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: contact-form-7/admin/admin.php:
|
203 |
msgid "http://contactform7.com/selectable-recipient-with-pipes/"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: contact-form-7/admin/admin.php:
|
207 |
msgid "Selectable Recipient with Pipes"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: contact-form-7/admin/admin.php:
|
211 |
msgid ""
|
212 |
"http://contactform7.com/tracking-form-submissions-with-google-analytics/"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: contact-form-7/admin/admin.php:
|
216 |
msgid "Tracking with Google Analytics"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: contact-form-7/admin/admin.php:
|
220 |
msgid "You are not allowed to edit this contact form."
|
221 |
msgstr ""
|
222 |
|
@@ -293,27 +293,32 @@ msgstr ""
|
|
293 |
msgid "Support"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
|
|
|
|
|
|
|
|
|
|
297 |
#: contact-form-7/admin/includes/editor.php:45
|
298 |
msgid "Form"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
302 |
#: contact-form-7/admin/includes/editor.php:72
|
303 |
msgid "Mail"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
307 |
#: contact-form-7/admin/includes/editor.php:167
|
308 |
msgid "Messages"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
312 |
#, php-format
|
313 |
msgid "Additional Settings (%d)"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
317 |
#: contact-form-7/admin/includes/editor.php:190
|
318 |
#: contact-form-7/admin/includes/editor.php:195
|
319 |
msgid "Additional Settings"
|
@@ -969,78 +974,78 @@ msgstr ""
|
|
969 |
msgid "Vietnamese"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: contact-form-7/modules/acceptance.php:
|
973 |
msgid "acceptance"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: contact-form-7/modules/acceptance.php:
|
977 |
#, php-format
|
978 |
msgid ""
|
979 |
"Generate a form-tag for an acceptance checkbox. For more details, see %s."
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: contact-form-7/modules/acceptance.php:
|
983 |
msgid "http://contactform7.com/acceptance-checkbox/"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: contact-form-7/modules/acceptance.php:
|
987 |
msgid "Acceptance Checkbox"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: contact-form-7/modules/acceptance.php:
|
991 |
-
#: contact-form-7/modules/captcha.php:
|
992 |
-
#: contact-form-7/modules/checkbox.php:
|
993 |
-
#: contact-form-7/modules/file.php:
|
994 |
-
#: contact-form-7/modules/quiz.php:
|
995 |
-
#: contact-form-7/modules/text.php:
|
996 |
msgid "Name"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: contact-form-7/modules/acceptance.php:
|
1000 |
-
#: contact-form-7/modules/acceptance.php:
|
1001 |
-
#: contact-form-7/modules/checkbox.php:
|
1002 |
-
#: contact-form-7/modules/checkbox.php:
|
1003 |
-
#: contact-form-7/modules/select.php:
|
1004 |
msgid "Options"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: contact-form-7/modules/acceptance.php:
|
1008 |
msgid "Make this checkbox checked by default"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: contact-form-7/modules/acceptance.php:
|
1012 |
msgid "Make this work inversely"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: contact-form-7/modules/acceptance.php:
|
1016 |
-
#: contact-form-7/modules/captcha.php:
|
1017 |
-
#: contact-form-7/modules/captcha.php:
|
1018 |
-
#: contact-form-7/modules/checkbox.php:
|
1019 |
-
#: contact-form-7/modules/file.php:
|
1020 |
-
#: contact-form-7/modules/quiz.php:
|
1021 |
-
#: contact-form-7/modules/submit.php:
|
1022 |
-
#: contact-form-7/modules/textarea.php:
|
1023 |
msgid "Id attribute"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: contact-form-7/modules/acceptance.php:
|
1027 |
-
#: contact-form-7/modules/captcha.php:
|
1028 |
-
#: contact-form-7/modules/captcha.php:
|
1029 |
-
#: contact-form-7/modules/checkbox.php:
|
1030 |
-
#: contact-form-7/modules/file.php:
|
1031 |
-
#: contact-form-7/modules/quiz.php:
|
1032 |
-
#: contact-form-7/modules/submit.php:
|
1033 |
-
#: contact-form-7/modules/textarea.php:
|
1034 |
msgid "Class attribute"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: contact-form-7/modules/acceptance.php:
|
1038 |
-
#: contact-form-7/modules/captcha.php:
|
1039 |
-
#: contact-form-7/modules/checkbox.php:
|
1040 |
-
#: contact-form-7/modules/file.php:
|
1041 |
-
#: contact-form-7/modules/quiz.php:
|
1042 |
-
#: contact-form-7/modules/submit.php:
|
1043 |
-
#: contact-form-7/modules/textarea.php:
|
1044 |
msgid "Insert Tag"
|
1045 |
msgstr ""
|
1046 |
|
@@ -1058,36 +1063,36 @@ msgstr ""
|
|
1058 |
msgid "Your entered code is incorrect."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: contact-form-7/modules/captcha.php:
|
1062 |
-
#: contact-form-7/modules/captcha.php:
|
1063 |
msgid "CAPTCHA"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: contact-form-7/modules/captcha.php:
|
1067 |
#, php-format
|
1068 |
msgid "To use CAPTCHA, you first need to install and activate %s plugin."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: contact-form-7/modules/captcha.php:
|
1072 |
#, php-format
|
1073 |
msgid ""
|
1074 |
"Generate form-tags for a CAPTCHA image and corresponding response input "
|
1075 |
"field. For more details, see %s."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: contact-form-7/modules/captcha.php:
|
1079 |
msgid "http://contactform7.com/captcha/"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: contact-form-7/modules/captcha.php:
|
1083 |
msgid "Image settings"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: contact-form-7/modules/captcha.php:
|
1087 |
msgid "Input field settings"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: contact-form-7/modules/captcha.php:
|
1091 |
#, php-format
|
1092 |
msgid ""
|
1093 |
"This contact form contains CAPTCHA fields, but the temporary folder for the "
|
@@ -1095,80 +1100,80 @@ msgid ""
|
|
1095 |
"change its permission manually."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: contact-form-7/modules/captcha.php:
|
1099 |
msgid ""
|
1100 |
"This contact form contains CAPTCHA fields, but the necessary libraries (GD "
|
1101 |
"and FreeType) are not available on your server."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: contact-form-7/modules/checkbox.php:
|
1105 |
msgid "checkboxes"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: contact-form-7/modules/checkbox.php:
|
1109 |
msgid "radio buttons"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: contact-form-7/modules/checkbox.php:
|
1113 |
#, php-format
|
1114 |
msgid ""
|
1115 |
"Generate a form-tag for a group of checkboxes. For more details, see %s."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: contact-form-7/modules/checkbox.php:
|
1119 |
#, php-format
|
1120 |
msgid ""
|
1121 |
"Generate a form-tag for a group of radio buttons. For more details, see %s."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: contact-form-7/modules/checkbox.php:
|
1125 |
-
#: contact-form-7/modules/select.php:
|
1126 |
msgid "http://contactform7.com/checkboxes-radio-buttons-and-menus/"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: contact-form-7/modules/checkbox.php:
|
1130 |
-
#: contact-form-7/modules/select.php:
|
1131 |
msgid "Checkboxes, Radio Buttons and Menus"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: contact-form-7/modules/checkbox.php:
|
1135 |
-
#: contact-form-7/modules/checkbox.php:
|
1136 |
-
#: contact-form-7/modules/date.php:
|
1137 |
-
#: contact-form-7/modules/file.php:
|
1138 |
-
#: contact-form-7/modules/number.php:
|
1139 |
-
#: contact-form-7/modules/select.php:
|
1140 |
-
#: contact-form-7/modules/text.php:
|
1141 |
-
#: contact-form-7/modules/textarea.php:
|
1142 |
msgid "Field type"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: contact-form-7/modules/checkbox.php:
|
1146 |
-
#: contact-form-7/modules/file.php:
|
1147 |
-
#: contact-form-7/modules/select.php:
|
1148 |
-
#: contact-form-7/modules/textarea.php:
|
1149 |
msgid "Required field"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: contact-form-7/modules/checkbox.php:
|
1153 |
-
#: contact-form-7/modules/select.php:
|
1154 |
msgid "One option per line."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: contact-form-7/modules/checkbox.php:
|
1158 |
msgid "Put a label first, a checkbox last"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: contact-form-7/modules/checkbox.php:
|
1162 |
msgid "Wrap each item with label element"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: contact-form-7/modules/checkbox.php:
|
1166 |
msgid "Make checkboxes exclusive"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: contact-form-7/modules/checkbox.php:
|
1170 |
-
#: contact-form-7/modules/number.php:
|
1171 |
-
#: contact-form-7/modules/text.php:
|
1172 |
#, php-format
|
1173 |
msgid ""
|
1174 |
"To use the value input through this field in a mail field, you need to "
|
@@ -1199,43 +1204,43 @@ msgstr ""
|
|
1199 |
msgid "This date is too late."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: contact-form-7/modules/date.php:
|
1203 |
msgid "date"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: contact-form-7/modules/date.php:
|
1207 |
#, php-format
|
1208 |
msgid "Generate a form-tag for a date input field. For more details, see %s."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: contact-form-7/modules/date.php:
|
1212 |
msgid "http://contactform7.com/date-field/"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: contact-form-7/modules/date.php:
|
1216 |
msgid "Date Field"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: contact-form-7/modules/date.php:
|
1220 |
-
#: contact-form-7/modules/text.php:
|
1221 |
msgid "Default value"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: contact-form-7/modules/date.php:
|
1225 |
-
#: contact-form-7/modules/text.php:
|
1226 |
msgid "Use this text as the placeholder of the field"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: contact-form-7/modules/date.php:
|
1230 |
-
#: contact-form-7/modules/number.php:
|
1231 |
msgid "Range"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: contact-form-7/modules/date.php:
|
1235 |
msgid "Min"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: contact-form-7/modules/date.php:
|
1239 |
msgid "Max"
|
1240 |
msgstr ""
|
1241 |
|
@@ -1271,33 +1276,33 @@ msgstr ""
|
|
1271 |
msgid "Failed to upload file. Error occurred."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: contact-form-7/modules/file.php:
|
1275 |
msgid "file"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: contact-form-7/modules/file.php:
|
1279 |
#, php-format
|
1280 |
msgid ""
|
1281 |
"Generate a form-tag for a file uploading field. For more details, see %s."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: contact-form-7/modules/file.php:
|
1285 |
msgid "http://contactform7.com/file-uploading-and-attachment/"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: contact-form-7/modules/file.php:
|
1289 |
msgid "File Uploading and Attachment"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: contact-form-7/modules/file.php:
|
1293 |
msgid "File size limit (bytes)"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: contact-form-7/modules/file.php:
|
1297 |
msgid "Acceptable file types"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: contact-form-7/modules/file.php:
|
1301 |
#, php-format
|
1302 |
msgid ""
|
1303 |
"To attach the file uploaded through this field to mail, you need to insert "
|
@@ -1305,7 +1310,7 @@ msgid ""
|
|
1305 |
"tab."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: contact-form-7/modules/file.php:
|
1309 |
#, php-format
|
1310 |
msgid ""
|
1311 |
"This contact form contains file uploading fields, but the temporary folder "
|
@@ -1352,30 +1357,30 @@ msgstr ""
|
|
1352 |
msgid "This number is too large."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: contact-form-7/modules/number.php:
|
1356 |
msgid "number"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: contact-form-7/modules/number.php:
|
1360 |
#, php-format
|
1361 |
msgid ""
|
1362 |
"Generate a form-tag for a field for numeric value input. For more details, "
|
1363 |
"see %s."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: contact-form-7/modules/number.php:
|
1367 |
msgid "http://contactform7.com/number-fields/"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: contact-form-7/modules/number.php:
|
1371 |
msgid "Number Fields"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: contact-form-7/modules/number.php:
|
1375 |
msgid "Spinbox"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: contact-form-7/modules/number.php:
|
1379 |
msgid "Slider"
|
1380 |
msgstr ""
|
1381 |
|
@@ -1387,69 +1392,69 @@ msgstr ""
|
|
1387 |
msgid "Your answer is not correct."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: contact-form-7/modules/quiz.php:
|
1391 |
msgid "quiz"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: contact-form-7/modules/quiz.php:
|
1395 |
#, php-format
|
1396 |
msgid ""
|
1397 |
"Generate a form-tag for a question-answer pair. For more details, see %s."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: contact-form-7/modules/quiz.php:
|
1401 |
msgid "http://contactform7.com/quiz/"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: contact-form-7/modules/quiz.php:
|
1405 |
msgid "Quiz"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: contact-form-7/modules/quiz.php:
|
1409 |
msgid "Questions and answers"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: contact-form-7/modules/quiz.php:
|
1413 |
msgid ""
|
1414 |
"One pipe-separated question-answer pair (e.g. The capital of Brazil?|Rio) "
|
1415 |
"per line."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: contact-form-7/modules/select.php:
|
1419 |
msgid "drop-down menu"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: contact-form-7/modules/select.php:
|
1423 |
#, php-format
|
1424 |
msgid "Generate a form-tag for a drop-down menu. For more details, see %s."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: contact-form-7/modules/select.php:
|
1428 |
msgid "Allow multiple selections"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: contact-form-7/modules/select.php:
|
1432 |
msgid "Insert a blank item as the first option"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: contact-form-7/modules/submit.php:
|
1436 |
msgid "submit"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: contact-form-7/modules/submit.php:
|
1440 |
#, php-format
|
1441 |
msgid "Generate a form-tag for a submit button. For more details, see %s."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: contact-form-7/modules/submit.php:
|
1445 |
msgid "http://contactform7.com/submit-button/"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: contact-form-7/modules/submit.php:
|
1449 |
msgid "Submit Button"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: contact-form-7/modules/submit.php:
|
1453 |
msgid "Label"
|
1454 |
msgstr ""
|
1455 |
|
@@ -1477,79 +1482,79 @@ msgstr ""
|
|
1477 |
msgid "Telephone number seems invalid."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: contact-form-7/modules/text.php:
|
1481 |
msgid "text"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: contact-form-7/modules/text.php:
|
1485 |
msgid "email"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: contact-form-7/modules/text.php:
|
1489 |
msgid "URL"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: contact-form-7/modules/text.php:
|
1493 |
msgid "tel"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: contact-form-7/modules/text.php:
|
1497 |
#, php-format
|
1498 |
msgid ""
|
1499 |
"Generate a form-tag for a single-line plain text input field. For more "
|
1500 |
"details, see %s."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: contact-form-7/modules/text.php:
|
1504 |
#, php-format
|
1505 |
msgid ""
|
1506 |
"Generate a form-tag for a single-line email address input field. For more "
|
1507 |
"details, see %s."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: contact-form-7/modules/text.php:
|
1511 |
#, php-format
|
1512 |
msgid ""
|
1513 |
"Generate a form-tag for a single-line URL input field. For more details, see "
|
1514 |
"%s."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: contact-form-7/modules/text.php:
|
1518 |
#, php-format
|
1519 |
msgid ""
|
1520 |
"Generate a form-tag for a single-line telephone number input field. For more "
|
1521 |
"details, see %s."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: contact-form-7/modules/text.php:
|
1525 |
msgid "http://contactform7.com/text-fields/"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: contact-form-7/modules/text.php:
|
1529 |
msgid "Text Fields"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: contact-form-7/modules/text.php:
|
1533 |
msgid "Akismet"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: contact-form-7/modules/text.php:
|
1537 |
msgid "This field requires author's name"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: contact-form-7/modules/text.php:
|
1541 |
msgid "This field requires author's email address"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: contact-form-7/modules/text.php:
|
1545 |
msgid "This field requires author's URL"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: contact-form-7/modules/textarea.php:
|
1549 |
msgid "text area"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: contact-form-7/modules/textarea.php:
|
1553 |
#, php-format
|
1554 |
msgid ""
|
1555 |
"Generate a form-tag for a multi-line text input field. For more details, see "
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Contact Form 7\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2015-06-22 19:53+0900\n"
|
7 |
"PO-Revision-Date: 2015-05-18 21:49+0900\n"
|
8 |
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
35 |
msgstr ""
|
36 |
|
37 |
#: contact-form-7/admin/admin.php:17 contact-form-7/admin/admin.php:178
|
38 |
+
#: contact-form-7/admin/admin.php:234
|
39 |
#: contact-form-7/includes/contact-form.php:29
|
40 |
msgid "Contact Forms"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: contact-form-7/admin/admin.php:24 contact-form-7/admin/admin.php:278
|
44 |
#: contact-form-7/admin/edit-contact-form.php:36
|
45 |
msgid "Add New Contact Form"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: contact-form-7/admin/admin.php:25 contact-form-7/admin/admin.php:237
|
49 |
+
#: contact-form-7/admin/admin.php:283 contact-form-7/admin/admin.php:295
|
50 |
#: contact-form-7/admin/edit-contact-form.php:41
|
51 |
msgid "Add New"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: contact-form-7/admin/admin.php:35 contact-form-7/admin/admin.php:320
|
55 |
msgid "Integration with Other Services"
|
56 |
msgstr ""
|
57 |
|
71 |
msgid "Error in deleting."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: contact-form-7/admin/admin.php:208
|
75 |
msgid "The changes you made will be lost if you navigate away from this page."
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: contact-form-7/admin/admin.php:242
|
79 |
#, php-format
|
80 |
msgid "Search results for “%s”"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: contact-form-7/admin/admin.php:251
|
84 |
msgid "Search Contact Forms"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: contact-form-7/admin/admin.php:282
|
88 |
#, php-format
|
89 |
msgid "Use the default language (%s)"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: contact-form-7/admin/admin.php:286
|
93 |
msgid "Or"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: contact-form-7/admin/admin.php:290
|
97 |
msgid "(select language)"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: contact-form-7/admin/admin.php:347
|
101 |
msgid "Contact form created."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: contact-form-7/admin/admin.php:349
|
105 |
msgid "Contact form saved."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: contact-form-7/admin/admin.php:351
|
109 |
msgid "Contact form deleted."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: contact-form-7/admin/admin.php:368
|
113 |
msgid "Settings"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: contact-form-7/admin/admin.php:391
|
117 |
#, php-format
|
118 |
msgid ""
|
119 |
"<strong>Contact Form 7 %1$s requires WordPress %2$s or higher.</strong> "
|
120 |
"Please <a href=\"%3$s\">update WordPress</a> first."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: contact-form-7/admin/admin.php:417
|
124 |
msgid "Dismiss"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: contact-form-7/admin/admin.php:422
|
128 |
msgid "Contact Form 7 Needs Your Support"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: contact-form-7/admin/admin.php:423
|
132 |
msgid ""
|
133 |
"It is hard to continue development and support for this plugin without "
|
134 |
"contributions from users like you. If you enjoy using Contact Form 7 and "
|
135 |
"find it useful, please consider making a donation."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: contact-form-7/admin/admin.php:424
|
139 |
msgid "http://contactform7.com/donate/"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: contact-form-7/admin/admin.php:424
|
143 |
msgid "Donate"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: contact-form-7/admin/admin.php:428
|
147 |
msgid "Get Started"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: contact-form-7/admin/admin.php:430
|
151 |
msgid "http://contactform7.com/getting-started-with-contact-form-7/"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: contact-form-7/admin/admin.php:430
|
155 |
msgid "Getting Started with Contact Form 7"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: contact-form-7/admin/admin.php:431
|
159 |
msgid "http://contactform7.com/admin-screen/"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: contact-form-7/admin/admin.php:431
|
163 |
msgid "Admin Screen"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: contact-form-7/admin/admin.php:432
|
167 |
msgid "http://contactform7.com/tag-syntax/"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: contact-form-7/admin/admin.php:432
|
171 |
msgid "How Tags Work"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: contact-form-7/admin/admin.php:433
|
175 |
msgid "http://contactform7.com/setting-up-mail/"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: contact-form-7/admin/admin.php:433
|
179 |
msgid "Setting Up Mail"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: contact-form-7/admin/admin.php:438
|
183 |
msgid "Did You Know?"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: contact-form-7/admin/admin.php:440
|
187 |
msgid "http://contactform7.com/spam-filtering-with-akismet/"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: contact-form-7/admin/admin.php:440
|
191 |
msgid "Spam Filtering with Akismet"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: contact-form-7/admin/admin.php:441
|
195 |
msgid "http://contactform7.com/save-submitted-messages-with-flamingo/"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: contact-form-7/admin/admin.php:441
|
199 |
msgid "Save Messages with Flamingo"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: contact-form-7/admin/admin.php:442
|
203 |
msgid "http://contactform7.com/selectable-recipient-with-pipes/"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: contact-form-7/admin/admin.php:442
|
207 |
msgid "Selectable Recipient with Pipes"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: contact-form-7/admin/admin.php:443
|
211 |
msgid ""
|
212 |
"http://contactform7.com/tracking-form-submissions-with-google-analytics/"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: contact-form-7/admin/admin.php:443
|
216 |
msgid "Tracking with Google Analytics"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: contact-form-7/admin/admin.php:488
|
220 |
msgid "You are not allowed to edit this contact form."
|
221 |
msgstr ""
|
222 |
|
293 |
msgid "Support"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: contact-form-7/admin/edit-contact-form.php:170
|
297 |
+
#, php-format
|
298 |
+
msgid "%s keys switch panels"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: contact-form-7/admin/edit-contact-form.php:180
|
302 |
#: contact-form-7/admin/includes/editor.php:45
|
303 |
msgid "Form"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: contact-form-7/admin/edit-contact-form.php:183
|
307 |
#: contact-form-7/admin/includes/editor.php:72
|
308 |
msgid "Mail"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: contact-form-7/admin/edit-contact-form.php:186
|
312 |
#: contact-form-7/admin/includes/editor.php:167
|
313 |
msgid "Messages"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: contact-form-7/admin/edit-contact-form.php:197
|
317 |
#, php-format
|
318 |
msgid "Additional Settings (%d)"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: contact-form-7/admin/edit-contact-form.php:199
|
322 |
#: contact-form-7/admin/includes/editor.php:190
|
323 |
#: contact-form-7/admin/includes/editor.php:195
|
324 |
msgid "Additional Settings"
|
974 |
msgid "Vietnamese"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: contact-form-7/modules/acceptance.php:132
|
978 |
msgid "acceptance"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: contact-form-7/modules/acceptance.php:140
|
982 |
#, php-format
|
983 |
msgid ""
|
984 |
"Generate a form-tag for an acceptance checkbox. For more details, see %s."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: contact-form-7/modules/acceptance.php:142
|
988 |
msgid "http://contactform7.com/acceptance-checkbox/"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: contact-form-7/modules/acceptance.php:142
|
992 |
msgid "Acceptance Checkbox"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: contact-form-7/modules/acceptance.php:152
|
996 |
+
#: contact-form-7/modules/captcha.php:230
|
997 |
+
#: contact-form-7/modules/checkbox.php:310 contact-form-7/modules/date.php:171
|
998 |
+
#: contact-form-7/modules/file.php:253 contact-form-7/modules/number.php:179
|
999 |
+
#: contact-form-7/modules/quiz.php:183 contact-form-7/modules/select.php:190
|
1000 |
+
#: contact-form-7/modules/text.php:241 contact-form-7/modules/textarea.php:157
|
1001 |
msgid "Name"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: contact-form-7/modules/acceptance.php:157
|
1005 |
+
#: contact-form-7/modules/acceptance.php:160
|
1006 |
+
#: contact-form-7/modules/checkbox.php:315
|
1007 |
+
#: contact-form-7/modules/checkbox.php:318
|
1008 |
+
#: contact-form-7/modules/select.php:195 contact-form-7/modules/select.php:198
|
1009 |
msgid "Options"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: contact-form-7/modules/acceptance.php:161
|
1013 |
msgid "Make this checkbox checked by default"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: contact-form-7/modules/acceptance.php:162
|
1017 |
msgid "Make this work inversely"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: contact-form-7/modules/acceptance.php:168
|
1021 |
+
#: contact-form-7/modules/captcha.php:240
|
1022 |
+
#: contact-form-7/modules/captcha.php:255
|
1023 |
+
#: contact-form-7/modules/checkbox.php:331 contact-form-7/modules/date.php:200
|
1024 |
+
#: contact-form-7/modules/file.php:268 contact-form-7/modules/number.php:208
|
1025 |
+
#: contact-form-7/modules/quiz.php:199 contact-form-7/modules/select.php:208
|
1026 |
+
#: contact-form-7/modules/submit.php:73 contact-form-7/modules/text.php:281
|
1027 |
+
#: contact-form-7/modules/textarea.php:168
|
1028 |
msgid "Id attribute"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: contact-form-7/modules/acceptance.php:173
|
1032 |
+
#: contact-form-7/modules/captcha.php:245
|
1033 |
+
#: contact-form-7/modules/captcha.php:260
|
1034 |
+
#: contact-form-7/modules/checkbox.php:336 contact-form-7/modules/date.php:205
|
1035 |
+
#: contact-form-7/modules/file.php:273 contact-form-7/modules/number.php:213
|
1036 |
+
#: contact-form-7/modules/quiz.php:204 contact-form-7/modules/select.php:213
|
1037 |
+
#: contact-form-7/modules/submit.php:78 contact-form-7/modules/text.php:286
|
1038 |
+
#: contact-form-7/modules/textarea.php:173
|
1039 |
msgid "Class attribute"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: contact-form-7/modules/acceptance.php:186
|
1043 |
+
#: contact-form-7/modules/captcha.php:272
|
1044 |
+
#: contact-form-7/modules/checkbox.php:349 contact-form-7/modules/date.php:217
|
1045 |
+
#: contact-form-7/modules/file.php:286 contact-form-7/modules/number.php:225
|
1046 |
+
#: contact-form-7/modules/quiz.php:217 contact-form-7/modules/select.php:226
|
1047 |
+
#: contact-form-7/modules/submit.php:91 contact-form-7/modules/text.php:299
|
1048 |
+
#: contact-form-7/modules/textarea.php:186
|
1049 |
msgid "Insert Tag"
|
1050 |
msgstr ""
|
1051 |
|
1063 |
msgid "Your entered code is incorrect."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: contact-form-7/modules/captcha.php:199
|
1067 |
+
#: contact-form-7/modules/captcha.php:220
|
1068 |
msgid "CAPTCHA"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: contact-form-7/modules/captcha.php:210
|
1072 |
#, php-format
|
1073 |
msgid "To use CAPTCHA, you first need to install and activate %s plugin."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: contact-form-7/modules/captcha.php:218
|
1077 |
#, php-format
|
1078 |
msgid ""
|
1079 |
"Generate form-tags for a CAPTCHA image and corresponding response input "
|
1080 |
"field. For more details, see %s."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: contact-form-7/modules/captcha.php:220
|
1084 |
msgid "http://contactform7.com/captcha/"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: contact-form-7/modules/captcha.php:237
|
1088 |
msgid "Image settings"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: contact-form-7/modules/captcha.php:252
|
1092 |
msgid "Input field settings"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: contact-form-7/modules/captcha.php:301
|
1096 |
#, php-format
|
1097 |
msgid ""
|
1098 |
"This contact form contains CAPTCHA fields, but the temporary folder for the "
|
1100 |
"change its permission manually."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: contact-form-7/modules/captcha.php:307
|
1104 |
msgid ""
|
1105 |
"This contact form contains CAPTCHA fields, but the necessary libraries (GD "
|
1106 |
"and FreeType) are not available on your server."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: contact-form-7/modules/checkbox.php:268
|
1110 |
msgid "checkboxes"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: contact-form-7/modules/checkbox.php:270
|
1114 |
msgid "radio buttons"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: contact-form-7/modules/checkbox.php:283
|
1118 |
#, php-format
|
1119 |
msgid ""
|
1120 |
"Generate a form-tag for a group of checkboxes. For more details, see %s."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: contact-form-7/modules/checkbox.php:285
|
1124 |
#, php-format
|
1125 |
msgid ""
|
1126 |
"Generate a form-tag for a group of radio buttons. For more details, see %s."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: contact-form-7/modules/checkbox.php:288
|
1130 |
+
#: contact-form-7/modules/select.php:170
|
1131 |
msgid "http://contactform7.com/checkboxes-radio-buttons-and-menus/"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: contact-form-7/modules/checkbox.php:288
|
1135 |
+
#: contact-form-7/modules/select.php:170
|
1136 |
msgid "Checkboxes, Radio Buttons and Menus"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: contact-form-7/modules/checkbox.php:299
|
1140 |
+
#: contact-form-7/modules/checkbox.php:302 contact-form-7/modules/date.php:161
|
1141 |
+
#: contact-form-7/modules/date.php:164 contact-form-7/modules/file.php:243
|
1142 |
+
#: contact-form-7/modules/file.php:246 contact-form-7/modules/number.php:164
|
1143 |
+
#: contact-form-7/modules/number.php:167 contact-form-7/modules/select.php:180
|
1144 |
+
#: contact-form-7/modules/select.php:183 contact-form-7/modules/text.php:231
|
1145 |
+
#: contact-form-7/modules/text.php:234 contact-form-7/modules/textarea.php:147
|
1146 |
+
#: contact-form-7/modules/textarea.php:150
|
1147 |
msgid "Field type"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: contact-form-7/modules/checkbox.php:303 contact-form-7/modules/date.php:165
|
1151 |
+
#: contact-form-7/modules/file.php:247 contact-form-7/modules/number.php:173
|
1152 |
+
#: contact-form-7/modules/select.php:184 contact-form-7/modules/text.php:235
|
1153 |
+
#: contact-form-7/modules/textarea.php:151
|
1154 |
msgid "Required field"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: contact-form-7/modules/checkbox.php:320
|
1158 |
+
#: contact-form-7/modules/select.php:200
|
1159 |
msgid "One option per line."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: contact-form-7/modules/checkbox.php:321
|
1163 |
msgid "Put a label first, a checkbox last"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: contact-form-7/modules/checkbox.php:322
|
1167 |
msgid "Wrap each item with label element"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: contact-form-7/modules/checkbox.php:324
|
1171 |
msgid "Make checkboxes exclusive"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: contact-form-7/modules/checkbox.php:354 contact-form-7/modules/date.php:222
|
1175 |
+
#: contact-form-7/modules/number.php:230 contact-form-7/modules/select.php:231
|
1176 |
+
#: contact-form-7/modules/text.php:304 contact-form-7/modules/textarea.php:191
|
1177 |
#, php-format
|
1178 |
msgid ""
|
1179 |
"To use the value input through this field in a mail field, you need to "
|
1204 |
msgid "This date is too late."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: contact-form-7/modules/date.php:141
|
1208 |
msgid "date"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: contact-form-7/modules/date.php:149
|
1212 |
#, php-format
|
1213 |
msgid "Generate a form-tag for a date input field. For more details, see %s."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: contact-form-7/modules/date.php:151
|
1217 |
msgid "http://contactform7.com/date-field/"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: contact-form-7/modules/date.php:151
|
1221 |
msgid "Date Field"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: contact-form-7/modules/date.php:176 contact-form-7/modules/number.php:184
|
1225 |
+
#: contact-form-7/modules/text.php:246 contact-form-7/modules/textarea.php:162
|
1226 |
msgid "Default value"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: contact-form-7/modules/date.php:178 contact-form-7/modules/number.php:186
|
1230 |
+
#: contact-form-7/modules/text.php:248 contact-form-7/modules/textarea.php:164
|
1231 |
msgid "Use this text as the placeholder of the field"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: contact-form-7/modules/date.php:182 contact-form-7/modules/date.php:185
|
1235 |
+
#: contact-form-7/modules/number.php:190 contact-form-7/modules/number.php:193
|
1236 |
msgid "Range"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: contact-form-7/modules/date.php:187 contact-form-7/modules/number.php:195
|
1240 |
msgid "Min"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: contact-form-7/modules/date.php:192 contact-form-7/modules/number.php:200
|
1244 |
msgid "Max"
|
1245 |
msgstr ""
|
1246 |
|
1276 |
msgid "Failed to upload file. Error occurred."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: contact-form-7/modules/file.php:223
|
1280 |
msgid "file"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: contact-form-7/modules/file.php:231
|
1284 |
#, php-format
|
1285 |
msgid ""
|
1286 |
"Generate a form-tag for a file uploading field. For more details, see %s."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: contact-form-7/modules/file.php:233
|
1290 |
msgid "http://contactform7.com/file-uploading-and-attachment/"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: contact-form-7/modules/file.php:233
|
1294 |
msgid "File Uploading and Attachment"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: contact-form-7/modules/file.php:258
|
1298 |
msgid "File size limit (bytes)"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: contact-form-7/modules/file.php:263
|
1302 |
msgid "Acceptable file types"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: contact-form-7/modules/file.php:291
|
1306 |
#, php-format
|
1307 |
msgid ""
|
1308 |
"To attach the file uploaded through this field to mail, you need to insert "
|
1310 |
"tab."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: contact-form-7/modules/file.php:316
|
1314 |
#, php-format
|
1315 |
msgid ""
|
1316 |
"This contact form contains file uploading fields, but the temporary folder "
|
1357 |
msgid "This number is too large."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: contact-form-7/modules/number.php:144
|
1361 |
msgid "number"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: contact-form-7/modules/number.php:152
|
1365 |
#, php-format
|
1366 |
msgid ""
|
1367 |
"Generate a form-tag for a field for numeric value input. For more details, "
|
1368 |
"see %s."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: contact-form-7/modules/number.php:154
|
1372 |
msgid "http://contactform7.com/number-fields/"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: contact-form-7/modules/number.php:154
|
1376 |
msgid "Number Fields"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: contact-form-7/modules/number.php:169
|
1380 |
msgid "Spinbox"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: contact-form-7/modules/number.php:170
|
1384 |
msgid "Slider"
|
1385 |
msgstr ""
|
1386 |
|
1392 |
msgid "Your answer is not correct."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: contact-form-7/modules/quiz.php:163
|
1396 |
msgid "quiz"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: contact-form-7/modules/quiz.php:171
|
1400 |
#, php-format
|
1401 |
msgid ""
|
1402 |
"Generate a form-tag for a question-answer pair. For more details, see %s."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: contact-form-7/modules/quiz.php:173
|
1406 |
msgid "http://contactform7.com/quiz/"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: contact-form-7/modules/quiz.php:173
|
1410 |
msgid "Quiz"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: contact-form-7/modules/quiz.php:188 contact-form-7/modules/quiz.php:191
|
1414 |
msgid "Questions and answers"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: contact-form-7/modules/quiz.php:193
|
1418 |
msgid ""
|
1419 |
"One pipe-separated question-answer pair (e.g. The capital of Brazil?|Rio) "
|
1420 |
"per line."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: contact-form-7/modules/select.php:161
|
1424 |
msgid "drop-down menu"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: contact-form-7/modules/select.php:168
|
1428 |
#, php-format
|
1429 |
msgid "Generate a form-tag for a drop-down menu. For more details, see %s."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: contact-form-7/modules/select.php:201
|
1433 |
msgid "Allow multiple selections"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: contact-form-7/modules/select.php:202
|
1437 |
msgid "Insert a blank item as the first option"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: contact-form-7/modules/submit.php:49
|
1441 |
msgid "submit"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: contact-form-7/modules/submit.php:56
|
1445 |
#, php-format
|
1446 |
msgid "Generate a form-tag for a submit button. For more details, see %s."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: contact-form-7/modules/submit.php:58
|
1450 |
msgid "http://contactform7.com/submit-button/"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: contact-form-7/modules/submit.php:58
|
1454 |
msgid "Submit Button"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: contact-form-7/modules/submit.php:68
|
1458 |
msgid "Label"
|
1459 |
msgstr ""
|
1460 |
|
1482 |
msgid "Telephone number seems invalid."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: contact-form-7/modules/text.php:193
|
1486 |
msgid "text"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: contact-form-7/modules/text.php:195
|
1490 |
msgid "email"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: contact-form-7/modules/text.php:197
|
1494 |
msgid "URL"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: contact-form-7/modules/text.php:199
|
1498 |
msgid "tel"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: contact-form-7/modules/text.php:212
|
1502 |
#, php-format
|
1503 |
msgid ""
|
1504 |
"Generate a form-tag for a single-line plain text input field. For more "
|
1505 |
"details, see %s."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: contact-form-7/modules/text.php:214
|
1509 |
#, php-format
|
1510 |
msgid ""
|
1511 |
"Generate a form-tag for a single-line email address input field. For more "
|
1512 |
"details, see %s."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: contact-form-7/modules/text.php:216
|
1516 |
#, php-format
|
1517 |
msgid ""
|
1518 |
"Generate a form-tag for a single-line URL input field. For more details, see "
|
1519 |
"%s."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: contact-form-7/modules/text.php:218
|
1523 |
#, php-format
|
1524 |
msgid ""
|
1525 |
"Generate a form-tag for a single-line telephone number input field. For more "
|
1526 |
"details, see %s."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: contact-form-7/modules/text.php:221 contact-form-7/modules/textarea.php:137
|
1530 |
msgid "http://contactform7.com/text-fields/"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: contact-form-7/modules/text.php:221 contact-form-7/modules/textarea.php:137
|
1534 |
msgid "Text Fields"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: contact-form-7/modules/text.php:253 contact-form-7/modules/text.php:256
|
1538 |
msgid "Akismet"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: contact-form-7/modules/text.php:261
|
1542 |
msgid "This field requires author's name"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: contact-form-7/modules/text.php:266
|
1546 |
msgid "This field requires author's email address"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: contact-form-7/modules/text.php:271
|
1550 |
msgid "This field requires author's URL"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: contact-form-7/modules/textarea.php:127
|
1554 |
msgid "text area"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: contact-form-7/modules/textarea.php:135
|
1558 |
#, php-format
|
1559 |
msgid ""
|
1560 |
"Generate a form-tag for a multi-line text input field. For more details, see "
|
modules/acceptance.php
CHANGED
@@ -123,7 +123,9 @@ function wpcf7_acceptance_as_validation() {
|
|
123 |
|
124 |
/* Tag generator */
|
125 |
|
126 |
-
|
|
|
|
|
127 |
|
128 |
function wpcf7_add_tag_generator_acceptance() {
|
129 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
123 |
|
124 |
/* Tag generator */
|
125 |
|
126 |
+
if ( is_admin() ) {
|
127 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_acceptance', 35 );
|
128 |
+
}
|
129 |
|
130 |
function wpcf7_add_tag_generator_acceptance() {
|
131 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/captcha.php
CHANGED
@@ -190,7 +190,9 @@ function wpcf7_captcha_messages( $messages ) {
|
|
190 |
|
191 |
/* Tag generator */
|
192 |
|
193 |
-
|
|
|
|
|
194 |
|
195 |
function wpcf7_add_tag_generator_captcha() {
|
196 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
190 |
|
191 |
/* Tag generator */
|
192 |
|
193 |
+
if ( is_admin() ) {
|
194 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_captcha', 45 );
|
195 |
+
}
|
196 |
|
197 |
function wpcf7_add_tag_generator_captcha() {
|
198 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/checkbox.php
CHANGED
@@ -259,7 +259,9 @@ function wpcf7_checkbox_posted_data( $posted_data ) {
|
|
259 |
|
260 |
/* Tag generator */
|
261 |
|
262 |
-
|
|
|
|
|
263 |
|
264 |
function wpcf7_add_tag_generator_checkbox_and_radio() {
|
265 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
259 |
|
260 |
/* Tag generator */
|
261 |
|
262 |
+
if ( is_admin() ) {
|
263 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_checkbox_and_radio', 30 );
|
264 |
+
}
|
265 |
|
266 |
function wpcf7_add_tag_generator_checkbox_and_radio() {
|
267 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/date.php
CHANGED
@@ -132,7 +132,9 @@ function wpcf7_date_messages( $messages ) {
|
|
132 |
|
133 |
/* Tag generator */
|
134 |
|
135 |
-
|
|
|
|
|
136 |
|
137 |
function wpcf7_add_tag_generator_date() {
|
138 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
132 |
|
133 |
/* Tag generator */
|
134 |
|
135 |
+
if ( is_admin() ) {
|
136 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_date', 19 );
|
137 |
+
}
|
138 |
|
139 |
function wpcf7_add_tag_generator_date() {
|
140 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/file.php
CHANGED
@@ -214,7 +214,9 @@ function wpcf7_file_messages( $messages ) {
|
|
214 |
|
215 |
/* Tag generator */
|
216 |
|
217 |
-
|
|
|
|
|
218 |
|
219 |
function wpcf7_add_tag_generator_file() {
|
220 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
214 |
|
215 |
/* Tag generator */
|
216 |
|
217 |
+
if ( is_admin() ) {
|
218 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_file', 50 );
|
219 |
+
}
|
220 |
|
221 |
function wpcf7_add_tag_generator_file() {
|
222 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/number.php
CHANGED
@@ -135,7 +135,9 @@ function wpcf7_number_messages( $messages ) {
|
|
135 |
|
136 |
/* Tag generator */
|
137 |
|
138 |
-
|
|
|
|
|
139 |
|
140 |
function wpcf7_add_tag_generator_number() {
|
141 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
135 |
|
136 |
/* Tag generator */
|
137 |
|
138 |
+
if ( is_admin() ) {
|
139 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_number', 18 );
|
140 |
+
}
|
141 |
|
142 |
function wpcf7_add_tag_generator_number() {
|
143 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/quiz.php
CHANGED
@@ -154,7 +154,9 @@ function wpcf7_quiz_messages( $messages ) {
|
|
154 |
|
155 |
/* Tag generator */
|
156 |
|
157 |
-
|
|
|
|
|
158 |
|
159 |
function wpcf7_add_tag_generator_quiz() {
|
160 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
154 |
|
155 |
/* Tag generator */
|
156 |
|
157 |
+
if ( is_admin() ) {
|
158 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_quiz', 40 );
|
159 |
+
}
|
160 |
|
161 |
function wpcf7_add_tag_generator_quiz() {
|
162 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/select.php
CHANGED
@@ -152,7 +152,9 @@ function wpcf7_select_validation_filter( $result, $tag ) {
|
|
152 |
|
153 |
/* Tag generator */
|
154 |
|
155 |
-
|
|
|
|
|
156 |
|
157 |
function wpcf7_add_tag_generator_menu() {
|
158 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
152 |
|
153 |
/* Tag generator */
|
154 |
|
155 |
+
if ( is_admin() ) {
|
156 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_menu', 25 );
|
157 |
+
}
|
158 |
|
159 |
function wpcf7_add_tag_generator_menu() {
|
160 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/submit.php
CHANGED
@@ -40,7 +40,9 @@ function wpcf7_submit_shortcode_handler( $tag ) {
|
|
40 |
|
41 |
/* Tag generator */
|
42 |
|
43 |
-
|
|
|
|
|
44 |
|
45 |
function wpcf7_add_tag_generator_submit() {
|
46 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
40 |
|
41 |
/* Tag generator */
|
42 |
|
43 |
+
if ( is_admin() ) {
|
44 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_submit', 55 );
|
45 |
+
}
|
46 |
|
47 |
function wpcf7_add_tag_generator_submit() {
|
48 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/text.php
CHANGED
@@ -184,7 +184,9 @@ function wpcf7_text_messages( $messages ) {
|
|
184 |
|
185 |
/* Tag generator */
|
186 |
|
187 |
-
|
|
|
|
|
188 |
|
189 |
function wpcf7_add_tag_generator_text() {
|
190 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
184 |
|
185 |
/* Tag generator */
|
186 |
|
187 |
+
if ( is_admin() ) {
|
188 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_text', 15 );
|
189 |
+
}
|
190 |
|
191 |
function wpcf7_add_tag_generator_text() {
|
192 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
modules/textarea.php
CHANGED
@@ -118,7 +118,9 @@ function wpcf7_textarea_validation_filter( $result, $tag ) {
|
|
118 |
|
119 |
/* Tag generator */
|
120 |
|
121 |
-
|
|
|
|
|
122 |
|
123 |
function wpcf7_add_tag_generator_textarea() {
|
124 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
118 |
|
119 |
/* Tag generator */
|
120 |
|
121 |
+
if ( is_admin() ) {
|
122 |
+
add_action( 'admin_init', 'wpcf7_add_tag_generator_textarea', 20 );
|
123 |
+
}
|
124 |
|
125 |
function wpcf7_add_tag_generator_textarea() {
|
126 |
$tag_generator = WPCF7_TagGenerator::get_instance();
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://contactform7.com/donate/
|
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 4.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -49,9 +49,9 @@ The following are other recommended plugins by the author of Contact Form 7.
|
|
49 |
* Croatian (hr) - tolingo Translation Services, Marko Puskaric
|
50 |
* Czech (cs_CZ) - Korry, Radovan Fiser, Tomas Vesely, Pavel Bilek, Vladislav Šenk
|
51 |
* Danish (da_DK) - Jens Griebel, Georg S. Adamsen
|
52 |
-
* Dutch (nl_NL) - Chris Devriese, Martin Hein, Rene, TenSheep, Tim de Hoog
|
53 |
* Esperanto (eo_EO) - Arkadiusz Zychewicz
|
54 |
-
* Estonian (et) - Peeter Rahuvarm, Egon Elbre
|
55 |
* Finnish (fi) - Miika Turunen, Mediajalostamo, Jani Alha
|
56 |
* French (fr_FR) - Jillij, Oncle Tom, Maître Mô, Emmanuel Simond, Hédi Sellami
|
57 |
* Galician (gl_ES) - Arume Desenvolvementos Informáticos
|
@@ -125,30 +125,14 @@ Do you have questions or issues with Contact Form 7? Use these support channels
|
|
125 |
|
126 |
For more information, see [Releases](http://contactform7.com/category/releases/).
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
= 4.2 =
|
129 |
|
130 |
* Renewal of the editor screen.
|
131 |
* Translation for Slovene has been updated.
|
132 |
* WordPress 4.1 or higher is required.
|
133 |
-
|
134 |
-
= 4.1.2 =
|
135 |
-
|
136 |
-
* Added role="form" to wrapper div elements.
|
137 |
-
* Added wrapping label elements to quiz question strings.
|
138 |
-
* Translation for Portuguese has been updated.
|
139 |
-
|
140 |
-
= 4.1.1 =
|
141 |
-
|
142 |
-
* Security enhancement: use wp_rand() instead of mt_rand() for CAPTCHA file name generation to make it harder for attackers to predict its next value.
|
143 |
-
* Modified wpcf7_plugin_url(): use plugins_url() internally.
|
144 |
-
* Translations for Russian, Hungarian, Swedish, German, and Turkish have been updated.
|
145 |
-
|
146 |
-
= 4.1 =
|
147 |
-
|
148 |
-
* Added maxlength and minlength options to several form-tag types.
|
149 |
-
* Added [count] form-tag type that represents character count for form fields.
|
150 |
-
* Introduced WPCF7_Validation class to handle the user-input validation process.
|
151 |
-
* Added the front-end URL normalization for [url] fields.
|
152 |
-
* Added default:get, default:post and default:post_meta options to get default values from the context.
|
153 |
-
* Translations for Turkish, German, Portuguese, Dutch, and Hebrew have been updated.
|
154 |
-
* WordPress 4.0 or higher is required.
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 4.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
49 |
* Croatian (hr) - tolingo Translation Services, Marko Puskaric
|
50 |
* Czech (cs_CZ) - Korry, Radovan Fiser, Tomas Vesely, Pavel Bilek, Vladislav Šenk
|
51 |
* Danish (da_DK) - Jens Griebel, Georg S. Adamsen
|
52 |
+
* Dutch (nl_NL) - Chris Devriese, Martin Hein, Rene, TenSheep, Tim de Hoog, Henk Buma
|
53 |
* Esperanto (eo_EO) - Arkadiusz Zychewicz
|
54 |
+
* Estonian (et) - Peeter Rahuvarm, Egon Elbre, Tanel Jüris
|
55 |
* Finnish (fi) - Miika Turunen, Mediajalostamo, Jani Alha
|
56 |
* French (fr_FR) - Jillij, Oncle Tom, Maître Mô, Emmanuel Simond, Hédi Sellami
|
57 |
* Galician (gl_ES) - Arume Desenvolvementos Informáticos
|
125 |
|
126 |
For more information, see [Releases](http://contactform7.com/category/releases/).
|
127 |
|
128 |
+
= 4.2.1 =
|
129 |
+
|
130 |
+
* Corrected admin script dependencies.
|
131 |
+
* Shows a hint for keyboard operation in the editor screen.
|
132 |
+
* Translations for Estonian, Portuguese, Dutch, and Turkish have been updated.
|
133 |
+
|
134 |
= 4.2 =
|
135 |
|
136 |
* Renewal of the editor screen.
|
137 |
* Translation for Slovene has been updated.
|
138 |
* WordPress 4.1 or higher is required.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-contact-form-7.php
CHANGED
@@ -7,7 +7,7 @@ Author: Takayuki Miyoshi
|
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
Text Domain: contact-form-7
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 4.2
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2007-2015 Takayuki Miyoshi (email: takayukister at gmail.com)
|
@@ -27,7 +27,7 @@ Version: 4.2
|
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
*/
|
29 |
|
30 |
-
define( 'WPCF7_VERSION', '4.2' );
|
31 |
|
32 |
define( 'WPCF7_REQUIRED_WP_VERSION', '4.1' );
|
33 |
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
Text Domain: contact-form-7
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 4.2.1
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2007-2015 Takayuki Miyoshi (email: takayukister at gmail.com)
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
*/
|
29 |
|
30 |
+
define( 'WPCF7_VERSION', '4.2.1' );
|
31 |
|
32 |
define( 'WPCF7_REQUIRED_WP_VERSION', '4.1' );
|
33 |
|