Version Description
- Bug fix:
Download this release
Release Info
Developer | inc2734 |
Plugin | MW WP Form |
Version | 0.9.4 |
Comparing to | |
See all releases |
Code changes from version 0.9.2 to 0.9.4
- form_fields/mw_form_field_preview_button.php +8 -4
- form_fields/mw_form_field_submit.php +4 -4
- form_fields/mw_form_field_submit_button.php +3 -2
- languages/mw-wp-form-ja.mo +0 -0
- languages/mw-wp-form-ja.po +138 -119
- languages/mw-wp-form.pot +15 -11
- mw-wp-form.php +4 -4
- readme.txt +11 -2
form_fields/mw_form_field_preview_button.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
* Name: MW Form Field Preview Button
|
4 |
* URI: http://2inc.org
|
5 |
* Description: 確認ボタンを出力。
|
6 |
-
* Version: 1.1
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: December 14, 2012
|
10 |
-
* Modified:
|
11 |
* License: GPL2
|
12 |
*
|
13 |
* Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
|
@@ -67,7 +67,11 @@ class mw_form_field_preview_button extends mw_form_field {
|
|
67 |
* QTags.addButton を出力
|
68 |
*/
|
69 |
protected function add_qtags() {
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
72 |
}
|
73 |
}
|
3 |
* Name: MW Form Field Preview Button
|
4 |
* URI: http://2inc.org
|
5 |
* Description: 確認ボタンを出力。
|
6 |
+
* Version: 1.1.2
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: December 14, 2012
|
10 |
+
* Modified: July 28, 2013
|
11 |
* License: GPL2
|
12 |
*
|
13 |
* Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
|
67 |
* QTags.addButton を出力
|
68 |
*/
|
69 |
protected function add_qtags() {
|
70 |
+
?>
|
71 |
+
'<?php echo $this->short_code_name; ?>',
|
72 |
+
'<?php _e( 'Confirm Button', MWF_Config::DOMAIN ); ?>',
|
73 |
+
'[<?php echo $this->short_code_name; ?> name=""]',
|
74 |
+
''
|
75 |
+
<?php
|
76 |
}
|
77 |
}
|
form_fields/mw_form_field_submit.php
CHANGED
@@ -2,12 +2,12 @@
|
|
2 |
/**
|
3 |
* Name: MW Form Field Submit Button
|
4 |
* URI: http://2inc.org
|
5 |
-
* Description:
|
6 |
-
* Version: 1.1
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: December 14, 2012
|
10 |
-
* Modified:
|
11 |
* License: GPL2
|
12 |
*
|
13 |
* Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
|
@@ -71,7 +71,7 @@ class mw_form_field_submit extends mw_form_field {
|
|
71 |
protected function add_qtags() {
|
72 |
?>
|
73 |
'<?php echo $this->short_code_name; ?>',
|
74 |
-
'<?php _e( 'Submit', MWF_Config::DOMAIN ); ?>',
|
75 |
'[<?php echo $this->short_code_name; ?> name="submit"]',
|
76 |
''
|
77 |
<?php
|
2 |
/**
|
3 |
* Name: MW Form Field Submit Button
|
4 |
* URI: http://2inc.org
|
5 |
+
* Description: 送信ボタンを出力。
|
6 |
+
* Version: 1.1.1
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: December 14, 2012
|
10 |
+
* Modified: July 28, 2013
|
11 |
* License: GPL2
|
12 |
*
|
13 |
* Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
|
71 |
protected function add_qtags() {
|
72 |
?>
|
73 |
'<?php echo $this->short_code_name; ?>',
|
74 |
+
'<?php _e( 'Submit Button', MWF_Config::DOMAIN ); ?>',
|
75 |
'[<?php echo $this->short_code_name; ?> name="submit"]',
|
76 |
''
|
77 |
<?php
|
form_fields/mw_form_field_submit_button.php
CHANGED
@@ -3,11 +3,12 @@
|
|
3 |
* Name: MW Form Field Submit
|
4 |
* URI: http://2inc.org
|
5 |
* Description: サブミットボタンを出力。
|
6 |
-
*
|
|
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: December 14, 2012
|
10 |
-
* Modified:
|
11 |
* License: GPL2
|
12 |
*
|
13 |
* Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
|
3 |
* Name: MW Form Field Submit
|
4 |
* URI: http://2inc.org
|
5 |
* Description: サブミットボタンを出力。
|
6 |
+
* Description: 確認ボタンと送信ボタンを自動出力。
|
7 |
+
* Version: 1.1.1
|
8 |
* Author: Takashi Kitajima
|
9 |
* Author URI: http://2inc.org
|
10 |
* Created: December 14, 2012
|
11 |
+
* Modified: July 28, 2013
|
12 |
* License: GPL2
|
13 |
*
|
14 |
* Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
|
languages/mw-wp-form-ja.mo
CHANGED
Binary file
|
languages/mw-wp-form-ja.po
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the same license as the MW WP Form package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: MW WP Form 0.9\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
-
"POT-Creation-Date: 2013-
|
8 |
-
"PO-Revision-Date: 2013-
|
9 |
"Last-Translator: Takashi Kitajima <inc@2inc.org>\n"
|
10 |
"Language-Team: Takashi Kitajima <inc@2inc.org>\n"
|
11 |
"MIME-Version: 1.0\n"
|
@@ -14,264 +14,266 @@ msgstr ""
|
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Generator: Poedit 1.5.
|
18 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
-
#:
|
22 |
-
msgid "Validation Object is not a MW Validation Class."
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: ../mw-wp-form.php:500
|
26 |
-
msgid "Uploaded from "
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../form_fields/mw_form_field_akismet_error.php:70
|
30 |
msgid "Akismet Error"
|
31 |
msgstr "Akismetエラー"
|
32 |
|
33 |
-
#:
|
34 |
-
#:
|
35 |
msgid "Back"
|
36 |
msgstr "戻る"
|
37 |
|
38 |
-
#:
|
39 |
msgid "Button"
|
40 |
msgstr "ボタン"
|
41 |
|
42 |
-
#:
|
43 |
msgid "Checkbox"
|
44 |
msgstr "チェックボックス"
|
45 |
|
46 |
-
#:
|
47 |
msgid "Datepicker"
|
48 |
msgstr "日付"
|
49 |
|
50 |
-
#:
|
51 |
msgid "Error Message"
|
52 |
msgstr "エラーメッセージ"
|
53 |
|
54 |
-
#:
|
55 |
-
#: ../form_fields/mw_form_field_file.php:80
|
56 |
msgid "Uploaded."
|
57 |
msgstr "アップロードしました。"
|
58 |
|
59 |
-
#:
|
60 |
msgid "File"
|
61 |
msgstr "ファイルフィールド"
|
62 |
|
63 |
-
#:
|
64 |
msgid "Hidden"
|
65 |
msgstr "hiddenフィールド"
|
66 |
|
67 |
-
#:
|
68 |
msgid "Image"
|
69 |
msgstr "画像フィールド"
|
70 |
|
71 |
-
#:
|
72 |
msgid "Password"
|
73 |
msgstr "パスワードフィールド"
|
74 |
|
75 |
-
#:
|
76 |
-
#:
|
77 |
msgid "Confirm"
|
78 |
msgstr "確認画面へ"
|
79 |
|
80 |
-
#:
|
|
|
|
|
|
|
|
|
81 |
msgid "Radio"
|
82 |
msgstr "ラジオボタン"
|
83 |
|
84 |
-
#:
|
85 |
msgid "Select"
|
86 |
msgstr "セレクトボックス"
|
87 |
|
88 |
-
#:
|
89 |
-
#:
|
90 |
msgid "Send"
|
91 |
msgstr "送信する"
|
92 |
|
93 |
-
#:
|
94 |
-
msgid "Submit"
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#:
|
98 |
msgid "Confirm & Submit"
|
99 |
msgstr "確認・送信"
|
100 |
|
101 |
-
#:
|
102 |
-
#: ../system/mw_wp_form_admin_page.php:528
|
103 |
msgid "Tel"
|
104 |
msgstr "電話番号"
|
105 |
|
106 |
-
#:
|
107 |
msgid "Text"
|
108 |
msgstr "テキストフィールド"
|
109 |
|
110 |
-
#:
|
111 |
msgid "Textarea"
|
112 |
msgstr "テキストエリア"
|
113 |
|
114 |
-
#:
|
115 |
msgid "Zip Code"
|
116 |
msgstr "郵便番号"
|
117 |
|
118 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
msgid "This is required."
|
120 |
msgstr "必須項目です。"
|
121 |
|
122 |
-
#:
|
123 |
msgid "Please enter."
|
124 |
msgstr "未入力です。"
|
125 |
|
126 |
-
#:
|
127 |
msgid "Please enter with a half-width alphabetic character."
|
128 |
msgstr "半角英字で入力してください。"
|
129 |
|
130 |
-
#:
|
131 |
msgid "Please enter with a half-width number."
|
132 |
msgstr "半角数字で入力してください。"
|
133 |
|
134 |
-
#:
|
135 |
msgid "Please enter with a half-width alphanumeric character."
|
136 |
msgstr "半角英数字で入力してください。"
|
137 |
|
138 |
-
#:
|
139 |
msgid "This is not the format of a zip code."
|
140 |
msgstr "郵便番号の形式ではありません。"
|
141 |
|
142 |
-
#:
|
143 |
msgid "This is not the format of a tel number."
|
144 |
msgstr "電話番号の形式ではありません。"
|
145 |
|
146 |
-
#:
|
147 |
msgid "This is not the format of a mail address."
|
148 |
msgstr "メールアドレスの形式ではありません。"
|
149 |
|
150 |
-
#:
|
151 |
msgid "This is not the format of a url."
|
152 |
msgstr "URLの形式ではありません。"
|
153 |
|
154 |
-
#:
|
155 |
msgid "This is not in agreement."
|
156 |
msgstr "一致しません。"
|
157 |
|
158 |
-
#:
|
159 |
msgid "The number of characters is invalid."
|
160 |
msgstr "文字数が正しくありません。"
|
161 |
|
162 |
-
#:
|
163 |
msgid "The number of characters is a few."
|
164 |
msgstr "文字数が足りません。"
|
165 |
|
166 |
-
#:
|
167 |
msgid "This value is invalid."
|
168 |
msgstr "値が不正です。"
|
169 |
|
170 |
-
#:
|
171 |
msgid "This is not the format of a date."
|
172 |
msgstr "日付の形式ではありません。"
|
173 |
|
174 |
-
#:
|
175 |
msgid "This file is invalid."
|
176 |
msgstr "許可されたファイルではありません。"
|
177 |
|
178 |
-
#:
|
179 |
msgid "This file size is too big."
|
180 |
msgstr "ファイルサイズが大きすぎます。"
|
181 |
|
182 |
-
#:
|
183 |
msgid "The contents which you input were judged with spam."
|
184 |
msgstr "あなたの入力した内容はスパムと判定されました。"
|
185 |
|
186 |
-
#:
|
187 |
msgid "Add New Form"
|
188 |
msgstr "フォームを追加"
|
189 |
|
190 |
-
#:
|
191 |
msgid "Edit Form"
|
192 |
msgstr "フォームを編集"
|
193 |
|
194 |
-
#:
|
195 |
msgid "New Form"
|
196 |
msgstr "新しいフォーム"
|
197 |
|
198 |
-
#:
|
199 |
msgid "View Form"
|
200 |
msgstr "フォームを表示"
|
201 |
|
202 |
-
#:
|
203 |
msgid "Search Forms"
|
204 |
msgstr "フォームを検索"
|
205 |
|
206 |
-
#:
|
207 |
msgid "No Forms found"
|
208 |
msgstr "フォームがありません"
|
209 |
|
210 |
-
#:
|
211 |
msgid "No Forms found in Trash"
|
212 |
msgstr "ゴミ箱にフォームはありません"
|
213 |
|
214 |
-
#:
|
215 |
msgid "Edit "
|
216 |
msgstr "編集"
|
217 |
|
218 |
-
#:
|
219 |
msgid "View"
|
220 |
msgstr "表示"
|
221 |
|
222 |
-
#:
|
223 |
msgid "Search"
|
224 |
msgstr "検索"
|
225 |
|
226 |
-
#:
|
227 |
msgid "No data found"
|
228 |
msgstr "データがありません"
|
229 |
|
230 |
-
#:
|
231 |
msgid "No data found in Trash"
|
232 |
msgstr "ゴミ箱にデータはありません"
|
233 |
|
234 |
-
#:
|
235 |
msgid "Complete Message"
|
236 |
msgstr "完了画面メッセージ"
|
237 |
|
238 |
-
#:
|
239 |
msgid "URL Options"
|
240 |
msgstr "URL設定"
|
241 |
|
242 |
-
#:
|
243 |
msgid "Validation Rule"
|
244 |
msgstr "バリデーションルール"
|
245 |
|
246 |
-
#:
|
247 |
msgid "Form Key"
|
248 |
msgstr "フォーム識別子"
|
249 |
|
250 |
-
#:
|
251 |
msgid "Automatic Reply Email Options"
|
252 |
msgstr "自動返信メール設定"
|
253 |
|
254 |
-
#:
|
255 |
msgid "Admin Email Options"
|
256 |
msgstr "管理者宛メール設定"
|
257 |
|
258 |
-
#:
|
259 |
msgid "settings"
|
260 |
msgstr "設定"
|
261 |
|
262 |
-
#:
|
263 |
msgid "Custom Fields"
|
264 |
msgstr "カスタムフィールド"
|
265 |
|
266 |
-
#:
|
267 |
msgid "Copy and Paste this shortcode."
|
268 |
msgstr "このショートコードをコピー&ペーストしてください。"
|
269 |
|
270 |
-
#:
|
271 |
msgid "Activate Query string of post"
|
272 |
msgstr "URL引数を有効にする"
|
273 |
|
274 |
-
#:
|
275 |
msgid ""
|
276 |
"If this field is active, MW WP Form get the post as query string \"post_id\" "
|
277 |
"and you can use $post's property in editor"
|
@@ -279,46 +281,43 @@ msgstr ""
|
|
279 |
"有効にした場合、MW WP FormはURL引数 ”post_id\" をもとに投稿を取得して、その投"
|
280 |
"稿($post) のプロパティを使用できるようになります。"
|
281 |
|
282 |
-
#:
|
283 |
msgid "Example: {ID}, {post_title}, {post_meta} etc..."
|
284 |
msgstr "例:{ID}、{post_title}、{post_meta}など…"
|
285 |
|
286 |
-
#:
|
287 |
msgid "Saving contact data in database"
|
288 |
msgstr "問い合わせデータをデータベースに保存"
|
289 |
|
290 |
-
#:
|
291 |
msgid "Akismet Setting"
|
292 |
msgstr "Akismet 設定"
|
293 |
|
294 |
-
#:
|
295 |
msgid "Input the key to use Akismet."
|
296 |
msgstr "Akismetを使用する項目のキーを入力してください。"
|
297 |
|
298 |
-
#:
|
299 |
-
#: ../system/mw_wp_form_admin_page.php:442
|
300 |
msgid "Subject"
|
301 |
msgstr "件名"
|
302 |
|
303 |
-
#:
|
304 |
-
#: ../system/mw_wp_form_admin_page.php:446
|
305 |
msgid "Ccontent"
|
306 |
msgstr "本文"
|
307 |
|
308 |
-
#:
|
309 |
-
#: ../system/mw_wp_form_admin_page.php:448
|
310 |
msgid "{key} is converted form data."
|
311 |
msgstr "{キー}でそのフォーム項目に変換されます。"
|
312 |
|
313 |
-
#:
|
314 |
msgid "Automatic reply email"
|
315 |
msgstr "自動返信メール"
|
316 |
|
317 |
-
#:
|
318 |
msgid "Input the key to use as transmission to automatic reply email."
|
319 |
msgstr "自動返信メールに使用する項目のキーを入力してください。"
|
320 |
|
321 |
-
#:
|
322 |
msgid ""
|
323 |
"If Admin Email Options is a blank, Automatic Replay Email Options is used as "
|
324 |
"Admin Email Options."
|
@@ -326,101 +325,121 @@ msgstr ""
|
|
326 |
"管理者宛メール設定が空のときは自動返信メール設定が管理者宛メール設定が使用さ"
|
327 |
"れます。"
|
328 |
|
329 |
-
#:
|
330 |
msgid "To ( E-mail address )"
|
331 |
msgstr "送信先(E-mailアドレス)"
|
332 |
|
333 |
-
#:
|
334 |
msgid "If empty: Using admin E-mail address."
|
335 |
msgstr "未入力の場合:管理者のE-mailアドレスを使用します。"
|
336 |
|
337 |
-
#:
|
338 |
msgid "Input Page URL"
|
339 |
msgstr "入力画面URL"
|
340 |
|
341 |
-
#:
|
342 |
msgid "Confirmation Page URL"
|
343 |
msgstr "確認画面URL"
|
344 |
|
345 |
-
#:
|
346 |
msgid "Complete Page URL"
|
347 |
msgstr "完了画面URL"
|
348 |
|
349 |
-
#:
|
350 |
msgid "Add Validation rule"
|
351 |
msgstr "バリデーションルールを追加"
|
352 |
|
353 |
-
#:
|
354 |
msgid "The key which applies validation"
|
355 |
msgstr "バリデーションを適用する項目"
|
356 |
|
357 |
-
#:
|
358 |
msgid "No empty"
|
359 |
msgstr "必須項目"
|
360 |
|
361 |
-
#:
|
362 |
msgid "No empty( with checkbox )"
|
363 |
msgstr "必須項目(チェックボックス)"
|
364 |
|
365 |
-
#:
|
366 |
msgid "Numeric"
|
367 |
msgstr "半角数字"
|
368 |
|
369 |
-
#:
|
370 |
msgid "Alphabet"
|
371 |
msgstr "半角英字"
|
372 |
|
373 |
-
#:
|
374 |
msgid "Alphabet and Numeric"
|
375 |
msgstr "半角英数字"
|
376 |
|
377 |
-
#:
|
378 |
msgid "Zip code"
|
379 |
msgstr "郵便番号"
|
380 |
|
381 |
-
#:
|
382 |
msgid "E-mail"
|
383 |
msgstr "メールアドレス"
|
384 |
|
385 |
-
#:
|
386 |
msgid "Date"
|
387 |
msgstr "日付"
|
388 |
|
389 |
-
#:
|
390 |
msgid "The key at same value"
|
391 |
msgstr "一致する項目"
|
392 |
|
393 |
-
#:
|
394 |
msgid "The range of the number of characters"
|
395 |
msgstr "文字数の範囲"
|
396 |
|
397 |
-
#:
|
398 |
msgid "The number of the minimum characters"
|
399 |
msgstr "最小文字数"
|
400 |
|
401 |
-
#:
|
402 |
msgid "Permitted Extension"
|
403 |
msgstr "拡張子制限"
|
404 |
|
405 |
-
#:
|
406 |
msgid "Example:jpg or jpg,txt,…"
|
407 |
msgstr "例:jpg もしくは jpg,txt…"
|
408 |
|
409 |
-
#:
|
410 |
msgid "Permitted file size"
|
411 |
msgstr "サイズ制限"
|
412 |
|
413 |
-
#:
|
414 |
msgid "bytes"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#:
|
418 |
msgid "Registed Date"
|
419 |
msgstr "登録日時"
|
420 |
|
421 |
-
|
422 |
-
|
423 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
|
425 |
#~ msgid "Active"
|
426 |
#~ msgstr "有効にする"
|
2 |
# This file is distributed under the same license as the MW WP Form package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: MW WP Form 0.9.4\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
+
"POT-Creation-Date: 2013-07-28 03:40:04+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-07-28 12:42+0900\n"
|
9 |
"Last-Translator: Takashi Kitajima <inc@2inc.org>\n"
|
10 |
"Language-Team: Takashi Kitajima <inc@2inc.org>\n"
|
11 |
"MIME-Version: 1.0\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Generator: Poedit 1.5.7\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
+
#: form_fields/mw_form_field_akismet_error.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "Akismet Error"
|
23 |
msgstr "Akismetエラー"
|
24 |
|
25 |
+
#: form_fields/mw_form_field_back_button.php:42
|
26 |
+
#: form_fields/mw_form_field_back_button.php:72
|
27 |
msgid "Back"
|
28 |
msgstr "戻る"
|
29 |
|
30 |
+
#: form_fields/mw_form_field_button.php:74
|
31 |
msgid "Button"
|
32 |
msgstr "ボタン"
|
33 |
|
34 |
+
#: form_fields/mw_form_field_checkbox.php:88
|
35 |
msgid "Checkbox"
|
36 |
msgstr "チェックボックス"
|
37 |
|
38 |
+
#: form_fields/mw_form_field_datepicker.php:108
|
39 |
msgid "Datepicker"
|
40 |
msgstr "日付"
|
41 |
|
42 |
+
#: form_fields/mw_form_field_error.php:77
|
43 |
msgid "Error Message"
|
44 |
msgstr "エラーメッセージ"
|
45 |
|
46 |
+
#: form_fields/mw_form_field_file.php:62 form_fields/mw_form_field_file.php:81
|
|
|
47 |
msgid "Uploaded."
|
48 |
msgstr "アップロードしました。"
|
49 |
|
50 |
+
#: form_fields/mw_form_field_file.php:95
|
51 |
msgid "File"
|
52 |
msgstr "ファイルフィールド"
|
53 |
|
54 |
+
#: form_fields/mw_form_field_hidden.php:75
|
55 |
msgid "Hidden"
|
56 |
msgstr "hiddenフィールド"
|
57 |
|
58 |
+
#: form_fields/mw_form_field_image.php:95
|
59 |
msgid "Image"
|
60 |
msgstr "画像フィールド"
|
61 |
|
62 |
+
#: form_fields/mw_form_field_password.php:85
|
63 |
msgid "Password"
|
64 |
msgstr "パスワードフィールド"
|
65 |
|
66 |
+
#: form_fields/mw_form_field_preview_button.php:42
|
67 |
+
#: form_fields/mw_form_field_submit_button.php:44
|
68 |
msgid "Confirm"
|
69 |
msgstr "確認画面へ"
|
70 |
|
71 |
+
#: form_fields/mw_form_field_preview_button.php:72
|
72 |
+
msgid "Confirm Button"
|
73 |
+
msgstr "確認ボタン"
|
74 |
+
|
75 |
+
#: form_fields/mw_form_field_radio.php:86
|
76 |
msgid "Radio"
|
77 |
msgstr "ラジオボタン"
|
78 |
|
79 |
+
#: form_fields/mw_form_field_select.php:86
|
80 |
msgid "Select"
|
81 |
msgstr "セレクトボックス"
|
82 |
|
83 |
+
#: form_fields/mw_form_field_submit.php:43
|
84 |
+
#: form_fields/mw_form_field_submit_button.php:45
|
85 |
msgid "Send"
|
86 |
msgstr "送信する"
|
87 |
|
88 |
+
#: form_fields/mw_form_field_submit.php:74
|
89 |
+
msgid "Submit Button"
|
90 |
+
msgstr "送信ボタン"
|
91 |
|
92 |
+
#: form_fields/mw_form_field_submit_button.php:79
|
93 |
msgid "Confirm & Submit"
|
94 |
msgstr "確認・送信"
|
95 |
|
96 |
+
#: form_fields/mw_form_field_tel.php:81 system/mw_wp_form_admin_page.php:528
|
|
|
97 |
msgid "Tel"
|
98 |
msgstr "電話番号"
|
99 |
|
100 |
+
#: form_fields/mw_form_field_text.php:87
|
101 |
msgid "Text"
|
102 |
msgstr "テキストフィールド"
|
103 |
|
104 |
+
#: form_fields/mw_form_field_textarea.php:87
|
105 |
msgid "Textarea"
|
106 |
msgstr "テキストエリア"
|
107 |
|
108 |
+
#: form_fields/mw_form_field_zip.php:81
|
109 |
msgid "Zip Code"
|
110 |
msgstr "郵便番号"
|
111 |
|
112 |
+
#: mw-wp-form.php:322
|
113 |
+
msgid "Validation Object is not a MW Validation Class."
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: mw-wp-form.php:507
|
117 |
+
msgid "Uploaded from "
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: system/mw_validation.php:75
|
121 |
msgid "This is required."
|
122 |
msgstr "必須項目です。"
|
123 |
|
124 |
+
#: system/mw_validation.php:95 system/mw_validation.php:115
|
125 |
msgid "Please enter."
|
126 |
msgstr "未入力です。"
|
127 |
|
128 |
+
#: system/mw_validation.php:137
|
129 |
msgid "Please enter with a half-width alphabetic character."
|
130 |
msgstr "半角英字で入力してください。"
|
131 |
|
132 |
+
#: system/mw_validation.php:157
|
133 |
msgid "Please enter with a half-width number."
|
134 |
msgstr "半角数字で入力してください。"
|
135 |
|
136 |
+
#: system/mw_validation.php:177
|
137 |
msgid "Please enter with a half-width alphanumeric character."
|
138 |
msgstr "半角英数字で入力してください。"
|
139 |
|
140 |
+
#: system/mw_validation.php:197
|
141 |
msgid "This is not the format of a zip code."
|
142 |
msgstr "郵便番号の形式ではありません。"
|
143 |
|
144 |
+
#: system/mw_validation.php:224
|
145 |
msgid "This is not the format of a tel number."
|
146 |
msgstr "電話番号の形式ではありません。"
|
147 |
|
148 |
+
#: system/mw_validation.php:251
|
149 |
msgid "This is not the format of a mail address."
|
150 |
msgstr "メールアドレスの形式ではありません。"
|
151 |
|
152 |
+
#: system/mw_validation.php:271
|
153 |
msgid "This is not the format of a url."
|
154 |
msgstr "URLの形式ではありません。"
|
155 |
|
156 |
+
#: system/mw_validation.php:292
|
157 |
msgid "This is not in agreement."
|
158 |
msgstr "一致しません。"
|
159 |
|
160 |
+
#: system/mw_validation.php:316
|
161 |
msgid "The number of characters is invalid."
|
162 |
msgstr "文字数が正しくありません。"
|
163 |
|
164 |
+
#: system/mw_validation.php:352
|
165 |
msgid "The number of characters is a few."
|
166 |
msgstr "文字数が足りません。"
|
167 |
|
168 |
+
#: system/mw_validation.php:376
|
169 |
msgid "This value is invalid."
|
170 |
msgstr "値が不正です。"
|
171 |
|
172 |
+
#: system/mw_validation.php:398
|
173 |
msgid "This is not the format of a date."
|
174 |
msgstr "日付の形式ではありません。"
|
175 |
|
176 |
+
#: system/mw_validation.php:426
|
177 |
msgid "This file is invalid."
|
178 |
msgstr "許可されたファイルではありません。"
|
179 |
|
180 |
+
#: system/mw_validation.php:456
|
181 |
msgid "This file size is too big."
|
182 |
msgstr "ファイルサイズが大きすぎます。"
|
183 |
|
184 |
+
#: system/mw_validation.php:476
|
185 |
msgid "The contents which you input were judged with spam."
|
186 |
msgstr "あなたの入力した内容はスパムと判定されました。"
|
187 |
|
188 |
+
#: system/mw_wp_form_admin_page.php:66
|
189 |
msgid "Add New Form"
|
190 |
msgstr "フォームを追加"
|
191 |
|
192 |
+
#: system/mw_wp_form_admin_page.php:67
|
193 |
msgid "Edit Form"
|
194 |
msgstr "フォームを編集"
|
195 |
|
196 |
+
#: system/mw_wp_form_admin_page.php:68
|
197 |
msgid "New Form"
|
198 |
msgstr "新しいフォーム"
|
199 |
|
200 |
+
#: system/mw_wp_form_admin_page.php:69
|
201 |
msgid "View Form"
|
202 |
msgstr "フォームを表示"
|
203 |
|
204 |
+
#: system/mw_wp_form_admin_page.php:70
|
205 |
msgid "Search Forms"
|
206 |
msgstr "フォームを検索"
|
207 |
|
208 |
+
#: system/mw_wp_form_admin_page.php:71
|
209 |
msgid "No Forms found"
|
210 |
msgstr "フォームがありません"
|
211 |
|
212 |
+
#: system/mw_wp_form_admin_page.php:72
|
213 |
msgid "No Forms found in Trash"
|
214 |
msgstr "ゴミ箱にフォームはありません"
|
215 |
|
216 |
+
#: system/mw_wp_form_admin_page.php:93
|
217 |
msgid "Edit "
|
218 |
msgstr "編集"
|
219 |
|
220 |
+
#: system/mw_wp_form_admin_page.php:94
|
221 |
msgid "View"
|
222 |
msgstr "表示"
|
223 |
|
224 |
+
#: system/mw_wp_form_admin_page.php:95
|
225 |
msgid "Search"
|
226 |
msgstr "検索"
|
227 |
|
228 |
+
#: system/mw_wp_form_admin_page.php:96
|
229 |
msgid "No data found"
|
230 |
msgstr "データがありません"
|
231 |
|
232 |
+
#: system/mw_wp_form_admin_page.php:97
|
233 |
msgid "No data found in Trash"
|
234 |
msgstr "ゴミ箱にデータはありません"
|
235 |
|
236 |
+
#: system/mw_wp_form_admin_page.php:135
|
237 |
msgid "Complete Message"
|
238 |
msgstr "完了画面メッセージ"
|
239 |
|
240 |
+
#: system/mw_wp_form_admin_page.php:142
|
241 |
msgid "URL Options"
|
242 |
msgstr "URL設定"
|
243 |
|
244 |
+
#: system/mw_wp_form_admin_page.php:149
|
245 |
msgid "Validation Rule"
|
246 |
msgstr "バリデーションルール"
|
247 |
|
248 |
+
#: system/mw_wp_form_admin_page.php:156
|
249 |
msgid "Form Key"
|
250 |
msgstr "フォーム識別子"
|
251 |
|
252 |
+
#: system/mw_wp_form_admin_page.php:163
|
253 |
msgid "Automatic Reply Email Options"
|
254 |
msgstr "自動返信メール設定"
|
255 |
|
256 |
+
#: system/mw_wp_form_admin_page.php:170
|
257 |
msgid "Admin Email Options"
|
258 |
msgstr "管理者宛メール設定"
|
259 |
|
260 |
+
#: system/mw_wp_form_admin_page.php:177
|
261 |
msgid "settings"
|
262 |
msgstr "設定"
|
263 |
|
264 |
+
#: system/mw_wp_form_admin_page.php:184
|
265 |
msgid "Custom Fields"
|
266 |
msgstr "カスタムフィールド"
|
267 |
|
268 |
+
#: system/mw_wp_form_admin_page.php:347
|
269 |
msgid "Copy and Paste this shortcode."
|
270 |
msgstr "このショートコードをコピー&ペーストしてください。"
|
271 |
|
272 |
+
#: system/mw_wp_form_admin_page.php:361
|
273 |
msgid "Activate Query string of post"
|
274 |
msgstr "URL引数を有効にする"
|
275 |
|
276 |
+
#: system/mw_wp_form_admin_page.php:362
|
277 |
msgid ""
|
278 |
"If this field is active, MW WP Form get the post as query string \"post_id\" "
|
279 |
"and you can use $post's property in editor"
|
281 |
"有効にした場合、MW WP FormはURL引数 ”post_id\" をもとに投稿を取得して、その投"
|
282 |
"稿($post) のプロパティを使用できるようになります。"
|
283 |
|
284 |
+
#: system/mw_wp_form_admin_page.php:363
|
285 |
msgid "Example: {ID}, {post_title}, {post_meta} etc..."
|
286 |
msgstr "例:{ID}、{post_title}、{post_meta}など…"
|
287 |
|
288 |
+
#: system/mw_wp_form_admin_page.php:366
|
289 |
msgid "Saving contact data in database"
|
290 |
msgstr "問い合わせデータをデータベースに保存"
|
291 |
|
292 |
+
#: system/mw_wp_form_admin_page.php:370
|
293 |
msgid "Akismet Setting"
|
294 |
msgstr "Akismet 設定"
|
295 |
|
296 |
+
#: system/mw_wp_form_admin_page.php:385
|
297 |
msgid "Input the key to use Akismet."
|
298 |
msgstr "Akismetを使用する項目のキーを入力してください。"
|
299 |
|
300 |
+
#: system/mw_wp_form_admin_page.php:410 system/mw_wp_form_admin_page.php:442
|
|
|
301 |
msgid "Subject"
|
302 |
msgstr "件名"
|
303 |
|
304 |
+
#: system/mw_wp_form_admin_page.php:414 system/mw_wp_form_admin_page.php:446
|
|
|
305 |
msgid "Ccontent"
|
306 |
msgstr "本文"
|
307 |
|
308 |
+
#: system/mw_wp_form_admin_page.php:416 system/mw_wp_form_admin_page.php:448
|
|
|
309 |
msgid "{key} is converted form data."
|
310 |
msgstr "{キー}でそのフォーム項目に変換されます。"
|
311 |
|
312 |
+
#: system/mw_wp_form_admin_page.php:419
|
313 |
msgid "Automatic reply email"
|
314 |
msgstr "自動返信メール"
|
315 |
|
316 |
+
#: system/mw_wp_form_admin_page.php:421
|
317 |
msgid "Input the key to use as transmission to automatic reply email."
|
318 |
msgstr "自動返信メールに使用する項目のキーを入力してください。"
|
319 |
|
320 |
+
#: system/mw_wp_form_admin_page.php:434
|
321 |
msgid ""
|
322 |
"If Admin Email Options is a blank, Automatic Replay Email Options is used as "
|
323 |
"Admin Email Options."
|
325 |
"管理者宛メール設定が空のときは自動返信メール設定が管理者宛メール設定が使用さ"
|
326 |
"れます。"
|
327 |
|
328 |
+
#: system/mw_wp_form_admin_page.php:437
|
329 |
msgid "To ( E-mail address )"
|
330 |
msgstr "送信先(E-mailアドレス)"
|
331 |
|
332 |
+
#: system/mw_wp_form_admin_page.php:439
|
333 |
msgid "If empty: Using admin E-mail address."
|
334 |
msgstr "未入力の場合:管理者のE-mailアドレスを使用します。"
|
335 |
|
336 |
+
#: system/mw_wp_form_admin_page.php:463
|
337 |
msgid "Input Page URL"
|
338 |
msgstr "入力画面URL"
|
339 |
|
340 |
+
#: system/mw_wp_form_admin_page.php:469
|
341 |
msgid "Confirmation Page URL"
|
342 |
msgstr "確認画面URL"
|
343 |
|
344 |
+
#: system/mw_wp_form_admin_page.php:475
|
345 |
msgid "Complete Page URL"
|
346 |
msgstr "完了画面URL"
|
347 |
|
348 |
+
#: system/mw_wp_form_admin_page.php:512
|
349 |
msgid "Add Validation rule"
|
350 |
msgstr "バリデーションルールを追加"
|
351 |
|
352 |
+
#: system/mw_wp_form_admin_page.php:518
|
353 |
msgid "The key which applies validation"
|
354 |
msgstr "バリデーションを適用する項目"
|
355 |
|
356 |
+
#: system/mw_wp_form_admin_page.php:522
|
357 |
msgid "No empty"
|
358 |
msgstr "必須項目"
|
359 |
|
360 |
+
#: system/mw_wp_form_admin_page.php:523
|
361 |
msgid "No empty( with checkbox )"
|
362 |
msgstr "必須項目(チェックボックス)"
|
363 |
|
364 |
+
#: system/mw_wp_form_admin_page.php:524
|
365 |
msgid "Numeric"
|
366 |
msgstr "半角数字"
|
367 |
|
368 |
+
#: system/mw_wp_form_admin_page.php:525
|
369 |
msgid "Alphabet"
|
370 |
msgstr "半角英字"
|
371 |
|
372 |
+
#: system/mw_wp_form_admin_page.php:526
|
373 |
msgid "Alphabet and Numeric"
|
374 |
msgstr "半角英数字"
|
375 |
|
376 |
+
#: system/mw_wp_form_admin_page.php:527
|
377 |
msgid "Zip code"
|
378 |
msgstr "郵便番号"
|
379 |
|
380 |
+
#: system/mw_wp_form_admin_page.php:529
|
381 |
msgid "E-mail"
|
382 |
msgstr "メールアドレス"
|
383 |
|
384 |
+
#: system/mw_wp_form_admin_page.php:530
|
385 |
msgid "Date"
|
386 |
msgstr "日付"
|
387 |
|
388 |
+
#: system/mw_wp_form_admin_page.php:534
|
389 |
msgid "The key at same value"
|
390 |
msgstr "一致する項目"
|
391 |
|
392 |
+
#: system/mw_wp_form_admin_page.php:538
|
393 |
msgid "The range of the number of characters"
|
394 |
msgstr "文字数の範囲"
|
395 |
|
396 |
+
#: system/mw_wp_form_admin_page.php:546
|
397 |
msgid "The number of the minimum characters"
|
398 |
msgstr "最小文字数"
|
399 |
|
400 |
+
#: system/mw_wp_form_admin_page.php:550
|
401 |
msgid "Permitted Extension"
|
402 |
msgstr "拡張子制限"
|
403 |
|
404 |
+
#: system/mw_wp_form_admin_page.php:551
|
405 |
msgid "Example:jpg or jpg,txt,…"
|
406 |
msgstr "例:jpg もしくは jpg,txt…"
|
407 |
|
408 |
+
#: system/mw_wp_form_admin_page.php:554
|
409 |
msgid "Permitted file size"
|
410 |
msgstr "サイズ制限"
|
411 |
|
412 |
+
#: system/mw_wp_form_admin_page.php:555
|
413 |
msgid "bytes"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: system/mw_wp_form_admin_page.php:592
|
417 |
msgid "Registed Date"
|
418 |
msgstr "登録日時"
|
419 |
|
420 |
+
#. Plugin Name of the plugin/theme
|
421 |
+
msgid "MW WP Form"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#. Plugin URI of the plugin/theme
|
425 |
+
msgid "http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#. Description of the plugin/theme
|
429 |
+
msgid "MW WP Form can create mail form with a confirmation screen."
|
430 |
+
msgstr ""
|
431 |
+
"MW WP Formは確認画面付きのフォームを作成しメールを送信することができます。"
|
432 |
+
|
433 |
+
#. Author of the plugin/theme
|
434 |
+
msgid "Takashi Kitajima"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#. Author URI of the plugin/theme
|
438 |
+
msgid "http://2inc.org"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#~ msgid "Submit"
|
442 |
+
#~ msgstr "送信"
|
443 |
|
444 |
#~ msgid "Active"
|
445 |
#~ msgstr "有効にする"
|
languages/mw-wp-form.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the MW WP Form package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: MW WP Form 0.9\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
-
"POT-Creation-Date: 2013-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -43,11 +43,11 @@ msgstr ""
|
|
43 |
msgid "Error Message"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: form_fields/mw_form_field_file.php:62 form_fields/mw_form_field_file.php:
|
47 |
msgid "Uploaded."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: form_fields/mw_form_field_file.php:
|
51 |
msgid "File"
|
52 |
msgstr ""
|
53 |
|
@@ -55,7 +55,7 @@ msgstr ""
|
|
55 |
msgid "Hidden"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: form_fields/mw_form_field_image.php:
|
59 |
msgid "Image"
|
60 |
msgstr ""
|
61 |
|
@@ -64,10 +64,14 @@ msgid "Password"
|
|
64 |
msgstr ""
|
65 |
|
66 |
#: form_fields/mw_form_field_preview_button.php:42
|
67 |
-
#: form_fields/mw_form_field_submit_button.php:
|
68 |
msgid "Confirm"
|
69 |
msgstr ""
|
70 |
|
|
|
|
|
|
|
|
|
71 |
#: form_fields/mw_form_field_radio.php:86
|
72 |
msgid "Radio"
|
73 |
msgstr ""
|
@@ -77,15 +81,15 @@ msgid "Select"
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: form_fields/mw_form_field_submit.php:43
|
80 |
-
#: form_fields/mw_form_field_submit_button.php:
|
81 |
msgid "Send"
|
82 |
msgstr ""
|
83 |
|
84 |
#: form_fields/mw_form_field_submit.php:74
|
85 |
-
msgid "Submit"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: form_fields/mw_form_field_submit_button.php:
|
89 |
msgid "Confirm & Submit"
|
90 |
msgstr ""
|
91 |
|
@@ -105,11 +109,11 @@ msgstr ""
|
|
105 |
msgid "Zip Code"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: mw-wp-form.php:
|
109 |
msgid "Validation Object is not a MW Validation Class."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: mw-wp-form.php:
|
113 |
msgid "Uploaded from "
|
114 |
msgstr ""
|
115 |
|
2 |
# This file is distributed under the same license as the MW WP Form package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: MW WP Form 0.9.4\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
+
"POT-Creation-Date: 2013-07-28 03:40:04+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
43 |
msgid "Error Message"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: form_fields/mw_form_field_file.php:62 form_fields/mw_form_field_file.php:81
|
47 |
msgid "Uploaded."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: form_fields/mw_form_field_file.php:95
|
51 |
msgid "File"
|
52 |
msgstr ""
|
53 |
|
55 |
msgid "Hidden"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: form_fields/mw_form_field_image.php:95
|
59 |
msgid "Image"
|
60 |
msgstr ""
|
61 |
|
64 |
msgstr ""
|
65 |
|
66 |
#: form_fields/mw_form_field_preview_button.php:42
|
67 |
+
#: form_fields/mw_form_field_submit_button.php:44
|
68 |
msgid "Confirm"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: form_fields/mw_form_field_preview_button.php:72
|
72 |
+
msgid "Confirm Button"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
#: form_fields/mw_form_field_radio.php:86
|
76 |
msgid "Radio"
|
77 |
msgstr ""
|
81 |
msgstr ""
|
82 |
|
83 |
#: form_fields/mw_form_field_submit.php:43
|
84 |
+
#: form_fields/mw_form_field_submit_button.php:45
|
85 |
msgid "Send"
|
86 |
msgstr ""
|
87 |
|
88 |
#: form_fields/mw_form_field_submit.php:74
|
89 |
+
msgid "Submit Button"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: form_fields/mw_form_field_submit_button.php:79
|
93 |
msgid "Confirm & Submit"
|
94 |
msgstr ""
|
95 |
|
109 |
msgid "Zip Code"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: mw-wp-form.php:322
|
113 |
msgid "Validation Object is not a MW Validation Class."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: mw-wp-form.php:507
|
117 |
msgid "Uploaded from "
|
118 |
msgstr ""
|
119 |
|
mw-wp-form.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
5 |
* Description: MW WP Form can create mail form with a confirmation screen.
|
6 |
-
* Version: 0.9.
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: September 25, 2012
|
10 |
-
* Modified: July
|
11 |
* Text Domain: mw-wp-form
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPL2
|
@@ -605,11 +605,11 @@ class mw_wp_form {
|
|
605 |
}
|
606 |
if ( !preg_match( '/^https?:\/\//', $url ) ) {
|
607 |
$protocol = ( is_ssl() ) ? 'https://' : 'http://';
|
608 |
-
$home_url = untrailingslashit( $protocol
|
609 |
$url = $home_url . $url;
|
610 |
}
|
611 |
$url = preg_replace( '/([^:])\/+/', '$1/', $url );
|
612 |
-
$url = trailingslashit( $url );
|
613 |
if ( !empty( $this->options_by_formkey['querystring'] ) && MWF_Functions::is_numeric( $_GET['post_id'] ) ) {
|
614 |
$url = $url . '?post_id=' . $_GET['post_id'];
|
615 |
}
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
5 |
* Description: MW WP Form can create mail form with a confirmation screen.
|
6 |
+
* Version: 0.9.4
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: September 25, 2012
|
10 |
+
* Modified: July 28, 2013
|
11 |
* Text Domain: mw-wp-form
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPL2
|
605 |
}
|
606 |
if ( !preg_match( '/^https?:\/\//', $url ) ) {
|
607 |
$protocol = ( is_ssl() ) ? 'https://' : 'http://';
|
608 |
+
$home_url = untrailingslashit( $protocol . $_SERVER['HTTP_HOST'] );
|
609 |
$url = $home_url . $url;
|
610 |
}
|
611 |
$url = preg_replace( '/([^:])\/+/', '$1/', $url );
|
612 |
+
// $url = trailingslashit( $url );
|
613 |
if ( !empty( $this->options_by_formkey['querystring'] ) && MWF_Functions::is_numeric( $_GET['post_id'] ) ) {
|
614 |
$url = $url . '?post_id=' . $_GET['post_id'];
|
615 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: plugin, form, confirm, preview
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
-
Stable tag: 0.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -26,6 +26,7 @@ MW WP Form はショートコードを使って確認画面付きのメールフ
|
|
26 |
* 同一URL・個別URLでの画面変遷が可能
|
27 |
* 豊富なバリデーションルール
|
28 |
|
|
|
29 |
http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
30 |
|
31 |
== Installation ==
|
@@ -36,7 +37,15 @@ http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
|
36 |
|
37 |
== Changelog ==
|
38 |
|
39 |
-
= 0.9.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
* Bug fix: ファイルの読み込みタイミング等を変更
|
41 |
|
42 |
= 0.9.1 =
|
4 |
Tags: plugin, form, confirm, preview
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
+
Stable tag: 0.9.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
26 |
* 同一URL・個別URLでの画面変遷が可能
|
27 |
* 豊富なバリデーションルール
|
28 |
|
29 |
+
http://2inc.org/manual-mw-wp-form/
|
30 |
http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
31 |
|
32 |
== Installation ==
|
37 |
|
38 |
== Changelog ==
|
39 |
|
40 |
+
= 0.9.4 =
|
41 |
+
* Bug fix: 管理画面での 確認ボタン の表記間違いを修正
|
42 |
+
|
43 |
+
= 0.9.3 =
|
44 |
+
* Added : readme.txt にマニュアルのURLを追記
|
45 |
+
* Bug fix: 確認ボタン 挿入ボタンが表示されていなかったのを修正
|
46 |
+
* Bug fix: 末尾に / のつかない URL の場合に画面変遷が正しく行われないバグを修正
|
47 |
+
|
48 |
+
= 0.9.2 =
|
49 |
* Bug fix: ファイルの読み込みタイミング等を変更
|
50 |
|
51 |
= 0.9.1 =
|