WP Admin UI Customize - Version 1.3.9.2

Version Description

  • Change mechanism : Update timing change of settings data.
Download this release

Release Info

Developer gqevu6bsiz
Plugin Icon wp plugin WP Admin UI Customize
Version 1.3.9.2
Comparing to
See all releases

Code changes from version 1.3.9.1 to 1.3.9.2

inc/reset_userrole.php CHANGED
@@ -1,6 +1,5 @@
1
  <?php
2
 
3
-
4
  $Data = $this->get_data( 'user_role' );
5
  $UserRoles = $this->get_user_role();
6
 
@@ -16,9 +15,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
16
  <h2><?php _e( 'Reset User Roles' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
18
 
19
- <form id="wauc_reset_userrole" class="wauc_form" method="post" action="">
20
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
21
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
22
 
23
  <h3><?php _e( 'Applied user roles' , $this->ltd ); ?></h3>
24
  <ul>
1
  <?php
2
 
 
3
  $Data = $this->get_data( 'user_role' );
4
  $UserRoles = $this->get_user_role();
5
 
15
  <h2><?php _e( 'Reset User Roles' , $this->ltd ); ?></h2>
16
  <p>&nbsp;</p>
17
 
18
+ <form id="wauc_reset_userrole" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
19
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
20
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
21
+ <input type="hidden" name="record_field" value="user_role" />
22
 
23
  <h3><?php _e( 'Applied user roles' , $this->ltd ); ?></h3>
24
  <ul>
inc/setting_admin_bar_menu.php CHANGED
@@ -1,11 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_admin_bar_menu();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'admin_bar_menu' );
7
- }
8
-
9
  $Data = $this->get_data( 'admin_bar_menu' );
10
  $AllDefaultNodes = $this->admin_bar_filter_load();
11
 
@@ -29,9 +23,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
29
 
30
  <p><a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a></p>
31
 
32
- <form id="wauc_setting_admin_bar_menu" class="wauc_form" method="post" action="">
33
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
34
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
35
 
36
  <div id="poststuff">
37
 
1
  <?php
2
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'admin_bar_menu' );
4
  $AllDefaultNodes = $this->admin_bar_filter_load();
5
 
23
 
24
  <p><a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a></p>
25
 
26
+ <form id="wauc_setting_admin_bar_menu" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
27
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
28
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
29
+ <input type="hidden" name="record_field" value="admin_bar_menu" />
30
 
31
  <div id="poststuff">
32
 
inc/setting_admin_general.php CHANGED
@@ -1,11 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_admin_general();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'admin_general' );
7
- }
8
-
9
  $Data = $this->get_data( 'admin_general' );
10
 
11
  // include js css
@@ -24,9 +18,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
24
 
25
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
26
 
27
- <form id="wauc_setting_admin_general" class="wauc_form" method="post" action="">
28
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
29
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
30
 
31
  <div id="poststuff">
32
 
1
  <?php
2
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'admin_general' );
4
 
5
  // include js css
18
 
19
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
20
 
21
+ <form id="wauc_setting_admin_general" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
22
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
23
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
24
+ <input type="hidden" name="record_field" value="admin_general" />
25
 
26
  <div id="poststuff">
27
 
inc/setting_appearance_menus.php CHANGED
@@ -1,11 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_appearance_menus();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'appearance_menus' );
7
- }
8
-
9
  $Data = $this->get_data( 'appearance_menus' );
10
 
11
  // include js css
@@ -23,9 +17,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
23
 
24
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
25
 
26
- <form id="wauc_setting_appearance_menus" class="wauc_form" method="post" action="">
27
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
28
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
29
 
30
  <div id="poststuff">
31
 
1
  <?php
2
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'appearance_menus' );
4
 
5
  // include js css
17
 
18
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
19
 
20
+ <form id="wauc_setting_appearance_menus" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
21
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
22
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
23
+ <input type="hidden" name="record_field" value="appearance_menus" />
24
 
25
  <div id="poststuff">
26
 
inc/setting_dashboard.php CHANGED
@@ -1,11 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_dashboard();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'dashboard' );
7
- }
8
-
9
  $Data = $this->get_data( 'dashboard' );
10
 
11
  // include js css
@@ -23,9 +17,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
23
 
24
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
25
 
26
- <form id="wauc_setting_dashboard" class="wauc_form" method="post" action="">
27
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
28
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
29
 
30
  <div id="poststuff">
31
 
1
  <?php
2
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'dashboard' );
4
 
5
  // include js css
17
 
18
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
19
 
20
+ <form id="wauc_setting_dashboard" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
21
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
22
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
23
+ <input type="hidden" name="record_field" value="dashboard" />
24
 
25
  <div id="poststuff">
26
 
inc/setting_default.php CHANGED
@@ -1,13 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["donate_key"] ) ) {
4
- $this->DonatingCheck();
5
- } elseif( !empty( $_POST["update"] ) ) {
6
- $this->update_userrole();
7
- } elseif( !empty( $_POST["reset"] ) ) {
8
- $this->update_reset( 'user_role' );
9
- }
10
-
11
  $Data = $this->get_data( 'user_role' );
12
  $UserRoles = $this->get_user_role();
13
 
@@ -100,9 +92,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
100
 
101
  <div id="user_role">
102
 
103
- <form id="wauc_setting_default" class="wauc_form" method="post" action="">
104
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
105
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
106
 
107
  <div class="postbox">
108
  <h3 class="hndle"><span><?php _e( 'User Roles' ); ?></span></h3>
@@ -134,11 +127,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
134
 
135
  </form>
136
 
137
- <form id="donation_form" class="wauc_form" method="post" action="">
138
  <h3><?php _e( 'If you have already donated to.' , $this->ltd_p ); ?></h3>
139
  <p><?php _e( 'Please enter the \'Donation delete key\' that have been described in the \'Line Break First and End download page\'.' , $this->ltd_p ); ?></p>
140
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
141
- <?php wp_nonce_field(); ?>
142
  <label for="donate_key"><?php _e( 'Donation delete key' , $this->ltd_p ); ?></label>
143
  <input type="text" name="donate_key" id="donate_key" value="" class="regular-text" />
144
  <input type="submit" class="button-primary" name="update" value="<?php _e( 'Submit' ); ?>" />
1
  <?php
2
 
 
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'user_role' );
4
  $UserRoles = $this->get_user_role();
5
 
92
 
93
  <div id="user_role">
94
 
95
+ <form id="wauc_setting_default" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
96
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
97
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
98
+ <input type="hidden" name="record_field" value="user_role" />
99
 
100
  <div class="postbox">
101
  <h3 class="hndle"><span><?php _e( 'User Roles' ); ?></span></h3>
127
 
128
  </form>
129
 
130
+ <form id="donation_form" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
131
  <h3><?php _e( 'If you have already donated to.' , $this->ltd_p ); ?></h3>
132
  <p><?php _e( 'Please enter the \'Donation delete key\' that have been described in the \'Line Break First and End download page\'.' , $this->ltd_p ); ?></p>
133
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
134
+ <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
135
  <label for="donate_key"><?php _e( 'Donation delete key' , $this->ltd_p ); ?></label>
136
  <input type="text" name="donate_key" id="donate_key" value="" class="regular-text" />
137
  <input type="submit" class="button-primary" name="update" value="<?php _e( 'Submit' ); ?>" />
inc/setting_loginscreen.php CHANGED
@@ -1,11 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_loginscreen();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'loginscreen' );
7
- }
8
-
9
  $Data = $this->get_data( 'loginscreen' );
10
 
11
  // include js css
@@ -22,9 +16,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
22
  <h2><?php _e( 'Login Screen Settings' , $this->ltd ); ?></h2>
23
  <p>&nbsp;</p>
24
 
25
- <form id="wauc_setting_loginscreen" class="wauc_form" method="post" action="">
26
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
27
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
28
 
29
  <?php if( is_multisite() ) : ?>
30
  <p class="description"><?php _e( 'Is not possible to check the login form if you do not log out in the case of MultiSite.' , $this->ltd ); ?></p>
@@ -32,9 +27,23 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
32
  <p><a title="<?php _e( 'Login Screen' , $this->ltd ); ?>" href="<?php echo get_option( 'siteurl' ); ?>/wp-login.php?TB_iframe=1&width=520&height=520" class="thickbox"><?php _e( 'Show Login Screen' , $this->ltd ); ?></a></p>
33
 
34
  <div id="poststuff">
35
- <div id="post-body" class="metabox-holder columns-1">
 
36
 
37
  <div id="postbox-container-1" class="postbox-container">
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  <div id="login_screen">
39
 
40
  <div class="postbox">
1
  <?php
2
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'loginscreen' );
4
 
5
  // include js css
16
  <h2><?php _e( 'Login Screen Settings' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
18
 
19
+ <form id="wauc_setting_loginscreen" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
20
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
21
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
22
+ <input type="hidden" name="record_field" value="loginscreen" />
23
 
24
  <?php if( is_multisite() ) : ?>
25
  <p class="description"><?php _e( 'Is not possible to check the login form if you do not log out in the case of MultiSite.' , $this->ltd ); ?></p>
27
  <p><a title="<?php _e( 'Login Screen' , $this->ltd ); ?>" href="<?php echo get_option( 'siteurl' ); ?>/wp-login.php?TB_iframe=1&width=520&height=520" class="thickbox"><?php _e( 'Show Login Screen' , $this->ltd ); ?></a></p>
28
 
29
  <div id="poststuff">
30
+
31
+ <div id="post-body" class="metabox-holder columns-2">
32
 
33
  <div id="postbox-container-1" class="postbox-container">
34
+
35
+ <div class="stuffbox" id="usefulbox">
36
+ <h3><span class="hndle"><?php _e( 'Useful plugins' , $this->ltd_p ); ?></span></h3>
37
+ <div class="inside">
38
+ <p><strong><span style="color: orange;">new</span> <a href="http://codecanyon.net/item/login-layout-customize/5729642" target="_blank">Login Layout Customize</a></strong></p>
39
+ <p class="description"><?php _e( 'This plugin is that can be for customizing flexibly Login Screen.' , $this->ltd_p ); ?></p>
40
+ </div>
41
+ </div>
42
+
43
+ </div>
44
+
45
+
46
+ <div id="postbox-container-2" class="postbox-container">
47
  <div id="login_screen">
48
 
49
  <div class="postbox">
inc/setting_post_add_edit.php CHANGED
@@ -1,11 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_post_add_edit();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'post_add_edit' );
7
- }
8
-
9
  $Data = $this->get_data( 'post_add_edit' );
10
  $comment_status = get_option( 'default_comment_status' );
11
 
@@ -24,9 +18,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
24
 
25
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
26
 
27
- <form id="wauc_setting_post_add_edit" class="wauc_form" method="post" action="">
28
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
29
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
30
 
31
  <div id="poststuff">
32
 
1
  <?php
2
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'post_add_edit' );
4
  $comment_status = get_option( 'default_comment_status' );
5
 
18
 
19
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
20
 
21
+ <form id="wauc_setting_post_add_edit" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
22
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
23
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
24
+ <input type="hidden" name="record_field" value="post_add_edit" />
25
 
26
  <div id="poststuff">
27
 
inc/setting_removemtabox.php CHANGED
@@ -1,12 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_removemetabox();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'removemetabox' );
7
- $this->update_reset( 'regist_metabox' );
8
- }
9
-
10
  $Data = $this->get_data( 'removemetabox' );
11
  $Metaboxes = $this->get_data( "regist_metabox" );
12
  $CustomPosts = $this->get_custom_posts();
@@ -26,9 +19,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
26
 
27
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
28
 
29
- <form id="wauc_setting_removemtabox" class="wauc_form" method="post" action="">
30
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
31
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
32
 
33
  <div id="poststuff">
34
 
1
  <?php
2
 
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'removemetabox' );
4
  $Metaboxes = $this->get_data( "regist_metabox" );
5
  $CustomPosts = $this->get_custom_posts();
19
 
20
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
21
 
22
+ <form id="wauc_setting_removemtabox" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
23
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
24
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
25
+ <input type="hidden" name="record_field" value="removemetabox" />
26
 
27
  <div id="poststuff">
28
 
inc/setting_sidemenu.php CHANGED
@@ -2,12 +2,6 @@
2
 
3
  global $menu, $submenu;
4
 
5
- if( !empty( $_POST["update"] ) ) {
6
- $this->update_sidemenu();
7
- } elseif( !empty( $_POST["reset"] ) ) {
8
- $this->update_reset( 'sidemenu' );
9
- }
10
-
11
  $this->get_user_role();
12
  $Data = $this->get_data( 'sidemenu' );
13
 
@@ -31,9 +25,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
31
 
32
  <p><a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a></p>
33
 
