MW WP Form - Version 1.2.6

Version Description

  • Added : mwform_styles
Download this release

Release Info

Developer inc2734
Plugin Icon wp plugin MW WP Form
Version 1.2.6
Comparing to
See all releases

Code changes from version 1.2.5 to 1.2.6

form_fields/mw_form_field_akismet_error.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Akismet Error
4
  * URI: http://2inc.org
5
  * Description: Akismetのエラーを出力。
6
- * Version: 1.1.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : June 21, 2013
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_akismet_error extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Akismet Error',
43
  $this->shortcode_name
44
  );
45
  }
3
  * Name: MW Form Field Akismet Error
4
  * URI: http://2inc.org
5
  * Description: Akismetのエラーを出力。
6
+ * Version: 1.1.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : June 21, 2013
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Akismet Error', MWF_Config::DOMAIN ),
43
  $this->shortcode_name
44
  );
45
  }
form_fields/mw_form_field_back_button.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Back Button
4
  * URI: http://2inc.org
5
  * Description: 戻るボタンを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_back_button extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Back',
43
  $this->shortcode_name
44
  );
45
  }
3
  * Name: MW Form Field Back Button
4
  * URI: http://2inc.org
5
  * Description: 戻るボタンを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Back', MWF_Config::DOMAIN ),
43
  $this->shortcode_name
44
  );
45
  }
form_fields/mw_form_field_button.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Button
4
  * URI: http://2inc.org
5
  * Description: ボタンを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_button extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Button',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Button
4
  * URI: http://2inc.org
5
  * Description: ボタンを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Button', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_checkbox.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Checkbox
4
  * URI: http://2inc.org
5
  * Description: チェックボックスを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_checkbox extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Checkbox',
43
  $this->shortcode_name . ' name="" children=""'
44
  );
45
  }
3
  * Name: MW Form Field Checkbox
4
  * URI: http://2inc.org
5
  * Description: チェックボックスを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Checkbox', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name="" children=""'
44
  );
45
  }
form_fields/mw_form_field_confirm_button.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Confirm Button
4
  * URI: http://2inc.org
5
  * Description: 確認ボタンを出力。
6
- * Version: 1.2.2
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_confirm_button extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Confirm Button',
43
  $this->shortcode_name
44
  );
45
  }
3
  * Name: MW Form Field Confirm Button
4
  * URI: http://2inc.org
5
  * Description: 確認ボタンを出力。
6
+ * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Confirm Button', MWF_Config::DOMAIN ),
43
  $this->shortcode_name
44
  );
45
  }
form_fields/mw_form_field_datepicker.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Datepicker
4
  * URI: http://2inc.org
5
  * Description: datepickerを出力。
6
- * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_datepicker extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Datepicker',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Datepicker
4
  * URI: http://2inc.org
5
  * Description: datepickerを出力。
6
+ * Version: 1.2.5
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Datepicker', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_error.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Error
4
  * URI: http://2inc.org
5
  * Description: エラーを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_error extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Error Message',
43
  $this->shortcode_name . ' keys=""'
44
  );
45
  }
3
  * Name: MW Form Field Error
4
  * URI: http://2inc.org
5
  * Description: エラーを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Error Message', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' keys=""'
44
  );
45
  }
form_fields/mw_form_field_file.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field File
4
  * URI: http://2inc.org
5
  * Description: 画像アップロードフィールドを出力。
6
- * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : May 17, 2013
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_file extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'File',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field File
4
  * URI: http://2inc.org
5
  * Description: 画像アップロードフィールドを出力。
6
+ * Version: 1.2.5
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : May 17, 2013
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'File', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_hidden.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Hidden
4
  * URI: http://2inc.org
5
  * Description: hiddenフィールドを出力。
6
- * Version: 1.3.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_hidden extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Hidden',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Hidden
4
  * URI: http://2inc.org
5
  * Description: hiddenフィールドを出力。
6
+ * Version: 1.3.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Hidden', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_image.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Image
4
  * URI: http://2inc.org
5
  * Description: 画像アップロードフィールドを出力。
6
- * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : May 17, 2013
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_image extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Image',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Image
4
  * URI: http://2inc.org
5
  * Description: 画像アップロードフィールドを出力。
6
+ * Version: 1.2.5
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : May 17, 2013
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Image', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_password.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Password
4
  * URI: http://2inc.org
5
  * Description: パスワードフィールドを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_password extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Password',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Password
4
  * URI: http://2inc.org
5
  * Description: パスワードフィールドを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Password', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_radio.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Radio
4
  * URI: http://2inc.org
5
  * Description: ラジオボタンを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_radio extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Radio',
43
  $this->shortcode_name . ' name="" children=""'
44
  );
45
  }
3
  * Name: MW Form Field Radio
4
  * URI: http://2inc.org
5
  * Description: ラジオボタンを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Radio', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name="" children=""'
44
  );
45
  }
form_fields/mw_form_field_select.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Select
4
  * URI: http://2inc.org
5
  * Description: セレクトボックスを出力。
6
- * Version: 1.2,3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_select extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Select',
43
  $this->shortcode_name . ' name="" children=""'
44
  );
45
  }
3
  * Name: MW Form Field Select
4
  * URI: http://2inc.org
5
  * Description: セレクトボックスを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Select', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name="" children=""'
44
  );
45
  }
form_fields/mw_form_field_submit.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Submit Button
4
  * URI: http://2inc.org
5
  * Description: 送信ボタンを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_submit extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Submit Button',
43
  $this->shortcode_name .' name="submit"'
44
  );
45
  }
3
  * Name: MW Form Field Submit Button
4
  * URI: http://2inc.org
5
  * Description: 送信ボタンを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Submit Button', MWF_Config::DOMAIN ),
43
  $this->shortcode_name .' name="submit"'
44
  );
45
  }
form_fields/mw_form_field_submit_button.php CHANGED
@@ -4,11 +4,11 @@
4
  * URI: http://2inc.org
5
  * Description: サブミットボタンを出力。
6
  * Description: 確認ボタンと送信ボタンを自動出力。
7
- * Version: 1.2.3
8
  * Author: Takashi Kitajima
9
  * Author URI: http://2inc.org
10
  * Created : December 14, 2012
11
- * Modified: December 22, 2013
12
  * License: GPL2
13
  *
14
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -40,7 +40,7 @@ class mw_form_field_submit_button extends mw_form_field {
40
  parent::__construct();
41
  $this->set_qtags(
42
  $this->shortcode_name,
43
- 'Confirm & Submit',
44
  $this->shortcode_name
45
  );
46
  }
4
  * URI: http://2inc.org
5
  * Description: サブミットボタンを出力。
6
  * Description: 確認ボタンと送信ボタンを自動出力。
7
+ * Version: 1.2.4
8
  * Author: Takashi Kitajima
9
  * Author URI: http://2inc.org
10
  * Created : December 14, 2012
11
+ * Modified: December 29, 2013
12
  * License: GPL2
13
  *
14
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
40
  parent::__construct();
41
  $this->set_qtags(
42
  $this->shortcode_name,
43
+ __( 'Confirm & Submit', MWF_Config::DOMAIN ),
44
  $this->shortcode_name
45
  );
46
  }
form_fields/mw_form_field_tel.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Tel
4
  * URI: http://2inc.org
5
  * Description: 電話番号フィールドを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_tel extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Tel',
43
  $this->shortcode_name .' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Tel
4
  * URI: http://2inc.org
5
  * Description: 電話番号フィールドを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Tel', MWF_Config::DOMAIN ),
43
  $this->shortcode_name .' name=""'
44
  );
45
  }
form_fields/mw_form_field_text.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Text
4
  * URI: http://2inc.org
5
  * Description: テキストフィールドを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_text extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Text',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Text
4
  * URI: http://2inc.org
5
  * Description: テキストフィールドを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Text', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_textarea.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field TextArea
4
  * URI: http://2inc.org
5
  * Description: テキストエリアを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_textarea extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Textarea',
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
3
  * Name: MW Form Field TextArea
4
  * URI: http://2inc.org
5
  * Description: テキストエリアを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Textarea', MWF_Config::DOMAIN ),
43
  $this->shortcode_name . ' name=""'
44
  );
45
  }
form_fields/mw_form_field_zip.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field Zip
4
  * URI: http://2inc.org
5
  * Description: 郵便番号フィールドを出力。
6
- * Version: 1.2.3
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -39,7 +39,7 @@ class mw_form_field_zip extends mw_form_field {
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
- 'Zip Code',
43
  $this->shortcode_name .' name=""'
44
  );
45
  }
3
  * Name: MW Form Field Zip
4
  * URI: http://2inc.org
