Contact Form 7 - Version 1.9.2.1

Version Description

Download this release

Release Info

Developer takayukister
Plugin Icon 128x128 Contact Form 7
Version 1.9.2.1
Comparing to
See all releases

Code changes from version 1.9.2 to 1.9.2.1

README.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Contact Form 7 ===
2
  Contributors: takayukister
3
- Donate link: http://takayukister.chipin.com/contact-form-7-20
4
- Tags: contact form, email, ajax, captcha, akismet
5
  Requires at least: 2.5
6
  Tested up to: 2.7
7
- Stable tag: 1.9.2
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
1
  === Contact Form 7 ===
2
  Contributors: takayukister
3
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2908336
4
+ Tags: contact, contact form, email, ajax, captcha, akismet
5
  Requires at least: 2.5
6
  Tested up to: 2.7
7
+ Stable tag: 1.9.2.1
8
 
9
  Just another contact form plugin. Simple but flexible.
10
 
contact-form-7.js CHANGED
@@ -1,34 +1,40 @@
1
  jQuery(document).ready(function() {
2
- jQuery('div.wpcf7 > form').ajaxForm({
3
- beforeSubmit: wpcf7BeforeSubmit,
4
- dataType: 'json',
5
- success: wpcf7ProcessJson
6
- });
 
 
 
7
 
8
- jQuery('div.wpcf7 > form').each(function(i, n) {
9
- wpcf7ToggleSubmit(jQuery(n));
10
- });
 
 
 
11
  });
12
 
13
  // Exclusive checkbox
14
  function wpcf7ExclusiveCheckbox(elem) {
15
- jQuery(elem.form).find('input:checkbox[@name="' + elem.name + '"]').not(elem).removeAttr('checked');
16
  }
17
 
18
  // Toggle submit button
19
  function wpcf7ToggleSubmit(form) {
20
- var submit = jQuery(form).find('input:submit');
21
- if (! submit.length) return;
22
-
23
- var acceptances = jQuery(form).find('input:checkbox.wpcf7-acceptance');
24
- if (! acceptances.length) return;
25
-
26
- submit.removeAttr('disabled');
27
- acceptances.each(function(i, n) {
28
- n = jQuery(n);
29
- if (n.hasClass('wpcf7-invert') && n.is(':checked') || ! n.hasClass('wpcf7-invert') && ! n.is(':checked'))
30
- submit.attr('disabled', 'disabled');
31
- });
32
  }
33
 