34
- <form id="wauc_setting_sidemenu" class="wauc_form" method="post" action="">
35
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
36
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
37
 
38
  <div id="poststuff">
39
 
2
 
3
  global $menu, $submenu;
4
 
 
 
 
 
 
 
5
  $this->get_user_role();
6
  $Data = $this->get_data( 'sidemenu' );
7
 
25
 
26
  <p><a href="#TB_inline?height=300&width=600&inlineId=list_variables&modal=false" title="<?php _e( 'Shortcodes' , $this->ltd ); ?>" class="thickbox"><?php _e( 'Available Shortcodes' , $this->ltd ); ?></a></p>
27
 
28
+ <form id="wauc_setting_sidemenu" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
29
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
30
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
31
+ <input type="hidden" name="record_field" value="sidemenu" />
32
 
33
  <div id="poststuff">
34
 
inc/setting_site.php CHANGED
@@ -1,11 +1,5 @@
1
  <?php
2
 
3
- if( !empty( $_POST["update"] ) ) {
4
- $this->update_site();
5
- } elseif( !empty( $_POST["reset"] ) ) {
6
- $this->update_reset( 'site' );
7
- }
8
-
9
  $Data = $this->get_data( 'site' );
10
  $SiteSetting = get_option( $this->Record["site"] );
11
 
@@ -24,9 +18,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
24
 
25
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
26
 
27
- <form id="wauc_setting_site" class="wauc_form" method="post" action="">
28
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
29
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
 
30
 
31
  <div id="poststuff">
32
  <div id="post-body" class="metabox-holder columns-1">
1
  <?php
2
 
 
 
 
 
 
 
3
  $Data = $this->get_data( 'site' );
4
  $SiteSetting = get_option( $this->Record["site"] );
5
 
18
 
19
  <h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
20
 
21
+ <form id="wauc_setting_site" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
22
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
23
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
24
+ <input type="hidden" name="record_field" value="site" />
25
 
26
  <div id="poststuff">
27
  <div id="post-body" class="metabox-holder columns-1">
languages/wauc-ja.mo CHANGED
Binary file
languages/wauc-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-12 01:33+0900\n"
6
- "PO-Revision-Date: 2013-09-12 01:43+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz@gmail.com <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -21,76 +21,76 @@ msgstr ""
21
  msgid "An excellent plugin to customize the management screens."
22
  msgstr "管理画面のカスタマイズに優れたプラグインです。"
23
 
24
- #: wp-admin-ui-customize.php:116
25
- #: wp-admin-ui-customize.php:152
26
- #: inc/reset_userrole.php:16
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
- #: wp-admin-ui-customize.php:143
31
- #: inc/setting_site.php:22
32
  msgid "Site Settings"
33
  msgstr "サイトの設定"
34
 
35
- #: wp-admin-ui-customize.php:144
36
- #: inc/setting_admin_general.php:22
37
  msgid "General Screen Settings"
38
  msgstr "一般設定"
39
 
40
- #: wp-admin-ui-customize.php:146
41
- #: inc/setting_admin_bar_menu.php:23
42
  msgid "Admin Bar Menu"
43
  msgstr "管理バー"
44
 
45
- #: wp-admin-ui-customize.php:147
46
- #: inc/setting_sidemenu.php:25
47
  msgid "Side Menu"
48
  msgstr "サイドメニュー"
49
 
50
- #: wp-admin-ui-customize.php:148
51
- #: inc/setting_removemtabox.php:24
52
  msgid "Remove meta box"
53
  msgstr "メタボックス削除"
54
 
55
- #: wp-admin-ui-customize.php:149
56
- #: inc/setting_post_add_edit.php:22
57
  msgid "Add New Post and Edit Post Screen Setting"
58
  msgstr "新規投稿と投稿編集の設定"
59
 
60
- #: wp-admin-ui-customize.php:150
61
- #: inc/setting_appearance_menus.php:21
62
  msgid "Appearance Menus Screen Setting"
63
  msgstr "外観メニュー画面の設定"
64
 
65
- #: wp-admin-ui-customize.php:151
66
- #: inc/setting_loginscreen.php:32
67
  msgid "Login Screen"
68
  msgstr "ログイン画面"
69
 
70
- #: wp-admin-ui-customize.php:279
71
  #, php-format
72
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
73
  msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
74
 
75
- #: wp-admin-ui-customize.php:304
76
  msgid "Apply user roles"
77
  msgstr "適用されるユーザー権限"
78
 
79
- #: wp-admin-ui-customize.php:529
80
- #: wp-admin-ui-customize.php:651
81
  msgid "Sub Menus"
82
  msgstr "サブメニュー"
83
 
84
  #: inc/list_variables.php:17
85
- #: inc/setting_admin_bar_menu.php:30
86
- #: inc/setting_admin_general.php:130
87
- #: inc/setting_admin_general.php:153
88
- #: inc/setting_loginscreen.php:55
89
- #: inc/setting_loginscreen.php:68
90
- #: inc/setting_loginscreen.php:80
91
- #: inc/setting_loginscreen.php:108
92
- #: inc/setting_loginscreen.php:120
93
- #: inc/setting_sidemenu.php:32
94
  msgid "Shortcodes"
95
  msgstr "ショートコード一覧"
96
 
@@ -114,252 +114,252 @@ msgstr "適用されたユーザー権限"
114
  msgid "You want to reset the user roles?"
115
  msgstr "ユーザー権限をリセットしてもよろしいですか?"
116
 
117
- #: inc/setting_admin_bar_menu.php:24
118
- #: inc/setting_sidemenu.php:26
119
  msgid "Please change the menu by drag and drop."
120
  msgstr "ドラッグ&ドロップでメニューを変更してください。"
121
 
122
- #: inc/setting_admin_bar_menu.php:25
123
- #: inc/setting_sidemenu.php:28
124
  msgid "Notice: Please do not place the same multiple menu slug."
125
  msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
126
 
127
- #: inc/setting_admin_bar_menu.php:26
128
  msgid "Can be more than one custom menu."
129
  msgstr "カスタムメニューは複数設置できます。"
130
 
131
- #: inc/setting_admin_bar_menu.php:30
132
- #: inc/setting_admin_general.php:130
133
- #: inc/setting_admin_general.php:153
134
- #: inc/setting_loginscreen.php:55
135
- #: inc/setting_loginscreen.php:68
136
- #: inc/setting_loginscreen.php:80
137
- #: inc/setting_loginscreen.php:108
138
- #: inc/setting_loginscreen.php:120
139
- #: inc/setting_sidemenu.php:32
140
  msgid "Available Shortcodes"
141
  msgstr "利用可能なショートコード一覧"
142
 
143
- #: inc/setting_admin_bar_menu.php:195
144
- #: inc/setting_sidemenu.php:27
145
- #: inc/setting_sidemenu.php:47
146
  msgid "Menu items that can be added"
147
  msgstr "追加できるメニュー一覧"
148
 
149
- #: inc/setting_admin_bar_menu.php:263
150
- #: inc/setting_admin_general.php:186
151
- #: inc/setting_appearance_menus.php:95
152
- #: inc/setting_dashboard.php:181
153
- #: inc/setting_default.php:129
154
- #: inc/setting_loginscreen.php:143
155
- #: inc/setting_post_add_edit.php:106
156
- #: inc/setting_removemtabox.php:190
157
- #: inc/setting_sidemenu.php:230
158
- #: inc/setting_site.php:165
159
  msgid "Reset all settings?"
160
  msgstr "リセットしますか?"
161
 
162
- #: inc/setting_admin_general.php:39
163
  msgid "Notifications"
164
  msgstr "通知"
165
 
166
- #: inc/setting_admin_general.php:45
167
  msgid "WordPress core update notice"
168
  msgstr "WordPress コアアップデート通知"
169
 
170
- #: inc/setting_admin_general.php:51
171
- #: inc/setting_admin_general.php:62
172
- #: inc/setting_admin_general.php:73
173
  msgid "Not notified"
174
  msgstr "通知しない"
175
 
176
- #: inc/setting_admin_general.php:56
177
  msgid "Plugin update notice"
178
  msgstr "プラグイン アップデート通知"
179
 
180
- #: inc/setting_admin_general.php:67
181
  msgid "Theme update notice"
182
  msgstr "テーマ アップデート通知"
183
 
184
- #: inc/setting_admin_general.php:83
185
  msgid "Screen Options and Help Tab"
186
  msgstr "表示オプションとヘルプタブ"
187
 
188
- #: inc/setting_admin_general.php:122
189
- #: inc/setting_loginscreen.php:114
190
  msgid "Footer text"
191
  msgstr "フッターテキスト"
192
 
193
- #: inc/setting_admin_general.php:147
194
- #: inc/setting_loginscreen.php:102
195
  msgid "CSS file to load"
196
  msgstr "CSSファイルを読み込む"
197
 
198
- #: inc/setting_admin_general.php:160
199
  msgid "Title tag for Admin screen"
200
  msgstr "管理画面のタイトルタグ"
201
 
202
- #: inc/setting_admin_general.php:165
203
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
204
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
205
 
206
- #: inc/setting_appearance_menus.php:45
207
  msgid "Create a new menu"
208
  msgstr "新規メニュー作成"
209
 
210
- #: inc/setting_appearance_menus.php:51
211
- #: inc/setting_appearance_menus.php:69
212
  msgid "This is useful when you want to use only the menus have been created."
213
  msgstr "作成済みのメニューだけを使用する時に便利です。"
214
 
215
- #: inc/setting_dashboard.php:38
216
  msgid "Meta boxes"
217
  msgstr "メタボックス"
218
 
219
- #: inc/setting_dashboard.php:45
220
  msgid "Welcome Panel"
221
  msgstr "ウェルカムパネル"
222
 
223
- #: inc/setting_dashboard.php:148
224
  msgid "Other"
225
  msgstr "その他"
226
 
227
- #: inc/setting_dashboard.php:155
228
  msgid "Meta box movement restriction"
229
  msgstr "メタボックスの移動制限"
230
 
231
- #: inc/setting_dashboard.php:160
232
  msgid "Lock meta box positions"
233
  msgstr "メタボックスを移動させない"
234
 
235
- #: inc/setting_default.php:24
236
  msgid "Customize the UI of the management screen for all users."
237
  msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
238
 
239
- #: inc/setting_default.php:25
240
  msgid "Please select the user roles that all settings will apply to."
241
  msgstr "設定を適用する権限を選んでください。"
242
 
243
- #: inc/setting_default.php:26
244
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
245
  msgstr "ユーザー権限ごとに設定したい場合は Multiple Add-on を使用してください。"
246
 
247
- #: inc/setting_loginscreen.php:22
248
  msgid "Login Screen Settings"
249
  msgstr "ログイン画面の設定"
250
 
251
- #: inc/setting_loginscreen.php:30
252
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
253
  msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
254
 
255
- #: inc/setting_loginscreen.php:32
256
  msgid "Show Login Screen"
257
  msgstr "ログイン画面を表示"
258
 
259
- #: inc/setting_loginscreen.php:42
260
  msgid "Login Form"
261
  msgstr "ログインフォーム"
262
 
263
- #: inc/setting_loginscreen.php:49
264
  msgid "The link after clicking on the logo"
265
  msgstr "ロゴをクリック後のリンク"
266
 
267
- #: inc/setting_loginscreen.php:62
268
  msgid "Logo Title"
269
  msgstr "ロゴタイトル"
270
 
271
- #: inc/setting_loginscreen.php:74
272
  msgid "Logo Image path"
273
  msgstr "ロゴ画像のパス"
274
 
275
- #: inc/setting_post_add_edit.php:46
276
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
277
  msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
278
 
279
- #: inc/setting_post_add_edit.php:53
280
- #: inc/setting_removemtabox.php:65
281
- #: inc/setting_removemtabox.php:108
282
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
283
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
284
 
285
- #: inc/setting_post_add_edit.php:54
286
  msgid "Please select if you want to display the comments on Site."
287
  msgstr "サイトでコメントを表示させたい場合選択してください。"
288
 
289
- #: inc/setting_post_add_edit.php:55
290
  #, php-format
291
  msgid "However, this will follow the setting of %s."
292
  msgstr "ただし、これは%sの設定に従います。"
293
 
294
- #: inc/setting_post_add_edit.php:57
295
  #, php-format
296
  msgid "Please select the %s"
297
  msgstr "%s を選択してください。"
298
 
299
- #: inc/setting_post_add_edit.php:83
300
  msgid "Only appears when you have settings to the default permalink."
301
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
302
 
303
- #: inc/setting_removemtabox.php:25
304
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
305
  msgstr "新しいプラグインのメタボックスを読み込むには編集画面に一度アクセスしてください。"
306
 