5
  * Description: 郵便番号フィールドを出力。
6
+ * Version: 1.2.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
39
  parent::__construct();
40
  $this->set_qtags(
41
  $this->shortcode_name,
42
+ __( 'Zip Code', MWF_Config::DOMAIN ),
43
  $this->shortcode_name .' name=""'
44
  );
45
  }
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 1.2.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
7
- "POT-Creation-Date: 2013-12-22 05:38:38+00:00\n"
8
- "PO-Revision-Date: 2013-12-22 14:40+0900\n"
9
  "Last-Translator: Takashi Kitajima <inc@2inc.org>\n"
10
  "Language-Team: Takashi Kitajima <inc@2inc.org>\n"
11
  "Language: ja\n"
@@ -15,33 +15,106 @@ msgstr ""
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-Basepath: .\n"
18
- "X-Generator: Poedit 1.6.2\n"
19
  "X-Poedit-KeywordsList: __;_e;_x\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
 
 
 
 
 
22
  #: form_fields/mw_form_field_back_button.php:54
23
  msgid "Back"
24
  msgstr "戻る"
25
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #: form_fields/mw_form_field_confirm_button.php:54
27
  #: form_fields/mw_form_field_submit_button.php:56
28
  msgid "Confirm"
29
  msgstr "確認画面へ"
30
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  #: form_fields/mw_form_field_file.php:75 form_fields/mw_form_field_file.php:96
32
  msgid "Uploaded."
33
  msgstr "アップロードしました。"
34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  #: form_fields/mw_form_field_submit.php:55
36
  #: form_fields/mw_form_field_submit_button.php:57
37
  msgid "Send"
38
  msgstr "送信する"
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  #: js/editor_plugin.js.php:20
41
  msgid "Shortcodes"
42
  msgstr "ショートコード"
43
 
44
- #: mw-wp-form.php:424
45
  msgid "Validation Object is not a MW Validation Class."
46
  msgstr ""
47
 
@@ -121,83 +194,87 @@ msgstr "ファイルサイズが大きすぎます。"
121
  msgid "The contents which you input were judged with spam."
122
  msgstr "あなたの入力した内容はスパムと判定されました。"
123
 
124
- #: system/mw_wp_form_admin_page.php:85
125
  msgid "Your contribution is needed for making this plugin better."
126
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
127
 
128
- #: system/mw_wp_form_admin_page.php:85
129
  msgid "Donate"
130
  msgstr "寄付する"
131
 
132
- #: system/mw_wp_form_admin_page.php:127
133
  msgid "Add New Form"
134
  msgstr "フォームを追加"
135
 
136
- #: system/mw_wp_form_admin_page.php:128
137
  msgid "Edit Form"
138
  msgstr "フォームを編集"
139
 
140
- #: system/mw_wp_form_admin_page.php:129
141
  msgid "New Form"
142
  msgstr "新しいフォーム"
143
 
144
- #: system/mw_wp_form_admin_page.php:130
145
  msgid "View Form"
146
  msgstr "フォームを表示"
147
 
148
- #: system/mw_wp_form_admin_page.php:131
149
  msgid "Search Forms"
150
  msgstr "フォームを検索"
151
 
152
- #: system/mw_wp_form_admin_page.php:132
153
  msgid "No Forms found"
154
  msgstr "フォームがありません"
155
 
156
- #: system/mw_wp_form_admin_page.php:133
157
  msgid "No Forms found in Trash"
158
  msgstr "ゴミ箱にフォームはありません"
159
 
160
- #: system/mw_wp_form_admin_page.php:153
161
  msgid "Complete Message"
162
  msgstr "完了画面メッセージ"
163
 
164
- #: system/mw_wp_form_admin_page.php:160
165
  msgid "URL Options"
166
  msgstr "URL設定"
167
 
168
- #: system/mw_wp_form_admin_page.php:167
169
  msgid "Validation Rule"
170
  msgstr "バリデーションルール"
171
 
172
- #: system/mw_wp_form_admin_page.php:174
173
  msgid "Form Key"
174
  msgstr "フォーム識別子"
175
 
176
- #: system/mw_wp_form_admin_page.php:181
177
  msgid "Automatic Reply Email Options"
178
  msgstr "自動返信メール設定"
179
 
180
- #: system/mw_wp_form_admin_page.php:188
181
  msgid "Admin Email Options"
182
  msgstr "管理者宛メール設定"
183
 
184
- #: system/mw_wp_form_admin_page.php:195
185
  msgid "settings"
186
  msgstr "設定"
187
 
188
- #: system/mw_wp_form_admin_page.php:314
 
 
 
 
189
  msgid "Copy and Paste this shortcode."
190
  msgstr "このショートコードをコピー&ペーストしてください。"
191
 
192
- #: system/mw_wp_form_admin_page.php:315
193
  msgid "The key to use with hook is "
194
  msgstr "各フックで使用する修飾子は"
195
 
196
- #: system/mw_wp_form_admin_page.php:329
197
  msgid "Activate Query string of post"
198
  msgstr "URL引数を有効にする"
199
 
200
- #: system/mw_wp_form_admin_page.php:330
201
  msgid ""
202
  "If this field is active, MW WP Form get query string. And get post data from "
203
  "query string \"post_id\". You can use $post's property in editor."
@@ -206,57 +283,57 @@ msgstr ""
206
  "とに投稿を取得します。その投稿($post) のプロパティを使用できるようになりま"
207
  "す。"
208
 
209
- #: system/mw_wp_form_admin_page.php:331
210
  msgid "Example: {ID}, {post_title}, {post_meta} etc..."
211
  msgstr "例:{ID}、{post_title}、{post_meta}など…"
212
 
213
- #: system/mw_wp_form_admin_page.php:334
214
  msgid "Saving contact data in database"
215
  msgstr "問い合わせデータをデータベースに保存"
216
 
217
- #: system/mw_wp_form_admin_page.php:338
218
  msgid "Akismet Setting"
219
  msgstr "Akismet 設定"
220
 
221
- #: system/mw_wp_form_admin_page.php:353
222
  msgid "Input the key to use Akismet."
223
  msgstr "Akismetを使用する項目のキーを入力してください。"
224
 
225
- #: system/mw_wp_form_admin_page.php:378 system/mw_wp_form_admin_page.php:420
226
  msgid "Subject"
227
  msgstr "件名"
228
 
229
- #: system/mw_wp_form_admin_page.php:382 system/mw_wp_form_admin_page.php:424
230
  msgid "Sender"
231
  msgstr "送信者"
232
 
233
- #: system/mw_wp_form_admin_page.php:384 system/mw_wp_form_admin_page.php:389
234
- #: system/mw_wp_form_admin_page.php:417 system/mw_wp_form_admin_page.php:426
235
- #: system/mw_wp_form_admin_page.php:431
236
  msgid "If empty:"
237
  msgstr "未入力の場合:"
238
 
239
- #: system/mw_wp_form_admin_page.php:387 system/mw_wp_form_admin_page.php:429
240
  msgid "From ( E-mail address )"
241
  msgstr "送信元(E-mailアドレス)"
242
 
243
- #: system/mw_wp_form_admin_page.php:392 system/mw_wp_form_admin_page.php:434
244
  msgid "Ccontent"
245
  msgstr "本文"
246
 
247
- #: system/mw_wp_form_admin_page.php:394 system/mw_wp_form_admin_page.php:436
248
  msgid "{key} is converted form data."
249
  msgstr "{キー}でそのフォーム項目に変換されます。"
250
 
251
- #: system/mw_wp_form_admin_page.php:397
252
  msgid "Automatic reply email"
253
  msgstr "自動返信メール"
254
 
255
- #: system/mw_wp_form_admin_page.php:399
256
  msgid "Input the key to use as transmission to automatic reply email."
257
  msgstr "自動返信メールに使用する項目のキーを入力してください。"
258
 
259
- #: system/mw_wp_form_admin_page.php:412
260
  msgid ""
261
  "If Admin Email Options is a blank, Automatic Replay Email Options is used as "
262
  "Admin Email Options."
@@ -264,110 +341,106 @@ msgstr ""
264
  "管理者宛メール設定が空のときは自動返信メール設定が管理者宛メール設定が使用さ"
265
  "れます。"
266
 
267
- #: system/mw_wp_form_admin_page.php:415
268
  msgid "To ( E-mail address )"
269
  msgstr "送信先(E-mailアドレス)"
270
 
271
- #: system/mw_wp_form_admin_page.php:451
272
  msgid "Input Page URL"
273
  msgstr "入力画面URL"
274
 
275
- #: system/mw_wp_form_admin_page.php:457
276
  msgid "Confirmation Page URL"
277
  msgstr "確認画面URL"
278
 
