WP Admin UI Customize - Version 1.4.3

Version Description

  • Updated: Compatible to 3.8.
  • Updated: Existence check of Link Manager.
  • Updated: Dashboard metaboxes settings.
  • Updated: Screen shots.
  • Added: Working capability change to possible.
Download this release

Release Info

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

Code changes from version 1.4.2 to 1.4.3

images/appearance_menus_add_new_menu.png CHANGED
Binary file
images/appearance_menus_add_new_menu_of_location.png ADDED
Binary file
images/appearance_menus_delete_menu.png CHANGED
Binary file
images/discussion_allow_comments.png CHANGED
Binary file
images/post_add_edit_screen__edit_ppermalink.png CHANGED
Binary file
inc/list_variables.php CHANGED
@@ -1,4 +1,7 @@
1
  <?php
 
 
 
2
  $update_data = wp_get_update_data();
3
  $awaiting_mod = wp_count_comments();
4
  $awaiting_mod = $awaiting_mod->moderated;
@@ -85,7 +88,17 @@ if( is_multisite() ) {
85
  <tr>
86
  <th><strong>[comment_count]</strong></th>
87
  <td>
88
- <code>&lt;span class=&quot;awaiting-mod count-<?php echo $awaiting_mod; ?>&quot;&gt;&lt;span class=&quot;pending-count&quot;&gt;<strong><?php echo number_format_i18n( $awaiting_mod ); ?></strong>&lt;/span&gt;&lt;/span&gt;</code>
 
 
 
 
 
 
 
 
 
 
89
  </td>
90
  </tr>
91
  <tr>
1
  <?php
2
+
3
+ global $wp_version;
4
+
5
  $update_data = wp_get_update_data();
6
  $awaiting_mod = wp_count_comments();
7
  $awaiting_mod = $awaiting_mod->moderated;
88
  <tr>
89
  <th><strong>[comment_count]</strong></th>
90
  <td>
91
+ <?php if ( version_compare( $wp_version , '3.8' , '<' ) ) : ?>
92
+ <code>&lt;span class=&quot;awaiting-mod count-<?php echo $awaiting_mod; ?>&quot;&gt;&lt;span class=&quot;pending-count&quot;&gt;<strong><?php echo number_format_i18n( $awaiting_mod ); ?></strong>&lt;/span&gt;&lt;/span&gt;</code>
93
+ <?php else: ?>
94
+ <code>&lt;span class&quot;ab-icon&quot;&gt&lt;/span&gt; &lt;span id=&quot;ab-awaiting-mod&quot; class=&quot;ab-label awaiting-mod pending-count count-<?php echo $awaiting_mod; ?>&quot;&gt;<strong><?php echo number_format_i18n( $awaiting_mod ); ?></strong>&lt;/span&gt;</code>
95
+ <?php endif; ?>
96
+ </td>
97
+ </tr>
98
+ <tr>
99
+ <th><strong>[comment_count_format]</strong></th>
100
+ <td>
101
+ <code><?php echo $awaiting_mod; ?></code>
102
  </td>
103
  </tr>
104
  <tr>
inc/reset_userrole.php CHANGED
@@ -1,12 +1,19 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'user_role' );
4
  $UserRoles = $this->get_user_role();
5
 
6
  // include js css
7
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
8
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
9
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
10
 
11
  ?>
12
  <div class="wrap">
@@ -32,7 +39,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
32
 
33
  <p><?php _e( 'You want to reset the user roles?' , $this->ltd ); ?></p>
34
  <p class="submit">
35
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
36
  </p>
37
 
38
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'user_role' );
6
  $UserRoles = $this->get_user_role();
7
 
8
  // include js css
9
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
10
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
 
18
  ?>
19
  <div class="wrap">
39
 
40
  <p><?php _e( 'You want to reset the user roles?' , $this->ltd ); ?></p>
41
  <p class="submit">
42
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
43
  </p>
44
 
45
  </form>
inc/setting_admin_bar_menu.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'admin_bar_menu' );
4
  $AllDefaultNodes = $this->admin_bar_filter_load();
5
  $Place_types = $this->admin_bar_places();
@@ -8,7 +10,12 @@ $Place_types = $this->admin_bar_places();
8
  $ReadedJs = array( 'jquery' , 'jquery-ui-draggable' , 'jquery-ui-droppable' , 'jquery-ui-sortable' , 'thickbox' );
9
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
10
  wp_enqueue_style('thickbox');
11
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
12
 
13
  ?>
14
 
@@ -45,7 +52,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
45
  <div class="postbox">
46
  <div class="handlediv" title="Click to toggle"><br></div>
47
  <h3 class="hndle"><span><?php echo $place_label; ?><?php _e( 'Menus' ); ?></span></h3>
48
- <div class="inside">
49
 
50
  <?php if( empty( $Data ) ) : ?>
51
  <?php $Nodes = $AllDefaultNodes; ?>
@@ -84,7 +91,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
84
 
85
  <p class="submit reset">
86
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
87
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
88
  </p>
89
 
90
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'admin_bar_menu' );
6
  $AllDefaultNodes = $this->admin_bar_filter_load();
7
  $Place_types = $this->admin_bar_places();
10
  $ReadedJs = array( 'jquery' , 'jquery-ui-draggable' , 'jquery-ui-droppable' , 'jquery-ui-sortable' , 'thickbox' );
11
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
12
  wp_enqueue_style('thickbox');
13
+
14
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
16
+ } else {
17
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
18
+ }
19
 
20
  ?>
21
 
52
  <div class="postbox">
53
  <div class="handlediv" title="Click to toggle"><br></div>
54
  <h3 class="hndle"><span><?php echo $place_label; ?><?php _e( 'Menus' ); ?></span></h3>
55
+ <div class="inside widgets-holder-wrap">
56
 
57
  <?php if( empty( $Data ) ) : ?>
58
  <?php $Nodes = $AllDefaultNodes; ?>
91
 
92
  <p class="submit reset">
93
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
94
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
95
  </p>
96
 
97
  </form>
inc/setting_admin_general.php CHANGED
@@ -1,12 +1,19 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'admin_general' );
4
 
5
  // include js css
6
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' , 'thickbox' );
7
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
8
  wp_enqueue_style('thickbox');
9
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
10
 
11
  ?>
12
 
@@ -179,7 +186,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
179
 
180
  <p class="submit reset">
181
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
182
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
183
  </p>
184
 
185
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'admin_general' );
6
 
7
  // include js css
8
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' , 'thickbox' );
9
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
10
  wp_enqueue_style('thickbox');
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
 
18
  ?>
19
 
186
 
187
  <p class="submit reset">
188
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
189
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
190
  </p>
191
 
192
  </form>
inc/setting_appearance_menus.php CHANGED
@@ -1,11 +1,18 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'appearance_menus' );
4
 
5
  // include js css
6
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
7
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
8
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
9
 
10
  ?>
11
 
@@ -44,11 +51,12 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
44
  <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
45
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
46
  <p class="description"><?php _e( 'This is useful when you want to use only the menus have been created.' , $this->ltd ); ?></p>
47
- <?php if( version_compare( $GLOBALS['wp_version'], '3.6', '>=' ) ) : ?>
48
  <p><img src="<?php echo $this->Url; ?>images/3.6/appearance_menus_add_new_menu.png" /></p>
49
  <p><img src="<?php echo $this->Url; ?>images/3.6/appearance_menus_add_new_menu_of_location.png" /></p>
50
  <?php else: ?>
51
  <p><img src="<?php echo $this->Url; ?>images/appearance_menus_add_new_menu.png" /></p>
 
52
  <?php endif; ?>
53
  </td>
54
  </tr>
@@ -62,7 +70,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
62
  <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
63
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
64
  <p class="description"><?php _e( 'This is useful when you want to use only the menus have been created.' , $this->ltd ); ?></p>
65
- <?php if( version_compare( $GLOBALS['wp_version'], '3.6', '>=' ) ) : ?>
66
  <p><img src="<?php echo $this->Url; ?>images/3.6/appearance_menus_delete_menu.png" /></p>
67
  <?php else: ?>
68
  <p><img src="<?php echo $this->Url; ?>images/appearance_menus_delete_menu.png" /></p>
@@ -88,7 +96,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
88
 
89
  <p class="submit reset">
90
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
91
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
92
  </p>
93
 
94
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'appearance_menus' );
6
 
7
  // include js css
8
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
9
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
10
+
11
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
12
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
13
+ } else {
14
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
15
+ }
16
 
17
  ?>
18
 
51
  <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
52
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
53
  <p class="description"><?php _e( 'This is useful when you want to use only the menus have been created.' , $this->ltd ); ?></p>
54
+ <?php if( version_compare( $wp_version , '3.8' , '<' ) ) : ?>
55
  <p><img src="<?php echo $this->Url; ?>images/3.6/appearance_menus_add_new_menu.png" /></p>
56
  <p><img src="<?php echo $this->Url; ?>images/3.6/appearance_menus_add_new_menu_of_location.png" /></p>
57
  <?php else: ?>
58
  <p><img src="<?php echo $this->Url; ?>images/appearance_menus_add_new_menu.png" /></p>
59
+ <p><img src="<?php echo $this->Url; ?>images/appearance_menus_add_new_menu_of_location.png" /></p>
60
  <?php endif; ?>
61
  </td>
62
  </tr>
70
  <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
71
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
72
  <p class="description"><?php _e( 'This is useful when you want to use only the menus have been created.' , $this->ltd ); ?></p>
73
+ <?php if( version_compare( $wp_version , '3.8' , '<' ) ) : ?>
74
  <p><img src="<?php echo $this->Url; ?>images/3.6/appearance_menus_delete_menu.png" /></p>
75
  <?php else: ?>
76
  <p><img src="<?php echo $this->Url; ?>images/appearance_menus_delete_menu.png" /></p>
96
 
97
  <p class="submit reset">
98
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
99
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
100
  </p>
101
 
102
  </form>
inc/setting_dashboard.php CHANGED
@@ -1,11 +1,19 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'dashboard' );
 
4
 
5
  // include js css
6
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
7
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
8
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
9
 
10
  ?>
11
 
@@ -32,109 +40,174 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
32
  <div class="handlediv" title="Click to toggle"><br></div>
33
  <h3 class="hndle"><span><?php _e( 'Meta boxes' , $this->ltd ); ?></span></h3>
34
  <div class="inside">
35
- <table class="form-table">
36
- <tbody>
37
- <?php $field = 'show_welcome_panel'; ?>
38
- <tr>
39
- <th>
40
- <label><?php _e( 'Welcome Panel' , $this->ltd ); ?></label>
41
- </th>
42
- <td>
43
- <?php $Checked = ''; ?>
44
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
45
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
46
- </td>
47
- </tr>
48
- <?php $field = 'dashboard_right_now'; ?>
49
- <tr>
50
- <th>
51
- <label><?php _e( 'Right Now' ); ?></label>
52
- </th>
53
- <td>
54
- <?php $Checked = ''; ?>
55
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
56
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
57
- </td>
58
- </tr>
59
- <?php $field = 'dashboard_recent_comments'; ?>
60
- <tr>
61
- <th>
62
- <label><?php _e( 'Recent Comments' ); ?></label>
63
- </th>
64
- <td>
65
- <?php $Checked = ''; ?>
66
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
67
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
68
- </td>
69
- </tr>
70
- <?php $field = 'dashboard_incoming_links'; ?>
71
- <tr>
72
- <th>
73
- <label><?php _e( 'Incoming Links' ); ?></label>
74
- </th>
75
- <td>
76
- <?php $Checked = ''; ?>
77
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
78
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
79
- </td>
80
- </tr>
81
- <?php $field = 'dashboard_plugins'; ?>
82
- <tr>
83
- <th>
84
- <label><?php _e( 'Plugins' ); ?></label>
85
- </th>
86
- <td>
87
- <?php $Checked = ''; ?>
88
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
89
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
90
- </td>
91
- </tr>
92
- <?php $field = 'dashboard_quick_press'; ?>
93
- <tr>
94
- <th>
95
- <label><?php _e( 'QuickPress' ); ?></label>
96
- </th>
97
- <td>
98
- <?php $Checked = ''; ?>
99
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
100
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
101
- </td>
102
- </tr>
103
- <?php $field = 'dashboard_recent_drafts'; ?>
104
- <tr>
105
- <th>
106
- <label><?php _e( 'Recent Drafts' ); ?></label>
107
- </th>
108
- <td>
109
- <?php $Checked = ''; ?>
110
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
111
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
112
- </td>
113
- </tr>
114
- <?php $field = 'dashboard_primary'; ?>
115
- <tr>
116
- <th>
117
- <label><?php _e( 'WordPress Blog' ); ?></label>
118
- </th>
119
- <td>
120
- <?php $Checked = ''; ?>
121
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
122
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
123
- </td>
124
- </tr>
125
- <?php $field = 'dashboard_secondary'; ?>
126
- <tr>
127
- <th>
128
- <label><?php _e( 'Other WordPress News' ); ?></label>
129
- </th>
130
- <td>
131
- <?php $Checked = ''; ?>
132
- <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
133
- <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
134
- </td>
135
- </tr>
136
- </tbody>
137
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  </div>
139
  </div>
140
 
@@ -174,9 +247,23 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
174
 
175
  <p class="submit reset">
176
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
177
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
178
  </p>
179
 
180
  </form>
181
 
182
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'dashboard' );
6
+ $Metaboxes = $this->get_data( "regist_dashboard_metabox" );
7
 
8
  // include js css
9
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
10
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
 
18
  ?>
19
 
40
  <div class="handlediv" title="Click to toggle"><br></div>
41
  <h3 class="hndle"><span><?php _e( 'Meta boxes' , $this->ltd ); ?></span></h3>
42
  <div class="inside">
43
+
44
+ <?php if ( version_compare( $wp_version , '3.8' , '<' ) ) : ?>
45
+
46
+ <table class="form-table">
47
+ <tbody>
48
+ <?php $field = 'show_welcome_panel'; ?>
49
+ <tr>
50
+ <th>
51
+ <label><?php _e( 'Welcome Panel' , $this->ltd ); ?></label>
52
+ </th>
53
+ <td>
54
+ <?php $Checked = ''; ?>
55
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
56
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
57
+ </td>
58
+ </tr>
59
+ <?php $field = 'dashboard_right_now'; ?>
60
+ <tr>
61
+ <th>
62
+ <label><?php _e( 'Right Now' ); ?></label>
63
+ </th>
64
+ <td>
65
+ <?php $Checked = ''; ?>
66
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
67
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
68
+ </td>
69
+ </tr>
70
+ <?php $field = 'dashboard_recent_comments'; ?>
71
+ <tr>
72
+ <th>
73
+ <label><?php _e( 'Recent Comments' ); ?></label>
74
+ </th>
75
+ <td>
76
+ <?php $Checked = ''; ?>
77
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
78
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
79
+ </td>
80
+ </tr>
81
+ <?php $field = 'dashboard_incoming_links'; ?>
82
+ <tr>
83
+ <th>
84
+ <label><?php _e( 'Incoming Links' ); ?></label>
85
+ </th>
86
+ <td>
87
+ <?php $Checked = ''; ?>
88
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
89
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
90
+ </td>
91
+ </tr>
92
+ <?php $field = 'dashboard_plugins'; ?>
93
+ <tr>
94
+ <th>
95
+ <label><?php _e( 'Plugins' ); ?></label>
96
+ </th>
97
+ <td>
98
+ <?php $Checked = ''; ?>
99
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
100
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
101
+ </td>
102
+ </tr>
103
+ <?php $field = 'dashboard_quick_press'; ?>
104
+ <tr>
105
+ <th>
106
+ <label><?php _e( 'QuickPress' ); ?></label>
107
+ </th>
108
+ <td>
109
+ <?php $Checked = ''; ?>
110
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
111
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
112
+ </td>
113
+ </tr>
114
+ <?php $field = 'dashboard_recent_drafts'; ?>
115
+ <tr>
116
+ <th>
117
+ <label><?php _e( 'Recent Drafts' ); ?></label>
118
+ </th>
119
+ <td>
120
+ <?php $Checked = ''; ?>
121
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
122
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
123
+ </td>
124
+ </tr>
125
+ <?php $field = 'dashboard_primary'; ?>
126
+ <tr>
127
+ <th>
128
+ <label><?php _e( 'WordPress Blog' ); ?></label>
129
+ </th>
130
+ <td>
131
+ <?php $Checked = ''; ?>
132
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
133
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
134
+ </td>
135
+ </tr>
136
+ <?php $field = 'dashboard_secondary'; ?>
137
+ <tr>
138
+ <th>
139
+ <label><?php _e( 'Other WordPress News' ); ?></label>
140
+ </th>
141
+ <td>
142
+ <?php $Checked = ''; ?>
143
+ <?php if( !empty( $Data[$field]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
144
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
145
+ </td>
146
+ </tr>
147
+ </tbody>
148
+ </table>
149
+
150
+ <?php else: ?>
151
+
152
+ <?php if( empty( $Metaboxes["metaboxes"]["dashboard"] ) ) : ?>
153
+
154
+ <p><?php _e( 'Could not read the meta box.' , $this->ltd ); ?></p>
155
+ <p><?php echo sprintf( __( 'Meta boxes will be loaded automatically when you <strong>%s</strong>.' , $this->ltd ) , __( 'Dashboard' ) ); ?></p>
156
+ <?php else: ?>
157
+
158
+ <table class="form-table">
159
+ <thead>
160
+ <tr>
161
+ <th>&nbsp;</th>
162
+ <td style="width: 15%;">
163
+ <input type="checkbox" name="" class="check_all" />
164
+ <strong><?php _e( 'Show on screen' ); ?></strong>
165
+ </td>
166
+ <td><strong><?php _e( 'Change metabox title to' , $this->ltd ); ?></strong></td>
167
+ </tr>
168
+ </thead>
169
+ <tbody>
170
+ <?php $field = 'show_welcome_panel'; ?>
171
+ <tr>
172
+ <th>
173
+ <label><?php _e( 'Welcome Panel' , $this->ltd ); ?></label>
174
+ </th>
175
+ <td>
176
+ <?php $Checked = ''; ?>
177
+ <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
178
+ <label><input type="checkbox" name="data[<?php echo $field; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
179
+ </td>
180
+ <td></td>
181
+ </tr>
182
+ <?php foreach( $Metaboxes["metaboxes"]["dashboard"] as $context => $meta_box ) : ?>
183
+ <?php foreach( $meta_box as $priority => $box ) : ?>
184
+ <?php foreach( $box as $metabox_id => $metabox_title ) : ?>
185
+ <?php if( !empty( $metabox_id ) ) : ?>
186
+ <tr>
187
+ <th>
188
+ <label><?php _e( $metabox_title ); ?></label>
189
+ </th>
190
+ <td>
191
+ <?php $Checked = ''; ?>
192
+ <?php if( !empty( $Data[$metabox_id]["remove"] ) ) : $Checked = 'checked="checked"'; endif; ?>
193
+ <label><input type="checkbox" name="data[<?php echo $metabox_id; ?>][remove]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
194
+ </td>
195
+ <td>
196
+ <?php $Val = ''; ?>
197
+ <?php if( !empty( $Data[$metabox_id]["name"] ) ) : $Val = esc_html( stripslashes( $Data[$metabox_id]["name"] ) ); endif; ?>
198
+ <input type="text" name="data[<?php echo $metabox_id; ?>][name]" class="regular-text" value="<?php echo $Val; ?>" placeholder="<?php _e( $metabox_title ); ?>" />
199
+ </td>
200
+ </tr>
201
+ <?php endif; ?>
202
+ <?php endforeach; ?>
203
+ <?php endforeach; ?>
204
+ <?php endforeach; ?>
205
+ </tbody>
206
+ </table>
207
+
208
+ <?php endif; ?>
209
+
210
+ <?php endif; ?>
211
  </div>
212
  </div>
213
 
247
 
248
  <p class="submit reset">
249
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
250
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
251
  </p>
252
 
253
  </form>
254
 
255
  </div>
256
+
257
+ <script type="text/javascript">
258
+ jQuery(document).ready(function($) {
259
+
260
+ $( document ).on("click", "#wauc_setting_dashboard input.check_all", function() {
261
+ var Checked = $(this).prop("checked");
262
+ $Table = $(this).parent().parent().parent().parent();
263
+ $Table.children("tbody").children("tr").each(function( key, el ) {
264
+ $(el).find("input[type=checkbox]").prop("checked" , Checked);
265
+ });
266
+ });
267
+
268
+ });
269
+ </script>
inc/setting_default.php CHANGED
@@ -1,12 +1,19 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'user_role' );
4
  $UserRoles = $this->get_user_role();
5
 
6
  // include js css
7
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
8
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
9
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
10
 
11
  ?>
12
  <div class="wrap">
@@ -27,38 +34,38 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
27
 
28
  <div class="stuffbox" id="donationbox">
29
  <div class="inside">
30
- <p style="color: #FFFFFF; font-size: 20px;"><?php _e( 'Donate' , $this->ltd_p ); ?></p>
31
- <p style="color: #FFFFFF;"><?php _e( '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.' , $this->ltd_p ); ?></p>
32
  <p>&nbsp;</p>
33
  <p style="text-align: center;">
34
  <a href="<?php echo $this->AuthorUrl; ?>line-break-first-and-end/?utm_source=use_plugin&utm_medium=donate&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" class="button-primary" target="_blank">Line Break First and End</a>
35
  </p>
36
  <p>&nbsp;</p>
37
  <div class="donation_memo">
38
- <p><strong><?php _e( 'Features' , $this->ltd_p ); ?></strong></p>
39
- <p><?php _e( '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.' , $this->ltd_p ); ?></p>
40
  </div>
41
  <div class="donation_memo">
42
- <p><strong><?php _e( 'The primary use of donations' , $this->ltd_p ); ?></strong></p>
43
  <ul>
44
- <li>- <?php _e( 'Liquidation of time and value' , $this->ltd_p ); ?></li>
45
- <li>- <?php _e( 'Additional suggestions feature' , $this->ltd_p ); ?></li>
46
- <li>- <?php _e( 'Maintain motivation' , $this->ltd_p ); ?></li>
47
- <li>- <?php _e( 'Ensure time as the father of Sunday' , $this->ltd_p ); ?></li>
48
  </ul>
49
  </div>
50
  </div>
51
  </div>
52
 
53
  <div class="stuffbox" id="aboutbox">
54
- <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd_p ); ?></span></h3>
55
  <div class="inside">