307
- #: inc/setting_removemtabox.php:47
308
- #: inc/setting_removemtabox.php:90
309
- #: inc/setting_removemtabox.php:142
310
  msgid "Could not read the meta box."
311
  msgstr "メタボックスの読み込みができませんでした。"
312
 
313
- #: inc/setting_removemtabox.php:48
314
- #: inc/setting_removemtabox.php:91
315
- #: inc/setting_removemtabox.php:143
316
  #, php-format
317
  msgid "Meta boxes will be loaded automatically when you Edit %s."
318
  msgstr "%s 編集画面を一度表示すると自動でメタボックスが読み込まれます。"
319
 
320
- #: inc/setting_removemtabox.php:67
321
- #: inc/setting_removemtabox.php:110
322
  msgid "Please set from here if you want to view the comments on screen."
323
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
324
 
325
- #: inc/setting_sidemenu.php:27
326
  #, php-format
327
  msgid "New plugin menus will be added to the <strong>%s</strong>."
328
  msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
329
 
330
- #: inc/setting_sidemenu.php:112
331
  msgid "Current menu"
332
  msgstr "現在のメニュー"
333
 
334
- #: inc/setting_site.php:53
335
- #: inc/setting_site.php:66
336
- #: inc/setting_site.php:79
337
- #: inc/setting_site.php:92
338
- #: inc/setting_site.php:105
339
  msgid "Tag to be output"
340
  msgstr "出力されるタグ"
341
 
342
- #: inc/setting_site.php:65
343
  msgid "Please display when using the Windows Live Writer."
344
  msgstr "Windows Live Writer を使う場合は表示させてください。"
345
 
346
- #: inc/setting_site.php:78
347
  msgid "Information of XML-rpc"
348
  msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
349
 
350
- #: inc/setting_site.php:91
351
  msgid "Sitewide feed"
352
  msgstr "サイト全体のフィードリンク"
353
 
354
- #: inc/setting_site.php:104
355
  msgid "Extra feed"
356
  msgstr "その他のフィードリンク"
357
 
358
- #: inc/setting_site.php:132
359
  msgid "Hide the Admin bar on the front end"
360
  msgstr "サイトで管理バーを非表示"
361
 
362
- #: inc/setting_site.php:132
363
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
364
  msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
365
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-03 14:57+0900\n"
6
+ "PO-Revision-Date: 2013-10-03 15:10+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz@gmail.com <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
21
  msgid "An excellent plugin to customize the management screens."
22
  msgstr "管理画面のカスタマイズに優れたプラグインです。"
23
 
24
+ #: wp-admin-ui-customize.php:121
25
+ #: wp-admin-ui-customize.php:157
26
+ #: inc/reset_userrole.php:15
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
+ #: wp-admin-ui-customize.php:148
31
+ #: inc/setting_site.php:16
32
  msgid "Site Settings"
33
  msgstr "サイトの設定"
34
 
35
+ #: wp-admin-ui-customize.php:149
36
+ #: inc/setting_admin_general.php:16
37
  msgid "General Screen Settings"
38
  msgstr "一般設定"
39
 
40
+ #: wp-admin-ui-customize.php:151
41
+ #: inc/setting_admin_bar_menu.php:17
42
  msgid "Admin Bar Menu"
43
  msgstr "管理バー"
44
 
45
+ #: wp-admin-ui-customize.php:152
46
+ #: inc/setting_sidemenu.php:19
47
  msgid "Side Menu"
48
  msgstr "サイドメニュー"
49
 
50
+ #: wp-admin-ui-customize.php:153
51
+ #: inc/setting_removemtabox.php:17
52
  msgid "Remove meta box"
53
  msgstr "メタボックス削除"
54
 
55
+ #: wp-admin-ui-customize.php:154
56
+ #: inc/setting_post_add_edit.php:16
57
  msgid "Add New Post and Edit Post Screen Setting"
58
  msgstr "新規投稿と投稿編集の設定"
59
 
60
+ #: wp-admin-ui-customize.php:155
61
+ #: inc/setting_appearance_menus.php:15
62
  msgid "Appearance Menus Screen Setting"
63
  msgstr "外観メニュー画面の設定"
64
 
65
+ #: wp-admin-ui-customize.php:156
66
+ #: inc/setting_loginscreen.php:27
67
  msgid "Login Screen"
68
  msgstr "ログイン画面"
69
 
70
+ #: wp-admin-ui-customize.php:292
71
  #, php-format
72
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
73
  msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
74
 
75
+ #: wp-admin-ui-customize.php:317
76
  msgid "Apply user roles"
77
  msgstr "適用されるユーザー権限"
78
 
79
+ #: wp-admin-ui-customize.php:542
80
+ #: wp-admin-ui-customize.php:664
81
  msgid "Sub Menus"
82
  msgstr "サブメニュー"
83
 
84
  #: inc/list_variables.php:17
85
+ #: inc/setting_admin_bar_menu.php:24
86
+ #: inc/setting_admin_general.php:125
87
+ #: inc/setting_admin_general.php:148
88
+ #: inc/setting_loginscreen.php:64
89
+ #: inc/setting_loginscreen.php:77
90
+ #: inc/setting_loginscreen.php:89
91
+ #: inc/setting_loginscreen.php:117
92
+ #: inc/setting_loginscreen.php:129
93
+ #: inc/setting_sidemenu.php:26
94
  msgid "Shortcodes"
95
  msgstr "ショートコード一覧"
96
 
114
  msgid "You want to reset the user roles?"
115
  msgstr "ユーザー権限をリセットしてもよろしいですか?"
116
 
117
+ #: inc/setting_admin_bar_menu.php:18
118
+ #: inc/setting_sidemenu.php:20
119
  msgid "Please change the menu by drag and drop."
120
  msgstr "ドラッグ&ドロップでメニューを変更してください。"
121
 
122
+ #: inc/setting_admin_bar_menu.php:19
123
+ #: inc/setting_sidemenu.php:22
124
  msgid "Notice: Please do not place the same multiple menu slug."
125
  msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
126
 
127
+ #: inc/setting_admin_bar_menu.php:20
128
  msgid "Can be more than one custom menu."
129
  msgstr "カスタムメニューは複数設置できます。"
130
 
131
+ #: inc/setting_admin_bar_menu.php:24
132
+ #: inc/setting_admin_general.php:125
133
+ #: inc/setting_admin_general.php:148
134
+ #: inc/setting_loginscreen.php:64
135
+ #: inc/setting_loginscreen.php:77
136
+ #: inc/setting_loginscreen.php:89
137
+ #: inc/setting_loginscreen.php:117
138
+ #: inc/setting_loginscreen.php:129
139
+ #: inc/setting_sidemenu.php:26
140
  msgid "Available Shortcodes"
141
  msgstr "利用可能なショートコード一覧"
142
 
143
+ #: inc/setting_admin_bar_menu.php:190
144
+ #: inc/setting_sidemenu.php:21
145
+ #: inc/setting_sidemenu.php:42
146
  msgid "Menu items that can be added"
147
  msgstr "追加できるメニュー一覧"
148
 
149
+ #: inc/setting_admin_bar_menu.php:258
150
+ #: inc/setting_admin_general.php:181
151
+ #: inc/setting_appearance_menus.php:90
152
+ #: inc/setting_dashboard.php:176
153
+ #: inc/setting_default.php:122
154
+ #: inc/setting_loginscreen.php:152
155
+ #: inc/setting_post_add_edit.php:101
156
+ #: inc/setting_removemtabox.php:184
157
+ #: inc/setting_sidemenu.php:225
158
+ #: inc/setting_site.php:160
159
  msgid "Reset all settings?"
160
  msgstr "リセットしますか?"
161
 
162
+ #: inc/setting_admin_general.php:34
163
  msgid "Notifications"
164
  msgstr "通知"
165
 
166
+ #: inc/setting_admin_general.php:40
167
  msgid "WordPress core update notice"
168
  msgstr "WordPress コアアップデート通知"
169
 
170
+ #: inc/setting_admin_general.php:46
171
+ #: inc/setting_admin_general.php:57
172
+ #: inc/setting_admin_general.php:68
173
  msgid "Not notified"
174
  msgstr "通知しない"
175
 
176
+ #: inc/setting_admin_general.php:51
177
  msgid "Plugin update notice"
178
  msgstr "プラグイン アップデート通知"
179
 
180
+ #: inc/setting_admin_general.php:62
181
  msgid "Theme update notice"
182
  msgstr "テーマ アップデート通知"
183
 
184
+ #: inc/setting_admin_general.php:78
185
  msgid "Screen Options and Help Tab"
186
  msgstr "表示オプションとヘルプタブ"
187
 
188
+ #: inc/setting_admin_general.php:117
189
+ #: inc/setting_loginscreen.php:123
190
  msgid "Footer text"
191
  msgstr "フッターテキスト"
192
 
193
+ #: inc/setting_admin_general.php:142
194
+ #: inc/setting_loginscreen.php:111
195
  msgid "CSS file to load"
196
  msgstr "CSSファイルを読み込む"
197
 
198
+ #: inc/setting_admin_general.php:155
199
  msgid "Title tag for Admin screen"
200
  msgstr "管理画面のタイトルタグ"
201
 
202
+ #: inc/setting_admin_general.php:160
203
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
204
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
205
 
206
+ #: inc/setting_appearance_menus.php:40
207
  msgid "Create a new menu"
208
  msgstr "新規メニュー作成"
209
 
210
+ #: inc/setting_appearance_menus.php:46
211
+ #: inc/setting_appearance_menus.php:64
212
  msgid "This is useful when you want to use only the menus have been created."
213
  msgstr "作成済みのメニューだけを使用する時に便利です。"
214
 
215
+ #: inc/setting_dashboard.php:33
216
  msgid "Meta boxes"
217
  msgstr "メタボックス"
218
 
219
+ #: inc/setting_dashboard.php:40
220
  msgid "Welcome Panel"
221
  msgstr "ウェルカムパネル"
222
 
223
+ #: inc/setting_dashboard.php:143
224
  msgid "Other"
225
  msgstr "その他"
226
 
227
+ #: inc/setting_dashboard.php:150
228
  msgid "Meta box movement restriction"
229
  msgstr "メタボックスの移動制限"
230
 
231
+ #: inc/setting_dashboard.php:155
232
  msgid "Lock meta box positions"
233
  msgstr "メタボックスを移動させない"
234
 
235
+ #: inc/setting_default.php:16
236
  msgid "Customize the UI of the management screen for all users."
237
  msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
238
 
239
+ #: inc/setting_default.php:17
240
  msgid "Please select the user roles that all settings will apply to."
241
  msgstr "設定を適用する権限を選んでください。"
242
 
243
+ #: inc/setting_default.php:18
244
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
245
  msgstr "ユーザー権限ごとに設定したい場合は Multiple Add-on を使用してください。"
246
 
247
+ #: inc/setting_loginscreen.php:16
248
  msgid "Login Screen Settings"
249
  msgstr "ログイン画面の設定"
250
 
251
+ #: inc/setting_loginscreen.php:25
252
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
253
  msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
254
 
255
+ #: inc/setting_loginscreen.php:27
256
  msgid "Show Login Screen"
257
  msgstr "ログイン画面を表示"
258
 
259
+ #: inc/setting_loginscreen.php:51
260
  msgid "Login Form"
261
  msgstr "ログインフォーム"
262
 
263
+ #: inc/setting_loginscreen.php:58
264
  msgid "The link after clicking on the logo"
265
  msgstr "ロゴをクリック後のリンク"
266
 
267
+ #: inc/setting_loginscreen.php:71
268
  msgid "Logo Title"
269
  msgstr "ロゴタイトル"
270
 
271
+ #: inc/setting_loginscreen.php:83
272
  msgid "Logo Image path"
273
  msgstr "ロゴ画像のパス"
274
 
275
+ #: inc/setting_post_add_edit.php:41
276
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
277
  msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
278
 
279
+ #: inc/setting_post_add_edit.php:48
280
+ #: inc/setting_removemtabox.php:59
281
+ #: inc/setting_removemtabox.php:102
282
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
283
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
284
 
285
+ #: inc/setting_post_add_edit.php:49
286
  msgid "Please select if you want to display the comments on Site."
287
  msgstr "サイトでコメントを表示させたい場合選択してください。"
288
 
289
+ #: inc/setting_post_add_edit.php:50
290
  #, php-format
291
  msgid "However, this will follow the setting of %s."
292
  msgstr "ただし、これは%sの設定に従います。"
293
 
294
+ #: inc/setting_post_add_edit.php:52
295
  #, php-format
296
  msgid "Please select the %s"
297
  msgstr "%s を選択してください。"
298
 