279
- #: system/mw_wp_form_admin_page.php:463
280
  msgid "Complete Page URL"
281
  msgstr "完了画面URL"
282
 
283
- #: system/mw_wp_form_admin_page.php:469
284
  msgid "Validation Error Page URL"
285
  msgstr "エラー画面URL"
286
 
287
- #: system/mw_wp_form_admin_page.php:509
288
  msgid "Add Validation rule"
289
  msgstr "バリデーションルールを追加"
290
 
291
- #: system/mw_wp_form_admin_page.php:515
292
  msgid "The key which applies validation"
293
  msgstr "バリデーションを適用する項目"
294
 
295
- #: system/mw_wp_form_admin_page.php:519
296
  msgid "No empty"
297
  msgstr "必須項目"
298
 
299
- #: system/mw_wp_form_admin_page.php:520
300
  msgid "No empty( with checkbox )"
301
  msgstr "必須項目(チェックボックス)"
302
 
303
- #: system/mw_wp_form_admin_page.php:521
304
  msgid "Numeric"
305
  msgstr "半角数字"
306
 
307
- #: system/mw_wp_form_admin_page.php:522
308
  msgid "Alphabet"
309
  msgstr "半角英字"
310
 
311
- #: system/mw_wp_form_admin_page.php:523
312
  msgid "Alphabet and Numeric"
313
  msgstr "半角英数字"
314
 
315
- #: system/mw_wp_form_admin_page.php:524
316
  msgid "Japanese Katakana"
317
  msgstr "カタカナ"
318
 
319
- #: system/mw_wp_form_admin_page.php:525
320
  msgid "Japanese Hiragana"
321
  msgstr "ひらがな"
322
 
323
- #: system/mw_wp_form_admin_page.php:526
324
- msgid "Zip Code"
325
- msgstr "郵便番号"
326
-
327
- #: system/mw_wp_form_admin_page.php:527
328
- msgid "Tel"
329
- msgstr "電話番号"
330
-
331
- #: system/mw_wp_form_admin_page.php:528
332
  msgid "E-mail"
333
  msgstr "メールアドレス"
334
 
335
- #: system/mw_wp_form_admin_page.php:529
336
  msgid "URL"
337
  msgstr ""
338
 
339
- #: system/mw_wp_form_admin_page.php:530
340
  msgid "Date"
341
  msgstr "日付"
342
 
343
- #: system/mw_wp_form_admin_page.php:534
344
  msgid "The key at same value"
345
  msgstr "一致する項目"
346
 
347
- #: system/mw_wp_form_admin_page.php:538
348
  msgid "The range of the number of characters"
349
  msgstr "文字数の範囲"
350
 
351
- #: system/mw_wp_form_admin_page.php:546
352
  msgid "The number of the minimum characters"
353
  msgstr "最小文字数"
354
 
355
- #: system/mw_wp_form_admin_page.php:550
356
  msgid "Permitted Extension"
357
  msgstr "拡張子制限"
358
 
359
- #: system/mw_wp_form_admin_page.php:551
360
  msgid "Example:jpg or jpg,txt,…"
361
  msgstr "例:jpg もしくは jpg,txt…"
362
 
363
- #: system/mw_wp_form_admin_page.php:554
364
  msgid "Permitted file size"
365
  msgstr "サイズ制限"
366
 
367
- #: system/mw_wp_form_admin_page.php:555
368
  msgid "bytes"
369
  msgstr ""
370
 
 
 
 
 
371
  #: system/mw_wp_form_contact_data_page.php:92
372
  msgid "Edit "
373
  msgstr "編集"
@@ -429,54 +502,6 @@ msgstr ""
429
  msgid "http://2inc.org"
430
  msgstr ""
431
 
432
- #~ msgid "Akismet Error"
433
- #~ msgstr "Akismetエラー"
434
-
435
- #~ msgid "Button"
436
- #~ msgstr "ボタン"
437
-
438
- #~ msgid "Checkbox"
439
- #~ msgstr "チェックボックス"
440
-
441
- #~ msgid "Confirm Button"
442
- #~ msgstr "確認ボタン"
443
-
444
- #~ msgid "Datepicker"
445
- #~ msgstr "日付"
446
-
447
- #~ msgid "Error Message"
448
- #~ msgstr "エラーメッセージ"
449
-
450
- #~ msgid "File"
451
- #~ msgstr "ファイルフィールド"
452
-
453
- #~ msgid "Hidden"
454
- #~ msgstr "hiddenフィールド"
455
-
456
- #~ msgid "Image"
457
- #~ msgstr "画像フィールド"
458
-
459
- #~ msgid "Password"
460
- #~ msgstr "パスワードフィールド"
461
-
462
- #~ msgid "Radio"
463
- #~ msgstr "ラジオボタン"
464
-
465
- #~ msgid "Select"
466
- #~ msgstr "セレクトボックス"
467
-
468
- #~ msgid "Submit Button"
469
- #~ msgstr "送信ボタン"
470
-
471
- #~ msgid "Confirm &amp; Submit"
472
- #~ msgstr "確認・送信"
473
-
474
- #~ msgid "Text"
475
- #~ msgstr "テキストフィールド"
476
-
477
- #~ msgid "Textarea"
478
- #~ msgstr "テキストエリア"
479
-
480
  #~ msgid "If empty: Using admin E-mail address."
481
  #~ msgstr "未入力の場合:管理者のE-mailアドレスを使用します。"
482
 
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 1.2.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
7
+ "POT-Creation-Date: 2013-12-29 08:35:39+00:00\n"
8
+ "PO-Revision-Date: 2013-12-29 17:36+0900\n"
9
  "Last-Translator: Takashi Kitajima <inc@2inc.org>\n"
10
  "Language-Team: Takashi Kitajima <inc@2inc.org>\n"
11
  "Language: ja\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Generator: Poedit 1.6.3\n"
19
  "X-Poedit-KeywordsList: __;_e;_x\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
+ #: form_fields/mw_form_field_akismet_error.php:42
23
+ msgid "Akismet Error"
24
+ msgstr "Akismetエラー"
25
+
26
+ #: form_fields/mw_form_field_back_button.php:42
27
  #: form_fields/mw_form_field_back_button.php:54
28
  msgid "Back"
29
  msgstr "戻る"
30
 
31
+ #: form_fields/mw_form_field_button.php:42
32
+ msgid "Button"
33
+ msgstr "ボタン"
34
+
35
+ #: form_fields/mw_form_field_checkbox.php:42
36
+ msgid "Checkbox"
37
+ msgstr "チェックボックス"
38
+
39
+ #: form_fields/mw_form_field_confirm_button.php:42
40
+ msgid "Confirm Button"
41
+ msgstr "確認ボタン"
42
+
43
  #: form_fields/mw_form_field_confirm_button.php:54
44
  #: form_fields/mw_form_field_submit_button.php:56
45
  msgid "Confirm"
46
  msgstr "確認画面へ"
47
 
48
+ #: form_fields/mw_form_field_datepicker.php:42
49
+ msgid "Datepicker"
50
+ msgstr "日付"
51
+
52
+ #: form_fields/mw_form_field_error.php:42
53
+ msgid "Error Message"
54
+ msgstr "エラーメッセージ"
55
+
56
+ #: form_fields/mw_form_field_file.php:42
57
+ msgid "File"
58
+ msgstr "ファイルフィールド"
59
+
60
  #: form_fields/mw_form_field_file.php:75 form_fields/mw_form_field_file.php:96
61
  msgid "Uploaded."
62
  msgstr "アップロードしました。"
63
 
64
+ #: form_fields/mw_form_field_hidden.php:42
65
+ msgid "Hidden"
66
+ msgstr "hiddenフィールド"
67
+
68
+ #: form_fields/mw_form_field_image.php:42
69
+ msgid "Image"
70
+ msgstr "画像フィールド"
71
+
72
+ #: form_fields/mw_form_field_password.php:42
73
+ msgid "Password"
74
+ msgstr "パスワードフィールド"
75
+
76
+ #: form_fields/mw_form_field_radio.php:42
77
+ msgid "Radio"
78
+ msgstr "ラジオボタン"
79
+
80
+ #: form_fields/mw_form_field_select.php:42
81
+ msgid "Select"
82
+ msgstr "セレクトボックス"
83
+
84
+ #: form_fields/mw_form_field_submit.php:42
85
+ msgid "Submit Button"
86
+ msgstr "送信ボタン"
87
+
88
  #: form_fields/mw_form_field_submit.php:55
89
  #: form_fields/mw_form_field_submit_button.php:57
90
  msgid "Send"
91
  msgstr "送信する"
92
 