56
- <p><?php _e( 'Version checked' , $this->ltd_p ); ?> : 3.5.2 - 3.7.1</p>
57
  <ul>
58
- <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd_p ); ?></a></li>
59
- <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd_p ); ?></a></li>
60
  <li><a href="http://wordpress.org/support/plugin/<?php echo $this->PluginSlug; ?>" target="_blank"><?php _e( 'Support Forums' ); ?></a></li>
61
- <li><a href="http://wordpress.org/support/view/plugin-reviews/<?php echo $this->PluginSlug; ?>" target="_blank"><?php _e( 'Reviews' , $this->ltd_p ); ?></a></li>
62
  <li><a href="https://twitter.com/gqevu6bsiz" target="_blank">twitter</a></li>
63
  <li><a href="http://www.facebook.com/pages/Gqevu6bsiz/499584376749601" target="_blank">facebook</a></li>
64
  </ul>
@@ -66,20 +73,20 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
66
  </div>
67
 
68
  <div class="stuffbox" id="usefulbox">
69
- <h3><span class="hndle"><?php _e( 'Useful plugins' , $this->ltd_p ); ?></span></h3>
70
  <div class="inside">
71
  <p><strong><span style="color: orange;">new</span> <a href="<?php echo $this->Site; ?>multiple_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Multiple Add-on</a></strong></p>
72
- <p class="description"><?php _e( 'This add-on is simply settings of multi user roles.' , $this->ltd_p ); ?></p>
73
  <p><strong><a href="<?php echo $this->Site; ?>import_export_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Import &amp; Export Add-on</a></strong></p>
74
- <p class="description"><?php _e( 'This add-on is Import/Export easily of the settings data.' , $this->ltd_p ); ?></p>
75
  <p><strong><a href="<?php echo $this->Site; ?>multisite_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize for Multisite</a></strong></p>
76
- <p class="description"><?php _e( 'This add-on is an add-on to unify the management screen of all sites.' , $this->ltd_p ); ?></p>
77
  <p><strong><a href="http://wordpress.org/extend/plugins/post-lists-view-custom/" target="_blank">Post Lists View Custom</a></strong></p>
78
- <p class="description"><?php _e( 'Customize the list of the post and page. custom post type page, too. You can customize the column display items freely.' , $this->ltd_p ); ?></p>
79
  <p><strong><a href="http://wordpress.org/extend/plugins/announce-from-the-dashboard/" target="_blank">Announce from the Dashboard</a></strong></p>
80
- <p class="description"><?php _e( 'Announce to display the dashboard. Change the display to a different user role.' , $this->ltd_p ); ?></p>
81
  <p><strong><a href="http://wordpress.org/extend/plugins/custom-options-plus-post-in/" target="_blank">Custom Options Plus Post in</a></strong></p>
82
- <p class="description"><?php _e( '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.' , $this->ltd_p ); ?></p>
83
  <p>&nbsp;</p>
84
  </div>
85
  </div>
@@ -120,7 +127,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
120
 
121
  <p class="submit reset">
122
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
123
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
124
  </p>
125
 
126
  <p>&nbsp;</p>
@@ -128,11 +135,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
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' ); ?>" />
138
  </form>
@@ -140,17 +147,17 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
140
  <p>&nbsp;</p>
141
 
142
  <div class="stuffbox" style="border-color: #FFC426; border-width: 3px;">
143
- <h3 style="background: #FFF2D0; border-color: #FFC426;"><span class="hndle"><?php _e( 'Have you want to customize?' , $this->ltd_p ); ?></span></h3>
144
  <div class="inside">
145
  <p style="float: right;">
146
  <img src="<?php echo $this->Schema; ?>www.gravatar.com/avatar/7e05137c5a859aa987a809190b979ed4?s=46" width="46" /><br />
147
  <a href="<?php echo $this->AuthorUrl; ?>contact-us/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">gqevu6bsiz</a>
148
  </p>
149
- <p><?php _e( 'I am good at Admin Screen Customize.' , $this->ltd_p ); ?></p>
150
- <p><?php _e( 'Please consider the request to me if it is good.' , $this->ltd_p ); ?></p>
151
  <p>
152
- <a href="<?php echo $this->Site; ?>blog/category/example/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e ( 'Example Customize' , $this->ltd_p ); ?></a> :
153
- <a href="<?php echo $this->Site; ?>contact/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Contact me' , $this->ltd_p ); ?></a></p>
154
  </div>
155
  </div>
156
 
@@ -175,7 +182,7 @@ jQuery(document).ready(function($) {
175
  if( $RDonated == $TDonated ) {
176
  $("#donationbox").hide();
177
  if( $TDonated != "" ) {
178
- $("#donation_form").html( '<p>&nbsp;</p><p>&nbsp;</p><span class="description"><?php _e( 'Thank you for your donation.' , $this->ltd_p ); ?></span>' );
179
  } else {
180
  $("#donation_form").html( '' );
181
  }
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'user_role' );
6
  $UserRoles = $this->get_user_role();
7
 
8
  // include js css
9
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
10
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
 
18
  ?>
19
  <div class="wrap">
34
 
35
  <div class="stuffbox" id="donationbox">
36
  <div class="inside">
37
+ <p style="color: #FFFFFF; font-size: 20px;"><?php _e( 'Donate' , $this->ltd ); ?></p>
38
+ <p style="color: #FFFFFF;"><?php _e( '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.' , $this->ltd ); ?></p>
39
  <p>&nbsp;</p>
40
  <p style="text-align: center;">
41
  <a href="<?php echo $this->AuthorUrl; ?>line-break-first-and-end/?utm_source=use_plugin&utm_medium=donate&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" class="button-primary" target="_blank">Line Break First and End</a>
42
  </p>
43
  <p>&nbsp;</p>
44
  <div class="donation_memo">
45
+ <p><strong><?php _e( 'Features' , $this->ltd ); ?></strong></p>
46
+ <p><?php _e( '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.' , $this->ltd ); ?></p>
47
  </div>
48
  <div class="donation_memo">
49
+ <p><strong><?php _e( 'The primary use of donations' , $this->ltd ); ?></strong></p>
50
  <ul>
51
+ <li>- <?php _e( 'Liquidation of time and value' , $this->ltd ); ?></li>
52
+ <li>- <?php _e( 'Additional suggestions feature' , $this->ltd ); ?></li>
53
+ <li>- <?php _e( 'Maintain motivation' , $this->ltd ); ?></li>
54
+ <li>- <?php _e( 'Ensure time as the father of Sunday' , $this->ltd ); ?></li>
55
  </ul>
56
  </div>
57
  </div>
58
  </div>
59
 
60
  <div class="stuffbox" id="aboutbox">
61
+ <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd ); ?></span></h3>
62
  <div class="inside">
63
+ <p><?php _e( 'Version checked' , $this->ltd ); ?> : 3.6.1 - 3.8</p>
64
  <ul>
65
+ <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd ); ?></a></li>
66
+ <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd ); ?></a></li>
67
  <li><a href="http://wordpress.org/support/plugin/<?php echo $this->PluginSlug; ?>" target="_blank"><?php _e( 'Support Forums' ); ?></a></li>
68
+ <li><a href="http://wordpress.org/support/view/plugin-reviews/<?php echo $this->PluginSlug; ?>" target="_blank"><?php _e( 'Reviews' , $this->ltd ); ?></a></li>
69
  <li><a href="https://twitter.com/gqevu6bsiz" target="_blank">twitter</a></li>
70
  <li><a href="http://www.facebook.com/pages/Gqevu6bsiz/499584376749601" target="_blank">facebook</a></li>
71
  </ul>
73
  </div>
74
 
75
  <div class="stuffbox" id="usefulbox">
76
+ <h3><span class="hndle"><?php _e( 'Useful plugins' , $this->ltd ); ?></span></h3>
77
  <div class="inside">
78
  <p><strong><span style="color: orange;">new</span> <a href="<?php echo $this->Site; ?>multiple_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Multiple Add-on</a></strong></p>
79
+ <p class="description"><?php _e( 'This add-on is simply settings of multi user roles.' , $this->ltd ); ?></p>
80
  <p><strong><a href="<?php echo $this->Site; ?>import_export_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize Import &amp; Export Add-on</a></strong></p>
81
+ <p class="description"><?php _e( 'This add-on is Import/Export easily of the settings data.' , $this->ltd ); ?></p>
82
  <p><strong><a href="<?php echo $this->Site; ?>multisite_about/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">WP Admin UI Customize for Multisite</a></strong></p>
83
+ <p class="description"><?php _e( 'This add-on is an add-on to unify the management screen of all sites.' , $this->ltd ); ?></p>
84
  <p><strong><a href="http://wordpress.org/extend/plugins/post-lists-view-custom/" target="_blank">Post Lists View Custom</a></strong></p>
85
+ <p class="description"><?php _e( 'Customize the list of the post and page. custom post type page, too. You can customize the column display items freely.' , $this->ltd ); ?></p>
86
  <p><strong><a href="http://wordpress.org/extend/plugins/announce-from-the-dashboard/" target="_blank">Announce from the Dashboard</a></strong></p>
87
+ <p class="description"><?php _e( 'Announce to display the dashboard. Change the display to a different user role.' , $this->ltd ); ?></p>
88
  <p><strong><a href="http://wordpress.org/extend/plugins/custom-options-plus-post-in/" target="_blank">Custom Options Plus Post in</a></strong></p>
89
+ <p class="description"><?php _e( '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.' , $this->ltd ); ?></p>
90
  <p>&nbsp;</p>
91
  </div>
92
  </div>
127
 
128
  <p class="submit reset">
129
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
130
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
131
  </p>
132
 
133
  <p>&nbsp;</p>
135
  </form>
136
 
137
  <form id="donation_form" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
138
+ <h3><?php _e( 'If you have already donated to.' , $this->ltd ); ?></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>
140
  <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
141
  <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
142
+ <label for="donate_key"><?php _e( 'Donation delete key' , $this->ltd ); ?></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' ); ?>" />
145
  </form>
147
  <p>&nbsp;</p>
148
 
149
  <div class="stuffbox" style="border-color: #FFC426; border-width: 3px;">
150
+ <h3 style="background: #FFF2D0; border-color: #FFC426;"><span class="hndle"><?php _e( 'Have you want to customize?' , $this->ltd ); ?></span></h3>
151
  <div class="inside">
152
  <p style="float: right;">
153
  <img src="<?php echo $this->Schema; ?>www.gravatar.com/avatar/7e05137c5a859aa987a809190b979ed4?s=46" width="46" /><br />
154
  <a href="<?php echo $this->AuthorUrl; ?>contact-us/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank">gqevu6bsiz</a>
155
  </p>
156
+ <p><?php _e( 'I am good at Admin Screen Customize.' , $this->ltd ); ?></p>
157
+ <p><?php _e( 'Please consider the request to me if it is good.' , $this->ltd ); ?></p>
158
  <p>
159
+ <a href="<?php echo $this->Site; ?>blog/category/example/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e ( 'Example Customize' , $this->ltd ); ?></a> :
160
+ <a href="<?php echo $this->Site; ?>contact/?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Contact me' , $this->ltd ); ?></a></p>
161
  </div>
162
  </div>
163
 
182
  if( $RDonated == $TDonated ) {
183
  $("#donationbox").hide();
184
  if( $TDonated != "" ) {
185
+ $("#donation_form").html( '<p>&nbsp;</p><p>&nbsp;</p><span class="description"><?php _e( 'Thank you for your donation.' , $this->ltd ); ?></span>' );
186
  } else {
187
  $("#donation_form").html( '' );
188
  }
inc/setting_loginscreen.php CHANGED
@@ -1,12 +1,19 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'loginscreen' );
4
 
5
  // include js css
6
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' , 'thickbox' );
7
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
8
  wp_enqueue_style('thickbox');
9
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
10
 
11
  ?>
12
 
@@ -33,10 +40,10 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
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
 
@@ -150,7 +157,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
150
 
151
  <p class="submit reset">
152
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
153
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
154
  </p>
155
 
156
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'loginscreen' );
6
 
7
  // include js css
8
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' , 'thickbox' );
9
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
10
  wp_enqueue_style('thickbox');
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
 
18
  ?>
19
 
40
  <div id="postbox-container-1" class="postbox-container">
41
 
42
  <div class="stuffbox" id="usefulbox">
43
+ <h3><span class="hndle"><?php _e( 'Useful plugins' , $this->ltd ); ?></span></h3>
44
  <div class="inside">
45
  <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>
46
+ <p class="description"><?php _e( 'This plugin is that can be for customizing flexibly Login Screen.' , $this->ltd ); ?></p>
47
  </div>
48
  </div>
49
 
157
 
158
  <p class="submit reset">
159
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
160
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
161
  </p>
162
 
163
  </form>
inc/setting_manage_metabox.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'manage_metabox' );
4
  $Metaboxes = $this->get_data( "regist_metabox" );
5
  $CustomPosts = $this->get_custom_posts();
@@ -7,7 +9,12 @@ $CustomPosts = $this->get_custom_posts();
7
  // include js css
8
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
9
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
10
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
11
 
12
  ?>
13
 
@@ -241,7 +248,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
241
 
242
  <p class="submit reset">
243
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
244
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
245
  </p>
246
 
247
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'manage_metabox' );
6
  $Metaboxes = $this->get_data( "regist_metabox" );
7
  $CustomPosts = $this->get_custom_posts();
9
  // include js css
10
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
11
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
12
+
13
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
14
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
15
+ } else {
16
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
17
+ }
18
 
19
  ?>
20
 
248
 
249
  <p class="submit reset">
250
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
251
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
252
  </p>
253
 
254
  </form>
inc/setting_plugin_cap.php ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ global $wp_version;
4
+
5
+ $Data = $this->get_data( 'plugin_cap' );
6
+ $UserRoles = $this->get_user_role();
7
+
8
+ // include js css
9
+ $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
10
+ wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
+
18
+ ?>
19
+
20
+ <div class="wrap">
21
+ <div class="icon32" id="icon-tools"></div>
22
+ <?php echo $this->Msg; ?>
23
+ <h2><?php echo sprintf( __( '%1$s of %2$s %3$s' , $this->ltd ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ); ?></h2>
24
+ <p><?php echo sprintf( __( 'You can change the user role %2$s of %1$s settings.' , $this->ltd ) , $this->Name , __( 'Capabilities' ) ); ?></p>
25
+ <p><?php echo sprintf( __( 'Please choose the role to use the %s.' , $this->ltd ) , $this->Name ); ?></p>
26
+
27
+ <p>&nbsp;</p>
28
+
29
+ <form id="wauc_setting_plugin_cap" class="wauc_form" method="post" action="<?php echo remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ); ?>">
30
+ <input type="hidden" name="<?php echo $this->UPFN; ?>" value="Y" />
31
+ <?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
32
+ <input type="hidden" name="record_field" value="plugin_cap" />
33
+
34
+ <div id="poststuff">
35
+
36
+ <div id="post-body" class="metabox-holder columns-1">
37
+
38
+ <div id="postbox-container-1" class="postbox-container">
39
+
40
+ <div id="appearance_menus">
41
+ <div class="postbox">
42
+ <h3 class="hndle"><span><?php echo sprintf( __( 'Capability role for the %s' , $this->ltd ) , $this->Name ); ?></span></h3>
43
+ <div class="inside">
44
+ <table class="form-table">
45
+ <tbody>
46
+ <?php $field = 'edit_cap'; ?>
47
+ <tr>
48
+ <th>
49
+ <label><?php _e( 'Capabilities' ); ?></label>
50
+ </th>
51
+ <td>
52
+ <select name="data[<?php echo $field; ?>]">
53
+ <?php $SelectedCap = false; ?>
54
+ <?php if( !empty( $Data[$field] ) ) : ?>
55
+ <?php $SelectedCap = strip_tags( $Data[$field] ); ?>
56
+ <?php endif; ?>
57
+ <?php if( !empty( $SelectedCap ) ) : ?>
58
+ <option value=""><?php echo _x( 'Administrator' , 'User role' ); ?></option>
59
+ <?php else: ?>
60
+ <option value="" selected="selected"><?php echo _x( 'Administrator' , 'User role' ); ?></option>
61
+ <?php endif; ?>
62
+ <?php foreach( $UserRoles["administrator"]["capabilities"] as $cap => $v ) : ?>
63
+ <?php $Selected = false; ?>
64
+ <?php if( !empty( $SelectedCap ) ) : ?>
65
+ <?php if( $Data[$field] == $cap ) $Selected = 'selected="selected"'; ?>
66
+ <?php endif; ?>
67
+ <option value="<?php echo $cap; ?>" <?php echo $Selected; ?>><?php echo $cap; ?></option>
68
+ <?php endforeach; ?>
69
+ </select>
70
+ <p class="description"><?php _e( 'Default' ); ?>: <?php echo _x( 'Administrator' , 'User role' ); ?></p>
71
+ </td>
72
+ </tr>
73
+ </tbody>
74
+ </table>
75
+ </div>
76
+ </div>
77
+ </div>
78
+ </div>
79
+
80
+ <br class="clear">
81
+
82
+ </div>
83
+
84
+ </div>
85
+
86
+ <p class="submit">
87
+ <input type="submit" class="button-primary" name="update" value="<?php _e( 'Save' ); ?>" />
88
+ </p>
89
+
90
+ <p class="submit reset">
91
+ <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
92
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
93
+ </p>
94
+
95
+ </form>
96
+
97
+ </div>
inc/setting_post_add_edit.php CHANGED
@@ -1,12 +1,19 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'post_add_edit' );
4
  $comment_status = get_option( 'default_comment_status' );
5
 
6
  // include js css
7
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
8
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
9
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
10
 
11
  ?>
12
 
@@ -99,7 +106,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
99
 
100
  <p class="submit reset">
101
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
102
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
103
  </p>
104
 
105
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'post_add_edit' );
6
  $comment_status = get_option( 'default_comment_status' );
7
 
8
  // include js css
9
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
10
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
 
18
  ?>
19
 
106
 
107
  <p class="submit reset">
108
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
109
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
110
  </p>
111
 
112
  </form>
inc/setting_sidemenu.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
 
3
  global $menu, $submenu;
 
4
 
5
  $this->get_user_role();
6
  $Data = $this->get_data( 'sidemenu' );
@@ -9,7 +10,12 @@ $Data = $this->get_data( 'sidemenu' );
9
  $ReadedJs = array( 'jquery' , 'jquery-ui-draggable' , 'jquery-ui-droppable' , 'jquery-ui-sortable' , 'thickbox' );
10
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
11
  wp_enqueue_style('thickbox');