299
+ #: inc/setting_post_add_edit.php:78
300
  msgid "Only appears when you have settings to the default permalink."
301
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
302
 
303
+ #: inc/setting_removemtabox.php:18
304
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
305
  msgstr "新しいプラグインのメタボックスを読み込むには編集画面に一度アクセスしてください。"
306
 
307
+ #: inc/setting_removemtabox.php:41
308
+ #: inc/setting_removemtabox.php:84
309
+ #: inc/setting_removemtabox.php:136
310
  msgid "Could not read the meta box."
311
  msgstr "メタボックスの読み込みができませんでした。"
312
 
313
+ #: inc/setting_removemtabox.php:42
314
+ #: inc/setting_removemtabox.php:85
315
+ #: inc/setting_removemtabox.php:137
316
  #, php-format
317
  msgid "Meta boxes will be loaded automatically when you Edit %s."
318
  msgstr "%s 編集画面を一度表示すると自動でメタボックスが読み込まれます。"
319
 
320
+ #: inc/setting_removemtabox.php:61
321
+ #: inc/setting_removemtabox.php:104
322
  msgid "Please set from here if you want to view the comments on screen."
323
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
324
 
325
+ #: inc/setting_sidemenu.php:21
326
  #, php-format
327
  msgid "New plugin menus will be added to the <strong>%s</strong>."
328
  msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
329
 
330
+ #: inc/setting_sidemenu.php:107
331
  msgid "Current menu"
332
  msgstr "現在のメニュー"
333
 
334
+ #: inc/setting_site.php:48
335
+ #: inc/setting_site.php:61
336
+ #: inc/setting_site.php:74
337
+ #: inc/setting_site.php:87
338
+ #: inc/setting_site.php:100
339
  msgid "Tag to be output"
340
  msgstr "出力されるタグ"
341
 
342
+ #: inc/setting_site.php:60
343
  msgid "Please display when using the Windows Live Writer."
344
  msgstr "Windows Live Writer を使う場合は表示させてください。"
345
 
346
+ #: inc/setting_site.php:73
347
  msgid "Information of XML-rpc"
348
  msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
349
 
350
+ #: inc/setting_site.php:86
351
  msgid "Sitewide feed"
352
  msgstr "サイト全体のフィードリンク"
353
 
354
+ #: inc/setting_site.php:99
355
  msgid "Extra feed"
356
  msgstr "その他のフィードリンク"
357
 
358
+ #: inc/setting_site.php:127
359
  msgid "Hide the Admin bar on the front end"
360
  msgstr "サイトで管理バーを非表示"
361
 
362
+ #: inc/setting_site.php:127
363
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
364
  msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
365
 
languages/wauc.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-12 01:33+0900\n"
6
- "PO-Revision-Date: 2013-09-12 01:33+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,76 +18,76 @@ msgstr ""
18
  msgid "An excellent plugin to customize the management screens."
19
  msgstr ""
20
 
21
- #: wp-admin-ui-customize.php:116
22
- #: wp-admin-ui-customize.php:152
23
- #: inc/reset_userrole.php:16
24
  msgid "Reset User Roles"
25
  msgstr ""
26
 
27
- #: wp-admin-ui-customize.php:143
28
- #: inc/setting_site.php:22
29
  msgid "Site Settings"
30
  msgstr ""
31
 
32
- #: wp-admin-ui-customize.php:144
33
- #: inc/setting_admin_general.php:22
34
  msgid "General Screen Settings"
35
  msgstr ""
36
 
37
- #: wp-admin-ui-customize.php:146
38
- #: inc/setting_admin_bar_menu.php:23
39
  msgid "Admin Bar Menu"
40
  msgstr ""
41
 
42
- #: wp-admin-ui-customize.php:147
43
- #: inc/setting_sidemenu.php:25
44
  msgid "Side Menu"
45
  msgstr ""
46
 
47
- #: wp-admin-ui-customize.php:148
48
- #: inc/setting_removemtabox.php:24
49
  msgid "Remove meta box"
50
  msgstr ""
51
 
52
- #: wp-admin-ui-customize.php:149
53
- #: inc/setting_post_add_edit.php:22
54
  msgid "Add New Post and Edit Post Screen Setting"
55
  msgstr ""
56
 
57
- #: wp-admin-ui-customize.php:150
58
- #: inc/setting_appearance_menus.php:21
59
  msgid "Appearance Menus Screen Setting"
60
  msgstr ""
61
 
62
- #: wp-admin-ui-customize.php:151
63
- #: inc/setting_loginscreen.php:32
64
  msgid "Login Screen"
65
  msgstr ""
66
 
67
- #: wp-admin-ui-customize.php:279
68
  #, php-format
69
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
70
  msgstr ""
71
 
72
- #: wp-admin-ui-customize.php:304
73
  msgid "Apply user roles"
74
  msgstr ""
75
 
76
- #: wp-admin-ui-customize.php:529
77
- #: wp-admin-ui-customize.php:651
78
  msgid "Sub Menus"
79
  msgstr ""
80
 
81
  #: inc/list_variables.php:17
82
- #: inc/setting_admin_bar_menu.php:30
83
- #: inc/setting_admin_general.php:130
84
- #: inc/setting_admin_general.php:153
85
- #: inc/setting_loginscreen.php:55
86
- #: inc/setting_loginscreen.php:68
87
- #: inc/setting_loginscreen.php:80
88
- #: inc/setting_loginscreen.php:108
89
- #: inc/setting_loginscreen.php:120
90
- #: inc/setting_sidemenu.php:32
91
  msgid "Shortcodes"
92
  msgstr ""
93
 
@@ -111,252 +111,252 @@ msgstr ""
111
  msgid "You want to reset the user roles?"
112
  msgstr ""
113
 
114
- #: inc/setting_admin_bar_menu.php:24
115
- #: inc/setting_sidemenu.php:26
116
  msgid "Please change the menu by drag and drop."
117
  msgstr ""
118
 
119
- #: inc/setting_admin_bar_menu.php:25
120
- #: inc/setting_sidemenu.php:28
121
  msgid "Notice: Please do not place the same multiple menu slug."
122
  msgstr ""
123
 
124
- #: inc/setting_admin_bar_menu.php:26
125
  msgid "Can be more than one custom menu."
126
  msgstr ""
127
 
128
- #: inc/setting_admin_bar_menu.php:30
129
- #: inc/setting_admin_general.php:130
130
- #: inc/setting_admin_general.php:153
131
- #: inc/setting_loginscreen.php:55
132
- #: inc/setting_loginscreen.php:68
133
- #: inc/setting_loginscreen.php:80
134
- #: inc/setting_loginscreen.php:108
135
- #: inc/setting_loginscreen.php:120
136
- #: inc/setting_sidemenu.php:32
137
  msgid "Available Shortcodes"
138
  msgstr ""
139
 
140
- #: inc/setting_admin_bar_menu.php:195
141
- #: inc/setting_sidemenu.php:27
142
- #: inc/setting_sidemenu.php:47
143
  msgid "Menu items that can be added"
144
  msgstr ""
145
 
146
- #: inc/setting_admin_bar_menu.php:263
147
- #: inc/setting_admin_general.php:186
148
- #: inc/setting_appearance_menus.php:95
149
- #: inc/setting_dashboard.php:181
150
- #: inc/setting_default.php:129
151
- #: inc/setting_loginscreen.php:143
152
- #: inc/setting_post_add_edit.php:106
153
- #: inc/setting_removemtabox.php:190
154
- #: inc/setting_sidemenu.php:230
155
- #: inc/setting_site.php:165
156
  msgid "Reset all settings?"
157
  msgstr ""
158
 
159
- #: inc/setting_admin_general.php:39
160
  msgid "Notifications"
161
  msgstr ""
162
 
163
- #: inc/setting_admin_general.php:45
164
  msgid "WordPress core update notice"
165
  msgstr ""
166
 
167
- #: inc/setting_admin_general.php:51
168
- #: inc/setting_admin_general.php:62
169
- #: inc/setting_admin_general.php:73
170
  msgid "Not notified"
171
  msgstr ""
172
 
173
- #: inc/setting_admin_general.php:56
174
  msgid "Plugin update notice"
175
  msgstr ""
176
 
177
- #: inc/setting_admin_general.php:67
178
  msgid "Theme update notice"
179
  msgstr ""
180
 
181
- #: inc/setting_admin_general.php:83
182
  msgid "Screen Options and Help Tab"
183
  msgstr ""
184
 
185
- #: inc/setting_admin_general.php:122
186
- #: inc/setting_loginscreen.php:114
187
  msgid "Footer text"
188
  msgstr ""
189
 
190
- #: inc/setting_admin_general.php:147
191
- #: inc/setting_loginscreen.php:102
192
  msgid "CSS file to load"
193
  msgstr ""
194
 
195
- #: inc/setting_admin_general.php:160
196
  msgid "Title tag for Admin screen"
197
  msgstr ""
198
 
199
- #: inc/setting_admin_general.php:165
200
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
201
  msgstr ""
202
 
203
- #: inc/setting_appearance_menus.php:45
204
  msgid "Create a new menu"
205
  msgstr ""
206
 
207
- #: inc/setting_appearance_menus.php:51
208
- #: inc/setting_appearance_menus.php:69
209
  msgid "This is useful when you want to use only the menus have been created."
210
  msgstr ""
211
 
212
- #: inc/setting_dashboard.php:38
213
  msgid "Meta boxes"
214
  msgstr ""
215
 
216
- #: inc/setting_dashboard.php:45
217
  msgid "Welcome Panel"
218
  msgstr ""
219
 
220
- #: inc/setting_dashboard.php:148
221
  msgid "Other"
222
  msgstr ""
223
 
224
- #: inc/setting_dashboard.php:155
225
  msgid "Meta box movement restriction"
226
  msgstr ""
227
 
228
- #: inc/setting_dashboard.php:160
229
  msgid "Lock meta box positions"
230
  msgstr ""
231
 
232
- #: inc/setting_default.php:24
233
  msgid "Customize the UI of the management screen for all users."
234
  msgstr ""
235
 
236
- #: inc/setting_default.php:25
237
  msgid "Please select the user roles that all settings will apply to."
238
  msgstr ""
239
 
240
- #: inc/setting_default.php:26
241
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
242
  msgstr ""
243
 
244
- #: inc/setting_loginscreen.php:22
245
  msgid "Login Screen Settings"
246
  msgstr ""
247
 
248
- #: inc/setting_loginscreen.php:30
249
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
250
  msgstr ""
251
 
252
- #: inc/setting_loginscreen.php:32
253
  msgid "Show Login Screen"
254
  msgstr ""
255
 
256
- #: inc/setting_loginscreen.php:42
257
  msgid "Login Form"
258
  msgstr ""
259
 
260
- #: inc/setting_loginscreen.php:49
261
  msgid "The link after clicking on the logo"
262
  msgstr ""
263
 
264
- #: inc/setting_loginscreen.php:62
265
  msgid "Logo Title"
266
  msgstr ""
267
 
268
- #: inc/setting_loginscreen.php:74
269
  msgid "Logo Image path"
270
  msgstr ""
271
 
272
- #: inc/setting_post_add_edit.php:46
273
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
274
  msgstr ""
275
 
276
- #: inc/setting_post_add_edit.php:53
277
- #: inc/setting_removemtabox.php:65
278
- #: inc/setting_removemtabox.php:108
279
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
280
  msgstr ""
281
 
282
- #: inc/setting_post_add_edit.php:54
283
  msgid "Please select if you want to display the comments on Site."
284
  msgstr ""
285
 
286
- #: inc/setting_post_add_edit.php:55
287
  #, php-format
288
  msgid "However, this will follow the setting of %s."
289
  msgstr ""
290
 
291
- #: inc/setting_post_add_edit.php:57
292
  #, php-format
293
  msgid "Please select the %s"
294
  msgstr ""
295
 
296
- #: inc/setting_post_add_edit.php:83
297
  msgid "Only appears when you have settings to the default permalink."
298
  msgstr ""
299
 
300
- #: inc/setting_removemtabox.php:25
301
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
302
  msgstr ""
303
 
304
- #: inc/setting_removemtabox.php:47
305
- #: inc/setting_removemtabox.php:90
306
- #: inc/setting_removemtabox.php:142
307
  msgid "Could not read the meta box."
308
  msgstr ""
309
 
310
- #: inc/setting_removemtabox.php:48
311
- #: inc/setting_removemtabox.php:91
312
- #: inc/setting_removemtabox.php:143
313
  #, php-format
314
  msgid "Meta boxes will be loaded automatically when you Edit %s."
315
  msgstr ""
316
 
317
- #: inc/setting_removemtabox.php:67
318
- #: inc/setting_removemtabox.php:110
319
  msgid "Please set from here if you want to view the comments on screen."