93
+ #: form_fields/mw_form_field_submit_button.php:43
94
+ msgid "Confirm &amp; Submit"
95
+ msgstr "確認・送信"
96
+
97
+ #: form_fields/mw_form_field_tel.php:42 system/mw_wp_form_admin_page.php:538
98
+ msgid "Tel"
99
+ msgstr "電話番号"
100
+
101
+ #: form_fields/mw_form_field_text.php:42
102
+ msgid "Text"
103
+ msgstr "テキストフィールド"
104
+
105
+ #: form_fields/mw_form_field_textarea.php:42
106
+ msgid "Textarea"
107
+ msgstr "テキストエリア"
108
+
109
+ #: form_fields/mw_form_field_zip.php:42 system/mw_wp_form_admin_page.php:537
110
+ msgid "Zip Code"
111
+ msgstr "郵便番号"
112
+
113
  #: js/editor_plugin.js.php:20
114
  msgid "Shortcodes"
115
  msgstr "ショートコード"
116
 
117
+ #: mw-wp-form.php:433
118
  msgid "Validation Object is not a MW Validation Class."
119
  msgstr ""
120
 
194
  msgid "The contents which you input were judged with spam."
195
  msgstr "あなたの入力した内容はスパムと判定されました。"
196
 
197
+ #: system/mw_wp_form_admin_page.php:86
198
  msgid "Your contribution is needed for making this plugin better."
199
  msgstr "あなたの貢献があればこのプラグインをもっと良くすることができます。"
200
 
201
+ #: system/mw_wp_form_admin_page.php:86
202
  msgid "Donate"
203
  msgstr "寄付する"
204
 
205
+ #: system/mw_wp_form_admin_page.php:128
206
  msgid "Add New Form"
207
  msgstr "フォームを追加"
208
 
209
+ #: system/mw_wp_form_admin_page.php:129
210
  msgid "Edit Form"
211
  msgstr "フォームを編集"
212
 
213
+ #: system/mw_wp_form_admin_page.php:130
214
  msgid "New Form"
215
  msgstr "新しいフォーム"
216
 
217
+ #: system/mw_wp_form_admin_page.php:131
218
  msgid "View Form"
219
  msgstr "フォームを表示"
220
 
221
+ #: system/mw_wp_form_admin_page.php:132
222
  msgid "Search Forms"
223
  msgstr "フォームを検索"
224
 
225
+ #: system/mw_wp_form_admin_page.php:133
226
  msgid "No Forms found"
227
  msgstr "フォームがありません"
228
 
229
+ #: system/mw_wp_form_admin_page.php:134
230
  msgid "No Forms found in Trash"
231
  msgstr "ゴミ箱にフォームはありません"
232
 
233
+ #: system/mw_wp_form_admin_page.php:154
234
  msgid "Complete Message"
235
  msgstr "完了画面メッセージ"
236
 
237
+ #: system/mw_wp_form_admin_page.php:161
238
  msgid "URL Options"
239
  msgstr "URL設定"
240
 
241
+ #: system/mw_wp_form_admin_page.php:168
242
  msgid "Validation Rule"
243
  msgstr "バリデーションルール"
244
 
245
+ #: system/mw_wp_form_admin_page.php:175
246
  msgid "Form Key"
247
  msgstr "フォーム識別子"
248
 
249
+ #: system/mw_wp_form_admin_page.php:182
250
  msgid "Automatic Reply Email Options"
251
  msgstr "自動返信メール設定"
252
 
253
+ #: system/mw_wp_form_admin_page.php:189
254
  msgid "Admin Email Options"
255
  msgstr "管理者宛メール設定"
256
 
257
+ #: system/mw_wp_form_admin_page.php:196
258
  msgid "settings"
259
  msgstr "設定"
260
 
261
+ #: system/mw_wp_form_admin_page.php:205
262
+ msgid "Style setting"
263
+ msgstr "スタイル設定"
264
+
265
+ #: system/mw_wp_form_admin_page.php:325
266
  msgid "Copy and Paste this shortcode."
267
  msgstr "このショートコードをコピー&ペーストしてください。"
268
 
269
+ #: system/mw_wp_form_admin_page.php:326
270
  msgid "The key to use with hook is "
271
  msgstr "各フックで使用する修飾子は"
272
 
273
+ #: system/mw_wp_form_admin_page.php:340
274
  msgid "Activate Query string of post"
275
  msgstr "URL引数を有効にする"
276
 
277
+ #: system/mw_wp_form_admin_page.php:341
278
  msgid ""
279
  "If this field is active, MW WP Form get query string. And get post data from "
280
  "query string \"post_id\". You can use $post's property in editor."
283
  "とに投稿を取得します。その投稿($post) のプロパティを使用できるようになりま"
284
  "す。"
285
 
286
+ #: system/mw_wp_form_admin_page.php:342
287
  msgid "Example: {ID}, {post_title}, {post_meta} etc..."
288
  msgstr "例:{ID}、{post_title}、{post_meta}など…"
289
 
290
+ #: system/mw_wp_form_admin_page.php:345
291
  msgid "Saving contact data in database"
292
  msgstr "問い合わせデータをデータベースに保存"
293
 
294
+ #: system/mw_wp_form_admin_page.php:349
295
  msgid "Akismet Setting"
296
  msgstr "Akismet 設定"
297
 
298
+ #: system/mw_wp_form_admin_page.php:364
299
  msgid "Input the key to use Akismet."
300
  msgstr "Akismetを使用する項目のキーを入力してください。"
301
 
302
+ #: system/mw_wp_form_admin_page.php:389 system/mw_wp_form_admin_page.php:431
303
  msgid "Subject"
304
  msgstr "件名"
305
 
306
+ #: system/mw_wp_form_admin_page.php:393 system/mw_wp_form_admin_page.php:435
307
  msgid "Sender"
308
  msgstr "送信者"
309
 
310
+ #: system/mw_wp_form_admin_page.php:395 system/mw_wp_form_admin_page.php:400
311
+ #: system/mw_wp_form_admin_page.php:428 system/mw_wp_form_admin_page.php:437
312
+ #: system/mw_wp_form_admin_page.php:442
313
  msgid "If empty:"
314
  msgstr "未入力の場合:"
315
 
316
+ #: system/mw_wp_form_admin_page.php:398 system/mw_wp_form_admin_page.php:440
317
  msgid "From ( E-mail address )"
318
  msgstr "送信元(E-mailアドレス)"
319
 
320
+ #: system/mw_wp_form_admin_page.php:403 system/mw_wp_form_admin_page.php:445
321
  msgid "Ccontent"
322
  msgstr "本文"
323
 
324
+ #: system/mw_wp_form_admin_page.php:405 system/mw_wp_form_admin_page.php:447
325
  msgid "{key} is converted form data."
326
  msgstr "{キー}でそのフォーム項目に変換されます。"
327
 
328
+ #: system/mw_wp_form_admin_page.php:408
329
  msgid "Automatic reply email"
330
  msgstr "自動返信メール"
331
 
332
+ #: system/mw_wp_form_admin_page.php:410
333
  msgid "Input the key to use as transmission to automatic reply email."
334
  msgstr "自動返信メールに使用する項目のキーを入力してください。"
335
 
336
+ #: system/mw_wp_form_admin_page.php:423
337
  msgid ""
338
  "If Admin Email Options is a blank, Automatic Replay Email Options is used as "
339
  "Admin Email Options."
341
  "管理者宛メール設定が空のときは自動返信メール設定が管理者宛メール設定が使用さ"
342
  "れます。"
343
 
344
+ #: system/mw_wp_form_admin_page.php:426
345
  msgid "To ( E-mail address )"
346
  msgstr "送信先(E-mailアドレス)"
347
 
348
+ #: system/mw_wp_form_admin_page.php:462
349
  msgid "Input Page URL"
350
  msgstr "入力画面URL"
351
 
352
+ #: system/mw_wp_form_admin_page.php:468
353
  msgid "Confirmation Page URL"
354
  msgstr "確認画面URL"
355
 
356
+ #: system/mw_wp_form_admin_page.php:474
357
  msgid "Complete Page URL"
358
  msgstr "完了画面URL"
359
 
360
+ #: system/mw_wp_form_admin_page.php:480
361
  msgid "Validation Error Page URL"
362
  msgstr "エラー画面URL"
363
 
364
+ #: system/mw_wp_form_admin_page.php:520
365
  msgid "Add Validation rule"
366
  msgstr "バリデーションルールを追加"
367
 
368
+ #: system/mw_wp_form_admin_page.php:526
369
  msgid "The key which applies validation"
370
  msgstr "バリデーションを適用する項目"
371
 
372
+ #: system/mw_wp_form_admin_page.php:530
373
  msgid "No empty"
374
  msgstr "必須項目"
375
 