12
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
13
 
14
  ?>
15
 
@@ -106,7 +112,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
106
  <h3 class="hndle">
107
  <span><?php _e( 'Current menu' , $this->ltd ); ?></span>
108
  </h3>
109
- <div class="inside">
110
 
111
  <?php if( empty( $Data ) ) : ?>
112
 
@@ -223,7 +229,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
223
 
224
  <p class="submit reset">
225
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
226
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
227
  </p>
228
 
229
  </form>
1
  <?php
2
 
3
  global $menu, $submenu;
4
+ global $wp_version;
5
 
6
  $this->get_user_role();
7
  $Data = $this->get_data( 'sidemenu' );
10
  $ReadedJs = array( 'jquery' , 'jquery-ui-draggable' , 'jquery-ui-droppable' , 'jquery-ui-sortable' , 'thickbox' );
11
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
12
  wp_enqueue_style('thickbox');
13
+
14
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
16
+ } else {
17
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
18
+ }
19
 
20
  ?>
21
 
112
  <h3 class="hndle">
113
  <span><?php _e( 'Current menu' , $this->ltd ); ?></span>
114
  </h3>
115
+ <div class="inside widgets-holder-wrap">
116
 
117
  <?php if( empty( $Data ) ) : ?>
118
 
229
 
230
  <p class="submit reset">
231
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
232
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
233
  </p>
234
 
235
  </form>
inc/setting_site.php CHANGED
@@ -1,12 +1,19 @@
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'site' );
4
  $SiteSetting = get_option( $this->Record["site"] );
5
 
6
  // include js css
7
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
8
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
9
- wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
10
 
11
  ?>
12
 
@@ -158,7 +165,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
158
 
159
  <p class="submit reset">
160
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
161
- <input type="submit" class="button-secondary" name="reset" value="<?php _e('Reset'); ?>" />
162
  </p>
163
 
164
  </form>
1
  <?php
2
 
3
+ global $wp_version;
4
+
5
  $Data = $this->get_data( 'site' );
6
  $SiteSetting = get_option( $this->Record["site"] );
7
 
8
  // include js css
9
  $ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
10
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
11
+
12
+ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
13
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '-3.7.css', array() , $this->Ver );
14
+ } else {
15
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
16
+ }
17
 
18
  ?>
19
 
165
 
166
  <p class="submit reset">
167
  <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
168
+ <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
169
  </p>
170
 
171
  </form>
js/adminbar/resize.js ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function($){
2
+
3
+ var ResizeTimer = false;
4
+
5
+ $(window).resize(function() {
6
+ if (ResizeTimer !== false) {
7
+ clearTimeout(ResizeTimer);
8
+ }
9
+ ResizeTimer = setTimeout(function() {
10
+ sidebar_resize();
11
+ }, 200);
12
+ });
13
+
14
+ function sidebar_resize() {
15
+ var AdminBarHeight = $("#wpadminbar").height();
16
+ var WindowWidth = $(window).width();
17
+ if( WindowWidth > 600 ) {
18
+ $("#adminmenu").css("top", 0);
19
+ $("#wpbody").css("padding-top", 0);
20
+ } else {
21
+ $(".auto-fold #adminmenu").css("top", AdminBarHeight);
22
+ $(".auto-fold #wpbody").css("padding-top", AdminBarHeight);
23
+ }
24
+ }
25
+
26
+ sidebar_resize();
27
+
28
+ });
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-11-08 12:24+0900\n"
6
- "PO-Revision-Date: 2013-11-08 12:36+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,387 +21,543 @@ msgstr ""
21
  msgid "An excellent plugin to customize the management screens."
22
  msgstr "管理画面のカスタマイズに優れたプラグインです。"
23
 
24
- #: wp-admin-ui-customize.php:124
25
- #: wp-admin-ui-customize.php:160
26
- #: inc/reset_userrole.php:15
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
- #: wp-admin-ui-customize.php:151
31
- #: inc/setting_site.php:16
32
  msgid "Site Settings"
33
  msgstr "サイトの設定"
34
 
35
- #: wp-admin-ui-customize.php:152
36
- #: inc/setting_admin_general.php:16
37
  msgid "General Screen Settings"
38
  msgstr "一般設定"
39
 
40
- #: wp-admin-ui-customize.php:154
41
- #: inc/setting_admin_bar_menu.php:18
42
  msgid "Admin Bar Menu"
43
  msgstr "管理バー"
44
 
45
- #: wp-admin-ui-customize.php:155
46
- #: inc/setting_sidemenu.php:19
47
  msgid "Side Menu"
48
  msgstr "サイドメニュー"
49
 
50
- #: wp-admin-ui-customize.php:156
51
- #: inc/setting_manage_metabox.php:17
52
  msgid "Manage meta box"
53
  msgstr "メタボックス管理"
54
 
55
- #: wp-admin-ui-customize.php:157
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:158
61
- #: inc/setting_appearance_menus.php:15
62
  msgid "Appearance Menus Screen Setting"
63
  msgstr "外観メニュー画面の設定"
64
 
65
- #: wp-admin-ui-customize.php:159
66
- #: inc/setting_loginscreen.php:27
67
  msgid "Login Screen"
68
  msgstr "ログイン画面"
69
 
70
- #: wp-admin-ui-customize.php:321
 
 
 
 
 
 
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:346
76
  msgid "Apply user roles"
77
  msgstr "適用されるユーザー権限"
78
 
79
- #: wp-admin-ui-customize.php:603
80
- #: wp-admin-ui-customize.php:763
81
  msgid "Sub Menus"
82
  msgstr "サブメニュー"
83
 
84
- #: wp-admin-ui-customize.php:696
85
- #: wp-admin-ui-customize.php:718
86
  msgid "Menu Group"
87
  msgstr "メニューグループ"
88
 
89
- #: wp-admin-ui-customize.php:716
90
  msgid "Show only on front end."
91
  msgstr "フロントのみ表示"
92
 
93
- #: wp-admin-ui-customize.php:733
94
  msgid "If you want edit to name, please edit of translation file(PO)."
95
  msgstr "タイトルを変更したい場合は翻訳ファイル(PO)を編集してください。"
96
 
97
- #: wp-admin-ui-customize.php:925
98
  msgid "Front"
99
  msgstr "フロント"
100
 
101
- #: inc/list_variables.php:17
102
- #: inc/setting_admin_bar_menu.php:25
103
- #: inc/setting_admin_general.php:125
104
- #: inc/setting_admin_general.php:148
105
- #: inc/setting_loginscreen.php:64
106
- #: inc/setting_loginscreen.php:77
107
- #: inc/setting_loginscreen.php:89
108
- #: inc/setting_loginscreen.php:117
109
- #: inc/setting_loginscreen.php:129
110
- #: inc/setting_sidemenu.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  msgid "Shortcodes"
112
  msgstr "ショートコード一覧"
113
 
114
- #: inc/list_variables.php:42
115
  msgid "Blog name of logged in."
116
  msgstr "ログイン中のブログ名"
117
 
118
- #: inc/list_variables.php:51
119
  msgid "Blog URL of logged in."
120
  msgstr "ログイン中のブログURL"
121
 
122
- #: inc/list_variables.php:95
123
- #: inc/list_variables.php:102
124
- #: inc/list_variables.php:109
125
- #: inc/list_variables.php:116
126
  msgid "In your case."
127
  msgstr "これはあなたの場合です。"
128
 
129
- #: inc/reset_userrole.php:23
130
  msgid "Applied user roles"
131
  msgstr "適用されたユーザー権限"
132
 
133
- #: inc/reset_userrole.php:33
134
  msgid "You want to reset the user roles?"
135
  msgstr "ユーザー権限をリセットしてもよろしいですか?"
136
 
137
- #: inc/setting_admin_bar_menu.php:19
138
- #: inc/setting_sidemenu.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  msgid "Please change the menu by drag and drop."
140
  msgstr "ドラッグ&ドロップでメニューを変更してください。"
141
 
142
- #: inc/setting_admin_bar_menu.php:20
143
- #: inc/setting_sidemenu.php:22
144
  msgid "Notice: Please do not place the same multiple menu slug."
145
  msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
146
 
147
- #: inc/setting_admin_bar_menu.php:21
148
  msgid "Can be more than one custom menu."
149
  msgstr "カスタムメニューは複数設置できます。"
150
 
151
- #: inc/setting_admin_bar_menu.php:25
152
- #: inc/setting_admin_general.php:125
153
- #: inc/setting_admin_general.php:148
154
- #: inc/setting_loginscreen.php:64
155
- #: inc/setting_loginscreen.php:77
156
- #: inc/setting_loginscreen.php:89
157
- #: inc/setting_loginscreen.php:117
158
- #: inc/setting_loginscreen.php:129
159
- #: inc/setting_sidemenu.php:26
160
  msgid "Available Shortcodes"
161
  msgstr "利用可能なショートコード一覧"
162
 
163
- #: inc/setting_admin_bar_menu.php:33
164
  msgid "Sub-menu can to settings to four levels."
165
  msgstr "サブメニューは4階層まで設定できます。"
166
 
167
- #: inc/setting_admin_bar_menu.php:86
168
- #: inc/setting_admin_general.php:181
169
- #: inc/setting_appearance_menus.php:90
170
- #: inc/setting_dashboard.php:176
171
- #: inc/setting_default.php:122
172
- #: inc/setting_loginscreen.php:152
173
- #: inc/setting_manage_metabox.php:243
174
- #: inc/setting_post_add_edit.php:101
175
- #: inc/setting_sidemenu.php:225
176
- #: inc/setting_site.php:160
 
177
  msgid "Reset all settings?"
178
  msgstr "リセットしますか?"
179
 
180
- #: inc/setting_admin_bar_menu.php:92
181
- #: inc/setting_sidemenu.php:21
182
- #: inc/setting_sidemenu.php:42
183
  msgid "Menu items that can be added"
184
  msgstr "追加できるメニュー一覧"
185
 
186
- #: inc/setting_admin_general.php:34
187
  msgid "Notifications"
188
  msgstr "通知"
189
 
190
- #: inc/setting_admin_general.php:40
191
  msgid "WordPress core update notice"
192
  msgstr "WordPress コアアップデート通知"
193
 
194
- #: inc/setting_admin_general.php:46
195
- #: inc/setting_admin_general.php:57
196
- #: inc/setting_admin_general.php:68
197
  msgid "Not notified"
198
  msgstr "通知しない"
199
 
200
- #: inc/setting_admin_general.php:51
201
  msgid "Plugin update notice"
202
  msgstr "プラグイン アップデート通知"
203
 
204
- #: inc/setting_admin_general.php:62
205
  msgid "Theme update notice"
206
  msgstr "テーマ アップデート通知"
207
 
208
- #: inc/setting_admin_general.php:78
209
  msgid "Screen Options and Help Tab"
210
  msgstr "表示オプションとヘルプタブ"
211
 
212
- #: inc/setting_admin_general.php:117
213
- #: inc/setting_loginscreen.php:123
214
  msgid "Footer text"
215
  msgstr "フッターテキスト"
216
 
217
- #: inc/setting_admin_general.php:142
218
- #: inc/setting_loginscreen.php:111
219
  msgid "CSS file to load"
220
  msgstr "CSSファイルを読み込む"
221
 
222
- #: inc/setting_admin_general.php:155
223
  msgid "Title tag for Admin screen"
224
  msgstr "管理画面のタイトルタグ"
225
 
226
- #: inc/setting_admin_general.php:160
227
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
228
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
229
 
230
- #: inc/setting_appearance_menus.php:40
231
  msgid "Create a new menu"
232
  msgstr "新規メニュー作成"
233
 
234
- #: inc/setting_appearance_menus.php:46
235
- #: inc/setting_appearance_menus.php:64
236
  msgid "This is useful when you want to use only the menus have been created."
237
  msgstr "作成済みのメニューだけを使用する時に便利です。"
238
 
239
- #: inc/setting_dashboard.php:33
240
  msgid "Meta boxes"
241
  msgstr "メタボックス"
242
 
243
- #: inc/setting_dashboard.php:40
 
244
  msgid "Welcome Panel"
245
  msgstr "ウェルカムパネル"
246
 
247
- #: inc/setting_dashboard.php:143
248
- msgid "Other"
249
- msgstr "その他"
 
 
 
250
 
251
- #: inc/setting_dashboard.php:150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  msgid "Meta box movement restriction"
253
  msgstr "メタボックスの移動制限"
254
 
255
- #: inc/setting_dashboard.php:155
256
  msgid "Lock meta box positions"
257
  msgstr "メタボックスを移動させない"
258
 
259
- #: inc/setting_default.php:16
260
  msgid "Customize the UI of the management screen for all users."
261
  msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
262
 
263
- #: inc/setting_default.php:17
264
  msgid "Please select the user roles that all settings will apply to."
265
  msgstr "設定を適用する権限を選んでください。"
266
 
267
- #: inc/setting_default.php:18
268
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
269
  msgstr "ユーザー権限ごとに設定したい場合は Multiple Add-on を使用してください。"
270
 
271
- #: inc/setting_loginscreen.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
  msgid "Login Screen Settings"
273
  msgstr "ログイン画面の設定"
274
 
275
- #: inc/setting_loginscreen.php:25
276
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
277
  msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
278
 
279
- #: inc/setting_loginscreen.php:27
280
  msgid "Show Login Screen"
281
  msgstr "ログイン画面を表示"
282
 
283
- #: inc/setting_loginscreen.php:51
 
 
 
 
284
  msgid "Login Form"
285
  msgstr "ログインフォーム"
286
 
287
- #: inc/setting_loginscreen.php:58
288
  msgid "The link after clicking on the logo"
289
  msgstr "ロゴをクリック後のリンク"
290
 
291
- #: inc/setting_loginscreen.php:71
292
  msgid "Logo Title"
293
  msgstr "ロゴタイトル"
294
 
295
- #: inc/setting_loginscreen.php:83
296
  msgid "Logo Image path"
297
  msgstr "ロゴ画像のパス"
298
 
299
- #: inc/setting_manage_metabox.php:18
300
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
301
  msgstr "メタボックスを読み込むには編集画面にアクセスしてください。"
302
 
303
- #: inc/setting_manage_metabox.php:19
304
  msgid "Please enter if you want to change of Metabox label name."
305
  msgstr "メタボックス名を変更したい時だけ入力してください。"
306
 
307
- #: inc/setting_manage_metabox.php:42
308
- #: inc/setting_manage_metabox.php:105
309
- #: inc/setting_manage_metabox.php:176
310
- msgid "Could not read the meta box."
311
- msgstr "メタボックスの読み込みができませんでした。"
312
-
313
- #: inc/setting_manage_metabox.php:43
314
- #: inc/setting_manage_metabox.php:106
315
- #: inc/setting_manage_metabox.php:177
316
- #, php-format
317
- msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
318
- msgstr "<strong>%s</strong> 画面を一度表示すると自動でメタボックスが読み込まれます。"
319
-
320
- #: inc/setting_manage_metabox.php:55
321
- #: inc/setting_manage_metabox.php:118
322
- #: inc/setting_manage_metabox.php:189
323
- msgid "Change metabox title to"
324
- msgstr "メタボックス名を変更"
325
-
326
- #: inc/setting_manage_metabox.php:81
327
- #: inc/setting_manage_metabox.php:143
328
- #: inc/setting_post_add_edit.php:48
329
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
330
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
331
 
332
- #: inc/setting_manage_metabox.php:83
333
- #: inc/setting_manage_metabox.php:145
334
  msgid "Please set from here if you want to view the comments on screen."
335
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
336
 
337
- #: inc/setting_post_add_edit.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
339
  msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
340
 
341
- #: inc/setting_post_add_edit.php:49
342
  msgid "Please select if you want to display the comments on Site."
343
  msgstr "サイトでコメントを表示させたい場合選択してください。"
344
 
345
- #: inc/setting_post_add_edit.php:50
346
  #, php-format
347
  msgid "However, this will follow the setting of %s."
348
  msgstr "ただし、これは%sの設定に従います。"
349
 
350
- #: inc/setting_post_add_edit.php:52
351
  #, php-format
352
  msgid "Please select the %s"
353
  msgstr "%s を選択してください。"
354
 
355
- #: inc/setting_post_add_edit.php:52
356
- msgid "Allow people to post comments on new articles"
357
- msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
358
-
359
- #: inc/setting_post_add_edit.php:78
360
  msgid "Only appears when you have settings to the default permalink."
361
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
362
 
363
- #: inc/setting_sidemenu.php:21
364
  #, php-format
365
  msgid "New plugin menus will be added to the <strong>%s</strong>."
366
  msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
367
 
368
- #: inc/setting_sidemenu.php:45
369
- msgid "Sepalator"
370
- msgstr "区切り線"
371
-
372
- #: inc/setting_sidemenu.php:107
373
- msgid "Current menu"
374
- msgstr "現在のメニュー"
375
-
376
- #: inc/setting_site.php:48
377
- #: inc/setting_site.php:61
378
- #: inc/setting_site.php:74
379
- #: inc/setting_site.php:87
380
- #: inc/setting_site.php:100
381
  msgid "Tag to be output"
382
  msgstr "出力されるタグ"
383
 
384
- #: inc/setting_site.php:60
385
  msgid "Please display when using the Windows Live Writer."
386
  msgstr "Windows Live Writer を使う場合は表示させてください。"
387
 
388
- #: inc/setting_site.php:73
389
  msgid "Information of XML-rpc"
390
  msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
391
 
392
- #: inc/setting_site.php:86
393
  msgid "Sitewide feed"
394
  msgstr "サイト全体のフィードリンク"
395
 
396
- #: inc/setting_site.php:99
397
  msgid "Extra feed"
398
  msgstr "その他のフィードリンク"
399
 
400
- #: inc/setting_site.php:127
401
  msgid "Hide the Admin bar on the front end"
402
  msgstr "サイトで管理バーを非表示"
403
 
404
- #: inc/setting_site.php:127
405
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
406
  msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
407
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-29 01:38+0900\n"
6
+ "PO-Revision-Date: 2013-12-29 02:02+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:144
25
+ #: wp-admin-ui-customize.php:183
26
+ #: inc/reset_userrole.php:22
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
+ #: wp-admin-ui-customize.php:173
31
+ #: inc/setting_site.php:23
32
  msgid "Site Settings"
33
  msgstr "サイトの設定"
34
 
35
+ #: wp-admin-ui-customize.php:174
36
+ #: inc/setting_admin_general.php:23
37
  msgid "General Screen Settings"
38
  msgstr "一般設定"
39
 
40
+ #: wp-admin-ui-customize.php:176
41
+ #: inc/setting_admin_bar_menu.php:25
42
  msgid "Admin Bar Menu"
43
  msgstr "管理バー"
44
 
45
+ #: wp-admin-ui-customize.php:177
46
+ #: inc/setting_sidemenu.php:25
47
  msgid "Side Menu"
48
  msgstr "サイドメニュー"
49
 
50
+ #: wp-admin-ui-customize.php:178
51
+ #: inc/setting_manage_metabox.php:24
52
  msgid "Manage meta box"
53
  msgstr "メタボックス管理"
54
 
55
+ #: wp-admin-ui-customize.php:179
56
+ #: inc/setting_post_add_edit.php:23
57
  msgid "Add New Post and Edit Post Screen Setting"
58
  msgstr "新規投稿と投稿編集の設定"
59
 
60
+ #: wp-admin-ui-customize.php:180
61
+ #: inc/setting_appearance_menus.php:22
62
  msgid "Appearance Menus Screen Setting"
63
  msgstr "外観メニュー画面の設定"
64
 
65
+ #: wp-admin-ui-customize.php:181
66
+ #: inc/setting_loginscreen.php:34
67
  msgid "Login Screen"
68
  msgstr "ログイン画面"
69
 
70
+ #: wp-admin-ui-customize.php:182
71
+ #: inc/setting_plugin_cap.php:23
72
+ #, php-format
73
+ msgid "%1$s of %2$s %3$s"
74
+ msgstr "%2$s %3$sの%1$s"
75
+
76
+ #: wp-admin-ui-customize.php:387
77
  #, php-format
78
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
79
  msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
80
 
81
+ #: wp-admin-ui-customize.php:412
82
  msgid "Apply user roles"
83
  msgstr "適用されるユーザー権限"
84
 
85
+ #: wp-admin-ui-customize.php:756
86
+ #: wp-admin-ui-customize.php:929
87
  msgid "Sub Menus"
88
  msgstr "サブメニュー"
89
 