320
  msgstr ""
321
 
322
- #: inc/setting_sidemenu.php:27
323
  #, php-format
324
  msgid "New plugin menus will be added to the <strong>%s</strong>."
325
  msgstr ""
326
 
327
- #: inc/setting_sidemenu.php:112
328
  msgid "Current menu"
329
  msgstr ""
330
 
331
- #: inc/setting_site.php:53
332
- #: inc/setting_site.php:66
333
- #: inc/setting_site.php:79
334
- #: inc/setting_site.php:92
335
- #: inc/setting_site.php:105
336
  msgid "Tag to be output"
337
  msgstr ""
338
 
339
- #: inc/setting_site.php:65
340
  msgid "Please display when using the Windows Live Writer."
341
  msgstr ""
342
 
343
- #: inc/setting_site.php:78
344
  msgid "Information of XML-rpc"
345
  msgstr ""
346
 
347
- #: inc/setting_site.php:91
348
  msgid "Sitewide feed"
349
  msgstr ""
350
 
351
- #: inc/setting_site.php:104
352
  msgid "Extra feed"
353
  msgstr ""
354
 
355
- #: inc/setting_site.php:132
356
  msgid "Hide the Admin bar on the front end"
357
  msgstr ""
358
 
359
- #: inc/setting_site.php:132
360
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
361
  msgstr ""
362
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-03 14:57+0900\n"
6
+ "PO-Revision-Date: 2013-10-03 14:57+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
18
  msgid "An excellent plugin to customize the management screens."
19
  msgstr ""
20
 
21
+ #: wp-admin-ui-customize.php:121
22
+ #: wp-admin-ui-customize.php:157
23
+ #: inc/reset_userrole.php:15
24
  msgid "Reset User Roles"
25
  msgstr ""
26
 
27
+ #: wp-admin-ui-customize.php:148
28
+ #: inc/setting_site.php:16
29
  msgid "Site Settings"
30
  msgstr ""
31
 
32
+ #: wp-admin-ui-customize.php:149
33
+ #: inc/setting_admin_general.php:16
34
  msgid "General Screen Settings"
35
  msgstr ""
36
 
37
+ #: wp-admin-ui-customize.php:151
38
+ #: inc/setting_admin_bar_menu.php:17
39
  msgid "Admin Bar Menu"
40
  msgstr ""
41
 
42
+ #: wp-admin-ui-customize.php:152
43
+ #: inc/setting_sidemenu.php:19
44
  msgid "Side Menu"
45
  msgstr ""
46
 
47
+ #: wp-admin-ui-customize.php:153
48
+ #: inc/setting_removemtabox.php:17
49
  msgid "Remove meta box"
50
  msgstr ""
51
 
52
+ #: wp-admin-ui-customize.php:154
53
+ #: inc/setting_post_add_edit.php:16
54
  msgid "Add New Post and Edit Post Screen Setting"
55
  msgstr ""
56
 
57
+ #: wp-admin-ui-customize.php:155
58
+ #: inc/setting_appearance_menus.php:15
59
  msgid "Appearance Menus Screen Setting"
60
  msgstr ""
61
 
62
+ #: wp-admin-ui-customize.php:156
63
+ #: inc/setting_loginscreen.php:27
64
  msgid "Login Screen"
65
  msgstr ""
66
 
67
+ #: wp-admin-ui-customize.php:292
68
  #, php-format
69
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
70
  msgstr ""
71
 
72
+ #: wp-admin-ui-customize.php:317
73
  msgid "Apply user roles"
74
  msgstr ""
75
 
76
+ #: wp-admin-ui-customize.php:542
77
+ #: wp-admin-ui-customize.php:664
78
  msgid "Sub Menus"
79
  msgstr ""
80
 
81
  #: inc/list_variables.php:17
82
+ #: inc/setting_admin_bar_menu.php:24
83
+ #: inc/setting_admin_general.php:125
84
+ #: inc/setting_admin_general.php:148
85
+ #: inc/setting_loginscreen.php:64
86
+ #: inc/setting_loginscreen.php:77
87
+ #: inc/setting_loginscreen.php:89
88
+ #: inc/setting_loginscreen.php:117
89
+ #: inc/setting_loginscreen.php:129
90
+ #: inc/setting_sidemenu.php:26
91
  msgid "Shortcodes"
92
  msgstr ""
93
 
111
  msgid "You want to reset the user roles?"
112
  msgstr ""
113
 
114
+ #: inc/setting_admin_bar_menu.php:18
115
+ #: inc/setting_sidemenu.php:20
116
  msgid "Please change the menu by drag and drop."
117
  msgstr ""
118
 
119
+ #: inc/setting_admin_bar_menu.php:19
120
+ #: inc/setting_sidemenu.php:22
121
  msgid "Notice: Please do not place the same multiple menu slug."
122
  msgstr ""
123
 
124
+ #: inc/setting_admin_bar_menu.php:20
125
  msgid "Can be more than one custom menu."
126
  msgstr ""
127
 
128
+ #: inc/setting_admin_bar_menu.php:24
129
+ #: inc/setting_admin_general.php:125
130
+ #: inc/setting_admin_general.php:148
131
+ #: inc/setting_loginscreen.php:64
132
+ #: inc/setting_loginscreen.php:77
133
+ #: inc/setting_loginscreen.php:89
134
+ #: inc/setting_loginscreen.php:117
135
+ #: inc/setting_loginscreen.php:129
136
+ #: inc/setting_sidemenu.php:26
137
  msgid "Available Shortcodes"
138
  msgstr ""
139
 
140
+ #: inc/setting_admin_bar_menu.php:190
141
+ #: inc/setting_sidemenu.php:21
142
+ #: inc/setting_sidemenu.php:42
143
  msgid "Menu items that can be added"
144
  msgstr ""
145
 
146
+ #: inc/setting_admin_bar_menu.php:258
147
+ #: inc/setting_admin_general.php:181
148
+ #: inc/setting_appearance_menus.php:90
149
+ #: inc/setting_dashboard.php:176
150
+ #: inc/setting_default.php:122
151
+ #: inc/setting_loginscreen.php:152
152
+ #: inc/setting_post_add_edit.php:101
153
+ #: inc/setting_removemtabox.php:184
154
+ #: inc/setting_sidemenu.php:225
155
+ #: inc/setting_site.php:160
156
  msgid "Reset all settings?"
157
  msgstr ""
158
 
159
+ #: inc/setting_admin_general.php:34
160
  msgid "Notifications"
161
  msgstr ""
162
 
163
+ #: inc/setting_admin_general.php:40
164
  msgid "WordPress core update notice"
165
  msgstr ""
166
 
167
+ #: inc/setting_admin_general.php:46
168
+ #: inc/setting_admin_general.php:57
169
+ #: inc/setting_admin_general.php:68
170
  msgid "Not notified"
171
  msgstr ""
172
 
173
+ #: inc/setting_admin_general.php:51
174
  msgid "Plugin update notice"
175
  msgstr ""
176
 
177
+ #: inc/setting_admin_general.php:62
178
  msgid "Theme update notice"
179
  msgstr ""
180
 
181
+ #: inc/setting_admin_general.php:78
182
  msgid "Screen Options and Help Tab"
183
  msgstr ""
184
 
185
+ #: inc/setting_admin_general.php:117
186
+ #: inc/setting_loginscreen.php:123
187
  msgid "Footer text"
188
  msgstr ""
189
 
190
+ #: inc/setting_admin_general.php:142
191
+ #: inc/setting_loginscreen.php:111
192
  msgid "CSS file to load"
193
  msgstr ""
194
 
195
+ #: inc/setting_admin_general.php:155
196
  msgid "Title tag for Admin screen"
197
  msgstr ""
198
 
199
+ #: inc/setting_admin_general.php:160
200
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
201
  msgstr ""
202
 
203
+ #: inc/setting_appearance_menus.php:40
204
  msgid "Create a new menu"
205
  msgstr ""
206
 
207
+ #: inc/setting_appearance_menus.php:46
208
+ #: inc/setting_appearance_menus.php:64
209
  msgid "This is useful when you want to use only the menus have been created."
210
  msgstr ""
211
 
212
+ #: inc/setting_dashboard.php:33
213
  msgid "Meta boxes"
214
  msgstr ""
215
 
216
+ #: inc/setting_dashboard.php:40
217
  msgid "Welcome Panel"
218
  msgstr ""
219
 
220
+ #: inc/setting_dashboard.php:143
221
  msgid "Other"
222
  msgstr ""
223
 
224
+ #: inc/setting_dashboard.php:150
225
  msgid "Meta box movement restriction"
226
  msgstr ""
227
 
228
+ #: inc/setting_dashboard.php:155
229
  msgid "Lock meta box positions"
230
  msgstr ""
231
 
232
+ #: inc/setting_default.php:16
233
  msgid "Customize the UI of the management screen for all users."
234
  msgstr ""
235
 
236
+ #: inc/setting_default.php:17
237
  msgid "Please select the user roles that all settings will apply to."
238
  msgstr ""
239
 
240
+ #: inc/setting_default.php:18
241
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
242
  msgstr ""
243
 
244
+ #: inc/setting_loginscreen.php:16
245
  msgid "Login Screen Settings"
246
  msgstr ""
247
 
248
+ #: inc/setting_loginscreen.php:25
249
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
250
  msgstr ""
251
 
252
+ #: inc/setting_loginscreen.php:27
253
  msgid "Show Login Screen"
254
  msgstr ""
255
 
256
+ #: inc/setting_loginscreen.php:51
257
  msgid "Login Form"
258
  msgstr ""
259
 
260
+ #: inc/setting_loginscreen.php:58
261
  msgid "The link after clicking on the logo"
262
  msgstr ""
263
 
264
+ #: inc/setting_loginscreen.php:71
265
  msgid "Logo Title"
266
  msgstr ""
267
 
268
+ #: inc/setting_loginscreen.php:83
269
  msgid "Logo Image path"
270
  msgstr ""
271
 
272
+ #: inc/setting_post_add_edit.php:41
273
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
274
  msgstr ""
275
 
276
+ #: inc/setting_post_add_edit.php:48
277
+ #: inc/setting_removemtabox.php:59
278
+ #: inc/setting_removemtabox.php:102
279
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
280
  msgstr ""
281
 
282
+ #: inc/setting_post_add_edit.php:49
283
  msgid "Please select if you want to display the comments on Site."
284
  msgstr ""
285
 
286
+ #: inc/setting_post_add_edit.php:50
287
  #, php-format
288
  msgid "However, this will follow the setting of %s."
289
  msgstr ""
290
 
291
+ #: inc/setting_post_add_edit.php:52
292
  #, php-format
293
  msgid "Please select the %s"
294
  msgstr ""
295
 
296
+ #: inc/setting_post_add_edit.php:78
297
  msgid "Only appears when you have settings to the default permalink."
298
  msgstr ""
299
 
300
+ #: inc/setting_removemtabox.php:18
301
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
302
  msgstr ""
303
 
304
+ #: inc/setting_removemtabox.php:41
305
+ #: inc/setting_removemtabox.php:84
306
+ #: inc/setting_removemtabox.php:136
307
  msgid "Could not read the meta box."
308
  msgstr ""
309
 
310
+ #: inc/setting_removemtabox.php:42
311
+ #: inc/setting_removemtabox.php:85
312
+ #: inc/setting_removemtabox.php:137
313
  #, php-format
314
  msgid "Meta boxes will be loaded automatically when you Edit %s."
315
  msgstr ""
316
 
317
+ #: inc/setting_removemtabox.php:61
318
+ #: inc/setting_removemtabox.php:104
319
  msgid "Please set from here if you want to view the comments on screen."
320
  msgstr ""
321
 
322
+ #: inc/setting_sidemenu.php:21
323
  #, php-format
324
  msgid "New plugin menus will be added to the <strong>%s</strong>."
325
  msgstr ""
326
 
327
+ #: inc/setting_sidemenu.php:107
328
  msgid "Current menu"
329
  msgstr ""
330
 
331
+ #: inc/setting_site.php:48
332
+ #: inc/setting_site.php:61
333
+ #: inc/setting_site.php:74
334
+ #: inc/setting_site.php:87
335
+ #: inc/setting_site.php:100
336
  msgid "Tag to be output"
337
  msgstr ""
338
 
339
+ #: inc/setting_site.php:60
340
  msgid "Please display when using the Windows Live Writer."
341
  msgstr ""
342
 
343
+ #: inc/setting_site.php:73
344
  msgid "Information of XML-rpc"
345
  msgstr ""
346
 
347
+ #: inc/setting_site.php:86
348
  msgid "Sitewide feed"
349
  msgstr ""
350
 