376
+ #: system/mw_wp_form_admin_page.php:531
377
  msgid "No empty( with checkbox )"
378
  msgstr "必須項目(チェックボックス)"
379
 
380
+ #: system/mw_wp_form_admin_page.php:532
381
  msgid "Numeric"
382
  msgstr "半角数字"
383
 
384
+ #: system/mw_wp_form_admin_page.php:533
385
  msgid "Alphabet"
386
  msgstr "半角英字"
387
 
388
+ #: system/mw_wp_form_admin_page.php:534
389
  msgid "Alphabet and Numeric"
390
  msgstr "半角英数字"
391
 
392
+ #: system/mw_wp_form_admin_page.php:535
393
  msgid "Japanese Katakana"
394
  msgstr "カタカナ"
395
 
396
+ #: system/mw_wp_form_admin_page.php:536
397
  msgid "Japanese Hiragana"
398
  msgstr "ひらがな"
399
 
400
+ #: system/mw_wp_form_admin_page.php:539
 
 
 
 
 
 
 
 
401
  msgid "E-mail"
402
  msgstr "メールアドレス"
403
 
404
+ #: system/mw_wp_form_admin_page.php:540
405
  msgid "URL"
406
  msgstr ""
407
 
408
+ #: system/mw_wp_form_admin_page.php:541
409
  msgid "Date"
410
  msgstr "日付"
411
 
412
+ #: system/mw_wp_form_admin_page.php:545
413
  msgid "The key at same value"
414
  msgstr "一致する項目"
415
 
416
+ #: system/mw_wp_form_admin_page.php:549
417
  msgid "The range of the number of characters"
418
  msgstr "文字数の範囲"
419
 
420
+ #: system/mw_wp_form_admin_page.php:557
421
  msgid "The number of the minimum characters"
422
  msgstr "最小文字数"
423
 
424
+ #: system/mw_wp_form_admin_page.php:561
425
  msgid "Permitted Extension"
426
  msgstr "拡張子制限"
427
 
428
+ #: system/mw_wp_form_admin_page.php:562
429
  msgid "Example:jpg or jpg,txt,…"
430
  msgstr "例:jpg もしくは jpg,txt…"
431
 
432
+ #: system/mw_wp_form_admin_page.php:565
433
  msgid "Permitted file size"
434
  msgstr "サイズ制限"
435
 
436
+ #: system/mw_wp_form_admin_page.php:566
437
  msgid "bytes"
438
  msgstr ""
439
 
440
+ #: system/mw_wp_form_admin_page.php:582
441
+ msgid "Select Style"
442
+ msgstr "スタイルを選択"
443
+
444
  #: system/mw_wp_form_contact_data_page.php:92
445
  msgid "Edit "
446
  msgstr "編集"
502
  msgid "http://2inc.org"
503
  msgstr ""
504
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  #~ msgid "If empty: Using admin E-mail address."
506
  #~ msgstr "未入力の場合:管理者のE-mailアドレスを使用します。"
507
 
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 1.2.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
7
- "POT-Creation-Date: 2013-12-22 05:38:38+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,29 +18,102 @@ msgstr ""
18
  "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
 
 
 
 
 
21
  #: form_fields/mw_form_field_back_button.php:54
22
  msgid "Back"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  #: form_fields/mw_form_field_confirm_button.php:54
26
  #: form_fields/mw_form_field_submit_button.php:56
27
  msgid "Confirm"
28
  msgstr ""
29
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  #: form_fields/mw_form_field_file.php:75 form_fields/mw_form_field_file.php:96
31
  msgid "Uploaded."
32
  msgstr ""
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  #: form_fields/mw_form_field_submit.php:55
35
  #: form_fields/mw_form_field_submit_button.php:57
36
  msgid "Send"
37
  msgstr ""
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  #: js/editor_plugin.js.php:20
40
  msgid "Shortcodes"
41
  msgstr ""
42
 
43
- #: mw-wp-form.php:424
44
  msgid "Validation Object is not a MW Validation Class."
45
  msgstr ""
46
 
@@ -120,248 +193,248 @@ msgstr ""
120
  msgid "The contents which you input were judged with spam."
121
  msgstr ""
122
 
123
- #: system/mw_wp_form_admin_page.php:85
124
  msgid "Your contribution is needed for making this plugin better."
125
  msgstr ""
126
 
127
- #: system/mw_wp_form_admin_page.php:85
128
  msgid "Donate"
129
  msgstr ""
130
 
131
- #: system/mw_wp_form_admin_page.php:127
132
  msgid "Add New Form"
133
  msgstr ""
134
 
135
- #: system/mw_wp_form_admin_page.php:128
136
  msgid "Edit Form"
137
  msgstr ""
138
 
139
- #: system/mw_wp_form_admin_page.php:129
140
  msgid "New Form"
141
  msgstr ""
142
 
143
- #: system/mw_wp_form_admin_page.php:130
144
  msgid "View Form"
145
  msgstr ""
146
 
147
- #: system/mw_wp_form_admin_page.php:131
148
  msgid "Search Forms"
149
  msgstr ""
150
 
151
- #: system/mw_wp_form_admin_page.php:132
152
  msgid "No Forms found"
153
  msgstr ""
154
 
155
- #: system/mw_wp_form_admin_page.php:133
156
  msgid "No Forms found in Trash"
157
  msgstr ""
158
 
159
- #: system/mw_wp_form_admin_page.php:153
160
  msgid "Complete Message"
161
  msgstr ""
162
 
163
- #: system/mw_wp_form_admin_page.php:160
164
  msgid "URL Options"
165
  msgstr ""
166
 
167
- #: system/mw_wp_form_admin_page.php:167
168
  msgid "Validation Rule"
169
  msgstr ""
170
 
171
- #: system/mw_wp_form_admin_page.php:174
172
  msgid "Form Key"
173
  msgstr ""
174
 
175
- #: system/mw_wp_form_admin_page.php:181
176
  msgid "Automatic Reply Email Options"
177
  msgstr ""
178
 
179
- #: system/mw_wp_form_admin_page.php:188
180
  msgid "Admin Email Options"
181
  msgstr ""
182
 
183
- #: system/mw_wp_form_admin_page.php:195
184
  msgid "settings"
185
  msgstr ""
186
 
187
- #: system/mw_wp_form_admin_page.php:314
 
 
 
 
188
  msgid "Copy and Paste this shortcode."
189
  msgstr ""
190
 
191
- #: system/mw_wp_form_admin_page.php:315
192
  msgid "The key to use with hook is "
193
  msgstr ""
194
 
195
- #: system/mw_wp_form_admin_page.php:329
196
  msgid "Activate Query string of post"
197
  msgstr ""
198
 
199
- #: system/mw_wp_form_admin_page.php:330
200
  msgid ""
201
  "If this field is active, MW WP Form get query string. And get post data from "
202
  "query string \"post_id\". You can use $post's property in editor."
203
  msgstr ""
204
 
205
- #: system/mw_wp_form_admin_page.php:331
206
  msgid "Example: {ID}, {post_title}, {post_meta} etc..."
207
  msgstr ""
208
 
209
- #: system/mw_wp_form_admin_page.php:334
210
  msgid "Saving contact data in database"
211
  msgstr ""
212
 
213
- #: system/mw_wp_form_admin_page.php:338
214
  msgid "Akismet Setting"
215
  msgstr ""
216
 
217
- #: system/mw_wp_form_admin_page.php:353
218
  msgid "Input the key to use Akismet."
219
  msgstr ""
220
 
221
- #: system/mw_wp_form_admin_page.php:378 system/mw_wp_form_admin_page.php:420
222
  msgid "Subject"
223
  msgstr ""
224
 
225
- #: system/mw_wp_form_admin_page.php:382 system/mw_wp_form_admin_page.php:424
226
  msgid "Sender"
227
  msgstr ""
228
 
229
- #: system/mw_wp_form_admin_page.php:384 system/mw_wp_form_admin_page.php:389
230
- #: system/mw_wp_form_admin_page.php:417 system/mw_wp_form_admin_page.php:426
231
- #: system/mw_wp_form_admin_page.php:431
232
  msgid "If empty:"
233
  msgstr ""
234
 
235
- #: system/mw_wp_form_admin_page.php:387 system/mw_wp_form_admin_page.php:429
236
  msgid "From ( E-mail address )"
237
  msgstr ""
238
 
239
- #: system/mw_wp_form_admin_page.php:392 system/mw_wp_form_admin_page.php:434
240
  msgid "Ccontent"
241
  msgstr ""
242
 
243
- #: system/mw_wp_form_admin_page.php:394 system/mw_wp_form_admin_page.php:436
244
  msgid "{key} is converted form data."
245
  msgstr ""
246
 