90
+ #: wp-admin-ui-customize.php:851
91
+ #: wp-admin-ui-customize.php:873
92
  msgid "Menu Group"
93
  msgstr "メニューグループ"
94
 
95
+ #: wp-admin-ui-customize.php:871
96
  msgid "Show only on front end."
97
  msgstr "フロントのみ表示"
98
 
99
+ #: wp-admin-ui-customize.php:891
100
  msgid "If you want edit to name, please edit of translation file(PO)."
101
  msgstr "タイトルを変更したい場合は翻訳ファイル(PO)を編集してください。"
102
 
103
+ #: wp-admin-ui-customize.php:1091
104
  msgid "Front"
105
  msgstr "フロント"
106
 
107
+ #: wp-admin-ui-customize.php:2248
108
+ #: inc/setting_default.php:185
109
+ msgid "Thank you for your donation."
110
+ msgstr "寄付いただきありがとうございます。"
111
+
112
+ #: wp-admin-ui-customize.php:2263
113
+ msgid "Thank you for considering donate."
114
+ msgstr "寄付のご検討宜しくお願いします。"
115
+
116
+ #: wp-admin-ui-customize.php:2263
117
+ #: inc/setting_default.php:37
118
+ msgid "Donate"
119
+ msgstr "寄付について"
120
+
121
+ #: inc/list_variables.php:20
122
+ #: inc/setting_admin_bar_menu.php:32
123
+ #: inc/setting_admin_general.php:132
124
+ #: inc/setting_admin_general.php:155
125
+ #: inc/setting_loginscreen.php:71
126
+ #: inc/setting_loginscreen.php:84
127
+ #: inc/setting_loginscreen.php:96
128
+ #: inc/setting_loginscreen.php:124
129
+ #: inc/setting_loginscreen.php:136
130
+ #: inc/setting_sidemenu.php:32
131
  msgid "Shortcodes"
132
  msgstr "ショートコード一覧"
133
 
134
+ #: inc/list_variables.php:45
135
  msgid "Blog name of logged in."
136
  msgstr "ログイン中のブログ名"
137
 
138
+ #: inc/list_variables.php:54
139
  msgid "Blog URL of logged in."
140
  msgstr "ログイン中のブログURL"
141
 
142
+ #: inc/list_variables.php:108
143
+ #: inc/list_variables.php:115
144
+ #: inc/list_variables.php:122
145
+ #: inc/list_variables.php:129
146
  msgid "In your case."
147
  msgstr "これはあなたの場合です。"
148
 
149
+ #: inc/reset_userrole.php:30
150
  msgid "Applied user roles"
151
  msgstr "適用されたユーザー権限"
152
 
153
+ #: inc/reset_userrole.php:40
154
  msgid "You want to reset the user roles?"
155
  msgstr "ユーザー権限をリセットしてもよろしいですか?"
156
 
157
+ #: inc/reset_userrole.php:42
158
+ #: inc/setting_admin_bar_menu.php:94
159
+ #: inc/setting_admin_general.php:189
160
+ #: inc/setting_appearance_menus.php:99
161
+ #: inc/setting_dashboard.php:250
162
+ #: inc/setting_default.php:130
163
+ #: inc/setting_loginscreen.php:160
164
+ #: inc/setting_manage_metabox.php:251
165
+ #: inc/setting_plugin_cap.php:92
166
+ #: inc/setting_post_add_edit.php:109
167
+ #: inc/setting_sidemenu.php:232
168
+ #: inc/setting_site.php:168
169
+ msgid "Reset settings"
170
+ msgstr "設定をリセット"
171
+
172
+ #: inc/setting_admin_bar_menu.php:26
173
+ #: inc/setting_sidemenu.php:26
174
  msgid "Please change the menu by drag and drop."
175
  msgstr "ドラッグ&ドロップでメニューを変更してください。"
176
 
177
+ #: inc/setting_admin_bar_menu.php:27
178
+ #: inc/setting_sidemenu.php:28
179
  msgid "Notice: Please do not place the same multiple menu slug."
180
  msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
181
 
182
+ #: inc/setting_admin_bar_menu.php:28
183
  msgid "Can be more than one custom menu."
184
  msgstr "カスタムメニューは複数設置できます。"
185
 
186
+ #: inc/setting_admin_bar_menu.php:32
187
+ #: inc/setting_admin_general.php:132
188
+ #: inc/setting_admin_general.php:155
189
+ #: inc/setting_loginscreen.php:71
190
+ #: inc/setting_loginscreen.php:84
191
+ #: inc/setting_loginscreen.php:96
192
+ #: inc/setting_loginscreen.php:124
193
+ #: inc/setting_loginscreen.php:136
194
+ #: inc/setting_sidemenu.php:32
195
  msgid "Available Shortcodes"
196
  msgstr "利用可能なショートコード一覧"
197
 
198
+ #: inc/setting_admin_bar_menu.php:40
199
  msgid "Sub-menu can to settings to four levels."
200
  msgstr "サブメニューは4階層まで設定できます。"
201
 
202
+ #: inc/setting_admin_bar_menu.php:93
203
+ #: inc/setting_admin_general.php:188
204
+ #: inc/setting_appearance_menus.php:98
205
+ #: inc/setting_dashboard.php:249
206
+ #: inc/setting_default.php:129
207
+ #: inc/setting_loginscreen.php:159
208
+ #: inc/setting_manage_metabox.php:250
209
+ #: inc/setting_plugin_cap.php:91
210
+ #: inc/setting_post_add_edit.php:108
211
+ #: inc/setting_sidemenu.php:231
212
+ #: inc/setting_site.php:167
213
  msgid "Reset all settings?"
214
  msgstr "リセットしますか?"
215
 
216
+ #: inc/setting_admin_bar_menu.php:99
217
+ #: inc/setting_sidemenu.php:27
218
+ #: inc/setting_sidemenu.php:48
219
  msgid "Menu items that can be added"
220
  msgstr "追加できるメニュー一覧"
221
 
222
+ #: inc/setting_admin_general.php:41
223
  msgid "Notifications"
224
  msgstr "通知"
225
 
226
+ #: inc/setting_admin_general.php:47
227
  msgid "WordPress core update notice"
228
  msgstr "WordPress コアアップデート通知"
229
 
230
+ #: inc/setting_admin_general.php:53
231
+ #: inc/setting_admin_general.php:64
232
+ #: inc/setting_admin_general.php:75
233
  msgid "Not notified"
234
  msgstr "通知しない"
235
 
236
+ #: inc/setting_admin_general.php:58
237
  msgid "Plugin update notice"
238
  msgstr "プラグイン アップデート通知"
239
 
240
+ #: inc/setting_admin_general.php:69
241
  msgid "Theme update notice"
242
  msgstr "テーマ アップデート通知"
243
 
244
+ #: inc/setting_admin_general.php:85
245
  msgid "Screen Options and Help Tab"
246
  msgstr "表示オプションとヘルプタブ"
247
 
248
+ #: inc/setting_admin_general.php:124
249
+ #: inc/setting_loginscreen.php:130
250
  msgid "Footer text"
251
  msgstr "フッターテキスト"
252
 
253
+ #: inc/setting_admin_general.php:149
254
+ #: inc/setting_loginscreen.php:118
255
  msgid "CSS file to load"
256
  msgstr "CSSファイルを読み込む"
257
 
258
+ #: inc/setting_admin_general.php:162
259
  msgid "Title tag for Admin screen"
260
  msgstr "管理画面のタイトルタグ"
261
 
262
+ #: inc/setting_admin_general.php:167
263
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
264
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
265
 
266
+ #: inc/setting_appearance_menus.php:47
267
  msgid "Create a new menu"
268
  msgstr "新規メニュー作成"
269
 
270
+ #: inc/setting_appearance_menus.php:53
271
+ #: inc/setting_appearance_menus.php:72
272
  msgid "This is useful when you want to use only the menus have been created."
273
  msgstr "作成済みのメニューだけを使用する時に便利です。"
274
 
275
+ #: inc/setting_dashboard.php:41
276
  msgid "Meta boxes"
277
  msgstr "メタボックス"
278
 
279
+ #: inc/setting_dashboard.php:51
280
+ #: inc/setting_dashboard.php:173
281
  msgid "Welcome Panel"
282
  msgstr "ウェルカムパネル"
283
 
284
+ #: inc/setting_dashboard.php:154
285
+ #: inc/setting_manage_metabox.php:49
286
+ #: inc/setting_manage_metabox.php:112
287
+ #: inc/setting_manage_metabox.php:183
288
+ msgid "Could not read the meta box."
289
+ msgstr "メタボックスの読み込みができませんでした。"
290
 
291
+ #: inc/setting_dashboard.php:155
292
+ #: inc/setting_manage_metabox.php:50
293
+ #: inc/setting_manage_metabox.php:113
294
+ #: inc/setting_manage_metabox.php:184
295
+ #, php-format
296
+ msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
297
+ msgstr "<strong>%s</strong> 画面を一度表示すると自動でメタボックスが読み込まれます。"
298
+
299
+ #: inc/setting_dashboard.php:166
300
+ #: inc/setting_manage_metabox.php:62
301
+ #: inc/setting_manage_metabox.php:125
302
+ #: inc/setting_manage_metabox.php:196
303
+ msgid "Change metabox title to"
304
+ msgstr "メタボックス名を変更"
305
+
306
+ #: inc/setting_dashboard.php:223
307
  msgid "Meta box movement restriction"
308
  msgstr "メタボックスの移動制限"
309
 
310
+ #: inc/setting_dashboard.php:228
311
  msgid "Lock meta box positions"
312
  msgstr "メタボックスを移動させない"
313
 
314
+ #: inc/setting_default.php:23
315
  msgid "Customize the UI of the management screen for all users."
316
  msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
317
 
318
+ #: inc/setting_default.php:24
319
  msgid "Please select the user roles that all settings will apply to."
320
  msgstr "設定を適用する権限を選んでください。"
321
 
322
+ #: inc/setting_default.php:25
323
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
324
  msgstr "ユーザー権限ごとに設定したい場合は Multiple Add-on を使用してください。"
325
 
326
+ #: inc/setting_default.php:38
327
+ 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."
328
+ msgstr "このプラグインを使って満足できましたか?<br />日本の法律では、日本の新PayPalユーザーは寄付ボタンを作成することはできません。<br />なので寄付の代わりとしてこのプラグインを購入して欲しいです。"
329
+
330
+ #: inc/setting_default.php:45
331
+ msgid "Features"
332
+ msgstr "機能について"
333
+
334
+ #: inc/setting_default.php:46
335
+ 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."
336
+ msgstr "Line Break First and Endプラグインは、TinyMCEのビジュアルエディタで、改行を入力することが出来なくなった時に便利なプラグインです。"
337
+
338
+ #: inc/setting_default.php:49
339
+ msgid "The primary use of donations"
340
+ msgstr "寄付の主な使用目的"
341
+
342
+ #: inc/setting_default.php:51
343
+ msgid "Liquidation of time and value"
344
+ msgstr "時間と価値の清算"
345
+
346
+ #: inc/setting_default.php:52
347
+ msgid "Additional suggestions feature"
348
+ msgstr "機能提案の追加"
349
+
350
+ #: inc/setting_default.php:53
351
+ msgid "Maintain motivation"
352
+ msgstr "モチベーション維持"
353
+
354
+ #: inc/setting_default.php:54
355
+ msgid "Ensure time as the father of Sunday"
356
+ msgstr "日曜日の父親としての時間確保"
357
+
358
+ #: inc/setting_default.php:61
359
+ msgid "About plugin"
360
+ msgstr "プラグインについて"
361
+
362
+ #: inc/setting_default.php:63
363
+ msgid "Version checked"
364
+ msgstr "動作確認済み"
365
+
366
+ #: inc/setting_default.php:65
367
+ msgid "Plugin's site"
368
+ msgstr "プラグインのサイト"
369
+
370
+ #: inc/setting_default.php:66
371
+ msgid "Developer's site"
372
+ msgstr "開発者のサイト"
373
+
374
+ #: inc/setting_default.php:68
375
+ msgid "Reviews"
376
+ msgstr "レビュー"
377
+
378
+ #: inc/setting_default.php:76
379
+ #: inc/setting_loginscreen.php:43
380
+ msgid "Useful plugins"
381
+ msgstr "便利なプラグイン"
382
+
383
+ #: inc/setting_default.php:79
384
+ msgid "This add-on is simply settings of multi user roles."
385
+ msgstr "ユーザー権限ごとに別々の設定を簡単にできるアドオンです。"
386
+
387
+ #: inc/setting_default.php:81
388
+ msgid "This add-on is Import/Export easily of the settings data."
389
+ msgstr "このアドオンは、WP Admin UI Customizeの設定データをインポート&エクスポートする為のアドオンです。"
390
+
391
+ #: inc/setting_default.php:83
392
+ msgid "This add-on is an add-on to unify the management screen of all sites."
393
+ msgstr "このアドオンは、全てのサイトの管理画面を統一する為のアドオンです。"
394
+
395
+ #: inc/setting_default.php:85
396
+ msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
397
+ msgstr "投稿と固定ページ一覧をカスタマイズします。カスタム投稿タイプも。カラム一覧を自由にカスタマイズできます。"
398
+
399
+ #: inc/setting_default.php:87
400
+ msgid "Announce to display the dashboard. Change the display to a different user role."
401
+ msgstr "ダッシュボードにお知らせを表示します。ユーザーの権限ごとに表示を変更できます。"
402
+
403
+ #: inc/setting_default.php:89
404
+ 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."
405
+ msgstr "オプション値作成プラグインです。作成したオプション値は、ショートコードとして記事に、テンプレートタグとしても使用できます。"
406
+
407
+ #: inc/setting_default.php:138
408
+ msgid "If you have already donated to."
409
+ msgstr "寄付済みの方へ。"
410
+
411
+ #: inc/setting_default.php:139
412
+ msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
413
+ msgstr "'Line Break First and End download page' ダウンロードページに記載されていた寄付削除キーを入力して、寄付メッセージを削除できます。"
414
+
415
+ #: inc/setting_default.php:142
416
+ msgid "Donation delete key"
417
+ msgstr "寄付メッセージ削除キー"
418
+
419
+ #: inc/setting_default.php:150
420
+ msgid "Have you want to customize?"
421
+ msgstr "何かカスタマイズしたい事はありますか?"
422
+
423
+ #: inc/setting_default.php:156
424
+ msgid "I am good at Admin Screen Customize."
425
+ msgstr "私は管理画面のカスタマイズを得意とします。"
426
+
427
+ #: inc/setting_default.php:157
428
+ msgid "Please consider the request to me if it is good."
429
+ msgstr "宜しければご検討ください。"
430
+
431
+ #: inc/setting_default.php:159
432
+ msgid "Example Customize"
433
+ msgstr "カスタマイズ例"
434
+
435
+ #: inc/setting_default.php:160
436
+ msgid "Contact me"
437
+ msgstr "お問い合わせ"
438
+
439
+ #: inc/setting_loginscreen.php:23
440
  msgid "Login Screen Settings"
441
  msgstr "ログイン画面の設定"
442
 
443
+ #: inc/setting_loginscreen.php:32
444
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
445
  msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
446
 
447
+ #: inc/setting_loginscreen.php:34
448
  msgid "Show Login Screen"
449
  msgstr "ログイン画面を表示"
450
 
451
+ #: inc/setting_loginscreen.php:46
452
+ msgid "This plugin is that can be for customizing flexibly Login Screen."
453
+ msgstr "柔軟にログイン画面をカスタマイズするプラグインです。"
454
+
455
+ #: inc/setting_loginscreen.php:58
456
  msgid "Login Form"
457
  msgstr "ログインフォーム"
458
 
459
+ #: inc/setting_loginscreen.php:65
460
  msgid "The link after clicking on the logo"
461
  msgstr "ロゴをクリック後のリンク"
462
 
463
+ #: inc/setting_loginscreen.php:78
464
  msgid "Logo Title"
465
  msgstr "ロゴタイトル"
466
 
467
+ #: inc/setting_loginscreen.php:90
468
  msgid "Logo Image path"
469
  msgstr "ロゴ画像のパス"
470
 
471
+ #: inc/setting_manage_metabox.php:25
472
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
473
  msgstr "メタボックスを読み込むには編集画面にアクセスしてください。"
474
 
475
+ #: inc/setting_manage_metabox.php:26
476
  msgid "Please enter if you want to change of Metabox label name."
477
  msgstr "メタボックス名を変更したい時だけ入力してください。"
478
 
479
+ #: inc/setting_manage_metabox.php:88
480
+ #: inc/setting_manage_metabox.php:150
481
+ #: inc/setting_post_add_edit.php:55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
483
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
484
 
485
+ #: inc/setting_manage_metabox.php:90
486
+ #: inc/setting_manage_metabox.php:152
487
  msgid "Please set from here if you want to view the comments on screen."
488
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
489
 
490
+ #: inc/setting_plugin_cap.php:24
491
+ #, php-format
492
+ msgid "You can change the user role %2$s of %1$s settings."
493
+ msgstr "%1$sの設定%2$sを変更することができます。"
494
+
495
+ #: inc/setting_plugin_cap.php:25
496
+ #, php-format
497
+ msgid "Please choose the role to use the %s."
498
+ msgstr "%s を動作させる権限を選択してください。"
499
+
500
+ #: inc/setting_plugin_cap.php:42
501
+ #, php-format
502
+ msgid "Capability role for the %s"
503
+ msgstr "%s を動作させる権限"
504
+
505
+ #: inc/setting_post_add_edit.php:48
506
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
507
  msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
508
 
509
+ #: inc/setting_post_add_edit.php:56
510
  msgid "Please select if you want to display the comments on Site."
511
  msgstr "サイトでコメントを表示させたい場合選択してください。"
512
 
513
+ #: inc/setting_post_add_edit.php:57
514
  #, php-format
515
  msgid "However, this will follow the setting of %s."
516
  msgstr "ただし、これは%sの設定に従います。"
517
 
518
+ #: inc/setting_post_add_edit.php:59
519
  #, php-format
520
  msgid "Please select the %s"
521
  msgstr "%s を選択してください。"
522
 
523
+ #: inc/setting_post_add_edit.php:85
 
 
 
 
524
  msgid "Only appears when you have settings to the default permalink."
525
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
526
 
527
+ #: inc/setting_sidemenu.php:27
528
  #, php-format
529
  msgid "New plugin menus will be added to the <strong>%s</strong>."
530
  msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
531
 
532
+ #: inc/setting_site.php:55
533
+ #: inc/setting_site.php:68
534
+ #: inc/setting_site.php:81
535
+ #: inc/setting_site.php:94
536
+ #: inc/setting_site.php:107
 
 
 
 
 
 
 
 
537
  msgid "Tag to be output"
538
  msgstr "出力されるタグ"
539
 
540
+ #: inc/setting_site.php:67
541
  msgid "Please display when using the Windows Live Writer."
542
  msgstr "Windows Live Writer を使う場合は表示させてください。"
543
 
544
+ #: inc/setting_site.php:80
545
  msgid "Information of XML-rpc"
546
  msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
547
 
548
+ #: inc/setting_site.php:93
549
  msgid "Sitewide feed"
550
  msgstr "サイト全体のフィードリンク"
551
 
552
+ #: inc/setting_site.php:106
553
  msgid "Extra feed"
554
  msgstr "その他のフィードリンク"
555
 
556
+ #: inc/setting_site.php:134
557
  msgid "Hide the Admin bar on the front end"
558
  msgstr "サイトで管理バーを非表示"
559
 
560
+ #: inc/setting_site.php:134
561
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
562
  msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
563
 
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-11-08 12:24+0900\n"
6
- "PO-Revision-Date: 2013-11-08 12:24+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,387 +18,543 @@ msgstr ""
18
  msgid "An excellent plugin to customize the management screens."
19
  msgstr ""
20
 
21
- #: wp-admin-ui-customize.php:124
22
- #: wp-admin-ui-customize.php:160
23
- #: inc/reset_userrole.php:15
24
  msgid "Reset User Roles"
25
  msgstr ""
26
 
27
- #: wp-admin-ui-customize.php:151
28
- #: inc/setting_site.php:16
29
  msgid "Site Settings"
30
  msgstr ""
31
 
32
- #: wp-admin-ui-customize.php:152
33
- #: inc/setting_admin_general.php:16
34
  msgid "General Screen Settings"
35
  msgstr ""
36
 
37
- #: wp-admin-ui-customize.php:154
38
- #: inc/setting_admin_bar_menu.php:18
39
  msgid "Admin Bar Menu"