351
+ #: inc/setting_site.php:99
352
  msgid "Extra feed"
353
  msgstr ""
354
 
355
+ #: inc/setting_site.php:127
356
  msgid "Hide the Admin bar on the front end"
357
  msgstr ""
358
 
359
+ #: inc/setting_site.php:127
360
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
361
  msgstr ""
362
 
languages/wauc_plugin-ja.mo CHANGED
Binary file
languages/wauc_plugin-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize sub\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-12 01:33+0900\n"
6
- "PO-Revision-Date: 2013-09-12 01:43+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,129 +17,134 @@ msgstr ""
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: wp-admin-ui-customize.php:855
21
- #: inc/setting_default.php:185
22
  msgid "Thank you for your donation."
23
  msgstr "寄付いただきありがとうございます。"
24
 
25
- #: wp-admin-ui-customize.php:1770
26
  msgid "Thank you for considering donate."
27
  msgstr "寄付のご検討宜しくお願いします。"
28
 
29
- #: wp-admin-ui-customize.php:1770
30
- #: inc/setting_default.php:38
31
  msgid "Donate"
32
  msgstr "寄付について"
33
 
34
- #: inc/setting_default.php:39
35
  msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
36
  msgstr "このプラグインを使って満足できましたか?<br />日本の法律では、日本の新PayPalユーザーは寄付ボタンを作成することはできません。<br />なので寄付の代わりとしてこのプラグインを購入して欲しいです。"
37
 
38
- #: inc/setting_default.php:46
39
  msgid "Features"
40
  msgstr "機能について"
41
 
42
- #: inc/setting_default.php:47
43
  msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
44
  msgstr "Line Break First and Endプラグインは、TinyMCEのビジュアルエディタで、改行を入力することが出来なくなった時に便利なプラグインです。"
45
 
46
- #: inc/setting_default.php:50
47
  msgid "The primary use of donations"
48
  msgstr "寄付の主な使用目的"
49
 
50
- #: inc/setting_default.php:52
51
  msgid "Liquidation of time and value"
52
  msgstr "時間と価値の清算"
53
 
54
- #: inc/setting_default.php:53
55
  msgid "Additional suggestions feature"
56
  msgstr "機能提案の追加"
57
 
58
- #: inc/setting_default.php:54
59
  msgid "Maintain motivation"
60
  msgstr "モチベーション維持"
61
 
62
- #: inc/setting_default.php:55
63
  msgid "Ensure time as the father of Sunday"
64
  msgstr "日曜日の父親としての時間確保"
65
 
66
- #: inc/setting_default.php:62
67
  msgid "About plugin"
68
  msgstr "プラグインについて"
69
 
70
- #: inc/setting_default.php:64
71
  msgid "Version checked"
72
  msgstr "動作確認済み"
73
 
74
- #: inc/setting_default.php:66
75
  msgid "Plugin's site"
76
  msgstr "プラグインのサイト"
77
 
78
- #: inc/setting_default.php:67
79
  msgid "Developer's site"
80
  msgstr "開発者のサイト"
81
 
82
- #: inc/setting_default.php:69
83
  msgid "Reviews"
84
  msgstr "レビュー"
85
 
86
- #: inc/setting_default.php:77
 
87
  msgid "Useful plugins"
88
  msgstr "便利なプラグイン"
89
 
90
- #: inc/setting_default.php:80
91
  msgid "This add-on is simply settings of multi user roles."
92
  msgstr "ユーザー権限ごとに別々の設定を簡単にできるアドオンです。"
93
 
94
- #: inc/setting_default.php:82
95
  msgid "This add-on is Import/Export easily of the settings data."
96
  msgstr "このアドオンは、WP Admin UI Customizeの設定データをインポート&エクスポートする為のアドオンです。"
97
 
98
- #: inc/setting_default.php:84
99
  msgid "This add-on is an add-on to unify the management screen of all sites."
100
  msgstr "このアドオンは、全てのサイトの管理画面を統一する為のアドオンです。"
101
 
102
- #: inc/setting_default.php:86
103
  msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
104
  msgstr "投稿と固定ページ一覧をカスタマイズします。カスタム投稿タイプも。カラム一覧を自由にカスタマイズできます。"
105
 
106
- #: inc/setting_default.php:88
107
  msgid "Announce to display the dashboard. Change the display to a different user role."
108
  msgstr "ダッシュボードにお知らせを表示します。ユーザーの権限ごとに表示を変更できます。"
109
 
110
- #: inc/setting_default.php:90
111
  msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
112
  msgstr "オプション値作成プラグインです。作成したオプション値は、ショートコードとして記事に、テンプレートタグとしても使用できます。"
113
 
114
- #: inc/setting_default.php:138
115
  msgid "If you have already donated to."
116
  msgstr "寄付済みの方へ。"
117
 
118
- #: inc/setting_default.php:139
119
  msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
120
  msgstr "'Line Break First and End download page' ダウンロードページに記載されていた寄付削除キーを入力して、寄付メッセージを削除できます。"
121
 
122
- #: inc/setting_default.php:142
123
  msgid "Donation delete key"
124
  msgstr "寄付メッセージ削除キー"
125
 
126
- #: inc/setting_default.php:150
127
  msgid "Have you want to customize?"
128
  msgstr "何かカスタマイズしたい事はありますか?"
129
 
130
- #: inc/setting_default.php:156
131
  msgid "I am good at Admin Screen Customize."
132
  msgstr "私は管理画面のカスタマイズを得意とします。"
133
 
134
- #: inc/setting_default.php:157
135
  msgid "Please consider the request to me if it is good."
136
  msgstr "宜しければご検討ください。"
137
 
138
- #: inc/setting_default.php:159
139
  msgid "Example Customize"
140
  msgstr "カスタマイズ例"
141
 
142
- #: inc/setting_default.php:160
143
  msgid "Contact me"
144
  msgstr "お問い合わせ"
145
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize sub\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-03 14:57+0900\n"
6
+ "PO-Revision-Date: 2013-10-03 15:11+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: wp-admin-ui-customize.php:1838
21
+ #: inc/setting_default.php:178
22
  msgid "Thank you for your donation."
23
  msgstr "寄付いただきありがとうございます。"
24
 
25
+ #: wp-admin-ui-customize.php:1853
26
  msgid "Thank you for considering donate."
27
  msgstr "寄付のご検討宜しくお願いします。"
28
 
29
+ #: wp-admin-ui-customize.php:1853
30
+ #: inc/setting_default.php:30
31
  msgid "Donate"
32
  msgstr "寄付について"
33
 
34
+ #: inc/setting_default.php:31
35
  msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
36
  msgstr "このプラグインを使って満足できましたか?<br />日本の法律では、日本の新PayPalユーザーは寄付ボタンを作成することはできません。<br />なので寄付の代わりとしてこのプラグインを購入して欲しいです。"
37
 
38
+ #: inc/setting_default.php:38
39
  msgid "Features"
40
  msgstr "機能について"
41
 
42
+ #: inc/setting_default.php:39
43
  msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
44
  msgstr "Line Break First and Endプラグインは、TinyMCEのビジュアルエディタで、改行を入力することが出来なくなった時に便利なプラグインです。"
45
 
46
+ #: inc/setting_default.php:42
47
  msgid "The primary use of donations"
48
  msgstr "寄付の主な使用目的"
49
 
50
+ #: inc/setting_default.php:44
51
  msgid "Liquidation of time and value"
52
  msgstr "時間と価値の清算"
53
 
54
+ #: inc/setting_default.php:45
55
  msgid "Additional suggestions feature"
56
  msgstr "機能提案の追加"
57
 
58
+ #: inc/setting_default.php:46
59
  msgid "Maintain motivation"
60
  msgstr "モチベーション維持"
61
 
62
+ #: inc/setting_default.php:47
63
  msgid "Ensure time as the father of Sunday"
64
  msgstr "日曜日の父親としての時間確保"
65
 
66
+ #: inc/setting_default.php:54
67
  msgid "About plugin"
68
  msgstr "プラグインについて"
69
 
70
+ #: inc/setting_default.php:56
71
  msgid "Version checked"
72
  msgstr "動作確認済み"
73
 
74
+ #: inc/setting_default.php:58
75
  msgid "Plugin's site"
76
  msgstr "プラグインのサイト"
77
 
78
+ #: inc/setting_default.php:59
79
  msgid "Developer's site"
80
  msgstr "開発者のサイト"
81
 
82
+ #: inc/setting_default.php:61
83
  msgid "Reviews"
84
  msgstr "レビュー"
85
 
86
+ #: inc/setting_default.php:69
87
+ #: inc/setting_loginscreen.php:36
88
  msgid "Useful plugins"
89
  msgstr "便利なプラグイン"
90
 
91
+ #: inc/setting_default.php:72
92
  msgid "This add-on is simply settings of multi user roles."
93
  msgstr "ユーザー権限ごとに別々の設定を簡単にできるアドオンです。"
94
 
95
+ #: inc/setting_default.php:74
96
  msgid "This add-on is Import/Export easily of the settings data."
97
  msgstr "このアドオンは、WP Admin UI Customizeの設定データをインポート&エクスポートする為のアドオンです。"
98
 
99
+ #: inc/setting_default.php:76
100
  msgid "This add-on is an add-on to unify the management screen of all sites."
101
  msgstr "このアドオンは、全てのサイトの管理画面を統一する為のアドオンです。"
102
 
103
+ #: inc/setting_default.php:78
104
  msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
105
  msgstr "投稿と固定ページ一覧をカスタマイズします。カスタム投稿タイプも。カラム一覧を自由にカスタマイズできます。"
106
 
107
+ #: inc/setting_default.php:80
108
  msgid "Announce to display the dashboard. Change the display to a different user role."
109
  msgstr "ダッシュボードにお知らせを表示します。ユーザーの権限ごとに表示を変更できます。"
110
 
111
+ #: inc/setting_default.php:82
112
  msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
113
  msgstr "オプション値作成プラグインです。作成したオプション値は、ショートコードとして記事に、テンプレートタグとしても使用できます。"
114
 
115
+ #: inc/setting_default.php:131
116
  msgid "If you have already donated to."
117
  msgstr "寄付済みの方へ。"
118
 
119
+ #: inc/setting_default.php:132
120
  msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
121
  msgstr "'Line Break First and End download page' ダウンロードページに記載されていた寄付削除キーを入力して、寄付メッセージを削除できます。"
122
 
123
+ #: inc/setting_default.php:135
124
  msgid "Donation delete key"
125
  msgstr "寄付メッセージ削除キー"
126
 
127
+ #: inc/setting_default.php:143
128
  msgid "Have you want to customize?"
129
  msgstr "何かカスタマイズしたい事はありますか?"
130
 
131
+ #: inc/setting_default.php:149
132
  msgid "I am good at Admin Screen Customize."
133
  msgstr "私は管理画面のカスタマイズを得意とします。"
134
 
135
+ #: inc/setting_default.php:150
136
  msgid "Please consider the request to me if it is good."
137
  msgstr "宜しければご検討ください。"
138
 
139
+ #: inc/setting_default.php:152
140
  msgid "Example Customize"
141
  msgstr "カスタマイズ例"
142
 
143
+ #: inc/setting_default.php:153
144
  msgid "Contact me"
145
  msgstr "お問い合わせ"
146
 
147
+ #: inc/setting_loginscreen.php:39
148
+ msgid "This plugin is that can be for customizing flexibly Login Screen."
149
+ msgstr "柔軟にログイン画面をカスタマイズするプラグインです。"
150
+
languages/wauc_plugin.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize sub\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-12 01:33+0900\n"
6
- "PO-Revision-Date: 2013-09-12 01:33+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,130 +14,134 @@ msgstr ""
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: wp-admin-ui-customize.php:855
18
- #: inc/setting_default.php:185
19
  msgid "Thank you for your donation."
20
  msgstr ""
21
 
22
- #: wp-admin-ui-customize.php:1770
23
  msgid "Thank you for considering donate."
24
  msgstr ""
25
 
26
- #: wp-admin-ui-customize.php:1770
27
- #: inc/setting_default.php:38
28
  msgid "Donate"
29
  msgstr ""
30
 
31
- #: inc/setting_default.php:39
32
  msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
33
  msgstr ""
34
 
35
- #: inc/setting_default.php:46
36
  msgid "Features"
37
  msgstr ""
38
 
39
- #: inc/setting_default.php:47
40
  msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
41
  msgstr ""
42
 
43
- #: inc/setting_default.php:50
44
  msgid "The primary use of donations"
45
  msgstr ""
46
 
47
- #: inc/setting_default.php:52
48
  msgid "Liquidation of time and value"
49
  msgstr ""
50
 
51
- #: inc/setting_default.php:53
52
  msgid "Additional suggestions feature"