247
- #: system/mw_wp_form_admin_page.php:397
248
  msgid "Automatic reply email"
249
  msgstr ""
250
 
251
- #: system/mw_wp_form_admin_page.php:399
252
  msgid "Input the key to use as transmission to automatic reply email."
253
  msgstr ""
254
 
255
- #: system/mw_wp_form_admin_page.php:412
256
  msgid ""
257
  "If Admin Email Options is a blank, Automatic Replay Email Options is used as "
258
  "Admin Email Options."
259
  msgstr ""
260
 
261
- #: system/mw_wp_form_admin_page.php:415
262
  msgid "To ( E-mail address )"
263
  msgstr ""
264
 
265
- #: system/mw_wp_form_admin_page.php:451
266
  msgid "Input Page URL"
267
  msgstr ""
268
 
269
- #: system/mw_wp_form_admin_page.php:457
270
  msgid "Confirmation Page URL"
271
  msgstr ""
272
 
273
- #: system/mw_wp_form_admin_page.php:463
274
  msgid "Complete Page URL"
275
  msgstr ""
276
 
277
- #: system/mw_wp_form_admin_page.php:469
278
  msgid "Validation Error Page URL"
279
  msgstr ""
280
 
281
- #: system/mw_wp_form_admin_page.php:509
282
  msgid "Add Validation rule"
283
  msgstr ""
284
 
285
- #: system/mw_wp_form_admin_page.php:515
286
  msgid "The key which applies validation"
287
  msgstr ""
288
 
289
- #: system/mw_wp_form_admin_page.php:519
290
  msgid "No empty"
291
  msgstr ""
292
 
293
- #: system/mw_wp_form_admin_page.php:520
294
  msgid "No empty( with checkbox )"
295
  msgstr ""
296
 
297
- #: system/mw_wp_form_admin_page.php:521
298
  msgid "Numeric"
299
  msgstr ""
300
 
301
- #: system/mw_wp_form_admin_page.php:522
302
  msgid "Alphabet"
303
  msgstr ""
304
 
305
- #: system/mw_wp_form_admin_page.php:523
306
  msgid "Alphabet and Numeric"
307
  msgstr ""
308
 
309
- #: system/mw_wp_form_admin_page.php:524
310
  msgid "Japanese Katakana"
311
  msgstr ""
312
 
313
- #: system/mw_wp_form_admin_page.php:525
314
  msgid "Japanese Hiragana"
315
  msgstr ""
316
 
317
- #: system/mw_wp_form_admin_page.php:526
318
- msgid "Zip Code"
319
- msgstr ""
320
-
321
- #: system/mw_wp_form_admin_page.php:527
322
- msgid "Tel"
323
- msgstr ""
324
-
325
- #: system/mw_wp_form_admin_page.php:528
326
  msgid "E-mail"
327
  msgstr ""
328
 
329
- #: system/mw_wp_form_admin_page.php:529
330
  msgid "URL"
331
  msgstr ""
332
 
333
- #: system/mw_wp_form_admin_page.php:530
334
  msgid "Date"
335
  msgstr ""
336
 
337
- #: system/mw_wp_form_admin_page.php:534
338
  msgid "The key at same value"
339
  msgstr ""
340
 
341
- #: system/mw_wp_form_admin_page.php:538
342
  msgid "The range of the number of characters"
343
  msgstr ""
344
 
345
- #: system/mw_wp_form_admin_page.php:546
346
  msgid "The number of the minimum characters"
347
  msgstr ""
348
 
349
- #: system/mw_wp_form_admin_page.php:550
350
  msgid "Permitted Extension"
351
  msgstr ""
352
 
353
- #: system/mw_wp_form_admin_page.php:551
354
  msgid "Example:jpg or jpg,txt,…"
355
  msgstr ""
356
 
357
- #: system/mw_wp_form_admin_page.php:554
358
  msgid "Permitted file size"
359
  msgstr ""
360
 
361
- #: system/mw_wp_form_admin_page.php:555
362
  msgid "bytes"
363
  msgstr ""
364
 
 
 
 
 
365
  #: system/mw_wp_form_contact_data_page.php:92
366
  msgid "Edit "
367
  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 1.2.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/mw-wp-form\n"
7
+ "POT-Creation-Date: 2013-12-29 08:35:39+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
+ #: form_fields/mw_form_field_akismet_error.php:42
22
+ msgid "Akismet Error"
23
+ msgstr ""
24
+
25
+ #: form_fields/mw_form_field_back_button.php:42
26
  #: form_fields/mw_form_field_back_button.php:54
27
  msgid "Back"
28
  msgstr ""
29
 
30
+ #: form_fields/mw_form_field_button.php:42
31
+ msgid "Button"
32
+ msgstr ""
33
+
34
+ #: form_fields/mw_form_field_checkbox.php:42
35
+ msgid "Checkbox"
36
+ msgstr ""
37
+
38
+ #: form_fields/mw_form_field_confirm_button.php:42
39
+ msgid "Confirm Button"
40
+ msgstr ""
41
+
42
  #: form_fields/mw_form_field_confirm_button.php:54
43
  #: form_fields/mw_form_field_submit_button.php:56
44
  msgid "Confirm"
45
  msgstr ""
46
 
47
+ #: form_fields/mw_form_field_datepicker.php:42
48
+ msgid "Datepicker"
49
+ msgstr ""
50
+
51
+ #: form_fields/mw_form_field_error.php:42
52
+ msgid "Error Message"
53
+ msgstr ""
54
+
55
+ #: form_fields/mw_form_field_file.php:42
56
+ msgid "File"
57
+ msgstr ""
58
+
59
  #: form_fields/mw_form_field_file.php:75 form_fields/mw_form_field_file.php:96
60
  msgid "Uploaded."
61
  msgstr ""
62
 
63
+ #: form_fields/mw_form_field_hidden.php:42
64
+ msgid "Hidden"
65
+ msgstr ""
66
+
67
+ #: form_fields/mw_form_field_image.php:42
68
+ msgid "Image"
69
+ msgstr ""
70
+
71
+ #: form_fields/mw_form_field_password.php:42
72
+ msgid "Password"
73
+ msgstr ""
74
+
75
+ #: form_fields/mw_form_field_radio.php:42
76
+ msgid "Radio"
77
+ msgstr ""
78
+
79
+ #: form_fields/mw_form_field_select.php:42
80
+ msgid "Select"
81
+ msgstr ""
82
+
83
+ #: form_fields/mw_form_field_submit.php:42
84
+ msgid "Submit Button"
85
+ msgstr ""
86
+
87
  #: form_fields/mw_form_field_submit.php:55
88
  #: form_fields/mw_form_field_submit_button.php:57
89
  msgid "Send"
90
  msgstr ""
91
 
92
+ #: form_fields/mw_form_field_submit_button.php:43
93
+ msgid "Confirm &amp; Submit"
94
+ msgstr ""
95
+
96
+ #: form_fields/mw_form_field_tel.php:42 system/mw_wp_form_admin_page.php:538
97
+ msgid "Tel"
98
+ msgstr ""
99
+
100
+ #: form_fields/mw_form_field_text.php:42
101
+ msgid "Text"
102
+ msgstr ""
103
+
104
+ #: form_fields/mw_form_field_textarea.php:42
105
+ msgid "Textarea"
106
+ msgstr ""
107
+
108
+ #: form_fields/mw_form_field_zip.php:42 system/mw_wp_form_admin_page.php:537
109
+ msgid "Zip Code"
110
+ msgstr ""
111
+
112
  #: js/editor_plugin.js.php:20
113
  msgid "Shortcodes"
114
  msgstr ""
115
 
116
+ #: mw-wp-form.php:433
117
  msgid "Validation Object is not a MW Validation Class."
118
  msgstr ""
119
 
193
  msgid "The contents which you input were judged with spam."
194
  msgstr ""
195
 
196
+ #: system/mw_wp_form_admin_page.php:86
197
  msgid "Your contribution is needed for making this plugin better."
198
  msgstr ""
199
 
200
+ #: system/mw_wp_form_admin_page.php:86
201
  msgid "Donate"
202
  msgstr ""
203
 
204
+ #: system/mw_wp_form_admin_page.php:128
205
  msgid "Add New Form"
206
  msgstr ""
207
 
208
+ #: system/mw_wp_form_admin_page.php:129
209
  msgid "Edit Form"
210
  msgstr ""
211
 
212
+ #: system/mw_wp_form_admin_page.php:130
213
  msgid "New Form"
214
  msgstr ""
215
 
216
+ #: system/mw_wp_form_admin_page.php:131
217
  msgid "View Form"
218
  msgstr ""
219
 
220
+ #: system/mw_wp_form_admin_page.php:132
221
  msgid "Search Forms"