40
  msgstr ""
41
 
42
- #: wp-admin-ui-customize.php:155
43
- #: inc/setting_sidemenu.php:19
44
  msgid "Side Menu"
45
  msgstr ""
46
 
47
- #: wp-admin-ui-customize.php:156
48
- #: inc/setting_manage_metabox.php:17
49
  msgid "Manage meta box"
50
  msgstr ""
51
 
52
- #: wp-admin-ui-customize.php:157
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:158
58
- #: inc/setting_appearance_menus.php:15
59
  msgid "Appearance Menus Screen Setting"
60
  msgstr ""
61
 
62
- #: wp-admin-ui-customize.php:159
63
- #: inc/setting_loginscreen.php:27
64
  msgid "Login Screen"
65
  msgstr ""
66
 
67
- #: wp-admin-ui-customize.php:321
 
 
 
 
 
 
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:346
73
  msgid "Apply user roles"
74
  msgstr ""
75
 
76
- #: wp-admin-ui-customize.php:603
77
- #: wp-admin-ui-customize.php:763
78
  msgid "Sub Menus"
79
  msgstr ""
80
 
81
- #: wp-admin-ui-customize.php:696
82
- #: wp-admin-ui-customize.php:718
83
  msgid "Menu Group"
84
  msgstr ""
85
 
86
- #: wp-admin-ui-customize.php:716
87
  msgid "Show only on front end."
88
  msgstr ""
89
 
90
- #: wp-admin-ui-customize.php:733
91
  msgid "If you want edit to name, please edit of translation file(PO)."
92
  msgstr ""
93
 
94
- #: wp-admin-ui-customize.php:925
95
  msgid "Front"
96
  msgstr ""
97
 
98
- #: inc/list_variables.php:17
99
- #: inc/setting_admin_bar_menu.php:25
100
- #: inc/setting_admin_general.php:125
101
- #: inc/setting_admin_general.php:148
102
- #: inc/setting_loginscreen.php:64
103
- #: inc/setting_loginscreen.php:77
104
- #: inc/setting_loginscreen.php:89
105
- #: inc/setting_loginscreen.php:117
106
- #: inc/setting_loginscreen.php:129
107
- #: inc/setting_sidemenu.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  msgid "Shortcodes"
109
  msgstr ""
110
 
111
- #: inc/list_variables.php:42
112
  msgid "Blog name of logged in."
113
  msgstr ""
114
 
115
- #: inc/list_variables.php:51
116
  msgid "Blog URL of logged in."
117
  msgstr ""
118
 
119
- #: inc/list_variables.php:95
120
- #: inc/list_variables.php:102
121
- #: inc/list_variables.php:109
122
- #: inc/list_variables.php:116
123
  msgid "In your case."
124
  msgstr ""
125
 
126
- #: inc/reset_userrole.php:23
127
  msgid "Applied user roles"
128
  msgstr ""
129
 
130
- #: inc/reset_userrole.php:33
131
  msgid "You want to reset the user roles?"
132
  msgstr ""
133
 
134
- #: inc/setting_admin_bar_menu.php:19
135
- #: inc/setting_sidemenu.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  msgid "Please change the menu by drag and drop."
137
  msgstr ""
138
 
139
- #: inc/setting_admin_bar_menu.php:20
140
- #: inc/setting_sidemenu.php:22
141
  msgid "Notice: Please do not place the same multiple menu slug."
142
  msgstr ""
143
 
144
- #: inc/setting_admin_bar_menu.php:21
145
  msgid "Can be more than one custom menu."
146
  msgstr ""
147
 
148
- #: inc/setting_admin_bar_menu.php:25
149
- #: inc/setting_admin_general.php:125
150
- #: inc/setting_admin_general.php:148
151
- #: inc/setting_loginscreen.php:64
152
- #: inc/setting_loginscreen.php:77
153
- #: inc/setting_loginscreen.php:89
154
- #: inc/setting_loginscreen.php:117
155
- #: inc/setting_loginscreen.php:129
156
- #: inc/setting_sidemenu.php:26
157
  msgid "Available Shortcodes"
158
  msgstr ""
159
 
160
- #: inc/setting_admin_bar_menu.php:33
161
  msgid "Sub-menu can to settings to four levels."
162
  msgstr ""
163
 
164
- #: inc/setting_admin_bar_menu.php:86
165
- #: inc/setting_admin_general.php:181
166
- #: inc/setting_appearance_menus.php:90
167
- #: inc/setting_dashboard.php:176
168
- #: inc/setting_default.php:122
169
- #: inc/setting_loginscreen.php:152
170
- #: inc/setting_manage_metabox.php:243
171
- #: inc/setting_post_add_edit.php:101
172
- #: inc/setting_sidemenu.php:225
173
- #: inc/setting_site.php:160
 
174
  msgid "Reset all settings?"
175
  msgstr ""
176
 
177
- #: inc/setting_admin_bar_menu.php:92
178
- #: inc/setting_sidemenu.php:21
179
- #: inc/setting_sidemenu.php:42
180
  msgid "Menu items that can be added"
181
  msgstr ""
182
 
183
- #: inc/setting_admin_general.php:34
184
  msgid "Notifications"
185
  msgstr ""
186
 
187
- #: inc/setting_admin_general.php:40
188
  msgid "WordPress core update notice"
189
  msgstr ""
190
 
191
- #: inc/setting_admin_general.php:46
192
- #: inc/setting_admin_general.php:57
193
- #: inc/setting_admin_general.php:68
194
  msgid "Not notified"
195
  msgstr ""
196
 
197
- #: inc/setting_admin_general.php:51
198
  msgid "Plugin update notice"
199
  msgstr ""
200
 
201
- #: inc/setting_admin_general.php:62
202
  msgid "Theme update notice"
203
  msgstr ""
204
 
205
- #: inc/setting_admin_general.php:78
206
  msgid "Screen Options and Help Tab"
207
  msgstr ""
208
 
209
- #: inc/setting_admin_general.php:117
210
- #: inc/setting_loginscreen.php:123
211
  msgid "Footer text"
212
  msgstr ""
213
 
214
- #: inc/setting_admin_general.php:142
215
- #: inc/setting_loginscreen.php:111
216
  msgid "CSS file to load"
217
  msgstr ""
218
 
219
- #: inc/setting_admin_general.php:155
220
  msgid "Title tag for Admin screen"
221
  msgstr ""
222
 
223
- #: inc/setting_admin_general.php:160
224
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
225
  msgstr ""
226
 
227
- #: inc/setting_appearance_menus.php:40
228
  msgid "Create a new menu"
229
  msgstr ""
230
 
231
- #: inc/setting_appearance_menus.php:46
232
- #: inc/setting_appearance_menus.php:64
233
  msgid "This is useful when you want to use only the menus have been created."
234
  msgstr ""
235
 
236
- #: inc/setting_dashboard.php:33
237
  msgid "Meta boxes"
238
  msgstr ""
239
 
240
- #: inc/setting_dashboard.php:40
 
241
  msgid "Welcome Panel"
242
  msgstr ""
243
 
244
- #: inc/setting_dashboard.php:143
245
- msgid "Other"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgstr ""
247
 
248
- #: inc/setting_dashboard.php:150
249
  msgid "Meta box movement restriction"
250
  msgstr ""
251
 
252
- #: inc/setting_dashboard.php:155
253
  msgid "Lock meta box positions"
254
  msgstr ""
255
 
256
- #: inc/setting_default.php:16
257
  msgid "Customize the UI of the management screen for all users."
258
  msgstr ""
259
 
260
- #: inc/setting_default.php:17
261
  msgid "Please select the user roles that all settings will apply to."
262
  msgstr ""
263
 
264
- #: inc/setting_default.php:18
265
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
266
  msgstr ""
267
 
268
- #: inc/setting_loginscreen.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  msgid "Login Screen Settings"
270
  msgstr ""
271
 
272
- #: inc/setting_loginscreen.php:25
273
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
274
  msgstr ""
275
 
276
- #: inc/setting_loginscreen.php:27
277
  msgid "Show Login Screen"
278
  msgstr ""
279
 
280
- #: inc/setting_loginscreen.php:51
281
- msgid "Login Form"
282
  msgstr ""
283
 
284
  #: inc/setting_loginscreen.php:58
 
 
 
 
285
  msgid "The link after clicking on the logo"
286
  msgstr ""
287
 
288
- #: inc/setting_loginscreen.php:71
289
  msgid "Logo Title"
290
  msgstr ""
291
 
292
- #: inc/setting_loginscreen.php:83
293
  msgid "Logo Image path"
294
  msgstr ""
295
 
296
- #: inc/setting_manage_metabox.php:18
297
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
298
  msgstr ""
299
 
300
- #: inc/setting_manage_metabox.php:19
301
  msgid "Please enter if you want to change of Metabox label name."
302
  msgstr ""
303
 
304
- #: inc/setting_manage_metabox.php:42
305
- #: inc/setting_manage_metabox.php:105
306
- #: inc/setting_manage_metabox.php:176
307
- msgid "Could not read the meta box."
308
  msgstr ""
309
 
310
- #: inc/setting_manage_metabox.php:43
311
- #: inc/setting_manage_metabox.php:106
312
- #: inc/setting_manage_metabox.php:177
313
- #, php-format
314
- msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
315
  msgstr ""
316
 
317
- #: inc/setting_manage_metabox.php:55
318
- #: inc/setting_manage_metabox.php:118
319
- #: inc/setting_manage_metabox.php:189
320
- msgid "Change metabox title to"
321
  msgstr ""
322
 
323
- #: inc/setting_manage_metabox.php:81
324
- #: inc/setting_manage_metabox.php:143
325
- #: inc/setting_post_add_edit.php:48
326
- msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
327
  msgstr ""
328
 
329
- #: inc/setting_manage_metabox.php:83
330
- #: inc/setting_manage_metabox.php:145
331
- msgid "Please set from here if you want to view the comments on screen."
332
  msgstr ""
333
 
334
- #: inc/setting_post_add_edit.php:41
335
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
336
  msgstr ""
337
 
338
- #: inc/setting_post_add_edit.php:49
339
  msgid "Please select if you want to display the comments on Site."
340
  msgstr ""
341
 
342
- #: inc/setting_post_add_edit.php:50
343
  #, php-format
344
  msgid "However, this will follow the setting of %s."
345
  msgstr ""
346
 
347
- #: inc/setting_post_add_edit.php:52
348
  #, php-format
349
  msgid "Please select the %s"
350
  msgstr ""
351
 
352
- #: inc/setting_post_add_edit.php:52
353
- msgid "Allow people to post comments on new articles"
354
- msgstr ""
355
-
356
- #: inc/setting_post_add_edit.php:78
357
  msgid "Only appears when you have settings to the default permalink."
358
  msgstr ""
359
 
360
- #: inc/setting_sidemenu.php:21
361
  #, php-format
362
  msgid "New plugin menus will be added to the <strong>%s</strong>."
363
  msgstr ""
364
 
365
- #: inc/setting_sidemenu.php:45
366
- msgid "Sepalator"
367
- msgstr ""
368
-
369
- #: inc/setting_sidemenu.php:107
370
- msgid "Current menu"
371
- msgstr ""
372
-
373
- #: inc/setting_site.php:48
374
- #: inc/setting_site.php:61
375
- #: inc/setting_site.php:74
376
- #: inc/setting_site.php:87
377
- #: inc/setting_site.php:100
378
  msgid "Tag to be output"
379
  msgstr ""
380
 
381
- #: inc/setting_site.php:60
382
  msgid "Please display when using the Windows Live Writer."
383
  msgstr ""
384
 
385
- #: inc/setting_site.php:73
386
  msgid "Information of XML-rpc"
387
  msgstr ""
388
 
389
- #: inc/setting_site.php:86
390
  msgid "Sitewide feed"
391
  msgstr ""
392
 
393
- #: inc/setting_site.php:99
394
  msgid "Extra feed"
395
  msgstr ""
396
 
397
- #: inc/setting_site.php:127
398
  msgid "Hide the Admin bar on the front end"
399
  msgstr ""
400
 
401
- #: inc/setting_site.php:127
402
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
403
  msgstr ""
404
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-29 01:38+0900\n"
6
+ "PO-Revision-Date: 2013-12-29 01:38+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:144
22
+ #: wp-admin-ui-customize.php:183
23
+ #: inc/reset_userrole.php:22
24
  msgid "Reset User Roles"
25
  msgstr ""
26
 
27
+ #: wp-admin-ui-customize.php:173
28
+ #: inc/setting_site.php:23
29
  msgid "Site Settings"
30
  msgstr ""
31
 
32
+ #: wp-admin-ui-customize.php:174
33
+ #: inc/setting_admin_general.php:23
34
  msgid "General Screen Settings"
35
  msgstr ""
36
 
37
+ #: wp-admin-ui-customize.php:176
38
+ #: inc/setting_admin_bar_menu.php:25
39
  msgid "Admin Bar Menu"
40
  msgstr ""
41
 
42
+ #: wp-admin-ui-customize.php:177
43
+ #: inc/setting_sidemenu.php:25
44
  msgid "Side Menu"
45
  msgstr ""
46
 
47
+ #: wp-admin-ui-customize.php:178
48
+ #: inc/setting_manage_metabox.php:24
49
  msgid "Manage meta box"
50
  msgstr ""
51
 
52
+ #: wp-admin-ui-customize.php:179
53
+ #: inc/setting_post_add_edit.php:23
54
  msgid "Add New Post and Edit Post Screen Setting"
55
  msgstr ""
56
 
57
+ #: wp-admin-ui-customize.php:180
58
+ #: inc/setting_appearance_menus.php:22
59
  msgid "Appearance Menus Screen Setting"
60
  msgstr ""
61
 
62
+ #: wp-admin-ui-customize.php:181
63
+ #: inc/setting_loginscreen.php:34
64
  msgid "Login Screen"
65
  msgstr ""
66
 
67
+ #: wp-admin-ui-customize.php:182
68
+ #: inc/setting_plugin_cap.php:23
69
+ #, php-format
70
+ msgid "%1$s of %2$s %3$s"
71
+ msgstr ""
72
+
73
+ #: wp-admin-ui-customize.php:387
74
  #, php-format
75
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
76
  msgstr ""
77
 
78
+ #: wp-admin-ui-customize.php:412
79
  msgid "Apply user roles"
80
  msgstr ""
81
 
82
+ #: wp-admin-ui-customize.php:756
83
+ #: wp-admin-ui-customize.php:929
84
  msgid "Sub Menus"
85
  msgstr ""
86
 
87
+ #: wp-admin-ui-customize.php:851
88
+ #: wp-admin-ui-customize.php:873
89
  msgid "Menu Group"
90
  msgstr ""
91
 
92
+ #: wp-admin-ui-customize.php:871
93
  msgid "Show only on front end."
94
  msgstr ""
95
 
96
+ #: wp-admin-ui-customize.php:891
97
  msgid "If you want edit to name, please edit of translation file(PO)."
98
  msgstr ""
99
 
100
+ #: wp-admin-ui-customize.php:1091
101
  msgid "Front"
102
  msgstr ""
103
 
104
+ #: wp-admin-ui-customize.php:2248
105
+ #: inc/setting_default.php:185
106
+ msgid "Thank you for your donation."
107
+ msgstr ""
108
+
109
+ #: wp-admin-ui-customize.php:2263
110
+ msgid "Thank you for considering donate."
111
+ msgstr ""
112
+
113
+ #: wp-admin-ui-customize.php:2263
114
+ #: inc/setting_default.php:37
115
+ msgid "Donate"
116
+ msgstr ""
117
+
118
+ #: inc/list_variables.php:20
119
+ #: inc/setting_admin_bar_menu.php:32
120
+ #: inc/setting_admin_general.php:132
121
+ #: inc/setting_admin_general.php:155
122
+ #: inc/setting_loginscreen.php:71
123
+ #: inc/setting_loginscreen.php:84
124
+ #: inc/setting_loginscreen.php:96
125
+ #: inc/setting_loginscreen.php:124
126
+ #: inc/setting_loginscreen.php:136
127
+ #: inc/setting_sidemenu.php:32
128
  msgid "Shortcodes"
129
  msgstr ""
130
 
131
+ #: inc/list_variables.php:45
132
  msgid "Blog name of logged in."
133
  msgstr ""
134
 
135
+ #: inc/list_variables.php:54
136
  msgid "Blog URL of logged in."
137
  msgstr ""
138
 
139
+ #: inc/list_variables.php:108
140
+ #: inc/list_variables.php:115
141
+ #: inc/list_variables.php:122
142
+ #: inc/list_variables.php:129
143
  msgid "In your case."
144
  msgstr ""
145
 
146
+ #: inc/reset_userrole.php:30
147
  msgid "Applied user roles"
148
  msgstr ""
149
 
150
+ #: inc/reset_userrole.php:40
151
  msgid "You want to reset the user roles?"
152
  msgstr ""
153
 
154
+ #: inc/reset_userrole.php:42
155
+ #: inc/setting_admin_bar_menu.php:94
156
+ #: inc/setting_admin_general.php:189
157
+ #: inc/setting_appearance_menus.php:99
158
+ #: inc/setting_dashboard.php:250
159
+ #: inc/setting_default.php:130
160
+ #: inc/setting_loginscreen.php:160
161
+ #: inc/setting_manage_metabox.php:251
162
+ #: inc/setting_plugin_cap.php:92
163
+ #: inc/setting_post_add_edit.php:109
164
+ #: inc/setting_sidemenu.php:232
165
+ #: inc/setting_site.php:168
166
+ msgid "Reset settings"
167
+ msgstr ""
168
+
169
+ #: inc/setting_admin_bar_menu.php:26
170
+ #: inc/setting_sidemenu.php:26
171
  msgid "Please change the menu by drag and drop."
172
  msgstr ""
173
 
174
+ #: inc/setting_admin_bar_menu.php:27
175
+ #: inc/setting_sidemenu.php:28
176
  msgid "Notice: Please do not place the same multiple menu slug."
177
  msgstr ""
178
 
179
+ #: inc/setting_admin_bar_menu.php:28
180
  msgid "Can be more than one custom menu."
181
  msgstr ""
182
 
183
+ #: inc/setting_admin_bar_menu.php:32
184
+ #: inc/setting_admin_general.php:132
185
+ #: inc/setting_admin_general.php:155
186
+ #: inc/setting_loginscreen.php:71
187
+ #: inc/setting_loginscreen.php:84
188
+ #: inc/setting_loginscreen.php:96
189
+ #: inc/setting_loginscreen.php:124
190
+ #: inc/setting_loginscreen.php:136
191
+ #: inc/setting_sidemenu.php:32
192
  msgid "Available Shortcodes"
193
  msgstr ""
194
 
195
+ #: inc/setting_admin_bar_menu.php:40
196
  msgid "Sub-menu can to settings to four levels."
197
  msgstr ""
198
 
199
+ #: inc/setting_admin_bar_menu.php:93
200
+ #: inc/setting_admin_general.php:188
201
+ #: inc/setting_appearance_menus.php:98
202
+ #: inc/setting_dashboard.php:249
203
+ #: inc/setting_default.php:129
204
+ #: inc/setting_loginscreen.php:159
205
+ #: inc/setting_manage_metabox.php:250
206
+ #: inc/setting_plugin_cap.php:91
207
+ #: inc/setting_post_add_edit.php:108
208
+ #: inc/setting_sidemenu.php:231
209
+ #: inc/setting_site.php:167
210
  msgid "Reset all settings?"
211
  msgstr ""
212
 
213
+ #: inc/setting_admin_bar_menu.php:99
214
+ #: inc/setting_sidemenu.php:27
215
+ #: inc/setting_sidemenu.php:48
216
  msgid "Menu items that can be added"
217
  msgstr ""
218
 
219
+ #: inc/setting_admin_general.php:41
220
  msgid "Notifications"
221
  msgstr ""
222
 
223
+ #: inc/setting_admin_general.php:47
224
  msgid "WordPress core update notice"
225
  msgstr ""
226
 
227
+ #: inc/setting_admin_general.php:53
228
+ #: inc/setting_admin_general.php:64
229
+ #: inc/setting_admin_general.php:75
230
  msgid "Not notified"
231
  msgstr ""
232
 
233
+ #: inc/setting_admin_general.php:58
234
  msgid "Plugin update notice"
235
  msgstr ""
236
 
237
+ #: inc/setting_admin_general.php:69
238
  msgid "Theme update notice"
239
  msgstr ""
240
 