53
  msgstr ""
54
 
55
- #: inc/setting_default.php:54
56
  msgid "Maintain motivation"
57
  msgstr ""
58
 
59
- #: inc/setting_default.php:55
60
  msgid "Ensure time as the father of Sunday"
61
  msgstr ""
62
 
63
- #: inc/setting_default.php:62
64
  msgid "About plugin"
65
  msgstr ""
66
 
67
- #: inc/setting_default.php:64
68
  msgid "Version checked"
69
  msgstr ""
70
 
71
- #: inc/setting_default.php:66
72
  msgid "Plugin's site"
73
  msgstr ""
74
 
75
- #: inc/setting_default.php:67
76
  msgid "Developer's site"
77
  msgstr ""
78
 
79
- #: inc/setting_default.php:69
80
  msgid "Reviews"
81
  msgstr ""
82
 
83
- #: inc/setting_default.php:77
 
84
  msgid "Useful plugins"
85
  msgstr ""
86
 
87
- #: inc/setting_default.php:80
88
  msgid "This add-on is simply settings of multi user roles."
89
  msgstr ""
90
 
91
- #: inc/setting_default.php:82
92
  msgid "This add-on is Import/Export easily of the settings data."
93
  msgstr ""
94
 
95
- #: inc/setting_default.php:84
96
  msgid "This add-on is an add-on to unify the management screen of all sites."
97
  msgstr ""
98
 
99
- #: inc/setting_default.php:86
100
  msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
101
  msgstr ""
102
 
103
- #: inc/setting_default.php:88
104
  msgid "Announce to display the dashboard. Change the display to a different user role."
105
  msgstr ""
106
 
107
- #: inc/setting_default.php:90
108
  msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
109
  msgstr ""
110
 
111
- #: inc/setting_default.php:138
112
  msgid "If you have already donated to."
113
  msgstr ""
114
 
115
- #: inc/setting_default.php:139
116
  msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
117
  msgstr ""
118
 
119
- #: inc/setting_default.php:142
120
  msgid "Donation delete key"
121
  msgstr ""
122
 
123
- #: inc/setting_default.php:150
124
  msgid "Have you want to customize?"
125
  msgstr ""
126
 
127
- #: inc/setting_default.php:156
128
  msgid "I am good at Admin Screen Customize."
129
  msgstr ""
130
 
131
- #: inc/setting_default.php:157
132
  msgid "Please consider the request to me if it is good."
133
  msgstr ""
134
 
135
- #: inc/setting_default.php:159
136
  msgid "Example Customize"
137
  msgstr ""
138
 
139
- #: inc/setting_default.php:160
140
  msgid "Contact me"
141
  msgstr ""
142
 
 
 
 
143
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize sub\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-03 14:57+0900\n"
6
+ "PO-Revision-Date: 2013-10-03 14:57+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: wp-admin-ui-customize.php:1838
18
+ #: inc/setting_default.php:178
19
  msgid "Thank you for your donation."
20
  msgstr ""
21
 
22
+ #: wp-admin-ui-customize.php:1853
23
  msgid "Thank you for considering donate."
24
  msgstr ""
25
 
26
+ #: wp-admin-ui-customize.php:1853
27
+ #: inc/setting_default.php:30
28
  msgid "Donate"
29
  msgstr ""
30
 
31
+ #: inc/setting_default.php:31
32
  msgid "You are contented with this plugin?<br />By the laws of Japan, Japan's new paypal user can not make a donation button.<br />So i would like you to buy this plugin as the replacement for the donation."
33
  msgstr ""
34
 
35
+ #: inc/setting_default.php:38
36
  msgid "Features"
37
  msgstr ""
38
 
39
+ #: inc/setting_default.php:39
40
  msgid "Line Break First and End plugin is In the visual editor TinyMCE, It is a plugin that will help when you will not be able to enter a line break."
41
  msgstr ""
42
 
43
+ #: inc/setting_default.php:42
44
  msgid "The primary use of donations"
45
  msgstr ""
46
 
47
+ #: inc/setting_default.php:44
48
  msgid "Liquidation of time and value"
49
  msgstr ""
50
 
51
+ #: inc/setting_default.php:45
52
  msgid "Additional suggestions feature"
53
  msgstr ""
54
 
55
+ #: inc/setting_default.php:46
56
  msgid "Maintain motivation"
57
  msgstr ""
58
 
59
+ #: inc/setting_default.php:47
60
  msgid "Ensure time as the father of Sunday"
61
  msgstr ""
62
 
63
+ #: inc/setting_default.php:54
64
  msgid "About plugin"
65
  msgstr ""
66
 
67
+ #: inc/setting_default.php:56
68
  msgid "Version checked"
69
  msgstr ""
70
 
71
+ #: inc/setting_default.php:58
72
  msgid "Plugin's site"
73
  msgstr ""
74
 
75
+ #: inc/setting_default.php:59
76
  msgid "Developer's site"
77
  msgstr ""
78
 
79
+ #: inc/setting_default.php:61
80
  msgid "Reviews"
81
  msgstr ""
82
 
83
+ #: inc/setting_default.php:69
84
+ #: inc/setting_loginscreen.php:36
85
  msgid "Useful plugins"
86
  msgstr ""
87
 
88
+ #: inc/setting_default.php:72
89
  msgid "This add-on is simply settings of multi user roles."
90
  msgstr ""
91
 
92
+ #: inc/setting_default.php:74
93
  msgid "This add-on is Import/Export easily of the settings data."
94
  msgstr ""
95
 
96
+ #: inc/setting_default.php:76
97
  msgid "This add-on is an add-on to unify the management screen of all sites."
98
  msgstr ""
99
 
100
+ #: inc/setting_default.php:78
101
  msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
102
  msgstr ""
103
 
104
+ #: inc/setting_default.php:80
105
  msgid "Announce to display the dashboard. Change the display to a different user role."
106
  msgstr ""
107
 
108
+ #: inc/setting_default.php:82
109
  msgid "The plugin that allows you to add the value of the options. Option value that you have created, can be used in addition to the template tag, Short code can be used in the body of the article."
110
  msgstr ""
111
 
112
+ #: inc/setting_default.php:131
113
  msgid "If you have already donated to."
114
  msgstr ""
115
 
116
+ #: inc/setting_default.php:132
117
  msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
118
  msgstr ""
119
 
120
+ #: inc/setting_default.php:135
121
  msgid "Donation delete key"
122
  msgstr ""
123
 
124
+ #: inc/setting_default.php:143
125
  msgid "Have you want to customize?"
126
  msgstr ""
127
 
128
+ #: inc/setting_default.php:149
129
  msgid "I am good at Admin Screen Customize."
130
  msgstr ""
131
 
132
+ #: inc/setting_default.php:150
133
  msgid "Please consider the request to me if it is good."
134
  msgstr ""
135
 
136
+ #: inc/setting_default.php:152
137
  msgid "Example Customize"
138
  msgstr ""
139
 
140
+ #: inc/setting_default.php:153
141
  msgid "Contact me"
142
  msgstr ""
143
 
144
+ #: inc/setting_loginscreen.php:39
145
+ msgid "This plugin is that can be for customizing flexibly Login Screen."
146
+ msgstr ""
147
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
- Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_3_9_1
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.5.2
6
  Tested up to: 3.6.1
7
- Stable tag: 1.3.9.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -49,6 +49,9 @@ These to Customization is possible.
49
 
50
  == Changelog ==
51
 
 
 
 
52
  = 1.3.9.1 =
53
  * Fixed bug : Regist metaboxes for remove metaboxes.
54
 
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
+ Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_3_9_2
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.5.2
6
  Tested up to: 3.6.1
7
+ Stable tag: 1.3.9.2
8
  License: GPL2
9
 
10
  Customize the management screen UI.
49
 
50
  == Changelog ==
51
 
52
+ = 1.3.9.2 =
53
+ * Change mechanism : Update timing change of settings data.
54
+
55
  = 1.3.9.1 =
56
  * Fixed bug : Regist metaboxes for remove metaboxes.
57
 
wp-admin-ui-customize.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
- Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9_1
6
- Version: 1.3.9.1
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9_1
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -48,11 +48,12 @@ class WP_Admin_UI_Customize
48
  $Menu,
49
  $SubMenu,
50
  $Admin_bar,
 
51
  $Msg;
52
 
53
 
54
  function __construct() {
55
- $this->Ver = '1.3.9.1';
56
  $this->Name = 'WP Admin UI Customize';
57
  $this->Dir = plugin_dir_path( __FILE__ );
58
  $this->Url = plugin_dir_url( __FILE__ );
@@ -80,6 +81,7 @@ class WP_Admin_UI_Customize
80
  $this->Schema = is_ssl() ? 'https://' : 'http://';
81
  $this->UPFN = 'Y';
82
  $this->DonateKey = 'd77aec9bc89d445fd54b4c988d090f03';
 
83
 
84
  $this->PluginSetup();
85
  $this->FilterStart();
@@ -106,6 +108,9 @@ class WP_Admin_UI_Customize
106
 
107
  // setting check user role
108
  add_action( 'admin_notices' , array( $this , 'settingCheck' ) );
 
 
 
109
  }
110
 
111
  // PluginSetup
@@ -158,12 +163,14 @@ class WP_Admin_UI_Customize
158
 
159
  // SettingPage
160
  function setting_default() {
 
161
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
162
  include_once 'inc/setting_default.php';
163
  }
164
 
165
  // SettingPage
166
  function setting_site() {
 
167
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
168
  $this->DisplayDonation();
169
  include_once 'inc/setting_site.php';
@@ -171,6 +178,7 @@ class WP_Admin_UI_Customize
171
 
172
  // SettingPage
173
  function setting_admin_general() {
 
174
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
175
  $this->DisplayDonation();
176
  include_once 'inc/setting_admin_general.php';
@@ -178,6 +186,7 @@ class WP_Admin_UI_Customize
178
 
179
  // SettingPage
180
  function setting_dashboard() {
 
181
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
182
  $this->DisplayDonation();
183
  include_once 'inc/setting_dashboard.php';
@@ -185,6 +194,7 @@ class WP_Admin_UI_Customize
185
 
186
  // SettingPage
187
  function setting_admin_bar_menu() {
 
188
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
189
  $this->DisplayDonation();
190
  include_once 'inc/setting_admin_bar_menu.php';
@@ -192,6 +202,7 @@ class WP_Admin_UI_Customize
192
 
193
  // SettingPage
194
  function setting_sidemenu() {
 
195
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
196
  $this->DisplayDonation();
197
  include_once 'inc/setting_sidemenu.php';
@@ -199,6 +210,7 @@ class WP_Admin_UI_Customize
199
 
200
  // SettingPage
201
  function setting_removemtabox() {
 
202
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
203
  $this->DisplayDonation();
204
  include_once 'inc/setting_removemtabox.php';
@@ -206,6 +218,7 @@ class WP_Admin_UI_Customize
206
 
207
  // SettingPage
208
  function setting_post_add_edit() {
 
209
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
210
  $this->DisplayDonation();
211
  include_once 'inc/setting_post_add_edit.php';
@@ -213,6 +226,7 @@ class WP_Admin_UI_Customize
213
 
214
  // SettingPage
215
  function setting_appearance_menus() {
 
216
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
217
  $this->DisplayDonation();
218
  include_once 'inc/setting_appearance_menus.php';
@@ -220,6 +234,7 @@ class WP_Admin_UI_Customize
220
 
221
  // SettingPage
222
  function setting_loginscreen() {
 
223
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
224
  $this->DisplayDonation();
225
  include_once 'inc/setting_loginscreen.php';
@@ -227,9 +242,7 @@ class WP_Admin_UI_Customize
227
 
228
  // SettingPage
229
  function reset_userrole() {
230
- if( !empty( $_POST["reset"] ) ) {
231
- $this->update_reset( 'user_role' );
232
- }
233
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
234
  include_once 'inc/reset_userrole.php';
235
  }
@@ -819,6 +832,52 @@ class WP_Admin_UI_Customize
819
 
820
 
821
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822
  // DataUpdate
823
  function update_validate() {
824
  $Update = array();
@@ -839,7 +898,8 @@ class WP_Admin_UI_Customize
839
  if( !empty( $Update ) && check_admin_referer( $this->Nonces["value"] , $this->Nonces["field"] ) ) {
840
  $record = apply_filters( 'wauc_pre_delete' , $this->Record[$record] );
841
  delete_option( $record );
842
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
843
  }
844
  }
845
 
@@ -847,12 +907,13 @@ class WP_Admin_UI_Customize
847
  function DonatingCheck() {
848
  $Update = $this->update_validate();
849
 
850
- if( !empty( $Update ) ) {
851
  if( !empty( $_POST["donate_key"] ) ) {
852
  $SubmitKey = md5( strip_tags( $_POST["donate_key"] ) );
853
  if( $this->DonateKey == $SubmitKey ) {
854
  update_option( $this->Record["donate"] , $SubmitKey );
855
- $this->Msg .= '<div class="updated"><p><strong>' . __( 'Thank you for your donation.' , $this->ltd_p ) . '</strong></p></div>';
 
856
  }
857
  }
858
  }
@@ -873,7 +934,8 @@ class WP_Admin_UI_Customize
873
  }
874
 
875
  update_option( $this->Record["user_role"] , $Update );
876
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
877
  }
878
  }
879
 
@@ -892,7 +954,8 @@ class WP_Admin_UI_Customize
892
 
893
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["site"] );
894
  update_option( $Record , $Update );
895
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
896
  }
897
  }
898
 
@@ -911,7 +974,8 @@ class WP_Admin_UI_Customize
911
 
912
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["admin_general"] );
913
  update_option( $Record , $Update );
914
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
915
  }
916
  }
917
 
@@ -930,7 +994,8 @@ class WP_Admin_UI_Customize
930
 
931
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["dashboard"] );
932
  update_option( $Record , $Update );