222
  msgstr ""
223
 
224
+ #: system/mw_wp_form_admin_page.php:133
225
  msgid "No Forms found"
226
  msgstr ""
227
 
228
+ #: system/mw_wp_form_admin_page.php:134
229
  msgid "No Forms found in Trash"
230
  msgstr ""
231
 
232
+ #: system/mw_wp_form_admin_page.php:154
233
  msgid "Complete Message"
234
  msgstr ""
235
 
236
+ #: system/mw_wp_form_admin_page.php:161
237
  msgid "URL Options"
238
  msgstr ""
239
 
240
+ #: system/mw_wp_form_admin_page.php:168
241
  msgid "Validation Rule"
242
  msgstr ""
243
 
244
+ #: system/mw_wp_form_admin_page.php:175
245
  msgid "Form Key"
246
  msgstr ""
247
 
248
+ #: system/mw_wp_form_admin_page.php:182
249
  msgid "Automatic Reply Email Options"
250
  msgstr ""
251
 
252
+ #: system/mw_wp_form_admin_page.php:189
253
  msgid "Admin Email Options"
254
  msgstr ""
255
 
256
+ #: system/mw_wp_form_admin_page.php:196
257
  msgid "settings"
258
  msgstr ""
259
 
260
+ #: system/mw_wp_form_admin_page.php:205
261
+ msgid "Style setting"
262
+ msgstr ""
263
+
264
+ #: system/mw_wp_form_admin_page.php:325
265
  msgid "Copy and Paste this shortcode."
266
  msgstr ""
267
 
268
+ #: system/mw_wp_form_admin_page.php:326
269
  msgid "The key to use with hook is "
270
  msgstr ""
271
 
272
+ #: system/mw_wp_form_admin_page.php:340
273
  msgid "Activate Query string of post"
274
  msgstr ""
275
 
276
+ #: system/mw_wp_form_admin_page.php:341
277
  msgid ""
278
  "If this field is active, MW WP Form get query string. And get post data from "
279
  "query string \"post_id\". You can use $post's property in editor."
280
  msgstr ""
281
 
282
+ #: system/mw_wp_form_admin_page.php:342
283
  msgid "Example: {ID}, {post_title}, {post_meta} etc..."
284
  msgstr ""
285
 
286
+ #: system/mw_wp_form_admin_page.php:345
287
  msgid "Saving contact data in database"
288
  msgstr ""
289
 
290
+ #: system/mw_wp_form_admin_page.php:349
291
  msgid "Akismet Setting"
292
  msgstr ""
293
 
294
+ #: system/mw_wp_form_admin_page.php:364
295
  msgid "Input the key to use Akismet."
296
  msgstr ""
297
 
298
+ #: system/mw_wp_form_admin_page.php:389 system/mw_wp_form_admin_page.php:431
299
  msgid "Subject"
300
  msgstr ""
301
 
302
+ #: system/mw_wp_form_admin_page.php:393 system/mw_wp_form_admin_page.php:435
303
  msgid "Sender"
304
  msgstr ""
305
 
306
+ #: system/mw_wp_form_admin_page.php:395 system/mw_wp_form_admin_page.php:400
307
+ #: system/mw_wp_form_admin_page.php:428 system/mw_wp_form_admin_page.php:437
308
+ #: system/mw_wp_form_admin_page.php:442
309
  msgid "If empty:"
310
  msgstr ""
311
 
312
+ #: system/mw_wp_form_admin_page.php:398 system/mw_wp_form_admin_page.php:440
313
  msgid "From ( E-mail address )"
314
  msgstr ""
315
 
316
+ #: system/mw_wp_form_admin_page.php:403 system/mw_wp_form_admin_page.php:445
317
  msgid "Ccontent"
318
  msgstr ""
319
 
320
+ #: system/mw_wp_form_admin_page.php:405 system/mw_wp_form_admin_page.php:447
321
  msgid "{key} is converted form data."
322
  msgstr ""
323
 
324
+ #: system/mw_wp_form_admin_page.php:408
325
  msgid "Automatic reply email"
326
  msgstr ""
327
 
328
+ #: system/mw_wp_form_admin_page.php:410
329
  msgid "Input the key to use as transmission to automatic reply email."
330
  msgstr ""
331
 
332
+ #: system/mw_wp_form_admin_page.php:423
333
  msgid ""
334
  "If Admin Email Options is a blank, Automatic Replay Email Options is used as "
335
  "Admin Email Options."
336
  msgstr ""
337
 
338
+ #: system/mw_wp_form_admin_page.php:426
339
  msgid "To ( E-mail address )"
340
  msgstr ""
341
 
342
+ #: system/mw_wp_form_admin_page.php:462
343
  msgid "Input Page URL"
344
  msgstr ""
345
 
346
+ #: system/mw_wp_form_admin_page.php:468
347
  msgid "Confirmation Page URL"
348
  msgstr ""
349
 
350
+ #: system/mw_wp_form_admin_page.php:474
351
  msgid "Complete Page URL"
352
  msgstr ""
353
 
354
+ #: system/mw_wp_form_admin_page.php:480
355
  msgid "Validation Error Page URL"
356
  msgstr ""
357
 
358
+ #: system/mw_wp_form_admin_page.php:520
359
  msgid "Add Validation rule"
360
  msgstr ""
361
 
362
+ #: system/mw_wp_form_admin_page.php:526
363
  msgid "The key which applies validation"
364
  msgstr ""
365
 
366
+ #: system/mw_wp_form_admin_page.php:530
367
  msgid "No empty"
368
  msgstr ""
369
 
370
+ #: system/mw_wp_form_admin_page.php:531
371
  msgid "No empty( with checkbox )"
372
  msgstr ""
373
 
374
+ #: system/mw_wp_form_admin_page.php:532
375
  msgid "Numeric"
376
  msgstr ""
377
 
378
+ #: system/mw_wp_form_admin_page.php:533
379
  msgid "Alphabet"
380
  msgstr ""
381
 
382
+ #: system/mw_wp_form_admin_page.php:534
383
  msgid "Alphabet and Numeric"
384
  msgstr ""
385
 
386
+ #: system/mw_wp_form_admin_page.php:535
387
  msgid "Japanese Katakana"
388
  msgstr ""
389
 
390
+ #: system/mw_wp_form_admin_page.php:536
391
  msgid "Japanese Hiragana"
392
  msgstr ""
393
 
394
+ #: system/mw_wp_form_admin_page.php:539
 
 
 
 
 
 
 
 
395
  msgid "E-mail"
396
  msgstr ""
397
 
398
+ #: system/mw_wp_form_admin_page.php:540
399
  msgid "URL"
400
  msgstr ""
401
 
402
+ #: system/mw_wp_form_admin_page.php:541
403
  msgid "Date"
404
  msgstr ""
405
 
406
+ #: system/mw_wp_form_admin_page.php:545
407
  msgid "The key at same value"
408
  msgstr ""
409
 
410
+ #: system/mw_wp_form_admin_page.php:549
411
  msgid "The range of the number of characters"
412
  msgstr ""
413
 
414
+ #: system/mw_wp_form_admin_page.php:557
415
  msgid "The number of the minimum characters"
416
  msgstr ""
417
 
418
+ #: system/mw_wp_form_admin_page.php:561
419
  msgid "Permitted Extension"
420
  msgstr ""
421
 
422
+ #: system/mw_wp_form_admin_page.php:562
423
  msgid "Example:jpg or jpg,txt,…"
424
  msgstr ""
425
 
426
+ #: system/mw_wp_form_admin_page.php:565
427
  msgid "Permitted file size"
428
  msgstr ""
429
 
430
+ #: system/mw_wp_form_admin_page.php:566
431
  msgid "bytes"
432
  msgstr ""
433
 
434
+ #: system/mw_wp_form_admin_page.php:582
435
+ msgid "Select Style"
436
+ msgstr ""
437
+
438
  #: system/mw_wp_form_contact_data_page.php:92
439
  msgid "Edit "
440
  msgstr ""
mw-wp-form.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: MW WP Form
4
  * Plugin URI: http://2inc.org/manual-mw-wp-form/
5
  * Description: MW WP Form can create mail form with a confirmation screen.
6
- * Version: 1.2.5
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : September 25, 2012
10
- * Modified: December 24, 2013
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPL2
@@ -69,6 +69,7 @@ class mw_wp_form {
69
  'complete_url' => '',
70
  'validation_error_url' => '',
71
  'validation' => array(),
 
72
  );
73
 