241
+ #: inc/setting_admin_general.php:85
242
  msgid "Screen Options and Help Tab"
243
  msgstr ""
244
 
245
+ #: inc/setting_admin_general.php:124
246
+ #: inc/setting_loginscreen.php:130
247
  msgid "Footer text"
248
  msgstr ""
249
 
250
+ #: inc/setting_admin_general.php:149
251
+ #: inc/setting_loginscreen.php:118
252
  msgid "CSS file to load"
253
  msgstr ""
254
 
255
+ #: inc/setting_admin_general.php:162
256
  msgid "Title tag for Admin screen"
257
  msgstr ""
258
 
259
+ #: inc/setting_admin_general.php:167
260
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
261
  msgstr ""
262
 
263
+ #: inc/setting_appearance_menus.php:47
264
  msgid "Create a new menu"
265
  msgstr ""
266
 
267
+ #: inc/setting_appearance_menus.php:53
268
+ #: inc/setting_appearance_menus.php:72
269
  msgid "This is useful when you want to use only the menus have been created."
270
  msgstr ""
271
 
272
+ #: inc/setting_dashboard.php:41
273
  msgid "Meta boxes"
274
  msgstr ""
275
 
276
+ #: inc/setting_dashboard.php:51
277
+ #: inc/setting_dashboard.php:173
278
  msgid "Welcome Panel"
279
  msgstr ""
280
 
281
+ #: inc/setting_dashboard.php:154
282
+ #: inc/setting_manage_metabox.php:49
283
+ #: inc/setting_manage_metabox.php:112
284
+ #: inc/setting_manage_metabox.php:183
285
+ msgid "Could not read the meta box."
286
+ msgstr ""
287
+
288
+ #: inc/setting_dashboard.php:155
289
+ #: inc/setting_manage_metabox.php:50
290
+ #: inc/setting_manage_metabox.php:113
291
+ #: inc/setting_manage_metabox.php:184
292
+ #, php-format
293
+ msgid "Meta boxes will be loaded automatically when you <strong>%s</strong>."
294
+ msgstr ""
295
+
296
+ #: inc/setting_dashboard.php:166
297
+ #: inc/setting_manage_metabox.php:62
298
+ #: inc/setting_manage_metabox.php:125
299
+ #: inc/setting_manage_metabox.php:196
300
+ msgid "Change metabox title to"
301
  msgstr ""
302
 
303
+ #: inc/setting_dashboard.php:223
304
  msgid "Meta box movement restriction"
305
  msgstr ""
306
 
307
+ #: inc/setting_dashboard.php:228
308
  msgid "Lock meta box positions"
309
  msgstr ""
310
 
311
+ #: inc/setting_default.php:23
312
  msgid "Customize the UI of the management screen for all users."
313
  msgstr ""
314
 
315
+ #: inc/setting_default.php:24
316
  msgid "Please select the user roles that all settings will apply to."
317
  msgstr ""
318
 
319
+ #: inc/setting_default.php:25
320
  msgid "Please use the Multiple Add-on If you want settings on User role basis."
321
  msgstr ""
322
 
323
+ #: inc/setting_default.php:38
324
+ 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."
325
+ msgstr ""
326
+
327
+ #: inc/setting_default.php:45
328
+ msgid "Features"
329
+ msgstr ""
330
+
331
+ #: inc/setting_default.php:46
332
+ 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."
333
+ msgstr ""
334
+
335
+ #: inc/setting_default.php:49
336
+ msgid "The primary use of donations"
337
+ msgstr ""
338
+
339
+ #: inc/setting_default.php:51
340
+ msgid "Liquidation of time and value"
341
+ msgstr ""
342
+
343
+ #: inc/setting_default.php:52
344
+ msgid "Additional suggestions feature"
345
+ msgstr ""
346
+
347
+ #: inc/setting_default.php:53
348
+ msgid "Maintain motivation"
349
+ msgstr ""
350
+
351
+ #: inc/setting_default.php:54
352
+ msgid "Ensure time as the father of Sunday"
353
+ msgstr ""
354
+
355
+ #: inc/setting_default.php:61
356
+ msgid "About plugin"
357
+ msgstr ""
358
+
359
+ #: inc/setting_default.php:63
360
+ msgid "Version checked"
361
+ msgstr ""
362
+
363
+ #: inc/setting_default.php:65
364
+ msgid "Plugin's site"
365
+ msgstr ""
366
+
367
+ #: inc/setting_default.php:66
368
+ msgid "Developer's site"
369
+ msgstr ""
370
+
371
+ #: inc/setting_default.php:68
372
+ msgid "Reviews"
373
+ msgstr ""
374
+
375
+ #: inc/setting_default.php:76
376
+ #: inc/setting_loginscreen.php:43
377
+ msgid "Useful plugins"
378
+ msgstr ""
379
+
380
+ #: inc/setting_default.php:79
381
+ msgid "This add-on is simply settings of multi user roles."
382
+ msgstr ""
383
+
384
+ #: inc/setting_default.php:81
385
+ msgid "This add-on is Import/Export easily of the settings data."
386
+ msgstr ""
387
+
388
+ #: inc/setting_default.php:83
389
+ msgid "This add-on is an add-on to unify the management screen of all sites."
390
+ msgstr ""
391
+
392
+ #: inc/setting_default.php:85
393
+ msgid "Customize the list of the post and page. custom post type page, too. You can customize the column display items freely."
394
+ msgstr ""
395
+
396
+ #: inc/setting_default.php:87
397
+ msgid "Announce to display the dashboard. Change the display to a different user role."
398
+ msgstr ""
399
+
400
+ #: inc/setting_default.php:89
401
+ 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."
402
+ msgstr ""
403
+
404
+ #: inc/setting_default.php:138
405
+ msgid "If you have already donated to."
406
+ msgstr ""
407
+
408
+ #: inc/setting_default.php:139
409
+ msgid "Please enter the 'Donation delete key' that have been described in the 'Line Break First and End download page'."
410
+ msgstr ""
411
+
412
+ #: inc/setting_default.php:142
413
+ msgid "Donation delete key"
414
+ msgstr ""
415
+
416
+ #: inc/setting_default.php:150
417
+ msgid "Have you want to customize?"
418
+ msgstr ""
419
+
420
+ #: inc/setting_default.php:156
421
+ msgid "I am good at Admin Screen Customize."
422
+ msgstr ""
423
+
424
+ #: inc/setting_default.php:157
425
+ msgid "Please consider the request to me if it is good."
426
+ msgstr ""
427
+
428
+ #: inc/setting_default.php:159
429
+ msgid "Example Customize"
430
+ msgstr ""
431
+
432
+ #: inc/setting_default.php:160
433
+ msgid "Contact me"
434
+ msgstr ""
435
+
436
+ #: inc/setting_loginscreen.php:23
437
  msgid "Login Screen Settings"
438
  msgstr ""
439
 
440
+ #: inc/setting_loginscreen.php:32
441
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
442
  msgstr ""
443
 
444
+ #: inc/setting_loginscreen.php:34
445
  msgid "Show Login Screen"
446
  msgstr ""
447
 
448
+ #: inc/setting_loginscreen.php:46
449
+ msgid "This plugin is that can be for customizing flexibly Login Screen."
450
  msgstr ""
451
 
452
  #: inc/setting_loginscreen.php:58
453
+ msgid "Login Form"
454
+ msgstr ""
455
+
456
+ #: inc/setting_loginscreen.php:65
457
  msgid "The link after clicking on the logo"
458
  msgstr ""
459
 
460
+ #: inc/setting_loginscreen.php:78
461
  msgid "Logo Title"
462
  msgstr ""
463
 
464
+ #: inc/setting_loginscreen.php:90
465
  msgid "Logo Image path"
466
  msgstr ""
467
 
468
+ #: inc/setting_manage_metabox.php:25
469
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
470
  msgstr ""
471
 
472
+ #: inc/setting_manage_metabox.php:26
473
  msgid "Please enter if you want to change of Metabox label name."
474
  msgstr ""
475
 
476
+ #: inc/setting_manage_metabox.php:88
477
+ #: inc/setting_manage_metabox.php:150
478
+ #: inc/setting_post_add_edit.php:55
479
+ msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
480
  msgstr ""
481
 
482
+ #: inc/setting_manage_metabox.php:90
483
+ #: inc/setting_manage_metabox.php:152
484
+ msgid "Please set from here if you want to view the comments on screen."
 
 
485
  msgstr ""
486
 
487
+ #: inc/setting_plugin_cap.php:24
488
+ #, php-format
489
+ msgid "You can change the user role %2$s of %1$s settings."
 
490
  msgstr ""
491
 
492
+ #: inc/setting_plugin_cap.php:25
493
+ #, php-format
494
+ msgid "Please choose the role to use the %s."
 
495
  msgstr ""
496
 
497
+ #: inc/setting_plugin_cap.php:42
498
+ #, php-format
499
+ msgid "Capability role for the %s"
500
  msgstr ""
501
 
502
+ #: inc/setting_post_add_edit.php:48
503
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
504
  msgstr ""
505
 
506
+ #: inc/setting_post_add_edit.php:56
507
  msgid "Please select if you want to display the comments on Site."
508
  msgstr ""
509
 
510
+ #: inc/setting_post_add_edit.php:57
511
  #, php-format
512
  msgid "However, this will follow the setting of %s."
513
  msgstr ""
514
 
515
+ #: inc/setting_post_add_edit.php:59
516
  #, php-format
517
  msgid "Please select the %s"
518
  msgstr ""
519
 
520
+ #: inc/setting_post_add_edit.php:85
 
 
 
 
521
  msgid "Only appears when you have settings to the default permalink."
522
  msgstr ""
523
 
524
+ #: inc/setting_sidemenu.php:27
525
  #, php-format
526
  msgid "New plugin menus will be added to the <strong>%s</strong>."
527
  msgstr ""
528
 
529
+ #: inc/setting_site.php:55
530
+ #: inc/setting_site.php:68
531
+ #: inc/setting_site.php:81
532
+ #: inc/setting_site.php:94
533
+ #: inc/setting_site.php:107
 
 
 
 
 
 
 
 
534
  msgid "Tag to be output"
535
  msgstr ""
536
 
537
+ #: inc/setting_site.php:67
538
  msgid "Please display when using the Windows Live Writer."
539
  msgstr ""
540
 
541
+ #: inc/setting_site.php:80
542
  msgid "Information of XML-rpc"
543
  msgstr ""
544
 
545
+ #: inc/setting_site.php:93
546
  msgid "Sitewide feed"
547
  msgstr ""
548
 
549
+ #: inc/setting_site.php:106
550
  msgid "Extra feed"
551
  msgstr ""
552
 
553
+ #: inc/setting_site.php:134
554
  msgid "Hide the Admin bar on the front end"
555
  msgstr ""
556
 
557
+ #: inc/setting_site.php:134
558
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
559
  msgstr ""
560
 
languages/wauc_plugin-ja.mo DELETED
Binary file
languages/wauc_plugin-ja.po DELETED
@@ -1,150 +0,0 @@
1
- msgid ""
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-11-08 12:36+0900\n"
7
- "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
- "Language-Team: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "Plural-Forms: nplurals=1; plural=0;\n"
15
- "X-Poedit-Language: Japanese\n"
16
- "X-Poedit-Country: JAPAN\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
-
20
- #: wp-admin-ui-customize.php:2015
21
- #: inc/setting_default.php:178
22
- msgid "Thank you for your donation."
23
- msgstr "寄付いただきありがとうございます。"
24
-
25
- #: wp-admin-ui-customize.php:2030
26
- msgid "Thank you for considering donate."
27
- msgstr "寄付のご検討宜しくお願いします。"
28
-
29
- #: wp-admin-ui-customize.php:2030
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 DELETED
@@ -1,147 +0,0 @@
1
- msgid ""
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"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "Plural-Forms: nplurals=1; plural=0;\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
-
17
- #: wp-admin-ui-customize.php:2015
18
- #: inc/setting_default.php:178
19
- msgid "Thank you for your donation."
20
- msgstr ""
21
-
22
- #: wp-admin-ui-customize.php:2030
23
- msgid "Thank you for considering donate."
24
- msgstr ""
25
-
26
- #: wp-admin-ui-customize.php:2030
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_4_2
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
- Requires at least: 3.5.2
6
- Tested up to: 3.7.1
7
- Stable tag: 1.4.2
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -46,9 +46,17 @@ These to Customization is possible.
46
  8. Post/Page Settings
47
  9. Appearance Menu Settings
48
  10. Login Screen Settings
 
49
 
50
  == Changelog ==
51
 
 
 
 
 
 
 
 
52
  = 1.4.2 =
53
  * Added: Compatible to Admin Bar on BuddyPress.
54
  * Fixed: Separator settings on Sidemenu settings.
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_4_3
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
+ Requires at least: 3.6.1
6
+ Tested up to: 3.8
7
+ Stable tag: 1.4.3
8
  License: GPL2
9
 
10
  Customize the management screen UI.
46
  8. Post/Page Settings
47
  9. Appearance Menu Settings
48
  10. Login Screen Settings
49
+ 11. Plugin Capabilities Settings
50
 
51
  == Changelog ==
52
 
53
+ = 1.4.3 =
54
+ * Updated: Compatible to 3.8.
55
+ * Updated: Existence check of Link Manager.
56
+ * Updated: Dashboard metaboxes settings.
57
+ * Updated: Screen shots.
58
+ * Added: Working capability change to possible.
59
+
60
  = 1.4.2 =
61
  * Added: Compatible to Admin Bar on BuddyPress.
62
  * Fixed: Separator settings on Sidemenu settings.
screenshot-1.png CHANGED
Binary file
screenshot-10.png CHANGED
Binary file
screenshot-11.png ADDED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
screenshot-7.png CHANGED
Binary file
screenshot-8.png CHANGED
Binary file
screenshot-9.png CHANGED
Binary file
wp-admin-ui-customize-3.7.css ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* layout */
2
+
3
+
4
+ #poststuff #post-body.columns-2 {
5
+ margin-right: 400px;
6
+ }
7
+ #post-body.columns-2 #postbox-container-1 {
8
+ margin-right: -400px;
9
+ width: 380px;
10
+ }
11
+
12
+ #wauc_setting_admin_bar_menu #poststuff #post-body.columns-2 {
13
+ margin-right: 50%;
14
+ }
15
+ #wauc_setting_admin_bar_menu #post-body.columns-2 #postbox-container-1 {
16
+ margin-right: -100%;
17
+ width: 98%;
18
+ }
19
+
20
+ #wauc_setting_sidemenu #poststuff #post-body {
21
+ margin-right: auto;
22
+ margin-left: 500px;
23
+ }
24
+ #wauc_setting_sidemenu #poststuff #post-body #postbox-container-1 {
25
+ margin-right: auto;
26
+ width: 100%;
27
+ }
28
+ #wauc_setting_sidemenu #poststuff #post-body #postbox-container-2 {
29
+ width: 480px;
30
+ margin-left: -500px
31
+ }
32
+ .postbox-container .postbox .hndle {
33
+ cursor: default;
34
+ }
35
+
36
+
37
+
38
+
39
+
40
+
41
+ .postbox-container #donationbox {
42
+ background: #87BCE4;
43
+ border: 3px solid #227499;
44
+ }
45
+ .postbox-container #donationbox .inside {
46
+ padding: 6px 10px 10px 10px;
47
+ }
48
+ .postbox-container #donationbox .inside .donation_memo {
49
+ background: #FFF8D9;
50
+ padding: 2px 10px;
51
+ }
52
+
53
+ #list_variables {
54
+ display: none;
55
+ }
56
+ .list_variables_wrap {
57
+ padding: 16px 0 0 0;
58
+ }
59
+
60
+
61
+
62
+ /* sidemenu */
63
+
64
+ #wauc_setting_sidemenu .postbox .inside {
65
+ padding: 10px;
66
+ }
67
+ #wauc_setting_sidemenu .postbox .inside .widget-placeholder {
68
+ width: auto;
69
+ }
70
+ #wauc_setting_sidemenu .postbox .inside .widget .widget-top .widget-title .in-widget-title {
71
+ opacity: 0.7;
72
+ font-weight: normal;
73
+ }
74
+ #wauc_setting_sidemenu .postbox .inside .widget .widget-inside .settings {
75
+ margin-bottom: 12px;
76
+ }
77
+ #wauc_setting_sidemenu .postbox .inside .widget .widget-inside .submenu {
78
+ padding: 5px 5px 20px 5px;
79
+ border: 1px solid #DFDFDF;
80
+ }
81
+ #wauc_setting_sidemenu .postbox .inside .widget .widget-inside input.regular-text {
82
+ width: 300px;
83
+ }
84
+
85
+ #wauc_setting_sidemenu #can_menus .postbox .inside .widget .widget-top .widget-title-action,
86
+ #wauc_setting_sidemenu #setting_menus .postbox .inside .widget.separator .widget-top .widget-title-action,
87
+ #wauc_setting_sidemenu #setting_menus .postbox .inside .widget .widget-inside .submenu .widget .widget-inside .submenu {
88
+ display: none;
89
+ }
90
+
91
+ #wauc_setting_sidemenu #can_menus .postbox .inside .widget {
92
+ width: 170px;
93
+ float: left;
94
+ margin: 0 4px 4px 0;
95
+ }
96
+
97
+ #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles {
98
+ display: block;
99
+ }
100
+ #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li {
101
+ display: inline-block;
102
+ color: #DDD;
103
+ margin-right: 6px;
104
+ }
105
+ #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li.has_cap {
106
+ font-weight: bold;
107
+ color: #000;
108
+ }
109
+
110
+
111
+
112
+
113
+ /* admin_bar */
114
+
115
+
116
+ #wauc_setting_admin_bar_menu {}
117
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside {
118
+ padding: 10px;
119
+ }
120
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-placeholder {
121
+ width: auto;
122
+ }
123
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title .in-widget-title {
124
+ opacity: 0.7;
125
+ font-weight: normal;
126
+ }
127
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-inside .submenu {
128
+ padding: 5px 5px 20px 5px;
129
+ border: 1px solid #DFDFDF;
130
+ margin: 8px 0 0 0;
131
+ }
132
+
133
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top {
134
+ height: auto;
135
+ }
136
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top {
137
+ color: #fff;
138
+ text-shadow: 0 -1px 0 #333;
139
+ border-top-color: gray;
140
+ border-bottom-color: #6d6d6d;
141
+ background: #777;
142
+ background-image: -webkit-gradient(linear,left bottom,left top,from(#6d6d6d),to(gray));
143
+ background-image: -webkit-linear-gradient(bottom,#6d6d6d,gray);
144
+ background-image: -moz-linear-gradient(bottom,#6d6d6d,gray);
145
+ background-image: -o-linear-gradient(bottom,#6d6d6d,gray);
146
+ background-image: linear-gradient(to top,#6d6d6d,gray);
147
+ }
148
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top .in-widget-title {
149
+ color: #fff;
150
+ }
151
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title {
152
+ padding-top: 4px;
153
+ padding-bottom: 4px;
154
+ }
155
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title h4 {
156
+ line-height: 20px;
157
+ }
158
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.wp-logo .widget-top .widget-title h4 .ab-icon,
159
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.updates .widget-top .widget-title h4 .ab-icon,
160
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.comments .widget-top .widget-title h4 .ab-icon,
161
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.new-content .widget-top .widget-title h4 .ab-icon {
162
+ width: 20px;
163
+ height: 20px;
164
+ background-repeat: no-repeat;
165
+ display: block;
166
+ float: left;
167
+ margin: 0 2px 0 0;
168
+ }
169
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.wp-logo .widget-top .widget-title h4 .ab-icon {
170
+ background-position: 0 -104px;
171
+ }
172
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.updates .widget-top .widget-title h4 .ab-icon {
173
+ background-position: -2px -159px;
174
+ }
175
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.comments .widget-top .widget-title h4 .ab-icon {
176
+ background-position: -2px -135px;
177
+ }
178
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget.new-content .widget-top .widget-title h4 .ab-icon {
179
+ background-position: -2px -202px;
180
+ }
181
+
182
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus > .postbox {
183
+ background: #fff;
184
+ }
185
+
186
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus .postbox .inside .widget .widget-top .widget-title-action,
187
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-inside .submenu .submenu .submenu .submenu .submenu {
188
+ display: none;
189
+ }
190
+
191
+
192
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .columns-1 .postbox .inside h3 {
193
+ cursor: default;
194
+ border-bottom: none;
195
+ }
196
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .columns-1 .postbox .inside .widget {
197
+ width: 170px;
198
+ float: left;
199
+ margin: 0 4px 4px 0;
200
+ }
201
+
202
+
203
+ /* manage metabox */
204
+
205
+ #wauc_setting_manage_metabox table.form-table td {
206
+ vertical-align: top;
207
+ }
208
+
209
+
210
+
211
+ /* compatible mp6 */
212
+
213
+ body.mp6.toplevel_page_wp_admin_ui_customize .postbox:hover .handlediv:before,
214
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_setting_site .postbox:hover .handlediv:before,
215
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_general_setting .postbox:hover .handlediv:before,
216
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_dashboard .postbox:hover .handlediv:before,
217
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox:hover .handlediv:before,
218
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_sidemenu .postbox:hover .handlediv:before,
219
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_manage_metabox .postbox:hover .handlediv:before,
220
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_post_add_edit_screen .postbox:hover .handlediv:before,
221
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_appearance_menus .postbox:hover .handlediv:before,
222
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_loginscreen .postbox:hover .handlediv:before {
223
+ right: 12px;
224
+ content: '\f142';
225
+ font: normal 20px/1 'dashicons';
226
+ speak: none;
227
+ display: inline-block;
228
+ padding: 8px 10px;
229
+ color: #888;
230
+ top: 0;
231
+ position: relative;
232
+ -webkit-font-smoothing: antialiased;
233
+ text-decoration: none !important;
234
+ }
235
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus > .postbox {
236
+ background: none;
237
+ }
238
+
239
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top {
240
+ background: #333;
241
+ }
242
+ body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group .widget-top a {
243
+ color: #333;
244
+ }
245
+
246
+
wp-admin-ui-customize.css CHANGED
@@ -32,6 +32,9 @@
32
  .postbox-container .postbox .hndle {
33
  cursor: default;
34
  }
 
 
 
35
 
36
 
37
 
@@ -67,6 +70,9 @@
67
  #wauc_setting_sidemenu .postbox .inside .widget-placeholder {
68
  width: auto;
69
  }
 
 
 
70
  #wauc_setting_sidemenu .postbox .inside .widget .widget-top .widget-title .in-widget-title {
71
  opacity: 0.7;
72
  font-weight: normal;
@@ -77,6 +83,7 @@
77
  #wauc_setting_sidemenu .postbox .inside .widget .widget-inside .submenu {
78
  padding: 5px 5px 20px 5px;
79
  border: 1px solid #DFDFDF;
 
80
  }
81
  #wauc_setting_sidemenu .postbox .inside .widget .widget-inside input.regular-text {
82
  width: 300px;
@@ -96,11 +103,12 @@
96
 
97
  #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles {
98
  display: block;
 
99
  }
100
  #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li {
101
  display: inline-block;
102
  color: #DDD;
103
- margin-right: 6px;
104
  }
105
  #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li.has_cap {
106
  font-weight: bold;
@@ -127,12 +135,15 @@ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside
127
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-inside .submenu {
128
  padding: 5px 5px 20px 5px;
129
  border: 1px solid #DFDFDF;
130
- margin: 8px 0 0 0;
131
  }
132
 
133
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top {
134
  height: auto;
135
  }
 
 
 
136
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top {
137
  color: #fff;
138
  text-shadow: 0 -1px 0 #333;
@@ -148,10 +159,6 @@ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside
148
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top .in-widget-title {
149
  color: #fff;
150
  }
151
- body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title {
152
- padding-top: 4px;
153
- padding-bottom: 4px;
154
- }
155
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title h4 {
156
  line-height: 20px;
157
  }
32
  .postbox-container .postbox .hndle {
33
  cursor: default;
34
  }
35
+ input.regular-text {
36
+ width: 80%;
37
+ }
38
 
39
 
40
 
70
  #wauc_setting_sidemenu .postbox .inside .widget-placeholder {
71
  width: auto;
72
  }
73
+ #wauc_setting_sidemenu .postbox .inside .widget .widget-top:hover {
74
+ border-color:#999
75
+ }
76
  #wauc_setting_sidemenu .postbox .inside .widget .widget-top .widget-title .in-widget-title {