34
  function wpcf7BeforeSubmit(formData, jqForm, options) {
1
  jQuery(document).ready(function() {
2
+ try {
3
+ jQuery('div.wpcf7 > form').ajaxForm({
4
+ beforeSubmit: wpcf7BeforeSubmit,
5
+ dataType: 'json',
6
+ success: wpcf7ProcessJson
7
+ });
8
+ } catch (e) {
9
+ }
10
 
11
+ try {
12
+ jQuery('div.wpcf7 > form').each(function(i, n) {
13
+ wpcf7ToggleSubmit(jQuery(n));
14
+ });
15
+ } catch (e) {
16
+ }
17
  });
18
 
19
  // Exclusive checkbox
20
  function wpcf7ExclusiveCheckbox(elem) {
21
+ jQuery(elem.form).find('input:checkbox[@name="' + elem.name + '"]').not(elem).removeAttr('checked');
22
  }
23
 
24
  // Toggle submit button
25
  function wpcf7ToggleSubmit(form) {
26
+ var submit = jQuery(form).find('input:submit');
27
+ if (! submit.length) return;
28
+
29
+ var acceptances = jQuery(form).find('input:checkbox.wpcf7-acceptance');
30
+ if (! acceptances.length) return;
31
+
32
+ submit.removeAttr('disabled');
33
+ acceptances.each(function(i, n) {
34
+ n = jQuery(n);
35
+ if (n.hasClass('wpcf7-invert') && n.is(':checked') || ! n.hasClass('wpcf7-invert') && ! n.is(':checked'))
36
+ submit.attr('disabled', 'disabled');
37
+ });
38
  }
39
 
40
  function wpcf7BeforeSubmit(formData, jqForm, options) {
includes/admin-panel.php CHANGED
@@ -1,13 +1,13 @@
1
- <?php if (! version_compare($wp_version, '2.7-beta3', '>=') && isset($updated_message)) : ?>
2
  <div id="message" class="updated fade"><p><strong><?php echo $updated_message; ?></strong></p></div>
3
  <?php endif; ?>
4
  <div class="wrap wpcf7">
5
  <h2><?php _e('Contact Form 7', 'wpcf7'); ?></h2>
6
 
7
- <?php if (version_compare($wp_version, '2.7-beta3', '>=') && isset($updated_message)) : ?>
8
  <div id="message" class="updated fade"><p><strong><?php echo $updated_message; ?></strong></p></div>
9
  <?php endif; ?>
10
-
11
  <ul class="subsubsub">
12
  <?php foreach ($contact_forms as $k => $v) : ?>
13
  <li><a href="<?php echo $base_url . '?page=' . $page . '&contactform=' . $k ?>"<?php if ($k == $current) echo ' class="current"'; ?>>
@@ -108,7 +108,7 @@
108
  <div class="pseudo-hr"></div>
109
  <div class="mail-field">
110
  <label for="wpcf7-mail-attachments"><?php _e('File attachments:', 'wpcf7'); ?></label>
111
- <?php if (version_compare($wp_version, '2.7-alpha', '<')) : ?>
112
  <span style="color: #ff3300; margin-left: 0.5em;"><?php _e('(You need WordPress 2.7 or greater to use this feature)', 'wpcf7'); ?></span>
113
  <?php endif; ?>
114
  <br />
@@ -160,7 +160,7 @@
160
  <div class="pseudo-hr"></div>
161
  <div class="mail-field">
162
  <label for="wpcf7-mail-2-attachments"><?php _e('File attachments:', 'wpcf7'); ?></label>
163
- <?php if (version_compare($wp_version, '2.7-alpha', '<')) : ?>
164
  <span style="color: #ff3300; margin-left: 0.5em;"><?php _e('(You need WordPress 2.7 or greater to use this feature)', 'wpcf7'); ?></span>
165
  <?php endif; ?>
166
  <br />
1
+ <?php if (! version_compare($wp_version, '2.7', '>=') && isset($updated_message)) : ?>
2
  <div id="message" class="updated fade"><p><strong><?php echo $updated_message; ?></strong></p></div>
3
  <?php endif; ?>
4
  <div class="wrap wpcf7">
5
  <h2><?php _e('Contact Form 7', 'wpcf7'); ?></h2>
6
 
7
+ <?php if (version_compare($wp_version, '2.7', '>=') && isset($updated_message)) : ?>
8
  <div id="message" class="updated fade"><p><strong><?php echo $updated_message; ?></strong></p></div>
9
  <?php endif; ?>
10
+
11
  <ul class="subsubsub">
12
  <?php foreach ($contact_forms as $k => $v) : ?>
13
  <li><a href="<?php echo $base_url . '?page=' . $page . '&contactform=' . $k ?>"<?php if ($k == $current) echo ' class="current"'; ?>>
108
  <div class="pseudo-hr"></div>
109
  <div class="mail-field">
110
  <label for="wpcf7-mail-attachments"><?php _e('File attachments:', 'wpcf7'); ?></label>
111
+ <?php if (version_compare($wp_version, '2.7', '<')) : ?>
112
  <span style="color: #ff3300; margin-left: 0.5em;"><?php _e('(You need WordPress 2.7 or greater to use this feature)', 'wpcf7'); ?></span>
113
  <?php endif; ?>
114
  <br />
160
  <div class="pseudo-hr"></div>
161
  <div class="mail-field">
162
  <label for="wpcf7-mail-2-attachments"><?php _e('File attachments:', 'wpcf7'); ?></label>
163
+ <?php if (version_compare($wp_version, '2.7', '<')) : ?>
164
  <span style="color: #ff3300; margin-left: 0.5em;"><?php _e('(You need WordPress 2.7 or greater to use this feature)', 'wpcf7'); ?></span>
165
  <?php endif; ?>
166
  <br />
languages/wpcf7-ja.mo CHANGED
Binary file
languages/wpcf7-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-07 00:21+0900\n"
6
- "PO-Revision-Date: 2008-12-07 00:33+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: Takayuki Miyoshi <takayukister@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,267 +17,283 @@ msgstr ""
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: contact-form-7\n"
19
 
20
- #: contact-form-7/wp-contact-form-7.php:391
21
  msgid "Contact form"
22
  msgstr "コンタクトフォーム"
23
 
24
- #: contact-form-7/wp-contact-form-7.php:548
25
  #: contact-form-7/includes/admin-panel.php:5
26
  msgid "Contact Form 7"
27
  msgstr "Contact Form 7"
28
 
29
- #: contact-form-7/wp-contact-form-7.php:566
30
  msgid "optional"
31
  msgstr "オプション"
32
 
33
- #: contact-form-7/wp-contact-form-7.php:567
34
  msgid "Generate Tag"
35
  msgstr "タグの作成"
36
 
37
- #: contact-form-7/wp-contact-form-7.php:568
38
  msgid "Text field"
39
  msgstr "テキスト項目"
40
 
41
- #: contact-form-7/wp-contact-form-7.php:569
42
  msgid "Email field"
43
  msgstr "メールアドレス項目"
44
 
45
- #: contact-form-7/wp-contact-form-7.php:570
46
  msgid "Text area"
47
  msgstr "テキストエリア"
48
 
49
- #: contact-form-7/wp-contact-form-7.php:571
50
  msgid "Drop-down menu"
51
  msgstr "ドロップダウン・メニュー"
52
 
53
- #: contact-form-7/wp-contact-form-7.php:572
54
  msgid "Checkboxes"
55
  msgstr "チェックボックス"
56
 
57
- #: contact-form-7/wp-contact-form-7.php:573
58
  msgid "Radio buttons"
59
  msgstr "ラジオボタン"
60
 
61
- #: contact-form-7/wp-contact-form-7.php:574
62
  msgid "Acceptance"
63
  msgstr "承諾の確認"
64
 
65
- #: contact-form-7/wp-contact-form-7.php:575
66
  msgid "Make this checkbox checked by default?"
67
  msgstr "初期状態でチェックボックスにチェックを入れますか?"
68
 
69
- #: contact-form-7/wp-contact-form-7.php:576
70
  msgid "Make this checkbox work inversely?"
71
  msgstr "チェックボックスを反転させますか?"
72
 
73
- #: contact-form-7/wp-contact-form-7.php:577
74
  msgid "* That means visitor who accepts the term unchecks it."
75
  msgstr "* つまり、利用者には条項に承諾する場合にチェックボックスのチェックをはずしてもらいます。"
76
 
77
- #: contact-form-7/wp-contact-form-7.php:578
78
  msgid "CAPTCHA"
79
  msgstr "CAPTCHA"
80
 
81
- #: contact-form-7/wp-contact-form-7.php:579
 
 
 
 
 
 
 
 
 
 
 
 
82
  msgid "File upload"
83
  msgstr "ファイルのアップロード"
84
 
85
- #: contact-form-7/wp-contact-form-7.php:580
86
  msgid "Submit button"
87
  msgstr "送信ボタン"
88
 
89
- #: contact-form-7/wp-contact-form-7.php:581
90
  msgid "Name"
91
  msgstr "名前"
92
 
93
- #: contact-form-7/wp-contact-form-7.php:582
94
  msgid "Required field?"
95
  msgstr "必須入力の項目ですか?"
96
 
97
- #: contact-form-7/wp-contact-form-7.php:583
98
  msgid "Allow multiple selections?"
99
  msgstr "複数選択を可能にしますか?"
100
 
101
- #: contact-form-7/wp-contact-form-7.php:584
102
  msgid "Insert a blank item as the first option?"
103
  msgstr "先頭に空の項目を挿入しますか?"
104
 
105
- #: contact-form-7/wp-contact-form-7.php:585
106
  msgid "Make checkboxes exclusive?"
107
  msgstr "チェックボックスを排他化しますか?"
108
 
109
- #: contact-form-7/wp-contact-form-7.php:586
110
  msgid "Choices"
111
  msgstr "選択項目"
112
 
113
- #: contact-form-7/wp-contact-form-7.php:587
114
  msgid "Label"
115
  msgstr "ラベル"
116
 
117
- #: contact-form-7/wp-contact-form-7.php:588
118
  msgid "Default value"
119
  msgstr "デフォルト値"
120
 
121
- #: contact-form-7/wp-contact-form-7.php:589
122
  msgid "Akismet"
123
  msgstr "Akismet"
124
 
125
- #: contact-form-7/wp-contact-form-7.php:590
126
  msgid "This field requires author's name"
127
  msgstr "送信者の名前の入力を要求する項目"
128
 
129
- #: contact-form-7/wp-contact-form-7.php:591
130
  msgid "This field requires author's URL"
131
  msgstr "送信者の URL の入力を要求する項目"
132
 
133
- #: contact-form-7/wp-contact-form-7.php:592
134
  msgid "This field requires author's email address"
135
  msgstr "送信者のメールアドレスの入力を要求する項目"
136
 
137
- #: contact-form-7/wp-contact-form-7.php:593
138
  msgid "Copy this code and paste it into the form left."
139
  msgstr "このコードをコピーして、左のフォーム内にペーストしてください。"
140
 
141
- #: contact-form-7/wp-contact-form-7.php:594
142
  msgid "Foreground color"
143
  msgstr "文字色"
144
 
145
- #: contact-form-7/wp-contact-form-7.php:595
146
  msgid "Background color"
147
  msgstr "背景色"
148
 
149
- #: contact-form-7/wp-contact-form-7.php:596
150
  msgid "Image size"
151
  msgstr "画像サイズ"
152
 
153
- #: contact-form-7/wp-contact-form-7.php:597
154
  msgid "Small"
155
  msgstr "小"
156
 
157
- #: contact-form-7/wp-contact-form-7.php:598
158
  msgid "Medium"
159
  msgstr "中"
160
 
161
- #: contact-form-7/wp-contact-form-7.php:599
162
  msgid "Large"
163
  msgstr "大"
164
 
165
- #: contact-form-7/wp-contact-form-7.php:600
166
  msgid "Image settings"
167
  msgstr "画像の設定"
168
 
169
- #: contact-form-7/wp-contact-form-7.php:601
170
  msgid "Input field settings"
171
  msgstr "入力項目の設定"
172
 
173
- #: contact-form-7/wp-contact-form-7.php:602
174
  msgid "For image"
175
  msgstr "画像"
176
 
177
- #: contact-form-7/wp-contact-form-7.php:603
178
  msgid "For input field"
179
  msgstr "入力項目"
180
 
181
- #: contact-form-7/wp-contact-form-7.php:604
182
  msgid "* One choice per line."
183
  msgstr "* 1行ごとに分けて入力してください。"
184
 
185
- #: contact-form-7/wp-contact-form-7.php:605
186
  msgid "Show"
187
  msgstr "表示"
188
 
189
- #: contact-form-7/wp-contact-form-7.php:606
190
  msgid "Hide"
191
  msgstr "非表示"
192
 
193
- #: contact-form-7/wp-contact-form-7.php:607
194
  msgid "File size limit"
195
  msgstr "ファイルサイズの上限"
196
 
197
- #: contact-form-7/wp-contact-form-7.php:608
198
  msgid "Acceptable file types"
199
  msgstr "受け入れ可能なファイル形式"
200
 
201
- #: contact-form-7/wp-contact-form-7.php:634
202
  msgid "Contact form created."
203
  msgstr "コンタクトフォームが作成されました。"
204
 
205
- #: contact-form-7/wp-contact-form-7.php:637
206
  msgid "Contact form saved."
207
  msgstr "コンタクトフォームが保存されました。"
208
 
209
- #: contact-form-7/wp-contact-form-7.php:640
210
  msgid "Contact form deleted."
211
  msgstr "コンタクトフォームが削除されました。"
212
 
213
- #: contact-form-7/wp-contact-form-7.php:651
214
  msgid "Untitled"
215
  msgstr "無題"
216
 
217
- #: contact-form-7/wp-contact-form-7.php:678
218
  msgid "Your Name"
219
  msgstr "お名前"
220
 
221
- #: contact-form-7/wp-contact-form-7.php:678
222
- #: contact-form-7/wp-contact-form-7.php:680
223
  msgid "(required)"
224
  msgstr "(必須)"
225
 
226
- #: contact-form-7/wp-contact-form-7.php:680
227
  msgid "Your Email"
228
  msgstr "メールアドレス"
229
 
230
- #: contact-form-7/wp-contact-form-7.php:682
231
  msgid "Subject"
232
  msgstr "題名"
233
 
234
- #: contact-form-7/wp-contact-form-7.php:684
235
  msgid "Your Message"
236
  msgstr "メッセージ本文"
237
 
238
- #: contact-form-7/wp-contact-form-7.php:686
239
- #: contact-form-7/wp-contact-form-7.php:1325
240
  msgid "Send"
241
  msgstr "送信"
242
 
243
- #: contact-form-7/wp-contact-form-7.php:739
244
  msgid "Your message was sent successfully. Thanks."
245
  msgstr "あなたのメッセージは送信されました。ありがとうございました。"
246
 
247
- #: contact-form-7/wp-contact-form-7.php:741
248
- #: contact-form-7/wp-contact-form-7.php:743
249
  msgid "Failed to send your message. Please try later or contact administrator by other way."
250
  msgstr "メッセージの送信に失敗しました。間をおいてもう一度お試しいただくか、別の手段で管理者にお問い合わせ下さい。"
251
 
252
- #: contact-form-7/wp-contact-form-7.php:745
253
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
254
  msgstr "入力内容に不備があります。確認してもう一度送信してください。"
255
 
256
- #: contact-form-7/wp-contact-form-7.php:747
257
  msgid "Please accept the terms to proceed."
258
  msgstr "進めるには条項の承諾が必要です。"
259
 
260
- #: contact-form-7/wp-contact-form-7.php:749
261
  msgid "Email address seems invalid."
262
  msgstr "メールアドレスの形式が正しくないようです。"
263
 
264
- #: contact-form-7/wp-contact-form-7.php:751
265
  msgid "Please fill the required field."
266
  msgstr "必須項目に記入もれがあります。"
267
 
268
- #: contact-form-7/wp-contact-form-7.php:753
269
  msgid "Your entered code is incorrect."
270
  msgstr "入力されたコードが正しくありません。"
271
 
272
- #: contact-form-7/wp-contact-form-7.php:755
 
 
 
 
273
  msgid "Failed to upload file."
274
  msgstr "ファイルのアップロードに失敗しました。"
275
 
276
- #: contact-form-7/wp-contact-form-7.php:757
277
  msgid "This file type is not allowed."
278
  msgstr "許可されていないファイル形式です。"
279
 
280
- #: contact-form-7/wp-contact-form-7.php:759
281
  msgid "This file is too large."
282
  msgstr "ファイルが大きすぎます。"
283
 
@@ -290,7 +306,7 @@ msgid "Copy this code and paste it into your post, page or text widget content."
290
  msgstr "このコードをコピーして、投稿、ページ、またはテキストウィジェットの本文内にペーストしてください。"
291
 
292
  #: contact-form-7/includes/admin-panel.php:49
293
- #: contact-form-7/includes/admin-panel.php:253
294
  msgid "Save"
295
  msgstr "保存"
296
 
@@ -390,18 +406,22 @@ msgid "There is a field of term that sender is needed to accept"
390
  msgstr "承諾が必要な項目が承諾されていない"
391
 
392
  #: contact-form-7/includes/admin-panel.php:224
 
 
 
 
393
  msgid "The code that sender entered does not match the CAPTCHA"
394
  msgstr "入力されたコードが CAPTCHA に適合していない"
395
 
396
- #: contact-form-7/includes/admin-panel.php:228
397
  msgid "Uploading a file fails for any reason"
398
  msgstr "ファイルのアップロードが何らかの理由により失敗している"
399
 
400
- #: contact-form-7/includes/admin-panel.php:232
401
  msgid "Uploaded file is not allowed file type"
402
  msgstr "アップロードされたファイルが許可されたファイル形式に適合しない"
403
 
404
- #: contact-form-7/includes/admin-panel.php:236
405
  msgid "Uploaded file is too large"
406
  msgstr "アップロードされたファイルが大きすぎる"
407
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-02-01 05:19+0900\n"
6
+ "PO-Revision-Date: 2009-02-01 05:25+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: Takayuki Miyoshi <takayukister@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: contact-form-7\n"
19
 
20
+ #: contact-form-7/wp-contact-form-7.php:413
21
  msgid "Contact form"
22
  msgstr "コンタクトフォーム"
23
 
24
+ #: contact-form-7/wp-contact-form-7.php:582
25
  #: contact-form-7/includes/admin-panel.php:5
26
  msgid "Contact Form 7"
27
  msgstr "Contact Form 7"
28
 
29
+ #: contact-form-7/wp-contact-form-7.php:605
30
  msgid "optional"
31
  msgstr "オプション"
32
 
33
+ #: contact-form-7/wp-contact-form-7.php:606
34
  msgid "Generate Tag"
35
  msgstr "タグの作成"
36
 
37
+ #: contact-form-7/wp-contact-form-7.php:607
38
  msgid "Text field"
39
  msgstr "テキスト項目"
40
 
41
+ #: contact-form-7/wp-contact-form-7.php:608
42
  msgid "Email field"
43
  msgstr "メールアドレス項目"
44
 
45
+ #: contact-form-7/wp-contact-form-7.php:609
46
  msgid "Text area"
47
  msgstr "テキストエリア"
48
 
49
+ #: contact-form-7/wp-contact-form-7.php:610
50
  msgid "Drop-down menu"
51
  msgstr "ドロップダウン・メニュー"
52
 
53
+ #: contact-form-7/wp-contact-form-7.php:611
54
  msgid "Checkboxes"
55
  msgstr "チェックボックス"
56
 
57
+ #: contact-form-7/wp-contact-form-7.php:612
58
  msgid "Radio buttons"
59
  msgstr "ラジオボタン"
60
 
61
+ #: contact-form-7/wp-contact-form-7.php:613
62
  msgid "Acceptance"
63
  msgstr "承諾の確認"
64
 
65
+ #: contact-form-7/wp-contact-form-7.php:614
66
  msgid "Make this checkbox checked by default?"
67
  msgstr "初期状態でチェックボックスにチェックを入れますか?"
68
 
69
+ #: contact-form-7/wp-contact-form-7.php:615
70
  msgid "Make this checkbox work inversely?"
71
  msgstr "チェックボックスを反転させますか?"
72
 
73
+ #: contact-form-7/wp-contact-form-7.php:616
74
  msgid "* That means visitor who accepts the term unchecks it."
75
  msgstr "* つまり、利用者には条項に承諾する場合にチェックボックスのチェックをはずしてもらいます。"
76
 
77
+ #: contact-form-7/wp-contact-form-7.php:617
78
  msgid "CAPTCHA"
79
  msgstr "CAPTCHA"
80
 
81
+ #: contact-form-7/wp-contact-form-7.php:618
82
+ msgid "Quiz"
83
+ msgstr "クイズ"
84
+
85
+ #: contact-form-7/wp-contact-form-7.php:619
86
+ msgid "Quizzes"
87
+ msgstr "質問と答え"
88
+
89
+ #: contact-form-7/wp-contact-form-7.php:620
90
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
91
+ msgstr "* 質問|答え (例: 1+1=?|2)"
92
+
93
+ #: contact-form-7/wp-contact-form-7.php:621
94
  msgid "File upload"
95
  msgstr "ファイルのアップロード"
96
 
97
+ #: contact-form-7/wp-contact-form-7.php:622
98
  msgid "Submit button"
99
  msgstr "送信ボタン"
100
 
101
+ #: contact-form-7/wp-contact-form-7.php:623
102
  msgid "Name"
103
  msgstr "名前"
104
 
105
+ #: contact-form-7/wp-contact-form-7.php:624
106
  msgid "Required field?"
107
  msgstr "必須入力の項目ですか?"
108
 
109
+ #: contact-form-7/wp-contact-form-7.php:625
110
  msgid "Allow multiple selections?"
111
  msgstr "複数選択を可能にしますか?"
112
 
113
+ #: contact-form-7/wp-contact-form-7.php:626
114
  msgid "Insert a blank item as the first option?"
115
  msgstr "先頭に空の項目を挿入しますか?"
116
 
117
+ #: contact-form-7/wp-contact-form-7.php:627
118
  msgid "Make checkboxes exclusive?"
119
  msgstr "チェックボックスを排他化しますか?"
120
 
121
+ #: contact-form-7/wp-contact-form-7.php:628
122
  msgid "Choices"
123
  msgstr "選択項目"
124
 
125
+ #: contact-form-7/wp-contact-form-7.php:629
126
  msgid "Label"
127
  msgstr "ラベル"
128
 
129
+ #: contact-form-7/wp-contact-form-7.php:630
130
  msgid "Default value"
131
  msgstr "デフォルト値"
132
 
133
+ #: contact-form-7/wp-contact-form-7.php:631
134
  msgid "Akismet"
135
  msgstr "Akismet"
136
 
137
+ #: contact-form-7/wp-contact-form-7.php:632
138
  msgid "This field requires author's name"
139
  msgstr "送信者の名前の入力を要求する項目"
140
 
141
+ #: contact-form-7/wp-contact-form-7.php:633
142
  msgid "This field requires author's URL"
143
  msgstr "送信者の URL の入力を要求する項目"
144
 
145
+ #: contact-form-7/wp-contact-form-7.php:634
146
  msgid "This field requires author's email address"
147
  msgstr "送信者のメールアドレスの入力を要求する項目"
148
 
149
+ #: contact-form-7/wp-contact-form-7.php:635
150
  msgid "Copy this code and paste it into the form left."
151
  msgstr "このコードをコピーして、左のフォーム内にペーストしてください。"
152
 
153
+ #: contact-form-7/wp-contact-form-7.php:636
154
  msgid "Foreground color"
155
  msgstr "文字色"
156
 
157
+ #: contact-form-7/wp-contact-form-7.php:637
158
  msgid "Background color"
159
  msgstr "背景色"
160
 
161
+ #: contact-form-7/wp-contact-form-7.php:638
162
  msgid "Image size"
163
  msgstr "画像サイズ"
164
 
165
+ #: contact-form-7/wp-contact-form-7.php:639
166
  msgid "Small"
167
  msgstr "小"
168
 
169
+ #: contact-form-7/wp-contact-form-7.php:640
170
  msgid "Medium"
171
  msgstr "中"
172
 
173
+ #: contact-form-7/wp-contact-form-7.php:641
174
  msgid "Large"
175
  msgstr "大"
176
 
177
+ #: contact-form-7/wp-contact-form-7.php:642
178
  msgid "Image settings"
179
  msgstr "画像の設定"
180
 
181
+ #: contact-form-7/wp-contact-form-7.php:643
182
  msgid "Input field settings"
183
  msgstr "入力項目の設定"
184
 
185
+ #: contact-form-7/wp-contact-form-7.php:644
186
  msgid "For image"
187
  msgstr "画像"
188
 
189
+ #: contact-form-7/wp-contact-form-7.php:645
190
  msgid "For input field"
191
  msgstr "入力項目"
192
 
193
+ #: contact-form-7/wp-contact-form-7.php:646
194
  msgid "* One choice per line."
195
  msgstr "* 1行ごとに分けて入力してください。"
196
 
197
+ #: contact-form-7/wp-contact-form-7.php:647
198
  msgid "Show"
199
  msgstr "表示"
200
 
201
+ #: contact-form-7/wp-contact-form-7.php:648
202
  msgid "Hide"
203
  msgstr "非表示"
204
 
205
+ #: contact-form-7/wp-contact-form-7.php:649
206
  msgid "File size limit"
207
  msgstr "ファイルサイズの上限"
208
 
209
+ #: contact-form-7/wp-contact-form-7.php:650
210
  msgid "Acceptable file types"
211
  msgstr "受け入れ可能なファイル形式"
212
 
213
+ #: contact-form-7/wp-contact-form-7.php:676
214
  msgid "Contact form created."
215
  msgstr "コンタクトフォームが作成されました。"
216
 
217
+ #: contact-form-7/wp-contact-form-7.php:679
218
  msgid "Contact form saved."
219
  msgstr "コンタクトフォームが保存されました。"
220
 
221
+ #: contact-form-7/wp-contact-form-7.php:682
222
  msgid "Contact form deleted."
223
  msgstr "コンタクトフォームが削除されました。"
224
 
225
+ #: contact-form-7/wp-contact-form-7.php:693
226
  msgid "Untitled"
227
  msgstr "無題"
228
 
229
+ #: contact-form-7/wp-contact-form-7.php:720
230
  msgid "Your Name"
231
  msgstr "お名前"
232
 
233
+ #: contact-form-7/wp-contact-form-7.php:720
234
+ #: contact-form-7/wp-contact-form-7.php:722
235
  msgid "(required)"
236
  msgstr "(必須)"
237
 
238
+ #: contact-form-7/wp-contact-form-7.php:722
239
  msgid "Your Email"
240
  msgstr "メールアドレス"
241
 
242
+ #: contact-form-7/wp-contact-form-7.php:724
243
  msgid "Subject"
244
  msgstr "題名"
245
 
246
+ #: contact-form-7/wp-contact-form-7.php:726
247
  msgid "Your Message"
248
  msgstr "メッセージ本文"
249
 
250
+ #: contact-form-7/wp-contact-form-7.php:728
251
+ #: contact-form-7/wp-contact-form-7.php:1451
252
  msgid "Send"
253
  msgstr "送信"
254
 
255
+ #: contact-form-7/wp-contact-form-7.php:782
256
  msgid "Your message was sent successfully. Thanks."
257
  msgstr "あなたのメッセージは送信されました。ありがとうございました。"
258
 
259
+ #: contact-form-7/wp-contact-form-7.php:784
260
+ #: contact-form-7/wp-contact-form-7.php:786
261
  msgid "Failed to send your message. Please try later or contact administrator by other way."
262
  msgstr "メッセージの送信に失敗しました。間をおいてもう一度お試しいただくか、別の手段で管理者にお問い合わせ下さい。"
263
 
264
+ #: contact-form-7/wp-contact-form-7.php:788
265
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
266
  msgstr "入力内容に不備があります。確認してもう一度送信してください。"
267
 
268
+ #: contact-form-7/wp-contact-form-7.php:790
269
  msgid "Please accept the terms to proceed."
270
  msgstr "進めるには条項の承諾が必要です。"
271
 
272
+ #: contact-form-7/wp-contact-form-7.php:792
273
  msgid "Email address seems invalid."
274
  msgstr "メールアドレスの形式が正しくないようです。"
275
 
276
+ #: contact-form-7/wp-contact-form-7.php:794
277
  msgid "Please fill the required field."
278
  msgstr "必須項目に記入もれがあります。"
279
 
280
+ #: contact-form-7/wp-contact-form-7.php:796
281
  msgid "Your entered code is incorrect."
282
  msgstr "入力されたコードが正しくありません。"
283
 
284
+ #: contact-form-7/wp-contact-form-7.php:798
285
+ msgid "Your answer is not correct."
286
+ msgstr "答えが正しくありません。"
287
+
288
+ #: contact-form-7/wp-contact-form-7.php:800
289
  msgid "Failed to upload file."
290
  msgstr "ファイルのアップロードに失敗しました。"
291
 
292
+ #: contact-form-7/wp-contact-form-7.php:802
293
  msgid "This file type is not allowed."
294
  msgstr "許可されていないファイル形式です。"
295
 
296
+ #: contact-form-7/wp-contact-form-7.php:804
297
  msgid "This file is too large."
298
  msgstr "ファイルが大きすぎます。"
299
 
306
  msgstr "このコードをコピーして、投稿、ページ、またはテキストウィジェットの本文内にペーストしてください。"
307
 
308
  #: contact-form-7/includes/admin-panel.php:49
309
+ #: contact-form-7/includes/admin-panel.php:257
310
  msgid "Save"
311
  msgstr "保存"
312
 
406
  msgstr "承諾が必要な項目が承諾されていない"
407
 
408
  #: contact-form-7/includes/admin-panel.php:224
409
+ msgid "Sender doesn't enter the correct answer to the quiz"
410
+ msgstr "クイズに対する正しい答えが入力されなかった"
411
+
412
+ #: contact-form-7/includes/admin-panel.php:228
413
  msgid "The code that sender entered does not match the CAPTCHA"
414
  msgstr "入力されたコードが CAPTCHA に適合していない"
415
 
416
+ #: contact-form-7/includes/admin-panel.php:232
417
  msgid "Uploading a file fails for any reason"
418
  msgstr "ファイルのアップロードが何らかの理由により失敗している"
419
 
420
+ #: contact-form-7/includes/admin-panel.php:236
421
  msgid "Uploaded file is not allowed file type"
422
  msgstr "アップロードされたファイルが許可されたファイル形式に適合しない"
423
 
424
+ #: contact-form-7/includes/admin-panel.php:240
425
  msgid "Uploaded file is too large"
426
  msgstr "アップロードされたファイルが大きすぎる"
427
 
languages/wpcf7.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-07 00:21+0900\n"
6
- "PO-Revision-Date: 2008-12-07 00:22+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -15,267 +15,283 @@ msgstr ""
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SearchPath-0: contact-form-7\n"
17
 
18
- #: contact-form-7/wp-contact-form-7.php:391
19
  msgid "Contact form"
20
  msgstr ""
21
 
22
- #: contact-form-7/wp-contact-form-7.php:548
23
  #: contact-form-7/includes/admin-panel.php:5
24
  msgid "Contact Form 7"
25
  msgstr ""
26
 
27
- #: contact-form-7/wp-contact-form-7.php:566
28
  msgid "optional"
29
  msgstr ""
30
 
31
- #: contact-form-7/wp-contact-form-7.php:567
32
  msgid "Generate Tag"
33
  msgstr ""
34
 
35
- #: contact-form-7/wp-contact-form-7.php:568
36
  msgid "Text field"
37
  msgstr ""
38
 
39
- #: contact-form-7/wp-contact-form-7.php:569
40
  msgid "Email field"
41
  msgstr ""
42
 
43
- #: contact-form-7/wp-contact-form-7.php:570
44
  msgid "Text area"
45
  msgstr ""
46
 
47
- #: contact-form-7/wp-contact-form-7.php:571
48
  msgid "Drop-down menu"
49
  msgstr ""
50
 
51
- #: contact-form-7/wp-contact-form-7.php:572
52
  msgid "Checkboxes"
53
  msgstr ""
54
 
55
- #: contact-form-7/wp-contact-form-7.php:573
56
  msgid "Radio buttons"
57
  msgstr ""
58
 
59
- #: contact-form-7/wp-contact-form-7.php:574
60
  msgid "Acceptance"
61
  msgstr ""
62
 
63
- #: contact-form-7/wp-contact-form-7.php:575
64
  msgid "Make this checkbox checked by default?"
65
  msgstr ""
66
 
67
- #: contact-form-7/wp-contact-form-7.php:576
68
  msgid "Make this checkbox work inversely?"
69
  msgstr ""
70
 
71
- #: contact-form-7/wp-contact-form-7.php:577
72
  msgid "* That means visitor who accepts the term unchecks it."
73
  msgstr ""
74
 
75
- #: contact-form-7/wp-contact-form-7.php:578
76
  msgid "CAPTCHA"
77
  msgstr ""
78
 
79
- #: contact-form-7/wp-contact-form-7.php:579
 
 
 
 
 
 
 
 
 
 
 
 
80
  msgid "File upload"
81
  msgstr ""
82
 
83
- #: contact-form-7/wp-contact-form-7.php:580
84
  msgid "Submit button"
85
  msgstr ""
86
 
87
- #: contact-form-7/wp-contact-form-7.php:581
88
  msgid "Name"
89
  msgstr ""
90
 
91
- #: contact-form-7/wp-contact-form-7.php:582
92
  msgid "Required field?"
93
  msgstr ""
94
 
95
- #: contact-form-7/wp-contact-form-7.php:583
96
  msgid "Allow multiple selections?"
97
  msgstr ""
98
 
99
- #: contact-form-7/wp-contact-form-7.php:584
100
  msgid "Insert a blank item as the first option?"
101
  msgstr ""
102
 
103
- #: contact-form-7/wp-contact-form-7.php:585
104
  msgid "Make checkboxes exclusive?"
105
  msgstr ""
106
 
107
- #: contact-form-7/wp-contact-form-7.php:586
108
  msgid "Choices"
109
  msgstr ""
110
 
111
- #: contact-form-7/wp-contact-form-7.php:587
112
  msgid "Label"
113
  msgstr ""
114
 
115
- #: contact-form-7/wp-contact-form-7.php:588
116
  msgid "Default value"
117
  msgstr ""
118
 
119
- #: contact-form-7/wp-contact-form-7.php:589
120
  msgid "Akismet"
121
  msgstr ""
122
 
123
- #: contact-form-7/wp-contact-form-7.php:590
124
  msgid "This field requires author's name"
125
  msgstr ""
126
 
127
- #: contact-form-7/wp-contact-form-7.php:591
128
  msgid "This field requires author's URL"
129
  msgstr ""
130
 
131
- #: contact-form-7/wp-contact-form-7.php:592
132
  msgid "This field requires author's email address"
133
  msgstr ""
134
 
135
- #: contact-form-7/wp-contact-form-7.php:593
136
  msgid "Copy this code and paste it into the form left."
137
  msgstr ""
138
 
139
- #: contact-form-7/wp-contact-form-7.php:594
140
  msgid "Foreground color"
141
  msgstr ""
142
 
143
- #: contact-form-7/wp-contact-form-7.php:595
144
  msgid "Background color"
145
  msgstr ""
146
 
147
- #: contact-form-7/wp-contact-form-7.php:596
148
  msgid "Image size"
149
  msgstr ""
150
 
151
- #: contact-form-7/wp-contact-form-7.php:597
152
  msgid "Small"
153
  msgstr ""
154
 
155
- #: contact-form-7/wp-contact-form-7.php:598
156
  msgid "Medium"
157
  msgstr ""
158
 
159
- #: contact-form-7/wp-contact-form-7.php:599
160
  msgid "Large"
161
  msgstr ""
162
 
163
- #: contact-form-7/wp-contact-form-7.php:600
164
  msgid "Image settings"
165
  msgstr ""
166
 
167
- #: contact-form-7/wp-contact-form-7.php:601
168
  msgid "Input field settings"
169
  msgstr ""
170
 
171
- #: contact-form-7/wp-contact-form-7.php:602
172
  msgid "For image"
173
  msgstr ""
174
 
175
- #: contact-form-7/wp-contact-form-7.php:603
176
  msgid "For input field"
177
  msgstr ""
178
 
179
- #: contact-form-7/wp-contact-form-7.php:604
180
  msgid "* One choice per line."
181
  msgstr ""
182
 
183
- #: contact-form-7/wp-contact-form-7.php:605
184
  msgid "Show"
185
  msgstr ""
186
 
187
- #: contact-form-7/wp-contact-form-7.php:606
188
  msgid "Hide"
189
  msgstr ""
190
 
191
- #: contact-form-7/wp-contact-form-7.php:607
192
  msgid "File size limit"
193
  msgstr ""
194
 
195
- #: contact-form-7/wp-contact-form-7.php:608
196
  msgid "Acceptable file types"
197
  msgstr ""
198
 
199
- #: contact-form-7/wp-contact-form-7.php:634
200
  msgid "Contact form created."
201
  msgstr ""
202
 
203
- #: contact-form-7/wp-contact-form-7.php:637
204
  msgid "Contact form saved."
205
  msgstr ""
206
 
207
- #: contact-form-7/wp-contact-form-7.php:640
208
  msgid "Contact form deleted."
209
  msgstr ""
210
 
211
- #: contact-form-7/wp-contact-form-7.php:651
212
  msgid "Untitled"
213
  msgstr ""
214
 
215
- #: contact-form-7/wp-contact-form-7.php:678
216
  msgid "Your Name"
217
  msgstr ""
218
 
219
- #: contact-form-7/wp-contact-form-7.php:678
220
- #: contact-form-7/wp-contact-form-7.php:680
221
  msgid "(required)"
222
  msgstr ""
223
 
224
- #: contact-form-7/wp-contact-form-7.php:680
225
  msgid "Your Email"
226
  msgstr ""
227
 
228
- #: contact-form-7/wp-contact-form-7.php:682
229
  msgid "Subject"
230
  msgstr ""
231
 
232
- #: contact-form-7/wp-contact-form-7.php:684
233
  msgid "Your Message"
234
  msgstr ""
235
 
236
- #: contact-form-7/wp-contact-form-7.php:686
237
- #: contact-form-7/wp-contact-form-7.php:1325
238
  msgid "Send"
239
  msgstr ""
240
 
241
- #: contact-form-7/wp-contact-form-7.php:739
242
  msgid "Your message was sent successfully. Thanks."
243
  msgstr ""
244
 
245
- #: contact-form-7/wp-contact-form-7.php:741
246
- #: contact-form-7/wp-contact-form-7.php:743
247
  msgid "Failed to send your message. Please try later or contact administrator by other way."
248
  msgstr ""
249
 
250
- #: contact-form-7/wp-contact-form-7.php:745
251
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
252
  msgstr ""
253
 
254
- #: contact-form-7/wp-contact-form-7.php:747
255
  msgid "Please accept the terms to proceed."
256
  msgstr ""
257
 
258
- #: contact-form-7/wp-contact-form-7.php:749
259
  msgid "Email address seems invalid."
260
  msgstr ""
261
 
262
- #: contact-form-7/wp-contact-form-7.php:751
263
  msgid "Please fill the required field."
264
  msgstr ""
265
 
266
- #: contact-form-7/wp-contact-form-7.php:753
267
  msgid "Your entered code is incorrect."
268
  msgstr ""
269
 
270
- #: contact-form-7/wp-contact-form-7.php:755
 
 
 
 
271
  msgid "Failed to upload file."
272
  msgstr ""
273
 
274
- #: contact-form-7/wp-contact-form-7.php:757
275
  msgid "This file type is not allowed."
276
  msgstr ""
277
 
278
- #: contact-form-7/wp-contact-form-7.php:759
279
  msgid "This file is too large."
280
  msgstr ""
281
 
@@ -288,7 +304,7 @@ msgid "Copy this code and paste it into your post, page or text widget content."
288
  msgstr ""
289
 
290
  #: contact-form-7/includes/admin-panel.php:49
291
- #: contact-form-7/includes/admin-panel.php:253
292
  msgid "Save"
293
  msgstr ""
294
 
@@ -386,18 +402,22 @@ msgid "There is a field of term that sender is needed to accept"
386
  msgstr ""
387
 
388
  #: contact-form-7/includes/admin-panel.php:224
389
- msgid "The code that sender entered does not match the CAPTCHA"
390
  msgstr ""
391
 
392
  #: contact-form-7/includes/admin-panel.php:228
393
- msgid "Uploading a file fails for any reason"
394
  msgstr ""
395
 
396
  #: contact-form-7/includes/admin-panel.php:232
397
- msgid "Uploaded file is not allowed file type"
398
  msgstr ""
399
 
400
  #: contact-form-7/includes/admin-panel.php:236
 
 
 
 
401
  msgid "Uploaded file is too large"
402
  msgstr ""
403
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-02-01 05:19+0900\n"
6
+ "PO-Revision-Date: 2009-02-01 05:20+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SearchPath-0: contact-form-7\n"
17
 
18
+ #: contact-form-7/wp-contact-form-7.php:413
19
  msgid "Contact form"
20
  msgstr ""
21
 
22
+ #: contact-form-7/wp-contact-form-7.php:582
23
  #: contact-form-7/includes/admin-panel.php:5
24
  msgid "Contact Form 7"
25
  msgstr ""
26
 
27
+ #: contact-form-7/wp-contact-form-7.php:605
28
  msgid "optional"
29
  msgstr ""
30
 
31
+ #: contact-form-7/wp-contact-form-7.php:606
32
  msgid "Generate Tag"
33
  msgstr ""
34
 
35
+ #: contact-form-7/wp-contact-form-7.php:607
36
  msgid "Text field"
37
  msgstr ""
38
 
39
+ #: contact-form-7/wp-contact-form-7.php:608
40
  msgid "Email field"
41
  msgstr ""
42
 
43
+ #: contact-form-7/wp-contact-form-7.php:609
44
  msgid "Text area"
45
  msgstr ""
46
 
47
+ #: contact-form-7/wp-contact-form-7.php:610
48
  msgid "Drop-down menu"
49
  msgstr ""
50
 
51
+ #: contact-form-7/wp-contact-form-7.php:611
52
  msgid "Checkboxes"
53
  msgstr ""
54
 
55
+ #: contact-form-7/wp-contact-form-7.php:612
56
  msgid "Radio buttons"
57
  msgstr ""
58
 
59
+ #: contact-form-7/wp-contact-form-7.php:613
60
  msgid "Acceptance"
61
  msgstr ""
62
 
63
+ #: contact-form-7/wp-contact-form-7.php:614
64
  msgid "Make this checkbox checked by default?"
65
  msgstr ""
66
 
67
+ #: contact-form-7/wp-contact-form-7.php:615
68
  msgid "Make this checkbox work inversely?"
69
  msgstr ""
70
 
71
+ #: contact-form-7/wp-contact-form-7.php:616
72
  msgid "* That means visitor who accepts the term unchecks it."
73
  msgstr ""
74
 
75
+ #: contact-form-7/wp-contact-form-7.php:617
76
  msgid "CAPTCHA"
77
  msgstr ""
78
 
79
+ #: contact-form-7/wp-contact-form-7.php:618
80
+ msgid "Quiz"
81
+ msgstr ""
82
+
83
+ #: contact-form-7/wp-contact-form-7.php:619
84
+ msgid "Quizzes"
85
+ msgstr ""
86
+
87
+ #: contact-form-7/wp-contact-form-7.php:620
88
+ msgid "* quiz|answer (e.g. 1+1=?|2)"
89
+ msgstr ""
90
+
91
+ #: contact-form-7/wp-contact-form-7.php:621
92
  msgid "File upload"
93
  msgstr ""
94
 
95
+ #: contact-form-7/wp-contact-form-7.php:622
96
  msgid "Submit button"
97
  msgstr ""
98
 
99
+ #: contact-form-7/wp-contact-form-7.php:623
100
  msgid "Name"
101
  msgstr ""
102
 
103
+ #: contact-form-7/wp-contact-form-7.php:624
104
  msgid "Required field?"
105
  msgstr ""
106
 
107
+ #: contact-form-7/wp-contact-form-7.php:625
108
  msgid "Allow multiple selections?"
109
  msgstr ""
110
 
111
+ #: contact-form-7/wp-contact-form-7.php:626
112
  msgid "Insert a blank item as the first option?"
113
  msgstr ""
114
 
115
+ #: contact-form-7/wp-contact-form-7.php:627
116
  msgid "Make checkboxes exclusive?"
117
  msgstr ""
118
 
119
+ #: contact-form-7/wp-contact-form-7.php:628
120
  msgid "Choices"
121
  msgstr ""
122
 
123
+ #: contact-form-7/wp-contact-form-7.php:629
124
  msgid "Label"
125
  msgstr ""
126
 
127
+ #: contact-form-7/wp-contact-form-7.php:630
128
  msgid "Default value"
129
  msgstr ""
130
 
131
+ #: contact-form-7/wp-contact-form-7.php:631
132
  msgid "Akismet"
133
  msgstr ""
134
 
135
+ #: contact-form-7/wp-contact-form-7.php:632
136
  msgid "This field requires author's name"
137
  msgstr ""
138
 
139
+ #: contact-form-7/wp-contact-form-7.php:633
140
  msgid "This field requires author's URL"
141
  msgstr ""
142
 
143
+ #: contact-form-7/wp-contact-form-7.php:634
144
  msgid "This field requires author's email address"
145
  msgstr ""
146
 
147
+ #: contact-form-7/wp-contact-form-7.php:635
148
  msgid "Copy this code and paste it into the form left."
149
  msgstr ""
150
 
151
+ #: contact-form-7/wp-contact-form-7.php:636
152
  msgid "Foreground color"
153
  msgstr ""
154
 
155
+ #: contact-form-7/wp-contact-form-7.php:637
156
  msgid "Background color"
157
  msgstr ""
158
 
159
+ #: contact-form-7/wp-contact-form-7.php:638
160
  msgid "Image size"
161
  msgstr ""
162
 
163
+ #: contact-form-7/wp-contact-form-7.php:639
164
  msgid "Small"
165
  msgstr ""
166
 
167
+ #: contact-form-7/wp-contact-form-7.php:640
168
  msgid "Medium"
169
  msgstr ""
170
 
171
+ #: contact-form-7/wp-contact-form-7.php:641
172
  msgid "Large"
173
  msgstr ""
174
 
175
+ #: contact-form-7/wp-contact-form-7.php:642
176
  msgid "Image settings"
177
  msgstr ""
178
 
179
+ #: contact-form-7/wp-contact-form-7.php:643
180
  msgid "Input field settings"
181
  msgstr ""
182
 
183
+ #: contact-form-7/wp-contact-form-7.php:644
184
  msgid "For image"
185
  msgstr ""
186
 
187
+ #: contact-form-7/wp-contact-form-7.php:645
188
  msgid "For input field"
189
  msgstr ""
190
 
191
+ #: contact-form-7/wp-contact-form-7.php:646
192
  msgid "* One choice per line."
193
  msgstr ""
194
 
195
+ #: contact-form-7/wp-contact-form-7.php:647
196
  msgid "Show"
197
  msgstr ""
198
 
199
+ #: contact-form-7/wp-contact-form-7.php:648
200
  msgid "Hide"
201
  msgstr ""
202
 
203
+ #: contact-form-7/wp-contact-form-7.php:649
204
  msgid "File size limit"
205
  msgstr ""
206
 
207
+ #: contact-form-7/wp-contact-form-7.php:650
208
  msgid "Acceptable file types"
209
  msgstr ""
210
 
211
+ #: contact-form-7/wp-contact-form-7.php:676
212
  msgid "Contact form created."
213
  msgstr ""
214
 
215
+ #: contact-form-7/wp-contact-form-7.php:679
216
  msgid "Contact form saved."
217
  msgstr ""
218
 
219
+ #: contact-form-7/wp-contact-form-7.php:682
220
  msgid "Contact form deleted."
221
  msgstr ""
222
 
223
+ #: contact-form-7/wp-contact-form-7.php:693
224
  msgid "Untitled"
225
  msgstr ""
226
 
227
+ #: contact-form-7/wp-contact-form-7.php:720
228
  msgid "Your Name"
229
  msgstr ""
230
 
231
+ #: contact-form-7/wp-contact-form-7.php:720
232
+ #: contact-form-7/wp-contact-form-7.php:722
233
  msgid "(required)"
234
  msgstr ""
235
 
236
+ #: contact-form-7/wp-contact-form-7.php:722
237
  msgid "Your Email"
238
  msgstr ""
239
 
240
+ #: contact-form-7/wp-contact-form-7.php:724
241
  msgid "Subject"
242
  msgstr ""
243
 
244
+ #: contact-form-7/wp-contact-form-7.php:726
245
  msgid "Your Message"
246
  msgstr ""
247
 
248
+ #: contact-form-7/wp-contact-form-7.php:728
249
+ #: contact-form-7/wp-contact-form-7.php:1451
250
  msgid "Send"
251
  msgstr ""
252
 
253
+ #: contact-form-7/wp-contact-form-7.php:782
254
  msgid "Your message was sent successfully. Thanks."
255
  msgstr ""
256
 
257
+ #: contact-form-7/wp-contact-form-7.php:784
258
+ #: contact-form-7/wp-contact-form-7.php:786
259
  msgid "Failed to send your message. Please try later or contact administrator by other way."
260
  msgstr ""
261
 
262
+ #: contact-form-7/wp-contact-form-7.php:788
263
  msgid "Validation errors occurred. Please confirm the fields and submit it again."
264
  msgstr ""
265
 
266
+ #: contact-form-7/wp-contact-form-7.php:790
267
  msgid "Please accept the terms to proceed."
268
  msgstr ""
269
 
270
+ #: contact-form-7/wp-contact-form-7.php:792
271
  msgid "Email address seems invalid."
272
  msgstr ""
273
 
274
+ #: contact-form-7/wp-contact-form-7.php:794
275
  msgid "Please fill the required field."
276
  msgstr ""
277
 
278
+ #: contact-form-7/wp-contact-form-7.php:796
279
  msgid "Your entered code is incorrect."
280
  msgstr ""
281
 
282
+ #: contact-form-7/wp-contact-form-7.php:798
283
+ msgid "Your answer is not correct."
284
+ msgstr ""
285
+
286
+ #: contact-form-7/wp-contact-form-7.php:800
287
  msgid "Failed to upload file."
288
  msgstr ""
289
 
290
+ #: contact-form-7/wp-contact-form-7.php:802
291
  msgid "This file type is not allowed."
292
  msgstr ""
293
 
294
+ #: contact-form-7/wp-contact-form-7.php:804
295
  msgid "This file is too large."
296
  msgstr ""
297
 
304
  msgstr ""
305
 
306
  #: contact-form-7/includes/admin-panel.php:49
307
+ #: contact-form-7/includes/admin-panel.php:257
308
  msgid "Save"
309
  msgstr ""
310
 
402
  msgstr ""
403
 
404
  #: contact-form-7/includes/admin-panel.php:224
405
+ msgid "Sender doesn't enter the correct answer to the quiz"
406
  msgstr ""
407
 
408
  #: contact-form-7/includes/admin-panel.php:228
409
+ msgid "The code that sender entered does not match the CAPTCHA"
410
  msgstr ""
411
 
412
  #: contact-form-7/includes/admin-panel.php:232
413
+ msgid "Uploading a file fails for any reason"
414
  msgstr ""
415
 
416
  #: contact-form-7/includes/admin-panel.php:236
417
+ msgid "Uploaded file is not allowed file type"
418
+ msgstr ""
419
+
420
+ #: contact-form-7/includes/admin-panel.php:240
421
  msgid "Uploaded file is too large"
422
  msgstr ""
423
 
wp-contact-form-7.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form 7
4
  Plugin URI: http://ideasilo.wordpress.com/2007/04/30/contact-form-7/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
- Version: 1.9.2
8
  Author URI: http://ideasilo.wordpress.com/
9
  */
10
 
@@ -25,7 +25,7 @@ Author URI: http://ideasilo.wordpress.com/
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
- define('WPCF7_VERSION', '1.9.2');
29
 
30
  if (! defined('WP_CONTENT_DIR'))
31
  define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
@@ -250,7 +250,7 @@ class tam_contact_form_seven {
250
  function mail($contact_form, $files = array()) {
251
  global $wp_version;
252
 
253
- if (version_compare($wp_version, '2.7-beta1', '<')) // wp_mail() file uploading option isn't suppoted
254
  $files = array();
255
 
256
  $contact_form = $this->upgrade($contact_form);
@@ -445,6 +445,7 @@ class tam_contact_form_seven {
445
  $contact_form = $this->upgrade_160($contact_form);
446
  $contact_form = $this->upgrade_181($contact_form);
447
  $contact_form = $this->upgrade_190($contact_form);
 
448
  return $contact_form;
449
  }
450
 
@@ -484,12 +485,22 @@ class tam_contact_form_seven {
484
 
485
  return $contact_form;
486
  }
 
 
 
 
 
 
 
 
 
 
487
 
488
  /* Admin panel */
489
 
490
  function admin_menu_parent() {
491
  global $wp_version;
492
- if (version_compare($wp_version, '2.7-alpha', '>='))
493
  return 'tools.php';
494
  else
495
  return 'edit.php';
@@ -1339,6 +1350,13 @@ var _wpcf7 = {
1339
  return $html;
1340
  break;
1341
  case 'quiz':
 
 
 
 
 
 
 
1342
  if (count($values) == 0) {
1343
  break;
1344
  } elseif (count($values) == 1) {
@@ -1347,6 +1365,9 @@ var _wpcf7 = {
1347
  $value = $values[array_rand($values)];
1348
  }
1349
 
 
 
 
1350
  if (is_array($options)) {
1351
  $size_maxlength_array = preg_grep('%^[0-9]*[/x][0-9]*$%', $options);
1352
  if ($size_maxlength = array_shift($size_maxlength_array)) {
@@ -1362,10 +1383,6 @@ var _wpcf7 = {
1362
  }
1363
  }
1364
 
1365
- $pipes = $this->get_pipes($raw_values);
1366
- $answer = $this->pipe($pipes, $value);
1367
- $answer = $this->canonicalize($answer);
1368
-
1369
  $html = '<span class="wpcf7-quiz-label">' . $value . '</span>&nbsp;';
1370
  $html .= '<input type="text" name="' . $name . '"' . $atts . ' />';
1371
  $html .= '<input type="hidden" name="_wpcf7_quiz_answer_' . $name . '" value="' . wp_hash($answer, 'wpcf7_quiz') . '" />';
4
  Plugin URI: http://ideasilo.wordpress.com/2007/04/30/contact-form-7/
5
  Description: Just another contact form plugin. Simple but flexible.
6
  Author: Takayuki Miyoshi
7
+ Version: 1.9.2.1
8
  Author URI: http://ideasilo.wordpress.com/
9
  */
10
 
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
 
28
+ define('WPCF7_VERSION', '1.9.2.1');
29
 
30
  if (! defined('WP_CONTENT_DIR'))
31
  define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
250
  function mail($contact_form, $files = array()) {
251
  global $wp_version;
252
 
253
+ if (version_compare($wp_version, '2.7', '<')) // wp_mail() file uploading option isn't suppoted
254
  $files = array();
255
 
256
  $contact_form = $this->upgrade($contact_form);
445
  $contact_form = $this->upgrade_160($contact_form);
446
  $contact_form = $this->upgrade_181($contact_form);
447
  $contact_form = $this->upgrade_190($contact_form);
448
+ $contact_form = $this->upgrade_192($contact_form);
449
  return $contact_form;
450
  }
451
 
485
 
486
  return $contact_form;
487
  }
488
+
489
+ function upgrade_192($contact_form) {
490
+ if (! isset($contact_form['messages']) || ! is_array($contact_form['messages']))
491
+ $contact_form['messages'] = array();
492
+
493
+ if (! isset($contact_form['messages']['quiz_answer_not_correct']))
494
+ $contact_form['messages']['quiz_answer_not_correct'] = $this->default_message('quiz_answer_not_correct');
495
+
496
+ return $contact_form;
497
+ }
498
 
499
  /* Admin panel */
500
 
501
  function admin_menu_parent() {
502
  global $wp_version;
503
+ if (version_compare($wp_version, '2.7', '>='))
504
  return 'tools.php';
505
  else
506
  return 'edit.php';
1350
  return $html;
1351
  break;
1352
  case 'quiz':
1353
+ if (count($raw_values) == 0 && count($values) == 0) { // default quiz
1354
+ $raw_values[] = '1+1=?|2';
1355
+ $values[] = '1+1=?';
1356
+ }
1357
+
1358
+ $pipes = $this->get_pipes($raw_values);
1359
+
1360
  if (count($values) == 0) {
1361
  break;
1362
  } elseif (count($values) == 1) {
1365
  $value = $values[array_rand($values)];
1366
  }
1367
 
1368
+ $answer = $this->pipe($pipes, $value);
1369
+ $answer = $this->canonicalize($answer);
1370
+
1371
  if (is_array($options)) {
1372
  $size_maxlength_array = preg_grep('%^[0-9]*[/x][0-9]*$%', $options);
1373
  if ($size_maxlength = array_shift($size_maxlength_array)) {
1383
  }
1384
  }
1385
 
 
 
 
 
1386
  $html = '<span class="wpcf7-quiz-label">' . $value . '</span>&nbsp;';
1387
  $html .= '<input type="text" name="' . $name . '"' . $atts . ' />';
1388
  $html .= '<input type="hidden" name="_wpcf7_quiz_answer_' . $name . '" value="' . wp_hash($answer, 'wpcf7_quiz') . '" />';
wpcf7-admin.js CHANGED
@@ -1,89 +1,92 @@
1
  jQuery(document).ready(function() {
2
- jQuery('#tag-generator-div').append(tagGenerator());
3
-
4
- jQuery('input#wpcf7-title:enabled').css({
5
- cursor: 'pointer'
6
- });
7
-
8
- jQuery('input#wpcf7-title').mouseover(function() {
9
- jQuery(this).not('.focus').css({
10
- 'background-color': '#ffffdd'
11
- });
12
- });
13
-
14
- jQuery('input#wpcf7-title').mouseout(function() {
15
- jQuery(this).css({
16
- 'background-color': '#fff'
17
- });
18
- });
19
-
20
- jQuery('input#wpcf7-title').focus(function() {
21
- jQuery(this).addClass('focus');
22
- jQuery(this).css({
23
- cursor: 'text',
24
- color: '#333',
25
- border: '1px solid #777',
26
- font: 'normal 13px Verdana, Arial, Helvetica, sans-serif',
27
- 'background-color': '#fff'
28
- });
29
- });
30
-
31
- jQuery('input#wpcf7-title').blur(function() {
32
- jQuery(this).removeClass('focus');
33
- jQuery(this).css({
34
- cursor: 'pointer',
35
- color: '#555',
36
- border: 'none',
37
- font: 'bold 20px serif',
38
- 'background-color': '#fff'
39
- });
40
- });
41
-
42
- jQuery('input#wpcf7-title').change(function() {
43
- updateTag();
44
- });
45
-
46
- updateTag();
47
-
48
- if (! jQuery('#wpcf7-mail-2-active').is(':checked'))
49
- jQuery('#mail-2-fields').hide();
50
-
51
- jQuery('#wpcf7-mail-2-active').click(function() {
52
- if (jQuery('#wpcf7-mail-2-active').is(':checked')) {
53
- if (jQuery('#mail-2-fields').is(':hidden'))
54
- jQuery('#mail-2-fields').slideDown('fast');
55
- } else {
56
- if (jQuery('#mail-2-fields').is(':visible'))
57
- jQuery('#mail-2-fields').hide('fast');
58
- }
59
- });
60
-
61
- jQuery('#message-fields-toggle-switch').text(_wpcf7.l10n.show);
62
- jQuery('#message-fields').hide();
63
-
64
- jQuery('#message-fields-toggle-switch').click(function() {
65
- if (jQuery('#message-fields').is(':hidden')) {
66
- jQuery('#message-fields').slideDown('fast');
67
- jQuery('#message-fields-toggle-switch').text(_wpcf7.l10n.hide);
68
- } else {
69
- jQuery('#message-fields').hide('fast');
70
  jQuery('#message-fields-toggle-switch').text(_wpcf7.l10n.show);
71
- }
72
- });
73
 
74
- jQuery('.delete-link input').mouseover(function() {
75
- jQuery(this).css({
76
- color: '#fff',
77
- 'background-color': '#ff0000'
78
- });
79
- });
 
 
 
80
 
81
- jQuery('.delete-link input').mouseout(function() {
82
- jQuery(this).css({
83
- color: '#ff0000',
84
- 'background-color': '#fff'
85
- });
86
- });
 
 
 
 
 
 
 
 
 
87
  });
88
 
89
  function updateTag() {
1
  jQuery(document).ready(function() {
2
+ try {
3
+ jQuery('#tag-generator-div').append(tagGenerator());
4
+
5
+ jQuery('input#wpcf7-title:enabled').css({
6
+ cursor: 'pointer'
7
+ });
8
+
9
+ jQuery('input#wpcf7-title').mouseover(function() {
10
+ jQuery(this).not('.focus').css({
11
+ 'background-color': '#ffffdd'
12
+ });
13
+ });
14
+
15
+ jQuery('input#wpcf7-title').mouseout(function() {
16
+ jQuery(this).css({
17
+ 'background-color': '#fff'
18
+ });
19
+ });
20
+
21
+ jQuery('input#wpcf7-title').focus(function() {
22
+ jQuery(this).addClass('focus');
23
+ jQuery(this).css({
24
+ cursor: 'text',
25
+ color: '#333',
26
+ border: '1px solid #777',
27
+ font: 'normal 13px Verdana, Arial, Helvetica, sans-serif',
28
+ 'background-color': '#fff'
29
+ });
30
+ });
31
+
32
+ jQuery('input#wpcf7-title').blur(function() {
33
+ jQuery(this).removeClass('focus');
34
+ jQuery(this).css({
35
+ cursor: 'pointer',
36
+ color: '#555',
37
+ border: 'none',
38
+ font: 'bold 20px serif',
39
+ 'background-color': '#fff'
40
+ });
41
+ });
42
+
43
+ jQuery('input#wpcf7-title').change(function() {
44
+ updateTag();
45
+ });
46
+
47
+ updateTag();
48
+
49
+ if (! jQuery('#wpcf7-mail-2-active').is(':checked'))
50
+ jQuery('#mail-2-fields').hide();
51
+
52
+ jQuery('#wpcf7-mail-2-active').click(function() {
53
+ if (jQuery('#wpcf7-mail-2-active').is(':checked')) {
54
+ if (jQuery('#mail-2-fields').is(':hidden'))
55
+ jQuery('#mail-2-fields').slideDown('fast');
56
+ } else {
57
+ if (jQuery('#mail-2-fields').is(':visible'))
58
+ jQuery('#mail-2-fields').hide('fast');
59
+ }
60
+ });
61
+
 
 
 
 
 
 
 
 
62
  jQuery('#message-fields-toggle-switch').text(_wpcf7.l10n.show);
63
+ jQuery('#message-fields').hide();
 
64
 
65
+ jQuery('#message-fields-toggle-switch').click(function() {
66
+ if (jQuery('#message-fields').is(':hidden')) {
67
+ jQuery('#message-fields').slideDown('fast');
68
+ jQuery('#message-fields-toggle-switch').text(_wpcf7.l10n.hide);
69
+ } else {
70
+ jQuery('#message-fields').hide('fast');
71
+ jQuery('#message-fields-toggle-switch').text(_wpcf7.l10n.show);
72
+ }
73
+ });
74
 
75
+ jQuery('.delete-link input').mouseover(function() {
76
+ jQuery(this).css({
77
+ color: '#fff',
78
+ 'background-color': '#ff0000'
79
+ });
80
+ });
81
+
82
+ jQuery('.delete-link input').mouseout(function() {
83
+ jQuery(this).css({
84
+ color: '#ff0000',
85
+ 'background-color': '#fff'
86
+ });
87
+ });
88
+ } catch (e) {
89
+ }
90
  });
91
 
92
  function updateTag() {