74
  /**
@@ -116,8 +117,6 @@ class mw_wp_form {
116
  include_once( plugin_dir_path( __FILE__ ) . 'system/mw_wp_form_data.php' );
117
  include_once( plugin_dir_path( __FILE__ ) . 'system/mw_wp_form_file.php' );
118
  add_action( 'get_header', array( $this, 'main' ) );
119
- add_action( 'wp_print_styles', array( $this, 'original_style' ) );
120
- add_action( 'wp_print_scripts', array( $this, 'original_script' ) );
121
  add_action( 'parse_request', array( $this, 'remove_query_vars_from_post' ) );
122
  }
123
 
@@ -193,6 +192,14 @@ class mw_wp_form {
193
  $url = plugin_dir_url( __FILE__ );
194
  wp_register_style( MWF_Config::DOMAIN, $url . 'css/style.css' );
195
  wp_enqueue_style( MWF_Config::DOMAIN );
 
 
 
 
 
 
 
 
196
  }
197
 
198
  /**
@@ -324,6 +331,8 @@ class mw_wp_form {
324
  add_shortcode( 'mwform', array( $this, '_mwform' ) );
325
  add_shortcode( 'mwform_complete_message', array( $this, '_mwform_complete_message' ) );
326
  add_action( 'wp_footer', array( $this->Data, 'clearValues' ) );
 
 
327
  }
328
 
329
  /**
3
  * Plugin Name: MW WP Form
4
  * Plugin URI: http://2inc.org/manual-mw-wp-form/
5
  * Description: MW WP Form can create mail form with a confirmation screen.
6
+ * Version: 1.2.6
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : September 25, 2012
10
+ * Modified: December 29, 2013
11
  * Text Domain: mw-wp-form
12
  * Domain Path: /languages/
13
  * License: GPL2
69
  'complete_url' => '',
70
  'validation_error_url' => '',
71
  'validation' => array(),
72
+ 'style' => '',
73
  );
74
 
75
  /**
117
  include_once( plugin_dir_path( __FILE__ ) . 'system/mw_wp_form_data.php' );
118
  include_once( plugin_dir_path( __FILE__ ) . 'system/mw_wp_form_file.php' );
119
  add_action( 'get_header', array( $this, 'main' ) );
 
 
120
  add_action( 'parse_request', array( $this, 'remove_query_vars_from_post' ) );
121
  }
122
 
192
  $url = plugin_dir_url( __FILE__ );
193
  wp_register_style( MWF_Config::DOMAIN, $url . 'css/style.css' );
194
  wp_enqueue_style( MWF_Config::DOMAIN );
195
+
196
+ $style = $this->options_by_formkey['style'];
197
+ $styles = apply_filters( 'mwform_styles', array() );
198
+ if ( is_array( $styles ) && isset( $styles[$style] ) ) {
199
+ $css = $styles[$style];
200
+ wp_register_style( MWF_Config::DOMAIN . '_style', $css );
201
+ wp_enqueue_style( MWF_Config::DOMAIN . '_style' );
202
+ }
203
  }
204
 
205
  /**
331
  add_shortcode( 'mwform', array( $this, '_mwform' ) );
332
  add_shortcode( 'mwform_complete_message', array( $this, '_mwform_complete_message' ) );
333
  add_action( 'wp_footer', array( $this->Data, 'clearValues' ) );
334
+ add_action( 'wp_print_styles', array( $this, 'original_style' ) );
335
+ add_action( 'wp_print_scripts', array( $this, 'original_script' ) );
336
  }
337
 
338
  /**
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
4
  Tags: plugin, form, confirm, preview, shortcode
5
  Requires at least: 3.4
6
  Tested up to: 3.8.0
7
- Stable tag: 1.2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -47,10 +47,13 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
47
 
48
  == Changelog ==
49
 
 
 
 
50
  = 1.2.5 =
51
  * Added : 管理者宛メールの複数人送信をサポート
52
- * Added : mwform_error_message_html
53
- * Added : mwform_error_message_wrapper
54
  * Buf fix : DB保存データ一覧表示画面 Noticeエラー
55
 
56
  = 1.2.4 =
4
  Tags: plugin, form, confirm, preview, shortcode
5
  Requires at least: 3.4
6
  Tested up to: 3.8.0
7
+ Stable tag: 1.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
47
 
48
  == Changelog ==
49
 
50
+ = 1.2.6 =
51
+ * Added : mwform_styles フィルターフック
52
+
53
  = 1.2.5 =
54
  * Added : 管理者宛メールの複数人送信をサポート
55
+ * Added : mwform_error_message_html フィルターフック
56
+ * Added : mwform_error_message_wrapper フィルターフック
57
  * Buf fix : DB保存データ一覧表示画面 Noticeエラー
58
 
59
  = 1.2.4 =
system/mw_form_field.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW Form Field
4
  * URI: http://2inc.org
5
  * Description: フォームフィールドの抽象クラス
6
- * Version: 1.3.5
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
- * Modified: December 26, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -94,7 +94,7 @@ abstract class mw_form_field {
94
  protected function set_qtags( $id, $display, $arg1, $arg2 = '' ) {
95
  $this->qtags = array(
96
  'id' => $id,
97
- 'display' => __( $display, MWF_Config::DOMAIN ),
98
  'arg1' => $arg1,
99
  'arg2' => $arg2,
100
  );
3
  * Name: MW Form Field
4
  * URI: http://2inc.org
5
  * Description: フォームフィールドの抽象クラス
6
+ * Version: 1.3.6
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : December 14, 2012
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
94
  protected function set_qtags( $id, $display, $arg1, $arg2 = '' ) {
95
  $this->qtags = array(
96
  'id' => $id,
97
+ 'display' => $display,
98
  'arg1' => $arg1,
99
  'arg2' => $arg2,
100
  );
system/mw_wp_form_admin_page.php CHANGED
@@ -3,11 +3,11 @@
3
  * Name: MW WP Form Admin Page
4
  * URI: http://2inc.org
5
  * Description: 管理画面クラス
6
- * Version: 1.7.4
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : February 21, 2013
10
- * Modified: December 22, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
@@ -27,6 +27,7 @@
27
  */
28
  class MW_WP_Form_Admin_Page {
29
 
 
30
  private $postdata;
31
  const SHORTCODE_BUTTON_NAME = 'mw_wp_form_button';
32
 
@@ -196,6 +197,16 @@ class MW_WP_Form_Admin_Page {
196
  array( $this, 'settings' ),
197
  MWF_Config::NAME, 'side'
198
  );
 
 
 
 
 
 
 
 
 
 
199
  }
200
  }
201
 
@@ -561,6 +572,24 @@ class MW_WP_Form_Admin_Page {
561
  <?php
562
  }
563
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  /**
565
  * disable_visual_editor
566
  * ビジュアルエディタを無効に
3
  * Name: MW WP Form Admin Page
4
  * URI: http://2inc.org
5
  * Description: 管理画面クラス
6
+ * Version: 1.7.5
7
  * Author: Takashi Kitajima
8
  * Author URI: http://2inc.org
9
  * Created : February 21, 2013
10
+ * Modified: December 29, 2013
11
  * License: GPL2
12
  *
13
  * Copyright 2013 Takashi Kitajima (email : inc@2inc.org)
27
  */
28
  class MW_WP_Form_Admin_Page {
29
 
30
+ private $styles = array();
31
  private $postdata;
32
  const SHORTCODE_BUTTON_NAME = 'mw_wp_form_button';
33
 
197
  array( $this, 'settings' ),
198
  MWF_Config::NAME, 'side'
199
  );
200
+ // CSS
201
+ $this->styles = apply_filters( 'mwform_styles', $this->styles );
202
+ if ( $this->styles ) {
203
+ add_meta_box(
204
+ MWF_Config::NAME . '_styles',
205
+ __( 'Style setting', MWF_Config::DOMAIN ),
206
+ array( $this, 'add_style_option' ),
207
+ MWF_Config::NAME, 'side'
208
+ );
209
+ }
210
  }
211
  }
212
 
572
  <?php
573
  }
574
 
575
+ /**
576
+ * add_style_option
577
+ */
578
+ public function add_style_option() {
579
+ ?>
580
+ <p>
581
+ <select name="<?php echo MWF_Config::NAME; ?>[style]">
582
+ <option value=""><?php _e( 'Select Style', MWF_Config::DOMAIN ); ?></option>
583
+ <?php foreach ( $this->styles as $style => $css ) : ?>
584
+ <option value="<?php echo esc_attr( $style ); ?>" <?php selected( $this->get_post_data( 'style' ), $style ); ?>>
585
+ <?php echo esc_html( $style ); ?>
586
+ </option>
587
+ <?php endforeach; ?>
588
+ </select>
589
+ </p>
590
+ <?php
591
+ }
592
+
593
  /**
594
  * disable_visual_editor
595
  * ビジュアルエディタを無効に