77
  opacity: 0.7;
78
  font-weight: normal;
83
  #wauc_setting_sidemenu .postbox .inside .widget .widget-inside .submenu {
84
  padding: 5px 5px 20px 5px;
85
  border: 1px solid #DFDFDF;
86
+ margin-bottom: 12px;
87
  }
88
  #wauc_setting_sidemenu .postbox .inside .widget .widget-inside input.regular-text {
89
  width: 300px;
103
 
104
  #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles {
105
  display: block;
106
+ font-size: 12px;
107
  }
108
  #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li {
109
  display: inline-block;
110
  color: #DDD;
111
+ margin-right: 2px;
112
  }
113
  #wauc_setting_sidemenu #setting_menus .postbox .inside .settings ul.display_roles li.has_cap {
114
  font-weight: bold;
135
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-inside .submenu {
136
  padding: 5px 5px 20px 5px;
137
  border: 1px solid #DFDFDF;
138
+ margin: 8px 0 12px 0;
139
  }
140
 
141
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top {
142
  height: auto;
143
  }
144
+ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top:hover {
145
+ border-color:#999
146
+ }
147
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top {
148
  color: #fff;
149
  text-shadow: 0 -1px 0 #333;
159
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top .in-widget-title {
160
  color: #fff;
161
  }
 
 
 
 
162
  body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget .widget-top .widget-title h4 {
163
  line-height: 20px;
164
  }
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_4_2
6
- Version: 1.4.2
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_2
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -55,19 +55,19 @@ class WP_Admin_UI_Customize
55
 
56
 
57
  function __construct() {
58
- $this->Ver = '1.4.2';
59
  $this->Name = 'WP Admin UI Customize';
60
  $this->Dir = plugin_dir_path( __FILE__ );
61
  $this->Url = plugin_dir_url( __FILE__ );
62
  $this->Site = 'http://wpadminuicustomize.com/';
63
  $this->AuthorUrl = 'http://gqevu6bsiz.chicappa.jp/';
64
  $this->ltd = 'wauc';
65
- $this->ltd_p = $this->ltd . '_plugin';
66
  $this->Record = array(
67
  "user_role" => $this->ltd . '_user_role_setting',
68
  "site" => $this->ltd . '_site_setting',
69
  "admin_general" => $this->ltd . '_admin_general_setting',
70
  "dashboard" => $this->ltd . '_dashboard_setting',
 
71
  "admin_bar_menu" => $this->ltd . '_admin_bar_menu_setting',
72
  "sidemenu" => $this->ltd . '_sidemenu_setting',
73
  "manage_metabox" => $this->ltd . '_manage_metabox_setting',
@@ -75,6 +75,7 @@ class WP_Admin_UI_Customize
75
  "post_add_edit" => $this->ltd . '_post_add_edit_setting',
76
  "appearance_menus" => $this->ltd . '_appearance_menus_setting',
77
  "loginscreen" => $this->ltd . '_loginscreen_setting',
 
78
  "donate" => $this->ltd . '_donated',
79
  );
80
  $this->PageSlug = 'wp_admin_ui_customize';
@@ -99,7 +100,6 @@ class WP_Admin_UI_Customize
99
  function PluginSetup() {
100
  // load text domain
101
  load_plugin_textdomain( $this->ltd , false , $this->PluginSlug . '/languages' );
102
- load_plugin_textdomain( $this->ltd_p , false , $this->PluginSlug . '/languages' );
103
 
104
  // plugin links
105
  add_filter( 'plugin_action_links' , array( $this , 'plugin_action_links' ) , 10 , 2 );
@@ -121,6 +121,19 @@ class WP_Admin_UI_Customize
121
 
122
  // data convert
123
  add_action( 'admin_init' , array( $this , 'dataConvert' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  }
125
 
126
  // PluginSetup
@@ -153,18 +166,21 @@ class WP_Admin_UI_Customize
153
  @header("X-XSS-Protection: 0");
154
  }
155
  }
156
-
157
- add_menu_page( $this->Name , $this->Name , 'administrator', $this->PageSlug , array( $this , 'setting_default') );
158
- add_submenu_page( $this->PageSlug , __( 'Site Settings' , $this->ltd ) , __( 'Site Settings' , $this->ltd ) , 'administrator' , $this->PageSlug . '_setting_site' , array( $this , 'setting_site' ) );
159
- add_submenu_page( $this->PageSlug , __( 'General Screen Settings' , $this->ltd ) , __( 'General Screen Settings' , $this->ltd ) , 'administrator' , $this->PageSlug . '_admin_general_setting' , array( $this , 'setting_admin_general' ) );
160
- add_submenu_page( $this->PageSlug , __( 'Dashboard' ) , __( 'Dashboard' ) , 'administrator' , $this->PageSlug . '_dashboard' , array( $this , 'setting_dashboard' ) );
161
- add_submenu_page( $this->PageSlug , __( 'Admin Bar Menu' , $this->ltd ) , __( 'Admin Bar Menu' , $this->ltd ) , 'administrator' , $this->PageSlug . '_admin_bar' , array( $this , 'setting_admin_bar_menu' ) );
162
- add_submenu_page( $this->PageSlug , __( 'Side Menu' , $this->ltd ) , __( 'Side Menu' , $this->ltd ) , 'administrator' , $this->PageSlug . '_sidemenu' , array( $this , 'setting_sidemenu' ) );
163
- add_submenu_page( $this->PageSlug , __( 'Manage meta box' , $this->ltd ) , __( 'Manage meta box' , $this->ltd ) , 'administrator' , $this->PageSlug . '_manage_metabox' , array( $this , 'setting_manage_metabox' ) );
164
- add_submenu_page( $this->PageSlug , __( 'Add New Post and Edit Post Screen Setting' , $this->ltd ) , __( 'Add New Post and Edit Post Screen Setting' , $this->ltd ) , 'administrator' , $this->PageSlug . '_post_add_edit_screen' , array( $this , 'setting_post_add_edit' ) );
165
- add_submenu_page( $this->PageSlug , __( 'Appearance Menus Screen Setting' , $this->ltd ) , __( 'Appearance Menus Screen Setting' , $this->ltd ) , 'administrator' , $this->PageSlug . '_appearance_menus' , array( $this , 'setting_appearance_menus' ) );
166
- add_submenu_page( $this->PageSlug , __( 'Login Screen' , $this->ltd ) , __( 'Login Screen' , $this->ltd ) , 'administrator' , $this->PageSlug . '_loginscreen' , array( $this , 'setting_loginscreen' ) );
167
- add_submenu_page( $this->PageSlug , __( 'Reset User Roles' , $this->ltd ) , '<div style="display: none";>' . __( 'Reset User Roles' , $this->ltd ) . '</div>' , 'administrator' , $this->PageSlug . '_reset_userrole' , array( $this , 'reset_userrole' ) );
 
 
 
168
  }
169
 
170
  // PluginSetup
@@ -192,6 +208,33 @@ class WP_Admin_UI_Customize
192
  }
193
 
194
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  }
196
 
197
  // PluginSetup
@@ -201,7 +244,6 @@ class WP_Admin_UI_Customize
201
  if( is_plugin_active( 'buddypress/bp-loader.php' ) ) {
202
  $this->ActivatedPlugin["buddypress"] = true;
203
  }
204
-
205
  }
206
 
207
 
@@ -293,6 +335,13 @@ class WP_Admin_UI_Customize
293
  include_once 'inc/reset_userrole.php';
294
  }
295
 
 
 
 
 
 
 
 
296
 
297
 
298
 
@@ -383,6 +432,14 @@ class WP_Admin_UI_Customize
383
 
384
  $this->Menu = $menu;
385
  $this->SubMenu = $submenu;
 
 
 
 
 
 
 
 
386
  }
387
 
388
  // SetList
@@ -534,11 +591,64 @@ class WP_Admin_UI_Customize
534
  $Filter_bar["front"] = array( "main" => array() , "sub" => array() );
535
  $Filter_bar["front"]["main"]["edit-post_type"] = new stdClass;
536
  $Filter_bar["front"]["main"]["edit-post_type"] = (object) array( 'id' => 'edit-post_type' , 'title' => '' , 'href' => '' , 'group' => '' , 'meta' => array() );
537
- $Filter_bar["front"]["main"]["edit-post_type"]->title = sprintf( '%1$s (%2$s/%3$s/%4$s/%5$s/%6$s)' , __( 'Edit' ) , __( 'Post' ) , __( 'Page' ) , __( 'Category' ) , __( 'Tags' ) , __( 'Custom' ) );
538
 
539
  return $Filter_bar;
540
  }
541
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
542
  // SetList
543
  function post_meta_boxes_load() {
544
  global $current_screen;
@@ -715,7 +825,7 @@ class WP_Admin_UI_Customize
715
  if ( is_object( $menu_widget ) ) $menu_widget = (array) $menu_widget;
716
  if( !isset( $menu_widget["group"] ) ) $menu_widget["group"] = 0;
717
  if( !isset( $menu_widget["meta"]["class"] ) ) $menu_widget["meta"]["class"] = "";
718
- $no_submenu = array( 'search' , 'bp-notifications' );
719
  $activated_plugin = $this->ActivatedPlugin;
720
  $other_plugin = $this->OtherPluginMenu;
721
 
@@ -761,6 +871,8 @@ class WP_Admin_UI_Customize
761
  <strong><?php _e( 'Show only on front end.' , $this->ltd ); ?></strong>
762
  <?php elseif( !empty( $menu_widget["group"] ) ) : ?>
763
  <strong><?php _e( 'Menu Group' , $this->ltd ); ?></strong>
 
 
764
  <?php else: ?>
765
  <a href="<?php echo $menu_widget["href"]; ?>" target="_blank"><?php echo $menu_widget["id"]; ?></a>
766
  <?php endif; ?>
@@ -794,7 +906,7 @@ class WP_Admin_UI_Customize
794
  </p>
795
  <p class="field-meta description">
796
  <label class="description">
797
- <?php if( !empty( $menu_widget["group"] ) ) : ?>
798
  <input type="hidden" class="meta_target" value="_blank" name="data[][meta][target]" />
799
  <?php else: ?>
800
  <?php $checked = ""; ?>
@@ -978,6 +1090,18 @@ class WP_Admin_UI_Customize
978
  function admin_bar_places() {
979
  return $Place_types = array( "left" => __( 'Left' ) , "right" => __( 'Right' ) , "front" => __( 'Front' , $this->ltd ) );
980
  }
 
 
 
 
 
 
 
 
 
 
 
 
981
 
982
 
983
 
@@ -1012,12 +1136,17 @@ class WP_Admin_UI_Customize
1012
  $this->update_appearance_menus();
1013
  } elseif( $RecordField == 'loginscreen' ) {
1014
  $this->update_loginscreen();
 
 
1015
  }
 
1016
  }
1017
 
1018
  if( !empty( $RecordField ) && !empty( $_POST["reset"] ) ) {
1019
  if( $RecordField == 'manage_metabox' ) {
1020
  delete_option( $this->Record["regist_metabox"] );
 
 
1021
  }
1022
  $this->update_reset( $RecordField );
1023
  }
@@ -1062,7 +1191,7 @@ class WP_Admin_UI_Customize
1062
  $SubmitKey = md5( strip_tags( $_POST["donate_key"] ) );
1063
  if( $this->DonateKey == $SubmitKey ) {
1064
  update_option( $this->Record["donate"] , $SubmitKey );
1065
- wp_redirect( add_query_arg( $this->MsgQ , 'donated' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1066
  exit;
1067
  }
1068
  }
@@ -1320,6 +1449,23 @@ class WP_Admin_UI_Customize
1320
  }
1321
  }
1322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1323
 
1324
 
1325
 
@@ -1341,18 +1487,12 @@ class WP_Admin_UI_Customize
1341
 
1342
  // admin UI
1343
  if( is_admin() && !is_network_admin () ) {
1344
- // default side menu load.
1345
- add_action( 'admin_menu' , array( $this , 'sidemenu_default_load' ) , 10000 );
1346
-
1347
- // default post metabox load.
1348
- add_action( 'admin_head' , array( $this , 'post_meta_boxes_load' ) , 10 );
1349
-
1350
  // admin init
1351
  add_action( 'wp_loaded' , array( $this , 'admin_init' ) );
1352
  }
1353
 
1354
- // default admin bar menu load.
1355
- add_action( 'wp_before_admin_bar_render' , array( $this , 'admin_bar_default_load' ) , 1 );
1356
 
1357
  }
1358
 
@@ -1764,7 +1904,6 @@ class WP_Admin_UI_Customize
1764
  add_filter( 'screen_options_show_screen' , '__return_false' );
1765
  }
1766
  }
1767
-
1768
  }
1769
 
1770
  // FilterStart
@@ -1793,40 +1932,42 @@ class WP_Admin_UI_Customize
1793
  $css = strip_tags( $GetData["css"] );
1794
  $css = $this->val_replace( $css );
1795
 
1796
- wp_enqueue_style( $this->PageSlug , strip_tags( $css ) , array() , $this->Ver );
1797
  }
1798
 
1799
  }
1800
-
1801
  }
1802
 
1803
  // FilterStart
1804
  function wp_dashboard_setup() {
1805
  global $wp_meta_boxes;
1806
 
1807
- $GetData = $this->get_flit_data( 'dashboard' );
1808
 
1809
- if( !empty( $GetData ) && is_array( $GetData ) ) {
1810
- unset($GetData["UPFN"]);
1811
- $dashboard_widgets = array();
1812
- foreach($wp_meta_boxes["dashboard"] as $ns => $core) {
1813
- if( !empty( $core["core"] ) ) {
1814
- foreach($core["core"] as $id => $val) {
1815
- $dashboard_widgets[$id] = $ns;
1816
- }
 
 
 
 
1817
  }
1818
  }
1819
 
1820
- foreach($GetData as $id => $val) {
1821
- if( $id == 'show_welcome_panel' ) {
1822
- $user_id = get_current_user_id();
1823
- if( get_user_meta( $user_id , 'show_welcome_panel' , true ) == true ) {
1824
- update_user_meta( $user_id , 'show_welcome_panel' , 0 );
 
 
 
1825
  }
1826
- } elseif( array_key_exists( $id , $dashboard_widgets ) ){
1827
- remove_meta_box( $id , 'dashboard' , $dashboard_widgets[$id] );
1828
- } elseif( $id == 'metabox_move' ) {
1829
- wp_enqueue_script( 'not-move' , $this->Url . 'js/dashboard/not_move.js' , array( 'jquery' , 'jquery-ui-sortable' , 'dashboard' ) , $this->Ver , true );
1830
  }
1831
  }
1832
  }
@@ -2077,12 +2218,7 @@ class WP_Admin_UI_Customize
2077
  unset( $GetData["UPFN"] );
2078
 
2079
  if( !empty( $GetData["add_new_menu"] ) ) {
2080
- global $wp_version;
2081
- if ( version_compare( $wp_version , '3.6' , '>=' ) ) {
2082
- echo '<style>.wrap > .manage-menus, .locations-row-links .locations-add-menu-link { display: none; }</style>';
2083
- } else {
2084
- echo '<style>.nav-tabs .menu-add-new { display: none; }</style>';
2085
- }
2086
  }
2087
  if( !empty( $GetData["delete_menu"] ) ) {
2088
  echo '<style>.major-publishing-actions .delete-action { display: none; }</style>';
@@ -2091,6 +2227,17 @@ class WP_Admin_UI_Customize
2091
  }
2092
  }
2093
 
 
 
 
 
 
 
 
 
 
 
 
2094
  // FilterStart
2095
  function display_msg() {
2096
  if( !empty( $_GET[$this->MsgQ] ) ) {
@@ -2098,7 +2245,7 @@ class WP_Admin_UI_Customize
2098
  if( $msg == 'update' or $msg == 'delete' ) {
2099
  $this->Msg .= '<div class="updated"><p><strong>' . __( 'Settings saved.' ) . '</strong></p></div>';
2100
  } elseif( $msg == 'donated' ) {
2101
- $this->Msg .= '<div class="updated"><p><strong>' . __( 'Thank you for your donation.' , $this->ltd_p ) . '</strong></p></div>';
2102
  }
2103
  }
2104
  }
@@ -2113,11 +2260,10 @@ class WP_Admin_UI_Customize
2113
  function DisplayDonation() {
2114
  $donation = get_option( $this->Record["donate"] );
2115
  if( $this->DonateKey != $donation ) {
2116
- $this->Msg .= '<div class="error"><p><strong>' . __( 'Thank you for considering donate.' , $this->ltd_p ) . '</strong> <a href="' . self_admin_url( 'admin.php?page=' . $this->PageSlug ) . '">' . __( 'Donate' , $this->ltd_p ) . '</a></p></div>';
2117
  }
2118
  }
