Version Description
- Bugfix : Fixed a post_raw option bug.
Download this release
Release Info
Developer | inc2734 |
Plugin | MW WP Form |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.3.0 to 2.3.1
- classes/form-fields/class.checkbox.php +6 -6
- classes/form-fields/class.radio.php +6 -6
- classes/form-fields/class.select.php +6 -6
- classes/models/class.abstract-form-field.php +1 -2
- classes/models/class.data.php +11 -12
- languages/mw-wp-form-ja.mo +0 -0
- languages/mw-wp-form-ja.po +63 -61
- languages/mw-wp-form.pot +57 -57
- mw-wp-form.php +1 -1
- readme.txt +4 -1
classes/form-fields/class.checkbox.php
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
/**
|
3 |
* Name : MW WP Form Field Checkbox
|
4 |
* Description: チェックボックスを出力
|
5 |
-
* Version : 1.5.
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : December 14, 2012
|
9 |
-
* Modified : February
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
@@ -43,7 +43,7 @@ class MW_WP_Form_Field_Checkbox extends MW_WP_Form_Abstract_Form_Field {
|
|
43 |
'children' => '',
|
44 |
'value' => '',
|
45 |
'vertically' => '',
|
46 |
-
'post_raw' => '
|
47 |
'show_error' => 'true',
|
48 |
'separator' => ', ',
|
49 |
);
|
@@ -63,7 +63,7 @@ class MW_WP_Form_Field_Checkbox extends MW_WP_Form_Abstract_Form_Field {
|
|
63 |
'value' => $value,
|
64 |
'vertically' => $this->atts['vertically'],
|
65 |
), $separator );
|
66 |
-
if ( $this->atts['post_raw']
|
67 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
68 |
}
|
69 |
if ( $this->atts['show_error'] !== 'false' ) {
|
@@ -84,7 +84,7 @@ class MW_WP_Form_Field_Checkbox extends MW_WP_Form_Abstract_Form_Field {
|
|
84 |
$_ret = esc_html( $value );
|
85 |
$_ret .= $this->Form->hidden( $this->atts['name'] . '[data]', $posted_value );
|
86 |
$_ret .= $this->Form->separator( $this->atts['name'] );
|
87 |
-
if ( $this->atts['post_raw']
|
88 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
89 |
}
|
90 |
return $_ret;
|
@@ -121,7 +121,7 @@ class MW_WP_Form_Field_Checkbox extends MW_WP_Form_Abstract_Form_Field {
|
|
121 |
<strong><?php esc_html_e( 'Send value by e-mail', MWF_Config::DOMAIN ); ?></strong>
|
122 |
<?php $value = $this->get_value_for_generator( 'value', $options ); ?>
|
123 |
<?php $post_raw = $this->get_value_for_generator( 'post_raw', $options ); ?>
|
124 |
-
<label><input type="checkbox" name="post_raw" value="
|
125 |
</p>
|
126 |
<p>
|
127 |
<strong><?php esc_html_e( 'Default value', MWF_Config::DOMAIN ); ?></strong>
|
2 |
/**
|
3 |
* Name : MW WP Form Field Checkbox
|
4 |
* Description: チェックボックスを出力
|
5 |
+
* Version : 1.5.6
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : December 14, 2012
|
9 |
+
* Modified : February 28, 2015
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
43 |
'children' => '',
|
44 |
'value' => '',
|
45 |
'vertically' => '',
|
46 |
+
'post_raw' => 'false',
|
47 |
'show_error' => 'true',
|
48 |
'separator' => ', ',
|
49 |
);
|
63 |
'value' => $value,
|
64 |
'vertically' => $this->atts['vertically'],
|
65 |
), $separator );
|
66 |
+
if ( $this->atts['post_raw'] === 'false' ) {
|
67 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
68 |
}
|
69 |
if ( $this->atts['show_error'] !== 'false' ) {
|
84 |
$_ret = esc_html( $value );
|
85 |
$_ret .= $this->Form->hidden( $this->atts['name'] . '[data]', $posted_value );
|
86 |
$_ret .= $this->Form->separator( $this->atts['name'] );
|
87 |
+
if ( $this->atts['post_raw'] === 'false' ) {
|
88 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
89 |
}
|
90 |
return $_ret;
|
121 |
<strong><?php esc_html_e( 'Send value by e-mail', MWF_Config::DOMAIN ); ?></strong>
|
122 |
<?php $value = $this->get_value_for_generator( 'value', $options ); ?>
|
123 |
<?php $post_raw = $this->get_value_for_generator( 'post_raw', $options ); ?>
|
124 |
+
<label><input type="checkbox" name="post_raw" value="true" <?php checked( 'true', $post_raw ); ?> /> <?php esc_html_e( 'Send post value when you split the post value and display value by ":" in choices.', MWF_Config::DOMAIN ); ?></label>
|
125 |
</p>
|
126 |
<p>
|
127 |
<strong><?php esc_html_e( 'Default value', MWF_Config::DOMAIN ); ?></strong>
|
classes/form-fields/class.radio.php
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
/**
|
3 |
* Name : MW WP Form Field Radio
|
4 |
* Description: ラジオボタンを出力
|
5 |
-
* Version : 1.5.
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : December 14, 2012
|
9 |
-
* Modified : February
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
@@ -43,7 +43,7 @@ class MW_WP_Form_Field_Radio extends MW_WP_Form_Abstract_Form_Field {
|
|
43 |
'children' => '',
|
44 |
'value' => '',
|
45 |
'vertically' => '',
|
46 |
-
'post_raw' => '
|
47 |
'show_error' => 'true',
|
48 |
);
|
49 |
}
|
@@ -60,7 +60,7 @@ class MW_WP_Form_Field_Radio extends MW_WP_Form_Abstract_Form_Field {
|
|
60 |
'value' => $this->atts['value'],
|
61 |
'vertically' => $this->atts['vertically'],
|
62 |
) );
|
63 |
-
if ( $this->atts['post_raw']
|
64 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
65 |
}
|
66 |
if ( $this->atts['show_error'] !== 'false' ) {
|
@@ -80,7 +80,7 @@ class MW_WP_Form_Field_Radio extends MW_WP_Form_Abstract_Form_Field {
|
|
80 |
$posted_value = $this->Form->get_raw( $this->atts['name'] );
|
81 |
$_ret = esc_html( $value );
|
82 |
$_ret .= $this->Form->hidden( $this->atts['name'], $posted_value );
|
83 |
-
if ( $this->atts['post_raw']
|
84 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
85 |
}
|
86 |
return $_ret;
|
@@ -117,7 +117,7 @@ class MW_WP_Form_Field_Radio extends MW_WP_Form_Abstract_Form_Field {
|
|
117 |
<strong><?php esc_html_e( 'Send value by e-mail', MWF_Config::DOMAIN ); ?></strong>
|
118 |
<?php $value = $this->get_value_for_generator( 'value', $options ); ?>
|
119 |
<?php $post_raw = $this->get_value_for_generator( 'post_raw', $options ); ?>
|
120 |
-
<label><input type="checkbox" name="post_raw" value="
|
121 |
</p>
|
122 |
<p>
|
123 |
<strong><?php esc_html_e( 'Default value', MWF_Config::DOMAIN ); ?></strong>
|
2 |
/**
|
3 |
* Name : MW WP Form Field Radio
|
4 |
* Description: ラジオボタンを出力
|
5 |
+
* Version : 1.5.5
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : December 14, 2012
|
9 |
+
* Modified : February 28, 2015
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
43 |
'children' => '',
|
44 |
'value' => '',
|
45 |
'vertically' => '',
|
46 |
+
'post_raw' => 'false',
|
47 |
'show_error' => 'true',
|
48 |
);
|
49 |
}
|
60 |
'value' => $this->atts['value'],
|
61 |
'vertically' => $this->atts['vertically'],
|
62 |
) );
|
63 |
+
if ( $this->atts['post_raw'] === 'false' ) {
|
64 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
65 |
}
|
66 |
if ( $this->atts['show_error'] !== 'false' ) {
|
80 |
$posted_value = $this->Form->get_raw( $this->atts['name'] );
|
81 |
$_ret = esc_html( $value );
|
82 |
$_ret .= $this->Form->hidden( $this->atts['name'], $posted_value );
|
83 |
+
if ( $this->atts['post_raw'] === 'false' ) {
|
84 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
85 |
}
|
86 |
return $_ret;
|
117 |
<strong><?php esc_html_e( 'Send value by e-mail', MWF_Config::DOMAIN ); ?></strong>
|
118 |
<?php $value = $this->get_value_for_generator( 'value', $options ); ?>
|
119 |
<?php $post_raw = $this->get_value_for_generator( 'post_raw', $options ); ?>
|
120 |
+
<label><input type="checkbox" name="post_raw" value="true" <?php checked( 'true', $post_raw ); ?> /> <?php esc_html_e( 'Send post value when you split the post value and display value by ":" in choices.', MWF_Config::DOMAIN ); ?></label>
|
121 |
</p>
|
122 |
<p>
|
123 |
<strong><?php esc_html_e( 'Default value', MWF_Config::DOMAIN ); ?></strong>
|
classes/form-fields/class.select.php
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
/**
|
3 |
* Name : MW WP Form Field Select
|
4 |
* Description: セレクトボックスを出力
|
5 |
-
* Version : 1.5.
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : December 14, 2012
|
9 |
-
* Modified : February
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
@@ -42,7 +42,7 @@ class MW_WP_Form_Field_Select extends MW_WP_Form_Abstract_Form_Field {
|
|
42 |
'id' => '',
|
43 |
'children' => '',
|
44 |
'value' => '',
|
45 |
-
'post_raw' => '
|
46 |
'show_error' => 'true',
|
47 |
);
|
48 |
}
|
@@ -58,7 +58,7 @@ class MW_WP_Form_Field_Select extends MW_WP_Form_Abstract_Form_Field {
|
|
58 |
'id' => $this->atts['id'],
|
59 |
'value' => $this->atts['value'],
|
60 |
) );
|
61 |
-
if ( $this->atts['post_raw']
|
62 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
63 |
}
|
64 |
if ( $this->atts['show_error'] !== 'false' ) {
|
@@ -78,7 +78,7 @@ class MW_WP_Form_Field_Select extends MW_WP_Form_Abstract_Form_Field {
|
|
78 |
$posted_value = $this->Form->get_raw( $this->atts['name'] );
|
79 |
$_ret = esc_html( $value );
|
80 |
$_ret .= $this->Form->hidden( $this->atts['name'], $posted_value );
|
81 |
-
if ( $this->atts['post_raw']
|
82 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
83 |
}
|
84 |
return $_ret;
|
@@ -115,7 +115,7 @@ class MW_WP_Form_Field_Select extends MW_WP_Form_Abstract_Form_Field {
|
|
115 |
<strong><?php esc_html_e( 'Send value by e-mail', MWF_Config::DOMAIN ); ?></strong>
|
116 |
<?php $value = $this->get_value_for_generator( 'value', $options ); ?>
|
117 |
<?php $post_raw = $this->get_value_for_generator( 'post_raw', $options ); ?>
|
118 |
-
<label><input type="checkbox" name="post_raw" value="
|
119 |
</p>
|
120 |
<p>
|
121 |
<strong><?php esc_html_e( 'Default value', MWF_Config::DOMAIN ); ?></strong>
|
2 |
/**
|
3 |
* Name : MW WP Form Field Select
|
4 |
* Description: セレクトボックスを出力
|
5 |
+
* Version : 1.5.5
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : December 14, 2012
|
9 |
+
* Modified : February 28, 2015
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
42 |
'id' => '',
|
43 |
'children' => '',
|
44 |
'value' => '',
|
45 |
+
'post_raw' => 'false',
|
46 |
'show_error' => 'true',
|
47 |
);
|
48 |
}
|
58 |
'id' => $this->atts['id'],
|
59 |
'value' => $this->atts['value'],
|
60 |
) );
|
61 |
+
if ( $this->atts['post_raw'] === 'false' ) {
|
62 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
63 |
}
|
64 |
if ( $this->atts['show_error'] !== 'false' ) {
|
78 |
$posted_value = $this->Form->get_raw( $this->atts['name'] );
|
79 |
$_ret = esc_html( $value );
|
80 |
$_ret .= $this->Form->hidden( $this->atts['name'], $posted_value );
|
81 |
+
if ( $this->atts['post_raw'] === 'false' ) {
|
82 |
$_ret .= $this->Form->children( $this->atts['name'], $children );
|
83 |
}
|
84 |
return $_ret;
|
115 |
<strong><?php esc_html_e( 'Send value by e-mail', MWF_Config::DOMAIN ); ?></strong>
|
116 |
<?php $value = $this->get_value_for_generator( 'value', $options ); ?>
|
117 |
<?php $post_raw = $this->get_value_for_generator( 'post_raw', $options ); ?>
|
118 |
+
<label><input type="checkbox" name="post_raw" value="true" <?php checked( 'true', $post_raw ); ?> /> <?php esc_html_e( 'Send post value when you split the post value and display value by ":" in choices.', MWF_Config::DOMAIN ); ?></label>
|
119 |
</p>
|
120 |
<p>
|
121 |
<strong><?php esc_html_e( 'Default value', MWF_Config::DOMAIN ); ?></strong>
|
classes/models/class.abstract-form-field.php
CHANGED
@@ -286,12 +286,11 @@ abstract class MW_Form_Field {
|
|
286 |
$_children = explode( ',', $_children );
|
287 |
}
|
288 |
if ( is_array( $_children ) ) {
|
289 |
-
$_children = array_map( 'trim', $_children );
|
290 |
foreach ( $_children as $child ) {
|
291 |
$temp_replacement = '@-[_-_]-@';
|
292 |
if ( preg_match( '/(^:[^:])|([^:]:[^:])/', $child ) ) {
|
293 |
$child = str_replace( '::', $temp_replacement, $child );
|
294 |
-
$child =
|
295 |
} else {
|
296 |
$child = str_replace( '::', $temp_replacement, $child );
|
297 |
$child = array( $child );
|
286 |
$_children = explode( ',', $_children );
|
287 |
}
|
288 |
if ( is_array( $_children ) ) {
|
|
|
289 |
foreach ( $_children as $child ) {
|
290 |
$temp_replacement = '@-[_-_]-@';
|
291 |
if ( preg_match( '/(^:[^:])|([^:]:[^:])/', $child ) ) {
|
292 |
$child = str_replace( '::', $temp_replacement, $child );
|
293 |
+
$child = explode( ':', $child, 2 );
|
294 |
} else {
|
295 |
$child = str_replace( '::', $temp_replacement, $child );
|
296 |
$child = array( $child );
|
classes/models/class.data.php
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
/**
|
3 |
* Name : MW WP Form Data
|
4 |
* Description: MW WP Form のデータ操作用
|
5 |
-
* Version : 1.3.
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : October 10, 2013
|
9 |
-
* Modified : January
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
@@ -301,21 +301,20 @@ class MW_WP_Form_Data {
|
|
301 |
$value = $this->data[$key]['data'];
|
302 |
if ( isset( $this->data['__children'][$key] ) ) {
|
303 |
$children = json_decode( $this->data['__children'][$key], true );
|
304 |
-
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
306 |
}
|
|
|
307 |
}
|
308 |
return $value;
|
309 |
}
|
310 |
} else {
|
311 |
-
|
312 |
-
if ( isset( $this->data['__children'][$key] ) ) {
|
313 |
-
$children = json_decode( $this->data['__children'][$key], true );
|
314 |
-
if ( isset( $children[$value] ) ) {
|
315 |
-
return $children[$value];
|
316 |
-
}
|
317 |
-
}
|
318 |
-
return $value;
|
319 |
}
|
320 |
}
|
321 |
}
|
2 |
/**
|
3 |
* Name : MW WP Form Data
|
4 |
* Description: MW WP Form のデータ操作用
|
5 |
+
* Version : 1.3.5
|
6 |
* Author : Takashi Kitajima
|
7 |
* Author URI : http://2inc.org
|
8 |
* Created : October 10, 2013
|
9 |
+
* Modified : January 28, 2015
|
10 |
* License : GPLv2
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
*/
|
301 |
$value = $this->data[$key]['data'];
|
302 |
if ( isset( $this->data['__children'][$key] ) ) {
|
303 |
$children = json_decode( $this->data['__children'][$key], true );
|
304 |
+
$separator = $this->get_separator_value( $key );
|
305 |
+
$array_value = explode( $separator, $value );
|
306 |
+
$right_value = array();
|
307 |
+
foreach ( $array_value as $v ) {
|
308 |
+
if ( isset( $children[$v] ) ) {
|
309 |
+
$right_value[] = $children[$v];
|
310 |
+
}
|
311 |
}
|
312 |
+
return implode( $separator, $right_value );
|
313 |
}
|
314 |
return $value;
|
315 |
}
|
316 |
} else {
|
317 |
+
return $this->get_raw( $key );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
}
|
319 |
}
|
320 |
}
|
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 2.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
-
"POT-Creation-Date: 2015-02-
|
8 |
-
"PO-Revision-Date: 2015-02-
|
9 |
"Last-Translator: Takashi Kitajima <inc@2inc.org>\n"
|
10 |
"Language-Team: Takashi Kitajima <inc@2inc.org>\n"
|
11 |
"Language: ja\n"
|
@@ -19,72 +19,72 @@ msgstr ""
|
|
19 |
"X-Poedit-KeywordsList: __;_e;_x;esc_html_e;esc_html__\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
|
22 |
-
#: classes/controllers/class.admin-list.php:
|
23 |
-
#: classes/controllers/class.admin.php:
|
24 |
msgid "Form Key"
|
25 |
msgstr "フォーム識別子"
|
26 |
|
27 |
-
#: classes/controllers/class.admin.php:
|
28 |
msgid "Complete Message"
|
29 |
msgstr "完了画面メッセージ"
|
30 |
|
31 |
-
#: classes/controllers/class.admin.php:
|
32 |
msgid "URL Options"
|
33 |
msgstr "URL設定"
|
34 |
|
35 |
-
#: classes/controllers/class.admin.php:
|
36 |
msgid "Validation Rule"
|
37 |
msgstr "バリデーションルール"
|
38 |
|
39 |
-
#: classes/controllers/class.admin.php:
|
40 |
msgid "Add-ons"
|
41 |
msgstr "アドオン"
|
42 |
|
43 |
-
#: classes/controllers/class.admin.php:
|
44 |
msgid "Automatic Reply Email Options"
|
45 |
msgstr "自動返信メール設定"
|
46 |
|
47 |
-
#: classes/controllers/class.admin.php:
|
48 |
msgid "Admin Email Options"
|
49 |
msgstr "管理者宛メール設定"
|
50 |
|
51 |
-
#: classes/controllers/class.admin.php:
|
52 |
msgid "settings"
|
53 |
msgstr "設定"
|
54 |
|
55 |
-
#: classes/controllers/class.admin.php:
|
56 |
msgid "Style setting"
|
57 |
msgstr "スタイル設定"
|
58 |
|
59 |
-
#: classes/controllers/class.chart.php:
|
60 |
-
#: classes/controllers/class.chart.php:
|
61 |
msgid "Chart"
|
62 |
msgstr "グラフ"
|
63 |
|
64 |
-
#: classes/controllers/class.contact-data-list.php:
|
65 |
-
#: classes/controllers/class.contact-data-list.php:
|
66 |
-
#: classes/controllers/class.contact-data-list.php:
|
67 |
#: classes/views/class.contact-data.php:101
|
68 |
msgid "Response Status"
|
69 |
msgstr "対応状況"
|
70 |
|
71 |
-
#: classes/controllers/class.contact-data-list.php:
|
72 |
-
#: classes/controllers/class.contact-data-list.php:
|
73 |
#: classes/views/class.contact-data.php:113
|
74 |
msgid "Memo"
|
75 |
msgstr "メモ"
|
76 |
|
77 |
-
#: classes/controllers/class.contact-data-list.php:
|
78 |
msgid "Registed Date"
|
79 |
msgstr "登録日時"
|
80 |
|
81 |
-
#: classes/controllers/class.contact-data.php:
|
82 |
-
#: classes/controllers/class.contact-data.php:
|
83 |
#: classes/views/class.contact-data.php:34
|
84 |
msgid "Inquiry data"
|
85 |
msgstr "問い合わせデータ"
|
86 |
|
87 |
-
#: classes/controllers/class.contact-data.php:
|
88 |
msgid "Custom Fields"
|
89 |
msgstr "カスタムフィールド"
|
90 |
|
@@ -158,7 +158,7 @@ msgstr "メールで送信する値"
|
|
158 |
msgid ""
|
159 |
"Send post value when you split the post value and display value by \":\" in "
|
160 |
"choices."
|
161 |
-
msgstr "
|
162 |
|
163 |
#: classes/form-fields/class.checkbox.php:127
|
164 |
#: classes/form-fields/class.datepicker.php:131
|
@@ -485,6 +485,14 @@ msgstr "URL"
|
|
485 |
msgid "This is not the format of a zip code."
|
486 |
msgstr "郵便番号の形式ではありません。"
|
487 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
#: classes/views/class.admin.php:39
|
489 |
msgid "Input Page URL"
|
490 |
msgstr "入力画面URL"
|
@@ -634,70 +642,62 @@ msgstr "Akismetを使用する項目のキーを入力してください。"
|
|
634 |
msgid "Select Style"
|
635 |
msgstr "スタイルを選択"
|
636 |
|
637 |
-
#: classes/views/class.admin.php:
|
638 |
-
msgid "Your contribution is needed for making this plugin better."
|
639 |
-
msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
|
640 |
-
|
641 |
-
#: classes/views/class.admin.php:316
|
642 |
-
msgid "Donate"
|
643 |
-
msgstr "寄付する"
|
644 |
-
|
645 |
-
#: classes/views/class.admin.php:338 classes/views/class.chart.php:94
|
646 |
msgid "Select this."
|
647 |
msgstr "選択してください"
|
648 |
|
649 |
-
#: classes/views/class.admin.php:
|
650 |
msgid "Input fields"
|
651 |
msgstr "入力項目"
|
652 |
|
653 |
-
#: classes/views/class.admin.php:
|
654 |
msgid "Select fields"
|
655 |
msgstr "選択項目"
|
656 |
|
657 |
-
#: classes/views/class.admin.php:
|
658 |
msgid "Button fields"
|
659 |
msgstr "ボタン項目"
|
660 |
|
661 |
-
#: classes/views/class.admin.php:
|
662 |
msgid "Error fields"
|
663 |
msgstr "エラー項目"
|
664 |
|
665 |
-
#: classes/views/class.admin.php:
|
666 |
msgid "Other fields"
|
667 |
msgstr "その他の項目"
|
668 |
|
669 |
-
#: classes/views/class.admin.php:
|
670 |
msgid "Add form tag"
|
671 |
msgstr "フォームタグを追加"
|
672 |
|
673 |
-
#: classes/views/class.chart.php:
|
674 |
msgid "Add Chart"
|
675 |
msgstr "グラフを追加"
|
676 |
|
677 |
-
#: classes/views/class.chart.php:
|
678 |
msgid "Item that create chart"
|
679 |
msgstr "グラフを作成する項目"
|
680 |
|
681 |
-
#: classes/views/class.chart.php:
|
682 |
msgid "Chart type"
|
683 |
msgstr "グラフの種類"
|
684 |
|
685 |
-
#: classes/views/class.chart.php:
|
686 |
msgid "Pie chart"
|
687 |
msgstr "円グラフ"
|
688 |
|
689 |
-
#: classes/views/class.chart.php:
|
690 |
msgid "Bar chart"
|
691 |
msgstr "棒グラフ"
|
692 |
|
693 |
-
#: classes/views/class.chart.php:
|
694 |
msgid ""
|
695 |
"Separator string (If the check box. If the separator attribute is not set to "
|
696 |
"\",\")"
|
697 |
msgstr ""
|
698 |
"区切り文字(チェックボックスの場合。separator 属性が未設定の場合は「,」)"
|
699 |
|
700 |
-
#: classes/views/class.chart.php:
|
701 |
msgid "The number of inquiries"
|
702 |
msgstr "問い合わせ件数"
|
703 |
|
@@ -738,51 +738,51 @@ msgstr "件"
|
|
738 |
msgid "« Back to the list"
|
739 |
msgstr "« 一覧に戻る"
|
740 |
|
741 |
-
#: mw-wp-form.php:
|
742 |
msgid "Add New Form"
|
743 |
msgstr "フォームを追加"
|
744 |
|
745 |
-
#: mw-wp-form.php:
|
746 |
msgid "Edit Form"
|
747 |
msgstr "フォームを編集"
|
748 |
|
749 |
-
#: mw-wp-form.php:
|
750 |
msgid "New Form"
|
751 |
msgstr "新しいフォーム"
|
752 |
|
753 |
-
#: mw-wp-form.php:
|
754 |
msgid "View Form"
|
755 |
msgstr "フォームを表示"
|
756 |
|
757 |
-
#: mw-wp-form.php:
|
758 |
msgid "Search Forms"
|
759 |
msgstr "フォームを検索"
|
760 |
|
761 |
-
#: mw-wp-form.php:
|
762 |
msgid "No Forms found"
|
763 |
msgstr "フォームがありません"
|
764 |
|
765 |
-
#: mw-wp-form.php:
|
766 |
msgid "No Forms found in Trash"
|
767 |
msgstr "ゴミ箱にフォームはありません"
|
768 |
|
769 |
-
#: mw-wp-form.php:
|
770 |
msgid "Edit "
|
771 |
msgstr "編集"
|
772 |
|
773 |
-
#: mw-wp-form.php:
|
774 |
msgid "View"
|
775 |
msgstr "表示"
|
776 |
|
777 |
-
#: mw-wp-form.php:
|
778 |
msgid "Search"
|
779 |
msgstr "検索"
|
780 |
|
781 |
-
#: mw-wp-form.php:
|
782 |
msgid "No data found"
|
783 |
msgstr "データがありません"
|
784 |
|
785 |
-
#: mw-wp-form.php:
|
786 |
msgid "No data found in Trash"
|
787 |
msgstr "ゴミ箱にデータはありません"
|
788 |
|
@@ -805,12 +805,14 @@ msgstr ""
|
|
805 |
"フ機能集計などを使用することができます。"
|
806 |
|
807 |
#. Author of the plugin/theme
|
|
|
808 |
msgid "Takashi Kitajima"
|
809 |
-
msgstr ""
|
810 |
|
811 |
#. Author URI of the plugin/theme
|
|
|
812 |
msgid "http://2inc.org"
|
813 |
-
msgstr ""
|
814 |
|
815 |
#~ msgid "MW WP Form can create mail form with a confirmation screen."
|
816 |
#~ 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 2.3.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
+
"POT-Creation-Date: 2015-02-28 09:56:10+00:00\n"
|
8 |
+
"PO-Revision-Date: 2015-02-28 18:58+0900\n"
|
9 |
"Last-Translator: Takashi Kitajima <inc@2inc.org>\n"
|
10 |
"Language-Team: Takashi Kitajima <inc@2inc.org>\n"
|
11 |
"Language: ja\n"
|
19 |
"X-Poedit-KeywordsList: __;_e;_x;esc_html_e;esc_html__\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
|
22 |
+
#: classes/controllers/class.admin-list.php:58
|
23 |
+
#: classes/controllers/class.admin.php:106
|
24 |
msgid "Form Key"
|
25 |
msgstr "フォーム識別子"
|
26 |
|
27 |
+
#: classes/controllers/class.admin.php:67
|
28 |
msgid "Complete Message"
|
29 |
msgstr "完了画面メッセージ"
|
30 |
|
31 |
+
#: classes/controllers/class.admin.php:79
|
32 |
msgid "URL Options"
|
33 |
msgstr "URL設定"
|
34 |
|
35 |
+
#: classes/controllers/class.admin.php:89
|
36 |
msgid "Validation Rule"
|
37 |
msgstr "バリデーションルール"
|
38 |
|
39 |
+
#: classes/controllers/class.admin.php:97
|
40 |
msgid "Add-ons"
|
41 |
msgstr "アドオン"
|
42 |
|
43 |
+
#: classes/controllers/class.admin.php:119
|
44 |
msgid "Automatic Reply Email Options"
|
45 |
msgstr "自動返信メール設定"
|
46 |
|
47 |
+
#: classes/controllers/class.admin.php:134
|
48 |
msgid "Admin Email Options"
|
49 |
msgstr "管理者宛メール設定"
|
50 |
|
51 |
+
#: classes/controllers/class.admin.php:148
|
52 |
msgid "settings"
|
53 |
msgstr "設定"
|
54 |
|
55 |
+
#: classes/controllers/class.admin.php:160
|
56 |
msgid "Style setting"
|
57 |
msgstr "スタイル設定"
|
58 |
|
59 |
+
#: classes/controllers/class.chart.php:78
|
60 |
+
#: classes/controllers/class.chart.php:79 classes/views/class.chart.php:65
|
61 |
msgid "Chart"
|
62 |
msgstr "グラフ"
|
63 |
|
64 |
+
#: classes/controllers/class.contact-data-list.php:160
|
65 |
+
#: classes/controllers/class.contact-data-list.php:207
|
66 |
+
#: classes/controllers/class.contact-data-list.php:297
|
67 |
#: classes/views/class.contact-data.php:101
|
68 |
msgid "Response Status"
|
69 |
msgstr "対応状況"
|
70 |
|
71 |
+
#: classes/controllers/class.contact-data-list.php:187
|
72 |
+
#: classes/controllers/class.contact-data-list.php:210
|
73 |
#: classes/views/class.contact-data.php:113
|
74 |
msgid "Memo"
|
75 |
msgstr "メモ"
|
76 |
|
77 |
+
#: classes/controllers/class.contact-data-list.php:296
|
78 |
msgid "Registed Date"
|
79 |
msgstr "登録日時"
|
80 |
|
81 |
+
#: classes/controllers/class.contact-data.php:85
|
82 |
+
#: classes/controllers/class.contact-data.php:86
|
83 |
#: classes/views/class.contact-data.php:34
|
84 |
msgid "Inquiry data"
|
85 |
msgstr "問い合わせデータ"
|
86 |
|
87 |
+
#: classes/controllers/class.contact-data.php:121
|
88 |
msgid "Custom Fields"
|
89 |
msgstr "カスタムフィールド"
|
90 |
|
158 |
msgid ""
|
159 |
"Send post value when you split the post value and display value by \":\" in "
|
160 |
"choices."
|
161 |
+
msgstr "選択肢を「:」で送信値と表示値に分割したとき、送信値をメールで送信"
|
162 |
|
163 |
#: classes/form-fields/class.checkbox.php:127
|
164 |
#: classes/form-fields/class.datepicker.php:131
|
485 |
msgid "This is not the format of a zip code."
|
486 |
msgstr "郵便番号の形式ではありません。"
|
487 |
|
488 |
+
#: classes/views/class.admin-list.php:31
|
489 |
+
msgid "Your contribution is needed for making this plugin better."
|
490 |
+
msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
|
491 |
+
|
492 |
+
#: classes/views/class.admin-list.php:31
|
493 |
+
msgid "Donate"
|
494 |
+
msgstr "寄付する"
|
495 |
+
|
496 |
#: classes/views/class.admin.php:39
|
497 |
msgid "Input Page URL"
|
498 |
msgstr "入力画面URL"
|
642 |
msgid "Select Style"
|
643 |
msgstr "スタイルを選択"
|
644 |
|
645 |
+
#: classes/views/class.admin.php:327 classes/views/class.chart.php:86
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
msgid "Select this."
|
647 |
msgstr "選択してください"
|
648 |
|
649 |
+
#: classes/views/class.admin.php:328
|
650 |
msgid "Input fields"
|
651 |
msgstr "入力項目"
|
652 |
|
653 |
+
#: classes/views/class.admin.php:331
|
654 |
msgid "Select fields"
|
655 |
msgstr "選択項目"
|
656 |
|
657 |
+
#: classes/views/class.admin.php:334
|
658 |
msgid "Button fields"
|
659 |
msgstr "ボタン項目"
|
660 |
|
661 |
+
#: classes/views/class.admin.php:337
|
662 |
msgid "Error fields"
|
663 |
msgstr "エラー項目"
|
664 |
|
665 |
+
#: classes/views/class.admin.php:340
|
666 |
msgid "Other fields"
|
667 |
msgstr "その他の項目"
|
668 |
|
669 |
+
#: classes/views/class.admin.php:344
|
670 |
msgid "Add form tag"
|
671 |
msgstr "フォームタグを追加"
|
672 |
|
673 |
+
#: classes/views/class.chart.php:76
|
674 |
msgid "Add Chart"
|
675 |
msgstr "グラフを追加"
|
676 |
|
677 |
+
#: classes/views/class.chart.php:84
|
678 |
msgid "Item that create chart"
|
679 |
msgstr "グラフを作成する項目"
|
680 |
|
681 |
+
#: classes/views/class.chart.php:92
|
682 |
msgid "Chart type"
|
683 |
msgstr "グラフの種類"
|
684 |
|
685 |
+
#: classes/views/class.chart.php:96
|
686 |
msgid "Pie chart"
|
687 |
msgstr "円グラフ"
|
688 |
|
689 |
+
#: classes/views/class.chart.php:97
|
690 |
msgid "Bar chart"
|
691 |
msgstr "棒グラフ"
|
692 |
|
693 |
+
#: classes/views/class.chart.php:110
|
694 |
msgid ""
|
695 |
"Separator string (If the check box. If the separator attribute is not set to "
|
696 |
"\",\")"
|
697 |
msgstr ""
|
698 |
"区切り文字(チェックボックスの場合。separator 属性が未設定の場合は「,」)"
|
699 |
|
700 |
+
#: classes/views/class.chart.php:132 classes/views/class.contact-data.php:42
|
701 |
msgid "The number of inquiries"
|
702 |
msgstr "問い合わせ件数"
|
703 |
|
738 |
msgid "« Back to the list"
|
739 |
msgstr "« 一覧に戻る"
|
740 |
|
741 |
+
#: mw-wp-form.php:185
|
742 |
msgid "Add New Form"
|
743 |
msgstr "フォームを追加"
|
744 |
|
745 |
+
#: mw-wp-form.php:186
|
746 |
msgid "Edit Form"
|
747 |
msgstr "フォームを編集"
|
748 |
|
749 |
+
#: mw-wp-form.php:187
|
750 |
msgid "New Form"
|
751 |
msgstr "新しいフォーム"
|
752 |
|
753 |
+
#: mw-wp-form.php:188
|
754 |
msgid "View Form"
|
755 |
msgstr "フォームを表示"
|
756 |
|
757 |
+
#: mw-wp-form.php:189
|
758 |
msgid "Search Forms"
|
759 |
msgstr "フォームを検索"
|
760 |
|
761 |
+
#: mw-wp-form.php:190
|
762 |
msgid "No Forms found"
|
763 |
msgstr "フォームがありません"
|
764 |
|
765 |
+
#: mw-wp-form.php:191
|
766 |
msgid "No Forms found in Trash"
|
767 |
msgstr "ゴミ箱にフォームはありません"
|
768 |
|
769 |
+
#: mw-wp-form.php:208
|
770 |
msgid "Edit "
|
771 |
msgstr "編集"
|
772 |
|
773 |
+
#: mw-wp-form.php:209
|
774 |
msgid "View"
|
775 |
msgstr "表示"
|
776 |
|
777 |
+
#: mw-wp-form.php:210
|
778 |
msgid "Search"
|
779 |
msgstr "検索"
|
780 |
|
781 |
+
#: mw-wp-form.php:211
|
782 |
msgid "No data found"
|
783 |
msgstr "データがありません"
|
784 |
|
785 |
+
#: mw-wp-form.php:212
|
786 |
msgid "No data found in Trash"
|
787 |
msgstr "ゴミ箱にデータはありません"
|
788 |
|
805 |
"フ機能集計などを使用することができます。"
|
806 |
|
807 |
#. Author of the plugin/theme
|
808 |
+
#, fuzzy
|
809 |
msgid "Takashi Kitajima"
|
810 |
+
msgstr "Takashi Kitajima"
|
811 |
|
812 |
#. Author URI of the plugin/theme
|
813 |
+
#, fuzzy
|
814 |
msgid "http://2inc.org"
|
815 |
+
msgstr "http://2inc.org"
|
816 |
|
817 |
#~ msgid "MW WP Form can create mail form with a confirmation screen."
|
818 |
#~ 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 2.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
-
"POT-Creation-Date: 2015-02-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -18,72 +18,72 @@ msgstr ""
|
|
18 |
"X-Poedit-KeywordsList: __;_e\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
-
#: classes/controllers/class.admin-list.php:
|
22 |
-
#: classes/controllers/class.admin.php:
|
23 |
msgid "Form Key"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: classes/controllers/class.admin.php:
|
27 |
msgid "Complete Message"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: classes/controllers/class.admin.php:
|
31 |
msgid "URL Options"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: classes/controllers/class.admin.php:
|
35 |
msgid "Validation Rule"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: classes/controllers/class.admin.php:
|
39 |
msgid "Add-ons"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: classes/controllers/class.admin.php:
|
43 |
msgid "Automatic Reply Email Options"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: classes/controllers/class.admin.php:
|
47 |
msgid "Admin Email Options"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/controllers/class.admin.php:
|
51 |
msgid "settings"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: classes/controllers/class.admin.php:
|
55 |
msgid "Style setting"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: classes/controllers/class.chart.php:
|
59 |
-
#: classes/controllers/class.chart.php:
|
60 |
msgid "Chart"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: classes/controllers/class.contact-data-list.php:
|
64 |
-
#: classes/controllers/class.contact-data-list.php:
|
65 |
-
#: classes/controllers/class.contact-data-list.php:
|
66 |
#: classes/views/class.contact-data.php:101
|
67 |
msgid "Response Status"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: classes/controllers/class.contact-data-list.php:
|
71 |
-
#: classes/controllers/class.contact-data-list.php:
|
72 |
#: classes/views/class.contact-data.php:113
|
73 |
msgid "Memo"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: classes/controllers/class.contact-data-list.php:
|
77 |
msgid "Registed Date"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: classes/controllers/class.contact-data.php:
|
81 |
-
#: classes/controllers/class.contact-data.php:
|
82 |
#: classes/views/class.contact-data.php:34
|
83 |
msgid "Inquiry data"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: classes/controllers/class.contact-data.php:
|
87 |
msgid "Custom Fields"
|
88 |
msgstr ""
|
89 |
|
@@ -479,6 +479,14 @@ msgstr ""
|
|
479 |
msgid "This is not the format of a zip code."
|
480 |
msgstr ""
|
481 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
#: classes/views/class.admin.php:39
|
483 |
msgid "Input Page URL"
|
484 |
msgstr ""
|
@@ -613,67 +621,59 @@ msgstr ""
|
|
613 |
msgid "Select Style"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: classes/views/class.admin.php:
|
617 |
-
msgid "Your contribution is needed for making this plugin better."
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: classes/views/class.admin.php:316
|
621 |
-
msgid "Donate"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: classes/views/class.admin.php:338 classes/views/class.chart.php:94
|
625 |
msgid "Select this."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: classes/views/class.admin.php:
|
629 |
msgid "Input fields"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: classes/views/class.admin.php:
|
633 |
msgid "Select fields"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: classes/views/class.admin.php:
|
637 |
msgid "Button fields"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: classes/views/class.admin.php:
|
641 |
msgid "Error fields"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: classes/views/class.admin.php:
|
645 |
msgid "Other fields"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: classes/views/class.admin.php:
|
649 |
msgid "Add form tag"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: classes/views/class.chart.php:
|
653 |
msgid "Add Chart"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: classes/views/class.chart.php:
|
657 |
msgid "Item that create chart"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: classes/views/class.chart.php:
|
661 |
msgid "Chart type"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: classes/views/class.chart.php:
|
665 |
msgid "Pie chart"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: classes/views/class.chart.php:
|
669 |
msgid "Bar chart"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: classes/views/class.chart.php:
|
673 |
msgid "Separator string (If the check box. If the separator attribute is not set to \",\")"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: classes/views/class.chart.php:
|
677 |
msgid "The number of inquiries"
|
678 |
msgstr ""
|
679 |
|
@@ -710,51 +710,51 @@ msgstr ""
|
|
710 |
msgid "« Back to the list"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: mw-wp-form.php:
|
714 |
msgid "Add New Form"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: mw-wp-form.php:
|
718 |
msgid "Edit Form"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: mw-wp-form.php:
|
722 |
msgid "New Form"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: mw-wp-form.php:
|
726 |
msgid "View Form"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: mw-wp-form.php:
|
730 |
msgid "Search Forms"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: mw-wp-form.php:
|
734 |
msgid "No Forms found"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: mw-wp-form.php:
|
738 |
msgid "No Forms found in Trash"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: mw-wp-form.php:
|
742 |
msgid "Edit "
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: mw-wp-form.php:
|
746 |
msgid "View"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: mw-wp-form.php:
|
750 |
msgid "Search"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: mw-wp-form.php:
|
754 |
msgid "No data found"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: mw-wp-form.php:
|
758 |
msgid "No data found in Trash"
|
759 |
msgstr ""
|
760 |
#. Plugin Name of the plugin/theme
|
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 2.3.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
|
7 |
+
"POT-Creation-Date: 2015-02-28 09:56:10+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"X-Poedit-KeywordsList: __;_e\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
+
#: classes/controllers/class.admin-list.php:58
|
22 |
+
#: classes/controllers/class.admin.php:106
|
23 |
msgid "Form Key"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: classes/controllers/class.admin.php:67
|
27 |
msgid "Complete Message"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/controllers/class.admin.php:79
|
31 |
msgid "URL Options"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/controllers/class.admin.php:89
|
35 |
msgid "Validation Rule"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/controllers/class.admin.php:97
|
39 |
msgid "Add-ons"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/controllers/class.admin.php:119
|
43 |
msgid "Automatic Reply Email Options"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: classes/controllers/class.admin.php:134
|
47 |
msgid "Admin Email Options"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: classes/controllers/class.admin.php:148
|
51 |
msgid "settings"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: classes/controllers/class.admin.php:160
|
55 |
msgid "Style setting"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: classes/controllers/class.chart.php:78
|
59 |
+
#: classes/controllers/class.chart.php:79 classes/views/class.chart.php:65
|
60 |
msgid "Chart"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: classes/controllers/class.contact-data-list.php:160
|
64 |
+
#: classes/controllers/class.contact-data-list.php:207
|
65 |
+
#: classes/controllers/class.contact-data-list.php:297
|
66 |
#: classes/views/class.contact-data.php:101
|
67 |
msgid "Response Status"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: classes/controllers/class.contact-data-list.php:187
|
71 |
+
#: classes/controllers/class.contact-data-list.php:210
|
72 |
#: classes/views/class.contact-data.php:113
|
73 |
msgid "Memo"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: classes/controllers/class.contact-data-list.php:296
|
77 |
msgid "Registed Date"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: classes/controllers/class.contact-data.php:85
|
81 |
+
#: classes/controllers/class.contact-data.php:86
|
82 |
#: classes/views/class.contact-data.php:34
|
83 |
msgid "Inquiry data"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: classes/controllers/class.contact-data.php:121
|
87 |
msgid "Custom Fields"
|
88 |
msgstr ""
|
89 |
|
479 |
msgid "This is not the format of a zip code."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: classes/views/class.admin-list.php:31
|
483 |
+
msgid "Your contribution is needed for making this plugin better."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: classes/views/class.admin-list.php:31
|
487 |
+
msgid "Donate"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
#: classes/views/class.admin.php:39
|
491 |
msgid "Input Page URL"
|
492 |
msgstr ""
|
621 |
msgid "Select Style"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: classes/views/class.admin.php:327 classes/views/class.chart.php:86
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
msgid "Select this."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: classes/views/class.admin.php:328
|
629 |
msgid "Input fields"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: classes/views/class.admin.php:331
|
633 |
msgid "Select fields"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: classes/views/class.admin.php:334
|
637 |
msgid "Button fields"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: classes/views/class.admin.php:337
|
641 |
msgid "Error fields"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: classes/views/class.admin.php:340
|
645 |
msgid "Other fields"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: classes/views/class.admin.php:344
|
649 |
msgid "Add form tag"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: classes/views/class.chart.php:76
|
653 |
msgid "Add Chart"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: classes/views/class.chart.php:84
|
657 |
msgid "Item that create chart"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: classes/views/class.chart.php:92
|
661 |
msgid "Chart type"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: classes/views/class.chart.php:96
|
665 |
msgid "Pie chart"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: classes/views/class.chart.php:97
|
669 |
msgid "Bar chart"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: classes/views/class.chart.php:110
|
673 |
msgid "Separator string (If the check box. If the separator attribute is not set to \",\")"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: classes/views/class.chart.php:132 classes/views/class.contact-data.php:42
|
677 |
msgid "The number of inquiries"
|
678 |
msgstr ""
|
679 |
|
710 |
msgid "« Back to the list"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: mw-wp-form.php:185
|
714 |
msgid "Add New Form"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: mw-wp-form.php:186
|
718 |
msgid "Edit Form"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: mw-wp-form.php:187
|
722 |
msgid "New Form"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: mw-wp-form.php:188
|
726 |
msgid "View Form"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: mw-wp-form.php:189
|
730 |
msgid "Search Forms"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: mw-wp-form.php:190
|
734 |
msgid "No Forms found"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: mw-wp-form.php:191
|
738 |
msgid "No Forms found in Trash"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: mw-wp-form.php:208
|
742 |
msgid "Edit "
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: mw-wp-form.php:209
|
746 |
msgid "View"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: mw-wp-form.php:210
|
750 |
msgid "Search"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: mw-wp-form.php:211
|
754 |
msgid "No data found"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: mw-wp-form.php:212
|
758 |
msgid "No data found in Trash"
|
759 |
msgstr ""
|
760 |
#. Plugin Name of the plugin/theme
|
mw-wp-form.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://plugins.2inc.org/mw-wp-form/
|
5 |
* Description: MW WP Form is shortcode base contact form plugin. This plugin have many feature. For example you can use many validation rules, contact data saving, and chart aggregation using saved contact data.
|
6 |
-
* Version: 2.3.
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created : September 25, 2012
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://plugins.2inc.org/mw-wp-form/
|
5 |
* Description: MW WP Form is shortcode base contact form plugin. This plugin have many feature. For example you can use many validation rules, contact data saving, and chart aggregation using saved contact data.
|
6 |
+
* Version: 2.3.1
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created : September 25, 2012
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
|
|
4 |
Tags: plugin, form, confirm, preview, shortcode, mail, chart, graph, html, contact form, form creation, form creator, form manager, form builder, custom form
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.1.1
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -71,6 +71,9 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= 2.3.0 =
|
75 |
* Refactoring mail sending part.
|
76 |
* Added : Add "Send value by e-mail" option for checkbox, select, radio.
|
4 |
Tags: plugin, form, confirm, preview, shortcode, mail, chart, graph, html, contact form, form creation, form creator, form manager, form builder, custom form
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.1.1
|
7 |
+
Stable tag: 2.3.1
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 2.3.1 =
|
75 |
+
* Bugfix : Fixed a post_raw option bug.
|
76 |
+
|
77 |
= 2.3.0 =
|
78 |
* Refactoring mail sending part.
|
79 |
* Added : Add "Send value by e-mail" option for checkbox, select, radio.
|