933
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
934
  }
935
  }
936
 
@@ -978,7 +1043,8 @@ class WP_Admin_UI_Customize
978
 
979
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["admin_bar_menu"] );
980
  update_option( $Record , $Update );
981
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
982
  }
983
  }
984
 
@@ -1007,7 +1073,8 @@ class WP_Admin_UI_Customize
1007
 
1008
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["sidemenu"] );
1009
  update_option( $Record , $Update );
1010
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
1011
  }
1012
  }
1013
 
@@ -1031,7 +1098,8 @@ class WP_Admin_UI_Customize
1031
 
1032
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["removemetabox"] );
1033
  update_option( $Record , $Update );
1034
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
1035
  }
1036
  }
1037
 
@@ -1050,7 +1118,8 @@ class WP_Admin_UI_Customize
1050
 
1051
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["post_add_edit"] );
1052
  update_option( $Record , $Update );
1053
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
1054
  }
1055
  }
1056
 
@@ -1069,7 +1138,8 @@ class WP_Admin_UI_Customize
1069
 
1070
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["appearance_menus"] );
1071
  update_option( $Record , $Update );
1072
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
1073
  }
1074
  }
1075
 
@@ -1088,7 +1158,8 @@ class WP_Admin_UI_Customize
1088
 
1089
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["loginscreen"] );
1090
  update_option( $Record , $Update );
1091
- $this->Msg .= '<div class="updated"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
1092
 
1093
  }
1094
  }
@@ -1757,6 +1828,18 @@ class WP_Admin_UI_Customize
1757
  }
1758
  }
1759
 
 
 
 
 
 
 
 
 
 
 
 
 
1760
  // FilterStart
1761
  function layout_footer( $text ) {
1762
  $text = '<img src="' . $this->Schema . 'www.gravatar.com/avatar/7e05137c5a859aa987a809190b979ed4?s=18" width="18" /> Plugin developer : <a href="' . $this->AuthorUrl . '?utm_source=use_plugin&utm_medium=footer&utm_content=' . $this->ltd . '&utm_campaign=' . str_replace( '.' , '_' , $this->Ver ) . '" target="_blank">gqevu6bsiz</a>';
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
+ Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9_2
6
+ Version: 1.3.9.2
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9_2
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
48
  $Menu,
49
  $SubMenu,
50
  $Admin_bar,
51
+ $MsgQ,
52
  $Msg;
53
 
54
 
55
  function __construct() {
56
+ $this->Ver = '1.3.9.2';
57
  $this->Name = 'WP Admin UI Customize';
58
  $this->Dir = plugin_dir_path( __FILE__ );
59
  $this->Url = plugin_dir_url( __FILE__ );
81
  $this->Schema = is_ssl() ? 'https://' : 'http://';
82
  $this->UPFN = 'Y';
83
  $this->DonateKey = 'd77aec9bc89d445fd54b4c988d090f03';
84
+ $this->MsgQ = $this->ltd . '_msg';
85
 
86
  $this->PluginSetup();
87
  $this->FilterStart();
108
 
109
  // setting check user role
110
  add_action( 'admin_notices' , array( $this , 'settingCheck' ) );
111
+
112
+ // data update
113
+ add_action( 'admin_init' , array( $this , 'dataUpdate') );
114
  }
115
 
116
  // PluginSetup
163
 
164
  // SettingPage
165
  function setting_default() {
166
+ $this->display_msg();
167
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
168
  include_once 'inc/setting_default.php';
169
  }
170
 
171
  // SettingPage
172
  function setting_site() {
173
+ $this->display_msg();
174
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
175
  $this->DisplayDonation();
176
  include_once 'inc/setting_site.php';
178
 
179
  // SettingPage
180
  function setting_admin_general() {
181
+ $this->display_msg();
182
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
183
  $this->DisplayDonation();
184
  include_once 'inc/setting_admin_general.php';
186
 
187
  // SettingPage
188
  function setting_dashboard() {
189
+ $this->display_msg();
190
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
191
  $this->DisplayDonation();
192
  include_once 'inc/setting_dashboard.php';
194
 
195
  // SettingPage
196
  function setting_admin_bar_menu() {
197
+ $this->display_msg();
198
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
199
  $this->DisplayDonation();
200
  include_once 'inc/setting_admin_bar_menu.php';
202
 
203
  // SettingPage
204
  function setting_sidemenu() {
205
+ $this->display_msg();
206
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
207
  $this->DisplayDonation();
208
  include_once 'inc/setting_sidemenu.php';
210
 
211
  // SettingPage
212
  function setting_removemtabox() {
213
+ $this->display_msg();
214
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
215
  $this->DisplayDonation();
216
  include_once 'inc/setting_removemtabox.php';
218
 
219
  // SettingPage
220
  function setting_post_add_edit() {
221
+ $this->display_msg();
222
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
223
  $this->DisplayDonation();
224
  include_once 'inc/setting_post_add_edit.php';
226
 
227
  // SettingPage
228
  function setting_appearance_menus() {
229
+ $this->display_msg();
230
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
231
  $this->DisplayDonation();
232
  include_once 'inc/setting_appearance_menus.php';
234
 
235
  // SettingPage
236
  function setting_loginscreen() {
237
+ $this->display_msg();
238
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
239
  $this->DisplayDonation();
240
  include_once 'inc/setting_loginscreen.php';
242
 
243
  // SettingPage
244
  function reset_userrole() {
245
+ $this->display_msg();
 
 
246
  add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
247
  include_once 'inc/reset_userrole.php';
248
  }
832
 
833
 
834
 
835
+ // DataUpdate
836
+ function dataUpdate() {
837
+
838
+ $RecordField = false;
839
+
840
+ if( !empty( $_POST["record_field"] ) ) {
841
+ $RecordField = strip_tags( $_POST["record_field"] );
842
+ }
843
+
844
+ if( !empty( $RecordField ) && !empty( $_POST["update"] ) ) {
845
+ if( $RecordField == 'user_role' ) {
846
+ $this->update_userrole();
847
+ } elseif( $RecordField == 'site' ) {
848
+ $this->update_site();
849
+ } elseif( $RecordField == 'admin_general' ) {
850
+ $this->update_admin_general();
851
+ } elseif( $RecordField == 'dashboard' ) {
852
+ $this->update_dashboard();
853
+ } elseif( $RecordField == 'admin_bar_menu' ) {
854
+ $this->update_admin_bar_menu();
855
+ } elseif( $RecordField == 'sidemenu' ) {
856
+ $this->update_sidemenu();
857
+ } elseif( $RecordField == 'removemetabox' ) {
858
+ $this->update_removemetabox();
859
+ } elseif( $RecordField == 'post_add_edit' ) {
860
+ $this->update_post_add_edit();
861
+ } elseif( $RecordField == 'appearance_menus' ) {
862
+ $this->update_appearance_menus();
863
+ } elseif( $RecordField == 'loginscreen' ) {
864
+ $this->update_loginscreen();
865
+ }
866
+ }
867
+
868
+ if( !empty( $RecordField ) && !empty( $_POST["reset"] ) ) {
869
+ if( $RecordField == 'removemetabox' ) {
870
+ delete_option( $this->Record["regist_metabox"] );
871
+ }
872
+ $this->update_reset( $RecordField );
873
+ }
874
+
875
+ if( !empty( $_POST["donate_key"] ) && !empty( $_POST["update"] ) ) {
876
+ $this->DonatingCheck();
877
+ }
878
+
879
+ }
880
+
881
  // DataUpdate
882
  function update_validate() {
883
  $Update = array();
898
  if( !empty( $Update ) && check_admin_referer( $this->Nonces["value"] , $this->Nonces["field"] ) ) {
899
  $record = apply_filters( 'wauc_pre_delete' , $this->Record[$record] );
900
  delete_option( $record );
901
+ wp_redirect( add_query_arg( $this->MsgQ , 'delete' , stripslashes( $_POST["_wp_http_referer"] ) ) );
902
+ exit;
903
  }
904
  }
905
 
907
  function DonatingCheck() {
908
  $Update = $this->update_validate();
909
 
910
+ if( !empty( $Update ) && check_admin_referer( $this->Nonces["value"] , $this->Nonces["field"] ) ) {
911
  if( !empty( $_POST["donate_key"] ) ) {
912
  $SubmitKey = md5( strip_tags( $_POST["donate_key"] ) );
913
  if( $this->DonateKey == $SubmitKey ) {
914
  update_option( $this->Record["donate"] , $SubmitKey );
915
+ wp_redirect( add_query_arg( $this->MsgQ , 'donated' , stripslashes( $_POST["_wp_http_referer"] ) ) );
916
+ exit;
917
  }
918
  }
919
  }
934
  }
935
 
936
  update_option( $this->Record["user_role"] , $Update );
937
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
938
+ exit;
939
  }
940
  }
941
 
954
 
955
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["site"] );
956
  update_option( $Record , $Update );
957
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
958
+ exit;
959
  }
960
  }
961
 
974
 
975
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["admin_general"] );
976
  update_option( $Record , $Update );
977
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
978
+ exit;
979
  }
980
  }
981
 
994
 
995
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["dashboard"] );
996
  update_option( $Record , $Update );
997
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
998
+ exit;
999
  }
1000
  }
1001
 
1043
 
1044
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["admin_bar_menu"] );
1045
  update_option( $Record , $Update );
1046
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1047
+ exit;
1048
  }
1049
  }
1050
 
1073
 
1074
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["sidemenu"] );
1075
  update_option( $Record , $Update );
1076
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1077
+ exit;
1078
  }
1079
  }
1080
 
1098
 
1099
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["removemetabox"] );
1100
  update_option( $Record , $Update );
1101
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1102
+ exit;
1103
  }
1104
  }
1105
 
1118
 
1119
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["post_add_edit"] );
1120
  update_option( $Record , $Update );
1121
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1122
+ exit;
1123
  }
1124
  }
1125
 
1138
 
1139
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["appearance_menus"] );
1140
  update_option( $Record , $Update );
1141
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1142
+ exit;
1143
  }
1144
  }
1145
 
1158
 
1159
  $Record = apply_filters( 'wauc_pre_update' , $this->Record["loginscreen"] );
1160
  update_option( $Record , $Update );
1161
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1162
+ exit;
1163
 
1164
  }
1165
  }
1828
  }
1829
  }
1830
 
1831
+ // FilterStart
1832
+ function display_msg() {
1833
+ if( !empty( $_GET[$this->MsgQ] ) ) {
1834
+ $msg = strip_tags( $_GET[$this->MsgQ] );
1835
+ if( $msg == 'update' or $msg == 'delete' ) {
1836
+ $this->Msg .= '<div class="updated"><p><strong>' . __( 'Settings saved.' ) . '</strong></p></div>';
1837
+ } elseif( $msg == 'donated' ) {
1838
+ $this->Msg .= '<div class="updated"><p><strong>' . __( 'Thank you for your donation.' , $this->ltd_p ) . '</strong></p></div>';
1839
+ }
1840
+ }
1841
+ }
1842
+
1843
  // FilterStart
1844
  function layout_footer( $text ) {
1845
  $text = '<img src="' . $this->Schema . 'www.gravatar.com/avatar/7e05137c5a859aa987a809190b979ed4?s=18" width="18" /> Plugin developer : <a href="' . $this->AuthorUrl . '?utm_source=use_plugin&utm_medium=footer&utm_content=' . $this->ltd . '&utm_campaign=' . str_replace( '.' , '_' , $this->Ver ) . '" target="_blank">gqevu6bsiz</a>';