2119
 
2120
  }
2121
  $wauc = new WP_Admin_UI_Customize();
2122
 
2123
-
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_4_3
6
+ Version: 1.4.3
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_3
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
55
 
56
 
57
  function __construct() {
58
+ $this->Ver = '1.4.3';
59
  $this->Name = 'WP Admin UI Customize';
60
  $this->Dir = plugin_dir_path( __FILE__ );
61
  $this->Url = plugin_dir_url( __FILE__ );
62
  $this->Site = 'http://wpadminuicustomize.com/';
63
  $this->AuthorUrl = 'http://gqevu6bsiz.chicappa.jp/';
64
  $this->ltd = 'wauc';
 
65
  $this->Record = array(
66
  "user_role" => $this->ltd . '_user_role_setting',
67
  "site" => $this->ltd . '_site_setting',
68
  "admin_general" => $this->ltd . '_admin_general_setting',
69
  "dashboard" => $this->ltd . '_dashboard_setting',
70
+ "regist_dashboard_metabox" => $this->ltd . '_regist_dashboard_metabox',
71
  "admin_bar_menu" => $this->ltd . '_admin_bar_menu_setting',
72
  "sidemenu" => $this->ltd . '_sidemenu_setting',
73
  "manage_metabox" => $this->ltd . '_manage_metabox_setting',
75
  "post_add_edit" => $this->ltd . '_post_add_edit_setting',
76
  "appearance_menus" => $this->ltd . '_appearance_menus_setting',
77
  "loginscreen" => $this->ltd . '_loginscreen_setting',
78
+ "plugin_cap" => $this->ltd . '_plugin_cap',
79
  "donate" => $this->ltd . '_donated',
80
  );
81
  $this->PageSlug = 'wp_admin_ui_customize';
100
  function PluginSetup() {
101
  // load text domain
102
  load_plugin_textdomain( $this->ltd , false , $this->PluginSlug . '/languages' );
 
103
 
104
  // plugin links
105
  add_filter( 'plugin_action_links' , array( $this , 'plugin_action_links' ) , 10 , 2 );
121
 
122
  // data convert
123
  add_action( 'admin_init' , array( $this , 'dataConvert' ) );
124
+
125
+ // default admin bar menu load.
126
+ add_action( 'wp_before_admin_bar_render' , array( $this , 'admin_bar_default_load' ) , 1 );
127
+
128
+ // default side menu load.
129
+ add_action( 'admin_menu' , array( $this , 'sidemenu_default_load' ) , 10000 );
130
+
131
+ // default post metabox load.
132
+ add_action( 'admin_head' , array( $this , 'post_meta_boxes_load' ) , 10 );
133
+
134
+ // default post metabox dashbaord load.
135
+ add_action( 'admin_head' , array( $this , 'post_meta_boxes_dashboard_load' ) , 10 );
136
+
137
  }
138
 
139
  // PluginSetup
166
  @header("X-XSS-Protection: 0");
167
  }
168
  }
169
+
170
+ $capability = $this->get_plugin_cap();
171
+
172
+ add_menu_page( $this->Name , $this->Name , $capability, $this->PageSlug , array( $this , 'setting_default') );
173
+ add_submenu_page( $this->PageSlug , __( 'Site Settings' , $this->ltd ) , __( 'Site Settings' , $this->ltd ) , $capability , $this->PageSlug . '_setting_site' , array( $this , 'setting_site' ) );
174
+ add_submenu_page( $this->PageSlug , __( 'General Screen Settings' , $this->ltd ) , __( 'General Screen Settings' , $this->ltd ) , $capability , $this->PageSlug . '_admin_general_setting' , array( $this , 'setting_admin_general' ) );
175
+ add_submenu_page( $this->PageSlug , __( 'Dashboard' ) , __( 'Dashboard' ) , $capability , $this->PageSlug . '_dashboard' , array( $this , 'setting_dashboard' ) );
176
+ add_submenu_page( $this->PageSlug , __( 'Admin Bar Menu' , $this->ltd ) , __( 'Admin Bar Menu' , $this->ltd ) , $capability , $this->PageSlug . '_admin_bar' , array( $this , 'setting_admin_bar_menu' ) );
177
+ add_submenu_page( $this->PageSlug , __( 'Side Menu' , $this->ltd ) , __( 'Side Menu' , $this->ltd ) , $capability , $this->PageSlug . '_sidemenu' , array( $this , 'setting_sidemenu' ) );
178
+ add_submenu_page( $this->PageSlug , __( 'Manage meta box' , $this->ltd ) , __( 'Manage meta box' , $this->ltd ) , $capability , $this->PageSlug . '_manage_metabox' , array( $this , 'setting_manage_metabox' ) );
179
+ add_submenu_page( $this->PageSlug , __( 'Add New Post and Edit Post Screen Setting' , $this->ltd ) , __( 'Add New Post and Edit Post Screen Setting' , $this->ltd ) , $capability , $this->PageSlug . '_post_add_edit_screen' , array( $this , 'setting_post_add_edit' ) );
180
+ add_submenu_page( $this->PageSlug , __( 'Appearance Menus Screen Setting' , $this->ltd ) , __( 'Appearance Menus Screen Setting' , $this->ltd ) , $capability , $this->PageSlug . '_appearance_menus' , array( $this , 'setting_appearance_menus' ) );
181
+ add_submenu_page( $this->PageSlug , __( 'Login Screen' , $this->ltd ) , __( 'Login Screen' , $this->ltd ) , $capability , $this->PageSlug . '_loginscreen' , array( $this , 'setting_loginscreen' ) );
182
+ add_submenu_page( $this->PageSlug , sprintf( __( '%1$s of %2$s %3$s' , $this->ltd ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ) , sprintf( __( '%1$s of %2$s %3$s' , $this->ltd ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ) , $capability , $this->PageSlug . '_plugin_cap' , array( $this , 'setting_plugin_cap' ) );
183
+ add_submenu_page( $this->PageSlug , __( 'Reset User Roles' , $this->ltd ) , '<div style="display: none";>' . __( 'Reset User Roles' , $this->ltd ) . '</div>' , $capability , $this->PageSlug . '_reset_userrole' , array( $this , 'reset_userrole' ) );
184
  }
185
 
186
  // PluginSetup
208
  }
209
 
210
  }
211
+
212
+ $Dashboard = get_option( $this->Record['dashboard'] );
213
+ if( !empty( $Dashboard ) ) {
214
+ unset( $Dashboard["UPFN"] );
215
+
216
+ if( !empty( $Dashboard["metabox_move"] ) ) {
217
+ $metabox_move = 1;
218
+ unset( $Dashboard["metabox_move"] );
219
+ }
220
+
221
+ $is_array = true;
222
+ foreach( $Dashboard as $box_id => $val ) {
223
+ if( !is_array( $val ) ) {
224
+ $Dashboard[$box_id] = array( "remove" => 1 );
225
+ $is_array = false;
226
+ }
227
+ }
228
+ if( $is_array == false ) {
229
+
230
+ $Dashboard["UPFN"] = $this->UPFN;
231
+ if( !empty( $metabox_move ) ) {
232
+ $Dashboard["metabox_move"] = 1;
233
+ }
234
+
235
+ update_option( $this->Record['dashboard'] , $Dashboard );
236
+ }
237
+ }
238
  }
239
 
240
  // PluginSetup
244
  if( is_plugin_active( 'buddypress/bp-loader.php' ) ) {
245
  $this->ActivatedPlugin["buddypress"] = true;
246
  }
 
247
  }
248
 
249
 
335
  include_once 'inc/reset_userrole.php';
336
  }
337
 
338
+ // SettingPage
339
+ function setting_plugin_cap() {
340
+ $this->display_msg();
341
+ add_filter( 'admin_footer_text' , array( $this , 'layout_footer' ) );
342
+ include_once 'inc/setting_plugin_cap.php';
343
+ }
344
+
345
 
346
 
347
 
432
 
433
  $this->Menu = $menu;
434
  $this->SubMenu = $submenu;
435
+
436
+ if ( !get_option( 'link_manager_enabled' ) ) {
437
+ foreach( $this->Menu as $key => $val ) {
438
+ if( !empty( $val[1] ) && $val[1] == 'manage_links' ) {
439
+ unset( $this->Menu[$key] );
440
+ }
441
+ }
442
+ }
443
  }
444
 
445
  // SetList
591
  $Filter_bar["front"] = array( "main" => array() , "sub" => array() );
592
  $Filter_bar["front"]["main"]["edit-post_type"] = new stdClass;
593
  $Filter_bar["front"]["main"]["edit-post_type"] = (object) array( 'id' => 'edit-post_type' , 'title' => '' , 'href' => '' , 'group' => '' , 'meta' => array() );
594
+ $Filter_bar["front"]["main"]["edit-post_type"]->title = sprintf( '%1$s (%2$s/%3$s/%4$s/%5$s/%6$s)' , __( 'Edit' ) , __( 'Posts' ) , __( 'Pages' ) , __( 'Categories' ) , __( 'Tags' ) , __( 'Custom' ) );
595
 
596
  return $Filter_bar;
597
  }
598
 
599
+ // SetList
600
+ function post_meta_boxes_dashboard_load() {
601
+ global $current_screen;
602
+
603
+ $UserRole = $this->current_user_role_group();
604
+
605
+ if( !empty( $current_screen ) && $current_screen->id == 'dashboard' && $UserRole == 'administrator' ) {
606
+ global $wp_meta_boxes;
607
+
608
+ $GetData = $this->get_data( "regist_dashboard_metabox" );
609
+ $post_type = 'dashboard';
610
+ $Metaboxes = $wp_meta_boxes[$post_type];
611
+
612
+ $Update = array();
613
+ if( empty( $GetData ) ) {
614
+
615
+ $Update["UPFN"] = $this->UPFN;
616
+ foreach( $Metaboxes as $context => $meta_box ) {
617
+ foreach( $meta_box as $priority => $box ) {
618
+ foreach( $box as $metabox_id => $b ) {
619
+ $Update["metaboxes"][$post_type][$context][$priority][$b["id"]] = strip_tags( $b["title"] );
620
+ }
621
+ }
622
+ }
623
+
624
+ } else {
625
+
626
+ $Update = $GetData;
627
+ if( !empty( $Metaboxes ) ) {
628
+ foreach( $Metaboxes as $context => $meta_box ) {
629
+ foreach( $meta_box as $priority => $box ) {
630
+ if( is_array( $box ) ) {
631
+ foreach( $box as $metabox_id => $b ) {
632
+ if( !empty( $GetData["metaboxes"][$post_type][$context][$priority][$b["id"]] ) ) {
633
+ $Update["metaboxes"][$post_type][$context][$priority][$b["id"]] = strip_tags( $b["title"] );
634
+ } else {
635
+ $Update["metaboxes"][$post_type][$context][$priority][$b["id"]] = strip_tags( $b["title"] );
636
+ }
637
+ }
638
+ }
639
+ }
640
+ }
641
+ }
642
+
643
+ }
644
+
645
+ if( !empty( $Update ) ) {
646
+ update_option( $this->Record["regist_dashboard_metabox"] , $Update );
647
+ }
648
+ }
649
+
650
+ }
651
+
652
  // SetList
653
  function post_meta_boxes_load() {
654
  global $current_screen;
825
  if ( is_object( $menu_widget ) ) $menu_widget = (array) $menu_widget;
826
  if( !isset( $menu_widget["group"] ) ) $menu_widget["group"] = 0;
827
  if( !isset( $menu_widget["meta"]["class"] ) ) $menu_widget["meta"]["class"] = "";
828
+ $no_submenu = array( 'search' , 'bp-notifications' , 'menu-toggle' );
829
  $activated_plugin = $this->ActivatedPlugin;
830
  $other_plugin = $this->OtherPluginMenu;
831
 
871
  <strong><?php _e( 'Show only on front end.' , $this->ltd ); ?></strong>
872
  <?php elseif( !empty( $menu_widget["group"] ) ) : ?>
873
  <strong><?php _e( 'Menu Group' , $this->ltd ); ?></strong>
874
+ <?php elseif( $menu_widget["id"] == 'menu-toggle' ) : ?>
875
+ <strong><?php echo $menu_widget["id"]; ?></strong>
876
  <?php else: ?>
877
  <a href="<?php echo $menu_widget["href"]; ?>" target="_blank"><?php echo $menu_widget["id"]; ?></a>
878
  <?php endif; ?>
906
  </p>
907
  <p class="field-meta description">
908
  <label class="description">
909
+ <?php if( !empty( $menu_widget["group"] ) or $menu_widget["id"] == 'menu-toggle' ) : ?>
910
  <input type="hidden" class="meta_target" value="_blank" name="data[][meta][target]" />
911
  <?php else: ?>
912
  <?php $checked = ""; ?>
1090
  function admin_bar_places() {
1091
  return $Place_types = array( "left" => __( 'Left' ) , "right" => __( 'Right' ) , "front" => __( 'Front' , $this->ltd ) );
1092
  }
1093
+
1094
+ // SetList
1095
+ function get_plugin_cap() {
1096
+ $capability = 'administrator';
1097
+
1098
+ $Data = $this->get_data( 'plugin_cap' );
1099
+ if( !empty( $Data["edit_cap"] ) ) {
1100
+ $capability = $Data["edit_cap"];
1101
+ }
1102
+
1103
+ return $capability;
1104
+ }
1105
 
1106
 
1107
 
1136
  $this->update_appearance_menus();
1137
  } elseif( $RecordField == 'loginscreen' ) {
1138
  $this->update_loginscreen();
1139
+ } elseif( $RecordField == 'plugin_cap' ) {
1140
+ $this->update_plugincap();
1141
  }
1142
+
1143
  }
1144
 
1145
  if( !empty( $RecordField ) && !empty( $_POST["reset"] ) ) {
1146
  if( $RecordField == 'manage_metabox' ) {
1147
  delete_option( $this->Record["regist_metabox"] );
1148
+ } elseif( $RecordField == 'dashboard' ) {
1149
+ delete_option( $this->Record["regist_dashboard_metabox"] );
1150
  }
1151
  $this->update_reset( $RecordField );
1152
  }
1191
  $SubmitKey = md5( strip_tags( $_POST["donate_key"] ) );
1192
  if( $this->DonateKey == $SubmitKey ) {
1193
  update_option( $this->Record["donate"] , $SubmitKey );
1194
+ wp_redirect( add_query_arg( $this->MsgQ , 'donated' ) );
1195
  exit;
1196
  }
1197
  }
1449
  }
1450
  }
1451
 
1452
+ // DataUpdate
1453
+ function update_plugincap() {
1454
+ $Update = $this->update_validate();
1455
+ if( !empty( $Update ) && check_admin_referer( $this->Nonces["value"] , $this->Nonces["field"] ) ) {
1456
+
1457
+ if( !empty( $_POST["data"]["edit_cap"] ) ) {
1458
+ $Update["edit_cap"] = strip_tags( $_POST["data"]["edit_cap"] );
1459
+ }
1460
+
1461
+ $Record = apply_filters( 'wauc_pre_update' , $this->Record["plugin_cap"] );
1462
+ update_option( $Record , $Update );
1463
+ wp_redirect( add_query_arg( $this->MsgQ , 'update' , stripslashes( $_POST["_wp_http_referer"] ) ) );
1464
+ exit;
1465
+
1466
+ }
1467
+ }
1468
+
1469
 
1470
 
1471
 
1487
 
1488
  // admin UI
1489
  if( is_admin() && !is_network_admin () ) {
 
 
 
 
 
 
1490
  // admin init
1491
  add_action( 'wp_loaded' , array( $this , 'admin_init' ) );
1492
  }
1493
 
1494
+ add_action( 'admin_footer' , array( $this , 'admin_bar_resizing' ) );
1495
+ add_action( 'wp_footer' , array( $this , 'admin_bar_resizing' ) );
1496
 
1497
  }
1498
 
1904
  add_filter( 'screen_options_show_screen' , '__return_false' );
1905
  }
1906
  }
 
1907
  }
1908
 
1909
  // FilterStart
1932
  $css = strip_tags( $GetData["css"] );
1933
  $css = $this->val_replace( $css );
1934
 
1935
+ wp_enqueue_style( $this->PageSlug . '-custom' , strip_tags( $css ) , array() , $this->Ver );
1936
  }
1937
 
1938
  }
 
1939
  }
1940
 
1941
  // FilterStart
1942
  function wp_dashboard_setup() {
1943
  global $wp_meta_boxes;
1944
 
1945
+ $Data = $this->get_flit_data( 'dashboard' );
1946
 
1947
+ if( !empty( $Data ) && is_array( $Data ) ) {
1948
+ unset( $Data["UPFN"] );
1949
+
1950
+ if( !empty( $Data["metabox_move"] ) ) {
1951
+ wp_enqueue_script( 'not-move' , $this->Url . 'js/dashboard/not_move.js' , array( 'jquery' , 'jquery-ui-sortable' , 'dashboard' ) , $this->Ver , true );
1952
+ unset( $Data["metabox_move"] );
1953
+ }
1954
+
1955
+ if( !empty( $Data["show_welcome_panel"] ) ) {
1956
+ $user_id = get_current_user_id();
1957
+ if( get_user_meta( $user_id , 'show_welcome_panel' , true ) == true ) {
1958
+ update_user_meta( $user_id , 'show_welcome_panel' , 0 );
1959
  }
1960
  }
1961
 
1962
+ foreach( $wp_meta_boxes["dashboard"] as $context => $meta_box ) {
1963
+ foreach( $meta_box as $priority => $box ) {
1964
+ foreach( $box as $metabox_id => $b ) {
1965
+ if( !empty( $Data[$metabox_id]["remove"] ) ) {
1966
+ remove_meta_box( $metabox_id , 'dashboard' , $context );
1967
+ } elseif( !empty( $Data[$metabox_id]["name"] ) ) {
1968
+ $wp_meta_boxes["dashboard"][$context][$priority][$metabox_id]["title"] = stripslashes( $Data[$metabox_id]["name"] );
1969
+ }
1970
  }
 
 
 
 
1971
  }
1972
  }
1973
  }
2218
  unset( $GetData["UPFN"] );
2219
 
2220
  if( !empty( $GetData["add_new_menu"] ) ) {
2221
+ echo '<style>.wrap > .manage-menus, .locations-row-links .locations-add-menu-link { display: none; }</style>';
 
 
 
 
 
2222
  }
2223
  if( !empty( $GetData["delete_menu"] ) ) {
2224
  echo '<style>.major-publishing-actions .delete-action { display: none; }</style>';
2227
  }
2228
  }
2229
 
2230
+ // FilterStart
2231
+ function admin_bar_resizing() {
2232
+ global $wp_version;
2233
+ if ( version_compare( $wp_version , '3.8' , '>=' ) ) {
2234
+ wp_enqueue_style( $this->PageSlug . '-adminbar-resize' , $this->Url . 'css/adminbar/resize.css', array() , $this->Ver );
2235
+ if( is_admin() ) {
2236
+ wp_enqueue_script( $this->PageSlug . '-adminbar-resize' , $this->Url . 'js/adminbar/resize.js', array( 'jquery' ) , $this->Ver );
2237
+ }
2238
+ }
2239
+ }
2240
+
2241
  // FilterStart
2242
  function display_msg() {
2243
  if( !empty( $_GET[$this->MsgQ] ) ) {
2245
  if( $msg == 'update' or $msg == 'delete' ) {
2246
  $this->Msg .= '<div class="updated"><p><strong>' . __( 'Settings saved.' ) . '</strong></p></div>';
2247
  } elseif( $msg == 'donated' ) {
2248
+ $this->Msg .= '<div class="updated"><p><strong>' . __( 'Thank you for your donation.' , $this->ltd ) . '</strong></p></div>';
2249
  }
2250
  }
2251
  }
2260
  function DisplayDonation() {
2261
  $donation = get_option( $this->Record["donate"] );
2262
  if( $this->DonateKey != $donation ) {
2263
+ $this->Msg .= '<div class="error"><p><strong>' . __( 'Thank you for considering donate.' , $this->ltd ) . '</strong> <a href="' . self_admin_url( 'admin.php?page=' . $this->PageSlug ) . '">' . __( 'Donate' , $this->ltd ) . '</a></p></div>';
2264
  }
2265
  }
2266
 
2267
  }
2268
  $wauc = new WP_Admin_UI_Customize();
2269