WP Admin UI Customize - Version 1.5.2.3

Version Description

  • Fixed: Priority change of loading meta boxes on Dashboard.
  • Fixed: Customize of Appearance.
  • Added: Shortcode to order number count show of WooCommerce.
  • Added: Add View Post menu of Admin bar settings.
  • Added: Shortcode to Current post type name.
  • Support: Compatible to Post Edit Toolbar.
Download this release

Release Info

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

Code changes from version 1.5.2.2 to 1.5.2.3

images/3.6/appearance_menus_add_new_menu.png DELETED
Binary file
images/3.6/appearance_menus_add_new_menu_of_location.png DELETED
Binary file
images/3.6/appearance_menus_delete_menu.png DELETED
Binary file
inc/list_variables.php CHANGED
@@ -1,7 +1,5 @@
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;
@@ -9,6 +7,7 @@ $current_user = wp_get_current_user();
9
  if( is_multisite() ) {
10
  $current_site = get_current_site();
11
  }
 
12
  ?>
13
 
14
  <div id="list_variables">
@@ -88,11 +87,7 @@ if( is_multisite() ) {
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>
@@ -129,6 +124,34 @@ if( is_multisite() ) {
129
  <span class="description"><?php _e( 'In your case.' , $this->ltd ); ?></span>
130
  </td>
131
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  </tbody>
133
  </table>
134
 
1
  <?php
2
 
 
 
3
  $update_data = wp_get_update_data();
4
  $awaiting_mod = wp_count_comments();
5
  $awaiting_mod = $awaiting_mod->moderated;
7
  if( is_multisite() ) {
8
  $current_site = get_current_site();
9
  }
10
+
11
  ?>
12
 
13
  <div id="list_variables">
87
  <tr>
88
  <th><strong>[comment_count]</strong></th>
89
  <td>
90
+ <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>
 
 
 
 
91
  </td>
92
  </tr>
93
  <tr>
124
  <span class="description"><?php _e( 'In your case.' , $this->ltd ); ?></span>
125
  </td>
126
  </tr>
127
+ <tr>
128
+ <th><strong>[post_type]</strong></th>
129
+ <td>
130
+ <code><?php _e( 'Posts' ); ?></code>
131
+ <span class="description"><?php _e( 'Current Post Type Name' , $this->ltd ); ?> ( <?php _e( 'Pages' ); ?>/<?php _e( 'Categories' ); ?>/<?php _e( 'Tags' ); ?>/<?php _e( 'Custom' ); ?>)</span>
132
+ </td>
133
+ </tr>
134
+ <?php if( !empty( $this->ActivatedPlugin ) ) : ?>
135
+
136
+ <?php $activated_plugins = $this->ActivatedPlugin; ?>
137
+
138
+ <?php if( !empty( $activated_plugins['woocommerce'] ) ) : ?>
139
+
140
+ <?php if( function_exists( 'wc_processing_order_count' ) ) : ?>
141
+ <?php $order_count = intval( wc_processing_order_count() ); ?>
142
+ <?php if( !empty( $order_count ) ) : ?>
143
+ <tr>
144
+ <th><strong>[woocommerce_order_process_count]</strong></th>
145
+ <td>
146
+ <code>&lt;span class=&quot;awaiting-mod update-plugins count-<?php echo $order_count ?>&quot;&gt;&lt;span class=&quot;processing-count&quot;><?php echo number_format_i18n( $order_count ); ?>&lt;/span&gt;&lt;/span&gt;</code>
147
+ </td>
148
+ </tr>
149
+ <?php endif; ?>
150
+ <?php endif; ?>
151
+
152
+ <?php endif; ?>
153
+
154
+ <?php endif; ?>
155
  </tbody>
156
  </table>
157
 
inc/reset_userrole.php CHANGED
@@ -1,19 +1,12 @@
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">
@@ -37,7 +30,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
37
  </ul>
38
  <br />
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-primary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
43
  </p>
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">
30
  </ul>
31
  <br />
32
 
33
+ <p><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'User Roles Settings' , $this->ltd ) ); ?></p>
34
  <p class="submit">
35
  <input type="submit" class="button-primary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
36
  </p>
inc/setting_admin_bar_menu.php CHANGED
@@ -1,7 +1,5 @@
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,12 +8,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
 
@@ -91,7 +84,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
91
  </p>
92
 
93
  <p class="submit reset">
94
- <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
95
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
96
  </p>
97
 
@@ -272,6 +265,7 @@ jQuery(document).ready(function($) {
272
  if ( ui.item.hasClass('deleting') ) {
273
  ui.item.remove();
274
  }
 
275
  wauc_widget_each();
276
  },
277
  });
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
  $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
 
84
  </p>
85
 
86
  <p class="submit reset">
87
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Admin Bar Menu' , $this->ltd ) . __( 'Settings' ) ); ?></span>
88
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
89
  </p>
90
 
265
  if ( ui.item.hasClass('deleting') ) {
266
  ui.item.remove();
267
  }
268
+ ui.item.attr( 'style', '' ).removeClass('ui-draggable');
269
  wauc_widget_each();
270
  },
271
  });
inc/setting_admin_general.php CHANGED
@@ -1,19 +1,12 @@
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
 
@@ -166,19 +159,17 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
166
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Remove "Wordpress" from the title tag of the Admin screen' , $this->ltd ); ?></label>
167
  </td>
168
  </tr>
169
- <?php if( version_compare( $wp_version , '3.8' , '>=' ) ) : ?>
170
- <?php $field = 'resize_admin_bar'; ?>
171
- <tr>
172
- <th>
173
- <label><?php _e( 'Resizing Admin bar' , $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; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Don\'t resize' , $this->ltd ); ?></label>
179
- </td>
180
- </tr>
181
- <?php endif; ?>
182
  </tbody>
183
  </table>
184
  </div>
@@ -197,7 +188,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
197
  </p>
198
 
199
  <p class="submit reset">
200
- <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
201
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
202
  </p>
203
 
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
 
159
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Remove "Wordpress" from the title tag of the Admin screen' , $this->ltd ); ?></label>
160
  </td>
161
  </tr>
162
+ <?php $field = 'resize_admin_bar'; ?>
163
+ <tr>
164
+ <th>
165
+ <label><?php _e( 'Resizing Admin bar' , $this->ltd ); ?></label>
166
+ </th>
167
+ <td>
168
+ <?php $Checked = ''; ?>
169
+ <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
170
+ <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Don\'t resize' , $this->ltd ); ?></label>
171
+ </td>
172
+ </tr>
 
 
173
  </tbody>
174
  </table>
175
  </div>
188
  </p>
189
 
190
  <p class="submit reset">
191
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , sprintf( __( '%1$s %2$s' , $this->ltd ) , __( 'General' ) , __( 'Settings' ) ) ); ?></span>
192
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
193
  </p>
194
 
inc/setting_appearance_menus.php CHANGED
@@ -1,19 +1,11 @@
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
 
19
  <div class="wrap">
@@ -51,13 +43,8 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
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>
63
  <?php $field = 'delete_menu'; ?>
@@ -70,11 +57,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
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>
77
- <?php endif; ?>
78
  </td>
79
  </tr>
80
  </tbody>
@@ -95,7 +78,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
95
  </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
 
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
  <div class="wrap">
43
  <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
44
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
45
  <p class="description"><?php _e( 'This is useful when you want to use only the menus have been created.' , $this->ltd ); ?></p>
46
+ <p><img src="<?php echo $this->Url; ?>images/appearance_menus_add_new_menu.png" /></p>
47
+ <p><img src="<?php echo $this->Url; ?>images/appearance_menus_add_new_menu_of_location.png" /></p>
 
 
 
 
 
48
  </td>
49
  </tr>
50
  <?php $field = 'delete_menu'; ?>
57
  <?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
58
  <label><input type="checkbox" name="data[<?php echo $field; ?>]" value="1" <?php echo $Checked; ?> /> <?php _e ( 'Hide' ); ?></label>
59
  <p class="description"><?php _e( 'This is useful when you want to use only the menus have been created.' , $this->ltd ); ?></p>
60
+ <p><img src="<?php echo $this->Url; ?>images/appearance_menus_delete_menu.png" /></p>
 
 
 
 
61
  </td>
62
  </tr>
63
  </tbody>
78
  </p>
79
 
80
  <p class="submit reset">
81
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Appearance Menus Screen Setting' , $this->ltd ) ); ?></span>
82
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
83
  </p>
84
 
inc/setting_dashboard.php CHANGED
@@ -1,19 +1,12 @@
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
 
@@ -147,7 +140,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
147
  </p>
148
 
149
  <p class="submit reset">
150
- <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
151
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
152
  </p>
153
 
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'dashboard' );
4
  $Metaboxes = $this->get_data( "regist_dashboard_metabox" );
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
 
140
  </p>
141
 
142
  <p class="submit reset">
143
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Dashboard' ) . __( 'Settings' ) ); ?></span>
144
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
145
  </p>
146
 
inc/setting_default.php CHANGED
@@ -1,19 +1,12 @@
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">
@@ -62,7 +55,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
62
  <div class="stuffbox" id="aboutbox">
63
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd ); ?></span></h3>
64
  <div class="inside">
65
- <p><?php _e( 'Version checked' , $this->ltd ); ?> : 3.6.1 - 4.0</p>
66
  <ul>
67
  <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>
68
  <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>
@@ -128,7 +121,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
128
  </p>
129
 
130
  <p class="submit reset">
131
- <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
132
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
133
  </p>
134
 
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">
55
  <div class="stuffbox" id="aboutbox">
56
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd ); ?></span></h3>
57
  <div class="inside">
58
+ <p><?php _e( 'Version checked' , $this->ltd ); ?> : 3.8 - 4.1</p>
59
  <ul>
60
  <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>
61
  <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>
121
  </p>
122
 
123
  <p class="submit reset">
124
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'User Roles Settings' , $this->ltd ) ); ?></span>
125
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
126
  </p>
127
 
inc/setting_loginscreen.php CHANGED
@@ -1,19 +1,12 @@
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
 
@@ -156,7 +149,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
156
  </p>
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
 
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
 
149
  </p>
150
 
151
  <p class="submit reset">
152
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Login Screen Settings' , $this->ltd ) ); ?></span>
153
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
154
  </p>
155
 
inc/setting_manage_metabox.php CHANGED
@@ -1,7 +1,5 @@
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,12 +7,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
 
@@ -349,7 +342,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
349
  </p>
350
 
351
  <p class="submit reset">
352
- <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
353
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
354
  </p>
355
 
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'manage_metabox' );
4
  $Metaboxes = $this->get_data( "regist_metabox" );
5
  $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
 
342
  </p>
343
 
344
  <p class="submit reset">
345
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Manage meta box' , $this->ltd ) . __( 'Settings' ) ); ?></span>
346
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
347
  </p>
348
 
inc/setting_plugin_cap.php CHANGED
@@ -1,19 +1,12 @@
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
 
@@ -90,7 +83,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
90
  </p>
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
 
1
  <?php
2
 
 
 
3
  $Data = $this->get_data( 'plugin_cap' );
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
 
83
  </p>
84
 
85
  <p class="submit reset">
86
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , sprintf( __( '%1$s of %2$s %3$s' , $this->ltd ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ) . __( 'Settings' ) ); ?></span>
87
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
88
  </p>
89
 
inc/setting_post_add_edit.php CHANGED
@@ -1,19 +1,12 @@
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
 
@@ -105,7 +98,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
105
  </p>
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
 
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
 
98
  </p>
99
 
100
  <p class="submit reset">
101
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Add New Post and Edit Post Screen Setting' , $this->ltd ) ); ?></span>
102
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
103
  </p>
104
 
inc/setting_sidemenu.php CHANGED
@@ -1,8 +1,5 @@
1
  <?php
2
 
3
- global $menu, $submenu;
4
- global $wp_version;
5
-
6
  $this->get_user_role();
7
  $Data = $this->get_data( 'sidemenu' );
8
 
@@ -10,12 +7,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
 
@@ -125,7 +117,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
125
 
126
  <?php if( empty( $Data ) ) : ?>
127
 
128
- <?php foreach($menu as $mm) : ?>
129
 
130
  <?php if( isset( $mm[2] ) && strstr( $mm[2] , 'separator' ) ) : ?>
131
 
@@ -147,7 +139,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
147
  <?php endif; ?>
148
 
149
  <?php $mwsm = array(); ?>
150
- <?php foreach($submenu as $parent_slug => $sub) : ?>
151
  <?php foreach($sub as $sm) : ?>
152
  <?php if( $mm[2] == $parent_slug ) : ?>
153
  <?php $submenu_title = $sm[0]; ?>
@@ -172,7 +164,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
172
  <?php if( !empty( $Data["main"] ) ) : ?>
173
 
174
  <?php foreach($Data["main"] as $mm) : ?>
175
-
176
  <?php if( !empty( $mm["title"] ) ) : ?>
177
 
178
  <?php $mwsm = array(); ?>
@@ -180,7 +172,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
180
  <?php foreach($Data["sub"] as $sm) : ?>
181
 
182
  <?php if( $mm["slug"] == $sm["parent_slug"] ) : ?>
183
-
184
  <?php $cap = ""; ?>
185
  <?php if( !empty( $submenu[$mm["slug"]] ) ) : ?>
186
  <?php foreach( $submenu[$mm["slug"]] as $k => $tmp_sm ) : ?>
@@ -199,7 +191,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
199
  <?php endif; ?>
200
 
201
  <?php $cap = ""; ?>
202
- <?php foreach( $menu as $tmp_m ) : ?>
203
  <?php if( $tmp_m[2] == $mm["slug"] ) : ?>
204
  <?php $cap = $tmp_m[1]; ?>
205
  <?php break; ?>
@@ -237,7 +229,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
237
  </p>
238
 
239
  <p class="submit reset">
240
- <span class="description"><?php _e( 'Reset all settings?' , $this->ltd ); ?></span>
241
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
242
  </p>
243
 
@@ -319,6 +311,7 @@ jQuery(document).ready(function($) {
319
  if ( ui.item.hasClass('deleting') ) {
320
  ui.item.remove();
321
  }
 
322
  wauc_widget_each();
323
  },
324
  });
1
  <?php
2
 
 
 
 
3
  $this->get_user_role();
4
  $Data = $this->get_data( 'sidemenu' );
5
 
7
  $ReadedJs = array( 'jquery' , 'jquery-ui-draggable' , 'jquery-ui-droppable' , 'jquery-ui-sortable' , 'thickbox' );
8
  wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
9
  wp_enqueue_style('thickbox');
10
+ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
 
 
 
 
 
11
 
12
  ?>
13
 
117
 
118
  <?php if( empty( $Data ) ) : ?>
119
 
120
+ <?php foreach($this->Menu as $mm) : ?>
121
 
122
  <?php if( isset( $mm[2] ) && strstr( $mm[2] , 'separator' ) ) : ?>
123
 
139
  <?php endif; ?>
140
 
141
  <?php $mwsm = array(); ?>
142
+ <?php foreach($this->SubMenu as $parent_slug => $sub) : ?>
143
  <?php foreach($sub as $sm) : ?>
144
  <?php if( $mm[2] == $parent_slug ) : ?>
145
  <?php $submenu_title = $sm[0]; ?>
164
  <?php if( !empty( $Data["main"] ) ) : ?>
165
 
166
  <?php foreach($Data["main"] as $mm) : ?>
167
+
168
  <?php if( !empty( $mm["title"] ) ) : ?>
169
 
170
  <?php $mwsm = array(); ?>
172
  <?php foreach($Data["sub"] as $sm) : ?>
173
 
174
  <?php if( $mm["slug"] == $sm["parent_slug"] ) : ?>
175
+
176
  <?php $cap = ""; ?>
177
  <?php if( !empty( $submenu[$mm["slug"]] ) ) : ?>
178
  <?php foreach( $submenu[$mm["slug"]] as $k => $tmp_sm ) : ?>
191
  <?php endif; ?>
192
 
193
  <?php $cap = ""; ?>
194
+ <?php foreach( $this->Menu as $tmp_m ) : ?>
195
  <?php if( $tmp_m[2] == $mm["slug"] ) : ?>
196
  <?php $cap = $tmp_m[1]; ?>
197
  <?php break; ?>
229
  </p>
230
 
231
  <p class="submit reset">
232
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Side Menu' , $this->ltd ) . __( 'Settings' ) ); ?></span>
233
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
234
  </p>
235
 
311
  if ( ui.item.hasClass('deleting') ) {
312
  ui.item.remove();
313
  }
314
+ ui.item.attr( 'style', '' ).removeClass('ui-draggable');
315
  wauc_widget_each();
316
  },
317
  });
inc/setting_site.php CHANGED
@@ -1,19 +1,12 @@
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
 
@@ -164,7 +157,7 @@ if ( version_compare( $wp_version , '3.8' , '<' ) ) {
164
  </p>
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
 
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
 
157
  </p>
158
 
159
  <p class="submit reset">
160
+ <span class="description"><?php printf( __( 'Reset the %s?' , $this->ltd ) , __( 'Site Settings' , $this->ltd ) ); ?></span>
161
  <input type="submit" class="button-secondary" name="reset" value="<?php _e( 'Reset settings' , $this->ltd ); ?>" />
162
  </p>
163
 
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: 2014-08-22 12:41+0900\n"
6
- "PO-Revision-Date: 2014-08-22 14:20+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,608 +21,619 @@ msgstr ""
21
  msgid "An excellent plugin to customize the management screens."
22
  msgstr "管理画面のカスタマイズに優れたプラグインです。"
23
 
24
- #: wp-admin-ui-customize.php:142
25
- #: wp-admin-ui-customize.php:181
26
- #: inc/reset_userrole.php:22
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
- #: wp-admin-ui-customize.php:171
31
- #: inc/reset_userrole.php:56
32
- #: inc/setting_site.php:23
 
33
  msgid "Site Settings"
34
  msgstr "サイトの設定"
35
 
36
- #: wp-admin-ui-customize.php:172
37
- #: inc/reset_userrole.php:57
38
- #: inc/setting_admin_general.php:23
 
39
  #, php-format
40
  msgid "%1$s %2$s"
41
  msgstr "%1$s%2$s"
42
 
43
- #: wp-admin-ui-customize.php:174
44
- #: inc/reset_userrole.php:59
45
- #: inc/setting_admin_bar_menu.php:25
 
46
  msgid "Admin Bar Menu"
47
  msgstr "管理バー"
48
 
49
- #: wp-admin-ui-customize.php:175
50
- #: inc/reset_userrole.php:60
51
- #: inc/setting_sidemenu.php:25
 
52
  msgid "Side Menu"
53
  msgstr "サイドメニュー"
54
 
55
- #: wp-admin-ui-customize.php:176
56
- #: inc/reset_userrole.php:61
57
- #: inc/setting_manage_metabox.php:24
 
58
  msgid "Manage meta box"
59
  msgstr "メタボックス管理"
60
 
61
- #: wp-admin-ui-customize.php:177
62
- #: inc/reset_userrole.php:62
63
- #: inc/setting_post_add_edit.php:23
 
64
  msgid "Add New Post and Edit Post Screen Setting"
65
  msgstr "新規投稿&編集の設定"
66
 
67
- #: wp-admin-ui-customize.php:178
68
- #: inc/reset_userrole.php:63
69
- #: inc/setting_appearance_menus.php:22
 
70
  msgid "Appearance Menus Screen Setting"
71
  msgstr "外観メニュー画面の設定"
72
 
73
- #: wp-admin-ui-customize.php:179
74
- #: inc/reset_userrole.php:64
75
- #: inc/setting_loginscreen.php:34
76
  msgid "Login Screen"
77
  msgstr "ログイン画面"
78
 
79
- #: wp-admin-ui-customize.php:180
80
- #: inc/reset_userrole.php:65
81
- #: inc/setting_plugin_cap.php:23
 
82
  #, php-format
83
  msgid "%1$s of %2$s %3$s"
84
  msgstr "%2$s%3$sの%1$s"
85
 
86
- #: wp-admin-ui-customize.php:331
87
  #, php-format
88
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
89
  msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
90
 
91
- #: wp-admin-ui-customize.php:356
92
  msgid "Apply user roles"
93
  msgstr "適用されるユーザー権限"
94
 
95
- #: wp-admin-ui-customize.php:688
96
- #: wp-admin-ui-customize.php:861
97
  msgid "Sub Menus"
98
  msgstr "サブメニュー"
99
 
100
- #: wp-admin-ui-customize.php:783
101
- #: wp-admin-ui-customize.php:805
102
  msgid "Menu Group"
103
  msgstr "メニューグループ"
104
 
105
- #: wp-admin-ui-customize.php:803
106
  msgid "Show only on front end."
107
  msgstr "フロント(サイト)のみ表示"
108
 
109
- #: wp-admin-ui-customize.php:823
110
- msgid "If you want edit to name, please edit of translation file(PO)."
111
- msgstr "タイトルを変更したい場合は翻訳ファイル(PO)を編集してください。"
112
-
113
- #: wp-admin-ui-customize.php:1023
114
  msgid "Front"
115
  msgstr "フロント(サイト)"
116
 
117
- #: wp-admin-ui-customize.php:2276
118
- #: inc/setting_default.php:187
119
  msgid "Thank you for your donation."
120
  msgstr "寄付いただきありがとうございます。"
121
 
122
- #: wp-admin-ui-customize.php:2291
123
  msgid "Please consider making a donation."
124
  msgstr "寄付のご検討宜しくお願いします。"
125
 
126
- #: wp-admin-ui-customize.php:2291
127
- #: inc/setting_default.php:39
128
  msgid "Donate"
129
  msgstr "寄付について"
130
 
131
- #: inc/list_variables.php:20
132
- #: inc/setting_admin_bar_menu.php:32
133
- #: inc/setting_admin_general.php:132
134
- #: inc/setting_admin_general.php:155
135
- #: inc/setting_loginscreen.php:71
136
- #: inc/setting_loginscreen.php:84
137
- #: inc/setting_loginscreen.php:96
138
- #: inc/setting_loginscreen.php:124
139
- #: inc/setting_loginscreen.php:136
140
- #: inc/setting_sidemenu.php:32
141
  msgid "Shortcodes"
142
  msgstr "ショートコード一覧"
143
 
144
- #: inc/list_variables.php:45
145
  msgid "Blog name of logged in."
146
  msgstr "ログイン中のブログ名"
147
 
148
- #: inc/list_variables.php:54
149
  msgid "Blog URL of logged in."
150
  msgstr "ログイン中のブログURL"
151
 
152
- #: inc/list_variables.php:108
153
- #: inc/list_variables.php:115
154
- #: inc/list_variables.php:122
155
- #: inc/list_variables.php:129
156
  msgid "In your case."
157
  msgstr "これはあなたの場合です。"
158
 
159
- #: inc/reset_userrole.php:30
 
 
 
 
160
  msgid "Applied user roles"
161
  msgstr "適用されたユーザー権限"
162
 
163
- #: inc/reset_userrole.php:40
164
- msgid "You want to reset the user roles?"
165
- msgstr "ユーザー権限をリセットしてもよろしいですか?"
166
-
167
- #: inc/reset_userrole.php:42
168
- #: inc/setting_admin_bar_menu.php:95
169
- #: inc/setting_admin_general.php:201
170
- #: inc/setting_appearance_menus.php:99
171
- #: inc/setting_dashboard.php:151
172
- #: inc/setting_default.php:132
173
- #: inc/setting_loginscreen.php:160
174
- #: inc/setting_manage_metabox.php:353
175
- #: inc/setting_plugin_cap.php:94
176
- #: inc/setting_post_add_edit.php:109
177
- #: inc/setting_sidemenu.php:241
178
- #: inc/setting_site.php:168
 
 
 
 
 
 
 
 
 
 
 
 
179
  msgid "Reset settings"
180
  msgstr "設定をリセット"
181
 
182
- #: inc/reset_userrole.php:49
183
- #: inc/reset_userrole.php:71
184
  msgid "Reset settings of all"
185
  msgstr "全ての設定をリセット"
186
 
187
- #: inc/reset_userrole.php:54
188
  msgid "Setting all of the below will be deleted."
189
  msgstr "以下のすべての設定が削除されます。"
190
 
191
- #: inc/reset_userrole.php:69
192
  msgid "Are you sure you want to delete all settings?"
193
  msgstr "本当に全ての設定を削除してもよろしいですか?"
194
 
195
- #: inc/setting_admin_bar_menu.php:26
196
- #: inc/setting_sidemenu.php:26
197
  msgid "Please change the menu by drag and drop."
198
  msgstr "ドラッグ&ドロップでメニューを変更してください。"
199
 
200
- #: inc/setting_admin_bar_menu.php:27
201
- #: inc/setting_sidemenu.php:28
202
  msgid "Notice: Please do not place the same multiple menu slug."
203
  msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
204
 
205
- #: inc/setting_admin_bar_menu.php:28
206
  msgid "Can be more than one custom menu."
207
  msgstr "カスタムメニューは複数設置できます。"
208
 
209
- #: inc/setting_admin_bar_menu.php:32
210
- #: inc/setting_admin_general.php:132
211
- #: inc/setting_admin_general.php:155
212
- #: inc/setting_loginscreen.php:71
213
- #: inc/setting_loginscreen.php:84
214
- #: inc/setting_loginscreen.php:96
215
- #: inc/setting_loginscreen.php:124
216
- #: inc/setting_loginscreen.php:136
217
- #: inc/setting_sidemenu.php:32
218
  msgid "Available Shortcodes"
219
  msgstr "利用可能なショートコード一覧"
220
 
221
- #: inc/setting_admin_bar_menu.php:40
222
  msgid "Sub-menu settings apply to maximum of four levels deep."
223
  msgstr "サブメニューは最大4階層まで設定できます。"
224
 
225
- #: inc/setting_admin_bar_menu.php:41
226
  msgid "Admin bar settings documentation page"
227
  msgstr "管理バー設定のドキュメントはこちら"
228
 
229
- #: inc/setting_admin_bar_menu.php:94
230
- #: inc/setting_admin_general.php:200
231
- #: inc/setting_appearance_menus.php:98
232
- #: inc/setting_dashboard.php:150
233
- #: inc/setting_default.php:131
234
- #: inc/setting_loginscreen.php:159
235
- #: inc/setting_manage_metabox.php:352
236
- #: inc/setting_plugin_cap.php:93
237
- #: inc/setting_post_add_edit.php:108
238
- #: inc/setting_sidemenu.php:240
239
- #: inc/setting_site.php:167
240
- msgid "Reset all settings?"
241
- msgstr "リセットしますか?"
242
-
243
- #: inc/setting_admin_bar_menu.php:100
244
- #: inc/setting_sidemenu.php:27
245
- #: inc/setting_sidemenu.php:48
246
  msgid "Menu items that can be added"
247
  msgstr "追加できるメニュー一覧"
248
 
249
- #: inc/setting_admin_general.php:41
250
  msgid "Notifications"
251
  msgstr "通知"
252
 
253
- #: inc/setting_admin_general.php:47
254
  msgid "WordPress core update notice"
255
  msgstr "WordPress コアアップデート通知"
256
 
257
- #: inc/setting_admin_general.php:53
258
- #: inc/setting_admin_general.php:64
259
- #: inc/setting_admin_general.php:75
260
  msgid "Not notified"
261
  msgstr "通知しない"
262
 
263
- #: inc/setting_admin_general.php:58
264
  msgid "Plugin update notice"
265
  msgstr "プラグイン アップデート通知"
266
 
267
- #: inc/setting_admin_general.php:69
268
  msgid "Theme update notice"
269
  msgstr "テーマ アップデート通知"
270
 
271
- #: inc/setting_admin_general.php:85
272
  msgid "Screen Options and Help Tab"
273
  msgstr "表示オプションとヘルプタブ"
274
 
275
- #: inc/setting_admin_general.php:124
276
- #: inc/setting_loginscreen.php:130
277
  msgid "Footer text"
278
  msgstr "フッターテキスト"
279
 
280
- #: inc/setting_admin_general.php:149
281
- #: inc/setting_loginscreen.php:118
282
  msgid "CSS file to load"
283
  msgstr "CSSファイルを読み込む"
284
 
285
- #: inc/setting_admin_general.php:161
286
  msgid "Title tag for Admin screen"
287
  msgstr "管理画面のタイトルタグ"
288
 
289
- #: inc/setting_admin_general.php:166
290
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
291
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
292
 
293
- #: inc/setting_admin_general.php:173
294
  msgid "Resizing Admin bar"
295
  msgstr "管理バーリサイズ"
296
 
297
- #: inc/setting_admin_general.php:178
298
  msgid "Don't resize"
299
  msgstr "リサイズしない"
300
 
301
- #: inc/setting_appearance_menus.php:47
302
  msgid "Create a new menu"
303
  msgstr "新規メニュー作成"
304
 
305
- #: inc/setting_appearance_menus.php:53
306
- #: inc/setting_appearance_menus.php:72
307
  msgid "This is useful when you want to use only the menus have been created."
308
  msgstr "作成済みのメニューだけを使用する時に便利です。"
309
 
310
- #: inc/setting_dashboard.php:41
311
  msgid "Meta boxes"
312
  msgstr "メタボックス"
313
 
314
- #: inc/setting_dashboard.php:50
315
- #: inc/setting_manage_metabox.php:63
316
- #: inc/setting_manage_metabox.php:160
317
- #: inc/setting_manage_metabox.php:265
318
  #, php-format
319
  msgid "Metaboxes loading for %s"
320
  msgstr "%sのメタボックスを読み込む"
321
 
322
- #: inc/setting_dashboard.php:68
323
- #: inc/setting_manage_metabox.php:84
324
- #: inc/setting_manage_metabox.php:181
325
- #: inc/setting_manage_metabox.php:286
326
  msgid "Change metabox title to"
327
  msgstr "メタボックス名を変更"
328
 
329
- #: inc/setting_dashboard.php:117
330
  msgid "Other"
331
  msgstr "その他"
332
 
333
- #: inc/setting_dashboard.php:124
334
  msgid "Meta box movement restriction"
335
  msgstr "メタボックスの移動制限"
336
 
337
- #: inc/setting_dashboard.php:129
338
  msgid "Prevent selected roles from re-arranging metaboxes"
339
  msgstr "メタボックスを移動させない"
340
 
341
- #: inc/setting_default.php:23
342
  msgid "Customize the UI of the management screen for all users."
343
  msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
344
 
345
- #: inc/setting_default.php:24
346
  msgid "Please select the user roles that all settings will apply to."
347
  msgstr "設定を適用する権限を選んでください。"
348
 
349
- #: inc/setting_default.php:26
350
  msgid "Please use the Multiple Add-on if you want per role customization."
351
  msgstr "ユーザー権限ごとに設定したい場合は マルチ設定アドオン を使用してください。"
352
 
353
- #: inc/setting_default.php:40
354
  msgid "Are you happy with this plugin?<br />Japanese law prohibits PayPal donations. <br />Please consider purchasing the Line Break First and End plugin in lieu of a donation."
355
  msgstr "このプラグインを使って満足できましたか?<br />日本の法律では、日本の新PayPalユーザーは寄付ボタンを作成することはできません。<br />なので寄付の代わりとしてこのプラグインを購入して欲しいです。"
356
 
357
- #: inc/setting_default.php:47
358
  msgid "Features"
359
  msgstr "機能について"
360
 
361
- #: inc/setting_default.php:48
362
  msgid "Line Break First and End plugin allows for line breaks when using the visual editor TinyMCE."
363
  msgstr "Line Break First and Endプラグインは、TinyMCEのビジュアルエディタで、改行を入力することが出来なくなった時に便利なプラグインです。"
364
 
365
- #: inc/setting_default.php:51
366
  msgid "The primary use of donations"
367
  msgstr "寄付の主な使用目的"
368
 
369
- #: inc/setting_default.php:53
370
  msgid "Liquidation of time and value"
371
  msgstr "時間と価値の清算"
372
 
373
- #: inc/setting_default.php:54
374
  msgid "Additional suggestions feature"
375
  msgstr "機能提案の追加"
376
 
377
- #: inc/setting_default.php:55
378
  msgid "Maintain motivation"
379
  msgstr "モチベーション維持"
380
 
381
- #: inc/setting_default.php:56
382
  msgid "Ensure time as the father of Sunday"
383
  msgstr "日曜日の父親としての時間確保"
384
 
385
- #: inc/setting_default.php:63
386
  msgid "About plugin"
387
  msgstr "プラグインについて"
388
 
389
- #: inc/setting_default.php:65
390
  msgid "Version checked"
391
  msgstr "動作確認済み"
392
 
393
- #: inc/setting_default.php:67
394
  msgid "Plugin's site"
395
  msgstr "プラグインのサイト"
396
 
397
- #: inc/setting_default.php:68
398
  msgid "Developer's site"
399
  msgstr "開発者のサイト"
400
 
401
- #: inc/setting_default.php:70
402
  msgid "Reviews"
403
  msgstr "レビュー"
404
 
405
- #: inc/setting_default.php:78
406
- #: inc/setting_loginscreen.php:43
407
  msgid "Useful plugins"
408
  msgstr "便利なプラグイン"
409
 
410
- #: inc/setting_default.php:81
411
  msgid "Apply setting on a per-role basis."
412
  msgstr "ユーザー権限ごとに別々の設定を簡単にできるアドオンです。"
413
 
414
- #: inc/setting_default.php:83
415
  msgid "Easily import/export setting between installations."
416
  msgstr "このアドオンは、WP Admin UI Customizeの設定データをインポート&エクスポートする為のアドオンです。"
417
 
418
- #: inc/setting_default.php:85
419
  msgid "Unified custom management screens for Multisite."
420
  msgstr "このアドオンは、マルチサイトで全てのサイトの管理画面を統一する為のアドオンです。"
421
 
422
- #: inc/setting_default.php:87
423
  msgid "Customize list view columns for posts, pages, custom post types, media library, and other management screens."
424
  msgstr "投稿と固定ページ、カスタム投稿タイプ、メディアライブラリー等の一覧を自由にカスタマイズできます。"
425
 
426
- #: inc/setting_default.php:89
427
  msgid "Create dashboard messages to be displayed for selected user roles."
428
  msgstr "ダッシュボードにユーザー権限やサイトごとにお知らせを表示します。"
429
 
430
- #: inc/setting_default.php:91
431
  msgid "Create custom global variables that can be used with generated template tags or shortcodes."
432
  msgstr "オプション値作成プラグインです。作成したオプション値は、ショートコードとして記事に、テンプレートタグとしても使用できます。"
433
 
434
- #: inc/setting_default.php:140
 
 
 
 
435
  msgid "If you have already donated to."
436
  msgstr "寄付済みの方へ。"
437
 
438
- #: inc/setting_default.php:141
439
  msgid "Please enter the 'Donation Delete Key' that was provided on the Line Break First and End download page."
440
  msgstr "'Line Break First and End download page' ダウンロードページに記載されていた寄付削除キーを入力して、寄付メッセージを削除できます。"
441
 
442
- #: inc/setting_default.php:144
443
  msgid "Donation Delete Key:"
444
  msgstr "寄付メッセージ削除キー:"
445
 
446
- #: inc/setting_default.php:152
447
  msgid "Do you need professional setup and customization?"
448
  msgstr "何かカスタマイズしたい事はありますか?"
449
 
450
- #: inc/setting_default.php:158
451
  msgid "I provide full service customization for WP Admin UI Customize."
452
  msgstr "私は管理画面のカスタマイズを得意とします。"
453
 
454
- #: inc/setting_default.php:159
455
  msgid "Please contact me if you are interested."
456
  msgstr "宜しければご検討ください。"
457
 
458
- #: inc/setting_default.php:161
459
  msgid "Example Customize"
460
  msgstr "カスタマイズ例"
461
 
462
- #: inc/setting_default.php:162
463
  msgid "Contact me"
464
  msgstr "お問い合わせ"
465
 
466
- #: inc/setting_loginscreen.php:23
 
467
  msgid "Login Screen Settings"
468
  msgstr "ログイン画面の設定"
469
 
470
- #: inc/setting_loginscreen.php:32
471
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
472
  msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
473
 
474
- #: inc/setting_loginscreen.php:34
475
  msgid "Show Current Login Screen"
476
  msgstr "ログイン画面を表示"
477
 
478
- #: inc/setting_loginscreen.php:46
479
  msgid "Flexible plugin for login screen customization."
480
  msgstr "柔軟にログイン画面をカスタマイズするプラグインです。"
481
 
482
- #: inc/setting_loginscreen.php:58
483
  msgid "Login Form"
484
  msgstr "ログインフォーム"
485
 
486
- #: inc/setting_loginscreen.php:65
487
  msgid "The link after clicking on the logo"
488
  msgstr "ロゴのリンク先"
489
 
490
- #: inc/setting_loginscreen.php:78
491
  msgid "Logo Title"
492
  msgstr "ロゴタイトル"
493
 
494
- #: inc/setting_loginscreen.php:90
495
  msgid "Logo Image path"
496
  msgstr "ロゴ画像のパス"
497
 
498
- #: inc/setting_manage_metabox.php:25
499
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
500
  msgstr "メタボックスを読み込むには編集画面にアクセスしてください。"
501
 
502
- #: inc/setting_manage_metabox.php:26
503
  msgid "Please enter if you want to change of Metabox label name."
504
  msgstr "メタボックス名は変更したい時だけ入力してください。"
505
 
506
- #: inc/setting_manage_metabox.php:82
507
- #: inc/setting_manage_metabox.php:179
508
- #: inc/setting_manage_metabox.php:284
509
  msgid "Default Open"
510
  msgstr "デフォルトの表示"
511
 
512
- #: inc/setting_manage_metabox.php:110
513
- #: inc/setting_manage_metabox.php:206
514
- #: inc/setting_manage_metabox.php:310
515
  msgid "Expanded"
516
  msgstr "開く"
517
 
518
- #: inc/setting_manage_metabox.php:111
519
- #: inc/setting_manage_metabox.php:207
520
- #: inc/setting_manage_metabox.php:311
521
  msgid "Collapsed"
522
  msgstr "閉じる"
523
 
524
- #: inc/setting_manage_metabox.php:122
525
- #: inc/setting_manage_metabox.php:218
526
- #: inc/setting_post_add_edit.php:55
527
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
528
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
529
 
530
- #: inc/setting_manage_metabox.php:124
531
- #: inc/setting_manage_metabox.php:220
532
  msgid "Please set from here if you want to view the comments on screen."
533
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
534
 
535
- #: inc/setting_plugin_cap.php:24
536
  #, php-format
537
  msgid "You can change the user role %2$s of %1$s settings."
538
  msgstr "%1$sの設定%2$sを変更することができます。"
539
 
540
- #: inc/setting_plugin_cap.php:25
541
  #, php-format
542
  msgid "Please choose the minimum role that can modify %s settings."
543
  msgstr "%s を動作させる最小限の権限を選択してください。"
544
 
545
- #: inc/setting_plugin_cap.php:42
546
  #, php-format
547
  msgid "Capability role for the %s"
548
  msgstr "%s を動作させる権限"
549
 
550
- #: inc/setting_post_add_edit.php:48
551
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
552
  msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
553
 
554
- #: inc/setting_post_add_edit.php:56
555
  msgid "Please select if you want to display the comments on Site."
556
  msgstr "サイトでコメントを表示させたい場合選択してください。"
557
 
558
- #: inc/setting_post_add_edit.php:57
559
  #, php-format
560
  msgid "However, this will follow the setting of %s."
561
  msgstr "ただし、これは%sの設定に従います。"
562
 
563
- #: inc/setting_post_add_edit.php:59
564
  #, php-format
565
  msgid "Please select the <strong>%s</strong>"
566
  msgstr "<strong>%s</strong> を選択してください。"
567
 
568
- #: inc/setting_post_add_edit.php:85
569
  msgid "Only appears when you have settings to the default permalink."
570
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
571
 
572
- #: inc/setting_sidemenu.php:27
573
  #, php-format
574
  msgid "New plugin menus will be added to the <strong>%s</strong>."
575
  msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
576
 
577
- #: inc/setting_sidemenu.php:51
578
  msgid "Sepalator"
579
  msgstr "区切り線"
580
 
581
- #: inc/setting_sidemenu.php:122
582
  msgid "Current menu"
583
  msgstr "現在のメニュー"
584
 
585
- #: inc/setting_sidemenu.php:224
586
  msgid "Delete all the Current menu"
587
  msgstr "現在のメニューを全て削除"
588
 
589
- #: inc/setting_site.php:42
590
  msgid "Header Meta"
591
  msgstr "ヘッダー metaタグ"
592
 
593
- #: inc/setting_site.php:55
594
- #: inc/setting_site.php:68
595
- #: inc/setting_site.php:81
596
- #: inc/setting_site.php:94
597
- #: inc/setting_site.php:107
598
  msgid "Tag to be output"
599
  msgstr "出力されるタグ"
600
 
601
- #: inc/setting_site.php:67
602
  msgid "Please display when using the Windows Live Writer."
603
  msgstr "Windows Live Writer を使う場合は表示させてください。"
604
 
605
- #: inc/setting_site.php:80
606
  msgid "Information of XML-rpc"
607
  msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
608
 
609
- #: inc/setting_site.php:93
610
  msgid "Sitewide feed"
611
  msgstr "サイト全体のフィード"
612
 
613
- #: inc/setting_site.php:106
614
  msgid "Extra feed"
615
  msgstr "その他のフィードリンク"
616
 
617
- #: inc/setting_site.php:131
618
  msgid "Admin Bar"
619
  msgstr "管理バー"
620
 
621
- #: inc/setting_site.php:134
622
  msgid "Hide the Admin bar on the front end"
623
  msgstr "フロント(サイト)で管理バーを非表示"
624
 
625
- #: inc/setting_site.php:134
626
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
627
  msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
628
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-12-24 18:55+0900\n"
6
+ "PO-Revision-Date: 2014-12-24 19:01+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:15
27
  msgid "Reset User Roles"
28
  msgstr "ユーザー権限リセット"
29
 
30
+ #: wp-admin-ui-customize.php:173
31
+ #: inc/reset_userrole.php:49
32
+ #: inc/setting_site.php:16
33
+ #: inc/setting_site.php:160
34
  msgid "Site Settings"
35
  msgstr "サイトの設定"
36
 
37
+ #: wp-admin-ui-customize.php:174
38
+ #: inc/reset_userrole.php:50
39
+ #: inc/setting_admin_general.php:16
40
+ #: inc/setting_admin_general.php:191
41
  #, php-format
42
  msgid "%1$s %2$s"
43
  msgstr "%1$s%2$s"
44
 
45
+ #: wp-admin-ui-customize.php:176
46
+ #: inc/reset_userrole.php:52
47
+ #: inc/setting_admin_bar_menu.php:18
48
+ #: inc/setting_admin_bar_menu.php:87
49
  msgid "Admin Bar Menu"
50
  msgstr "管理バー"
51
 
52
+ #: wp-admin-ui-customize.php:177
53
+ #: inc/reset_userrole.php:53
54
+ #: inc/setting_sidemenu.php:17
55
+ #: inc/setting_sidemenu.php:232
56
  msgid "Side Menu"
57
  msgstr "サイドメニュー"
58
 
59
+ #: wp-admin-ui-customize.php:178
60
+ #: inc/reset_userrole.php:54
61
+ #: inc/setting_manage_metabox.php:17
62
+ #: inc/setting_manage_metabox.php:345
63
  msgid "Manage meta box"
64
  msgstr "メタボックス管理"
65
 
66
+ #: wp-admin-ui-customize.php:179
67
+ #: inc/reset_userrole.php:55
68
+ #: inc/setting_post_add_edit.php:16
69
+ #: inc/setting_post_add_edit.php:101
70
  msgid "Add New Post and Edit Post Screen Setting"
71
  msgstr "新規投稿&編集の設定"
72
 
73
+ #: wp-admin-ui-customize.php:180
74
+ #: inc/reset_userrole.php:56
75
+ #: inc/setting_appearance_menus.php:14
76
+ #: inc/setting_appearance_menus.php:81
77
  msgid "Appearance Menus Screen Setting"
78
  msgstr "外観メニュー画面の設定"
79
 
80
+ #: wp-admin-ui-customize.php:181
81
+ #: inc/reset_userrole.php:57
82
+ #: inc/setting_loginscreen.php:27
83
  msgid "Login Screen"
84
  msgstr "ログイン画面"
85
 
86
+ #: wp-admin-ui-customize.php:182
87
+ #: inc/reset_userrole.php:58
88
+ #: inc/setting_plugin_cap.php:16
89
+ #: inc/setting_plugin_cap.php:86
90
  #, php-format
91
  msgid "%1$s of %2$s %3$s"
92
  msgstr "%2$s%3$sの%1$s"
93
 
94
+ #: wp-admin-ui-customize.php:342
95
  #, php-format
96
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
97
  msgstr "設定を適用する権限が選択されていません。<a href=\"%s\">こちら</a>から設定する権限を選んでください。"
98
 
99
+ #: wp-admin-ui-customize.php:367
100
  msgid "Apply user roles"
101
  msgstr "適用されるユーザー権限"
102
 
103
+ #: wp-admin-ui-customize.php:756
104
+ #: wp-admin-ui-customize.php:926
105
  msgid "Sub Menus"
106
  msgstr "サブメニュー"
107
 
108
+ #: wp-admin-ui-customize.php:851
109
+ #: wp-admin-ui-customize.php:873
110
  msgid "Menu Group"
111
  msgstr "メニューグループ"
112
 
113
+ #: wp-admin-ui-customize.php:871
114
  msgid "Show only on front end."
115
  msgstr "フロント(サイト)のみ表示"
116
 
117
+ #: wp-admin-ui-customize.php:1174
 
 
 
 
118
  msgid "Front"
119
  msgstr "フロント(サイト)"
120
 
121
+ #: wp-admin-ui-customize.php:2529
122
+ #: inc/setting_default.php:180
123
  msgid "Thank you for your donation."
124
  msgstr "寄付いただきありがとうございます。"
125
 
126
+ #: wp-admin-ui-customize.php:2544
127
  msgid "Please consider making a donation."
128
  msgstr "寄付のご検討宜しくお願いします。"
129
 
130
+ #: wp-admin-ui-customize.php:2544
131
+ #: inc/setting_default.php:32
132
  msgid "Donate"
133
  msgstr "寄付について"
134
 
135
+ #: inc/list_variables.php:19
136
+ #: inc/setting_admin_bar_menu.php:25
137
+ #: inc/setting_admin_general.php:125
138
+ #: inc/setting_admin_general.php:148
139
+ #: inc/setting_loginscreen.php:64
140
+ #: inc/setting_loginscreen.php:77
141
+ #: inc/setting_loginscreen.php:89
142
+ #: inc/setting_loginscreen.php:117
143
+ #: inc/setting_loginscreen.php:129
144
+ #: inc/setting_sidemenu.php:24
145
  msgid "Shortcodes"
146
  msgstr "ショートコード一覧"
147
 
148
+ #: inc/list_variables.php:44
149
  msgid "Blog name of logged in."
150
  msgstr "ログイン中のブログ名"
151
 
152
+ #: inc/list_variables.php:53
153
  msgid "Blog URL of logged in."
154
  msgstr "ログイン中のブログURL"
155
 
156
+ #: inc/list_variables.php:103
157
+ #: inc/list_variables.php:110
158
+ #: inc/list_variables.php:117
159
+ #: inc/list_variables.php:124
160
  msgid "In your case."
161
  msgstr "これはあなたの場合です。"
162
 
163
+ #: inc/list_variables.php:131
164
+ msgid "Current Post Type Name"
165
+ msgstr "現在の投稿タイプ名"
166
+
167
+ #: inc/reset_userrole.php:23
168
  msgid "Applied user roles"
169
  msgstr "適用されたユーザー権限"
170
 
171
+ #: inc/reset_userrole.php:33
172
+ #: inc/setting_admin_bar_menu.php:87
173
+ #: inc/setting_admin_general.php:191
174
+ #: inc/setting_appearance_menus.php:81
175
+ #: inc/setting_dashboard.php:143
176
+ #: inc/setting_default.php:124
177
+ #: inc/setting_loginscreen.php:152
178
+ #: inc/setting_manage_metabox.php:345
179
+ #: inc/setting_plugin_cap.php:86
180
+ #: inc/setting_post_add_edit.php:101
181
+ #: inc/setting_sidemenu.php:232
182
+ #: inc/setting_site.php:160
183
+ #, php-format
184
+ msgid "Reset the %s?"
185
+ msgstr "%s をリセットしますか?"
186
+
187
+ #: inc/reset_userrole.php:35
188
+ #: inc/setting_admin_bar_menu.php:88
189
+ #: inc/setting_admin_general.php:192
190
+ #: inc/setting_appearance_menus.php:82
191
+ #: inc/setting_dashboard.php:144
192
+ #: inc/setting_default.php:125
193
+ #: inc/setting_loginscreen.php:153
194
+ #: inc/setting_manage_metabox.php:346
195
+ #: inc/setting_plugin_cap.php:87
196
+ #: inc/setting_post_add_edit.php:102
197
+ #: inc/setting_sidemenu.php:233
198
+ #: inc/setting_site.php:161
199
  msgid "Reset settings"
200
  msgstr "設定をリセット"
201
 
202
+ #: inc/reset_userrole.php:42
203
+ #: inc/reset_userrole.php:64
204
  msgid "Reset settings of all"
205
  msgstr "全ての設定をリセット"
206
 
207
+ #: inc/reset_userrole.php:47
208
  msgid "Setting all of the below will be deleted."
209
  msgstr "以下のすべての設定が削除されます。"
210
 
211
+ #: inc/reset_userrole.php:62
212
  msgid "Are you sure you want to delete all settings?"
213
  msgstr "本当に全ての設定を削除してもよろしいですか?"
214
 
215
+ #: inc/setting_admin_bar_menu.php:19
216
+ #: inc/setting_sidemenu.php:18
217
  msgid "Please change the menu by drag and drop."
218
  msgstr "ドラッグ&ドロップでメニューを変更してください。"
219
 
220
+ #: inc/setting_admin_bar_menu.php:20
221
+ #: inc/setting_sidemenu.php:20
222
  msgid "Notice: Please do not place the same multiple menu slug."
223
  msgstr "注意: 複数同じメニュースラッグを設置しないでください。"
224
 
225
+ #: inc/setting_admin_bar_menu.php:21
226
  msgid "Can be more than one custom menu."
227
  msgstr "カスタムメニューは複数設置できます。"
228
 
229
+ #: inc/setting_admin_bar_menu.php:25
230
+ #: inc/setting_admin_general.php:125
231
+ #: inc/setting_admin_general.php:148
232
+ #: inc/setting_loginscreen.php:64
233
+ #: inc/setting_loginscreen.php:77
234
+ #: inc/setting_loginscreen.php:89
235
+ #: inc/setting_loginscreen.php:117
236
+ #: inc/setting_loginscreen.php:129
237
+ #: inc/setting_sidemenu.php:24
238
  msgid "Available Shortcodes"
239
  msgstr "利用可能なショートコード一覧"
240
 
241
+ #: inc/setting_admin_bar_menu.php:33
242
  msgid "Sub-menu settings apply to maximum of four levels deep."
243
  msgstr "サブメニューは最大4階層まで設定できます。"
244
 
245
+ #: inc/setting_admin_bar_menu.php:34
246
  msgid "Admin bar settings documentation page"
247
  msgstr "管理バー設定のドキュメントはこちら"
248
 
249
+ #: inc/setting_admin_bar_menu.php:93
250
+ #: inc/setting_sidemenu.php:19
251
+ #: inc/setting_sidemenu.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  msgid "Menu items that can be added"
253
  msgstr "追加できるメニュー一覧"
254
 
255
+ #: inc/setting_admin_general.php:34
256
  msgid "Notifications"
257
  msgstr "通知"
258
 
259
+ #: inc/setting_admin_general.php:40
260
  msgid "WordPress core update notice"
261
  msgstr "WordPress コアアップデート通知"
262
 
263
+ #: inc/setting_admin_general.php:46
264
+ #: inc/setting_admin_general.php:57
265
+ #: inc/setting_admin_general.php:68
266
  msgid "Not notified"
267
  msgstr "通知しない"
268
 
269
+ #: inc/setting_admin_general.php:51
270
  msgid "Plugin update notice"
271
  msgstr "プラグイン アップデート通知"
272
 
273
+ #: inc/setting_admin_general.php:62
274
  msgid "Theme update notice"
275
  msgstr "テーマ アップデート通知"
276
 
277
+ #: inc/setting_admin_general.php:78
278
  msgid "Screen Options and Help Tab"
279
  msgstr "表示オプションとヘルプタブ"
280
 
281
+ #: inc/setting_admin_general.php:117
282
+ #: inc/setting_loginscreen.php:123
283
  msgid "Footer text"
284
  msgstr "フッターテキスト"
285
 
286
+ #: inc/setting_admin_general.php:142
287
+ #: inc/setting_loginscreen.php:111
288
  msgid "CSS file to load"
289
  msgstr "CSSファイルを読み込む"
290
 
291
+ #: inc/setting_admin_general.php:154
292
  msgid "Title tag for Admin screen"
293
  msgstr "管理画面のタイトルタグ"
294
 
295
+ #: inc/setting_admin_general.php:159
296
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
297
  msgstr "管理画面のタイトルタグから\"WordPress\"を削除"
298
 
299
+ #: inc/setting_admin_general.php:165
300
  msgid "Resizing Admin bar"
301
  msgstr "管理バーリサイズ"
302
 
303
+ #: inc/setting_admin_general.php:170
304
  msgid "Don't resize"
305
  msgstr "リサイズしない"
306
 
307
+ #: inc/setting_appearance_menus.php:39
308
  msgid "Create a new menu"
309
  msgstr "新規メニュー作成"
310
 
311
+ #: inc/setting_appearance_menus.php:45
312
+ #: inc/setting_appearance_menus.php:59
313
  msgid "This is useful when you want to use only the menus have been created."
314
  msgstr "作成済みのメニューだけを使用する時に便利です。"
315
 
316
+ #: inc/setting_dashboard.php:34
317
  msgid "Meta boxes"
318
  msgstr "メタボックス"
319
 
320
+ #: inc/setting_dashboard.php:43
321
+ #: inc/setting_manage_metabox.php:56
322
+ #: inc/setting_manage_metabox.php:153
323
+ #: inc/setting_manage_metabox.php:258
324
  #, php-format
325
  msgid "Metaboxes loading for %s"
326
  msgstr "%sのメタボックスを読み込む"
327
 
328
+ #: inc/setting_dashboard.php:61
329
+ #: inc/setting_manage_metabox.php:77
330
+ #: inc/setting_manage_metabox.php:174
331
+ #: inc/setting_manage_metabox.php:279
332
  msgid "Change metabox title to"
333
  msgstr "メタボックス名を変更"
334
 
335
+ #: inc/setting_dashboard.php:110
336
  msgid "Other"
337
  msgstr "その他"
338
 
339
+ #: inc/setting_dashboard.php:117
340
  msgid "Meta box movement restriction"
341
  msgstr "メタボックスの移動制限"
342
 
343
+ #: inc/setting_dashboard.php:122
344
  msgid "Prevent selected roles from re-arranging metaboxes"
345
  msgstr "メタボックスを移動させない"
346
 
347
+ #: inc/setting_default.php:16
348
  msgid "Customize the UI of the management screen for all users."
349
  msgstr "全てのユーザーの管理画面UIをカスタマイズします。"
350
 
351
+ #: inc/setting_default.php:17
352
  msgid "Please select the user roles that all settings will apply to."
353
  msgstr "設定を適用する権限を選んでください。"
354
 
355
+ #: inc/setting_default.php:19
356
  msgid "Please use the Multiple Add-on if you want per role customization."
357
  msgstr "ユーザー権限ごとに設定したい場合は マルチ設定アドオン を使用してください。"
358
 
359
+ #: inc/setting_default.php:33
360
  msgid "Are you happy with this plugin?<br />Japanese law prohibits PayPal donations. <br />Please consider purchasing the Line Break First and End plugin in lieu of a donation."
361
  msgstr "このプラグインを使って満足できましたか?<br />日本の法律では、日本の新PayPalユーザーは寄付ボタンを作成することはできません。<br />なので寄付の代わりとしてこのプラグインを購入して欲しいです。"
362
 
363
+ #: inc/setting_default.php:40
364
  msgid "Features"
365
  msgstr "機能について"
366
 
367
+ #: inc/setting_default.php:41
368
  msgid "Line Break First and End plugin allows for line breaks when using the visual editor TinyMCE."
369
  msgstr "Line Break First and Endプラグインは、TinyMCEのビジュアルエディタで、改行を入力することが出来なくなった時に便利なプラグインです。"
370
 
371
+ #: inc/setting_default.php:44
372
  msgid "The primary use of donations"
373
  msgstr "寄付の主な使用目的"
374
 
375
+ #: inc/setting_default.php:46
376
  msgid "Liquidation of time and value"
377
  msgstr "時間と価値の清算"
378
 
379
+ #: inc/setting_default.php:47
380
  msgid "Additional suggestions feature"
381
  msgstr "機能提案の追加"
382
 
383
+ #: inc/setting_default.php:48
384
  msgid "Maintain motivation"
385
  msgstr "モチベーション維持"
386
 
387
+ #: inc/setting_default.php:49
388
  msgid "Ensure time as the father of Sunday"
389
  msgstr "日曜日の父親としての時間確保"
390
 
391
+ #: inc/setting_default.php:56
392
  msgid "About plugin"
393
  msgstr "プラグインについて"
394
 
395
+ #: inc/setting_default.php:58
396
  msgid "Version checked"
397
  msgstr "動作確認済み"
398
 
399
+ #: inc/setting_default.php:60
400
  msgid "Plugin's site"
401
  msgstr "プラグインのサイト"
402
 
403
+ #: inc/setting_default.php:61
404
  msgid "Developer's site"
405
  msgstr "開発者のサイト"
406
 
407
+ #: inc/setting_default.php:63
408
  msgid "Reviews"
409
  msgstr "レビュー"
410
 
411
+ #: inc/setting_default.php:71
412
+ #: inc/setting_loginscreen.php:36
413
  msgid "Useful plugins"
414
  msgstr "便利なプラグイン"
415
 
416
+ #: inc/setting_default.php:74
417
  msgid "Apply setting on a per-role basis."
418
  msgstr "ユーザー権限ごとに別々の設定を簡単にできるアドオンです。"
419
 
420
+ #: inc/setting_default.php:76
421
  msgid "Easily import/export setting between installations."
422
  msgstr "このアドオンは、WP Admin UI Customizeの設定データをインポート&エクスポートする為のアドオンです。"
423
 
424
+ #: inc/setting_default.php:78
425
  msgid "Unified custom management screens for Multisite."
426
  msgstr "このアドオンは、マルチサイトで全てのサイトの管理画面を統一する為のアドオンです。"
427
 
428
+ #: inc/setting_default.php:80
429
  msgid "Customize list view columns for posts, pages, custom post types, media library, and other management screens."
430
  msgstr "投稿と固定ページ、カスタム投稿タイプ、メディアライブラリー等の一覧を自由にカスタマイズできます。"
431
 
432
+ #: inc/setting_default.php:82
433
  msgid "Create dashboard messages to be displayed for selected user roles."
434
  msgstr "ダッシュボードにユーザー権限やサイトごとにお知らせを表示します。"
435
 
436
+ #: inc/setting_default.php:84
437
  msgid "Create custom global variables that can be used with generated template tags or shortcodes."
438
  msgstr "オプション値作成プラグインです。作成したオプション値は、ショートコードとして記事に、テンプレートタグとしても使用できます。"
439
 
440
+ #: inc/setting_default.php:124
441
+ msgid "User Roles Settings"
442
+ msgstr "ユーザー権限設定"
443
+
444
+ #: inc/setting_default.php:133
445
  msgid "If you have already donated to."
446
  msgstr "寄付済みの方へ。"
447
 
448
+ #: inc/setting_default.php:134
449
  msgid "Please enter the 'Donation Delete Key' that was provided on the Line Break First and End download page."
450
  msgstr "'Line Break First and End download page' ダウンロードページに記載されていた寄付削除キーを入力して、寄付メッセージを削除できます。"
451
 
452
+ #: inc/setting_default.php:137
453
  msgid "Donation Delete Key:"
454
  msgstr "寄付メッセージ削除キー:"
455
 
456
+ #: inc/setting_default.php:145
457
  msgid "Do you need professional setup and customization?"
458
  msgstr "何かカスタマイズしたい事はありますか?"
459
 
460
+ #: inc/setting_default.php:151
461
  msgid "I provide full service customization for WP Admin UI Customize."
462
  msgstr "私は管理画面のカスタマイズを得意とします。"
463
 
464
+ #: inc/setting_default.php:152
465
  msgid "Please contact me if you are interested."
466
  msgstr "宜しければご検討ください。"
467
 
468
+ #: inc/setting_default.php:154
469
  msgid "Example Customize"
470
  msgstr "カスタマイズ例"
471
 
472
+ #: inc/setting_default.php:155
473
  msgid "Contact me"
474
  msgstr "お問い合わせ"
475
 
476
+ #: inc/setting_loginscreen.php:16
477
+ #: inc/setting_loginscreen.php:152
478
  msgid "Login Screen Settings"
479
  msgstr "ログイン画面の設定"
480
 
481
+ #: inc/setting_loginscreen.php:25
482
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
483
  msgstr "マルチサイトの場合はログアウトしないとログインフォームの表示確認はできません。"
484
 
485
+ #: inc/setting_loginscreen.php:27
486
  msgid "Show Current Login Screen"
487
  msgstr "ログイン画面を表示"
488
 
489
+ #: inc/setting_loginscreen.php:39
490
  msgid "Flexible plugin for login screen customization."
491
  msgstr "柔軟にログイン画面をカスタマイズするプラグインです。"
492
 
493
+ #: inc/setting_loginscreen.php:51
494
  msgid "Login Form"
495
  msgstr "ログインフォーム"
496
 
497
+ #: inc/setting_loginscreen.php:58
498
  msgid "The link after clicking on the logo"
499
  msgstr "ロゴのリンク先"
500
 
501
+ #: inc/setting_loginscreen.php:71
502
  msgid "Logo Title"
503
  msgstr "ロゴタイトル"
504
 
505
+ #: inc/setting_loginscreen.php:83
506
  msgid "Logo Image path"
507
  msgstr "ロゴ画像のパス"
508
 
509
+ #: inc/setting_manage_metabox.php:18
510
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
511
  msgstr "メタボックスを読み込むには編集画面にアクセスしてください。"
512
 
513
+ #: inc/setting_manage_metabox.php:19
514
  msgid "Please enter if you want to change of Metabox label name."
515
  msgstr "メタボックス名は変更したい時だけ入力してください。"
516
 
517
+ #: inc/setting_manage_metabox.php:75
518
+ #: inc/setting_manage_metabox.php:172
519
+ #: inc/setting_manage_metabox.php:277
520
  msgid "Default Open"
521
  msgstr "デフォルトの表示"
522
 
523
+ #: inc/setting_manage_metabox.php:103
524
+ #: inc/setting_manage_metabox.php:199
525
+ #: inc/setting_manage_metabox.php:303
526
  msgid "Expanded"
527
  msgstr "開く"
528
 
529
+ #: inc/setting_manage_metabox.php:104
530
+ #: inc/setting_manage_metabox.php:200
531
+ #: inc/setting_manage_metabox.php:304
532
  msgid "Collapsed"
533
  msgstr "閉じる"
534
 
535
+ #: inc/setting_manage_metabox.php:115
536
+ #: inc/setting_manage_metabox.php:211
537
+ #: inc/setting_post_add_edit.php:48
538
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
539
  msgstr "注意: ディスカッションメタボックスを隠す場合、適用された権限の新規投稿はコメントが表示されません。"
540
 
541
+ #: inc/setting_manage_metabox.php:117
542
+ #: inc/setting_manage_metabox.php:213
543
  msgid "Please set from here if you want to view the comments on screen."
544
  msgstr "コメントが表示されるようにしたい場合はここから設定してください。"
545
 
546
+ #: inc/setting_plugin_cap.php:17
547
  #, php-format
548
  msgid "You can change the user role %2$s of %1$s settings."
549
  msgstr "%1$sの設定%2$sを変更することができます。"
550
 
551
+ #: inc/setting_plugin_cap.php:18
552
  #, php-format
553
  msgid "Please choose the minimum role that can modify %s settings."
554
  msgstr "%s を動作させる最小限の権限を選択してください。"
555
 
556
+ #: inc/setting_plugin_cap.php:35
557
  #, php-format
558
  msgid "Capability role for the %s"
559
  msgstr "%s を動作させる権限"
560
 
561
+ #: inc/setting_post_add_edit.php:41
562
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
563
  msgstr "ディスカッションメタボックスが非表示でも新しい投稿へのコメントを許可する"
564
 
565
+ #: inc/setting_post_add_edit.php:49
566
  msgid "Please select if you want to display the comments on Site."
567
  msgstr "サイトでコメントを表示させたい場合選択してください。"
568
 
569
+ #: inc/setting_post_add_edit.php:50
570
  #, php-format
571
  msgid "However, this will follow the setting of %s."
572
  msgstr "ただし、これは%sの設定に従います。"
573
 
574
+ #: inc/setting_post_add_edit.php:52
575
  #, php-format
576
  msgid "Please select the <strong>%s</strong>"
577
  msgstr "<strong>%s</strong> を選択してください。"
578
 
579
+ #: inc/setting_post_add_edit.php:78
580
  msgid "Only appears when you have settings to the default permalink."
581
  msgstr "デフォルトのパーマリンクに設定している時のみ表示されます。"
582
 
583
+ #: inc/setting_sidemenu.php:19
584
  #, php-format
585
  msgid "New plugin menus will be added to the <strong>%s</strong>."
586
  msgstr "新しいプラグインメニューは <strong>%s</strong> に追加されます。"
587
 
588
+ #: inc/setting_sidemenu.php:43
589
  msgid "Sepalator"
590
  msgstr "区切り線"
591
 
592
+ #: inc/setting_sidemenu.php:114
593
  msgid "Current menu"
594
  msgstr "現在のメニュー"
595
 
596
+ #: inc/setting_sidemenu.php:216
597
  msgid "Delete all the Current menu"
598
  msgstr "現在のメニューを全て削除"
599
 
600
+ #: inc/setting_site.php:35
601
  msgid "Header Meta"
602
  msgstr "ヘッダー metaタグ"
603
 
604
+ #: inc/setting_site.php:48
605
+ #: inc/setting_site.php:61
606
+ #: inc/setting_site.php:74
607
+ #: inc/setting_site.php:87
608
+ #: inc/setting_site.php:100
609
  msgid "Tag to be output"
610
  msgstr "出力されるタグ"
611
 
612
+ #: inc/setting_site.php:60
613
  msgid "Please display when using the Windows Live Writer."
614
  msgstr "Windows Live Writer を使う場合は表示させてください。"
615
 
616
+ #: inc/setting_site.php:73
617
  msgid "Information of XML-rpc"
618
  msgstr "XML-RPC投稿プロトコル(外部からの投稿)情報"
619
 
620
+ #: inc/setting_site.php:86
621
  msgid "Sitewide feed"
622
  msgstr "サイト全体のフィード"
623
 
624
+ #: inc/setting_site.php:99
625
  msgid "Extra feed"
626
  msgstr "その他のフィードリンク"
627
 
628
+ #: inc/setting_site.php:124
629
  msgid "Admin Bar"
630
  msgstr "管理バー"
631
 
632
+ #: inc/setting_site.php:127
633
  msgid "Hide the Admin bar on the front end"
634
  msgstr "フロント(サイト)で管理バーを非表示"
635
 
636
+ #: inc/setting_site.php:127
637
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
638
  msgstr "WP Admin UI Customize の管理バーの設定をフロントにも適用"
639
 
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: 2014-08-22 12:41+0900\n"
6
- "PO-Revision-Date: 2014-08-22 12:41+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: CedarPoint <mike@cedarpointconcepts.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,608 +18,619 @@ msgstr ""
18
  msgid "An excellent plugin to customize the management screens."
19
  msgstr ""
20
 
21
- #: wp-admin-ui-customize.php:142
22
- #: wp-admin-ui-customize.php:181
23
- #: inc/reset_userrole.php:22
24
  msgid "Reset User Roles"
25
  msgstr ""
26
 
27
- #: wp-admin-ui-customize.php:171
28
- #: inc/reset_userrole.php:56
29
- #: inc/setting_site.php:23
 
30
  msgid "Site Settings"
31
  msgstr ""
32
 
33
- #: wp-admin-ui-customize.php:172
34
- #: inc/reset_userrole.php:57
35
- #: inc/setting_admin_general.php:23
 
36
  #, php-format
37
  msgid "%1$s %2$s"
38
  msgstr ""
39
 
40
- #: wp-admin-ui-customize.php:174
41
- #: inc/reset_userrole.php:59
42
- #: inc/setting_admin_bar_menu.php:25
 
43
  msgid "Admin Bar Menu"
44
  msgstr ""
45
 
46
- #: wp-admin-ui-customize.php:175
47
- #: inc/reset_userrole.php:60
48
- #: inc/setting_sidemenu.php:25
 
49
  msgid "Side Menu"
50
  msgstr ""
51
 
52
- #: wp-admin-ui-customize.php:176
53
- #: inc/reset_userrole.php:61
54
- #: inc/setting_manage_metabox.php:24
 
55
  msgid "Manage meta box"
56
  msgstr ""
57
 
58
- #: wp-admin-ui-customize.php:177
59
- #: inc/reset_userrole.php:62
60
- #: inc/setting_post_add_edit.php:23
 
61
  msgid "Add New Post and Edit Post Screen Setting"
62
  msgstr ""
63
 
64
- #: wp-admin-ui-customize.php:178
65
- #: inc/reset_userrole.php:63
66
- #: inc/setting_appearance_menus.php:22
 
67
  msgid "Appearance Menus Screen Setting"
68
  msgstr ""
69
 
70
- #: wp-admin-ui-customize.php:179
71
- #: inc/reset_userrole.php:64
72
- #: inc/setting_loginscreen.php:34
73
  msgid "Login Screen"
74
  msgstr ""
75
 
76
- #: wp-admin-ui-customize.php:180
77
- #: inc/reset_userrole.php:65
78
- #: inc/setting_plugin_cap.php:23
 
79
  #, php-format
80
  msgid "%1$s of %2$s %3$s"
81
  msgstr ""
82
 
83
- #: wp-admin-ui-customize.php:331
84
  #, php-format
85
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
86
  msgstr ""
87
 
88
- #: wp-admin-ui-customize.php:356
89
  msgid "Apply user roles"
90
  msgstr ""
91
 
92
- #: wp-admin-ui-customize.php:688
93
- #: wp-admin-ui-customize.php:861
94
  msgid "Sub Menus"
95
  msgstr ""
96
 
97
- #: wp-admin-ui-customize.php:783
98
- #: wp-admin-ui-customize.php:805
99
  msgid "Menu Group"
100
  msgstr ""
101
 
102
- #: wp-admin-ui-customize.php:803
103
  msgid "Show only on front end."
104
  msgstr ""
105
 
106
- #: wp-admin-ui-customize.php:823
107
- msgid "If you want edit to name, please edit of translation file(PO)."
108
- msgstr ""
109
-
110
- #: wp-admin-ui-customize.php:1023
111
  msgid "Front"
112
  msgstr ""
113
 
114
- #: wp-admin-ui-customize.php:2276
115
- #: inc/setting_default.php:187
116
  msgid "Thank you for your donation."
117
  msgstr ""
118
 
119
- #: wp-admin-ui-customize.php:2291
120
  msgid "Please consider making a donation."
121
  msgstr ""
122
 
123
- #: wp-admin-ui-customize.php:2291
124
- #: inc/setting_default.php:39
125
  msgid "Donate"
126
  msgstr ""
127
 
128
- #: inc/list_variables.php:20
129
- #: inc/setting_admin_bar_menu.php:32
130
- #: inc/setting_admin_general.php:132
131
- #: inc/setting_admin_general.php:155
132
- #: inc/setting_loginscreen.php:71
133
- #: inc/setting_loginscreen.php:84
134
- #: inc/setting_loginscreen.php:96
135
- #: inc/setting_loginscreen.php:124
136
- #: inc/setting_loginscreen.php:136
137
- #: inc/setting_sidemenu.php:32
138
  msgid "Shortcodes"
139
  msgstr ""
140
 
141
- #: inc/list_variables.php:45
142
  msgid "Blog name of logged in."
143
  msgstr ""
144
 
145
- #: inc/list_variables.php:54
146
  msgid "Blog URL of logged in."
147
  msgstr ""
148
 
149
- #: inc/list_variables.php:108
150
- #: inc/list_variables.php:115
151
- #: inc/list_variables.php:122
152
- #: inc/list_variables.php:129
153
  msgid "In your case."
154
  msgstr ""
155
 
156
- #: inc/reset_userrole.php:30
157
- msgid "Applied user roles"
158
  msgstr ""
159
 
160
- #: inc/reset_userrole.php:40
161
- msgid "You want to reset the user roles?"
162
  msgstr ""
163
 
164
- #: inc/reset_userrole.php:42
165
- #: inc/setting_admin_bar_menu.php:95
166
- #: inc/setting_admin_general.php:201
167
- #: inc/setting_appearance_menus.php:99
168
- #: inc/setting_dashboard.php:151
169
- #: inc/setting_default.php:132
170
- #: inc/setting_loginscreen.php:160
171
- #: inc/setting_manage_metabox.php:353
172
- #: inc/setting_plugin_cap.php:94
173
- #: inc/setting_post_add_edit.php:109
174
- #: inc/setting_sidemenu.php:241
175
- #: inc/setting_site.php:168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176
  msgid "Reset settings"
177
  msgstr ""
178
 
179
- #: inc/reset_userrole.php:49
180
- #: inc/reset_userrole.php:71
181
  msgid "Reset settings of all"
182
  msgstr ""
183
 
184
- #: inc/reset_userrole.php:54
185
  msgid "Setting all of the below will be deleted."
186
  msgstr ""
187
 
188
- #: inc/reset_userrole.php:69
189
  msgid "Are you sure you want to delete all settings?"
190
  msgstr ""
191
 
192
- #: inc/setting_admin_bar_menu.php:26
193
- #: inc/setting_sidemenu.php:26
194
  msgid "Please change the menu by drag and drop."
195
  msgstr ""
196
 
197
- #: inc/setting_admin_bar_menu.php:27
198
- #: inc/setting_sidemenu.php:28
199
  msgid "Notice: Please do not place the same multiple menu slug."
200
  msgstr ""
201
 
202
- #: inc/setting_admin_bar_menu.php:28
203
  msgid "Can be more than one custom menu."
204
  msgstr ""
205
 
206
- #: inc/setting_admin_bar_menu.php:32
207
- #: inc/setting_admin_general.php:132
208
- #: inc/setting_admin_general.php:155
209
- #: inc/setting_loginscreen.php:71
210
- #: inc/setting_loginscreen.php:84
211
- #: inc/setting_loginscreen.php:96
212
- #: inc/setting_loginscreen.php:124
213
- #: inc/setting_loginscreen.php:136
214
- #: inc/setting_sidemenu.php:32
215
  msgid "Available Shortcodes"
216
  msgstr ""
217
 
218
- #: inc/setting_admin_bar_menu.php:40
219
  msgid "Sub-menu settings apply to maximum of four levels deep."
220
  msgstr ""
221
 
222
- #: inc/setting_admin_bar_menu.php:41
223
  msgid "Admin bar settings documentation page"
224
  msgstr ""
225
 
226
- #: inc/setting_admin_bar_menu.php:94
227
- #: inc/setting_admin_general.php:200
228
- #: inc/setting_appearance_menus.php:98
229
- #: inc/setting_dashboard.php:150
230
- #: inc/setting_default.php:131
231
- #: inc/setting_loginscreen.php:159
232
- #: inc/setting_manage_metabox.php:352
233
- #: inc/setting_plugin_cap.php:93
234
- #: inc/setting_post_add_edit.php:108
235
- #: inc/setting_sidemenu.php:240
236
- #: inc/setting_site.php:167
237
- msgid "Reset all settings?"
238
- msgstr ""
239
-
240
- #: inc/setting_admin_bar_menu.php:100
241
- #: inc/setting_sidemenu.php:27
242
- #: inc/setting_sidemenu.php:48
243
  msgid "Menu items that can be added"
244
  msgstr ""
245
 
246
- #: inc/setting_admin_general.php:41
247
  msgid "Notifications"
248
  msgstr ""
249
 
250
- #: inc/setting_admin_general.php:47
251
  msgid "WordPress core update notice"
252
  msgstr ""
253
 
254
- #: inc/setting_admin_general.php:53
255
- #: inc/setting_admin_general.php:64
256
- #: inc/setting_admin_general.php:75
257
  msgid "Not notified"
258
  msgstr ""
259
 
260
- #: inc/setting_admin_general.php:58
261
  msgid "Plugin update notice"
262
  msgstr ""
263
 
264
- #: inc/setting_admin_general.php:69
265
  msgid "Theme update notice"
266
  msgstr ""
267
 
268
- #: inc/setting_admin_general.php:85
269
  msgid "Screen Options and Help Tab"
270
  msgstr ""
271
 
272
- #: inc/setting_admin_general.php:124
273
- #: inc/setting_loginscreen.php:130
274
  msgid "Footer text"
275
  msgstr ""
276
 
277
- #: inc/setting_admin_general.php:149
278
- #: inc/setting_loginscreen.php:118
279
  msgid "CSS file to load"
280
  msgstr ""
281
 
282
- #: inc/setting_admin_general.php:161
283
  msgid "Title tag for Admin screen"
284
  msgstr ""
285
 
286
- #: inc/setting_admin_general.php:166
287
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
288
  msgstr ""
289
 
290
- #: inc/setting_admin_general.php:173
291
  msgid "Resizing Admin bar"
292
  msgstr ""
293
 
294
- #: inc/setting_admin_general.php:178
295
  msgid "Don't resize"
296
  msgstr ""
297
 
298
- #: inc/setting_appearance_menus.php:47
299
  msgid "Create a new menu"
300
  msgstr ""
301
 
302
- #: inc/setting_appearance_menus.php:53
303
- #: inc/setting_appearance_menus.php:72
304
  msgid "This is useful when you want to use only the menus have been created."
305
  msgstr ""
306
 
307
- #: inc/setting_dashboard.php:41
308
  msgid "Meta boxes"
309
  msgstr ""
310
 
311
- #: inc/setting_dashboard.php:50
312
- #: inc/setting_manage_metabox.php:63
313
- #: inc/setting_manage_metabox.php:160
314
- #: inc/setting_manage_metabox.php:265
315
  #, php-format
316
  msgid "Metaboxes loading for %s"
317
  msgstr ""
318
 
319
- #: inc/setting_dashboard.php:68
320
- #: inc/setting_manage_metabox.php:84
321
- #: inc/setting_manage_metabox.php:181
322
- #: inc/setting_manage_metabox.php:286
323
  msgid "Change metabox title to"
324
  msgstr ""
325
 
326
- #: inc/setting_dashboard.php:117
327
  msgid "Other"
328
  msgstr ""
329
 
330
- #: inc/setting_dashboard.php:124
331
  msgid "Meta box movement restriction"
332
  msgstr ""
333
 
334
- #: inc/setting_dashboard.php:129
335
  msgid "Prevent selected roles from re-arranging metaboxes"
336
  msgstr ""
337
 
338
- #: inc/setting_default.php:23
339
  msgid "Customize the UI of the management screen for all users."
340
  msgstr ""
341
 
342
- #: inc/setting_default.php:24
343
  msgid "Please select the user roles that all settings will apply to."
344
  msgstr ""
345
 
346
- #: inc/setting_default.php:26
347
  msgid "Please use the Multiple Add-on if you want per role customization."
348
  msgstr ""
349
 
350
- #: inc/setting_default.php:40
351
  msgid "Are you happy with this plugin?<br />Japanese law prohibits PayPal donations. <br />Please consider purchasing the Line Break First and End plugin in lieu of a donation."
352
  msgstr ""
353
 
354
- #: inc/setting_default.php:47
355
  msgid "Features"
356
  msgstr ""
357
 
358
- #: inc/setting_default.php:48
359
  msgid "Line Break First and End plugin allows for line breaks when using the visual editor TinyMCE."
360
  msgstr ""
361
 
362
- #: inc/setting_default.php:51
363
  msgid "The primary use of donations"
364
  msgstr ""
365
 
366
- #: inc/setting_default.php:53
367
  msgid "Liquidation of time and value"
368
  msgstr ""
369
 
370
- #: inc/setting_default.php:54
371
  msgid "Additional suggestions feature"
372
  msgstr ""
373
 
374
- #: inc/setting_default.php:55
375
  msgid "Maintain motivation"
376
  msgstr ""
377
 
378
- #: inc/setting_default.php:56
379
  msgid "Ensure time as the father of Sunday"
380
  msgstr ""
381
 
382
- #: inc/setting_default.php:63
383
  msgid "About plugin"
384
  msgstr ""
385
 
386
- #: inc/setting_default.php:65
387
  msgid "Version checked"
388
  msgstr ""
389
 
390
- #: inc/setting_default.php:67
391
  msgid "Plugin's site"
392
  msgstr ""
393
 
394
- #: inc/setting_default.php:68
395
  msgid "Developer's site"
396
  msgstr ""
397
 
398
- #: inc/setting_default.php:70
399
  msgid "Reviews"
400
  msgstr ""
401
 
402
- #: inc/setting_default.php:78
403
- #: inc/setting_loginscreen.php:43
404
  msgid "Useful plugins"
405
  msgstr ""
406
 
407
- #: inc/setting_default.php:81
408
  msgid "Apply setting on a per-role basis."
409
  msgstr ""
410
 
411
- #: inc/setting_default.php:83
412
  msgid "Easily import/export setting between installations."
413
  msgstr ""
414
 
415
- #: inc/setting_default.php:85
416
  msgid "Unified custom management screens for Multisite."
417
  msgstr ""
418
 
419
- #: inc/setting_default.php:87
420
  msgid "Customize list view columns for posts, pages, custom post types, media library, and other management screens."
421
  msgstr ""
422
 
423
- #: inc/setting_default.php:89
424
  msgid "Create dashboard messages to be displayed for selected user roles."
425
  msgstr ""
426
 
427
- #: inc/setting_default.php:91
428
  msgid "Create custom global variables that can be used with generated template tags or shortcodes."
429
  msgstr ""
430
 
431
- #: inc/setting_default.php:140
 
 
 
 
432
  msgid "If you have already donated to."
433
  msgstr ""
434
 
435
- #: inc/setting_default.php:141
436
  msgid "Please enter the 'Donation Delete Key' that was provided on the Line Break First and End download page."
437
  msgstr ""
438
 
439
- #: inc/setting_default.php:144
440
  msgid "Donation Delete Key:"
441
  msgstr ""
442
 
443
- #: inc/setting_default.php:152
444
  msgid "Do you need professional setup and customization?"
445
  msgstr ""
446
 
447
- #: inc/setting_default.php:158
448
  msgid "I provide full service customization for WP Admin UI Customize."
449
  msgstr ""
450
 
451
- #: inc/setting_default.php:159
452
  msgid "Please contact me if you are interested."
453
  msgstr ""
454
 
455
- #: inc/setting_default.php:161
456
  msgid "Example Customize"
457
  msgstr ""
458
 
459
- #: inc/setting_default.php:162
460
  msgid "Contact me"
461
  msgstr ""
462
 
463
- #: inc/setting_loginscreen.php:23
 
464
  msgid "Login Screen Settings"
465
  msgstr ""
466
 
467
- #: inc/setting_loginscreen.php:32
468
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
469
  msgstr ""
470
 
471
- #: inc/setting_loginscreen.php:34
472
  msgid "Show Current Login Screen"
473
  msgstr ""
474
 
475
- #: inc/setting_loginscreen.php:46
476
  msgid "Flexible plugin for login screen customization."
477
  msgstr ""
478
 
479
- #: inc/setting_loginscreen.php:58
480
  msgid "Login Form"
481
  msgstr ""
482
 
483
- #: inc/setting_loginscreen.php:65
484
  msgid "The link after clicking on the logo"
485
  msgstr ""
486
 
487
- #: inc/setting_loginscreen.php:78
488
  msgid "Logo Title"
489
  msgstr ""
490
 
491
- #: inc/setting_loginscreen.php:90
492
  msgid "Logo Image path"
493
  msgstr ""
494
 
495
- #: inc/setting_manage_metabox.php:25
496
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
497
  msgstr ""
498
 
499
- #: inc/setting_manage_metabox.php:26
500
  msgid "Please enter if you want to change of Metabox label name."
501
  msgstr ""
502
 
503
- #: inc/setting_manage_metabox.php:82
504
- #: inc/setting_manage_metabox.php:179
505
- #: inc/setting_manage_metabox.php:284
506
  msgid "Default Open"
507
  msgstr ""
508
 
509
- #: inc/setting_manage_metabox.php:110
510
- #: inc/setting_manage_metabox.php:206
511
- #: inc/setting_manage_metabox.php:310
512
  msgid "Expanded"
513
  msgstr ""
514
 
515
- #: inc/setting_manage_metabox.php:111
516
- #: inc/setting_manage_metabox.php:207
517
- #: inc/setting_manage_metabox.php:311
518
  msgid "Collapsed"
519
  msgstr ""
520
 
521
- #: inc/setting_manage_metabox.php:122
522
- #: inc/setting_manage_metabox.php:218
523
- #: inc/setting_post_add_edit.php:55
524
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
525
  msgstr ""
526
 
527
- #: inc/setting_manage_metabox.php:124
528
- #: inc/setting_manage_metabox.php:220
529
  msgid "Please set from here if you want to view the comments on screen."
530
  msgstr ""
531
 
532
- #: inc/setting_plugin_cap.php:24
533
  #, php-format
534
  msgid "You can change the user role %2$s of %1$s settings."
535
  msgstr ""
536
 
537
- #: inc/setting_plugin_cap.php:25
538
  #, php-format
539
  msgid "Please choose the minimum role that can modify %s settings."
540
  msgstr ""
541
 
542
- #: inc/setting_plugin_cap.php:42
543
  #, php-format
544
  msgid "Capability role for the %s"
545
  msgstr ""
546
 
547
- #: inc/setting_post_add_edit.php:48
548
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
549
  msgstr ""
550
 
551
- #: inc/setting_post_add_edit.php:56
552
  msgid "Please select if you want to display the comments on Site."
553
  msgstr ""
554
 
555
- #: inc/setting_post_add_edit.php:57
556
  #, php-format
557
  msgid "However, this will follow the setting of %s."
558
  msgstr ""
559
 
560
- #: inc/setting_post_add_edit.php:59
561
  #, php-format
562
  msgid "Please select the <strong>%s</strong>"
563
  msgstr ""
564
 
565
- #: inc/setting_post_add_edit.php:85
566
  msgid "Only appears when you have settings to the default permalink."
567
  msgstr ""
568
 
569
- #: inc/setting_sidemenu.php:27
570
  #, php-format
571
  msgid "New plugin menus will be added to the <strong>%s</strong>."
572
  msgstr ""
573
 
574
- #: inc/setting_sidemenu.php:51
575
  msgid "Sepalator"
576
  msgstr ""
577
 
578
- #: inc/setting_sidemenu.php:122
579
  msgid "Current menu"
580
  msgstr ""
581
 
582
- #: inc/setting_sidemenu.php:224
583
  msgid "Delete all the Current menu"
584
  msgstr ""
585
 
586
- #: inc/setting_site.php:42
587
  msgid "Header Meta"
588
  msgstr ""
589
 
590
- #: inc/setting_site.php:55
591
- #: inc/setting_site.php:68
592
- #: inc/setting_site.php:81
593
- #: inc/setting_site.php:94
594
- #: inc/setting_site.php:107
595
  msgid "Tag to be output"
596
  msgstr ""
597
 
598
- #: inc/setting_site.php:67
599
  msgid "Please display when using the Windows Live Writer."
600
  msgstr ""
601
 
602
- #: inc/setting_site.php:80
603
  msgid "Information of XML-rpc"
604
  msgstr ""
605
 
606
- #: inc/setting_site.php:93
607
  msgid "Sitewide feed"
608
  msgstr ""
609
 
610
- #: inc/setting_site.php:106
611
  msgid "Extra feed"
612
  msgstr ""
613
 
614
- #: inc/setting_site.php:131
615
  msgid "Admin Bar"
616
  msgstr ""
617
 
618
- #: inc/setting_site.php:134
619
  msgid "Hide the Admin bar on the front end"
620
  msgstr ""
621
 
622
- #: inc/setting_site.php:134
623
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
624
  msgstr ""
625
 
2
  msgstr ""
3
  "Project-Id-Version: WP Admin UI Customize\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-12-24 18:55+0900\n"
6
+ "PO-Revision-Date: 2014-12-24 18:55+0900\n"
7
  "Last-Translator: gqevu6bsiz <gqevu6bsiz@gmail.com>\n"
8
  "Language-Team: CedarPoint <mike@cedarpointconcepts.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:15
24
  msgid "Reset User Roles"
25
  msgstr ""
26
 
27
+ #: wp-admin-ui-customize.php:173
28
+ #: inc/reset_userrole.php:49
29
+ #: inc/setting_site.php:16
30
+ #: inc/setting_site.php:160
31
  msgid "Site Settings"
32
  msgstr ""
33
 
34
+ #: wp-admin-ui-customize.php:174
35
+ #: inc/reset_userrole.php:50
36
+ #: inc/setting_admin_general.php:16
37
+ #: inc/setting_admin_general.php:191
38
  #, php-format
39
  msgid "%1$s %2$s"
40
  msgstr ""
41
 
42
+ #: wp-admin-ui-customize.php:176
43
+ #: inc/reset_userrole.php:52
44
+ #: inc/setting_admin_bar_menu.php:18
45
+ #: inc/setting_admin_bar_menu.php:87
46
  msgid "Admin Bar Menu"
47
  msgstr ""
48
 
49
+ #: wp-admin-ui-customize.php:177
50
+ #: inc/reset_userrole.php:53
51
+ #: inc/setting_sidemenu.php:17
52
+ #: inc/setting_sidemenu.php:232
53
  msgid "Side Menu"
54
  msgstr ""
55
 
56
+ #: wp-admin-ui-customize.php:178
57
+ #: inc/reset_userrole.php:54
58
+ #: inc/setting_manage_metabox.php:17
59
+ #: inc/setting_manage_metabox.php:345
60
  msgid "Manage meta box"
61
  msgstr ""
62
 
63
+ #: wp-admin-ui-customize.php:179
64
+ #: inc/reset_userrole.php:55
65
+ #: inc/setting_post_add_edit.php:16
66
+ #: inc/setting_post_add_edit.php:101
67
  msgid "Add New Post and Edit Post Screen Setting"
68
  msgstr ""
69
 
70
+ #: wp-admin-ui-customize.php:180
71
+ #: inc/reset_userrole.php:56
72
+ #: inc/setting_appearance_menus.php:14
73
+ #: inc/setting_appearance_menus.php:81
74
  msgid "Appearance Menus Screen Setting"
75
  msgstr ""
76
 
77
+ #: wp-admin-ui-customize.php:181
78
+ #: inc/reset_userrole.php:57
79
+ #: inc/setting_loginscreen.php:27
80
  msgid "Login Screen"
81
  msgstr ""
82
 
83
+ #: wp-admin-ui-customize.php:182
84
+ #: inc/reset_userrole.php:58
85
+ #: inc/setting_plugin_cap.php:16
86
+ #: inc/setting_plugin_cap.php:86
87
  #, php-format
88
  msgid "%1$s of %2$s %3$s"
89
  msgstr ""
90
 
91
+ #: wp-admin-ui-customize.php:342
92
  #, php-format
93
  msgid "Authority to apply the setting is not selected. <a href=\"%s\">From here</a>, please select the permissions you want to set."
94
  msgstr ""
95
 
96
+ #: wp-admin-ui-customize.php:367
97
  msgid "Apply user roles"
98
  msgstr ""
99
 
100
+ #: wp-admin-ui-customize.php:756
101
+ #: wp-admin-ui-customize.php:926
102
  msgid "Sub Menus"
103
  msgstr ""
104
 
105
+ #: wp-admin-ui-customize.php:851
106
+ #: wp-admin-ui-customize.php:873
107
  msgid "Menu Group"
108
  msgstr ""
109
 
110
+ #: wp-admin-ui-customize.php:871
111
  msgid "Show only on front end."
112
  msgstr ""
113
 
114
+ #: wp-admin-ui-customize.php:1174
 
 
 
 
115
  msgid "Front"
116
  msgstr ""
117
 
118
+ #: wp-admin-ui-customize.php:2529
119
+ #: inc/setting_default.php:180
120
  msgid "Thank you for your donation."
121
  msgstr ""
122
 
123
+ #: wp-admin-ui-customize.php:2544
124
  msgid "Please consider making a donation."
125
  msgstr ""
126
 
127
+ #: wp-admin-ui-customize.php:2544
128
+ #: inc/setting_default.php:32
129
  msgid "Donate"
130
  msgstr ""
131
 
132
+ #: inc/list_variables.php:19
133
+ #: inc/setting_admin_bar_menu.php:25
134
+ #: inc/setting_admin_general.php:125
135
+ #: inc/setting_admin_general.php:148
136
+ #: inc/setting_loginscreen.php:64
137
+ #: inc/setting_loginscreen.php:77
138
+ #: inc/setting_loginscreen.php:89
139
+ #: inc/setting_loginscreen.php:117
140
+ #: inc/setting_loginscreen.php:129
141
+ #: inc/setting_sidemenu.php:24
142
  msgid "Shortcodes"
143
  msgstr ""
144
 
145
+ #: inc/list_variables.php:44
146
  msgid "Blog name of logged in."
147
  msgstr ""
148
 
149
+ #: inc/list_variables.php:53
150
  msgid "Blog URL of logged in."
151
  msgstr ""
152
 
153
+ #: inc/list_variables.php:103
154
+ #: inc/list_variables.php:110
155
+ #: inc/list_variables.php:117
156
+ #: inc/list_variables.php:124
157
  msgid "In your case."
158
  msgstr ""
159
 
160
+ #: inc/list_variables.php:131
161
+ msgid "Current Post Type Name"
162
  msgstr ""
163
 
164
+ #: inc/reset_userrole.php:23
165
+ msgid "Applied user roles"
166
  msgstr ""
167
 
168
+ #: inc/reset_userrole.php:33
169
+ #: inc/setting_admin_bar_menu.php:87
170
+ #: inc/setting_admin_general.php:191
171
+ #: inc/setting_appearance_menus.php:81
172
+ #: inc/setting_dashboard.php:143
173
+ #: inc/setting_default.php:124
174
+ #: inc/setting_loginscreen.php:152
175
+ #: inc/setting_manage_metabox.php:345
176
+ #: inc/setting_plugin_cap.php:86
177
+ #: inc/setting_post_add_edit.php:101
178
+ #: inc/setting_sidemenu.php:232
179
+ #: inc/setting_site.php:160
180
+ #, php-format
181
+ msgid "Reset the %s?"
182
+ msgstr ""
183
+
184
+ #: inc/reset_userrole.php:35
185
+ #: inc/setting_admin_bar_menu.php:88
186
+ #: inc/setting_admin_general.php:192
187
+ #: inc/setting_appearance_menus.php:82
188
+ #: inc/setting_dashboard.php:144
189
+ #: inc/setting_default.php:125
190
+ #: inc/setting_loginscreen.php:153
191
+ #: inc/setting_manage_metabox.php:346
192
+ #: inc/setting_plugin_cap.php:87
193
+ #: inc/setting_post_add_edit.php:102
194
+ #: inc/setting_sidemenu.php:233
195
+ #: inc/setting_site.php:161
196
  msgid "Reset settings"
197
  msgstr ""
198
 
199
+ #: inc/reset_userrole.php:42
200
+ #: inc/reset_userrole.php:64
201
  msgid "Reset settings of all"
202
  msgstr ""
203
 
204
+ #: inc/reset_userrole.php:47
205
  msgid "Setting all of the below will be deleted."
206
  msgstr ""
207
 
208
+ #: inc/reset_userrole.php:62
209
  msgid "Are you sure you want to delete all settings?"
210
  msgstr ""
211
 
212
+ #: inc/setting_admin_bar_menu.php:19
213
+ #: inc/setting_sidemenu.php:18
214
  msgid "Please change the menu by drag and drop."
215
  msgstr ""
216
 
217
+ #: inc/setting_admin_bar_menu.php:20
218
+ #: inc/setting_sidemenu.php:20
219
  msgid "Notice: Please do not place the same multiple menu slug."
220
  msgstr ""
221
 
222
+ #: inc/setting_admin_bar_menu.php:21
223
  msgid "Can be more than one custom menu."
224
  msgstr ""
225
 
226
+ #: inc/setting_admin_bar_menu.php:25
227
+ #: inc/setting_admin_general.php:125
228
+ #: inc/setting_admin_general.php:148
229
+ #: inc/setting_loginscreen.php:64
230
+ #: inc/setting_loginscreen.php:77
231
+ #: inc/setting_loginscreen.php:89
232
+ #: inc/setting_loginscreen.php:117
233
+ #: inc/setting_loginscreen.php:129
234
+ #: inc/setting_sidemenu.php:24
235
  msgid "Available Shortcodes"
236
  msgstr ""
237
 
238
+ #: inc/setting_admin_bar_menu.php:33
239
  msgid "Sub-menu settings apply to maximum of four levels deep."
240
  msgstr ""
241
 
242
+ #: inc/setting_admin_bar_menu.php:34
243
  msgid "Admin bar settings documentation page"
244
  msgstr ""
245
 
246
+ #: inc/setting_admin_bar_menu.php:93
247
+ #: inc/setting_sidemenu.php:19
248
+ #: inc/setting_sidemenu.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Menu items that can be added"
250
  msgstr ""
251
 
252
+ #: inc/setting_admin_general.php:34
253
  msgid "Notifications"
254
  msgstr ""
255
 
256
+ #: inc/setting_admin_general.php:40
257
  msgid "WordPress core update notice"
258
  msgstr ""
259
 
260
+ #: inc/setting_admin_general.php:46
261
+ #: inc/setting_admin_general.php:57
262
+ #: inc/setting_admin_general.php:68
263
  msgid "Not notified"
264
  msgstr ""
265
 
266
+ #: inc/setting_admin_general.php:51
267
  msgid "Plugin update notice"
268
  msgstr ""
269
 
270
+ #: inc/setting_admin_general.php:62
271
  msgid "Theme update notice"
272
  msgstr ""
273
 
274
+ #: inc/setting_admin_general.php:78
275
  msgid "Screen Options and Help Tab"
276
  msgstr ""
277
 
278
+ #: inc/setting_admin_general.php:117
279
+ #: inc/setting_loginscreen.php:123
280
  msgid "Footer text"
281
  msgstr ""
282
 
283
+ #: inc/setting_admin_general.php:142
284
+ #: inc/setting_loginscreen.php:111
285
  msgid "CSS file to load"
286
  msgstr ""
287
 
288
+ #: inc/setting_admin_general.php:154
289
  msgid "Title tag for Admin screen"
290
  msgstr ""
291
 
292
+ #: inc/setting_admin_general.php:159
293
  msgid "Remove \"Wordpress\" from the title tag of the Admin screen"
294
  msgstr ""
295
 
296
+ #: inc/setting_admin_general.php:165
297
  msgid "Resizing Admin bar"
298
  msgstr ""
299
 
300
+ #: inc/setting_admin_general.php:170
301
  msgid "Don't resize"
302
  msgstr ""
303
 
304
+ #: inc/setting_appearance_menus.php:39
305
  msgid "Create a new menu"
306
  msgstr ""
307
 
308
+ #: inc/setting_appearance_menus.php:45
309
+ #: inc/setting_appearance_menus.php:59
310
  msgid "This is useful when you want to use only the menus have been created."
311
  msgstr ""
312
 
313
+ #: inc/setting_dashboard.php:34
314
  msgid "Meta boxes"
315
  msgstr ""
316
 
317
+ #: inc/setting_dashboard.php:43
318
+ #: inc/setting_manage_metabox.php:56
319
+ #: inc/setting_manage_metabox.php:153
320
+ #: inc/setting_manage_metabox.php:258
321
  #, php-format
322
  msgid "Metaboxes loading for %s"
323
  msgstr ""
324
 
325
+ #: inc/setting_dashboard.php:61
326
+ #: inc/setting_manage_metabox.php:77
327
+ #: inc/setting_manage_metabox.php:174
328
+ #: inc/setting_manage_metabox.php:279
329
  msgid "Change metabox title to"
330
  msgstr ""
331
 
332
+ #: inc/setting_dashboard.php:110
333
  msgid "Other"
334
  msgstr ""
335
 
336
+ #: inc/setting_dashboard.php:117
337
  msgid "Meta box movement restriction"
338
  msgstr ""
339
 
340
+ #: inc/setting_dashboard.php:122
341
  msgid "Prevent selected roles from re-arranging metaboxes"
342
  msgstr ""
343
 
344
+ #: inc/setting_default.php:16
345
  msgid "Customize the UI of the management screen for all users."
346
  msgstr ""
347
 
348
+ #: inc/setting_default.php:17
349
  msgid "Please select the user roles that all settings will apply to."
350
  msgstr ""
351
 
352
+ #: inc/setting_default.php:19
353
  msgid "Please use the Multiple Add-on if you want per role customization."
354
  msgstr ""
355
 
356
+ #: inc/setting_default.php:33
357
  msgid "Are you happy with this plugin?<br />Japanese law prohibits PayPal donations. <br />Please consider purchasing the Line Break First and End plugin in lieu of a donation."
358
  msgstr ""
359
 
360
+ #: inc/setting_default.php:40
361
  msgid "Features"
362
  msgstr ""
363
 
364
+ #: inc/setting_default.php:41
365
  msgid "Line Break First and End plugin allows for line breaks when using the visual editor TinyMCE."
366
  msgstr ""
367
 
368
+ #: inc/setting_default.php:44
369
  msgid "The primary use of donations"
370
  msgstr ""
371
 
372
+ #: inc/setting_default.php:46
373
  msgid "Liquidation of time and value"
374
  msgstr ""
375
 
376
+ #: inc/setting_default.php:47
377
  msgid "Additional suggestions feature"
378
  msgstr ""
379
 
380
+ #: inc/setting_default.php:48
381
  msgid "Maintain motivation"
382
  msgstr ""
383
 
384
+ #: inc/setting_default.php:49
385
  msgid "Ensure time as the father of Sunday"
386
  msgstr ""
387
 
388
+ #: inc/setting_default.php:56
389
  msgid "About plugin"
390
  msgstr ""
391
 
392
+ #: inc/setting_default.php:58
393
  msgid "Version checked"
394
  msgstr ""
395
 
396
+ #: inc/setting_default.php:60
397
  msgid "Plugin's site"
398
  msgstr ""
399
 
400
+ #: inc/setting_default.php:61
401
  msgid "Developer's site"
402
  msgstr ""
403
 
404
+ #: inc/setting_default.php:63
405
  msgid "Reviews"
406
  msgstr ""
407
 
408
+ #: inc/setting_default.php:71
409
+ #: inc/setting_loginscreen.php:36
410
  msgid "Useful plugins"
411
  msgstr ""
412
 
413
+ #: inc/setting_default.php:74
414
  msgid "Apply setting on a per-role basis."
415
  msgstr ""
416
 
417
+ #: inc/setting_default.php:76
418
  msgid "Easily import/export setting between installations."
419
  msgstr ""
420
 
421
+ #: inc/setting_default.php:78
422
  msgid "Unified custom management screens for Multisite."
423
  msgstr ""
424
 
425
+ #: inc/setting_default.php:80
426
  msgid "Customize list view columns for posts, pages, custom post types, media library, and other management screens."
427
  msgstr ""
428
 
429
+ #: inc/setting_default.php:82
430
  msgid "Create dashboard messages to be displayed for selected user roles."
431
  msgstr ""
432
 
433
+ #: inc/setting_default.php:84
434
  msgid "Create custom global variables that can be used with generated template tags or shortcodes."
435
  msgstr ""
436
 
437
+ #: inc/setting_default.php:124
438
+ msgid "User Roles Settings"
439
+ msgstr ""
440
+
441
+ #: inc/setting_default.php:133
442
  msgid "If you have already donated to."
443
  msgstr ""
444
 
445
+ #: inc/setting_default.php:134
446
  msgid "Please enter the 'Donation Delete Key' that was provided on the Line Break First and End download page."
447
  msgstr ""
448
 
449
+ #: inc/setting_default.php:137
450
  msgid "Donation Delete Key:"
451
  msgstr ""
452
 
453
+ #: inc/setting_default.php:145
454
  msgid "Do you need professional setup and customization?"
455
  msgstr ""
456
 
457
+ #: inc/setting_default.php:151
458
  msgid "I provide full service customization for WP Admin UI Customize."
459
  msgstr ""
460
 
461
+ #: inc/setting_default.php:152
462
  msgid "Please contact me if you are interested."
463
  msgstr ""
464
 
465
+ #: inc/setting_default.php:154
466
  msgid "Example Customize"
467
  msgstr ""
468
 
469
+ #: inc/setting_default.php:155
470
  msgid "Contact me"
471
  msgstr ""
472
 
473
+ #: inc/setting_loginscreen.php:16
474
+ #: inc/setting_loginscreen.php:152
475
  msgid "Login Screen Settings"
476
  msgstr ""
477
 
478
+ #: inc/setting_loginscreen.php:25
479
  msgid "Is not possible to check the login form if you do not log out in the case of MultiSite."
480
  msgstr ""
481
 
482
+ #: inc/setting_loginscreen.php:27
483
  msgid "Show Current Login Screen"
484
  msgstr ""
485
 
486
+ #: inc/setting_loginscreen.php:39
487
  msgid "Flexible plugin for login screen customization."
488
  msgstr ""
489
 
490
+ #: inc/setting_loginscreen.php:51
491
  msgid "Login Form"
492
  msgstr ""
493
 
494
+ #: inc/setting_loginscreen.php:58
495
  msgid "The link after clicking on the logo"
496
  msgstr ""
497
 
498
+ #: inc/setting_loginscreen.php:71
499
  msgid "Logo Title"
500
  msgstr ""
501
 
502
+ #: inc/setting_loginscreen.php:83
503
  msgid "Logo Image path"
504
  msgstr ""
505
 
506
+ #: inc/setting_manage_metabox.php:18
507
  msgid "Please update or add a \"post\" and a \"page\" to load the available meta boxes."
508
  msgstr ""
509
 
510
+ #: inc/setting_manage_metabox.php:19
511
  msgid "Please enter if you want to change of Metabox label name."
512
  msgstr ""
513
 
514
+ #: inc/setting_manage_metabox.php:75
515
+ #: inc/setting_manage_metabox.php:172
516
+ #: inc/setting_manage_metabox.php:277
517
  msgid "Default Open"
518
  msgstr ""
519
 
520
+ #: inc/setting_manage_metabox.php:103
521
+ #: inc/setting_manage_metabox.php:199
522
+ #: inc/setting_manage_metabox.php:303
523
  msgid "Expanded"
524
  msgstr ""
525
 
526
+ #: inc/setting_manage_metabox.php:104
527
+ #: inc/setting_manage_metabox.php:200
528
+ #: inc/setting_manage_metabox.php:304
529
  msgid "Collapsed"
530
  msgstr ""
531
 
532
+ #: inc/setting_manage_metabox.php:115
533
+ #: inc/setting_manage_metabox.php:211
534
+ #: inc/setting_post_add_edit.php:48
535
  msgid "Notice: If hide the Discussion on metabox, comments does not display of Add New Post on apply user role."
536
  msgstr ""
537
 
538
+ #: inc/setting_manage_metabox.php:117
539
+ #: inc/setting_manage_metabox.php:213
540
  msgid "Please set from here if you want to view the comments on screen."
541
  msgstr ""
542
 
543
+ #: inc/setting_plugin_cap.php:17
544
  #, php-format
545
  msgid "You can change the user role %2$s of %1$s settings."
546
  msgstr ""
547
 
548
+ #: inc/setting_plugin_cap.php:18
549
  #, php-format
550
  msgid "Please choose the minimum role that can modify %s settings."
551
  msgstr ""
552
 
553
+ #: inc/setting_plugin_cap.php:35
554
  #, php-format
555
  msgid "Capability role for the %s"
556
  msgstr ""
557
 
558
+ #: inc/setting_post_add_edit.php:41
559
  msgid "Allow people to post comments on new articles when hide to discussion of metabox"
560
  msgstr ""
561
 
562
+ #: inc/setting_post_add_edit.php:49
563
  msgid "Please select if you want to display the comments on Site."
564
  msgstr ""
565
 
566
+ #: inc/setting_post_add_edit.php:50
567
  #, php-format
568
  msgid "However, this will follow the setting of %s."
569
  msgstr ""
570
 
571
+ #: inc/setting_post_add_edit.php:52
572
  #, php-format
573
  msgid "Please select the <strong>%s</strong>"
574
  msgstr ""
575
 
576
+ #: inc/setting_post_add_edit.php:78
577
  msgid "Only appears when you have settings to the default permalink."
578
  msgstr ""
579
 
580
+ #: inc/setting_sidemenu.php:19
581
  #, php-format
582
  msgid "New plugin menus will be added to the <strong>%s</strong>."
583
  msgstr ""
584
 
585
+ #: inc/setting_sidemenu.php:43
586
  msgid "Sepalator"
587
  msgstr ""
588
 
589
+ #: inc/setting_sidemenu.php:114
590
  msgid "Current menu"
591
  msgstr ""
592
 
593
+ #: inc/setting_sidemenu.php:216
594
  msgid "Delete all the Current menu"
595
  msgstr ""
596
 
597
+ #: inc/setting_site.php:35
598
  msgid "Header Meta"
599
  msgstr ""
600
 
601
+ #: inc/setting_site.php:48
602
+ #: inc/setting_site.php:61
603
+ #: inc/setting_site.php:74
604
+ #: inc/setting_site.php:87
605
+ #: inc/setting_site.php:100
606
  msgid "Tag to be output"
607
  msgstr ""
608
 
609
+ #: inc/setting_site.php:60
610
  msgid "Please display when using the Windows Live Writer."
611
  msgstr ""
612
 
613
+ #: inc/setting_site.php:73
614
  msgid "Information of XML-rpc"
615
  msgstr ""
616
 
617
+ #: inc/setting_site.php:86
618
  msgid "Sitewide feed"
619
  msgstr ""
620
 
621
+ #: inc/setting_site.php:99
622
  msgid "Extra feed"
623
  msgstr ""
624
 
625
+ #: inc/setting_site.php:124
626
  msgid "Admin Bar"
627
  msgstr ""
628
 
629
+ #: inc/setting_site.php:127
630
  msgid "Hide the Admin bar on the front end"
631
  msgstr ""
632
 
633
+ #: inc/setting_site.php:127
634
  msgid "Apply WP Admin UI Customize settings on the front end admin bar also"
635
  msgstr ""
636
 
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_5_2_2
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: 4.0
7
- Stable tag: 1.5.2.2
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -50,6 +50,14 @@ These to Customization is possible.
50
 
51
  == Changelog ==
52
 
 
 
 
 
 
 
 
 
53
  = 1.5.2.2 =
54
  * Updated: Remove the specific slug of child menu of Side menus.
55
 
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_5_2_3
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
+ Requires at least: 3.8
6
+ Tested up to: 4.1
7
+ Stable tag: 1.5.2.3
8
  License: GPL2
9
 
10
  Customize the management screen UI.
50
 
51
  == Changelog ==
52
 
53
+ = 1.5.2.3 =
54
+ * Fixed: Priority change of loading meta boxes on Dashboard.
55
+ * Fixed: Customize of Appearance.
56
+ * Added: Shortcode to order number count show of WooCommerce.
57
+ * Added: Add View Post menu of Admin bar settings.
58
+ * Added: Shortcode to Current post type name.
59
+ * Support: Compatible to Post Edit Toolbar.
60
+
61
  = 1.5.2.2 =
62
  * Updated: Remove the specific slug of child menu of Side menus.
63
 
wp-admin-ui-customize-3.7.css DELETED
@@ -1,254 +0,0 @@
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
- #wauc_setting_manage_metabox .inside .loading,
209
- #wauc_setting_dashboard .inside .loading {
210
- display: none;
211
- }
212
- #wauc_setting_manage_metabox .inside .loading .spinner,
213
- #wauc_setting_dashboard .inside .loading .spinner {
214
- float: left;
215
- }
216
-
217
-
218
-
219
- /* compatible mp6 */
220
-
221
- body.mp6.toplevel_page_wp_admin_ui_customize .postbox:hover .handlediv:before,
222
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_setting_site .postbox:hover .handlediv:before,
223
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_general_setting .postbox:hover .handlediv:before,
224
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_dashboard .postbox:hover .handlediv:before,
225
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox:hover .handlediv:before,
226
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_sidemenu .postbox:hover .handlediv:before,
227
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_manage_metabox .postbox:hover .handlediv:before,
228
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_post_add_edit_screen .postbox:hover .handlediv:before,
229
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_appearance_menus .postbox:hover .handlediv:before,
230
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_loginscreen .postbox:hover .handlediv:before {
231
- right: 12px;
232
- content: '\f142';
233
- font: normal 20px/1 'dashicons';
234
- speak: none;
235
- display: inline-block;
236
- padding: 8px 10px;
237
- color: #888;
238
- top: 0;
239
- position: relative;
240
- -webkit-font-smoothing: antialiased;
241
- text-decoration: none !important;
242
- }
243
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus > .postbox {
244
- background: none;
245
- }
246
-
247
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top {
248
- background: #333;
249
- }
250
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group .widget-top a {
251
- color: #333;
252
- }
253
-
254
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_5_2_2
6
- Version: 1.5.2.2
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_2_2
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -27,6 +27,8 @@ Domain Path: /languages
27
  */
28
 
29
 
 
 
30
  if ( !class_exists( 'WP_Admin_UI_Customize' ) ) :
31
 
32
  class WP_Admin_UI_Customize
@@ -56,7 +58,7 @@ class WP_Admin_UI_Customize
56
 
57
 
58
  function __construct() {
59
- $this->Ver = '1.5.2.2';
60
  $this->Name = 'WP Admin UI Customize';
61
  $this->Dir = plugin_dir_path( __FILE__ );
62
  $this->Url = plugin_dir_url( __FILE__ );
@@ -130,7 +132,7 @@ class WP_Admin_UI_Customize
130
  add_action( 'admin_head' , array( $this , 'post_meta_boxes_load' ) , 10000 );
131
 
132
  // default post metabox dashbaord load.
133
- add_action( 'admin_head' , array( $this , 'post_meta_boxes_dashboard_load' ) , 10 );
134
 
135
  }
136
 
@@ -188,6 +190,15 @@ class WP_Admin_UI_Customize
188
  if( is_plugin_active( 'buddypress/bp-loader.php' ) ) {
189
  $this->ActivatedPlugin["buddypress"] = true;
190
  }
 
 
 
 
 
 
 
 
 
191
  }
192
 
193
 
@@ -373,17 +384,37 @@ class WP_Admin_UI_Customize
373
  // SetList
374
  function sidemenu_default_load() {
375
  global $menu , $submenu;
376
-
377
- $this->Menu = $menu;
378
- $this->SubMenu = $submenu;
379
 
380
  if ( !get_option( 'link_manager_enabled' ) ) {
381
- foreach( $this->Menu as $key => $val ) {
382
  if( !empty( $val[1] ) && $val[1] == 'manage_links' ) {
383
- unset( $this->Menu[$key] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
384
  }
 
385
  }
 
386
  }
 
387
  }
388
 
389
  // SetList
@@ -404,6 +435,21 @@ class WP_Admin_UI_Customize
404
  }
405
  }
406
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
  if( !empty( $this->OtherPluginMenu["admin_bar"] ) ) {
408
  for($i = 0; $i < 4; $i++) {
409
  foreach( $this->OtherPluginMenu["admin_bar"] as $plugin_slug => $plugin_menu ) {
@@ -415,7 +461,6 @@ class WP_Admin_UI_Customize
415
  }
416
  }
417
  }
418
-
419
  }
420
  }
421
 
@@ -535,12 +580,36 @@ class WP_Admin_UI_Customize
535
  $Filter_bar["front"] = array( "main" => array() , "sub" => array() );
536
  $Filter_bar["front"]["main"]["edit-post_type"] = new stdClass;
537
  $Filter_bar["front"]["main"]["edit-post_type"] = (object) array( 'id' => 'edit-post_type' , 'title' => '' , 'href' => '' , 'group' => '' , 'meta' => array() );
538
- $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' ) );
539
 
540
  $Filter_bar["front"]["main"]["search"] = new stdClass;
541
  $Filter_bar["front"]["main"]["search"] = (object) array( 'id' => 'search' , 'title' => '' , 'href' => '' , 'group' => '' , 'meta' => array() );
542
  $Filter_bar["front"]["main"]["search"]->title = __( 'Search' );
543
  $Filter_bar["front"]["main"]["search"]->href = get_search_link();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
544
 
545
  return $Filter_bar;
546
  }
@@ -756,7 +825,7 @@ class WP_Admin_UI_Customize
756
  if ( is_object( $menu_widget ) ) $menu_widget = (array) $menu_widget;
757
  if( !isset( $menu_widget["group"] ) ) $menu_widget["group"] = 0;
758
  if( !isset( $menu_widget["meta"]["class"] ) ) $menu_widget["meta"]["class"] = "";
759
- $no_submenu = array( 'search' , 'bp-notifications' , 'menu-toggle' );
760
  $activated_plugin = $this->ActivatedPlugin;
761
  $other_plugin = $this->OtherPluginMenu;
762
 
@@ -816,11 +885,8 @@ class WP_Admin_UI_Customize
816
  <input type="hidden" class="regular-text titletext" value="" name="data[][title]" />
817
  <?php else : ?>
818
  <?php _e( 'Title' ); ?> :
819
- <?php if( $menu_widget["id"] == 'edit-post_type' or in_array( $menu_widget["id"] , $no_submenu ) ) : ?>
820
  <input type="text" class="regular-text titletext" value="<?php echo esc_html( $menu_widget["title"] ); ?>" name="data[][title]" readonly="readonly" /><br />
821
- <?php if( $menu_widget["id"] == 'edit-post_type' ) : ?>
822
- <span class="description"><?php _e( 'If you want edit to name, please edit of translation file(PO).' , $this->ltd ); ?></span><br />
823
- <?php endif; ?>
824
  <?php elseif( !empty( $activated_plugin ) ) : ?>
825
  <?php foreach( $activated_plugin as $plugin_slug => $v ) : ?>
826
  <?php if( !empty( $other_plugin["admin_bar"][$plugin_slug] ) && array_key_exists( $menu_widget["id"] , $other_plugin["admin_bar"][$plugin_slug] ) ) : ?>
@@ -977,6 +1043,68 @@ class WP_Admin_UI_Customize
977
  if( strstr( $str , '[user_avatar_64]') ) {
978
  $str = str_replace( '[user_avatar_64]' , get_avatar( $current_user->ID , 64 ) , $str );
979
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
980
 
981
  if( is_multisite() ) {
982
  if( strstr( $str , '[site_name]') ) {
@@ -986,6 +1114,30 @@ class WP_Admin_UI_Customize
986
  $str = str_replace( '[site_url]' , $this->Schema . esc_attr( $current_site->domain ) , $str );
987
  }
988
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
989
 
990
  }
991
 
@@ -1492,7 +1644,7 @@ class WP_Admin_UI_Customize
1492
  add_action( 'admin_head' , array( $this , 'remove_tab' ) );
1493
  add_filter( 'admin_footer_text' , array( $this , 'admin_footer_text' ) );
1494
  add_action( 'admin_print_styles' , array( $this , 'load_css' ) );
1495
- add_action( 'wp_dashboard_setup' , array( $this , 'wp_dashboard_setup' ) , 11 );
1496
  add_action( 'admin_head' , array( $this , 'manage_metabox' ) , 11 );
1497
  add_filter( 'admin_head', array( $this , 'sidemenu' ) );
1498
  add_filter( 'get_sample_permalink_html' , array( $this , 'add_edit_post_change_permalink' ) );
@@ -1654,27 +1806,61 @@ class WP_Admin_UI_Customize
1654
  $update_data = wp_get_update_data();
1655
  $activated_plugin = $this->ActivatedPlugin;
1656
  $other_plugin = $this->OtherPluginMenu;
1657
-
1658
  // all nodes adjustment
1659
  foreach($SettingNodes as $Boxtype => $allnodes) {
1660
  foreach($allnodes as $node_type => $nodes) {
1661
  foreach($nodes as $key => $node) {
1662
-
1663
  if( strstr( $node["id"] , 'custom_node' ) ) {
1664
  if( !empty( $node["group"] ) ) {
1665
  $node["meta"]["class"] = 'ab-sub-secondary';
1666
  } else {
1667
  $node["href"] = $this->val_replace( $node["href"] );
1668
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1669
  } elseif( $node["id"] == 'edit-post_type' ) {
 
1670
  if( !empty( $All_Nodes["edit"] ) ) {
1671
- $node["title"] = $All_Nodes["edit"]->title;
 
1672
  $node["href"] = $All_Nodes["edit"]->href;
1673
  $node["id"] = $All_Nodes["edit"]->id;
 
1674
  } else {
 
1675
  unset( $SettingNodes[$Boxtype][$node_type][$key] );
1676
  continue;
 
1677
  }
 
1678
  } elseif( $node["id"] == 'search' ) {
1679
  if( !empty( $All_Nodes["search"] ) ) {
1680
  $node["title"] = $All_Nodes["search"]->title;
@@ -1777,6 +1963,42 @@ class WP_Admin_UI_Customize
1777
  }
1778
  }
1779
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1780
  }
1781
  foreach( $activated_plugin as $plugin_slug => $v ) {
1782
  if( !empty( $other_plugin["admin_bar"][$plugin_slug] ) && array_key_exists( $node["id"] , $other_plugin["admin_bar"][$plugin_slug] ) ) {
@@ -2039,10 +2261,10 @@ class WP_Admin_UI_Customize
2039
  function sidemenu() {
2040
  global $menu;
2041
  global $submenu;
2042
-
2043
  $GetData = $this->get_flit_data( 'sidemenu' );
2044
  $General = $this->get_flit_data( 'admin_general' );
2045
-
2046
  if( !empty( $GetData["UPFN"] ) ) {
2047
  unset( $GetData["UPFN"] );
2048
 
@@ -2051,6 +2273,75 @@ class WP_Admin_UI_Customize
2051
  $SetMain_submenu = array();
2052
 
2053
  $separator_menu = array( 0 => "" , 1 => 'read' , 2 => 'separator1' , 3 => "" , 4 => 'wp-menu-separator' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2054
 
2055
  foreach($GetData["main"] as $mm_pos => $mm) {
2056
  if($mm["slug"] == 'separator') {
@@ -2059,18 +2350,6 @@ class WP_Admin_UI_Customize
2059
  $gm_search = false;
2060
  foreach($menu as $gm_pos => $gm) {
2061
  if($mm["slug"] == $gm[2]) {
2062
- if( strstr( $mm["title"] , '[comment_count]') ) {
2063
- $mm["title"] = str_replace( '[comment_count]' , '<span class="update-plugins count-[comment_count]"><span class="theme-count">[comment_count_format]</span></span>' , $mm["title"] );
2064
- }
2065
- if( strstr( $mm["title"] , '[update_total]') ) {
2066
- $mm["title"] = str_replace( '[update_total]' , '<span class="update-plugins count-[update_total]"><span class="update-count">[update_total_format]</span></span>' , $mm["title"] );
2067
- }
2068
- if( strstr( $mm["title"] , '[update_plugins]') ) {
2069
- $mm["title"] = str_replace( '[update_plugins]' , '<span class="update-plugins count-[update_plugins]"><span class="plugin-count">[update_plugins_format]</span></span>' , $mm["title"] );
2070
- }
2071
- if( strstr( $mm["title"] , '[update_themes]') ) {
2072
- $mm["title"] = str_replace( '[update_themes]' , '<span class="update-plugins count-[update_themes]"><span class="theme-count">[update_themes_format]</span></span>' , $mm["title"] );
2073
- }
2074
  $menu[$gm_pos][0] = $this->val_replace( $mm["title"] );
2075
  $SetMain_menu[] = $menu[$gm_pos];
2076
  $gm_search = true;
@@ -2088,18 +2367,6 @@ class WP_Admin_UI_Customize
2088
  break;
2089
  }
2090
  }
2091
- if( strstr( $mm["title"] , '[comment_count]') ) {
2092
- $mm["title"] = str_replace( '[comment_count]' , '<span class="update-plugins count-[comment_count]"><span class="theme-count">[comment_count_format]</span></span>' , $mm["title"] );
2093
- }
2094
- if( strstr( $mm["title"] , '[update_total]') ) {
2095
- $mm["title"] = str_replace( '[update_total]' , '<span class="update-plugins count-[update_total]"><span class="update-count">[update_total_format]</span></span>' , $mm["title"] );
2096
- }
2097
- if( strstr( $mm["title"] , '[update_plugins]') ) {
2098
- $mm["title"] = str_replace( '[update_plugins]' , '<span class="update-plugins count-[update_plugins]"><span class="plugin-count">[update_plugins_format]</span></span>' , $mm["title"] );
2099
- }
2100
- if( strstr( $mm["title"] , '[update_themes]') ) {
2101
- $mm["title"] = str_replace( '[update_themes]' , '<span class="update-plugins count-[update_themes]"><span class="theme-count">[update_themes_format]</span></span>' , $mm["title"] );
2102
- }
2103
  $submenu[$gsm_parent_slug][$gsm_pos][0] = $this->val_replace( $mm["title"] );
2104
  $SetMain_menu[] = $submenu[$gsm_parent_slug][$gsm_pos];
2105
 
@@ -2118,18 +2385,6 @@ class WP_Admin_UI_Customize
2118
  $gm_search = false;
2119
  foreach($menu as $gm_pos => $gm) {
2120
  if($sm["slug"] == $gm[2]) {
2121
- if( strstr( $sm["title"] , '[comment_count]') ) {
2122
- $sm["title"] = str_replace( '[comment_count]' , '<span class="update-plugins count-[comment_count]"><span class="theme-count">[comment_count_format]</span></span>' , $sm["title"] );
2123
- }
2124
- if( strstr( $sm["title"] , '[update_total]') ) {
2125
- $sm["title"] = str_replace( '[update_total]' , '<span class="update-plugins count-[update_total]"><span class="update-count">[update_total_format]</span></span>' , $sm["title"] );
2126
- }
2127
- if( strstr( $sm["title"] , '[update_plugins]') ) {
2128
- $sm["title"] = str_replace( '[update_plugins]' , '<span class="update-plugins count-[update_plugins]"><span class="plugin-count">[update_plugins_format]</span></span>' , $sm["title"] );
2129
- }
2130
- if( strstr( $sm["title"] , '[update_themes]') ) {
2131
- $sm["title"] = str_replace( '[update_themes]' , '<span class="update-plugins count-[update_themes]"><span class="theme-count">[update_themes_format]</span></span>' , $sm["title"] );
2132
- }
2133
  $menu[$gm_pos][0] = $this->val_replace( $sm["title"] );
2134
  $SetMain_submenu[$sm["parent_slug"]][] = $menu[$gm_pos];
2135
  $gm_search = true;
@@ -2140,19 +2395,6 @@ class WP_Admin_UI_Customize
2140
  foreach($submenu as $gsm_parent_slug => $v) {
2141
  foreach($v as $gsm_pos => $gsm) {
2142
  if($sm["slug"] == $gsm[2]) {
2143
-
2144
- if( strstr( $sm["title"] , '[comment_count]') ) {
2145
- $sm["title"] = str_replace( '[comment_count]' , '<span class="update-plugins count-[comment_count]"><span class="theme-count">[comment_count_format]</span></span>' , $sm["title"] );
2146
- }
2147
- if( strstr( $sm["title"] , '[update_total]') ) {
2148
- $sm["title"] = str_replace( '[update_total]' , '<span class="update-plugins count-[update_total]"><span class="update-count">[update_total_format]</span></span>' , $sm["title"] );
2149
- }
2150
- if( strstr( $sm["title"] , '[update_plugins]') ) {
2151
- $sm["title"] = str_replace( '[update_plugins]' , '<span class="update-plugins count-[update_plugins]"><span class="plugin-count">[update_plugins_format]</span></span>' , $sm["title"] );
2152
- }
2153
- if( strstr( $sm["title"] , '[update_themes]') ) {
2154
- $sm["title"] = str_replace( '[update_themes]' , '<span class="update-plugins count-[update_themes]"><span class="theme-count">[update_themes_format]</span></span>' , $sm["title"] );
2155
- }
2156
  $submenu[$gsm_parent_slug][$gsm_pos][0] = $this->val_replace( $sm["title"] );
2157
  $SetMain_submenu[$sm["parent_slug"]][] = $submenu[$gsm_parent_slug][$gsm_pos];
2158
  }
@@ -2183,6 +2425,7 @@ class WP_Admin_UI_Customize
2183
  $menu = array();
2184
  }
2185
  }
 
2186
  }
2187
 
2188
  // FilterStart
@@ -2263,10 +2506,9 @@ class WP_Admin_UI_Customize
2263
 
2264
  // FilterStart
2265
  function admin_bar_resizing() {
2266
- global $wp_version;
2267
  $GetData = $this->get_flit_data( 'admin_general' );
2268
 
2269
- if ( version_compare( $wp_version , '3.8' , '>=' ) && empty( $GetData["resize_admin_bar"] ) ) {
2270
  wp_enqueue_style( $this->PageSlug . '-adminbar-resize' , $this->Url . 'css/adminbar/resize.css', array() , $this->Ver );
2271
  if( is_admin() ) {
2272
  wp_enqueue_script( $this->PageSlug . '-adminbar-resize' , $this->Url . 'js/adminbar/resize.js', array( 'jquery' ) , $this->Ver );
@@ -2308,3 +2550,4 @@ class WP_Admin_UI_Customize
2308
  $wauc = new WP_Admin_UI_Customize();
2309
 
2310
  endif;
 
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_5_2_3
6
+ Version: 1.5.2.3
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_2_3
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
27
  */
28
 
29
 
30
+
31
+
32
  if ( !class_exists( 'WP_Admin_UI_Customize' ) ) :
33
 
34
  class WP_Admin_UI_Customize
58
 
59
 
60
  function __construct() {
61
+ $this->Ver = '1.5.2.3';
62
  $this->Name = 'WP Admin UI Customize';
63
  $this->Dir = plugin_dir_path( __FILE__ );
64
  $this->Url = plugin_dir_url( __FILE__ );
132
  add_action( 'admin_head' , array( $this , 'post_meta_boxes_load' ) , 10000 );
133
 
134
  // default post metabox dashbaord load.
135
+ add_action( 'wp_dashboard_setup' , array( $this , 'post_meta_boxes_dashboard_load' ) , 10000 );
136
 
137
  }
138
 
190
  if( is_plugin_active( 'buddypress/bp-loader.php' ) ) {
191
  $this->ActivatedPlugin["buddypress"] = true;
192
  }
193
+
194
+ if( is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
195
+ $this->ActivatedPlugin["woocommerce"] = true;
196
+ }
197
+
198
+ if( is_plugin_active( 'post-edit-toolbar/post-edit-toolbar.php' ) ) {
199
+ $this->ActivatedPlugin["post_edit_toolbar"] = true;
200
+ }
201
+
202
  }
203
 
204
 
384
  // SetList
385
  function sidemenu_default_load() {
386
  global $menu , $submenu;
 
 
 
387
 
388
  if ( !get_option( 'link_manager_enabled' ) ) {
389
+ foreach( $menu as $key => $val ) {
390
  if( !empty( $val[1] ) && $val[1] == 'manage_links' ) {
391
+ unset( $menu[$key] );
392
+ }
393
+ }
394
+ }
395
+
396
+ $this->Menu = $menu;
397
+ $this->SubMenu = $submenu;
398
+
399
+ if( !empty( $submenu ) ) {
400
+
401
+ foreach( $submenu as $submenu_key => $sm ) {
402
+
403
+ if( !empty( $sm ) ) {
404
+
405
+ foreach( $sm as $sm_key => $sm_set ) {
406
+
407
+ if( preg_match("/^customize.php/", $sm_set[2] ) )
408
+ $this->SubMenu[$submenu_key][$sm_key][2] = remove_query_arg( array( 'return' ) , $sm_set[2] );
409
+
410
+ }
411
+
412
  }
413
+
414
  }
415
+
416
  }
417
+
418
  }
419
 
420
  // SetList
435
  }
436
  }
437
 
438
+ if( !empty( $this->ActivatedPlugin["post_edit_toolbar"] ) ) {
439
+ $plugin_slug = 'post_item_';
440
+ foreach( $this->Admin_bar as $node_id => $node ) {
441
+ if( strstr( $node_id , $plugin_slug ) ) {
442
+ $this->OtherPluginMenu["admin_bar"][$plugin_slug][$node_id] = 1;
443
+ }
444
+ }
445
+ $plugin_slug = 'page_item_';
446
+ foreach( $this->Admin_bar as $node_id => $node ) {
447
+ if( strstr( $node_id , $plugin_slug ) ) {
448
+ $this->OtherPluginMenu["admin_bar"][$plugin_slug][$node_id] = 1;
449
+ }
450
+ }
451
+ }
452
+
453
  if( !empty( $this->OtherPluginMenu["admin_bar"] ) ) {
454
  for($i = 0; $i < 4; $i++) {
455
  foreach( $this->OtherPluginMenu["admin_bar"] as $plugin_slug => $plugin_menu ) {
461
  }
462
  }
463
  }
 
464
  }
465
  }
466
 
580
  $Filter_bar["front"] = array( "main" => array() , "sub" => array() );
581
  $Filter_bar["front"]["main"]["edit-post_type"] = new stdClass;
582
  $Filter_bar["front"]["main"]["edit-post_type"] = (object) array( 'id' => 'edit-post_type' , 'title' => '' , 'href' => '' , 'group' => '' , 'meta' => array() );
583
+ $Filter_bar["front"]["main"]["edit-post_type"]->title = sprintf( '%1$s [post_type]' , __( 'Edit' ) );
584
 
585
  $Filter_bar["front"]["main"]["search"] = new stdClass;
586
  $Filter_bar["front"]["main"]["search"] = (object) array( 'id' => 'search' , 'title' => '' , 'href' => '' , 'group' => '' , 'meta' => array() );
587
  $Filter_bar["front"]["main"]["search"]->title = __( 'Search' );
588
  $Filter_bar["front"]["main"]["search"]->href = get_search_link();
589
+
590
+ // admin field
591
+ $Filter_bar['left']['main']['view-post_type'] = new stdClass;
592
+ $Filter_bar['left']['main']['view-post_type'] = (object) array( 'id' => 'view-post_type' , 'title' => '' , 'href' => '' , 'group' => '' , 'meta' => array() );
593
+ $Filter_bar['left']['main']['view-post_type']->title = sprintf( '%1$s [post_type]' , __( 'View' ) );
594
+
595
+ if( !empty( $this->ActivatedPlugin ) ) {
596
+
597
+ if( !empty( $this->ActivatedPlugin["post_edit_toolbar"] ) ) {
598
+ $plugin_slug = 'post_item_';
599
+ foreach( $Filter_bar['left']['sub'] as $node_id => $node ) {
600
+ if( strstr( $node_id , $plugin_slug ) ) {
601
+ unset( $Filter_bar['left']['sub'][$node_id] );
602
+ }
603
+ }
604
+ $plugin_slug = 'page_item_';
605
+ foreach( $Filter_bar['left']['sub'] as $node_id => $node ) {
606
+ if( strstr( $node_id , $plugin_slug ) ) {
607
+ unset( $Filter_bar['left']['sub'][$node_id] );
608
+ }
609
+ }
610
+ }
611
+
612
+ }
613
 
614
  return $Filter_bar;
615
  }
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' , 'post_list' , 'page_list' );
829
  $activated_plugin = $this->ActivatedPlugin;
830
  $other_plugin = $this->OtherPluginMenu;
831
 
885
  <input type="hidden" class="regular-text titletext" value="" name="data[][title]" />
886
  <?php else : ?>
887
  <?php _e( 'Title' ); ?> :
888
+ <?php if( in_array( $menu_widget["id"] , $no_submenu ) ) : ?>
889
  <input type="text" class="regular-text titletext" value="<?php echo esc_html( $menu_widget["title"] ); ?>" name="data[][title]" readonly="readonly" /><br />
 
 
 
890
  <?php elseif( !empty( $activated_plugin ) ) : ?>
891
  <?php foreach( $activated_plugin as $plugin_slug => $v ) : ?>
892
  <?php if( !empty( $other_plugin["admin_bar"][$plugin_slug] ) && array_key_exists( $menu_widget["id"] , $other_plugin["admin_bar"][$plugin_slug] ) ) : ?>
1043
  if( strstr( $str , '[user_avatar_64]') ) {
1044
  $str = str_replace( '[user_avatar_64]' , get_avatar( $current_user->ID , 64 ) , $str );
1045
  }
1046
+ if( strstr( $str , '[post_type]') ) {
1047
+
1048
+ $post_name = '';
1049
+
1050
+ if( is_admin() ) {
1051
+
1052
+ global $current_screen;
1053
+ global $typenow;
1054
+ global $tax;
1055
+
1056
+ if( $current_screen->base == 'edit' or $current_screen->base == 'post' && !empty( $typenow ) ) {
1057
+
1058
+ $post_type_object = get_post_type_object( $typenow );
1059
+
1060
+ if( !empty( $post_type_object->public ) ) {
1061
+
1062
+ $post_name = $post_type_object->labels->singular_name;
1063
+
1064
+ }
1065
+
1066
+ } elseif( $current_screen->base == 'edit-tags' && !empty( $tax ) ) {
1067
+
1068
+ if( !empty( $tax->public ) ) {
1069
+
1070
+ $post_name = $tax->labels->singular_name;
1071
+
1072
+ }
1073
+
1074
+ }
1075
+
1076
+
1077
+ } else {
1078
+
1079
+ $queried_object = get_queried_object();
1080
+
1081
+ if( !empty( $queried_object->post_type ) ) {
1082
+
1083
+ $post_type_object = get_post_type_object( $queried_object->post_type );
1084
+
1085
+ if( !empty( $post_type_object->public ) ) {
1086
+
1087
+ $post_name = $post_type_object->labels->singular_name;
1088
+
1089
+ }
1090
+
1091
+ } elseif( !empty( $queried_object->taxonomy ) ) {
1092
+
1093
+ $tax = get_taxonomy( $queried_object->taxonomy );
1094
+
1095
+ if( !empty( $tax->public ) ) {
1096
+
1097
+ $post_name = $tax->labels->singular_name;
1098
+
1099
+ }
1100
+
1101
+ }
1102
+
1103
+ }
1104
+
1105
+ $str = str_replace( '[post_type]' , $post_name , $str );
1106
+
1107
+ }
1108
 
1109
  if( is_multisite() ) {
1110
  if( strstr( $str , '[site_name]') ) {
1114
  $str = str_replace( '[site_url]' , $this->Schema . esc_attr( $current_site->domain ) , $str );
1115
  }
1116
  }
1117
+
1118
+ if( !empty( $this->ActivatedPlugin ) ) {
1119
+
1120
+ $activated_plugins = $this->ActivatedPlugin;
1121
+
1122
+ if( !empty( $activated_plugins['woocommerce'] ) ) {
1123
+
1124
+ if( strstr( $str , '[woocommerce_order_process_count]') ) {
1125
+
1126
+ $woocommerce_order_process_count = '';
1127
+ if( function_exists( 'wc_processing_order_count' ) ) {
1128
+
1129
+ $order_count = intval( wc_processing_order_count() );
1130
+ if ( !empty( $order_count ) ) {
1131
+ $woocommerce_order_process_count = ' <span class="awaiting-mod update-plugins count-' . $order_count . '"><span class="processing-count">' . number_format_i18n( $order_count ) . '</span></span>';
1132
+ }
1133
+ }
1134
+
1135
+ $str = str_replace( '[woocommerce_order_process_count]' , $woocommerce_order_process_count , $str );
1136
+ }
1137
+
1138
+ }
1139
+
1140
+ }
1141
 
1142
  }
1143
 
1644
  add_action( 'admin_head' , array( $this , 'remove_tab' ) );
1645
  add_filter( 'admin_footer_text' , array( $this , 'admin_footer_text' ) );
1646
  add_action( 'admin_print_styles' , array( $this , 'load_css' ) );
1647
+ add_action( 'wp_dashboard_setup' , array( $this , 'wp_dashboard_setup' ) , 10001 );
1648
  add_action( 'admin_head' , array( $this , 'manage_metabox' ) , 11 );
1649
  add_filter( 'admin_head', array( $this , 'sidemenu' ) );
1650
  add_filter( 'get_sample_permalink_html' , array( $this , 'add_edit_post_change_permalink' ) );
1806
  $update_data = wp_get_update_data();
1807
  $activated_plugin = $this->ActivatedPlugin;
1808
  $other_plugin = $this->OtherPluginMenu;
1809
+
1810
  // all nodes adjustment
1811
  foreach($SettingNodes as $Boxtype => $allnodes) {
1812
  foreach($allnodes as $node_type => $nodes) {
1813
  foreach($nodes as $key => $node) {
1814
+
1815
  if( strstr( $node["id"] , 'custom_node' ) ) {
1816
  if( !empty( $node["group"] ) ) {
1817
  $node["meta"]["class"] = 'ab-sub-secondary';
1818
  } else {
1819
  $node["href"] = $this->val_replace( $node["href"] );
1820
  }
1821
+ } elseif( $node["id"] == 'view-post_type' ) {
1822
+
1823
+ if( is_admin() ) {
1824
+
1825
+ if( !empty( $All_Nodes['preview'] ) ) {
1826
+
1827
+ $node["href"] = $All_Nodes['preview']->href;
1828
+ $node["meta"] = $All_Nodes['preview']->meta;
1829
+
1830
+ } elseif( !empty( $All_Nodes['view'] ) ) {
1831
+
1832
+ $node["href"] = $All_Nodes['view']->href;
1833
+ $node["meta"] = $All_Nodes['view']->meta;
1834
+
1835
+ } else {
1836
+
1837
+ unset( $SettingNodes[$Boxtype][$node_type][$key] );
1838
+ continue;
1839
+
1840
+ }
1841
+
1842
+ } else {
1843
+
1844
+ unset( $SettingNodes[$Boxtype][$node_type][$key] );
1845
+ continue;
1846
+
1847
+ }
1848
+
1849
  } elseif( $node["id"] == 'edit-post_type' ) {
1850
+
1851
  if( !empty( $All_Nodes["edit"] ) ) {
1852
+
1853
+ //$node["title"] = $All_Nodes["edit"]->title;
1854
  $node["href"] = $All_Nodes["edit"]->href;
1855
  $node["id"] = $All_Nodes["edit"]->id;
1856
+
1857
  } else {
1858
+
1859
  unset( $SettingNodes[$Boxtype][$node_type][$key] );
1860
  continue;
1861
+
1862
  }
1863
+
1864
  } elseif( $node["id"] == 'search' ) {
1865
  if( !empty( $All_Nodes["search"] ) ) {
1866
  $node["title"] = $All_Nodes["search"]->title;
1963
  }
1964
  }
1965
  }
1966
+ } elseif( $node["id"] == 'page_list' ) {
1967
+ foreach($All_Nodes as $default_node_id => $default_node) {
1968
+ if( $default_node->parent == $node["id"] ) {
1969
+ $subnode_type = '';
1970
+ if( $node_type == 'main' ) {
1971
+ $subnode_type = 'sub';
1972
+ } elseif( $node_type == 'sub' ) {
1973
+ $subnode_type = 'sub2';
1974
+ } elseif( $node_type == 'sub2' ) {
1975
+ $subnode_type = 'sub3';
1976
+ } elseif( $node_type == 'sub3' ) {
1977
+ $subnode_type = 'sub4';
1978
+ }
1979
+ if( !empty( $subnode_type ) ) {
1980
+ $SettingNodes[$Boxtype][$subnode_type][] = (array) $default_node;
1981
+ }
1982
+ }
1983
+ }
1984
+ } elseif( $node["id"] == 'post_list' ) {
1985
+ foreach($All_Nodes as $default_node_id => $default_node) {
1986
+ if( $default_node->parent == $node["id"] ) {
1987
+ $subnode_type = '';
1988
+ if( $node_type == 'main' ) {
1989
+ $subnode_type = 'sub';
1990
+ } elseif( $node_type == 'sub' ) {
1991
+ $subnode_type = 'sub2';
1992
+ } elseif( $node_type == 'sub2' ) {
1993
+ $subnode_type = 'sub3';
1994
+ } elseif( $node_type == 'sub3' ) {
1995
+ $subnode_type = 'sub4';
1996
+ }
1997
+ if( !empty( $subnode_type ) ) {
1998
+ $SettingNodes[$Boxtype][$subnode_type][] = (array) $default_node;
1999
+ }
2000
+ }
2001
+ }
2002
  }
2003
  foreach( $activated_plugin as $plugin_slug => $v ) {
2004
  if( !empty( $other_plugin["admin_bar"][$plugin_slug] ) && array_key_exists( $node["id"] , $other_plugin["admin_bar"][$plugin_slug] ) ) {
2261
  function sidemenu() {
2262
  global $menu;
2263
  global $submenu;
2264
+
2265
  $GetData = $this->get_flit_data( 'sidemenu' );
2266
  $General = $this->get_flit_data( 'admin_general' );
2267
+
2268
  if( !empty( $GetData["UPFN"] ) ) {
2269
  unset( $GetData["UPFN"] );
2270
 
2273
  $SetMain_submenu = array();
2274
 
2275
  $separator_menu = array( 0 => "" , 1 => 'read' , 2 => 'separator1' , 3 => "" , 4 => 'wp-menu-separator' );
2276
+ $customize_url = add_query_arg( 'return', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), 'customize.php' );
2277
+
2278
+ if( !empty( $GetData["main"] ) ) {
2279
+
2280
+ foreach( $GetData["main"] as $mm_pos => $mm ) {
2281
+
2282
+ if( $mm["slug"] == 'customize.php' ) {
2283
+
2284
+ $GetData["main"][$mm_pos]["slug"] = $customize_url;
2285
+
2286
+ } elseif( strstr( $mm["slug"] , 'customize.php?autofocus') ) {
2287
+
2288
+ $controll = str_replace( 'customize.php?autofocus%5Bcontrol%5D=' , '' , $mm["slug"] );
2289
+
2290
+ if( !empty( $controll ) )
2291
+ $GetData["main"][$mm_pos]["slug"] = add_query_arg( 'autofocus[control]' , $controll , $customize_url );
2292
+
2293
+ }
2294
+
2295
+ if( strstr( $mm["title"] , '[comment_count]') ) {
2296
+ $GetData["main"][$mm_pos]["title"] = str_replace( '[comment_count]' , '<span class="update-plugins count-[comment_count]"><span class="comment-count">[comment_count_format]</span></span>' , $mm["title"] );
2297
+ }
2298
+ if( strstr( $mm["title"] , '[update_total]') ) {
2299
+ $GetData["main"][$mm_pos]["title"] = str_replace( '[update_total]' , '<span class="update-plugins count-[update_total]"><span class="update-count">[update_total_format]</span></span>' , $mm["title"] );
2300
+ }
2301
+ if( strstr( $mm["title"] , '[update_plugins]') ) {
2302
+ $GetData["main"][$mm_pos]["title"] = str_replace( '[update_plugins]' , '<span class="update-plugins count-[update_plugins]"><span class="plugin-count">[update_plugins_format]</span></span>' , $mm["title"] );
2303
+ }
2304
+ if( strstr( $mm["title"] , '[update_themes]') ) {
2305
+ $GetData["main"][$mm_pos]["title"] = str_replace( '[update_themes]' , '<span class="update-plugins count-[update_themes]"><span class="theme-count">[update_themes_format]</span></span>' , $mm["title"] );
2306
+ }
2307
+
2308
+ }
2309
+
2310
+ }
2311
+
2312
+ if( !empty( $GetData["sub"] ) ) {
2313
+
2314
+ foreach( $GetData["sub"] as $sm_pos => $sm ) {
2315
+
2316
+ if( $sm["slug"] == 'customize.php' ) {
2317
+
2318
+ $GetData["sub"][$sm_pos]["slug"] = $customize_url;
2319
+
2320
+ } elseif( strstr( $sm["slug"] , 'customize.php?autofocus%5Bcontrol%5D=') ) {
2321
+
2322
+ $controll = str_replace( 'customize.php?autofocus%5Bcontrol%5D=' , '' , $sm["slug"] );
2323
+
2324
+ if( !empty( $controll ) )
2325
+ $GetData["sub"][$sm_pos]["slug"] = add_query_arg( 'autofocus[control]' , $controll , $customize_url );
2326
+
2327
+ }
2328
+
2329
+ if( strstr( $sm["title"] , '[comment_count]') ) {
2330
+ $GetData["sub"][$sm_pos]["title"] = str_replace( '[comment_count]' , '<span class="update-plugins count-[comment_count]"><span class="comment-count">[comment_count_format]</span></span>' , $sm["title"] );
2331
+ }
2332
+ if( strstr( $sm["title"] , '[update_total]') ) {
2333
+ $GetData["sub"][$sm_pos]["title"] = str_replace( '[update_total]' , '<span class="update-plugins count-[update_total]"><span class="update-count">[update_total_format]</span></span>' , $sm["title"] );
2334
+ }
2335
+ if( strstr( $sm["title"] , '[update_plugins]') ) {
2336
+ $GetData["sub"][$sm_pos]["title"] = str_replace( '[update_plugins]' , '<span class="update-plugins count-[update_plugins]"><span class="plugin-count">[update_plugins_format]</span></span>' , $sm["title"] );
2337
+ }
2338
+ if( strstr( $sm["title"] , '[update_themes]') ) {
2339
+ $GetData["sub"][$sm_pos]["title"] = str_replace( '[update_themes]' , '<span class="update-plugins count-[update_themes]"><span class="theme-count">[update_themes_format]</span></span>' , $sm["title"] );
2340
+ }
2341
+
2342
+ }
2343
+
2344
+ }
2345
 
2346
  foreach($GetData["main"] as $mm_pos => $mm) {
2347
  if($mm["slug"] == 'separator') {
2350
  $gm_search = false;
2351
  foreach($menu as $gm_pos => $gm) {
2352
  if($mm["slug"] == $gm[2]) {
 
 
 
 
 
 
 
 
 
 
 
 
2353
  $menu[$gm_pos][0] = $this->val_replace( $mm["title"] );
2354
  $SetMain_menu[] = $menu[$gm_pos];
2355
  $gm_search = true;
2367
  break;
2368
  }
2369
  }
 
 
 
 
 
 
 
 
 
 
 
 
2370
  $submenu[$gsm_parent_slug][$gsm_pos][0] = $this->val_replace( $mm["title"] );
2371
  $SetMain_menu[] = $submenu[$gsm_parent_slug][$gsm_pos];
2372
 
2385
  $gm_search = false;
2386
  foreach($menu as $gm_pos => $gm) {
2387
  if($sm["slug"] == $gm[2]) {
 
 
 
 
 
 
 
 
 
 
 
 
2388
  $menu[$gm_pos][0] = $this->val_replace( $sm["title"] );
2389
  $SetMain_submenu[$sm["parent_slug"]][] = $menu[$gm_pos];
2390
  $gm_search = true;
2395
  foreach($submenu as $gsm_parent_slug => $v) {
2396
  foreach($v as $gsm_pos => $gsm) {
2397
  if($sm["slug"] == $gsm[2]) {
 
 
 
 
 
 
 
 
 
 
 
 
 
2398
  $submenu[$gsm_parent_slug][$gsm_pos][0] = $this->val_replace( $sm["title"] );
2399
  $SetMain_submenu[$sm["parent_slug"]][] = $submenu[$gsm_parent_slug][$gsm_pos];
2400
  }
2425
  $menu = array();
2426
  }
2427
  }
2428
+
2429
  }
2430
 
2431
  // FilterStart
2506
 
2507
  // FilterStart
2508
  function admin_bar_resizing() {
 
2509
  $GetData = $this->get_flit_data( 'admin_general' );
2510
 
2511
+ if ( empty( $GetData["resize_admin_bar"] ) ) {
2512
  wp_enqueue_style( $this->PageSlug . '-adminbar-resize' , $this->Url . 'css/adminbar/resize.css', array() , $this->Ver );
2513
  if( is_admin() ) {
2514
  wp_enqueue_script( $this->PageSlug . '-adminbar-resize' , $this->Url . 'js/adminbar/resize.js', array( 'jquery' ) , $this->Ver );
2550
  $wauc = new WP_Admin_UI_Customize();
2551
 
2552
  endif;
2553
+